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.
 
 
 

26953 lines
671 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. "dire-wolf": {
  1300. name: "Dire Wolf",
  1301. parents: ["wolf"]
  1302. },
  1303. }
  1304. //species
  1305. function getSpeciesInfo(speciesList) {
  1306. let result = new Set();
  1307. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1308. result.add(entry)
  1309. });
  1310. return Array.from(result);
  1311. };
  1312. function getSpeciesInfoHelper(species) {
  1313. if (!speciesData[species]) {
  1314. console.warn(species + " doesn't exist");
  1315. return [];
  1316. }
  1317. if (speciesData[species].parents) {
  1318. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1319. } else {
  1320. return [species];
  1321. }
  1322. }
  1323. characterMakers.push(() => makeCharacter(
  1324. {
  1325. name: "Fen",
  1326. species: ["crux"],
  1327. description: {
  1328. title: "Bio",
  1329. text: "Very furry. Sheds on everything."
  1330. },
  1331. tags: [
  1332. "anthro",
  1333. "goo"
  1334. ]
  1335. },
  1336. {
  1337. back: {
  1338. height: math.unit(2.2428, "meter"),
  1339. weight: math.unit(124.738, "kg"),
  1340. name: "Back",
  1341. image: {
  1342. source: "./media/characters/fen/back.svg",
  1343. extra: 1025 / 935,
  1344. bottom: 0.01
  1345. },
  1346. info: {
  1347. description: {
  1348. mode: "append",
  1349. text: "\n\nHe is not currently looking at you."
  1350. }
  1351. }
  1352. },
  1353. full: {
  1354. height: math.unit(1.34, "meter"),
  1355. weight: math.unit(225, "kg"),
  1356. name: "Full",
  1357. image: {
  1358. source: "./media/characters/fen/full.svg"
  1359. },
  1360. info: {
  1361. description: {
  1362. mode: "append",
  1363. text: "\n\nMunch."
  1364. }
  1365. }
  1366. },
  1367. kneeling: {
  1368. height: math.unit(5.4, "feet"),
  1369. weight: math.unit(124.738, "kg"),
  1370. name: "Kneeling",
  1371. image: {
  1372. source: "./media/characters/fen/kneeling.svg",
  1373. extra: 563 / 507
  1374. }
  1375. },
  1376. goo: {
  1377. height: math.unit(2.8, "feet"),
  1378. weight: math.unit(125, "kg"),
  1379. capacity: math.unit(1, "people"),
  1380. name: "Goo",
  1381. image: {
  1382. source: "./media/characters/fen/goo.svg",
  1383. bottom: 116 / 613
  1384. }
  1385. },
  1386. lounging: {
  1387. height: math.unit(6.5, "feet"),
  1388. weight: math.unit(125, "kg"),
  1389. name: "Lounging",
  1390. image: {
  1391. source: "./media/characters/fen/lounging.svg"
  1392. }
  1393. },
  1394. },
  1395. [
  1396. {
  1397. name: "Normal",
  1398. height: math.unit(2.2428, "meter")
  1399. },
  1400. {
  1401. name: "Big",
  1402. height: math.unit(12, "feet")
  1403. },
  1404. {
  1405. name: "Minimacro",
  1406. height: math.unit(40, "feet"),
  1407. default: true,
  1408. info: {
  1409. description: {
  1410. mode: "append",
  1411. text: "\n\nTOO DAMN BIG"
  1412. }
  1413. }
  1414. },
  1415. {
  1416. name: "Macro",
  1417. height: math.unit(100, "feet"),
  1418. info: {
  1419. description: {
  1420. mode: "append",
  1421. text: "\n\nTOO DAMN BIG"
  1422. }
  1423. }
  1424. },
  1425. {
  1426. name: "Macro+",
  1427. height: math.unit(300, "feet")
  1428. },
  1429. {
  1430. name: "Megamacro",
  1431. height: math.unit(2, "miles")
  1432. }
  1433. ]
  1434. ))
  1435. characterMakers.push(() => makeCharacter(
  1436. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1437. {
  1438. front: {
  1439. height: math.unit(183, "cm"),
  1440. weight: math.unit(80, "kg"),
  1441. name: "Front",
  1442. image: {
  1443. source: "./media/characters/sofia-fluttertail/front.svg",
  1444. bottom: 0.01,
  1445. extra: 2154 / 2081
  1446. }
  1447. },
  1448. frontAlt: {
  1449. height: math.unit(183, "cm"),
  1450. weight: math.unit(80, "kg"),
  1451. name: "Front (alt)",
  1452. image: {
  1453. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1454. }
  1455. },
  1456. back: {
  1457. height: math.unit(183, "cm"),
  1458. weight: math.unit(80, "kg"),
  1459. name: "Back",
  1460. image: {
  1461. source: "./media/characters/sofia-fluttertail/back.svg"
  1462. }
  1463. },
  1464. kneeling: {
  1465. height: math.unit(125, "cm"),
  1466. weight: math.unit(80, "kg"),
  1467. name: "Kneeling",
  1468. image: {
  1469. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1470. extra: 1033 / 977,
  1471. bottom: 23.7 / 1057
  1472. }
  1473. },
  1474. maw: {
  1475. height: math.unit(183 / 5, "cm"),
  1476. name: "Maw",
  1477. image: {
  1478. source: "./media/characters/sofia-fluttertail/maw.svg"
  1479. }
  1480. },
  1481. mawcloseup: {
  1482. height: math.unit(183 / 5 * 0.41, "cm"),
  1483. name: "Maw (Closeup)",
  1484. image: {
  1485. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1486. }
  1487. },
  1488. },
  1489. [
  1490. {
  1491. name: "Normal",
  1492. height: math.unit(1.83, "meter")
  1493. },
  1494. {
  1495. name: "Size Thief",
  1496. height: math.unit(18, "feet")
  1497. },
  1498. {
  1499. name: "50 Foot Collie",
  1500. height: math.unit(50, "feet")
  1501. },
  1502. {
  1503. name: "Macro",
  1504. height: math.unit(96, "feet"),
  1505. default: true
  1506. },
  1507. {
  1508. name: "Megamerger",
  1509. height: math.unit(650, "feet")
  1510. },
  1511. ]
  1512. ))
  1513. characterMakers.push(() => makeCharacter(
  1514. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1515. {
  1516. front: {
  1517. height: math.unit(7, "feet"),
  1518. weight: math.unit(100, "kg"),
  1519. name: "Front",
  1520. image: {
  1521. source: "./media/characters/march/front.svg",
  1522. extra: 1,
  1523. bottom: 0.015
  1524. }
  1525. },
  1526. foot: {
  1527. height: math.unit(0.9, "feet"),
  1528. name: "Foot",
  1529. image: {
  1530. source: "./media/characters/march/foot.svg"
  1531. }
  1532. },
  1533. },
  1534. [
  1535. {
  1536. name: "Normal",
  1537. height: math.unit(7.9, "feet")
  1538. },
  1539. {
  1540. name: "Macro",
  1541. height: math.unit(220, "meters")
  1542. },
  1543. {
  1544. name: "Megamacro",
  1545. height: math.unit(2.98, "km"),
  1546. default: true
  1547. },
  1548. {
  1549. name: "Gigamacro",
  1550. height: math.unit(15963, "km")
  1551. },
  1552. {
  1553. name: "Teramacro",
  1554. height: math.unit(2980000000, "km")
  1555. },
  1556. {
  1557. name: "Examacro",
  1558. height: math.unit(250, "parsecs")
  1559. },
  1560. ]
  1561. ))
  1562. characterMakers.push(() => makeCharacter(
  1563. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1564. {
  1565. front: {
  1566. height: math.unit(6, "feet"),
  1567. weight: math.unit(60, "kg"),
  1568. name: "Front",
  1569. image: {
  1570. source: "./media/characters/noir/front.svg",
  1571. extra: 1,
  1572. bottom: 0.032
  1573. }
  1574. },
  1575. },
  1576. [
  1577. {
  1578. name: "Normal",
  1579. height: math.unit(6.6, "feet")
  1580. },
  1581. {
  1582. name: "Macro",
  1583. height: math.unit(500, "feet")
  1584. },
  1585. {
  1586. name: "Megamacro",
  1587. height: math.unit(2.5, "km"),
  1588. default: true
  1589. },
  1590. {
  1591. name: "Gigamacro",
  1592. height: math.unit(22500, "km")
  1593. },
  1594. {
  1595. name: "Teramacro",
  1596. height: math.unit(2500000000, "km")
  1597. },
  1598. {
  1599. name: "Examacro",
  1600. height: math.unit(200, "parsecs")
  1601. },
  1602. ]
  1603. ))
  1604. characterMakers.push(() => makeCharacter(
  1605. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1606. {
  1607. front: {
  1608. height: math.unit(7, "feet"),
  1609. weight: math.unit(100, "kg"),
  1610. name: "Front",
  1611. image: {
  1612. source: "./media/characters/okuri/front.svg",
  1613. extra: 1,
  1614. bottom: 0.037
  1615. }
  1616. },
  1617. back: {
  1618. height: math.unit(7, "feet"),
  1619. weight: math.unit(100, "kg"),
  1620. name: "Back",
  1621. image: {
  1622. source: "./media/characters/okuri/back.svg",
  1623. extra: 1,
  1624. bottom: 0.007
  1625. }
  1626. },
  1627. },
  1628. [
  1629. {
  1630. name: "Megamacro",
  1631. height: math.unit(100, "miles"),
  1632. default: true
  1633. },
  1634. ]
  1635. ))
  1636. characterMakers.push(() => makeCharacter(
  1637. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1638. {
  1639. front: {
  1640. height: math.unit(7, "feet"),
  1641. weight: math.unit(100, "kg"),
  1642. name: "Front",
  1643. image: {
  1644. source: "./media/characters/manny/front.svg",
  1645. extra: 1,
  1646. bottom: 0.06
  1647. }
  1648. },
  1649. back: {
  1650. height: math.unit(7, "feet"),
  1651. weight: math.unit(100, "kg"),
  1652. name: "Back",
  1653. image: {
  1654. source: "./media/characters/manny/back.svg",
  1655. extra: 1,
  1656. bottom: 0.014
  1657. }
  1658. },
  1659. },
  1660. [
  1661. {
  1662. name: "Normal",
  1663. height: math.unit(7, "feet"),
  1664. },
  1665. {
  1666. name: "Macro",
  1667. height: math.unit(78, "feet"),
  1668. default: true
  1669. },
  1670. {
  1671. name: "Macro+",
  1672. height: math.unit(300, "meters")
  1673. },
  1674. {
  1675. name: "Macro++",
  1676. height: math.unit(2400, "meters")
  1677. },
  1678. {
  1679. name: "Megamacro",
  1680. height: math.unit(5167, "meters")
  1681. },
  1682. {
  1683. name: "Gigamacro",
  1684. height: math.unit(41769, "miles")
  1685. },
  1686. ]
  1687. ))
  1688. characterMakers.push(() => makeCharacter(
  1689. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1690. {
  1691. front: {
  1692. height: math.unit(7, "feet"),
  1693. weight: math.unit(100, "kg"),
  1694. name: "Front",
  1695. image: {
  1696. source: "./media/characters/adake/front-1.svg"
  1697. }
  1698. },
  1699. frontAlt: {
  1700. height: math.unit(7, "feet"),
  1701. weight: math.unit(100, "kg"),
  1702. name: "Front (Alt)",
  1703. image: {
  1704. source: "./media/characters/adake/front-2.svg",
  1705. extra: 1,
  1706. bottom: 0.01
  1707. }
  1708. },
  1709. back: {
  1710. height: math.unit(7, "feet"),
  1711. weight: math.unit(100, "kg"),
  1712. name: "Back",
  1713. image: {
  1714. source: "./media/characters/adake/back.svg",
  1715. }
  1716. },
  1717. kneel: {
  1718. height: math.unit(5.385, "feet"),
  1719. weight: math.unit(100, "kg"),
  1720. name: "Kneeling",
  1721. image: {
  1722. source: "./media/characters/adake/kneel.svg",
  1723. bottom: 0.052
  1724. }
  1725. },
  1726. },
  1727. [
  1728. {
  1729. name: "Normal",
  1730. height: math.unit(7, "feet"),
  1731. },
  1732. {
  1733. name: "Macro",
  1734. height: math.unit(78, "feet"),
  1735. default: true
  1736. },
  1737. {
  1738. name: "Macro+",
  1739. height: math.unit(300, "meters")
  1740. },
  1741. {
  1742. name: "Macro++",
  1743. height: math.unit(2400, "meters")
  1744. },
  1745. {
  1746. name: "Megamacro",
  1747. height: math.unit(5167, "meters")
  1748. },
  1749. {
  1750. name: "Gigamacro",
  1751. height: math.unit(41769, "miles")
  1752. },
  1753. ]
  1754. ))
  1755. characterMakers.push(() => makeCharacter(
  1756. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1757. {
  1758. front: {
  1759. height: math.unit(1.65, "meters"),
  1760. weight: math.unit(50, "kg"),
  1761. name: "Front",
  1762. image: {
  1763. source: "./media/characters/elijah/front.svg",
  1764. extra: 858 / 830,
  1765. bottom: 95.5 / 953.8559
  1766. }
  1767. },
  1768. back: {
  1769. height: math.unit(1.65, "meters"),
  1770. weight: math.unit(50, "kg"),
  1771. name: "Back",
  1772. image: {
  1773. source: "./media/characters/elijah/back.svg",
  1774. extra: 895 / 850,
  1775. bottom: 5.3 / 897.956
  1776. }
  1777. },
  1778. frontNsfw: {
  1779. height: math.unit(1.65, "meters"),
  1780. weight: math.unit(50, "kg"),
  1781. name: "Front (NSFW)",
  1782. image: {
  1783. source: "./media/characters/elijah/front-nsfw.svg",
  1784. extra: 858 / 830,
  1785. bottom: 95.5 / 953.8559
  1786. }
  1787. },
  1788. backNsfw: {
  1789. height: math.unit(1.65, "meters"),
  1790. weight: math.unit(50, "kg"),
  1791. name: "Back (NSFW)",
  1792. image: {
  1793. source: "./media/characters/elijah/back-nsfw.svg",
  1794. extra: 895 / 850,
  1795. bottom: 5.3 / 897.956
  1796. }
  1797. },
  1798. dick: {
  1799. height: math.unit(1, "feet"),
  1800. name: "Dick",
  1801. image: {
  1802. source: "./media/characters/elijah/dick.svg"
  1803. }
  1804. },
  1805. beakOpen: {
  1806. height: math.unit(1.25, "feet"),
  1807. name: "Beak (Open)",
  1808. image: {
  1809. source: "./media/characters/elijah/beak-open.svg"
  1810. }
  1811. },
  1812. beakShut: {
  1813. height: math.unit(1.25, "feet"),
  1814. name: "Beak (Shut)",
  1815. image: {
  1816. source: "./media/characters/elijah/beak-shut.svg"
  1817. }
  1818. },
  1819. footFlexing: {
  1820. height: math.unit(1.61, "feet"),
  1821. name: "Foot (Flexing)",
  1822. image: {
  1823. source: "./media/characters/elijah/foot-flexing.svg"
  1824. }
  1825. },
  1826. footStepping: {
  1827. height: math.unit(1.44, "feet"),
  1828. name: "Foot (Stepping)",
  1829. image: {
  1830. source: "./media/characters/elijah/foot-stepping.svg"
  1831. }
  1832. },
  1833. plantigradeLeg: {
  1834. height: math.unit(2.34, "feet"),
  1835. name: "Plantigrade Leg",
  1836. image: {
  1837. source: "./media/characters/elijah/plantigrade-leg.svg"
  1838. }
  1839. },
  1840. plantigradeFootLeft: {
  1841. height: math.unit(0.9, "feet"),
  1842. name: "Plantigrade Foot (Left)",
  1843. image: {
  1844. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1845. }
  1846. },
  1847. plantigradeFootRight: {
  1848. height: math.unit(0.9, "feet"),
  1849. name: "Plantigrade Foot (Right)",
  1850. image: {
  1851. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1852. }
  1853. },
  1854. },
  1855. [
  1856. {
  1857. name: "Normal",
  1858. height: math.unit(1.65, "meters")
  1859. },
  1860. {
  1861. name: "Macro",
  1862. height: math.unit(55, "meters"),
  1863. default: true
  1864. },
  1865. {
  1866. name: "Macro+",
  1867. height: math.unit(105, "meters")
  1868. },
  1869. ]
  1870. ))
  1871. characterMakers.push(() => makeCharacter(
  1872. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1873. {
  1874. front: {
  1875. height: math.unit(11, "feet"),
  1876. weight: math.unit(80, "kg"),
  1877. name: "Front",
  1878. image: {
  1879. source: "./media/characters/rai/front.svg",
  1880. extra: 1,
  1881. bottom: 0.03
  1882. }
  1883. },
  1884. side: {
  1885. height: math.unit(11, "feet"),
  1886. weight: math.unit(80, "kg"),
  1887. name: "Side",
  1888. image: {
  1889. source: "./media/characters/rai/side.svg"
  1890. }
  1891. },
  1892. back: {
  1893. height: math.unit(11, "feet"),
  1894. weight: math.unit(80, "lb"),
  1895. name: "Back",
  1896. image: {
  1897. source: "./media/characters/rai/back.svg",
  1898. extra: 1,
  1899. bottom: 0.01
  1900. }
  1901. },
  1902. feral: {
  1903. height: math.unit(11, "feet"),
  1904. weight: math.unit(800, "lb"),
  1905. name: "Feral",
  1906. image: {
  1907. source: "./media/characters/rai/feral.svg",
  1908. extra: 1050 / 659,
  1909. bottom: 0.07
  1910. }
  1911. },
  1912. dragon: {
  1913. height: math.unit(23, "feet"),
  1914. weight: math.unit(50000, "lb"),
  1915. name: "Dragon",
  1916. image: {
  1917. source: "./media/characters/rai/dragon.svg",
  1918. extra: 2498 / 2030,
  1919. bottom: 85.2 / 2584
  1920. }
  1921. },
  1922. maw: {
  1923. height: math.unit(6 / 3.81416, "feet"),
  1924. name: "Maw",
  1925. image: {
  1926. source: "./media/characters/rai/maw.svg"
  1927. }
  1928. },
  1929. },
  1930. [
  1931. {
  1932. name: "Normal",
  1933. height: math.unit(11, "feet")
  1934. },
  1935. {
  1936. name: "Macro",
  1937. height: math.unit(302, "feet"),
  1938. default: true
  1939. },
  1940. ]
  1941. ))
  1942. characterMakers.push(() => makeCharacter(
  1943. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  1944. {
  1945. frontDressed: {
  1946. height: math.unit(216, "feet"),
  1947. weight: math.unit(7000000, "lb"),
  1948. name: "Front (Dressed)",
  1949. image: {
  1950. source: "./media/characters/jazzy/front-dressed.svg",
  1951. extra: 2738 / 2651,
  1952. bottom: 41.8 / 2786
  1953. }
  1954. },
  1955. backDressed: {
  1956. height: math.unit(216, "feet"),
  1957. weight: math.unit(7000000, "lb"),
  1958. name: "Back (Dressed)",
  1959. image: {
  1960. source: "./media/characters/jazzy/back-dressed.svg",
  1961. extra: 2775 / 2673,
  1962. bottom: 36.8 / 2817
  1963. }
  1964. },
  1965. front: {
  1966. height: math.unit(216, "feet"),
  1967. weight: math.unit(7000000, "lb"),
  1968. name: "Front",
  1969. image: {
  1970. source: "./media/characters/jazzy/front.svg",
  1971. extra: 2738 / 2651,
  1972. bottom: 41.8 / 2786
  1973. }
  1974. },
  1975. back: {
  1976. height: math.unit(216, "feet"),
  1977. weight: math.unit(7000000, "lb"),
  1978. name: "Back",
  1979. image: {
  1980. source: "./media/characters/jazzy/back.svg",
  1981. extra: 2775 / 2673,
  1982. bottom: 36.8 / 2817
  1983. }
  1984. },
  1985. maw: {
  1986. height: math.unit(20, "feet"),
  1987. name: "Maw",
  1988. image: {
  1989. source: "./media/characters/jazzy/maw.svg"
  1990. }
  1991. },
  1992. paws: {
  1993. height: math.unit(27.5, "feet"),
  1994. name: "Paws",
  1995. image: {
  1996. source: "./media/characters/jazzy/paws.svg"
  1997. }
  1998. },
  1999. eye: {
  2000. height: math.unit(4.4, "feet"),
  2001. name: "Eye",
  2002. image: {
  2003. source: "./media/characters/jazzy/eye.svg"
  2004. }
  2005. },
  2006. droneOffense: {
  2007. height: math.unit(9.5, "inches"),
  2008. name: "Drone (Offense)",
  2009. image: {
  2010. source: "./media/characters/jazzy/drone-offense.svg"
  2011. }
  2012. },
  2013. droneRecon: {
  2014. height: math.unit(9.5, "inches"),
  2015. name: "Drone (Recon)",
  2016. image: {
  2017. source: "./media/characters/jazzy/drone-recon.svg"
  2018. }
  2019. },
  2020. droneDefense: {
  2021. height: math.unit(9.5, "inches"),
  2022. name: "Drone (Defense)",
  2023. image: {
  2024. source: "./media/characters/jazzy/drone-defense.svg"
  2025. }
  2026. },
  2027. },
  2028. [
  2029. {
  2030. name: "Macro",
  2031. height: math.unit(216, "feet"),
  2032. default: true
  2033. },
  2034. ]
  2035. ))
  2036. characterMakers.push(() => makeCharacter(
  2037. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2038. {
  2039. front: {
  2040. height: math.unit(7, "feet"),
  2041. weight: math.unit(80, "kg"),
  2042. name: "Front",
  2043. image: {
  2044. source: "./media/characters/flamm/front.svg",
  2045. extra: 1794 / 1677,
  2046. bottom: 31.7 / 1828.5
  2047. }
  2048. },
  2049. },
  2050. [
  2051. {
  2052. name: "Normal",
  2053. height: math.unit(9.5, "feet")
  2054. },
  2055. {
  2056. name: "Macro",
  2057. height: math.unit(200, "feet"),
  2058. default: true
  2059. },
  2060. ]
  2061. ))
  2062. characterMakers.push(() => makeCharacter(
  2063. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2064. {
  2065. front: {
  2066. height: math.unit(7, "feet"),
  2067. weight: math.unit(80, "kg"),
  2068. name: "Front",
  2069. image: {
  2070. source: "./media/characters/zephiro/front.svg",
  2071. extra: 2309 / 2162,
  2072. bottom: 0.069
  2073. }
  2074. },
  2075. side: {
  2076. height: math.unit(7, "feet"),
  2077. weight: math.unit(80, "kg"),
  2078. name: "Side",
  2079. image: {
  2080. source: "./media/characters/zephiro/side.svg",
  2081. extra: 2403 / 2279,
  2082. bottom: 0.015
  2083. }
  2084. },
  2085. back: {
  2086. height: math.unit(7, "feet"),
  2087. weight: math.unit(80, "kg"),
  2088. name: "Back",
  2089. image: {
  2090. source: "./media/characters/zephiro/back.svg",
  2091. extra: 2373 / 2244,
  2092. bottom: 0.013
  2093. }
  2094. },
  2095. },
  2096. [
  2097. {
  2098. name: "Micro",
  2099. height: math.unit(3, "inches")
  2100. },
  2101. {
  2102. name: "Normal",
  2103. height: math.unit(5 + 3 / 12, "feet"),
  2104. default: true
  2105. },
  2106. {
  2107. name: "Macro",
  2108. height: math.unit(118, "feet")
  2109. },
  2110. ]
  2111. ))
  2112. characterMakers.push(() => makeCharacter(
  2113. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2114. {
  2115. front: {
  2116. height: math.unit(5, "feet"),
  2117. weight: math.unit(90, "kg"),
  2118. name: "Front",
  2119. image: {
  2120. source: "./media/characters/fory/front.svg",
  2121. extra: 2862 / 2674,
  2122. bottom: 180 / 3043.8
  2123. }
  2124. },
  2125. back: {
  2126. height: math.unit(5, "feet"),
  2127. weight: math.unit(90, "kg"),
  2128. name: "Back",
  2129. image: {
  2130. source: "./media/characters/fory/back.svg",
  2131. extra: 2962 / 2791,
  2132. bottom: 106 / 3071.8
  2133. }
  2134. },
  2135. foot: {
  2136. height: math.unit(2.14, "feet"),
  2137. name: "Foot",
  2138. image: {
  2139. source: "./media/characters/fory/foot.svg"
  2140. }
  2141. },
  2142. },
  2143. [
  2144. {
  2145. name: "Normal",
  2146. height: math.unit(5, "feet")
  2147. },
  2148. {
  2149. name: "Macro",
  2150. height: math.unit(50, "feet"),
  2151. default: true
  2152. },
  2153. {
  2154. name: "Megamacro",
  2155. height: math.unit(10, "miles")
  2156. },
  2157. {
  2158. name: "Gigamacro",
  2159. height: math.unit(5, "earths")
  2160. },
  2161. ]
  2162. ))
  2163. characterMakers.push(() => makeCharacter(
  2164. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2165. {
  2166. front: {
  2167. height: math.unit(7, "feet"),
  2168. weight: math.unit(90, "kg"),
  2169. name: "Front",
  2170. image: {
  2171. source: "./media/characters/kurrikage/front.svg",
  2172. extra: 1,
  2173. bottom: 0.035
  2174. }
  2175. },
  2176. back: {
  2177. height: math.unit(7, "feet"),
  2178. weight: math.unit(90, "lb"),
  2179. name: "Back",
  2180. image: {
  2181. source: "./media/characters/kurrikage/back.svg"
  2182. }
  2183. },
  2184. paw: {
  2185. height: math.unit(1.5, "feet"),
  2186. name: "Paw",
  2187. image: {
  2188. source: "./media/characters/kurrikage/paw.svg"
  2189. }
  2190. },
  2191. staff: {
  2192. height: math.unit(6.7, "feet"),
  2193. name: "Staff",
  2194. image: {
  2195. source: "./media/characters/kurrikage/staff.svg"
  2196. }
  2197. },
  2198. peek: {
  2199. height: math.unit(1.05, "feet"),
  2200. name: "Peeking",
  2201. image: {
  2202. source: "./media/characters/kurrikage/peek.svg",
  2203. bottom: 0.08
  2204. }
  2205. },
  2206. },
  2207. [
  2208. {
  2209. name: "Normal",
  2210. height: math.unit(12, "feet"),
  2211. default: true
  2212. },
  2213. {
  2214. name: "Big",
  2215. height: math.unit(20, "feet")
  2216. },
  2217. {
  2218. name: "Macro",
  2219. height: math.unit(500, "feet")
  2220. },
  2221. {
  2222. name: "Megamacro",
  2223. height: math.unit(20, "miles")
  2224. },
  2225. ]
  2226. ))
  2227. characterMakers.push(() => makeCharacter(
  2228. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2229. {
  2230. front: {
  2231. height: math.unit(6, "feet"),
  2232. weight: math.unit(75, "kg"),
  2233. name: "Front",
  2234. image: {
  2235. source: "./media/characters/shingo/front.svg",
  2236. extra: 3511 / 3338,
  2237. bottom: 0.005
  2238. }
  2239. },
  2240. paw: {
  2241. height: math.unit(1, "feet"),
  2242. name: "Paw",
  2243. image: {
  2244. source: "./media/characters/shingo/paw.svg"
  2245. }
  2246. },
  2247. },
  2248. [
  2249. {
  2250. name: "Micro",
  2251. height: math.unit(4, "inches")
  2252. },
  2253. {
  2254. name: "Normal",
  2255. height: math.unit(6, "feet"),
  2256. default: true
  2257. },
  2258. {
  2259. name: "Macro",
  2260. height: math.unit(108, "feet")
  2261. }
  2262. ]
  2263. ))
  2264. characterMakers.push(() => makeCharacter(
  2265. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2266. {
  2267. side: {
  2268. height: math.unit(6, "feet"),
  2269. weight: math.unit(75, "kg"),
  2270. name: "Side",
  2271. image: {
  2272. source: "./media/characters/aigey/side.svg"
  2273. }
  2274. },
  2275. },
  2276. [
  2277. {
  2278. name: "Macro",
  2279. height: math.unit(200, "feet"),
  2280. default: true
  2281. },
  2282. {
  2283. name: "Megamacro",
  2284. height: math.unit(100, "miles")
  2285. },
  2286. ]
  2287. )
  2288. )
  2289. characterMakers.push(() => makeCharacter(
  2290. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2291. {
  2292. front: {
  2293. height: math.unit(5 + 5 / 12, "feet"),
  2294. weight: math.unit(75, "kg"),
  2295. name: "Front",
  2296. image: {
  2297. source: "./media/characters/natasha/front.svg",
  2298. extra: 859 / 824,
  2299. bottom: 23 / 879.6
  2300. }
  2301. },
  2302. frontNsfw: {
  2303. height: math.unit(5 + 5 / 12, "feet"),
  2304. weight: math.unit(75, "kg"),
  2305. name: "Front (NSFW)",
  2306. image: {
  2307. source: "./media/characters/natasha/front-nsfw.svg",
  2308. extra: 859 / 824,
  2309. bottom: 23 / 879.6
  2310. }
  2311. },
  2312. frontErect: {
  2313. height: math.unit(5 + 5 / 12, "feet"),
  2314. weight: math.unit(75, "kg"),
  2315. name: "Front (Erect)",
  2316. image: {
  2317. source: "./media/characters/natasha/front-erect.svg",
  2318. extra: 859 / 824,
  2319. bottom: 23 / 879.6
  2320. }
  2321. },
  2322. back: {
  2323. height: math.unit(5 + 5 / 12, "feet"),
  2324. weight: math.unit(75, "kg"),
  2325. name: "Back",
  2326. image: {
  2327. source: "./media/characters/natasha/back.svg",
  2328. extra: 887.9 / 852.6,
  2329. bottom: 9.7 / 896.4
  2330. }
  2331. },
  2332. backAlt: {
  2333. height: math.unit(5 + 5 / 12, "feet"),
  2334. weight: math.unit(75, "kg"),
  2335. name: "Back (Alt)",
  2336. image: {
  2337. source: "./media/characters/natasha/back-alt.svg",
  2338. extra: 1236.7 / 1192,
  2339. bottom: 22.3 / 1258.2
  2340. }
  2341. },
  2342. dick: {
  2343. height: math.unit(1.772, "feet"),
  2344. name: "Dick",
  2345. image: {
  2346. source: "./media/characters/natasha/dick.svg"
  2347. }
  2348. },
  2349. },
  2350. [
  2351. {
  2352. name: "Normal",
  2353. height: math.unit(5 + 5 / 12, "feet")
  2354. },
  2355. {
  2356. name: "Large",
  2357. height: math.unit(12, "feet")
  2358. },
  2359. {
  2360. name: "Macro",
  2361. height: math.unit(100, "feet"),
  2362. default: true
  2363. },
  2364. {
  2365. name: "Macro+",
  2366. height: math.unit(260, "feet")
  2367. },
  2368. {
  2369. name: "Macro++",
  2370. height: math.unit(1, "mile")
  2371. },
  2372. ]
  2373. ))
  2374. characterMakers.push(() => makeCharacter(
  2375. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2376. {
  2377. front: {
  2378. height: math.unit(6, "feet"),
  2379. weight: math.unit(75, "kg"),
  2380. name: "Front",
  2381. image: {
  2382. source: "./media/characters/malik/front.svg"
  2383. }
  2384. },
  2385. side: {
  2386. height: math.unit(6, "feet"),
  2387. weight: math.unit(75, "kg"),
  2388. name: "Side",
  2389. image: {
  2390. source: "./media/characters/malik/side.svg",
  2391. extra: 1.1539
  2392. }
  2393. },
  2394. back: {
  2395. height: math.unit(6, "feet"),
  2396. weight: math.unit(75, "kg"),
  2397. name: "Back",
  2398. image: {
  2399. source: "./media/characters/malik/back.svg"
  2400. }
  2401. },
  2402. },
  2403. [
  2404. {
  2405. name: "Macro",
  2406. height: math.unit(156, "feet"),
  2407. default: true
  2408. },
  2409. {
  2410. name: "Macro+",
  2411. height: math.unit(1188, "feet")
  2412. },
  2413. ]
  2414. ))
  2415. characterMakers.push(() => makeCharacter(
  2416. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2417. {
  2418. front: {
  2419. height: math.unit(6, "feet"),
  2420. weight: math.unit(75, "kg"),
  2421. name: "Front",
  2422. image: {
  2423. source: "./media/characters/sefer/front.svg",
  2424. extra: 848 / 659,
  2425. bottom: 28.3 / 876.442
  2426. }
  2427. },
  2428. back: {
  2429. height: math.unit(6, "feet"),
  2430. weight: math.unit(75, "kg"),
  2431. name: "Back",
  2432. image: {
  2433. source: "./media/characters/sefer/back.svg",
  2434. extra: 864 / 695,
  2435. bottom: 10 / 871
  2436. }
  2437. },
  2438. frontDressed: {
  2439. height: math.unit(6, "feet"),
  2440. weight: math.unit(75, "kg"),
  2441. name: "Front (Dressed)",
  2442. image: {
  2443. source: "./media/characters/sefer/front-dressed.svg",
  2444. extra: 839 / 653,
  2445. bottom: 37.6 / 878
  2446. }
  2447. },
  2448. },
  2449. [
  2450. {
  2451. name: "Normal",
  2452. height: math.unit(6, "feet"),
  2453. default: true
  2454. },
  2455. ]
  2456. ))
  2457. characterMakers.push(() => makeCharacter(
  2458. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2459. {
  2460. body: {
  2461. height: math.unit(2.2428, "meter"),
  2462. weight: math.unit(124.738, "kg"),
  2463. name: "Body",
  2464. image: {
  2465. extra: 1225 / 1050,
  2466. source: "./media/characters/north/front.svg"
  2467. }
  2468. }
  2469. },
  2470. [
  2471. {
  2472. name: "Micro",
  2473. height: math.unit(4, "inches")
  2474. },
  2475. {
  2476. name: "Macro",
  2477. height: math.unit(63, "meters")
  2478. },
  2479. {
  2480. name: "Megamacro",
  2481. height: math.unit(101, "miles"),
  2482. default: true
  2483. }
  2484. ]
  2485. ))
  2486. characterMakers.push(() => makeCharacter(
  2487. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2488. {
  2489. angled: {
  2490. height: math.unit(4, "meter"),
  2491. weight: math.unit(150, "kg"),
  2492. name: "Angled",
  2493. image: {
  2494. source: "./media/characters/talan/angled-sfw.svg",
  2495. bottom: 29 / 3734
  2496. }
  2497. },
  2498. angledNsfw: {
  2499. height: math.unit(4, "meter"),
  2500. weight: math.unit(150, "kg"),
  2501. name: "Angled (NSFW)",
  2502. image: {
  2503. source: "./media/characters/talan/angled-nsfw.svg",
  2504. bottom: 29 / 3734
  2505. }
  2506. },
  2507. frontNsfw: {
  2508. height: math.unit(4, "meter"),
  2509. weight: math.unit(150, "kg"),
  2510. name: "Front (NSFW)",
  2511. image: {
  2512. source: "./media/characters/talan/front-nsfw.svg",
  2513. bottom: 29 / 3734
  2514. }
  2515. },
  2516. sideNsfw: {
  2517. height: math.unit(4, "meter"),
  2518. weight: math.unit(150, "kg"),
  2519. name: "Side (NSFW)",
  2520. image: {
  2521. source: "./media/characters/talan/side-nsfw.svg",
  2522. bottom: 29 / 3734
  2523. }
  2524. },
  2525. back: {
  2526. height: math.unit(4, "meter"),
  2527. weight: math.unit(150, "kg"),
  2528. name: "Back",
  2529. image: {
  2530. source: "./media/characters/talan/back.svg"
  2531. }
  2532. },
  2533. dickBottom: {
  2534. height: math.unit(0.621, "meter"),
  2535. name: "Dick (Bottom)",
  2536. image: {
  2537. source: "./media/characters/talan/dick-bottom.svg"
  2538. }
  2539. },
  2540. dickTop: {
  2541. height: math.unit(0.621, "meter"),
  2542. name: "Dick (Top)",
  2543. image: {
  2544. source: "./media/characters/talan/dick-top.svg"
  2545. }
  2546. },
  2547. dickSide: {
  2548. height: math.unit(0.305, "meter"),
  2549. name: "Dick (Side)",
  2550. image: {
  2551. source: "./media/characters/talan/dick-side.svg"
  2552. }
  2553. },
  2554. dickFront: {
  2555. height: math.unit(0.305, "meter"),
  2556. name: "Dick (Front)",
  2557. image: {
  2558. source: "./media/characters/talan/dick-front.svg"
  2559. }
  2560. },
  2561. },
  2562. [
  2563. {
  2564. name: "Normal",
  2565. height: math.unit(4, "meters")
  2566. },
  2567. {
  2568. name: "Macro",
  2569. height: math.unit(100, "meters")
  2570. },
  2571. {
  2572. name: "Megamacro",
  2573. height: math.unit(2, "miles"),
  2574. default: true
  2575. },
  2576. {
  2577. name: "Gigamacro",
  2578. height: math.unit(5000, "miles")
  2579. },
  2580. {
  2581. name: "Teramacro",
  2582. height: math.unit(100, "parsecs")
  2583. }
  2584. ]
  2585. ))
  2586. characterMakers.push(() => makeCharacter(
  2587. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2588. {
  2589. front: {
  2590. height: math.unit(2, "meter"),
  2591. weight: math.unit(90, "kg"),
  2592. name: "Front",
  2593. image: {
  2594. source: "./media/characters/gael'rathus/front.svg"
  2595. }
  2596. },
  2597. frontAlt: {
  2598. height: math.unit(2, "meter"),
  2599. weight: math.unit(90, "kg"),
  2600. name: "Front (alt)",
  2601. image: {
  2602. source: "./media/characters/gael'rathus/front-alt.svg"
  2603. }
  2604. },
  2605. frontAlt2: {
  2606. height: math.unit(2, "meter"),
  2607. weight: math.unit(90, "kg"),
  2608. name: "Front (alt 2)",
  2609. image: {
  2610. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2611. }
  2612. }
  2613. },
  2614. [
  2615. {
  2616. name: "Normal",
  2617. height: math.unit(9, "feet"),
  2618. default: true
  2619. },
  2620. {
  2621. name: "Large",
  2622. height: math.unit(25, "feet")
  2623. },
  2624. {
  2625. name: "Macro",
  2626. height: math.unit(0.25, "miles")
  2627. },
  2628. {
  2629. name: "Megamacro",
  2630. height: math.unit(10, "miles")
  2631. }
  2632. ]
  2633. ))
  2634. characterMakers.push(() => makeCharacter(
  2635. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2636. {
  2637. side: {
  2638. height: math.unit(2, "meter"),
  2639. weight: math.unit(140, "kg"),
  2640. name: "Side",
  2641. image: {
  2642. source: "./media/characters/sosha/side.svg",
  2643. bottom: 0.042
  2644. }
  2645. },
  2646. },
  2647. [
  2648. {
  2649. name: "Normal",
  2650. height: math.unit(12, "feet"),
  2651. default: true
  2652. }
  2653. ]
  2654. ))
  2655. characterMakers.push(() => makeCharacter(
  2656. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2657. {
  2658. side: {
  2659. height: math.unit(5 + 5 / 12, "feet"),
  2660. weight: math.unit(170, "kg"),
  2661. name: "Side",
  2662. image: {
  2663. source: "./media/characters/runnola/side.svg",
  2664. extra: 741 / 448,
  2665. bottom: 0.05
  2666. }
  2667. },
  2668. },
  2669. [
  2670. {
  2671. name: "Small",
  2672. height: math.unit(3, "feet")
  2673. },
  2674. {
  2675. name: "Normal",
  2676. height: math.unit(5 + 5 / 12, "feet"),
  2677. default: true
  2678. },
  2679. {
  2680. name: "Big",
  2681. height: math.unit(10, "feet")
  2682. },
  2683. ]
  2684. ))
  2685. characterMakers.push(() => makeCharacter(
  2686. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2687. {
  2688. front: {
  2689. height: math.unit(2, "meter"),
  2690. weight: math.unit(50, "kg"),
  2691. name: "Front",
  2692. image: {
  2693. source: "./media/characters/kurribird/front.svg",
  2694. bottom: 0.015
  2695. }
  2696. },
  2697. frontAlt: {
  2698. height: math.unit(1.5, "meter"),
  2699. weight: math.unit(50, "kg"),
  2700. name: "Front (Alt)",
  2701. image: {
  2702. source: "./media/characters/kurribird/front-alt.svg",
  2703. extra: 1.45
  2704. }
  2705. },
  2706. },
  2707. [
  2708. {
  2709. name: "Normal",
  2710. height: math.unit(7, "feet")
  2711. },
  2712. {
  2713. name: "Big",
  2714. height: math.unit(12, "feet"),
  2715. default: true
  2716. },
  2717. {
  2718. name: "Macro",
  2719. height: math.unit(1500, "feet")
  2720. },
  2721. {
  2722. name: "Megamacro",
  2723. height: math.unit(2, "miles")
  2724. }
  2725. ]
  2726. ))
  2727. characterMakers.push(() => makeCharacter(
  2728. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2729. {
  2730. front: {
  2731. height: math.unit(2, "meter"),
  2732. weight: math.unit(80, "kg"),
  2733. name: "Front",
  2734. image: {
  2735. source: "./media/characters/elbial/front.svg",
  2736. extra: 1643 / 1556,
  2737. bottom: 60.2 / 1696
  2738. }
  2739. },
  2740. side: {
  2741. height: math.unit(2, "meter"),
  2742. weight: math.unit(80, "kg"),
  2743. name: "Side",
  2744. image: {
  2745. source: "./media/characters/elbial/side.svg",
  2746. extra: 1630 / 1565,
  2747. bottom: 71.5 / 1697
  2748. }
  2749. },
  2750. back: {
  2751. height: math.unit(2, "meter"),
  2752. weight: math.unit(80, "kg"),
  2753. name: "Back",
  2754. image: {
  2755. source: "./media/characters/elbial/back.svg",
  2756. extra: 1668 / 1595,
  2757. bottom: 5.6 / 1672
  2758. }
  2759. },
  2760. frontDressed: {
  2761. height: math.unit(2, "meter"),
  2762. weight: math.unit(80, "kg"),
  2763. name: "Front (Dressed)",
  2764. image: {
  2765. source: "./media/characters/elbial/front-dressed.svg",
  2766. extra: 1653 / 1584,
  2767. bottom: 57 / 1708
  2768. }
  2769. },
  2770. genitals: {
  2771. height: math.unit(2 / 3.367, "meter"),
  2772. name: "Genitals",
  2773. image: {
  2774. source: "./media/characters/elbial/genitals.svg"
  2775. }
  2776. },
  2777. },
  2778. [
  2779. {
  2780. name: "Large",
  2781. height: math.unit(100, "feet")
  2782. },
  2783. {
  2784. name: "Macro",
  2785. height: math.unit(500, "feet"),
  2786. default: true
  2787. },
  2788. {
  2789. name: "Megamacro",
  2790. height: math.unit(10, "miles")
  2791. },
  2792. {
  2793. name: "Gigamacro",
  2794. height: math.unit(25000, "miles")
  2795. },
  2796. {
  2797. name: "Full-Size",
  2798. height: math.unit(8000000, "gigaparsecs")
  2799. }
  2800. ]
  2801. ))
  2802. characterMakers.push(() => makeCharacter(
  2803. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2804. {
  2805. front: {
  2806. height: math.unit(2, "meter"),
  2807. weight: math.unit(60, "kg"),
  2808. name: "Front",
  2809. image: {
  2810. source: "./media/characters/noah/front.svg"
  2811. }
  2812. },
  2813. talons: {
  2814. height: math.unit(0.315, "meter"),
  2815. name: "Talons",
  2816. image: {
  2817. source: "./media/characters/noah/talons.svg"
  2818. }
  2819. }
  2820. },
  2821. [
  2822. {
  2823. name: "Large",
  2824. height: math.unit(50, "feet")
  2825. },
  2826. {
  2827. name: "Macro",
  2828. height: math.unit(750, "feet"),
  2829. default: true
  2830. },
  2831. {
  2832. name: "Megamacro",
  2833. height: math.unit(50, "miles")
  2834. },
  2835. {
  2836. name: "Gigamacro",
  2837. height: math.unit(100000, "miles")
  2838. },
  2839. {
  2840. name: "Full-Size",
  2841. height: math.unit(3000000000, "miles")
  2842. }
  2843. ]
  2844. ))
  2845. characterMakers.push(() => makeCharacter(
  2846. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2847. {
  2848. front: {
  2849. height: math.unit(2, "meter"),
  2850. weight: math.unit(80, "kg"),
  2851. name: "Front",
  2852. image: {
  2853. source: "./media/characters/natalya/front.svg"
  2854. }
  2855. },
  2856. back: {
  2857. height: math.unit(2, "meter"),
  2858. weight: math.unit(80, "kg"),
  2859. name: "Back",
  2860. image: {
  2861. source: "./media/characters/natalya/back.svg"
  2862. }
  2863. }
  2864. },
  2865. [
  2866. {
  2867. name: "Normal",
  2868. height: math.unit(150, "feet"),
  2869. default: true
  2870. },
  2871. {
  2872. name: "Megamacro",
  2873. height: math.unit(5, "miles")
  2874. },
  2875. {
  2876. name: "Full-Size",
  2877. height: math.unit(600, "kiloparsecs")
  2878. }
  2879. ]
  2880. ))
  2881. characterMakers.push(() => makeCharacter(
  2882. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2883. {
  2884. front: {
  2885. height: math.unit(2, "meter"),
  2886. weight: math.unit(50, "kg"),
  2887. name: "Front",
  2888. image: {
  2889. source: "./media/characters/erestrebah/front.svg",
  2890. extra: 208 / 193,
  2891. bottom: 0.055
  2892. }
  2893. },
  2894. back: {
  2895. height: math.unit(2, "meter"),
  2896. weight: math.unit(50, "kg"),
  2897. name: "Back",
  2898. image: {
  2899. source: "./media/characters/erestrebah/back.svg",
  2900. extra: 1.3
  2901. }
  2902. }
  2903. },
  2904. [
  2905. {
  2906. name: "Normal",
  2907. height: math.unit(10, "feet")
  2908. },
  2909. {
  2910. name: "Large",
  2911. height: math.unit(50, "feet"),
  2912. default: true
  2913. },
  2914. {
  2915. name: "Macro",
  2916. height: math.unit(300, "feet")
  2917. },
  2918. {
  2919. name: "Macro+",
  2920. height: math.unit(750, "feet")
  2921. },
  2922. {
  2923. name: "Megamacro",
  2924. height: math.unit(3, "miles")
  2925. }
  2926. ]
  2927. ))
  2928. characterMakers.push(() => makeCharacter(
  2929. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2930. {
  2931. front: {
  2932. height: math.unit(2, "meter"),
  2933. weight: math.unit(80, "kg"),
  2934. name: "Front",
  2935. image: {
  2936. source: "./media/characters/jennifer/front.svg",
  2937. bottom: 0.11,
  2938. extra: 1.16
  2939. }
  2940. },
  2941. frontAlt: {
  2942. height: math.unit(2, "meter"),
  2943. weight: math.unit(80, "kg"),
  2944. name: "Front (Alt)",
  2945. image: {
  2946. source: "./media/characters/jennifer/front-alt.svg"
  2947. }
  2948. }
  2949. },
  2950. [
  2951. {
  2952. name: "Canon Height",
  2953. height: math.unit(120, "feet"),
  2954. default: true
  2955. },
  2956. {
  2957. name: "Macro+",
  2958. height: math.unit(300, "feet")
  2959. },
  2960. {
  2961. name: "Megamacro",
  2962. height: math.unit(20000, "feet")
  2963. }
  2964. ]
  2965. ))
  2966. characterMakers.push(() => makeCharacter(
  2967. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  2968. {
  2969. front: {
  2970. height: math.unit(2, "meter"),
  2971. weight: math.unit(50, "kg"),
  2972. name: "Front",
  2973. image: {
  2974. source: "./media/characters/kalista/front.svg",
  2975. extra: 1947 / 1700,
  2976. bottom: 76.6 / 1412.98
  2977. }
  2978. },
  2979. back: {
  2980. height: math.unit(2, "meter"),
  2981. weight: math.unit(50, "kg"),
  2982. name: "Back",
  2983. image: {
  2984. source: "./media/characters/kalista/back.svg",
  2985. extra: 1366 / 1156,
  2986. bottom: 33.9 / 1362.78
  2987. }
  2988. }
  2989. },
  2990. [
  2991. {
  2992. name: "Uncomfortably Small",
  2993. height: math.unit(10, "feet")
  2994. },
  2995. {
  2996. name: "Small",
  2997. height: math.unit(30, "feet")
  2998. },
  2999. {
  3000. name: "Macro",
  3001. height: math.unit(100, "feet"),
  3002. default: true
  3003. },
  3004. {
  3005. name: "Macro+",
  3006. height: math.unit(2000, "feet")
  3007. },
  3008. {
  3009. name: "True Form",
  3010. height: math.unit(8924, "miles")
  3011. }
  3012. ]
  3013. ))
  3014. characterMakers.push(() => makeCharacter(
  3015. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3016. {
  3017. front: {
  3018. height: math.unit(2, "meter"),
  3019. weight: math.unit(120, "kg"),
  3020. name: "Front",
  3021. image: {
  3022. source: "./media/characters/ggv/front.svg"
  3023. }
  3024. },
  3025. side: {
  3026. height: math.unit(2, "meter"),
  3027. weight: math.unit(120, "kg"),
  3028. name: "Side",
  3029. image: {
  3030. source: "./media/characters/ggv/side.svg"
  3031. }
  3032. }
  3033. },
  3034. [
  3035. {
  3036. name: "Extremely Puny",
  3037. height: math.unit(9 + 5 / 12, "feet")
  3038. },
  3039. {
  3040. name: "Horribly Small",
  3041. height: math.unit(47.7, "miles"),
  3042. default: true
  3043. },
  3044. {
  3045. name: "Reasonably Sized",
  3046. height: math.unit(25000, "parsecs")
  3047. },
  3048. {
  3049. name: "Slightly Uncompressed",
  3050. height: math.unit(7.77e31, "parsecs")
  3051. },
  3052. {
  3053. name: "Omniversal",
  3054. height: math.unit(1e300, "meters")
  3055. },
  3056. ]
  3057. ))
  3058. characterMakers.push(() => makeCharacter(
  3059. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3060. {
  3061. front: {
  3062. height: math.unit(2, "meter"),
  3063. weight: math.unit(75, "lb"),
  3064. name: "Front",
  3065. image: {
  3066. source: "./media/characters/napalm/front.svg"
  3067. }
  3068. },
  3069. back: {
  3070. height: math.unit(2, "meter"),
  3071. weight: math.unit(75, "lb"),
  3072. name: "Back",
  3073. image: {
  3074. source: "./media/characters/napalm/back.svg"
  3075. }
  3076. }
  3077. },
  3078. [
  3079. {
  3080. name: "Standard",
  3081. height: math.unit(55, "feet"),
  3082. default: true
  3083. }
  3084. ]
  3085. ))
  3086. characterMakers.push(() => makeCharacter(
  3087. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3088. {
  3089. front: {
  3090. height: math.unit(7 + 5 / 6, "feet"),
  3091. weight: math.unit(325, "lb"),
  3092. name: "Front",
  3093. image: {
  3094. source: "./media/characters/asana/front.svg",
  3095. extra: 1133 / 1060,
  3096. bottom: 15.2/1148.6
  3097. }
  3098. },
  3099. back: {
  3100. height: math.unit(7 + 5 / 6, "feet"),
  3101. weight: math.unit(325, "lb"),
  3102. name: "Back",
  3103. image: {
  3104. source: "./media/characters/asana/back.svg",
  3105. extra: 1114 / 1043,
  3106. bottom: 5/1120
  3107. }
  3108. },
  3109. dressedDark: {
  3110. height: math.unit(7 + 5 / 6, "feet"),
  3111. weight: math.unit(325, "lb"),
  3112. name: "Dressed (Dark)",
  3113. image: {
  3114. source: "./media/characters/asana/dressed-dark.svg",
  3115. extra: 1133 / 1060,
  3116. bottom: 15.2/1148.6
  3117. }
  3118. },
  3119. dressedLight: {
  3120. height: math.unit(7 + 5 / 6, "feet"),
  3121. weight: math.unit(325, "lb"),
  3122. name: "Dressed (Light)",
  3123. image: {
  3124. source: "./media/characters/asana/dressed-light.svg",
  3125. extra: 1133 / 1060,
  3126. bottom: 15.2/1148.6
  3127. }
  3128. },
  3129. },
  3130. [
  3131. {
  3132. name: "Standard",
  3133. height: math.unit(7 + 5 / 6, "feet"),
  3134. default: true
  3135. },
  3136. {
  3137. name: "Large",
  3138. height: math.unit(10, "meters")
  3139. },
  3140. {
  3141. name: "Macro",
  3142. height: math.unit(2500, "meters")
  3143. },
  3144. {
  3145. name: "Megamacro",
  3146. height: math.unit(5e6, "meters")
  3147. },
  3148. {
  3149. name: "Examacro",
  3150. height: math.unit(5e12, "lightyears")
  3151. },
  3152. {
  3153. name: "Max Size",
  3154. height: math.unit(1e31, "lightyears")
  3155. }
  3156. ]
  3157. ))
  3158. characterMakers.push(() => makeCharacter(
  3159. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3160. {
  3161. front: {
  3162. height: math.unit(2, "meter"),
  3163. weight: math.unit(60, "kg"),
  3164. name: "Front",
  3165. image: {
  3166. source: "./media/characters/ebony/front.svg",
  3167. bottom: 0.03,
  3168. extra: 1045 / 810 + 0.03
  3169. }
  3170. },
  3171. side: {
  3172. height: math.unit(2, "meter"),
  3173. weight: math.unit(60, "kg"),
  3174. name: "Side",
  3175. image: {
  3176. source: "./media/characters/ebony/side.svg",
  3177. bottom: 0.03,
  3178. extra: 1045 / 810 + 0.03
  3179. }
  3180. },
  3181. back: {
  3182. height: math.unit(2, "meter"),
  3183. weight: math.unit(60, "kg"),
  3184. name: "Back",
  3185. image: {
  3186. source: "./media/characters/ebony/back.svg",
  3187. bottom: 0.01,
  3188. extra: 1045 / 810 + 0.01
  3189. }
  3190. },
  3191. },
  3192. [
  3193. // TODO check why I did this lol
  3194. {
  3195. name: "Standard",
  3196. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3197. default: true
  3198. },
  3199. {
  3200. name: "Macro",
  3201. height: math.unit(200, "feet")
  3202. },
  3203. {
  3204. name: "Gigamacro",
  3205. height: math.unit(13000, "km")
  3206. }
  3207. ]
  3208. ))
  3209. characterMakers.push(() => makeCharacter(
  3210. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3211. {
  3212. front: {
  3213. height: math.unit(6, "feet"),
  3214. weight: math.unit(175, "lb"),
  3215. name: "Front",
  3216. image: {
  3217. source: "./media/characters/mountain/front.svg",
  3218. extra: 972/955,
  3219. bottom: 64/1036.6
  3220. }
  3221. },
  3222. back: {
  3223. height: math.unit(6, "feet"),
  3224. weight: math.unit(175, "lb"),
  3225. name: "Back",
  3226. image: {
  3227. source: "./media/characters/mountain/back.svg",
  3228. extra: 970/950,
  3229. bottom: 28.25/999
  3230. }
  3231. },
  3232. },
  3233. [
  3234. {
  3235. name: "Large",
  3236. height: math.unit(20, "meters")
  3237. },
  3238. {
  3239. name: "Macro",
  3240. height: math.unit(300, "meters")
  3241. },
  3242. {
  3243. name: "Gigamacro",
  3244. height: math.unit(10000, "km"),
  3245. default: true
  3246. },
  3247. {
  3248. name: "Examacro",
  3249. height: math.unit(10e9, "lightyears")
  3250. }
  3251. ]
  3252. ))
  3253. characterMakers.push(() => makeCharacter(
  3254. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3255. {
  3256. front: {
  3257. height: math.unit(8, "feet"),
  3258. weight: math.unit(500, "lb"),
  3259. name: "Front",
  3260. image: {
  3261. source: "./media/characters/rick/front.svg"
  3262. }
  3263. }
  3264. },
  3265. [
  3266. {
  3267. name: "Normal",
  3268. height: math.unit(8, "feet"),
  3269. default: true
  3270. },
  3271. {
  3272. name: "Macro",
  3273. height: math.unit(5, "km")
  3274. }
  3275. ]
  3276. ))
  3277. characterMakers.push(() => makeCharacter(
  3278. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3279. {
  3280. front: {
  3281. height: math.unit(8, "feet"),
  3282. weight: math.unit(120, "lb"),
  3283. name: "Front",
  3284. image: {
  3285. source: "./media/characters/ona/front.svg"
  3286. }
  3287. },
  3288. frontAlt: {
  3289. height: math.unit(8, "feet"),
  3290. weight: math.unit(120, "lb"),
  3291. name: "Front (Alt)",
  3292. image: {
  3293. source: "./media/characters/ona/front-alt.svg"
  3294. }
  3295. },
  3296. back: {
  3297. height: math.unit(8, "feet"),
  3298. weight: math.unit(120, "lb"),
  3299. name: "Back",
  3300. image: {
  3301. source: "./media/characters/ona/back.svg"
  3302. }
  3303. },
  3304. foot: {
  3305. height: math.unit(1.1, "feet"),
  3306. name: "Foot",
  3307. image: {
  3308. source: "./media/characters/ona/foot.svg"
  3309. }
  3310. }
  3311. },
  3312. [
  3313. {
  3314. name: "Megamacro",
  3315. height: math.unit(70, "km"),
  3316. default: true
  3317. },
  3318. {
  3319. name: "Gigamacro",
  3320. height: math.unit(681818, "miles")
  3321. },
  3322. {
  3323. name: "Examacro",
  3324. height: math.unit(3800000, "lightyears")
  3325. },
  3326. ]
  3327. ))
  3328. characterMakers.push(() => makeCharacter(
  3329. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3330. {
  3331. front: {
  3332. height: math.unit(12, "feet"),
  3333. weight: math.unit(3000, "lb"),
  3334. name: "Front",
  3335. image: {
  3336. source: "./media/characters/mech/front.svg",
  3337. bottom: 0.025,
  3338. }
  3339. },
  3340. back: {
  3341. height: math.unit(12, "feet"),
  3342. weight: math.unit(3000, "lb"),
  3343. name: "Back",
  3344. image: {
  3345. source: "./media/characters/mech/back.svg",
  3346. bottom: 0.03,
  3347. }
  3348. }
  3349. },
  3350. [
  3351. {
  3352. name: "Normal",
  3353. height: math.unit(12, "feet")
  3354. },
  3355. {
  3356. name: "Macro",
  3357. height: math.unit(300, "feet"),
  3358. default: true
  3359. },
  3360. {
  3361. name: "Macro+",
  3362. height: math.unit(1500, "feet")
  3363. },
  3364. ]
  3365. ))
  3366. characterMakers.push(() => makeCharacter(
  3367. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3368. {
  3369. front: {
  3370. height: math.unit(1.3, "meter"),
  3371. weight: math.unit(30, "kg"),
  3372. name: "Front",
  3373. image: {
  3374. source: "./media/characters/gregory/front.svg",
  3375. }
  3376. }
  3377. },
  3378. [
  3379. {
  3380. name: "Normal",
  3381. height: math.unit(1.3, "meter"),
  3382. default: true
  3383. },
  3384. {
  3385. name: "Macro",
  3386. height: math.unit(20, "meter")
  3387. }
  3388. ]
  3389. ))
  3390. characterMakers.push(() => makeCharacter(
  3391. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3392. {
  3393. front: {
  3394. height: math.unit(2.8, "meter"),
  3395. weight: math.unit(200, "kg"),
  3396. name: "Front",
  3397. image: {
  3398. source: "./media/characters/elory/front.svg",
  3399. }
  3400. }
  3401. },
  3402. [
  3403. {
  3404. name: "Normal",
  3405. height: math.unit(2.8, "meter"),
  3406. default: true
  3407. },
  3408. {
  3409. name: "Macro",
  3410. height: math.unit(38, "meter")
  3411. }
  3412. ]
  3413. ))
  3414. characterMakers.push(() => makeCharacter(
  3415. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3416. {
  3417. front: {
  3418. height: math.unit(470, "feet"),
  3419. weight: math.unit(924, "tons"),
  3420. name: "Front",
  3421. image: {
  3422. source: "./media/characters/angelpatamon/front.svg",
  3423. }
  3424. }
  3425. },
  3426. [
  3427. {
  3428. name: "Normal",
  3429. height: math.unit(470, "feet"),
  3430. default: true
  3431. },
  3432. {
  3433. name: "Deity Size I",
  3434. height: math.unit(28651.2, "km")
  3435. },
  3436. {
  3437. name: "Deity Size II",
  3438. height: math.unit(171907.2, "km")
  3439. }
  3440. ]
  3441. ))
  3442. characterMakers.push(() => makeCharacter(
  3443. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3444. {
  3445. side: {
  3446. height: math.unit(7.2, "meter"),
  3447. weight: math.unit(8.2, "tons"),
  3448. name: "Side",
  3449. image: {
  3450. source: "./media/characters/cryae/side.svg",
  3451. extra: 3500 / 1500
  3452. }
  3453. }
  3454. },
  3455. [
  3456. {
  3457. name: "Normal",
  3458. height: math.unit(7.2, "meter"),
  3459. default: true
  3460. }
  3461. ]
  3462. ))
  3463. characterMakers.push(() => makeCharacter(
  3464. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3465. {
  3466. front: {
  3467. height: math.unit(6, "feet"),
  3468. weight: math.unit(175, "lb"),
  3469. name: "Front",
  3470. image: {
  3471. source: "./media/characters/xera/front.svg",
  3472. extra: 2377 / 1972,
  3473. bottom: 75.5/2452
  3474. }
  3475. },
  3476. side: {
  3477. height: math.unit(6, "feet"),
  3478. weight: math.unit(175, "lb"),
  3479. name: "Side",
  3480. image: {
  3481. source: "./media/characters/xera/side.svg",
  3482. extra: 2345/2019,
  3483. bottom: 39.7/2384
  3484. }
  3485. },
  3486. back: {
  3487. height: math.unit(6, "feet"),
  3488. weight: math.unit(175, "lb"),
  3489. name: "Back",
  3490. image: {
  3491. source: "./media/characters/xera/back.svg",
  3492. extra: 2095/1984,
  3493. bottom: 67/2166
  3494. }
  3495. },
  3496. },
  3497. [
  3498. {
  3499. name: "Small",
  3500. height: math.unit(10, "feet")
  3501. },
  3502. {
  3503. name: "Macro",
  3504. height: math.unit(500, "meters"),
  3505. default: true
  3506. },
  3507. {
  3508. name: "Macro+",
  3509. height: math.unit(10, "km")
  3510. },
  3511. {
  3512. name: "Gigamacro",
  3513. height: math.unit(25000, "km")
  3514. },
  3515. {
  3516. name: "Teramacro",
  3517. height: math.unit(3e6, "km")
  3518. }
  3519. ]
  3520. ))
  3521. characterMakers.push(() => makeCharacter(
  3522. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3523. {
  3524. front: {
  3525. height: math.unit(6, "feet"),
  3526. weight: math.unit(175, "lb"),
  3527. name: "Front",
  3528. image: {
  3529. source: "./media/characters/nebula/front.svg",
  3530. extra: 2566/2362,
  3531. bottom: 81/2644
  3532. }
  3533. }
  3534. },
  3535. [
  3536. {
  3537. name: "Small",
  3538. height: math.unit(4.5, "meters")
  3539. },
  3540. {
  3541. name: "Macro",
  3542. height: math.unit(1500, "meters"),
  3543. default: true
  3544. },
  3545. {
  3546. name: "Megamacro",
  3547. height: math.unit(150, "km")
  3548. },
  3549. {
  3550. name: "Gigamacro",
  3551. height: math.unit(27000, "km")
  3552. }
  3553. ]
  3554. ))
  3555. characterMakers.push(() => makeCharacter(
  3556. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3557. {
  3558. front: {
  3559. height: math.unit(6, "feet"),
  3560. weight: math.unit(225, "lb"),
  3561. name: "Front",
  3562. image: {
  3563. source: "./media/characters/abysgar/front.svg"
  3564. }
  3565. }
  3566. },
  3567. [
  3568. {
  3569. name: "Small",
  3570. height: math.unit(4.5, "meters")
  3571. },
  3572. {
  3573. name: "Macro",
  3574. height: math.unit(1250, "meters"),
  3575. default: true
  3576. },
  3577. {
  3578. name: "Megamacro",
  3579. height: math.unit(125, "km")
  3580. },
  3581. {
  3582. name: "Gigamacro",
  3583. height: math.unit(26000, "km")
  3584. }
  3585. ]
  3586. ))
  3587. characterMakers.push(() => makeCharacter(
  3588. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3589. {
  3590. front: {
  3591. height: math.unit(6, "feet"),
  3592. weight: math.unit(180, "lb"),
  3593. name: "Front",
  3594. image: {
  3595. source: "./media/characters/yakuz/front.svg"
  3596. }
  3597. }
  3598. },
  3599. [
  3600. {
  3601. name: "Small",
  3602. height: math.unit(5, "meters")
  3603. },
  3604. {
  3605. name: "Macro",
  3606. height: math.unit(1500, "meters"),
  3607. default: true
  3608. },
  3609. {
  3610. name: "Megamacro",
  3611. height: math.unit(200, "km")
  3612. },
  3613. {
  3614. name: "Gigamacro",
  3615. height: math.unit(100000, "km")
  3616. }
  3617. ]
  3618. ))
  3619. characterMakers.push(() => makeCharacter(
  3620. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3621. {
  3622. front: {
  3623. height: math.unit(6, "feet"),
  3624. weight: math.unit(175, "lb"),
  3625. name: "Front",
  3626. image: {
  3627. source: "./media/characters/mirova/front.svg",
  3628. extra: 3334/3071,
  3629. bottom: 42/3375.6
  3630. }
  3631. }
  3632. },
  3633. [
  3634. {
  3635. name: "Small",
  3636. height: math.unit(5, "meters")
  3637. },
  3638. {
  3639. name: "Macro",
  3640. height: math.unit(900, "meters"),
  3641. default: true
  3642. },
  3643. {
  3644. name: "Megamacro",
  3645. height: math.unit(135, "km")
  3646. },
  3647. {
  3648. name: "Gigamacro",
  3649. height: math.unit(20000, "km")
  3650. }
  3651. ]
  3652. ))
  3653. characterMakers.push(() => makeCharacter(
  3654. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3655. {
  3656. side: {
  3657. height: math.unit(28.35, "feet"),
  3658. weight: math.unit(99.75, "tons"),
  3659. name: "Side",
  3660. image: {
  3661. source: "./media/characters/asana-mech/side.svg",
  3662. extra: 923/699,
  3663. bottom: 50/975
  3664. }
  3665. },
  3666. chaingun: {
  3667. height: math.unit(7, "feet"),
  3668. weight: math.unit(2400, "lb"),
  3669. name: "Chaingun",
  3670. image: {
  3671. source: "./media/characters/asana-mech/chaingun.svg"
  3672. }
  3673. },
  3674. laser: {
  3675. height: math.unit(7.12, "feet"),
  3676. weight: math.unit(2000, "lb"),
  3677. name: "Laser",
  3678. image: {
  3679. source: "./media/characters/asana-mech/laser.svg"
  3680. }
  3681. },
  3682. },
  3683. [
  3684. {
  3685. name: "Normal",
  3686. height: math.unit(28.35, "feet"),
  3687. default: true
  3688. },
  3689. {
  3690. name: "Macro",
  3691. height: math.unit(2500, "feet")
  3692. },
  3693. {
  3694. name: "Megamacro",
  3695. height: math.unit(25, "miles")
  3696. },
  3697. {
  3698. name: "Examacro",
  3699. height: math.unit(6e8, "lightyears")
  3700. },
  3701. ]
  3702. ))
  3703. characterMakers.push(() => makeCharacter(
  3704. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3705. {
  3706. front: {
  3707. height: math.unit(5, "meters"),
  3708. weight: math.unit(1000, "kg"),
  3709. name: "Front",
  3710. image: {
  3711. source: "./media/characters/asche/front.svg",
  3712. extra: 1258/1190,
  3713. bottom: 47/1305
  3714. }
  3715. },
  3716. frontUnderwear: {
  3717. height: math.unit(5, "meters"),
  3718. weight: math.unit(1000, "kg"),
  3719. name: "Front (Underwear)",
  3720. image: {
  3721. source: "./media/characters/asche/front-underwear.svg",
  3722. extra: 1258/1190,
  3723. bottom: 47/1305
  3724. }
  3725. },
  3726. frontDressed: {
  3727. height: math.unit(5, "meters"),
  3728. weight: math.unit(1000, "kg"),
  3729. name: "Front (Dressed)",
  3730. image: {
  3731. source: "./media/characters/asche/front-dressed.svg",
  3732. extra: 1258/1190,
  3733. bottom: 47/1305
  3734. }
  3735. },
  3736. frontArmor: {
  3737. height: math.unit(5, "meters"),
  3738. weight: math.unit(1000, "kg"),
  3739. name: "Front (Armored)",
  3740. image: {
  3741. source: "./media/characters/asche/front-armored.svg",
  3742. extra: 1374 / 1308,
  3743. bottom: 23/1397
  3744. }
  3745. },
  3746. mp724: {
  3747. height: math.unit(0.96, "meters"),
  3748. weight: math.unit(38, "kg"),
  3749. name: "H&K MP724",
  3750. image: {
  3751. source: "./media/characters/asche/h&k-mp724.svg"
  3752. }
  3753. },
  3754. side: {
  3755. height: math.unit(5, "meters"),
  3756. weight: math.unit(1000, "kg"),
  3757. name: "Side",
  3758. image: {
  3759. source: "./media/characters/asche/side.svg",
  3760. extra: 1717 / 1609,
  3761. bottom: 0.005
  3762. }
  3763. },
  3764. back: {
  3765. height: math.unit(5, "meters"),
  3766. weight: math.unit(1000, "kg"),
  3767. name: "Back",
  3768. image: {
  3769. source: "./media/characters/asche/back.svg",
  3770. extra: 1570 / 1501
  3771. }
  3772. },
  3773. },
  3774. [
  3775. {
  3776. name: "DEFCON 5",
  3777. height: math.unit(5, "meters")
  3778. },
  3779. {
  3780. name: "DEFCON 4",
  3781. height: math.unit(500, "meters"),
  3782. default: true
  3783. },
  3784. {
  3785. name: "DEFCON 3",
  3786. height: math.unit(5, "km")
  3787. },
  3788. {
  3789. name: "DEFCON 2",
  3790. height: math.unit(500, "km")
  3791. },
  3792. {
  3793. name: "DEFCON 1",
  3794. height: math.unit(500000, "km")
  3795. },
  3796. {
  3797. name: "DEFCON 0",
  3798. height: math.unit(3, "gigaparsecs")
  3799. },
  3800. ]
  3801. ))
  3802. characterMakers.push(() => makeCharacter(
  3803. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3804. {
  3805. front: {
  3806. height: math.unit(2, "meters"),
  3807. weight: math.unit(76, "kg"),
  3808. name: "Front",
  3809. image: {
  3810. source: "./media/characters/gale/front.svg"
  3811. }
  3812. },
  3813. frontAlt1: {
  3814. height: math.unit(2, "meters"),
  3815. weight: math.unit(76, "kg"),
  3816. name: "Front (Alt 1)",
  3817. image: {
  3818. source: "./media/characters/gale/front-alt-1.svg"
  3819. }
  3820. },
  3821. frontAlt2: {
  3822. height: math.unit(2, "meters"),
  3823. weight: math.unit(76, "kg"),
  3824. name: "Front (Alt 2)",
  3825. image: {
  3826. source: "./media/characters/gale/front-alt-2.svg"
  3827. }
  3828. },
  3829. },
  3830. [
  3831. {
  3832. name: "Normal",
  3833. height: math.unit(7, "feet")
  3834. },
  3835. {
  3836. name: "Macro",
  3837. height: math.unit(150, "feet"),
  3838. default: true
  3839. },
  3840. {
  3841. name: "Macro+",
  3842. height: math.unit(300, "feet")
  3843. },
  3844. ]
  3845. ))
  3846. characterMakers.push(() => makeCharacter(
  3847. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3848. {
  3849. front: {
  3850. height: math.unit(2, "meters"),
  3851. weight: math.unit(76, "kg"),
  3852. name: "Front",
  3853. image: {
  3854. source: "./media/characters/draylen/front.svg"
  3855. }
  3856. }
  3857. },
  3858. [
  3859. {
  3860. name: "Macro",
  3861. height: math.unit(150, "feet"),
  3862. default: true
  3863. }
  3864. ]
  3865. ))
  3866. characterMakers.push(() => makeCharacter(
  3867. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3868. {
  3869. front: {
  3870. height: math.unit(7 + 9 / 12, "feet"),
  3871. weight: math.unit(379, "lbs"),
  3872. name: "Front",
  3873. image: {
  3874. source: "./media/characters/chez/front.svg"
  3875. }
  3876. },
  3877. side: {
  3878. height: math.unit(7 + 9 / 12, "feet"),
  3879. weight: math.unit(379, "lbs"),
  3880. name: "Side",
  3881. image: {
  3882. source: "./media/characters/chez/side.svg"
  3883. }
  3884. }
  3885. },
  3886. [
  3887. {
  3888. name: "Normal",
  3889. height: math.unit(7 + 9 / 12, "feet"),
  3890. default: true
  3891. },
  3892. {
  3893. name: "God King",
  3894. height: math.unit(9750000, "meters")
  3895. }
  3896. ]
  3897. ))
  3898. characterMakers.push(() => makeCharacter(
  3899. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  3900. {
  3901. front: {
  3902. height: math.unit(6, "feet"),
  3903. weight: math.unit(275, "lbs"),
  3904. name: "Front",
  3905. image: {
  3906. source: "./media/characters/kaylum/front.svg",
  3907. bottom: 0.01,
  3908. extra: 1166 / 1031
  3909. }
  3910. },
  3911. frontWingless: {
  3912. height: math.unit(6, "feet"),
  3913. weight: math.unit(275, "lbs"),
  3914. name: "Front (Wingless)",
  3915. image: {
  3916. source: "./media/characters/kaylum/front-wingless.svg",
  3917. bottom: 0.01,
  3918. extra: 1117 / 1031
  3919. }
  3920. }
  3921. },
  3922. [
  3923. {
  3924. name: "Normal",
  3925. height: math.unit(3.05, "meters")
  3926. },
  3927. {
  3928. name: "Master",
  3929. height: math.unit(5.5, "meters")
  3930. },
  3931. {
  3932. name: "Rampage",
  3933. height: math.unit(19, "meters")
  3934. },
  3935. {
  3936. name: "Macro Lite",
  3937. height: math.unit(37, "meters")
  3938. },
  3939. {
  3940. name: "Hyper Predator",
  3941. height: math.unit(61, "meters")
  3942. },
  3943. {
  3944. name: "Macro",
  3945. height: math.unit(138, "meters"),
  3946. default: true
  3947. }
  3948. ]
  3949. ))
  3950. characterMakers.push(() => makeCharacter(
  3951. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  3952. {
  3953. front: {
  3954. height: math.unit(6, "feet"),
  3955. weight: math.unit(150, "lbs"),
  3956. name: "Front",
  3957. image: {
  3958. source: "./media/characters/geta/front.svg"
  3959. }
  3960. }
  3961. },
  3962. [
  3963. {
  3964. name: "Micro",
  3965. height: math.unit(3, "inches"),
  3966. default: true
  3967. },
  3968. {
  3969. name: "Normal",
  3970. height: math.unit(5 + 5 / 12, "feet")
  3971. }
  3972. ]
  3973. ))
  3974. characterMakers.push(() => makeCharacter(
  3975. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  3976. {
  3977. front: {
  3978. height: math.unit(6, "feet"),
  3979. weight: math.unit(300, "lbs"),
  3980. name: "Front",
  3981. image: {
  3982. source: "./media/characters/tyrnn/front.svg"
  3983. }
  3984. }
  3985. },
  3986. [
  3987. {
  3988. name: "Main Height",
  3989. height: math.unit(355, "feet"),
  3990. default: true
  3991. },
  3992. {
  3993. name: "Fave. Height",
  3994. height: math.unit(2400, "feet")
  3995. }
  3996. ]
  3997. ))
  3998. characterMakers.push(() => makeCharacter(
  3999. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4000. {
  4001. front: {
  4002. height: math.unit(6, "feet"),
  4003. weight: math.unit(300, "lbs"),
  4004. name: "Front",
  4005. image: {
  4006. source: "./media/characters/appledectomy/front.svg"
  4007. }
  4008. }
  4009. },
  4010. [
  4011. {
  4012. name: "Macro",
  4013. height: math.unit(2500, "feet")
  4014. },
  4015. {
  4016. name: "Megamacro",
  4017. height: math.unit(50, "miles"),
  4018. default: true
  4019. },
  4020. {
  4021. name: "Gigamacro",
  4022. height: math.unit(5000, "miles")
  4023. },
  4024. {
  4025. name: "Teramacro",
  4026. height: math.unit(250000, "miles")
  4027. },
  4028. ]
  4029. ))
  4030. characterMakers.push(() => makeCharacter(
  4031. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4032. {
  4033. front: {
  4034. height: math.unit(6, "feet"),
  4035. weight: math.unit(200, "lbs"),
  4036. name: "Front",
  4037. image: {
  4038. source: "./media/characters/vulpes/front.svg",
  4039. extra: 573 / 543,
  4040. bottom: 0.033
  4041. }
  4042. },
  4043. side: {
  4044. height: math.unit(6, "feet"),
  4045. weight: math.unit(200, "lbs"),
  4046. name: "Side",
  4047. image: {
  4048. source: "./media/characters/vulpes/side.svg",
  4049. extra: 573 / 543,
  4050. bottom: 0.01
  4051. }
  4052. },
  4053. back: {
  4054. height: math.unit(6, "feet"),
  4055. weight: math.unit(200, "lbs"),
  4056. name: "Back",
  4057. image: {
  4058. source: "./media/characters/vulpes/back.svg",
  4059. extra: 573 / 543,
  4060. }
  4061. },
  4062. feet: {
  4063. height: math.unit(1.276, "feet"),
  4064. name: "Feet",
  4065. image: {
  4066. source: "./media/characters/vulpes/feet.svg"
  4067. }
  4068. },
  4069. maw: {
  4070. height: math.unit(1.18, "feet"),
  4071. name: "Maw",
  4072. image: {
  4073. source: "./media/characters/vulpes/maw.svg"
  4074. }
  4075. },
  4076. },
  4077. [
  4078. {
  4079. name: "Micro",
  4080. height: math.unit(2, "inches")
  4081. },
  4082. {
  4083. name: "Normal",
  4084. height: math.unit(6.3, "feet")
  4085. },
  4086. {
  4087. name: "Macro",
  4088. height: math.unit(850, "feet")
  4089. },
  4090. {
  4091. name: "Megamacro",
  4092. height: math.unit(7500, "feet"),
  4093. default: true
  4094. },
  4095. {
  4096. name: "Gigamacro",
  4097. height: math.unit(570000, "miles")
  4098. }
  4099. ]
  4100. ))
  4101. characterMakers.push(() => makeCharacter(
  4102. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4103. {
  4104. front: {
  4105. height: math.unit(6, "feet"),
  4106. weight: math.unit(210, "lbs"),
  4107. name: "Front",
  4108. image: {
  4109. source: "./media/characters/rain-fallen/front.svg"
  4110. }
  4111. },
  4112. side: {
  4113. height: math.unit(6, "feet"),
  4114. weight: math.unit(210, "lbs"),
  4115. name: "Side",
  4116. image: {
  4117. source: "./media/characters/rain-fallen/side.svg"
  4118. }
  4119. },
  4120. back: {
  4121. height: math.unit(6, "feet"),
  4122. weight: math.unit(210, "lbs"),
  4123. name: "Back",
  4124. image: {
  4125. source: "./media/characters/rain-fallen/back.svg"
  4126. }
  4127. },
  4128. feral: {
  4129. height: math.unit(9, "feet"),
  4130. weight: math.unit(700, "lbs"),
  4131. name: "Feral",
  4132. image: {
  4133. source: "./media/characters/rain-fallen/feral.svg"
  4134. }
  4135. },
  4136. },
  4137. [
  4138. {
  4139. name: "Normal",
  4140. height: math.unit(5, "meter")
  4141. },
  4142. {
  4143. name: "Macro",
  4144. height: math.unit(150, "meter"),
  4145. default: true
  4146. },
  4147. {
  4148. name: "Megamacro",
  4149. height: math.unit(278e6, "meter")
  4150. },
  4151. {
  4152. name: "Gigamacro",
  4153. height: math.unit(2e9, "meter")
  4154. },
  4155. {
  4156. name: "Teramacro",
  4157. height: math.unit(8e12, "meter")
  4158. },
  4159. {
  4160. name: "Devourer",
  4161. height: math.unit(14, "zettameters")
  4162. },
  4163. {
  4164. name: "Scarlet King",
  4165. height: math.unit(18, "yottameters")
  4166. },
  4167. {
  4168. name: "Void",
  4169. height: math.unit(6.66e66, "yottameters")
  4170. }
  4171. ]
  4172. ))
  4173. characterMakers.push(() => makeCharacter(
  4174. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4175. {
  4176. standing: {
  4177. height: math.unit(6, "feet"),
  4178. weight: math.unit(180, "lbs"),
  4179. name: "Standing",
  4180. image: {
  4181. source: "./media/characters/zaakira/standing.svg"
  4182. }
  4183. },
  4184. laying: {
  4185. height: math.unit(3, "feet"),
  4186. weight: math.unit(180, "lbs"),
  4187. name: "Laying",
  4188. image: {
  4189. source: "./media/characters/zaakira/laying.svg"
  4190. }
  4191. },
  4192. },
  4193. [
  4194. {
  4195. name: "Normal",
  4196. height: math.unit(12, "feet")
  4197. },
  4198. {
  4199. name: "Macro",
  4200. height: math.unit(279, "feet"),
  4201. default: true
  4202. }
  4203. ]
  4204. ))
  4205. characterMakers.push(() => makeCharacter(
  4206. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4207. {
  4208. femSfw: {
  4209. height: math.unit(8, "feet"),
  4210. weight: math.unit(350, "lb"),
  4211. name: "Fem",
  4212. image: {
  4213. source: "./media/characters/sigvald/fem-sfw.svg",
  4214. extra: 182/164,
  4215. bottom: 8.7/190.5
  4216. }
  4217. },
  4218. femNsfw: {
  4219. height: math.unit(8, "feet"),
  4220. weight: math.unit(350, "lb"),
  4221. name: "Fem (NSFW)",
  4222. image: {
  4223. source: "./media/characters/sigvald/fem-nsfw.svg",
  4224. extra: 182/164,
  4225. bottom: 8.7/190.5
  4226. }
  4227. },
  4228. maleNsfw: {
  4229. height: math.unit(8, "feet"),
  4230. weight: math.unit(350, "lb"),
  4231. name: "Male (NSFW)",
  4232. image: {
  4233. source: "./media/characters/sigvald/male-nsfw.svg",
  4234. extra: 182/164,
  4235. bottom: 8.7/190.5
  4236. }
  4237. },
  4238. hermNsfw: {
  4239. height: math.unit(8, "feet"),
  4240. weight: math.unit(350, "lb"),
  4241. name: "Herm (NSFW)",
  4242. image: {
  4243. source: "./media/characters/sigvald/herm-nsfw.svg",
  4244. extra: 182/164,
  4245. bottom: 8.7/190.5
  4246. }
  4247. },
  4248. dick: {
  4249. height: math.unit(2.36, "feet"),
  4250. name: "Dick",
  4251. image: {
  4252. source: "./media/characters/sigvald/dick.svg"
  4253. }
  4254. },
  4255. eye: {
  4256. height: math.unit(0.31, "feet"),
  4257. name: "Eye",
  4258. image: {
  4259. source: "./media/characters/sigvald/eye.svg"
  4260. }
  4261. },
  4262. mouth: {
  4263. height: math.unit(0.92, "feet"),
  4264. name: "Mouth",
  4265. image: {
  4266. source: "./media/characters/sigvald/mouth.svg"
  4267. }
  4268. },
  4269. paws: {
  4270. height: math.unit(2.2, "feet"),
  4271. name: "Paws",
  4272. image: {
  4273. source: "./media/characters/sigvald/paws.svg"
  4274. }
  4275. }
  4276. },
  4277. [
  4278. {
  4279. name: "Normal",
  4280. height: math.unit(8, "feet")
  4281. },
  4282. {
  4283. name: "Large",
  4284. height: math.unit(12, "feet")
  4285. },
  4286. {
  4287. name: "Larger",
  4288. height: math.unit(20, "feet")
  4289. },
  4290. {
  4291. name: "Macro",
  4292. height: math.unit(150, "feet")
  4293. },
  4294. {
  4295. name: "Macro+",
  4296. height: math.unit(200, "feet"),
  4297. default: true
  4298. },
  4299. ]
  4300. ))
  4301. characterMakers.push(() => makeCharacter(
  4302. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4303. {
  4304. side: {
  4305. height: math.unit(12, "feet"),
  4306. weight: math.unit(2000, "kg"),
  4307. name: "Side",
  4308. image: {
  4309. source: "./media/characters/scott/side.svg",
  4310. extra: 754 / 724,
  4311. bottom: 0.069
  4312. }
  4313. },
  4314. upright: {
  4315. height: math.unit(12, "feet"),
  4316. weight: math.unit(2000, "kg"),
  4317. name: "Upright",
  4318. image: {
  4319. source: "./media/characters/scott/upright.svg",
  4320. extra: 3881 / 3722,
  4321. bottom: 0.05
  4322. }
  4323. },
  4324. },
  4325. [
  4326. {
  4327. name: "Normal",
  4328. height: math.unit(12, "feet"),
  4329. default: true
  4330. },
  4331. ]
  4332. ))
  4333. characterMakers.push(() => makeCharacter(
  4334. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4335. {
  4336. side: {
  4337. height: math.unit(8, "meters"),
  4338. weight: math.unit(84755, "lbs"),
  4339. name: "Side",
  4340. image: {
  4341. source: "./media/characters/tobias/side.svg",
  4342. extra: 1474 / 1096,
  4343. bottom: 38.9 / 1513.1235
  4344. }
  4345. },
  4346. },
  4347. [
  4348. {
  4349. name: "Normal",
  4350. height: math.unit(8, "meters"),
  4351. default: true
  4352. },
  4353. ]
  4354. ))
  4355. characterMakers.push(() => makeCharacter(
  4356. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4357. {
  4358. front: {
  4359. height: math.unit(5.5, "feet"),
  4360. weight: math.unit(400, "lbs"),
  4361. name: "Front",
  4362. image: {
  4363. source: "./media/characters/kieran/front.svg",
  4364. extra: 2694 / 2364,
  4365. bottom: 217 / 2908
  4366. }
  4367. },
  4368. side: {
  4369. height: math.unit(5.5, "feet"),
  4370. weight: math.unit(400, "lbs"),
  4371. name: "Side",
  4372. image: {
  4373. source: "./media/characters/kieran/side.svg",
  4374. extra: 875 / 777,
  4375. bottom: 84.6 / 959
  4376. }
  4377. },
  4378. },
  4379. [
  4380. {
  4381. name: "Normal",
  4382. height: math.unit(5.5, "feet"),
  4383. default: true
  4384. },
  4385. ]
  4386. ))
  4387. characterMakers.push(() => makeCharacter(
  4388. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4389. {
  4390. side: {
  4391. height: math.unit(2, "meters"),
  4392. weight: math.unit(70, "kg"),
  4393. name: "Side",
  4394. image: {
  4395. source: "./media/characters/sanya/side.svg",
  4396. bottom: 0.02,
  4397. extra: 1.02
  4398. }
  4399. },
  4400. },
  4401. [
  4402. {
  4403. name: "Small",
  4404. height: math.unit(2, "meters")
  4405. },
  4406. {
  4407. name: "Normal",
  4408. height: math.unit(3, "meters")
  4409. },
  4410. {
  4411. name: "Macro",
  4412. height: math.unit(16, "meters"),
  4413. default: true
  4414. },
  4415. ]
  4416. ))
  4417. characterMakers.push(() => makeCharacter(
  4418. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4419. {
  4420. front: {
  4421. height: math.unit(2, "meters"),
  4422. weight: math.unit(120, "kg"),
  4423. name: "Front",
  4424. image: {
  4425. source: "./media/characters/miranda/front.svg",
  4426. extra: 195/185,
  4427. bottom: 10.9/206.5
  4428. }
  4429. },
  4430. back: {
  4431. height: math.unit(2, "meters"),
  4432. weight: math.unit(120, "kg"),
  4433. name: "Back",
  4434. image: {
  4435. source: "./media/characters/miranda/back.svg",
  4436. extra: 201/193,
  4437. bottom: 2.3/203.7
  4438. }
  4439. },
  4440. },
  4441. [
  4442. {
  4443. name: "Normal",
  4444. height: math.unit(10, "feet"),
  4445. default: true
  4446. }
  4447. ]
  4448. ))
  4449. characterMakers.push(() => makeCharacter(
  4450. { name: "James", species: ["deer"], tags: ["anthro"] },
  4451. {
  4452. side: {
  4453. height: math.unit(2, "meters"),
  4454. weight: math.unit(100, "kg"),
  4455. name: "Front",
  4456. image: {
  4457. source: "./media/characters/james/front.svg",
  4458. extra: 10 / 8.5
  4459. }
  4460. },
  4461. },
  4462. [
  4463. {
  4464. name: "Normal",
  4465. height: math.unit(8.5, "feet"),
  4466. default: true
  4467. }
  4468. ]
  4469. ))
  4470. characterMakers.push(() => makeCharacter(
  4471. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4472. {
  4473. side: {
  4474. height: math.unit(9.5, "feet"),
  4475. weight: math.unit(2500, "lbs"),
  4476. name: "Side",
  4477. image: {
  4478. source: "./media/characters/heather/side.svg"
  4479. }
  4480. },
  4481. },
  4482. [
  4483. {
  4484. name: "Normal",
  4485. height: math.unit(9.5, "feet"),
  4486. default: true
  4487. }
  4488. ]
  4489. ))
  4490. characterMakers.push(() => makeCharacter(
  4491. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4492. {
  4493. side: {
  4494. height: math.unit(6.5, "feet"),
  4495. weight: math.unit(400, "lbs"),
  4496. name: "Side",
  4497. image: {
  4498. source: "./media/characters/lukas/side.svg",
  4499. extra: 7.25 / 6.5
  4500. }
  4501. },
  4502. },
  4503. [
  4504. {
  4505. name: "Normal",
  4506. height: math.unit(6.5, "feet"),
  4507. default: true
  4508. }
  4509. ]
  4510. ))
  4511. characterMakers.push(() => makeCharacter(
  4512. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4513. {
  4514. side: {
  4515. height: math.unit(5, "feet"),
  4516. weight: math.unit(3000, "lbs"),
  4517. name: "Side",
  4518. image: {
  4519. source: "./media/characters/louise/side.svg"
  4520. }
  4521. },
  4522. },
  4523. [
  4524. {
  4525. name: "Normal",
  4526. height: math.unit(5, "feet"),
  4527. default: true
  4528. }
  4529. ]
  4530. ))
  4531. characterMakers.push(() => makeCharacter(
  4532. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4533. {
  4534. side: {
  4535. height: math.unit(6, "feet"),
  4536. weight: math.unit(150, "lbs"),
  4537. name: "Side",
  4538. image: {
  4539. source: "./media/characters/ramona/side.svg"
  4540. }
  4541. },
  4542. },
  4543. [
  4544. {
  4545. name: "Normal",
  4546. height: math.unit(5.3, "meters"),
  4547. default: true
  4548. },
  4549. {
  4550. name: "Macro",
  4551. height: math.unit(20, "stories")
  4552. },
  4553. {
  4554. name: "Macro+",
  4555. height: math.unit(50, "stories")
  4556. },
  4557. ]
  4558. ))
  4559. characterMakers.push(() => makeCharacter(
  4560. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4561. {
  4562. standing: {
  4563. height: math.unit(5.75, "feet"),
  4564. weight: math.unit(160, "lbs"),
  4565. name: "Standing",
  4566. image: {
  4567. source: "./media/characters/deerpuff/standing.svg",
  4568. extra: 682 / 624
  4569. }
  4570. },
  4571. sitting: {
  4572. height: math.unit(5.75 / 1.79, "feet"),
  4573. weight: math.unit(160, "lbs"),
  4574. name: "Sitting",
  4575. image: {
  4576. source: "./media/characters/deerpuff/sitting.svg",
  4577. bottom: 44 / 400,
  4578. extra: 1
  4579. }
  4580. },
  4581. taurLaying: {
  4582. height: math.unit(6, "feet"),
  4583. weight: math.unit(400, "lbs"),
  4584. name: "Taur (Laying)",
  4585. image: {
  4586. source: "./media/characters/deerpuff/taur-laying.svg"
  4587. }
  4588. },
  4589. },
  4590. [
  4591. {
  4592. name: "Puffball",
  4593. height: math.unit(6, "inches")
  4594. },
  4595. {
  4596. name: "Normalpuff",
  4597. height: math.unit(5.75, "feet")
  4598. },
  4599. {
  4600. name: "Macropuff",
  4601. height: math.unit(1500, "feet"),
  4602. default: true
  4603. },
  4604. {
  4605. name: "Megapuff",
  4606. height: math.unit(500, "miles")
  4607. },
  4608. {
  4609. name: "Gigapuff",
  4610. height: math.unit(250000, "miles")
  4611. },
  4612. {
  4613. name: "Omegapuff",
  4614. height: math.unit(1000, "lightyears")
  4615. },
  4616. ]
  4617. ))
  4618. characterMakers.push(() => makeCharacter(
  4619. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4620. {
  4621. stomping: {
  4622. height: math.unit(6, "feet"),
  4623. weight: math.unit(170, "lbs"),
  4624. name: "Stomping",
  4625. image: {
  4626. source: "./media/characters/vivian/stomping.svg"
  4627. }
  4628. },
  4629. sitting: {
  4630. height: math.unit(6 / 1.75, "feet"),
  4631. weight: math.unit(170, "lbs"),
  4632. name: "Sitting",
  4633. image: {
  4634. source: "./media/characters/vivian/sitting.svg",
  4635. bottom: 1 / 6.4,
  4636. extra: 1,
  4637. }
  4638. },
  4639. },
  4640. [
  4641. {
  4642. name: "Normal",
  4643. height: math.unit(7, "feet"),
  4644. default: true
  4645. },
  4646. {
  4647. name: "Macro",
  4648. height: math.unit(10, "stories")
  4649. },
  4650. {
  4651. name: "Macro+",
  4652. height: math.unit(30, "stories")
  4653. },
  4654. {
  4655. name: "Megamacro",
  4656. height: math.unit(10, "miles")
  4657. },
  4658. {
  4659. name: "Megamacro+",
  4660. height: math.unit(2750000, "meters")
  4661. },
  4662. ]
  4663. ))
  4664. characterMakers.push(() => makeCharacter(
  4665. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4666. {
  4667. front: {
  4668. height: math.unit(6, "feet"),
  4669. weight: math.unit(160, "lbs"),
  4670. name: "Front",
  4671. image: {
  4672. source: "./media/characters/prince/front.svg",
  4673. extra: 3400 / 3000
  4674. }
  4675. },
  4676. jumping: {
  4677. height: math.unit(6, "feet"),
  4678. weight: math.unit(160, "lbs"),
  4679. name: "Jumping",
  4680. image: {
  4681. source: "./media/characters/prince/jump.svg",
  4682. extra: 2555 / 2134
  4683. }
  4684. },
  4685. },
  4686. [
  4687. {
  4688. name: "Normal",
  4689. height: math.unit(7.75, "feet"),
  4690. default: true
  4691. },
  4692. {
  4693. name: "Not cute",
  4694. height: math.unit(17, "feet")
  4695. },
  4696. {
  4697. name: "I said NOT",
  4698. height: math.unit(91, "feet")
  4699. },
  4700. {
  4701. name: "Please stop",
  4702. height: math.unit(560, "feet")
  4703. },
  4704. {
  4705. name: "What have you done",
  4706. height: math.unit(2200, "feet")
  4707. },
  4708. {
  4709. name: "Deer God",
  4710. height: math.unit(3.6, "miles")
  4711. },
  4712. ]
  4713. ))
  4714. characterMakers.push(() => makeCharacter(
  4715. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4716. {
  4717. standing: {
  4718. height: math.unit(6, "feet"),
  4719. weight: math.unit(300, "lbs"),
  4720. name: "Standing",
  4721. image: {
  4722. source: "./media/characters/psymon/standing.svg",
  4723. extra: 1888 / 1810,
  4724. bottom: 0.05
  4725. }
  4726. },
  4727. slithering: {
  4728. height: math.unit(6, "feet"),
  4729. weight: math.unit(300, "lbs"),
  4730. name: "Slithering",
  4731. image: {
  4732. source: "./media/characters/psymon/slithering.svg",
  4733. extra: 1330 / 1224
  4734. }
  4735. },
  4736. slitheringAlt: {
  4737. height: math.unit(6, "feet"),
  4738. weight: math.unit(300, "lbs"),
  4739. name: "Slithering (Alt)",
  4740. image: {
  4741. source: "./media/characters/psymon/slithering-alt.svg",
  4742. extra: 1330 / 1224
  4743. }
  4744. },
  4745. },
  4746. [
  4747. {
  4748. name: "Normal",
  4749. height: math.unit(11.25, "feet"),
  4750. default: true
  4751. },
  4752. {
  4753. name: "Large",
  4754. height: math.unit(27, "feet")
  4755. },
  4756. {
  4757. name: "Giant",
  4758. height: math.unit(87, "feet")
  4759. },
  4760. {
  4761. name: "Macro",
  4762. height: math.unit(365, "feet")
  4763. },
  4764. {
  4765. name: "Megamacro",
  4766. height: math.unit(3, "miles")
  4767. },
  4768. {
  4769. name: "World Serpent",
  4770. height: math.unit(8000, "miles")
  4771. },
  4772. ]
  4773. ))
  4774. characterMakers.push(() => makeCharacter(
  4775. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4776. {
  4777. front: {
  4778. height: math.unit(6, "feet"),
  4779. weight: math.unit(180, "lbs"),
  4780. name: "Front",
  4781. image: {
  4782. source: "./media/characters/daimos/front.svg",
  4783. extra: 4160 / 3897,
  4784. bottom: 0.021
  4785. }
  4786. }
  4787. },
  4788. [
  4789. {
  4790. name: "Normal",
  4791. height: math.unit(8, "feet"),
  4792. default: true
  4793. },
  4794. {
  4795. name: "Big Dog",
  4796. height: math.unit(22, "feet")
  4797. },
  4798. {
  4799. name: "Macro",
  4800. height: math.unit(127, "feet")
  4801. },
  4802. {
  4803. name: "Megamacro",
  4804. height: math.unit(3600, "feet")
  4805. },
  4806. ]
  4807. ))
  4808. characterMakers.push(() => makeCharacter(
  4809. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4810. {
  4811. side: {
  4812. height: math.unit(6, "feet"),
  4813. weight: math.unit(180, "lbs"),
  4814. name: "Side",
  4815. image: {
  4816. source: "./media/characters/blake/side.svg",
  4817. extra: 1212 / 1120,
  4818. bottom: 0.05
  4819. }
  4820. },
  4821. crouched: {
  4822. height: math.unit(6 * 0.57, "feet"),
  4823. weight: math.unit(180, "lbs"),
  4824. name: "Crouched",
  4825. image: {
  4826. source: "./media/characters/blake/crouched.svg",
  4827. extra: 840 / 587,
  4828. bottom: 0.04
  4829. }
  4830. },
  4831. bent: {
  4832. height: math.unit(6 * 0.75, "feet"),
  4833. weight: math.unit(180, "lbs"),
  4834. name: "Bent",
  4835. image: {
  4836. source: "./media/characters/blake/bent.svg",
  4837. extra: 592 / 544,
  4838. bottom: 0.035
  4839. }
  4840. },
  4841. },
  4842. [
  4843. {
  4844. name: "Normal",
  4845. height: math.unit(8 + 1 / 6, "feet"),
  4846. default: true
  4847. },
  4848. {
  4849. name: "Big Backside",
  4850. height: math.unit(37, "feet")
  4851. },
  4852. {
  4853. name: "Subway Shredder",
  4854. height: math.unit(72, "feet")
  4855. },
  4856. {
  4857. name: "City Carver",
  4858. height: math.unit(1675, "feet")
  4859. },
  4860. {
  4861. name: "Tectonic Tweaker",
  4862. height: math.unit(2300, "miles")
  4863. },
  4864. ]
  4865. ))
  4866. characterMakers.push(() => makeCharacter(
  4867. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4868. {
  4869. front: {
  4870. height: math.unit(6, "feet"),
  4871. weight: math.unit(180, "lbs"),
  4872. name: "Front",
  4873. image: {
  4874. source: "./media/characters/guisetto/front.svg",
  4875. extra: 856 / 817,
  4876. bottom: 0.06
  4877. }
  4878. },
  4879. airborne: {
  4880. height: math.unit(6, "feet"),
  4881. weight: math.unit(180, "lbs"),
  4882. name: "Airborne",
  4883. image: {
  4884. source: "./media/characters/guisetto/airborne.svg",
  4885. extra: 584 / 525
  4886. }
  4887. },
  4888. },
  4889. [
  4890. {
  4891. name: "Normal",
  4892. height: math.unit(10 + 11 / 12, "feet"),
  4893. default: true
  4894. },
  4895. {
  4896. name: "Large",
  4897. height: math.unit(35, "feet")
  4898. },
  4899. {
  4900. name: "Macro",
  4901. height: math.unit(475, "feet")
  4902. },
  4903. ]
  4904. ))
  4905. characterMakers.push(() => makeCharacter(
  4906. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  4907. {
  4908. front: {
  4909. height: math.unit(6, "feet"),
  4910. weight: math.unit(180, "lbs"),
  4911. name: "Front",
  4912. image: {
  4913. source: "./media/characters/luxor/front.svg",
  4914. extra: 2940 / 2152
  4915. }
  4916. },
  4917. back: {
  4918. height: math.unit(6, "feet"),
  4919. weight: math.unit(180, "lbs"),
  4920. name: "Back",
  4921. image: {
  4922. source: "./media/characters/luxor/back.svg",
  4923. extra: 1083 / 960
  4924. }
  4925. },
  4926. },
  4927. [
  4928. {
  4929. name: "Normal",
  4930. height: math.unit(5 + 5 / 6, "feet"),
  4931. default: true
  4932. },
  4933. {
  4934. name: "Lamp",
  4935. height: math.unit(50, "feet")
  4936. },
  4937. {
  4938. name: "Lämp",
  4939. height: math.unit(300, "feet")
  4940. },
  4941. {
  4942. name: "The sun is a lamp",
  4943. height: math.unit(250000, "miles")
  4944. },
  4945. ]
  4946. ))
  4947. characterMakers.push(() => makeCharacter(
  4948. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  4949. {
  4950. front: {
  4951. height: math.unit(6, "feet"),
  4952. weight: math.unit(50, "lbs"),
  4953. name: "Front",
  4954. image: {
  4955. source: "./media/characters/huoyan/front.svg"
  4956. }
  4957. },
  4958. side: {
  4959. height: math.unit(6, "feet"),
  4960. weight: math.unit(180, "lbs"),
  4961. name: "Side",
  4962. image: {
  4963. source: "./media/characters/huoyan/side.svg"
  4964. }
  4965. },
  4966. },
  4967. [
  4968. {
  4969. name: "Chef",
  4970. height: math.unit(9, "feet")
  4971. },
  4972. {
  4973. name: "Normal",
  4974. height: math.unit(65, "feet"),
  4975. default: true
  4976. },
  4977. {
  4978. name: "Macro",
  4979. height: math.unit(780, "feet")
  4980. },
  4981. {
  4982. name: "Flaming Mountain",
  4983. height: math.unit(4.8, "miles")
  4984. },
  4985. {
  4986. name: "Celestial",
  4987. height: math.unit(765000, "miles")
  4988. },
  4989. ]
  4990. ))
  4991. characterMakers.push(() => makeCharacter(
  4992. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  4993. {
  4994. front: {
  4995. height: math.unit(5 + 3 / 4, "feet"),
  4996. weight: math.unit(120, "lbs"),
  4997. name: "Front",
  4998. image: {
  4999. source: "./media/characters/tails/front.svg"
  5000. }
  5001. }
  5002. },
  5003. [
  5004. {
  5005. name: "Normal",
  5006. height: math.unit(5 + 3 / 4, "feet"),
  5007. default: true
  5008. }
  5009. ]
  5010. ))
  5011. characterMakers.push(() => makeCharacter(
  5012. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5013. {
  5014. front: {
  5015. height: math.unit(4, "feet"),
  5016. weight: math.unit(50, "lbs"),
  5017. name: "Front",
  5018. image: {
  5019. source: "./media/characters/rainy/front.svg"
  5020. }
  5021. }
  5022. },
  5023. [
  5024. {
  5025. name: "Macro",
  5026. height: math.unit(800, "feet"),
  5027. default: true
  5028. }
  5029. ]
  5030. ))
  5031. characterMakers.push(() => makeCharacter(
  5032. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5033. {
  5034. front: {
  5035. height: math.unit(6, "feet"),
  5036. weight: math.unit(150, "lbs"),
  5037. name: "Front",
  5038. image: {
  5039. source: "./media/characters/rainier/front.svg"
  5040. }
  5041. }
  5042. },
  5043. [
  5044. {
  5045. name: "Micro",
  5046. height: math.unit(2, "mm"),
  5047. default: true
  5048. }
  5049. ]
  5050. ))
  5051. characterMakers.push(() => makeCharacter(
  5052. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5053. {
  5054. front: {
  5055. height: math.unit(6, "feet"),
  5056. weight: math.unit(180, "lbs"),
  5057. name: "Front",
  5058. image: {
  5059. source: "./media/characters/andy/front.svg"
  5060. }
  5061. }
  5062. },
  5063. [
  5064. {
  5065. name: "Normal",
  5066. height: math.unit(8, "feet"),
  5067. default: true
  5068. },
  5069. {
  5070. name: "Macro",
  5071. height: math.unit(1000, "feet")
  5072. },
  5073. {
  5074. name: "Megamacro",
  5075. height: math.unit(5, "miles")
  5076. },
  5077. {
  5078. name: "Gigamacro",
  5079. height: math.unit(5000, "miles")
  5080. },
  5081. ]
  5082. ))
  5083. characterMakers.push(() => makeCharacter(
  5084. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5085. {
  5086. front: {
  5087. height: math.unit(6, "feet"),
  5088. weight: math.unit(210, "lbs"),
  5089. name: "Front",
  5090. image: {
  5091. source: "./media/characters/cimmaron/front-sfw.svg",
  5092. extra: 701 / 676,
  5093. bottom: 0.046
  5094. }
  5095. },
  5096. back: {
  5097. height: math.unit(6, "feet"),
  5098. weight: math.unit(210, "lbs"),
  5099. name: "Back",
  5100. image: {
  5101. source: "./media/characters/cimmaron/back-sfw.svg",
  5102. extra: 701 / 676,
  5103. bottom: 0.046
  5104. }
  5105. },
  5106. frontNsfw: {
  5107. height: math.unit(6, "feet"),
  5108. weight: math.unit(210, "lbs"),
  5109. name: "Front (NSFW)",
  5110. image: {
  5111. source: "./media/characters/cimmaron/front-nsfw.svg",
  5112. extra: 701 / 676,
  5113. bottom: 0.046
  5114. }
  5115. },
  5116. backNsfw: {
  5117. height: math.unit(6, "feet"),
  5118. weight: math.unit(210, "lbs"),
  5119. name: "Back (NSFW)",
  5120. image: {
  5121. source: "./media/characters/cimmaron/back-nsfw.svg",
  5122. extra: 701 / 676,
  5123. bottom: 0.046
  5124. }
  5125. },
  5126. dick: {
  5127. height: math.unit(1.714, "feet"),
  5128. name: "Dick",
  5129. image: {
  5130. source: "./media/characters/cimmaron/dick.svg"
  5131. }
  5132. },
  5133. },
  5134. [
  5135. {
  5136. name: "Normal",
  5137. height: math.unit(6, "feet"),
  5138. default: true
  5139. },
  5140. {
  5141. name: "Macro Mayor",
  5142. height: math.unit(350, "meters")
  5143. },
  5144. ]
  5145. ))
  5146. characterMakers.push(() => makeCharacter(
  5147. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5148. {
  5149. front: {
  5150. height: math.unit(6, "feet"),
  5151. weight: math.unit(200, "lbs"),
  5152. name: "Front",
  5153. image: {
  5154. source: "./media/characters/akari/front.svg",
  5155. extra: 962 / 901,
  5156. bottom: 0.04
  5157. }
  5158. }
  5159. },
  5160. [
  5161. {
  5162. name: "Micro",
  5163. height: math.unit(5, "inches"),
  5164. default: true
  5165. },
  5166. {
  5167. name: "Normal",
  5168. height: math.unit(7, "feet")
  5169. },
  5170. ]
  5171. ))
  5172. characterMakers.push(() => makeCharacter(
  5173. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5174. {
  5175. front: {
  5176. height: math.unit(6, "feet"),
  5177. weight: math.unit(140, "lbs"),
  5178. name: "Front",
  5179. image: {
  5180. source: "./media/characters/cynosura/front.svg",
  5181. extra: 896 / 847
  5182. }
  5183. },
  5184. back: {
  5185. height: math.unit(6, "feet"),
  5186. weight: math.unit(140, "lbs"),
  5187. name: "Back",
  5188. image: {
  5189. source: "./media/characters/cynosura/back.svg",
  5190. extra: 1365 / 1250
  5191. }
  5192. },
  5193. },
  5194. [
  5195. {
  5196. name: "Micro",
  5197. height: math.unit(4, "inches")
  5198. },
  5199. {
  5200. name: "Normal",
  5201. height: math.unit(5.75, "feet"),
  5202. default: true
  5203. },
  5204. {
  5205. name: "Tall",
  5206. height: math.unit(10, "feet")
  5207. },
  5208. {
  5209. name: "Big",
  5210. height: math.unit(20, "feet")
  5211. },
  5212. {
  5213. name: "Macro",
  5214. height: math.unit(50, "feet")
  5215. },
  5216. ]
  5217. ))
  5218. characterMakers.push(() => makeCharacter(
  5219. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5220. {
  5221. front: {
  5222. height: math.unit(6, "feet"),
  5223. weight: math.unit(170, "lbs"),
  5224. name: "Front",
  5225. image: {
  5226. source: "./media/characters/gin/front.svg",
  5227. extra: 1.053,
  5228. bottom: 0.025
  5229. }
  5230. },
  5231. foot: {
  5232. height: math.unit(6 / 4.25, "feet"),
  5233. name: "Foot",
  5234. image: {
  5235. source: "./media/characters/gin/foot.svg"
  5236. }
  5237. },
  5238. sole: {
  5239. height: math.unit(6 / 4.40, "feet"),
  5240. name: "Sole",
  5241. image: {
  5242. source: "./media/characters/gin/sole.svg"
  5243. }
  5244. },
  5245. },
  5246. [
  5247. {
  5248. name: "Normal",
  5249. height: math.unit(13 + 2 / 12, "feet")
  5250. },
  5251. {
  5252. name: "Macro",
  5253. height: math.unit(1500, "feet")
  5254. },
  5255. {
  5256. name: "Megamacro",
  5257. height: math.unit(200, "miles"),
  5258. default: true
  5259. },
  5260. {
  5261. name: "Gigamacro",
  5262. height: math.unit(500, "megameters")
  5263. },
  5264. {
  5265. name: "Teramacro",
  5266. height: math.unit(15, "lightyears")
  5267. }
  5268. ]
  5269. ))
  5270. characterMakers.push(() => makeCharacter(
  5271. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5272. {
  5273. front: {
  5274. height: math.unit(6 + 1 / 6, "feet"),
  5275. weight: math.unit(178, "lbs"),
  5276. name: "Front",
  5277. image: {
  5278. source: "./media/characters/guy/front.svg"
  5279. }
  5280. }
  5281. },
  5282. [
  5283. {
  5284. name: "Normal",
  5285. height: math.unit(6 + 1 / 6, "feet"),
  5286. default: true
  5287. },
  5288. {
  5289. name: "Large",
  5290. height: math.unit(25 + 7 / 12, "feet")
  5291. },
  5292. {
  5293. name: "Macro",
  5294. height: math.unit(60 + 9 / 12, "feet")
  5295. },
  5296. {
  5297. name: "Macro+",
  5298. height: math.unit(246, "feet")
  5299. },
  5300. {
  5301. name: "Macro++",
  5302. height: math.unit(878, "feet")
  5303. }
  5304. ]
  5305. ))
  5306. characterMakers.push(() => makeCharacter(
  5307. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5308. {
  5309. front: {
  5310. height: math.unit(9, "feet"),
  5311. weight: math.unit(800, "lbs"),
  5312. name: "Front",
  5313. image: {
  5314. source: "./media/characters/tiberius/front.svg",
  5315. extra: 2295 / 2071
  5316. }
  5317. },
  5318. back: {
  5319. height: math.unit(9, "feet"),
  5320. weight: math.unit(800, "lbs"),
  5321. name: "Back",
  5322. image: {
  5323. source: "./media/characters/tiberius/back.svg",
  5324. extra: 2373 / 2160
  5325. }
  5326. },
  5327. },
  5328. [
  5329. {
  5330. name: "Normal",
  5331. height: math.unit(9, "feet"),
  5332. default: true
  5333. }
  5334. ]
  5335. ))
  5336. characterMakers.push(() => makeCharacter(
  5337. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5338. {
  5339. front: {
  5340. height: math.unit(6, "feet"),
  5341. weight: math.unit(600, "lbs"),
  5342. name: "Front",
  5343. image: {
  5344. source: "./media/characters/surgo/front.svg",
  5345. extra: 3591 / 2227
  5346. }
  5347. },
  5348. back: {
  5349. height: math.unit(6, "feet"),
  5350. weight: math.unit(600, "lbs"),
  5351. name: "Back",
  5352. image: {
  5353. source: "./media/characters/surgo/back.svg",
  5354. extra: 3557 / 2228
  5355. }
  5356. },
  5357. laying: {
  5358. height: math.unit(6 * 0.85, "feet"),
  5359. weight: math.unit(600, "lbs"),
  5360. name: "Laying",
  5361. image: {
  5362. source: "./media/characters/surgo/laying.svg"
  5363. }
  5364. },
  5365. },
  5366. [
  5367. {
  5368. name: "Normal",
  5369. height: math.unit(6, "feet"),
  5370. default: true
  5371. }
  5372. ]
  5373. ))
  5374. characterMakers.push(() => makeCharacter(
  5375. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5376. {
  5377. side: {
  5378. height: math.unit(6, "feet"),
  5379. weight: math.unit(150, "lbs"),
  5380. name: "Side",
  5381. image: {
  5382. source: "./media/characters/cibus/side.svg",
  5383. extra: 800 / 400
  5384. }
  5385. },
  5386. },
  5387. [
  5388. {
  5389. name: "Normal",
  5390. height: math.unit(6, "feet"),
  5391. default: true
  5392. }
  5393. ]
  5394. ))
  5395. characterMakers.push(() => makeCharacter(
  5396. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5397. {
  5398. front: {
  5399. height: math.unit(6, "feet"),
  5400. weight: math.unit(240, "lbs"),
  5401. name: "Front",
  5402. image: {
  5403. source: "./media/characters/nibbles/front.svg"
  5404. }
  5405. },
  5406. side: {
  5407. height: math.unit(6, "feet"),
  5408. weight: math.unit(240, "lbs"),
  5409. name: "Side",
  5410. image: {
  5411. source: "./media/characters/nibbles/side.svg"
  5412. }
  5413. },
  5414. },
  5415. [
  5416. {
  5417. name: "Normal",
  5418. height: math.unit(9, "feet"),
  5419. default: true
  5420. }
  5421. ]
  5422. ))
  5423. characterMakers.push(() => makeCharacter(
  5424. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5425. {
  5426. side: {
  5427. height: math.unit(5 + 1 / 6, "feet"),
  5428. weight: math.unit(130, "lbs"),
  5429. name: "Side",
  5430. image: {
  5431. source: "./media/characters/rikky/side.svg"
  5432. }
  5433. },
  5434. },
  5435. [
  5436. {
  5437. name: "Normal",
  5438. height: math.unit(5 + 1 / 6, "feet")
  5439. },
  5440. {
  5441. name: "Macro",
  5442. height: math.unit(152, "feet"),
  5443. default: true
  5444. },
  5445. {
  5446. name: "Megamacro",
  5447. height: math.unit(7, "miles")
  5448. }
  5449. ]
  5450. ))
  5451. characterMakers.push(() => makeCharacter(
  5452. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5453. {
  5454. side: {
  5455. height: math.unit(370, "cm"),
  5456. weight: math.unit(350, "lbs"),
  5457. name: "Side",
  5458. image: {
  5459. source: "./media/characters/malfressa/side.svg"
  5460. }
  5461. },
  5462. walking: {
  5463. height: math.unit(370, "cm"),
  5464. weight: math.unit(350, "lbs"),
  5465. name: "Walking",
  5466. image: {
  5467. source: "./media/characters/malfressa/walking.svg"
  5468. }
  5469. },
  5470. feral: {
  5471. height: math.unit(2500, "cm"),
  5472. weight: math.unit(100000, "lbs"),
  5473. name: "Feral",
  5474. image: {
  5475. source: "./media/characters/malfressa/feral.svg",
  5476. extra: 2108 / 837,
  5477. bottom: 0.02
  5478. }
  5479. },
  5480. },
  5481. [
  5482. {
  5483. name: "Normal",
  5484. height: math.unit(370, "cm")
  5485. },
  5486. {
  5487. name: "Macro",
  5488. height: math.unit(300, "meters"),
  5489. default: true
  5490. }
  5491. ]
  5492. ))
  5493. characterMakers.push(() => makeCharacter(
  5494. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5495. {
  5496. front: {
  5497. height: math.unit(6, "feet"),
  5498. weight: math.unit(60, "kg"),
  5499. name: "Front",
  5500. image: {
  5501. source: "./media/characters/jaro/front.svg"
  5502. }
  5503. },
  5504. back: {
  5505. height: math.unit(6, "feet"),
  5506. weight: math.unit(60, "kg"),
  5507. name: "Back",
  5508. image: {
  5509. source: "./media/characters/jaro/back.svg"
  5510. }
  5511. },
  5512. },
  5513. [
  5514. {
  5515. name: "Micro",
  5516. height: math.unit(7, "inches")
  5517. },
  5518. {
  5519. name: "Normal",
  5520. height: math.unit(5.5, "feet"),
  5521. default: true
  5522. },
  5523. {
  5524. name: "Minimacro",
  5525. height: math.unit(20, "feet")
  5526. },
  5527. {
  5528. name: "Macro",
  5529. height: math.unit(200, "meters")
  5530. }
  5531. ]
  5532. ))
  5533. characterMakers.push(() => makeCharacter(
  5534. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5535. {
  5536. front: {
  5537. height: math.unit(6, "feet"),
  5538. weight: math.unit(195, "lb"),
  5539. name: "Front",
  5540. image: {
  5541. source: "./media/characters/rogue/front.svg"
  5542. }
  5543. },
  5544. },
  5545. [
  5546. {
  5547. name: "Macro",
  5548. height: math.unit(90, "feet"),
  5549. default: true
  5550. },
  5551. ]
  5552. ))
  5553. characterMakers.push(() => makeCharacter(
  5554. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5555. {
  5556. front: {
  5557. height: math.unit(5 + 8 / 12, "feet"),
  5558. weight: math.unit(140, "lb"),
  5559. name: "Front",
  5560. image: {
  5561. source: "./media/characters/piper/front.svg",
  5562. extra: 3928 / 3681
  5563. }
  5564. },
  5565. },
  5566. [
  5567. {
  5568. name: "Micro",
  5569. height: math.unit(2, "inches")
  5570. },
  5571. {
  5572. name: "Normal",
  5573. height: math.unit(5 + 8 / 12, "feet")
  5574. },
  5575. {
  5576. name: "Macro",
  5577. height: math.unit(250, "feet"),
  5578. default: true
  5579. },
  5580. {
  5581. name: "Megamacro",
  5582. height: math.unit(7, "miles")
  5583. },
  5584. ]
  5585. ))
  5586. characterMakers.push(() => makeCharacter(
  5587. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5588. {
  5589. front: {
  5590. height: math.unit(6, "feet"),
  5591. weight: math.unit(220, "lb"),
  5592. name: "Front",
  5593. image: {
  5594. source: "./media/characters/gemini/front.svg"
  5595. }
  5596. },
  5597. back: {
  5598. height: math.unit(6, "feet"),
  5599. weight: math.unit(220, "lb"),
  5600. name: "Back",
  5601. image: {
  5602. source: "./media/characters/gemini/back.svg"
  5603. }
  5604. },
  5605. kneeling: {
  5606. height: math.unit(6 / 1.5, "feet"),
  5607. weight: math.unit(220, "lb"),
  5608. name: "Kneeling",
  5609. image: {
  5610. source: "./media/characters/gemini/kneeling.svg",
  5611. bottom: 0.02
  5612. }
  5613. },
  5614. },
  5615. [
  5616. {
  5617. name: "Macro",
  5618. height: math.unit(300, "meters"),
  5619. default: true
  5620. },
  5621. {
  5622. name: "Megamacro",
  5623. height: math.unit(6900, "meters")
  5624. },
  5625. ]
  5626. ))
  5627. characterMakers.push(() => makeCharacter(
  5628. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5629. {
  5630. anthro: {
  5631. height: math.unit(2.35, "meters"),
  5632. weight: math.unit(73, "kg"),
  5633. name: "Anthro",
  5634. image: {
  5635. source: "./media/characters/alicia/anthro.svg",
  5636. extra: 2571 / 2385,
  5637. bottom: 75 / 2648
  5638. }
  5639. },
  5640. paw: {
  5641. height: math.unit(1.32, "feet"),
  5642. name: "Paw",
  5643. image: {
  5644. source: "./media/characters/alicia/paw.svg"
  5645. }
  5646. },
  5647. feral: {
  5648. height: math.unit(1.69, "meters"),
  5649. weight: math.unit(73, "kg"),
  5650. name: "Feral",
  5651. image: {
  5652. source: "./media/characters/alicia/feral.svg",
  5653. extra: 2123 / 1715,
  5654. bottom: 222 / 2349
  5655. }
  5656. },
  5657. },
  5658. [
  5659. {
  5660. name: "Normal",
  5661. height: math.unit(2.35, "meters")
  5662. },
  5663. {
  5664. name: "Macro",
  5665. height: math.unit(60, "meters"),
  5666. default: true
  5667. },
  5668. {
  5669. name: "Megamacro",
  5670. height: math.unit(10000, "kilometers")
  5671. },
  5672. ]
  5673. ))
  5674. characterMakers.push(() => makeCharacter(
  5675. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5676. {
  5677. front: {
  5678. height: math.unit(7, "feet"),
  5679. weight: math.unit(250, "lbs"),
  5680. name: "Front",
  5681. image: {
  5682. source: "./media/characters/archy/front.svg"
  5683. }
  5684. }
  5685. },
  5686. [
  5687. {
  5688. name: "Micro",
  5689. height: math.unit(1, "inch")
  5690. },
  5691. {
  5692. name: "Shorty",
  5693. height: math.unit(5, "feet")
  5694. },
  5695. {
  5696. name: "Normal",
  5697. height: math.unit(7, "feet")
  5698. },
  5699. {
  5700. name: "Macro",
  5701. height: math.unit(600, "meters"),
  5702. default: true
  5703. },
  5704. {
  5705. name: "Megamacro",
  5706. height: math.unit(1, "mile")
  5707. },
  5708. ]
  5709. ))
  5710. characterMakers.push(() => makeCharacter(
  5711. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5712. {
  5713. front: {
  5714. height: math.unit(1.65, "meters"),
  5715. weight: math.unit(74, "kg"),
  5716. name: "Front",
  5717. image: {
  5718. source: "./media/characters/berri/front.svg",
  5719. extra: 857 / 837,
  5720. bottom: 18 / 877
  5721. }
  5722. },
  5723. bum: {
  5724. height: math.unit(1.46, "feet"),
  5725. name: "Bum",
  5726. image: {
  5727. source: "./media/characters/berri/bum.svg"
  5728. }
  5729. },
  5730. mouth: {
  5731. height: math.unit(0.44, "feet"),
  5732. name: "Mouth",
  5733. image: {
  5734. source: "./media/characters/berri/mouth.svg"
  5735. }
  5736. },
  5737. paw: {
  5738. height: math.unit(0.826, "feet"),
  5739. name: "Paw",
  5740. image: {
  5741. source: "./media/characters/berri/paw.svg"
  5742. }
  5743. },
  5744. },
  5745. [
  5746. {
  5747. name: "Normal",
  5748. height: math.unit(1.65, "meters")
  5749. },
  5750. {
  5751. name: "Macro",
  5752. height: math.unit(60, "m"),
  5753. default: true
  5754. },
  5755. {
  5756. name: "Megamacro",
  5757. height: math.unit(9.213, "km")
  5758. },
  5759. {
  5760. name: "Planet Eater",
  5761. height: math.unit(489, "megameters")
  5762. },
  5763. {
  5764. name: "Teramacro",
  5765. height: math.unit(2471635000000, "meters")
  5766. },
  5767. {
  5768. name: "Examacro",
  5769. height: math.unit(8.0624e+26, "meters")
  5770. }
  5771. ]
  5772. ))
  5773. characterMakers.push(() => makeCharacter(
  5774. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5775. {
  5776. front: {
  5777. height: math.unit(1.72, "meters"),
  5778. weight: math.unit(68, "kg"),
  5779. name: "Front",
  5780. image: {
  5781. source: "./media/characters/lexi/front.svg"
  5782. }
  5783. }
  5784. },
  5785. [
  5786. {
  5787. name: "Very Smol",
  5788. height: math.unit(10, "mm")
  5789. },
  5790. {
  5791. name: "Micro",
  5792. height: math.unit(6.8, "cm"),
  5793. default: true
  5794. },
  5795. {
  5796. name: "Normal",
  5797. height: math.unit(1.72, "m")
  5798. }
  5799. ]
  5800. ))
  5801. characterMakers.push(() => makeCharacter(
  5802. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5803. {
  5804. front: {
  5805. height: math.unit(1.69, "meters"),
  5806. weight: math.unit(68, "kg"),
  5807. name: "Front",
  5808. image: {
  5809. source: "./media/characters/martin/front.svg",
  5810. extra: 596 / 581
  5811. }
  5812. }
  5813. },
  5814. [
  5815. {
  5816. name: "Micro",
  5817. height: math.unit(6.85, "cm"),
  5818. default: true
  5819. },
  5820. {
  5821. name: "Normal",
  5822. height: math.unit(1.69, "m")
  5823. }
  5824. ]
  5825. ))
  5826. characterMakers.push(() => makeCharacter(
  5827. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5828. {
  5829. front: {
  5830. height: math.unit(1.69, "meters"),
  5831. weight: math.unit(68, "kg"),
  5832. name: "Front",
  5833. image: {
  5834. source: "./media/characters/juno/front.svg"
  5835. }
  5836. }
  5837. },
  5838. [
  5839. {
  5840. name: "Micro",
  5841. height: math.unit(7, "cm")
  5842. },
  5843. {
  5844. name: "Normal",
  5845. height: math.unit(1.89, "m")
  5846. },
  5847. {
  5848. name: "Macro",
  5849. height: math.unit(353, "meters"),
  5850. default: true
  5851. }
  5852. ]
  5853. ))
  5854. characterMakers.push(() => makeCharacter(
  5855. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5856. {
  5857. front: {
  5858. height: math.unit(1.93, "meters"),
  5859. weight: math.unit(83, "kg"),
  5860. name: "Front",
  5861. image: {
  5862. source: "./media/characters/samantha/front.svg"
  5863. }
  5864. },
  5865. frontClothed: {
  5866. height: math.unit(1.93, "meters"),
  5867. weight: math.unit(83, "kg"),
  5868. name: "Front (Clothed)",
  5869. image: {
  5870. source: "./media/characters/samantha/front-clothed.svg"
  5871. }
  5872. },
  5873. back: {
  5874. height: math.unit(1.93, "meters"),
  5875. weight: math.unit(83, "kg"),
  5876. name: "Back",
  5877. image: {
  5878. source: "./media/characters/samantha/back.svg"
  5879. }
  5880. },
  5881. },
  5882. [
  5883. {
  5884. name: "Normal",
  5885. height: math.unit(1.93, "m")
  5886. },
  5887. {
  5888. name: "Macro",
  5889. height: math.unit(74, "meters"),
  5890. default: true
  5891. },
  5892. {
  5893. name: "Macro+",
  5894. height: math.unit(223, "meters"),
  5895. },
  5896. {
  5897. name: "Megamacro",
  5898. height: math.unit(8381, "meters"),
  5899. },
  5900. {
  5901. name: "Megamacro+",
  5902. height: math.unit(12000, "kilometers")
  5903. },
  5904. ]
  5905. ))
  5906. characterMakers.push(() => makeCharacter(
  5907. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  5908. {
  5909. front: {
  5910. height: math.unit(1.92, "meters"),
  5911. weight: math.unit(80, "kg"),
  5912. name: "Front",
  5913. image: {
  5914. source: "./media/characters/dr-clay/front.svg"
  5915. }
  5916. },
  5917. frontClothed: {
  5918. height: math.unit(1.92, "meters"),
  5919. weight: math.unit(80, "kg"),
  5920. name: "Front (Clothed)",
  5921. image: {
  5922. source: "./media/characters/dr-clay/front-clothed.svg"
  5923. }
  5924. }
  5925. },
  5926. [
  5927. {
  5928. name: "Normal",
  5929. height: math.unit(1.92, "m")
  5930. },
  5931. {
  5932. name: "Macro",
  5933. height: math.unit(214, "meters"),
  5934. default: true
  5935. },
  5936. {
  5937. name: "Macro+",
  5938. height: math.unit(12.237, "meters"),
  5939. },
  5940. {
  5941. name: "Megamacro",
  5942. height: math.unit(557, "megameters"),
  5943. },
  5944. {
  5945. name: "Unimaginable",
  5946. height: math.unit(120e9, "lightyears")
  5947. },
  5948. ]
  5949. ))
  5950. characterMakers.push(() => makeCharacter(
  5951. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  5952. {
  5953. front: {
  5954. height: math.unit(2, "meters"),
  5955. weight: math.unit(80, "kg"),
  5956. name: "Front",
  5957. image: {
  5958. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  5959. }
  5960. }
  5961. },
  5962. [
  5963. {
  5964. name: "Teramacro",
  5965. height: math.unit(500000, "lightyears"),
  5966. default: true
  5967. },
  5968. ]
  5969. ))
  5970. characterMakers.push(() => makeCharacter(
  5971. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  5972. {
  5973. front: {
  5974. height: math.unit(2, "meters"),
  5975. weight: math.unit(150, "kg"),
  5976. name: "Front",
  5977. image: {
  5978. source: "./media/characters/vemus/front.svg",
  5979. extra: 2384 / 2084,
  5980. bottom: 0.0123
  5981. }
  5982. }
  5983. },
  5984. [
  5985. {
  5986. name: "Normal",
  5987. height: math.unit(3.75, "meters"),
  5988. default: true
  5989. },
  5990. {
  5991. name: "Big",
  5992. height: math.unit(8, "meters")
  5993. },
  5994. {
  5995. name: "Macro",
  5996. height: math.unit(100, "meters")
  5997. },
  5998. {
  5999. name: "Macro+",
  6000. height: math.unit(1500, "meters")
  6001. },
  6002. {
  6003. name: "Stellar",
  6004. height: math.unit(14e8, "meters")
  6005. },
  6006. ]
  6007. ))
  6008. characterMakers.push(() => makeCharacter(
  6009. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6010. {
  6011. front: {
  6012. height: math.unit(2, "meters"),
  6013. weight: math.unit(70, "kg"),
  6014. name: "Front",
  6015. image: {
  6016. source: "./media/characters/beherit/front.svg",
  6017. extra: 1408 / 1242
  6018. }
  6019. }
  6020. },
  6021. [
  6022. {
  6023. name: "Normal",
  6024. height: math.unit(6, "feet")
  6025. },
  6026. {
  6027. name: "Lorg",
  6028. height: math.unit(25, "feet"),
  6029. default: true
  6030. },
  6031. {
  6032. name: "Lorger",
  6033. height: math.unit(75, "feet")
  6034. },
  6035. {
  6036. name: "Macro",
  6037. height: math.unit(200, "meters")
  6038. },
  6039. ]
  6040. ))
  6041. characterMakers.push(() => makeCharacter(
  6042. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6043. {
  6044. front: {
  6045. height: math.unit(2, "meters"),
  6046. weight: math.unit(150, "kg"),
  6047. name: "Front",
  6048. image: {
  6049. source: "./media/characters/everett/front.svg",
  6050. extra: 2038 / 1737,
  6051. bottom: 0.03
  6052. }
  6053. },
  6054. paw: {
  6055. height: math.unit(2 / 3.6, "meters"),
  6056. name: "Paw",
  6057. image: {
  6058. source: "./media/characters/everett/paw.svg"
  6059. }
  6060. },
  6061. },
  6062. [
  6063. {
  6064. name: "Normal",
  6065. height: math.unit(15, "feet"),
  6066. default: true
  6067. },
  6068. {
  6069. name: "Lorg",
  6070. height: math.unit(70, "feet"),
  6071. default: true
  6072. },
  6073. {
  6074. name: "Lorger",
  6075. height: math.unit(250, "feet")
  6076. },
  6077. {
  6078. name: "Macro",
  6079. height: math.unit(500, "meters")
  6080. },
  6081. ]
  6082. ))
  6083. characterMakers.push(() => makeCharacter(
  6084. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  6085. {
  6086. front: {
  6087. height: math.unit(2, "meters"),
  6088. weight: math.unit(86, "kg"),
  6089. name: "Front",
  6090. image: {
  6091. source: "./media/characters/rose-lion/front.svg"
  6092. }
  6093. },
  6094. bent: {
  6095. height: math.unit(2 / 1.4288, "meters"),
  6096. weight: math.unit(86, "kg"),
  6097. name: "Bent",
  6098. image: {
  6099. source: "./media/characters/rose-lion/bent.svg"
  6100. }
  6101. }
  6102. },
  6103. [
  6104. {
  6105. name: "Mini-Micro",
  6106. height: math.unit(1, "cm")
  6107. },
  6108. {
  6109. name: "Micro",
  6110. height: math.unit(3.5, "inches"),
  6111. default: true
  6112. },
  6113. {
  6114. name: "Normal",
  6115. height: math.unit(6 + 1 / 6, "feet")
  6116. },
  6117. {
  6118. name: "Mini-Macro",
  6119. height: math.unit(9 + 10 / 12, "feet")
  6120. },
  6121. ]
  6122. ))
  6123. characterMakers.push(() => makeCharacter(
  6124. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6125. {
  6126. front: {
  6127. height: math.unit(2, "meters"),
  6128. weight: math.unit(350, "lbs"),
  6129. name: "Front",
  6130. image: {
  6131. source: "./media/characters/regal/front.svg"
  6132. }
  6133. },
  6134. back: {
  6135. height: math.unit(2, "meters"),
  6136. weight: math.unit(350, "lbs"),
  6137. name: "Back",
  6138. image: {
  6139. source: "./media/characters/regal/back.svg"
  6140. }
  6141. },
  6142. },
  6143. [
  6144. {
  6145. name: "Macro",
  6146. height: math.unit(350, "feet"),
  6147. default: true
  6148. }
  6149. ]
  6150. ))
  6151. characterMakers.push(() => makeCharacter(
  6152. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6153. {
  6154. front: {
  6155. height: math.unit(4 + 11 / 12, "feet"),
  6156. weight: math.unit(100, "lbs"),
  6157. name: "Front",
  6158. image: {
  6159. source: "./media/characters/opal/front.svg"
  6160. }
  6161. },
  6162. frontAlt: {
  6163. height: math.unit(4 + 11 / 12, "feet"),
  6164. weight: math.unit(100, "lbs"),
  6165. name: "Front (Alt)",
  6166. image: {
  6167. source: "./media/characters/opal/front-alt.svg"
  6168. }
  6169. },
  6170. },
  6171. [
  6172. {
  6173. name: "Small",
  6174. height: math.unit(4 + 11 / 12, "feet")
  6175. },
  6176. {
  6177. name: "Normal",
  6178. height: math.unit(20, "feet"),
  6179. default: true
  6180. },
  6181. {
  6182. name: "Macro",
  6183. height: math.unit(120, "feet")
  6184. },
  6185. {
  6186. name: "Megamacro",
  6187. height: math.unit(80, "miles")
  6188. },
  6189. {
  6190. name: "True Size",
  6191. height: math.unit(100000, "lightyears")
  6192. },
  6193. ]
  6194. ))
  6195. characterMakers.push(() => makeCharacter(
  6196. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6197. {
  6198. front: {
  6199. height: math.unit(6, "feet"),
  6200. weight: math.unit(200, "lbs"),
  6201. name: "Front",
  6202. image: {
  6203. source: "./media/characters/vector-wuff/front.svg"
  6204. }
  6205. }
  6206. },
  6207. [
  6208. {
  6209. name: "Normal",
  6210. height: math.unit(2.8, "meters")
  6211. },
  6212. {
  6213. name: "Macro",
  6214. height: math.unit(450, "meters"),
  6215. default: true
  6216. },
  6217. {
  6218. name: "Megamacro",
  6219. height: math.unit(15, "kilometers")
  6220. }
  6221. ]
  6222. ))
  6223. characterMakers.push(() => makeCharacter(
  6224. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6225. {
  6226. front: {
  6227. height: math.unit(6, "feet"),
  6228. weight: math.unit(256, "lbs"),
  6229. name: "Front",
  6230. image: {
  6231. source: "./media/characters/dannik/front.svg"
  6232. }
  6233. }
  6234. },
  6235. [
  6236. {
  6237. name: "Macro",
  6238. height: math.unit(69.57, "meters"),
  6239. default: true
  6240. },
  6241. ]
  6242. ))
  6243. characterMakers.push(() => makeCharacter(
  6244. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6245. {
  6246. front: {
  6247. height: math.unit(6, "feet"),
  6248. weight: math.unit(120, "lbs"),
  6249. name: "Front",
  6250. image: {
  6251. source: "./media/characters/azura-saharah/front.svg"
  6252. }
  6253. },
  6254. back: {
  6255. height: math.unit(6, "feet"),
  6256. weight: math.unit(120, "lbs"),
  6257. name: "Back",
  6258. image: {
  6259. source: "./media/characters/azura-saharah/back.svg"
  6260. }
  6261. },
  6262. },
  6263. [
  6264. {
  6265. name: "Macro",
  6266. height: math.unit(100, "feet"),
  6267. default: true
  6268. },
  6269. ]
  6270. ))
  6271. characterMakers.push(() => makeCharacter(
  6272. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6273. {
  6274. side: {
  6275. height: math.unit(5 + 4 / 12, "feet"),
  6276. weight: math.unit(163, "lbs"),
  6277. name: "Side",
  6278. image: {
  6279. source: "./media/characters/kennedy/side.svg"
  6280. }
  6281. }
  6282. },
  6283. [
  6284. {
  6285. name: "Standard Doggo",
  6286. height: math.unit(5 + 4 / 12, "feet")
  6287. },
  6288. {
  6289. name: "Big Doggo",
  6290. height: math.unit(25 + 3 / 12, "feet"),
  6291. default: true
  6292. },
  6293. ]
  6294. ))
  6295. characterMakers.push(() => makeCharacter(
  6296. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6297. {
  6298. front: {
  6299. height: math.unit(6, "feet"),
  6300. weight: math.unit(90, "lbs"),
  6301. name: "Front",
  6302. image: {
  6303. source: "./media/characters/odi-lunar/front.svg"
  6304. }
  6305. }
  6306. },
  6307. [
  6308. {
  6309. name: "Micro",
  6310. height: math.unit(3, "inches"),
  6311. default: true
  6312. },
  6313. {
  6314. name: "Normal",
  6315. height: math.unit(5.5, "feet")
  6316. }
  6317. ]
  6318. ))
  6319. characterMakers.push(() => makeCharacter(
  6320. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6321. {
  6322. back: {
  6323. height: math.unit(6, "feet"),
  6324. weight: math.unit(220, "lbs"),
  6325. name: "Back",
  6326. image: {
  6327. source: "./media/characters/mandake/back.svg"
  6328. }
  6329. }
  6330. },
  6331. [
  6332. {
  6333. name: "Normal",
  6334. height: math.unit(7, "feet"),
  6335. default: true
  6336. },
  6337. {
  6338. name: "Macro",
  6339. height: math.unit(78, "feet")
  6340. },
  6341. {
  6342. name: "Macro+",
  6343. height: math.unit(300, "meters")
  6344. },
  6345. {
  6346. name: "Macro++",
  6347. height: math.unit(2400, "feet")
  6348. },
  6349. {
  6350. name: "Megamacro",
  6351. height: math.unit(5167, "meters")
  6352. },
  6353. {
  6354. name: "Gigamacro",
  6355. height: math.unit(41769, "miles")
  6356. },
  6357. ]
  6358. ))
  6359. characterMakers.push(() => makeCharacter(
  6360. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6361. {
  6362. front: {
  6363. height: math.unit(6, "feet"),
  6364. weight: math.unit(120, "lbs"),
  6365. name: "Front",
  6366. image: {
  6367. source: "./media/characters/yozey/front.svg"
  6368. }
  6369. },
  6370. frontAlt: {
  6371. height: math.unit(6, "feet"),
  6372. weight: math.unit(120, "lbs"),
  6373. name: "Front (Alt)",
  6374. image: {
  6375. source: "./media/characters/yozey/front-alt.svg"
  6376. }
  6377. },
  6378. side: {
  6379. height: math.unit(6, "feet"),
  6380. weight: math.unit(120, "lbs"),
  6381. name: "Side",
  6382. image: {
  6383. source: "./media/characters/yozey/side.svg"
  6384. }
  6385. },
  6386. },
  6387. [
  6388. {
  6389. name: "Micro",
  6390. height: math.unit(3, "inches"),
  6391. default: true
  6392. },
  6393. {
  6394. name: "Normal",
  6395. height: math.unit(6, "feet")
  6396. }
  6397. ]
  6398. ))
  6399. characterMakers.push(() => makeCharacter(
  6400. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6401. {
  6402. front: {
  6403. height: math.unit(6, "feet"),
  6404. weight: math.unit(103, "lbs"),
  6405. name: "Front",
  6406. image: {
  6407. source: "./media/characters/valeska-voss/front.svg"
  6408. }
  6409. }
  6410. },
  6411. [
  6412. {
  6413. name: "Mini-Sized Sub",
  6414. height: math.unit(3.1, "inches")
  6415. },
  6416. {
  6417. name: "Mid-Sized Sub",
  6418. height: math.unit(6.2, "inches")
  6419. },
  6420. {
  6421. name: "Full-Sized Sub",
  6422. height: math.unit(9.3, "inches")
  6423. },
  6424. {
  6425. name: "Normal",
  6426. height: math.unit(5 + 2 / 12, "foot"),
  6427. default: true
  6428. },
  6429. ]
  6430. ))
  6431. characterMakers.push(() => makeCharacter(
  6432. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6433. {
  6434. front: {
  6435. height: math.unit(6, "feet"),
  6436. weight: math.unit(160, "lbs"),
  6437. name: "Front",
  6438. image: {
  6439. source: "./media/characters/gene-zeta/front.svg",
  6440. bottom: 0.03,
  6441. extra: 1
  6442. }
  6443. }
  6444. },
  6445. [
  6446. {
  6447. name: "Normal",
  6448. height: math.unit(6.25, "foot"),
  6449. default: true
  6450. },
  6451. ]
  6452. ))
  6453. characterMakers.push(() => makeCharacter(
  6454. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6455. {
  6456. front: {
  6457. height: math.unit(6, "feet"),
  6458. weight: math.unit(350, "lbs"),
  6459. name: "Front",
  6460. image: {
  6461. source: "./media/characters/razinox/front.svg",
  6462. extra: 1686 / 1548,
  6463. bottom: 28.2 / 1868
  6464. }
  6465. },
  6466. back: {
  6467. height: math.unit(6, "feet"),
  6468. weight: math.unit(350, "lbs"),
  6469. name: "Back",
  6470. image: {
  6471. source: "./media/characters/razinox/back.svg",
  6472. extra: 1660 / 1590,
  6473. bottom: 15 / 1665
  6474. }
  6475. },
  6476. },
  6477. [
  6478. {
  6479. name: "Normal",
  6480. height: math.unit(10 + 8 / 12, "foot")
  6481. },
  6482. {
  6483. name: "Minimacro",
  6484. height: math.unit(15, "foot")
  6485. },
  6486. {
  6487. name: "Macro",
  6488. height: math.unit(60, "foot"),
  6489. default: true
  6490. },
  6491. {
  6492. name: "Megamacro",
  6493. height: math.unit(5, "miles")
  6494. },
  6495. {
  6496. name: "Gigamacro",
  6497. height: math.unit(6000, "miles")
  6498. },
  6499. ]
  6500. ))
  6501. characterMakers.push(() => makeCharacter(
  6502. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6503. {
  6504. front: {
  6505. height: math.unit(6, "feet"),
  6506. weight: math.unit(150, "lbs"),
  6507. name: "Front",
  6508. image: {
  6509. source: "./media/characters/cobalt/front.svg"
  6510. }
  6511. }
  6512. },
  6513. [
  6514. {
  6515. name: "Normal",
  6516. height: math.unit(8 + 1 / 12, "foot")
  6517. },
  6518. {
  6519. name: "Macro",
  6520. height: math.unit(111, "foot"),
  6521. default: true
  6522. },
  6523. {
  6524. name: "Supracosmic",
  6525. height: math.unit(1e42, "feet")
  6526. },
  6527. ]
  6528. ))
  6529. characterMakers.push(() => makeCharacter(
  6530. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6531. {
  6532. front: {
  6533. height: math.unit(6, "feet"),
  6534. weight: math.unit(140, "lbs"),
  6535. name: "Front",
  6536. image: {
  6537. source: "./media/characters/amanda/front.svg"
  6538. }
  6539. }
  6540. },
  6541. [
  6542. {
  6543. name: "Micro",
  6544. height: math.unit(5, "inches"),
  6545. default: true
  6546. },
  6547. ]
  6548. ))
  6549. characterMakers.push(() => makeCharacter(
  6550. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6551. {
  6552. front: {
  6553. height: math.unit(5.59, "feet"),
  6554. weight: math.unit(250, "lbs"),
  6555. name: "Front",
  6556. image: {
  6557. source: "./media/characters/teal/front.svg"
  6558. }
  6559. },
  6560. frontAlt: {
  6561. height: math.unit(6, "feet"),
  6562. weight: math.unit(250, "lbs"),
  6563. name: "Front (Alt)",
  6564. image: {
  6565. source: "./media/characters/teal/front-alt.svg",
  6566. bottom: 0.04,
  6567. extra: 1
  6568. }
  6569. },
  6570. },
  6571. [
  6572. {
  6573. name: "Normal",
  6574. height: math.unit(12, "feet"),
  6575. default: true
  6576. },
  6577. {
  6578. name: "Macro",
  6579. height: math.unit(300, "feet")
  6580. },
  6581. ]
  6582. ))
  6583. characterMakers.push(() => makeCharacter(
  6584. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6585. {
  6586. frontCat: {
  6587. height: math.unit(6, "feet"),
  6588. weight: math.unit(180, "lbs"),
  6589. name: "Front (Cat)",
  6590. image: {
  6591. source: "./media/characters/ravin-amulet/front-cat.svg"
  6592. }
  6593. },
  6594. frontCatAlt: {
  6595. height: math.unit(6, "feet"),
  6596. weight: math.unit(180, "lbs"),
  6597. name: "Front (Alt, Cat)",
  6598. image: {
  6599. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6600. }
  6601. },
  6602. frontWerewolf: {
  6603. height: math.unit(6 * 1.2, "feet"),
  6604. weight: math.unit(225, "lbs"),
  6605. name: "Front (Werewolf)",
  6606. image: {
  6607. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6608. }
  6609. },
  6610. backWerewolf: {
  6611. height: math.unit(6 * 1.2, "feet"),
  6612. weight: math.unit(225, "lbs"),
  6613. name: "Back (Werewolf)",
  6614. image: {
  6615. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6616. }
  6617. },
  6618. },
  6619. [
  6620. {
  6621. name: "Nano",
  6622. height: math.unit(1, "micrometer")
  6623. },
  6624. {
  6625. name: "Micro",
  6626. height: math.unit(1, "inch")
  6627. },
  6628. {
  6629. name: "Normal",
  6630. height: math.unit(6, "feet"),
  6631. default: true
  6632. },
  6633. {
  6634. name: "Macro",
  6635. height: math.unit(60, "feet")
  6636. }
  6637. ]
  6638. ))
  6639. characterMakers.push(() => makeCharacter(
  6640. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6641. {
  6642. front: {
  6643. height: math.unit(6, "feet"),
  6644. weight: math.unit(165, "lbs"),
  6645. name: "Front",
  6646. image: {
  6647. source: "./media/characters/fluoresce/front.svg"
  6648. }
  6649. }
  6650. },
  6651. [
  6652. {
  6653. name: "Micro",
  6654. height: math.unit(6, "cm")
  6655. },
  6656. {
  6657. name: "Normal",
  6658. height: math.unit(5 + 7 / 12, "feet"),
  6659. default: true
  6660. },
  6661. {
  6662. name: "Macro",
  6663. height: math.unit(56, "feet")
  6664. },
  6665. {
  6666. name: "Megamacro",
  6667. height: math.unit(1.9, "miles")
  6668. },
  6669. ]
  6670. ))
  6671. characterMakers.push(() => makeCharacter(
  6672. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6673. {
  6674. front: {
  6675. height: math.unit(9 + 6 / 12, "feet"),
  6676. weight: math.unit(523, "lbs"),
  6677. name: "Side",
  6678. image: {
  6679. source: "./media/characters/aurora/side.svg"
  6680. }
  6681. }
  6682. },
  6683. [
  6684. {
  6685. name: "Normal",
  6686. height: math.unit(9 + 6 / 12, "feet")
  6687. },
  6688. {
  6689. name: "Macro",
  6690. height: math.unit(96, "feet"),
  6691. default: true
  6692. },
  6693. {
  6694. name: "Macro+",
  6695. height: math.unit(243, "feet")
  6696. },
  6697. ]
  6698. ))
  6699. characterMakers.push(() => makeCharacter(
  6700. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6701. {
  6702. front: {
  6703. height: math.unit(194, "cm"),
  6704. weight: math.unit(90, "kg"),
  6705. name: "Front",
  6706. image: {
  6707. source: "./media/characters/ranek/front.svg"
  6708. }
  6709. },
  6710. side: {
  6711. height: math.unit(194, "cm"),
  6712. weight: math.unit(90, "kg"),
  6713. name: "Side",
  6714. image: {
  6715. source: "./media/characters/ranek/side.svg"
  6716. }
  6717. },
  6718. back: {
  6719. height: math.unit(194, "cm"),
  6720. weight: math.unit(90, "kg"),
  6721. name: "Back",
  6722. image: {
  6723. source: "./media/characters/ranek/back.svg"
  6724. }
  6725. },
  6726. feral: {
  6727. height: math.unit(30, "cm"),
  6728. weight: math.unit(1.6, "lbs"),
  6729. name: "Feral",
  6730. image: {
  6731. source: "./media/characters/ranek/feral.svg"
  6732. }
  6733. },
  6734. },
  6735. [
  6736. {
  6737. name: "Normal",
  6738. height: math.unit(194, "cm"),
  6739. default: true
  6740. },
  6741. {
  6742. name: "Macro",
  6743. height: math.unit(100, "meters")
  6744. },
  6745. ]
  6746. ))
  6747. characterMakers.push(() => makeCharacter(
  6748. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6749. {
  6750. front: {
  6751. height: math.unit(5 + 6 / 12, "feet"),
  6752. weight: math.unit(153, "lbs"),
  6753. name: "Front",
  6754. image: {
  6755. source: "./media/characters/andrew-cooper/front.svg"
  6756. }
  6757. },
  6758. },
  6759. [
  6760. {
  6761. name: "Nano",
  6762. height: math.unit(1, "mm")
  6763. },
  6764. {
  6765. name: "Micro",
  6766. height: math.unit(2, "inches")
  6767. },
  6768. {
  6769. name: "Normal",
  6770. height: math.unit(5 + 6 / 12, "feet"),
  6771. default: true
  6772. }
  6773. ]
  6774. ))
  6775. characterMakers.push(() => makeCharacter(
  6776. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6777. {
  6778. front: {
  6779. height: math.unit(6, "feet"),
  6780. weight: math.unit(180, "lbs"),
  6781. name: "Front",
  6782. image: {
  6783. source: "./media/characters/akane-sato/front.svg",
  6784. extra: 1219 / 1140
  6785. }
  6786. },
  6787. back: {
  6788. height: math.unit(6, "feet"),
  6789. weight: math.unit(180, "lbs"),
  6790. name: "Back",
  6791. image: {
  6792. source: "./media/characters/akane-sato/back.svg",
  6793. extra: 1219 / 1170
  6794. }
  6795. },
  6796. },
  6797. [
  6798. {
  6799. name: "Normal",
  6800. height: math.unit(2.5, "meters")
  6801. },
  6802. {
  6803. name: "Macro",
  6804. height: math.unit(250, "meters"),
  6805. default: true
  6806. },
  6807. {
  6808. name: "Megamacro",
  6809. height: math.unit(25, "km")
  6810. },
  6811. ]
  6812. ))
  6813. characterMakers.push(() => makeCharacter(
  6814. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6815. {
  6816. front: {
  6817. height: math.unit(6, "feet"),
  6818. weight: math.unit(65, "kg"),
  6819. name: "Front",
  6820. image: {
  6821. source: "./media/characters/rook/front.svg",
  6822. extra: 960 / 950
  6823. }
  6824. }
  6825. },
  6826. [
  6827. {
  6828. name: "Normal",
  6829. height: math.unit(8.8, "feet")
  6830. },
  6831. {
  6832. name: "Macro",
  6833. height: math.unit(88, "feet"),
  6834. default: true
  6835. },
  6836. {
  6837. name: "Megamacro",
  6838. height: math.unit(8, "miles")
  6839. },
  6840. ]
  6841. ))
  6842. characterMakers.push(() => makeCharacter(
  6843. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6844. {
  6845. front: {
  6846. height: math.unit(12 + 2 / 12, "feet"),
  6847. weight: math.unit(808, "lbs"),
  6848. name: "Front",
  6849. image: {
  6850. source: "./media/characters/prodigy/front.svg"
  6851. }
  6852. }
  6853. },
  6854. [
  6855. {
  6856. name: "Normal",
  6857. height: math.unit(12 + 2 / 12, "feet"),
  6858. default: true
  6859. },
  6860. {
  6861. name: "Macro",
  6862. height: math.unit(143, "feet")
  6863. },
  6864. {
  6865. name: "Macro+",
  6866. height: math.unit(400, "feet")
  6867. },
  6868. ]
  6869. ))
  6870. characterMakers.push(() => makeCharacter(
  6871. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6872. {
  6873. front: {
  6874. height: math.unit(6, "feet"),
  6875. weight: math.unit(225, "lbs"),
  6876. name: "Front",
  6877. image: {
  6878. source: "./media/characters/daniel/front.svg"
  6879. }
  6880. },
  6881. leaning: {
  6882. height: math.unit(6, "feet"),
  6883. weight: math.unit(225, "lbs"),
  6884. name: "Leaning",
  6885. image: {
  6886. source: "./media/characters/daniel/leaning.svg"
  6887. }
  6888. },
  6889. },
  6890. [
  6891. {
  6892. name: "Macro",
  6893. height: math.unit(1000, "feet"),
  6894. default: true
  6895. },
  6896. ]
  6897. ))
  6898. characterMakers.push(() => makeCharacter(
  6899. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  6900. {
  6901. front: {
  6902. height: math.unit(6, "feet"),
  6903. weight: math.unit(88, "lbs"),
  6904. name: "Front",
  6905. image: {
  6906. source: "./media/characters/chiros/front.svg",
  6907. extra: 306 / 226
  6908. }
  6909. },
  6910. side: {
  6911. height: math.unit(6, "feet"),
  6912. weight: math.unit(88, "lbs"),
  6913. name: "Side",
  6914. image: {
  6915. source: "./media/characters/chiros/side.svg",
  6916. extra: 306 / 226
  6917. }
  6918. },
  6919. },
  6920. [
  6921. {
  6922. name: "Normal",
  6923. height: math.unit(6, "cm"),
  6924. default: true
  6925. },
  6926. ]
  6927. ))
  6928. characterMakers.push(() => makeCharacter(
  6929. { name: "Selka", species: ["snake"], tags: ["naga"] },
  6930. {
  6931. front: {
  6932. height: math.unit(6, "feet"),
  6933. weight: math.unit(100, "lbs"),
  6934. name: "Front",
  6935. image: {
  6936. source: "./media/characters/selka/front.svg",
  6937. extra: 947 / 887
  6938. }
  6939. }
  6940. },
  6941. [
  6942. {
  6943. name: "Normal",
  6944. height: math.unit(5, "cm"),
  6945. default: true
  6946. },
  6947. ]
  6948. ))
  6949. characterMakers.push(() => makeCharacter(
  6950. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  6951. {
  6952. front: {
  6953. height: math.unit(8 + 3 / 12, "feet"),
  6954. weight: math.unit(424, "lbs"),
  6955. name: "Front",
  6956. image: {
  6957. source: "./media/characters/verin/front.svg",
  6958. extra: 1845 / 1550
  6959. }
  6960. },
  6961. frontArmored: {
  6962. height: math.unit(8 + 3 / 12, "feet"),
  6963. weight: math.unit(424, "lbs"),
  6964. name: "Front (Armored)",
  6965. image: {
  6966. source: "./media/characters/verin/front-armor.svg",
  6967. extra: 1845 / 1550,
  6968. bottom: 0.01
  6969. }
  6970. },
  6971. back: {
  6972. height: math.unit(8 + 3 / 12, "feet"),
  6973. weight: math.unit(424, "lbs"),
  6974. name: "Back",
  6975. image: {
  6976. source: "./media/characters/verin/back.svg",
  6977. bottom: 0.1,
  6978. extra: 1
  6979. }
  6980. },
  6981. foot: {
  6982. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  6983. name: "Foot",
  6984. image: {
  6985. source: "./media/characters/verin/foot.svg"
  6986. }
  6987. },
  6988. },
  6989. [
  6990. {
  6991. name: "Normal",
  6992. height: math.unit(8 + 3 / 12, "feet")
  6993. },
  6994. {
  6995. name: "Minimacro",
  6996. height: math.unit(21, "feet"),
  6997. default: true
  6998. },
  6999. {
  7000. name: "Macro",
  7001. height: math.unit(626, "feet")
  7002. },
  7003. ]
  7004. ))
  7005. characterMakers.push(() => makeCharacter(
  7006. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7007. {
  7008. front: {
  7009. height: math.unit(2.718, "meters"),
  7010. weight: math.unit(150, "lbs"),
  7011. name: "Front",
  7012. image: {
  7013. source: "./media/characters/sovrim-terraquian/front.svg"
  7014. }
  7015. },
  7016. back: {
  7017. height: math.unit(2.718, "meters"),
  7018. weight: math.unit(150, "lbs"),
  7019. name: "Back",
  7020. image: {
  7021. source: "./media/characters/sovrim-terraquian/back.svg"
  7022. }
  7023. }
  7024. },
  7025. [
  7026. {
  7027. name: "Micro",
  7028. height: math.unit(2, "inches")
  7029. },
  7030. {
  7031. name: "Small",
  7032. height: math.unit(1, "meter")
  7033. },
  7034. {
  7035. name: "Normal",
  7036. height: math.unit(Math.E, "meters"),
  7037. default: true
  7038. },
  7039. {
  7040. name: "Macro",
  7041. height: math.unit(20, "meters")
  7042. },
  7043. {
  7044. name: "Macro+",
  7045. height: math.unit(400, "meters")
  7046. },
  7047. ]
  7048. ))
  7049. characterMakers.push(() => makeCharacter(
  7050. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7051. {
  7052. front: {
  7053. height: math.unit(7, "feet"),
  7054. weight: math.unit(489, "lbs"),
  7055. name: "Front",
  7056. image: {
  7057. source: "./media/characters/reece-silvermane/front.svg",
  7058. bottom: 0.02,
  7059. extra: 1
  7060. }
  7061. },
  7062. },
  7063. [
  7064. {
  7065. name: "Macro",
  7066. height: math.unit(1.5, "miles"),
  7067. default: true
  7068. },
  7069. ]
  7070. ))
  7071. characterMakers.push(() => makeCharacter(
  7072. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7073. {
  7074. front: {
  7075. height: math.unit(6, "feet"),
  7076. weight: math.unit(78, "kg"),
  7077. name: "Front",
  7078. image: {
  7079. source: "./media/characters/kane/front.svg",
  7080. extra: 978 / 899
  7081. }
  7082. },
  7083. },
  7084. [
  7085. {
  7086. name: "Normal",
  7087. height: math.unit(2.1, "m"),
  7088. },
  7089. {
  7090. name: "Macro",
  7091. height: math.unit(1, "km"),
  7092. default: true
  7093. },
  7094. ]
  7095. ))
  7096. characterMakers.push(() => makeCharacter(
  7097. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7098. {
  7099. front: {
  7100. height: math.unit(6, "feet"),
  7101. weight: math.unit(200, "kg"),
  7102. name: "Front",
  7103. image: {
  7104. source: "./media/characters/tegon/front.svg",
  7105. bottom: 0.01,
  7106. extra: 1
  7107. }
  7108. },
  7109. },
  7110. [
  7111. {
  7112. name: "Micro",
  7113. height: math.unit(1, "inch")
  7114. },
  7115. {
  7116. name: "Normal",
  7117. height: math.unit(6 + 3 / 12, "feet"),
  7118. default: true
  7119. },
  7120. {
  7121. name: "Macro",
  7122. height: math.unit(300, "feet")
  7123. },
  7124. {
  7125. name: "Megamacro",
  7126. height: math.unit(69, "miles")
  7127. },
  7128. ]
  7129. ))
  7130. characterMakers.push(() => makeCharacter(
  7131. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7132. {
  7133. side: {
  7134. height: math.unit(6, "feet"),
  7135. weight: math.unit(2304, "lbs"),
  7136. name: "Side",
  7137. image: {
  7138. source: "./media/characters/arcturax/side.svg",
  7139. extra: 790 / 376,
  7140. bottom: 0.01
  7141. }
  7142. },
  7143. },
  7144. [
  7145. {
  7146. name: "Micro",
  7147. height: math.unit(2, "inch")
  7148. },
  7149. {
  7150. name: "Normal",
  7151. height: math.unit(6, "feet")
  7152. },
  7153. {
  7154. name: "Macro",
  7155. height: math.unit(39, "feet"),
  7156. default: true
  7157. },
  7158. {
  7159. name: "Megamacro",
  7160. height: math.unit(7, "miles")
  7161. },
  7162. ]
  7163. ))
  7164. characterMakers.push(() => makeCharacter(
  7165. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7166. {
  7167. front: {
  7168. height: math.unit(6, "feet"),
  7169. weight: math.unit(50, "lbs"),
  7170. name: "Front",
  7171. image: {
  7172. source: "./media/characters/sentri/front.svg",
  7173. extra: 1750 / 1570,
  7174. bottom: 0.025
  7175. }
  7176. },
  7177. frontAlt: {
  7178. height: math.unit(6, "feet"),
  7179. weight: math.unit(50, "lbs"),
  7180. name: "Front (Alt)",
  7181. image: {
  7182. source: "./media/characters/sentri/front-alt.svg",
  7183. extra: 1750 / 1570,
  7184. bottom: 0.025
  7185. }
  7186. },
  7187. },
  7188. [
  7189. {
  7190. name: "Normal",
  7191. height: math.unit(15, "feet"),
  7192. default: true
  7193. },
  7194. {
  7195. name: "Macro",
  7196. height: math.unit(2500, "feet")
  7197. }
  7198. ]
  7199. ))
  7200. characterMakers.push(() => makeCharacter(
  7201. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7202. {
  7203. front: {
  7204. height: math.unit(5 + 8 / 12, "feet"),
  7205. weight: math.unit(130, "lbs"),
  7206. name: "Front",
  7207. image: {
  7208. source: "./media/characters/corvin/front.svg",
  7209. extra: 1803 / 1629
  7210. }
  7211. },
  7212. frontShirt: {
  7213. height: math.unit(5 + 8 / 12, "feet"),
  7214. weight: math.unit(130, "lbs"),
  7215. name: "Front (Shirt)",
  7216. image: {
  7217. source: "./media/characters/corvin/front-shirt.svg",
  7218. extra: 1803 / 1629
  7219. }
  7220. },
  7221. frontPoncho: {
  7222. height: math.unit(5 + 8 / 12, "feet"),
  7223. weight: math.unit(130, "lbs"),
  7224. name: "Front (Poncho)",
  7225. image: {
  7226. source: "./media/characters/corvin/front-poncho.svg",
  7227. extra: 1803 / 1629
  7228. }
  7229. },
  7230. side: {
  7231. height: math.unit(5 + 8 / 12, "feet"),
  7232. weight: math.unit(130, "lbs"),
  7233. name: "Side",
  7234. image: {
  7235. source: "./media/characters/corvin/side.svg",
  7236. extra: 1012 / 945
  7237. }
  7238. },
  7239. back: {
  7240. height: math.unit(5 + 8 / 12, "feet"),
  7241. weight: math.unit(130, "lbs"),
  7242. name: "Back",
  7243. image: {
  7244. source: "./media/characters/corvin/back.svg",
  7245. extra: 1803 / 1629
  7246. }
  7247. },
  7248. },
  7249. [
  7250. {
  7251. name: "Micro",
  7252. height: math.unit(3, "inches")
  7253. },
  7254. {
  7255. name: "Normal",
  7256. height: math.unit(5 + 8 / 12, "feet")
  7257. },
  7258. {
  7259. name: "Macro",
  7260. height: math.unit(300, "feet"),
  7261. default: true
  7262. },
  7263. {
  7264. name: "Megamacro",
  7265. height: math.unit(500, "miles")
  7266. }
  7267. ]
  7268. ))
  7269. characterMakers.push(() => makeCharacter(
  7270. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7271. {
  7272. front: {
  7273. height: math.unit(6, "feet"),
  7274. weight: math.unit(135, "lbs"),
  7275. name: "Front",
  7276. image: {
  7277. source: "./media/characters/q/front.svg",
  7278. extra: 854 / 752,
  7279. bottom: 0.005
  7280. }
  7281. },
  7282. back: {
  7283. height: math.unit(6, "feet"),
  7284. weight: math.unit(130, "lbs"),
  7285. name: "Back",
  7286. image: {
  7287. source: "./media/characters/q/back.svg",
  7288. extra: 854 / 752
  7289. }
  7290. },
  7291. },
  7292. [
  7293. {
  7294. name: "Macro",
  7295. height: math.unit(90, "feet"),
  7296. default: true
  7297. },
  7298. {
  7299. name: "Extra Macro",
  7300. height: math.unit(300, "feet"),
  7301. },
  7302. {
  7303. name: "BIG WALF",
  7304. height: math.unit(750, "feet"),
  7305. },
  7306. ]
  7307. ))
  7308. characterMakers.push(() => makeCharacter(
  7309. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7310. {
  7311. front: {
  7312. height: math.unit(6, "feet"),
  7313. weight: math.unit(150, "lbs"),
  7314. name: "Front",
  7315. image: {
  7316. source: "./media/characters/carley/front.svg",
  7317. extra: 3927 / 3540,
  7318. bottom: 0.03
  7319. }
  7320. }
  7321. },
  7322. [
  7323. {
  7324. name: "Normal",
  7325. height: math.unit(6 + 3 / 12, "feet")
  7326. },
  7327. {
  7328. name: "Macro",
  7329. height: math.unit(185, "feet"),
  7330. default: true
  7331. },
  7332. {
  7333. name: "Megamacro",
  7334. height: math.unit(8, "miles"),
  7335. },
  7336. ]
  7337. ))
  7338. characterMakers.push(() => makeCharacter(
  7339. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7340. {
  7341. front: {
  7342. height: math.unit(3, "feet"),
  7343. weight: math.unit(28, "lbs"),
  7344. name: "Front",
  7345. image: {
  7346. source: "./media/characters/citrine/front.svg"
  7347. }
  7348. }
  7349. },
  7350. [
  7351. {
  7352. name: "Normal",
  7353. height: math.unit(3, "feet"),
  7354. default: true
  7355. }
  7356. ]
  7357. ))
  7358. characterMakers.push(() => makeCharacter(
  7359. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7360. {
  7361. front: {
  7362. height: math.unit(14, "feet"),
  7363. weight: math.unit(1450, "kg"),
  7364. capacity: math.unit(15, "people"),
  7365. name: "Front",
  7366. image: {
  7367. source: "./media/characters/aura-starwind/front.svg",
  7368. extra: 1455 / 1335
  7369. }
  7370. },
  7371. side: {
  7372. height: math.unit(14, "feet"),
  7373. weight: math.unit(1450, "kg"),
  7374. capacity: math.unit(15, "people"),
  7375. name: "Side",
  7376. image: {
  7377. source: "./media/characters/aura-starwind/side.svg",
  7378. extra: 1654 / 1497
  7379. }
  7380. },
  7381. taur: {
  7382. height: math.unit(18, "feet"),
  7383. weight: math.unit(5500, "kg"),
  7384. capacity: math.unit(50, "people"),
  7385. name: "Taur",
  7386. image: {
  7387. source: "./media/characters/aura-starwind/taur.svg",
  7388. extra: 1760 / 1650
  7389. }
  7390. },
  7391. feral: {
  7392. height: math.unit(46, "feet"),
  7393. weight: math.unit(25000, "kg"),
  7394. capacity: math.unit(120, "people"),
  7395. name: "Feral",
  7396. image: {
  7397. source: "./media/characters/aura-starwind/feral.svg"
  7398. }
  7399. },
  7400. },
  7401. [
  7402. {
  7403. name: "Normal",
  7404. height: math.unit(14, "feet"),
  7405. default: true
  7406. },
  7407. {
  7408. name: "Macro",
  7409. height: math.unit(50, "meters")
  7410. },
  7411. {
  7412. name: "Megamacro",
  7413. height: math.unit(5000, "meters")
  7414. },
  7415. {
  7416. name: "Gigamacro",
  7417. height: math.unit(100000, "kilometers")
  7418. },
  7419. ]
  7420. ))
  7421. characterMakers.push(() => makeCharacter(
  7422. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7423. {
  7424. front: {
  7425. height: math.unit(2 + 7 / 12, "feet"),
  7426. weight: math.unit(32, "lbs"),
  7427. name: "Front",
  7428. image: {
  7429. source: "./media/characters/rivet/front.svg",
  7430. extra: 1716 / 1658,
  7431. bottom: 0.03
  7432. }
  7433. },
  7434. foot: {
  7435. height: math.unit(0.551, "feet"),
  7436. name: "Rivet's Foot",
  7437. image: {
  7438. source: "./media/characters/rivet/foot.svg"
  7439. },
  7440. rename: true
  7441. }
  7442. },
  7443. [
  7444. {
  7445. name: "Micro",
  7446. height: math.unit(1.5, "inches"),
  7447. },
  7448. {
  7449. name: "Normal",
  7450. height: math.unit(2 + 7 / 12, "feet"),
  7451. default: true
  7452. },
  7453. {
  7454. name: "Macro",
  7455. height: math.unit(85, "feet")
  7456. },
  7457. {
  7458. name: "Megamacro",
  7459. height: math.unit(2.2, "km")
  7460. }
  7461. ]
  7462. ))
  7463. characterMakers.push(() => makeCharacter(
  7464. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7465. {
  7466. front: {
  7467. height: math.unit(5 + 9 / 12, "feet"),
  7468. weight: math.unit(150, "lbs"),
  7469. name: "Front",
  7470. image: {
  7471. source: "./media/characters/coffee/front.svg",
  7472. extra: 3666 / 3032,
  7473. bottom: 0.04
  7474. }
  7475. },
  7476. foot: {
  7477. height: math.unit(1.29, "feet"),
  7478. name: "Foot",
  7479. image: {
  7480. source: "./media/characters/coffee/foot.svg"
  7481. }
  7482. },
  7483. },
  7484. [
  7485. {
  7486. name: "Micro",
  7487. height: math.unit(2, "inches"),
  7488. },
  7489. {
  7490. name: "Normal",
  7491. height: math.unit(5 + 9 / 12, "feet"),
  7492. default: true
  7493. },
  7494. {
  7495. name: "Macro",
  7496. height: math.unit(800, "feet")
  7497. },
  7498. {
  7499. name: "Megamacro",
  7500. height: math.unit(25, "miles")
  7501. }
  7502. ]
  7503. ))
  7504. characterMakers.push(() => makeCharacter(
  7505. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7506. {
  7507. front: {
  7508. height: math.unit(6, "feet"),
  7509. weight: math.unit(200, "lbs"),
  7510. name: "Front",
  7511. image: {
  7512. source: "./media/characters/chari-gal/front.svg",
  7513. extra: 1568 / 1385,
  7514. bottom: 0.047
  7515. }
  7516. },
  7517. gigantamax: {
  7518. height: math.unit(6 * 16, "feet"),
  7519. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7520. name: "Gigantamax",
  7521. image: {
  7522. source: "./media/characters/chari-gal/gigantamax.svg",
  7523. extra: 1124 / 888,
  7524. bottom: 0.03
  7525. }
  7526. },
  7527. },
  7528. [
  7529. {
  7530. name: "Normal",
  7531. height: math.unit(5 + 7 / 12, "feet")
  7532. },
  7533. {
  7534. name: "Macro",
  7535. height: math.unit(200, "feet"),
  7536. default: true
  7537. }
  7538. ]
  7539. ))
  7540. characterMakers.push(() => makeCharacter(
  7541. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7542. {
  7543. front: {
  7544. height: math.unit(6, "feet"),
  7545. weight: math.unit(150, "lbs"),
  7546. name: "Front",
  7547. image: {
  7548. source: "./media/characters/nova/front.svg",
  7549. extra: 5000 / 4722,
  7550. bottom: 0.02
  7551. }
  7552. }
  7553. },
  7554. [
  7555. {
  7556. name: "Micro-",
  7557. height: math.unit(0.8, "inches")
  7558. },
  7559. {
  7560. name: "Micro",
  7561. height: math.unit(2, "inches"),
  7562. default: true
  7563. },
  7564. ]
  7565. ))
  7566. characterMakers.push(() => makeCharacter(
  7567. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7568. {
  7569. front: {
  7570. height: math.unit(3 + 1 / 12, "feet"),
  7571. weight: math.unit(21.7, "lbs"),
  7572. name: "Front",
  7573. image: {
  7574. source: "./media/characters/argent/front.svg",
  7575. extra: 1471 / 1331,
  7576. bottom: 100.8 / 1575.5
  7577. }
  7578. }
  7579. },
  7580. [
  7581. {
  7582. name: "Micro",
  7583. height: math.unit(2, "inches")
  7584. },
  7585. {
  7586. name: "Normal",
  7587. height: math.unit(3 + 1 / 12, "feet"),
  7588. default: true
  7589. },
  7590. {
  7591. name: "Macro",
  7592. height: math.unit(120, "feet")
  7593. },
  7594. ]
  7595. ))
  7596. characterMakers.push(() => makeCharacter(
  7597. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7598. {
  7599. lamp: {
  7600. height: math.unit(7 * 1559 / 989, "feet"),
  7601. name: "Magic Lamp",
  7602. image: {
  7603. source: "./media/characters/mira-al-cul/lamp.svg",
  7604. extra: 1617 / 1559
  7605. }
  7606. },
  7607. front: {
  7608. height: math.unit(7, "feet"),
  7609. name: "Front",
  7610. image: {
  7611. source: "./media/characters/mira-al-cul/front.svg",
  7612. extra: 1044 / 990
  7613. }
  7614. },
  7615. },
  7616. [
  7617. {
  7618. name: "Heavily Restricted",
  7619. height: math.unit(7 * 1559 / 989, "feet")
  7620. },
  7621. {
  7622. name: "Freshly Freed",
  7623. height: math.unit(50 * 1559 / 989, "feet")
  7624. },
  7625. {
  7626. name: "World Encompassing",
  7627. height: math.unit(10000 * 1559 / 989, "miles")
  7628. },
  7629. {
  7630. name: "Galactic",
  7631. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7632. },
  7633. {
  7634. name: "Palmed Universe",
  7635. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7636. default: true
  7637. },
  7638. {
  7639. name: "Multiversal Matriarch",
  7640. height: math.unit(8.87e10, "yottameters")
  7641. },
  7642. {
  7643. name: "Void Mother",
  7644. height: math.unit(3.14e110, "yottaparsecs")
  7645. },
  7646. ]
  7647. ))
  7648. characterMakers.push(() => makeCharacter(
  7649. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7650. {
  7651. front: {
  7652. height: math.unit(17 + 1 / 12, "feet"),
  7653. weight: math.unit(476.2 * 5, "lbs"),
  7654. name: "Front",
  7655. image: {
  7656. source: "./media/characters/kuro-shi-uchū/front.svg",
  7657. extra: 2329 / 1835,
  7658. bottom: 0.02
  7659. }
  7660. },
  7661. },
  7662. [
  7663. {
  7664. name: "Micro",
  7665. height: math.unit(2, "inches")
  7666. },
  7667. {
  7668. name: "Normal",
  7669. height: math.unit(12, "meters")
  7670. },
  7671. {
  7672. name: "Planetary",
  7673. height: math.unit(0.00929, "AU"),
  7674. default: true
  7675. },
  7676. {
  7677. name: "Universal",
  7678. height: math.unit(20, "gigaparsecs")
  7679. },
  7680. ]
  7681. ))
  7682. characterMakers.push(() => makeCharacter(
  7683. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7684. {
  7685. front: {
  7686. height: math.unit(5 + 2 / 12, "feet"),
  7687. weight: math.unit(120, "lbs"),
  7688. name: "Front",
  7689. image: {
  7690. source: "./media/characters/katherine/front.svg",
  7691. extra: 2075 / 1969
  7692. }
  7693. },
  7694. dress: {
  7695. height: math.unit(5 + 2 / 12, "feet"),
  7696. weight: math.unit(120, "lbs"),
  7697. name: "Dress",
  7698. image: {
  7699. source: "./media/characters/katherine/dress.svg",
  7700. extra: 2258 / 2064
  7701. }
  7702. },
  7703. },
  7704. [
  7705. {
  7706. name: "Micro",
  7707. height: math.unit(1, "inches"),
  7708. default: true
  7709. },
  7710. {
  7711. name: "Normal",
  7712. height: math.unit(5 + 2 / 12, "feet")
  7713. },
  7714. {
  7715. name: "Macro",
  7716. height: math.unit(100, "meters")
  7717. },
  7718. {
  7719. name: "Megamacro",
  7720. height: math.unit(80, "miles")
  7721. },
  7722. ]
  7723. ))
  7724. characterMakers.push(() => makeCharacter(
  7725. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7726. {
  7727. front: {
  7728. height: math.unit(7 + 8 / 12, "feet"),
  7729. weight: math.unit(250, "lbs"),
  7730. name: "Front",
  7731. image: {
  7732. source: "./media/characters/yevis/front.svg",
  7733. extra: 1938 / 1755
  7734. }
  7735. }
  7736. },
  7737. [
  7738. {
  7739. name: "Mortal",
  7740. height: math.unit(7 + 8 / 12, "feet")
  7741. },
  7742. {
  7743. name: "Battle",
  7744. height: math.unit(25 + 11 / 12, "feet")
  7745. },
  7746. {
  7747. name: "Wrath",
  7748. height: math.unit(1654 + 11 / 12, "feet")
  7749. },
  7750. {
  7751. name: "Planet Destroyer",
  7752. height: math.unit(12000, "miles")
  7753. },
  7754. {
  7755. name: "Galaxy Conqueror",
  7756. height: math.unit(1.45, "zettameters"),
  7757. default: true
  7758. },
  7759. {
  7760. name: "Universal War",
  7761. height: math.unit(184, "gigaparsecs")
  7762. },
  7763. {
  7764. name: "Eternity War",
  7765. height: math.unit(1.98e55, "yottaparsecs")
  7766. },
  7767. ]
  7768. ))
  7769. characterMakers.push(() => makeCharacter(
  7770. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7771. {
  7772. front: {
  7773. height: math.unit(5 + 8 / 12, "feet"),
  7774. weight: math.unit(63, "kg"),
  7775. name: "Front",
  7776. image: {
  7777. source: "./media/characters/xavier/front.svg",
  7778. extra: 944 / 883
  7779. }
  7780. },
  7781. frontStretch: {
  7782. height: math.unit(5 + 8 / 12, "feet"),
  7783. weight: math.unit(63, "kg"),
  7784. name: "Stretching",
  7785. image: {
  7786. source: "./media/characters/xavier/front-stretch.svg",
  7787. extra: 962 / 820
  7788. }
  7789. },
  7790. },
  7791. [
  7792. {
  7793. name: "Normal",
  7794. height: math.unit(5 + 8 / 12, "feet")
  7795. },
  7796. {
  7797. name: "Macro",
  7798. height: math.unit(100, "meters"),
  7799. default: true
  7800. },
  7801. {
  7802. name: "McLargeHuge",
  7803. height: math.unit(10, "miles")
  7804. },
  7805. ]
  7806. ))
  7807. characterMakers.push(() => makeCharacter(
  7808. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7809. {
  7810. front: {
  7811. height: math.unit(5 + 5 / 12, "feet"),
  7812. weight: math.unit(150, "lb"),
  7813. name: "Front",
  7814. image: {
  7815. source: "./media/characters/joshii/front.svg"
  7816. }
  7817. },
  7818. foot: {
  7819. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7820. name: "Foot",
  7821. image: {
  7822. source: "./media/characters/joshii/foot.svg"
  7823. }
  7824. },
  7825. },
  7826. [
  7827. {
  7828. name: "Micro",
  7829. height: math.unit(2, "inches")
  7830. },
  7831. {
  7832. name: "Normal",
  7833. height: math.unit(5 + 5 / 12, "feet"),
  7834. default: true
  7835. },
  7836. {
  7837. name: "Macro",
  7838. height: math.unit(785, "feet")
  7839. },
  7840. {
  7841. name: "Megamacro",
  7842. height: math.unit(24.5, "miles")
  7843. },
  7844. ]
  7845. ))
  7846. characterMakers.push(() => makeCharacter(
  7847. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  7848. {
  7849. front: {
  7850. height: math.unit(6, "feet"),
  7851. weight: math.unit(150, "lb"),
  7852. name: "Front",
  7853. image: {
  7854. source: "./media/characters/goddess-elizabeth/front.svg",
  7855. extra: 1800 / 1525,
  7856. bottom: 0.005
  7857. }
  7858. },
  7859. foot: {
  7860. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7861. name: "Foot",
  7862. image: {
  7863. source: "./media/characters/goddess-elizabeth/foot.svg"
  7864. }
  7865. },
  7866. mouth: {
  7867. height: math.unit(6, "feet"),
  7868. name: "Mouth",
  7869. image: {
  7870. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7871. }
  7872. },
  7873. },
  7874. [
  7875. {
  7876. name: "Micro",
  7877. height: math.unit(12, "feet")
  7878. },
  7879. {
  7880. name: "Normal",
  7881. height: math.unit(80, "miles"),
  7882. default: true
  7883. },
  7884. {
  7885. name: "Macro",
  7886. height: math.unit(15000, "parsecs")
  7887. },
  7888. ]
  7889. ))
  7890. characterMakers.push(() => makeCharacter(
  7891. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  7892. {
  7893. front: {
  7894. height: math.unit(5 + 9 / 12, "feet"),
  7895. weight: math.unit(144, "lb"),
  7896. name: "Front",
  7897. image: {
  7898. source: "./media/characters/kara/front.svg"
  7899. }
  7900. },
  7901. feet: {
  7902. height: math.unit(6 / 6.765, "feet"),
  7903. name: "Kara's Feet",
  7904. rename: true,
  7905. image: {
  7906. source: "./media/characters/kara/feet.svg"
  7907. }
  7908. },
  7909. },
  7910. [
  7911. {
  7912. name: "Normal",
  7913. height: math.unit(5 + 9 / 12, "feet")
  7914. },
  7915. {
  7916. name: "Macro",
  7917. height: math.unit(174, "feet"),
  7918. default: true
  7919. },
  7920. ]
  7921. ))
  7922. characterMakers.push(() => makeCharacter(
  7923. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  7924. {
  7925. front: {
  7926. height: math.unit(18, "feet"),
  7927. weight: math.unit(4050, "lb"),
  7928. name: "Front",
  7929. image: {
  7930. source: "./media/characters/tyrone/front.svg",
  7931. extra: 2520 / 2402,
  7932. bottom: 0.025
  7933. }
  7934. },
  7935. },
  7936. [
  7937. {
  7938. name: "Normal",
  7939. height: math.unit(18, "feet"),
  7940. default: true
  7941. },
  7942. {
  7943. name: "Macro",
  7944. height: math.unit(300, "feet")
  7945. },
  7946. ]
  7947. ))
  7948. characterMakers.push(() => makeCharacter(
  7949. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  7950. {
  7951. front: {
  7952. height: math.unit(7 + 8 / 12, "feet"),
  7953. weight: math.unit(120, "lb"),
  7954. name: "Front",
  7955. image: {
  7956. source: "./media/characters/danny/front.svg",
  7957. extra: 1490 / 1350
  7958. }
  7959. },
  7960. back: {
  7961. height: math.unit(7 + 8 / 12, "feet"),
  7962. weight: math.unit(120, "lb"),
  7963. name: "Back",
  7964. image: {
  7965. source: "./media/characters/danny/back.svg",
  7966. extra: 1490 / 1350
  7967. }
  7968. },
  7969. },
  7970. [
  7971. {
  7972. name: "Normal",
  7973. height: math.unit(7 + 8 / 12, "feet"),
  7974. default: true
  7975. },
  7976. ]
  7977. ))
  7978. characterMakers.push(() => makeCharacter(
  7979. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  7980. {
  7981. front: {
  7982. height: math.unit(3.5, "inches"),
  7983. weight: math.unit(19, "grams"),
  7984. name: "Front",
  7985. image: {
  7986. source: "./media/characters/mallow/front.svg",
  7987. extra: 471 / 431
  7988. }
  7989. },
  7990. back: {
  7991. height: math.unit(3.5, "inches"),
  7992. weight: math.unit(19, "grams"),
  7993. name: "Back",
  7994. image: {
  7995. source: "./media/characters/mallow/back.svg",
  7996. extra: 471 / 431
  7997. }
  7998. },
  7999. },
  8000. [
  8001. {
  8002. name: "Normal",
  8003. height: math.unit(3.5, "inches"),
  8004. default: true
  8005. },
  8006. ]
  8007. ))
  8008. characterMakers.push(() => makeCharacter(
  8009. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8010. {
  8011. front: {
  8012. height: math.unit(9, "feet"),
  8013. weight: math.unit(230, "kg"),
  8014. name: "Front",
  8015. image: {
  8016. source: "./media/characters/starry-aqua/front.svg"
  8017. }
  8018. },
  8019. back: {
  8020. height: math.unit(9, "feet"),
  8021. weight: math.unit(230, "kg"),
  8022. name: "Back",
  8023. image: {
  8024. source: "./media/characters/starry-aqua/back.svg"
  8025. }
  8026. },
  8027. hand: {
  8028. height: math.unit(9 * 0.1168, "feet"),
  8029. name: "Hand",
  8030. image: {
  8031. source: "./media/characters/starry-aqua/hand.svg"
  8032. }
  8033. },
  8034. foot: {
  8035. height: math.unit(9 * 0.18, "feet"),
  8036. name: "Foot",
  8037. image: {
  8038. source: "./media/characters/starry-aqua/foot.svg"
  8039. }
  8040. }
  8041. },
  8042. [
  8043. {
  8044. name: "Micro",
  8045. height: math.unit(3, "inches")
  8046. },
  8047. {
  8048. name: "Normal",
  8049. height: math.unit(9, "feet")
  8050. },
  8051. {
  8052. name: "Macro",
  8053. height: math.unit(300, "feet"),
  8054. default: true
  8055. },
  8056. {
  8057. name: "Megamacro",
  8058. height: math.unit(3200, "feet")
  8059. }
  8060. ]
  8061. ))
  8062. characterMakers.push(() => makeCharacter(
  8063. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8064. {
  8065. front: {
  8066. height: math.unit(6, "feet"),
  8067. weight: math.unit(230, "lb"),
  8068. name: "Front",
  8069. image: {
  8070. source: "./media/characters/luka/front.svg",
  8071. extra: 1,
  8072. bottom: 0.025
  8073. }
  8074. },
  8075. },
  8076. [
  8077. {
  8078. name: "Normal",
  8079. height: math.unit(12 + 8 / 12, "feet"),
  8080. default: true
  8081. },
  8082. {
  8083. name: "Minimacro",
  8084. height: math.unit(20, "feet")
  8085. },
  8086. {
  8087. name: "Macro",
  8088. height: math.unit(250, "feet")
  8089. },
  8090. {
  8091. name: "Megamacro",
  8092. height: math.unit(5, "miles")
  8093. },
  8094. {
  8095. name: "Gigamacro",
  8096. height: math.unit(8000, "miles")
  8097. },
  8098. ]
  8099. ))
  8100. characterMakers.push(() => makeCharacter(
  8101. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8102. {
  8103. front: {
  8104. height: math.unit(6, "feet"),
  8105. weight: math.unit(150, "lb"),
  8106. name: "Front",
  8107. image: {
  8108. source: "./media/characters/natalie-nightring/front.svg",
  8109. extra: 1,
  8110. bottom: 0.06
  8111. }
  8112. },
  8113. },
  8114. [
  8115. {
  8116. name: "Uh Oh",
  8117. height: math.unit(0.1, "mm")
  8118. },
  8119. {
  8120. name: "Small",
  8121. height: math.unit(3, "inches")
  8122. },
  8123. {
  8124. name: "Human Scale",
  8125. height: math.unit(6, "feet")
  8126. },
  8127. {
  8128. name: "Librarian",
  8129. height: math.unit(50, "feet"),
  8130. default: true
  8131. },
  8132. {
  8133. name: "Immense",
  8134. height: math.unit(200, "miles")
  8135. },
  8136. ]
  8137. ))
  8138. characterMakers.push(() => makeCharacter(
  8139. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8140. {
  8141. front: {
  8142. height: math.unit(6, "feet"),
  8143. weight: math.unit(180, "lbs"),
  8144. name: "Front",
  8145. image: {
  8146. source: "./media/characters/danni-rosie/front.svg",
  8147. extra: 1260 / 1128,
  8148. bottom: 0.022
  8149. }
  8150. },
  8151. },
  8152. [
  8153. {
  8154. name: "Micro",
  8155. height: math.unit(2, "inches"),
  8156. default: true
  8157. },
  8158. ]
  8159. ))
  8160. characterMakers.push(() => makeCharacter(
  8161. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8162. {
  8163. front: {
  8164. height: math.unit(5 + 9 / 12, "feet"),
  8165. weight: math.unit(220, "lb"),
  8166. name: "Front",
  8167. image: {
  8168. source: "./media/characters/samantha-kruse/front.svg",
  8169. extra: (985 / 935),
  8170. bottom: 0.03
  8171. }
  8172. },
  8173. frontUndressed: {
  8174. height: math.unit(5 + 9 / 12, "feet"),
  8175. weight: math.unit(220, "lb"),
  8176. name: "Front (Undressed)",
  8177. image: {
  8178. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8179. extra: (973 / 923),
  8180. bottom: 0.025
  8181. }
  8182. },
  8183. fat: {
  8184. height: math.unit(5 + 9 / 12, "feet"),
  8185. weight: math.unit(900, "lb"),
  8186. name: "Front (Fat)",
  8187. image: {
  8188. source: "./media/characters/samantha-kruse/fat.svg",
  8189. extra: 2688 / 2561
  8190. }
  8191. },
  8192. },
  8193. [
  8194. {
  8195. name: "Normal",
  8196. height: math.unit(5 + 9 / 12, "feet"),
  8197. default: true
  8198. }
  8199. ]
  8200. ))
  8201. characterMakers.push(() => makeCharacter(
  8202. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8203. {
  8204. back: {
  8205. height: math.unit(5 + 4 / 12, "feet"),
  8206. weight: math.unit(4963, "lb"),
  8207. name: "Back",
  8208. image: {
  8209. source: "./media/characters/amelia-rosie/back.svg",
  8210. extra: 1113 / 963,
  8211. bottom: 0.01
  8212. }
  8213. },
  8214. },
  8215. [
  8216. {
  8217. name: "Level 0",
  8218. height: math.unit(5 + 4 / 12, "feet")
  8219. },
  8220. {
  8221. name: "Level 1",
  8222. height: math.unit(164597, "feet"),
  8223. default: true
  8224. },
  8225. {
  8226. name: "Level 2",
  8227. height: math.unit(956243, "miles")
  8228. },
  8229. {
  8230. name: "Level 3",
  8231. height: math.unit(29421709423, "miles")
  8232. },
  8233. {
  8234. name: "Level 4",
  8235. height: math.unit(154, "lightyears")
  8236. },
  8237. {
  8238. name: "Level 5",
  8239. height: math.unit(4738272, "lightyears")
  8240. },
  8241. {
  8242. name: "Level 6",
  8243. height: math.unit(145787152896, "lightyears")
  8244. },
  8245. ]
  8246. ))
  8247. characterMakers.push(() => makeCharacter(
  8248. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8249. {
  8250. front: {
  8251. height: math.unit(5 + 11 / 12, "feet"),
  8252. weight: math.unit(65, "kg"),
  8253. name: "Front",
  8254. image: {
  8255. source: "./media/characters/rook-kitara/front.svg",
  8256. extra: 1347 / 1274,
  8257. bottom: 0.005
  8258. }
  8259. },
  8260. },
  8261. [
  8262. {
  8263. name: "Totally Unfair",
  8264. height: math.unit(1.8, "mm")
  8265. },
  8266. {
  8267. name: "Lap Rookie",
  8268. height: math.unit(1.4, "feet")
  8269. },
  8270. {
  8271. name: "Normal",
  8272. height: math.unit(5 + 11 / 12, "feet"),
  8273. default: true
  8274. },
  8275. {
  8276. name: "How Did This Happen",
  8277. height: math.unit(80, "miles")
  8278. }
  8279. ]
  8280. ))
  8281. characterMakers.push(() => makeCharacter(
  8282. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8283. {
  8284. front: {
  8285. height: math.unit(7, "feet"),
  8286. weight: math.unit(300, "lb"),
  8287. name: "Front",
  8288. image: {
  8289. source: "./media/characters/pisces/front.svg",
  8290. extra: 2255 / 2115,
  8291. bottom: 0.03
  8292. }
  8293. },
  8294. back: {
  8295. height: math.unit(7, "feet"),
  8296. weight: math.unit(300, "lb"),
  8297. name: "Back",
  8298. image: {
  8299. source: "./media/characters/pisces/back.svg",
  8300. extra: 2146 / 2055,
  8301. bottom: 0.04
  8302. }
  8303. },
  8304. },
  8305. [
  8306. {
  8307. name: "Normal",
  8308. height: math.unit(7, "feet"),
  8309. default: true
  8310. },
  8311. {
  8312. name: "Swimming Pool",
  8313. height: math.unit(12.2, "meters")
  8314. },
  8315. {
  8316. name: "Olympic Swimming Pool",
  8317. height: math.unit(56.3, "meters")
  8318. },
  8319. {
  8320. name: "Lake Superior",
  8321. height: math.unit(93900, "meters")
  8322. },
  8323. {
  8324. name: "Mediterranean Sea",
  8325. height: math.unit(644457, "meters")
  8326. },
  8327. {
  8328. name: "World's Oceans",
  8329. height: math.unit(4567491, "meters")
  8330. },
  8331. ]
  8332. ))
  8333. characterMakers.push(() => makeCharacter(
  8334. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8335. {
  8336. front: {
  8337. height: math.unit(2.3, "meters"),
  8338. weight: math.unit(120, "kg"),
  8339. name: "Front",
  8340. image: {
  8341. source: "./media/characters/zelas/front.svg"
  8342. }
  8343. },
  8344. side: {
  8345. height: math.unit(2.3, "meters"),
  8346. weight: math.unit(120, "kg"),
  8347. name: "Side",
  8348. image: {
  8349. source: "./media/characters/zelas/side.svg"
  8350. }
  8351. },
  8352. back: {
  8353. height: math.unit(2.3, "meters"),
  8354. weight: math.unit(120, "kg"),
  8355. name: "Back",
  8356. image: {
  8357. source: "./media/characters/zelas/back.svg"
  8358. }
  8359. },
  8360. foot: {
  8361. height: math.unit(1.116, "feet"),
  8362. name: "Foot",
  8363. image: {
  8364. source: "./media/characters/zelas/foot.svg"
  8365. }
  8366. },
  8367. },
  8368. [
  8369. {
  8370. name: "Normal",
  8371. height: math.unit(2.3, "meters")
  8372. },
  8373. {
  8374. name: "Macro",
  8375. height: math.unit(30, "meters"),
  8376. default: true
  8377. },
  8378. ]
  8379. ))
  8380. characterMakers.push(() => makeCharacter(
  8381. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8382. {
  8383. front: {
  8384. height: math.unit(1, "inch"),
  8385. weight: math.unit(0.21, "grams"),
  8386. name: "Front",
  8387. image: {
  8388. source: "./media/characters/talbot/front.svg",
  8389. extra: 594 / 544
  8390. }
  8391. },
  8392. },
  8393. [
  8394. {
  8395. name: "Micro",
  8396. height: math.unit(1, "inch"),
  8397. default: true
  8398. },
  8399. ]
  8400. ))
  8401. characterMakers.push(() => makeCharacter(
  8402. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8403. {
  8404. front: {
  8405. height: math.unit(3 + 3 / 12, "feet"),
  8406. weight: math.unit(51.8, "lb"),
  8407. name: "Front",
  8408. image: {
  8409. source: "./media/characters/fliss/front.svg",
  8410. extra: 840 / 640
  8411. }
  8412. },
  8413. },
  8414. [
  8415. {
  8416. name: "Teeny Tiny",
  8417. height: math.unit(1, "mm")
  8418. },
  8419. {
  8420. name: "Small",
  8421. height: math.unit(1, "inch"),
  8422. default: true
  8423. },
  8424. {
  8425. name: "Standard Sylveon",
  8426. height: math.unit(3 + 3 / 12, "feet")
  8427. },
  8428. {
  8429. name: "Large Nuisance",
  8430. height: math.unit(33, "feet")
  8431. },
  8432. {
  8433. name: "City Filler",
  8434. height: math.unit(3000, "feet")
  8435. },
  8436. {
  8437. name: "New Horizon",
  8438. height: math.unit(6000, "miles")
  8439. },
  8440. ]
  8441. ))
  8442. characterMakers.push(() => makeCharacter(
  8443. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8444. {
  8445. front: {
  8446. height: math.unit(5, "cm"),
  8447. weight: math.unit(1.94, "g"),
  8448. name: "Front",
  8449. image: {
  8450. source: "./media/characters/fleta/front.svg",
  8451. extra: 835 / 803
  8452. }
  8453. },
  8454. back: {
  8455. height: math.unit(5, "cm"),
  8456. weight: math.unit(1.94, "g"),
  8457. name: "Back",
  8458. image: {
  8459. source: "./media/characters/fleta/back.svg",
  8460. extra: 835 / 803
  8461. }
  8462. },
  8463. },
  8464. [
  8465. {
  8466. name: "Micro",
  8467. height: math.unit(5, "cm"),
  8468. default: true
  8469. },
  8470. ]
  8471. ))
  8472. characterMakers.push(() => makeCharacter(
  8473. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8474. {
  8475. front: {
  8476. height: math.unit(6, "feet"),
  8477. weight: math.unit(225, "lb"),
  8478. name: "Front",
  8479. image: {
  8480. source: "./media/characters/dominic/front.svg",
  8481. extra: 1770 / 1620,
  8482. bottom: 0.025
  8483. }
  8484. },
  8485. back: {
  8486. height: math.unit(6, "feet"),
  8487. weight: math.unit(225, "lb"),
  8488. name: "Back",
  8489. image: {
  8490. source: "./media/characters/dominic/back.svg",
  8491. extra: 1745 / 1620,
  8492. bottom: 0.065
  8493. }
  8494. },
  8495. },
  8496. [
  8497. {
  8498. name: "Nano",
  8499. height: math.unit(0.1, "mm")
  8500. },
  8501. {
  8502. name: "Micro-",
  8503. height: math.unit(1, "mm")
  8504. },
  8505. {
  8506. name: "Micro",
  8507. height: math.unit(4, "inches")
  8508. },
  8509. {
  8510. name: "Normal",
  8511. height: math.unit(6 + 4 / 12, "feet"),
  8512. default: true
  8513. },
  8514. {
  8515. name: "Macro",
  8516. height: math.unit(115, "feet")
  8517. },
  8518. {
  8519. name: "Macro+",
  8520. height: math.unit(955, "feet")
  8521. },
  8522. {
  8523. name: "Megamacro",
  8524. height: math.unit(8990, "feet")
  8525. },
  8526. {
  8527. name: "Gigmacro",
  8528. height: math.unit(9310, "miles")
  8529. },
  8530. {
  8531. name: "Teramacro",
  8532. height: math.unit(1567005010, "miles")
  8533. },
  8534. {
  8535. name: "Examacro",
  8536. height: math.unit(1425, "parsecs")
  8537. },
  8538. ]
  8539. ))
  8540. characterMakers.push(() => makeCharacter(
  8541. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8542. {
  8543. front: {
  8544. height: math.unit(400, "feet"),
  8545. weight: math.unit(44444444, "lb"),
  8546. name: "Front",
  8547. image: {
  8548. source: "./media/characters/major-colonel/front.svg"
  8549. }
  8550. },
  8551. back: {
  8552. height: math.unit(400, "feet"),
  8553. weight: math.unit(44444444, "lb"),
  8554. name: "Back",
  8555. image: {
  8556. source: "./media/characters/major-colonel/back.svg"
  8557. }
  8558. },
  8559. },
  8560. [
  8561. {
  8562. name: "Macro",
  8563. height: math.unit(400, "feet"),
  8564. default: true
  8565. },
  8566. ]
  8567. ))
  8568. characterMakers.push(() => makeCharacter(
  8569. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8570. {
  8571. catFront: {
  8572. height: math.unit(6, "feet"),
  8573. weight: math.unit(120, "lb"),
  8574. name: "Front (Cat Side)",
  8575. image: {
  8576. source: "./media/characters/axel-lycan/cat-front.svg",
  8577. extra: 430 / 402,
  8578. bottom: 43 / 472.35
  8579. }
  8580. },
  8581. catBack: {
  8582. height: math.unit(6, "feet"),
  8583. weight: math.unit(120, "lb"),
  8584. name: "Back (Cat Side)",
  8585. image: {
  8586. source: "./media/characters/axel-lycan/cat-back.svg",
  8587. extra: 447 / 419,
  8588. bottom: 23.3 / 469
  8589. }
  8590. },
  8591. wolfFront: {
  8592. height: math.unit(6, "feet"),
  8593. weight: math.unit(120, "lb"),
  8594. name: "Front (Wolf Side)",
  8595. image: {
  8596. source: "./media/characters/axel-lycan/wolf-front.svg",
  8597. extra: 485 / 456,
  8598. bottom: 19 / 504
  8599. }
  8600. },
  8601. wolfBack: {
  8602. height: math.unit(6, "feet"),
  8603. weight: math.unit(120, "lb"),
  8604. name: "Back (Wolf Side)",
  8605. image: {
  8606. source: "./media/characters/axel-lycan/wolf-back.svg",
  8607. extra: 475 / 438,
  8608. bottom: 39.2 / 514
  8609. }
  8610. },
  8611. },
  8612. [
  8613. {
  8614. name: "Macro",
  8615. height: math.unit(1, "km"),
  8616. default: true
  8617. },
  8618. ]
  8619. ))
  8620. characterMakers.push(() => makeCharacter(
  8621. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8622. {
  8623. front: {
  8624. height: math.unit(5 + 9 / 12, "feet"),
  8625. weight: math.unit(175, "lb"),
  8626. name: "Front",
  8627. image: {
  8628. source: "./media/characters/vanrel-hyena/front.svg",
  8629. extra: 1086 / 1010,
  8630. bottom: 0.04
  8631. }
  8632. },
  8633. },
  8634. [
  8635. {
  8636. name: "Normal",
  8637. height: math.unit(5 + 9 / 12, "feet"),
  8638. default: true
  8639. },
  8640. ]
  8641. ))
  8642. characterMakers.push(() => makeCharacter(
  8643. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8644. {
  8645. front: {
  8646. height: math.unit(6, "feet"),
  8647. weight: math.unit(103, "lb"),
  8648. name: "Front",
  8649. image: {
  8650. source: "./media/characters/abbott-absol/front.svg",
  8651. extra: 2010 / 1842
  8652. }
  8653. },
  8654. },
  8655. [
  8656. {
  8657. name: "Megamicro",
  8658. height: math.unit(0.1, "mm")
  8659. },
  8660. {
  8661. name: "Micro",
  8662. height: math.unit(1, "inch")
  8663. },
  8664. {
  8665. name: "Normal",
  8666. height: math.unit(6, "feet"),
  8667. default: true
  8668. },
  8669. ]
  8670. ))
  8671. characterMakers.push(() => makeCharacter(
  8672. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8673. {
  8674. front: {
  8675. height: math.unit(6, "feet"),
  8676. weight: math.unit(264, "lb"),
  8677. name: "Front",
  8678. image: {
  8679. source: "./media/characters/hector/front.svg",
  8680. extra: 2280 / 2130,
  8681. bottom: 0.07
  8682. }
  8683. },
  8684. },
  8685. [
  8686. {
  8687. name: "Normal",
  8688. height: math.unit(12.25, "foot"),
  8689. default: true
  8690. },
  8691. {
  8692. name: "Macro",
  8693. height: math.unit(160, "feet")
  8694. },
  8695. ]
  8696. ))
  8697. characterMakers.push(() => makeCharacter(
  8698. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8699. {
  8700. front: {
  8701. height: math.unit(6, "feet"),
  8702. weight: math.unit(150, "lb"),
  8703. name: "Front",
  8704. image: {
  8705. source: "./media/characters/sal/front.svg",
  8706. extra: 1846 / 1699,
  8707. bottom: 0.04
  8708. }
  8709. },
  8710. },
  8711. [
  8712. {
  8713. name: "Megamacro",
  8714. height: math.unit(10, "miles"),
  8715. default: true
  8716. },
  8717. ]
  8718. ))
  8719. characterMakers.push(() => makeCharacter(
  8720. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8721. {
  8722. front: {
  8723. height: math.unit(3, "meters"),
  8724. weight: math.unit(450, "kg"),
  8725. name: "front",
  8726. image: {
  8727. source: "./media/characters/ranger/front.svg",
  8728. extra: 2401 / 2243,
  8729. bottom: 0.05
  8730. }
  8731. },
  8732. },
  8733. [
  8734. {
  8735. name: "Normal",
  8736. height: math.unit(3, "meters"),
  8737. default: true
  8738. },
  8739. ]
  8740. ))
  8741. characterMakers.push(() => makeCharacter(
  8742. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8743. {
  8744. front: {
  8745. height: math.unit(14, "feet"),
  8746. weight: math.unit(800, "kg"),
  8747. name: "Front",
  8748. image: {
  8749. source: "./media/characters/theresa/front.svg",
  8750. extra: 3575 / 3346,
  8751. bottom: 0.03
  8752. }
  8753. },
  8754. },
  8755. [
  8756. {
  8757. name: "Normal",
  8758. height: math.unit(14, "feet"),
  8759. default: true
  8760. },
  8761. ]
  8762. ))
  8763. characterMakers.push(() => makeCharacter(
  8764. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8765. {
  8766. front: {
  8767. height: math.unit(6, "feet"),
  8768. weight: math.unit(3, "kg"),
  8769. name: "Front",
  8770. image: {
  8771. source: "./media/characters/ine/front.svg",
  8772. extra: 678 / 539,
  8773. bottom: 0.023
  8774. }
  8775. },
  8776. },
  8777. [
  8778. {
  8779. name: "Normal",
  8780. height: math.unit(2.265, "feet"),
  8781. default: true
  8782. },
  8783. ]
  8784. ))
  8785. characterMakers.push(() => makeCharacter(
  8786. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8787. {
  8788. front: {
  8789. height: math.unit(5, "feet"),
  8790. weight: math.unit(30, "kg"),
  8791. name: "Front",
  8792. image: {
  8793. source: "./media/characters/vial/front.svg",
  8794. extra: 1365 / 1277,
  8795. bottom: 0.04
  8796. }
  8797. },
  8798. },
  8799. [
  8800. {
  8801. name: "Normal",
  8802. height: math.unit(5, "feet"),
  8803. default: true
  8804. },
  8805. ]
  8806. ))
  8807. characterMakers.push(() => makeCharacter(
  8808. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8809. {
  8810. side: {
  8811. height: math.unit(3.4, "meters"),
  8812. weight: math.unit(1000, "lb"),
  8813. name: "Side",
  8814. image: {
  8815. source: "./media/characters/rovoska/side.svg",
  8816. extra: 4403 / 1515
  8817. }
  8818. },
  8819. },
  8820. [
  8821. {
  8822. name: "Normal",
  8823. height: math.unit(3.4, "meters"),
  8824. default: true
  8825. },
  8826. ]
  8827. ))
  8828. characterMakers.push(() => makeCharacter(
  8829. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8830. {
  8831. front: {
  8832. height: math.unit(8, "feet"),
  8833. weight: math.unit(315, "lb"),
  8834. name: "Front",
  8835. image: {
  8836. source: "./media/characters/gunner-rotthbauer/front.svg"
  8837. }
  8838. },
  8839. back: {
  8840. height: math.unit(8, "feet"),
  8841. weight: math.unit(315, "lb"),
  8842. name: "Back",
  8843. image: {
  8844. source: "./media/characters/gunner-rotthbauer/back.svg"
  8845. }
  8846. },
  8847. },
  8848. [
  8849. {
  8850. name: "Micro",
  8851. height: math.unit(3.5, "inches")
  8852. },
  8853. {
  8854. name: "Normal",
  8855. height: math.unit(8, "feet"),
  8856. default: true
  8857. },
  8858. {
  8859. name: "Macro",
  8860. height: math.unit(250, "feet")
  8861. },
  8862. {
  8863. name: "Megamacro",
  8864. height: math.unit(1, "AU")
  8865. },
  8866. ]
  8867. ))
  8868. characterMakers.push(() => makeCharacter(
  8869. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8870. {
  8871. front: {
  8872. height: math.unit(5 + 5 / 12, "feet"),
  8873. weight: math.unit(140, "lb"),
  8874. name: "Front",
  8875. image: {
  8876. source: "./media/characters/allatia/front.svg",
  8877. extra: 1227 / 1180,
  8878. bottom: 0.027
  8879. }
  8880. },
  8881. },
  8882. [
  8883. {
  8884. name: "Normal",
  8885. height: math.unit(5 + 5 / 12, "feet")
  8886. },
  8887. {
  8888. name: "Macro",
  8889. height: math.unit(250, "feet"),
  8890. default: true
  8891. },
  8892. {
  8893. name: "Megamacro",
  8894. height: math.unit(8, "miles")
  8895. }
  8896. ]
  8897. ))
  8898. characterMakers.push(() => makeCharacter(
  8899. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  8900. {
  8901. front: {
  8902. height: math.unit(6, "feet"),
  8903. weight: math.unit(120, "lb"),
  8904. name: "Front",
  8905. image: {
  8906. source: "./media/characters/tene/front.svg",
  8907. extra: 1728 / 1578,
  8908. bottom: 0.022
  8909. }
  8910. },
  8911. stomping: {
  8912. height: math.unit(2.025, "meters"),
  8913. weight: math.unit(120, "lb"),
  8914. name: "Stomping",
  8915. image: {
  8916. source: "./media/characters/tene/stomping.svg",
  8917. extra: 938 / 873,
  8918. bottom: 0.01
  8919. }
  8920. },
  8921. sitting: {
  8922. height: math.unit(1, "meter"),
  8923. weight: math.unit(120, "lb"),
  8924. name: "Sitting",
  8925. image: {
  8926. source: "./media/characters/tene/sitting.svg",
  8927. extra: 437 / 415,
  8928. bottom: 0.1
  8929. }
  8930. },
  8931. feral: {
  8932. height: math.unit(3.9, "feet"),
  8933. weight: math.unit(250, "lb"),
  8934. name: "Feral",
  8935. image: {
  8936. source: "./media/characters/tene/feral.svg",
  8937. extra: 717 / 458,
  8938. bottom: 0.179
  8939. }
  8940. },
  8941. },
  8942. [
  8943. {
  8944. name: "Normal",
  8945. height: math.unit(6, "feet")
  8946. },
  8947. {
  8948. name: "Macro",
  8949. height: math.unit(300, "feet"),
  8950. default: true
  8951. },
  8952. {
  8953. name: "Megamacro",
  8954. height: math.unit(5, "miles")
  8955. },
  8956. ]
  8957. ))
  8958. characterMakers.push(() => makeCharacter(
  8959. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  8960. {
  8961. side: {
  8962. height: math.unit(6, "feet"),
  8963. name: "Side",
  8964. image: {
  8965. source: "./media/characters/evander/side.svg",
  8966. extra: 877 / 477
  8967. }
  8968. },
  8969. },
  8970. [
  8971. {
  8972. name: "Normal",
  8973. height: math.unit(0.83, "meters"),
  8974. default: true
  8975. },
  8976. ]
  8977. ))
  8978. characterMakers.push(() => makeCharacter(
  8979. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  8980. {
  8981. front: {
  8982. height: math.unit(12, "feet"),
  8983. weight: math.unit(1000, "lb"),
  8984. name: "Front",
  8985. image: {
  8986. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  8987. extra: 1762 / 1611
  8988. }
  8989. },
  8990. back: {
  8991. height: math.unit(12, "feet"),
  8992. weight: math.unit(1000, "lb"),
  8993. name: "Back",
  8994. image: {
  8995. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  8996. extra: 1762 / 1611
  8997. }
  8998. },
  8999. },
  9000. [
  9001. {
  9002. name: "Normal",
  9003. height: math.unit(12, "feet"),
  9004. default: true
  9005. },
  9006. {
  9007. name: "Kaiju",
  9008. height: math.unit(150, "feet")
  9009. },
  9010. ]
  9011. ))
  9012. characterMakers.push(() => makeCharacter(
  9013. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9014. {
  9015. front: {
  9016. height: math.unit(6, "feet"),
  9017. weight: math.unit(150, "lb"),
  9018. name: "Front",
  9019. image: {
  9020. source: "./media/characters/zero-alurus/front.svg"
  9021. }
  9022. },
  9023. back: {
  9024. height: math.unit(6, "feet"),
  9025. weight: math.unit(150, "lb"),
  9026. name: "Back",
  9027. image: {
  9028. source: "./media/characters/zero-alurus/back.svg"
  9029. }
  9030. },
  9031. },
  9032. [
  9033. {
  9034. name: "Normal",
  9035. height: math.unit(5 + 10 / 12, "feet")
  9036. },
  9037. {
  9038. name: "Macro",
  9039. height: math.unit(60, "feet"),
  9040. default: true
  9041. },
  9042. {
  9043. name: "Macro+",
  9044. height: math.unit(450, "feet")
  9045. },
  9046. ]
  9047. ))
  9048. characterMakers.push(() => makeCharacter(
  9049. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9050. {
  9051. front: {
  9052. height: math.unit(6, "feet"),
  9053. weight: math.unit(200, "lb"),
  9054. name: "Front",
  9055. image: {
  9056. source: "./media/characters/mega-shi/front.svg",
  9057. extra: 1279 / 1250,
  9058. bottom: 0.02
  9059. }
  9060. },
  9061. back: {
  9062. height: math.unit(6, "feet"),
  9063. weight: math.unit(200, "lb"),
  9064. name: "Back",
  9065. image: {
  9066. source: "./media/characters/mega-shi/back.svg",
  9067. extra: 1279 / 1250,
  9068. bottom: 0.02
  9069. }
  9070. },
  9071. },
  9072. [
  9073. {
  9074. name: "Micro",
  9075. height: math.unit(16 + 6 / 12, "feet")
  9076. },
  9077. {
  9078. name: "Third Dimension",
  9079. height: math.unit(40, "meters")
  9080. },
  9081. {
  9082. name: "Normal",
  9083. height: math.unit(660, "feet"),
  9084. default: true
  9085. },
  9086. {
  9087. name: "Megamacro",
  9088. height: math.unit(10, "miles")
  9089. },
  9090. {
  9091. name: "Planetary Launch",
  9092. height: math.unit(500, "miles")
  9093. },
  9094. {
  9095. name: "Interstellar",
  9096. height: math.unit(1e9, "miles")
  9097. },
  9098. {
  9099. name: "Leaving the Universe",
  9100. height: math.unit(1, "gigaparsec")
  9101. },
  9102. {
  9103. name: "Travelling Universes",
  9104. height: math.unit(30e15, "parsecs")
  9105. },
  9106. ]
  9107. ))
  9108. characterMakers.push(() => makeCharacter(
  9109. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9110. {
  9111. front: {
  9112. height: math.unit(6, "feet"),
  9113. weight: math.unit(150, "lb"),
  9114. name: "Front",
  9115. image: {
  9116. source: "./media/characters/odyssey/front.svg",
  9117. extra: 1782 / 1582,
  9118. bottom: 0.01
  9119. }
  9120. },
  9121. side: {
  9122. height: math.unit(5.7, "feet"),
  9123. weight: math.unit(140, "lb"),
  9124. name: "Side",
  9125. image: {
  9126. source: "./media/characters/odyssey/side.svg",
  9127. extra: 6462 / 5700
  9128. }
  9129. },
  9130. },
  9131. [
  9132. {
  9133. name: "Normal",
  9134. height: math.unit(5 + 4 / 12, "feet")
  9135. },
  9136. {
  9137. name: "Macro",
  9138. height: math.unit(1, "km")
  9139. },
  9140. {
  9141. name: "Megamacro",
  9142. height: math.unit(3000, "km")
  9143. },
  9144. {
  9145. name: "Gigamacro",
  9146. height: math.unit(1, "AU"),
  9147. default: true
  9148. },
  9149. {
  9150. name: "Omniversal",
  9151. height: math.unit(100e14, "lightyears")
  9152. },
  9153. ]
  9154. ))
  9155. characterMakers.push(() => makeCharacter(
  9156. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9157. {
  9158. front: {
  9159. height: math.unit(6, "feet"),
  9160. weight: math.unit(300, "lb"),
  9161. name: "Front",
  9162. image: {
  9163. source: "./media/characters/mekuto/front.svg",
  9164. extra: 921 / 832,
  9165. bottom: 0.03
  9166. }
  9167. },
  9168. hand: {
  9169. height: math.unit(6 / 10.24, "feet"),
  9170. name: "Hand",
  9171. image: {
  9172. source: "./media/characters/mekuto/hand.svg"
  9173. }
  9174. },
  9175. foot: {
  9176. height: math.unit(6 / 5.05, "feet"),
  9177. name: "Foot",
  9178. image: {
  9179. source: "./media/characters/mekuto/foot.svg"
  9180. }
  9181. },
  9182. },
  9183. [
  9184. {
  9185. name: "Minimicro",
  9186. height: math.unit(0.2, "inches")
  9187. },
  9188. {
  9189. name: "Micro",
  9190. height: math.unit(1.5, "inches")
  9191. },
  9192. {
  9193. name: "Normal",
  9194. height: math.unit(5 + 11 / 12, "feet"),
  9195. default: true
  9196. },
  9197. {
  9198. name: "Minimacro",
  9199. height: math.unit(17 + 9 / 12, "feet")
  9200. },
  9201. {
  9202. name: "Macro",
  9203. height: math.unit(177.5, "feet")
  9204. },
  9205. {
  9206. name: "Megamacro",
  9207. height: math.unit(152, "miles")
  9208. },
  9209. ]
  9210. ))
  9211. characterMakers.push(() => makeCharacter(
  9212. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9213. {
  9214. front: {
  9215. height: math.unit(6.5, "inches"),
  9216. weight: math.unit(13, "oz"),
  9217. name: "Front",
  9218. image: {
  9219. source: "./media/characters/dafydd-tomos/front.svg",
  9220. extra: 2990 / 2603,
  9221. bottom: 0.03
  9222. }
  9223. },
  9224. },
  9225. [
  9226. {
  9227. name: "Micro",
  9228. height: math.unit(6.5, "inches"),
  9229. default: true
  9230. },
  9231. ]
  9232. ))
  9233. characterMakers.push(() => makeCharacter(
  9234. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9235. {
  9236. front: {
  9237. height: math.unit(6, "feet"),
  9238. weight: math.unit(150, "lb"),
  9239. name: "Front",
  9240. image: {
  9241. source: "./media/characters/splinter/front.svg",
  9242. extra: 2990 / 2882,
  9243. bottom: 0.04
  9244. }
  9245. },
  9246. back: {
  9247. height: math.unit(6, "feet"),
  9248. weight: math.unit(150, "lb"),
  9249. name: "Back",
  9250. image: {
  9251. source: "./media/characters/splinter/back.svg",
  9252. extra: 2990 / 2882,
  9253. bottom: 0.04
  9254. }
  9255. },
  9256. },
  9257. [
  9258. {
  9259. name: "Normal",
  9260. height: math.unit(6, "feet")
  9261. },
  9262. {
  9263. name: "Macro",
  9264. height: math.unit(230, "meters"),
  9265. default: true
  9266. },
  9267. ]
  9268. ))
  9269. characterMakers.push(() => makeCharacter(
  9270. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9271. {
  9272. front: {
  9273. height: math.unit(4 + 10 / 12, "feet"),
  9274. weight: math.unit(480, "lb"),
  9275. name: "Front",
  9276. image: {
  9277. source: "./media/characters/snow-gabumon/front.svg",
  9278. extra: 1140 / 963,
  9279. bottom: 0.058
  9280. }
  9281. },
  9282. back: {
  9283. height: math.unit(4 + 10 / 12, "feet"),
  9284. weight: math.unit(480, "lb"),
  9285. name: "Back",
  9286. image: {
  9287. source: "./media/characters/snow-gabumon/back.svg",
  9288. extra: 1115 / 962,
  9289. bottom: 0.041
  9290. }
  9291. },
  9292. frontUndresed: {
  9293. height: math.unit(4 + 10 / 12, "feet"),
  9294. weight: math.unit(480, "lb"),
  9295. name: "Front (Undressed)",
  9296. image: {
  9297. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9298. extra: 1061 / 960,
  9299. bottom: 0.045
  9300. }
  9301. },
  9302. },
  9303. [
  9304. {
  9305. name: "Micro",
  9306. height: math.unit(1, "inch")
  9307. },
  9308. {
  9309. name: "Normal",
  9310. height: math.unit(4 + 10 / 12, "feet"),
  9311. default: true
  9312. },
  9313. {
  9314. name: "Macro",
  9315. height: math.unit(200, "feet")
  9316. },
  9317. {
  9318. name: "Megamacro",
  9319. height: math.unit(120, "miles")
  9320. },
  9321. {
  9322. name: "Gigamacro",
  9323. height: math.unit(9800, "miles")
  9324. },
  9325. ]
  9326. ))
  9327. characterMakers.push(() => makeCharacter(
  9328. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9329. {
  9330. front: {
  9331. height: math.unit(1.7, "meters"),
  9332. weight: math.unit(140, "lb"),
  9333. name: "Front",
  9334. image: {
  9335. source: "./media/characters/moody/front.svg",
  9336. extra: 3226 / 3007,
  9337. bottom: 0.087
  9338. }
  9339. },
  9340. },
  9341. [
  9342. {
  9343. name: "Micro",
  9344. height: math.unit(1, "mm")
  9345. },
  9346. {
  9347. name: "Normal",
  9348. height: math.unit(1.7, "meters"),
  9349. default: true
  9350. },
  9351. {
  9352. name: "Macro",
  9353. height: math.unit(80, "meters")
  9354. },
  9355. {
  9356. name: "Macro+",
  9357. height: math.unit(500, "meters")
  9358. },
  9359. ]
  9360. ))
  9361. characterMakers.push(() => makeCharacter(
  9362. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9363. {
  9364. front: {
  9365. height: math.unit(6, "feet"),
  9366. weight: math.unit(150, "lb"),
  9367. name: "Front",
  9368. image: {
  9369. source: "./media/characters/zyas/front.svg",
  9370. extra: 1180 / 1120,
  9371. bottom: 0.045
  9372. }
  9373. },
  9374. },
  9375. [
  9376. {
  9377. name: "Normal",
  9378. height: math.unit(10, "feet"),
  9379. default: true
  9380. },
  9381. {
  9382. name: "Macro",
  9383. height: math.unit(500, "feet")
  9384. },
  9385. {
  9386. name: "Megamacro",
  9387. height: math.unit(5, "miles")
  9388. },
  9389. {
  9390. name: "Teramacro",
  9391. height: math.unit(150000, "miles")
  9392. },
  9393. ]
  9394. ))
  9395. characterMakers.push(() => makeCharacter(
  9396. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9397. {
  9398. front: {
  9399. height: math.unit(6, "feet"),
  9400. weight: math.unit(150, "lb"),
  9401. name: "Front",
  9402. image: {
  9403. source: "./media/characters/cuon/front.svg",
  9404. extra: 1390 / 1320,
  9405. bottom: 0.008
  9406. }
  9407. },
  9408. },
  9409. [
  9410. {
  9411. name: "Micro",
  9412. height: math.unit(3, "inches")
  9413. },
  9414. {
  9415. name: "Normal",
  9416. height: math.unit(18 + 9 / 12, "feet"),
  9417. default: true
  9418. },
  9419. {
  9420. name: "Macro",
  9421. height: math.unit(360, "feet")
  9422. },
  9423. {
  9424. name: "Megamacro",
  9425. height: math.unit(360, "miles")
  9426. },
  9427. ]
  9428. ))
  9429. characterMakers.push(() => makeCharacter(
  9430. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9431. {
  9432. front: {
  9433. height: math.unit(2.4, "meters"),
  9434. weight: math.unit(70, "kg"),
  9435. name: "Front",
  9436. image: {
  9437. source: "./media/characters/nyanuxk/front.svg",
  9438. extra: 1172 / 1084,
  9439. bottom: 0.065
  9440. }
  9441. },
  9442. side: {
  9443. height: math.unit(2.4, "meters"),
  9444. weight: math.unit(70, "kg"),
  9445. name: "Side",
  9446. image: {
  9447. source: "./media/characters/nyanuxk/side.svg",
  9448. extra: 1190 / 1132,
  9449. bottom: 0.007
  9450. }
  9451. },
  9452. back: {
  9453. height: math.unit(2.4, "meters"),
  9454. weight: math.unit(70, "kg"),
  9455. name: "Back",
  9456. image: {
  9457. source: "./media/characters/nyanuxk/back.svg",
  9458. extra: 1200 / 1141,
  9459. bottom: 0.015
  9460. }
  9461. },
  9462. foot: {
  9463. height: math.unit(0.52, "meters"),
  9464. name: "Foot",
  9465. image: {
  9466. source: "./media/characters/nyanuxk/foot.svg"
  9467. }
  9468. },
  9469. },
  9470. [
  9471. {
  9472. name: "Micro",
  9473. height: math.unit(2, "cm")
  9474. },
  9475. {
  9476. name: "Normal",
  9477. height: math.unit(2.4, "meters"),
  9478. default: true
  9479. },
  9480. {
  9481. name: "Smaller Macro",
  9482. height: math.unit(120, "meters")
  9483. },
  9484. {
  9485. name: "Bigger Macro",
  9486. height: math.unit(1.2, "km")
  9487. },
  9488. {
  9489. name: "Megamacro",
  9490. height: math.unit(15, "kilometers")
  9491. },
  9492. {
  9493. name: "Gigamacro",
  9494. height: math.unit(2000, "km")
  9495. },
  9496. {
  9497. name: "Teramacro",
  9498. height: math.unit(500000, "km")
  9499. },
  9500. ]
  9501. ))
  9502. characterMakers.push(() => makeCharacter(
  9503. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9504. {
  9505. side: {
  9506. height: math.unit(6, "feet"),
  9507. name: "Side",
  9508. image: {
  9509. source: "./media/characters/ailbhe/side.svg",
  9510. extra: 757 / 464,
  9511. bottom: 0.041
  9512. }
  9513. },
  9514. },
  9515. [
  9516. {
  9517. name: "Normal",
  9518. height: math.unit(1.07, "meters"),
  9519. default: true
  9520. },
  9521. ]
  9522. ))
  9523. characterMakers.push(() => makeCharacter(
  9524. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9525. {
  9526. front: {
  9527. height: math.unit(6, "feet"),
  9528. weight: math.unit(120, "kg"),
  9529. name: "Front",
  9530. image: {
  9531. source: "./media/characters/zevulfius/front.svg",
  9532. extra: 965 / 903
  9533. }
  9534. },
  9535. side: {
  9536. height: math.unit(6, "feet"),
  9537. weight: math.unit(120, "kg"),
  9538. name: "Side",
  9539. image: {
  9540. source: "./media/characters/zevulfius/side.svg",
  9541. extra: 939 / 900
  9542. }
  9543. },
  9544. back: {
  9545. height: math.unit(6, "feet"),
  9546. weight: math.unit(120, "kg"),
  9547. name: "Back",
  9548. image: {
  9549. source: "./media/characters/zevulfius/back.svg",
  9550. extra: 918 / 854,
  9551. bottom: 0.005
  9552. }
  9553. },
  9554. foot: {
  9555. height: math.unit(6 / 3.72, "feet"),
  9556. name: "Foot",
  9557. image: {
  9558. source: "./media/characters/zevulfius/foot.svg"
  9559. }
  9560. },
  9561. },
  9562. [
  9563. {
  9564. name: "Macro",
  9565. height: math.unit(750, "meters")
  9566. },
  9567. {
  9568. name: "Megamacro",
  9569. height: math.unit(20, "km"),
  9570. default: true
  9571. },
  9572. {
  9573. name: "Gigamacro",
  9574. height: math.unit(2000, "km")
  9575. },
  9576. {
  9577. name: "Teramacro",
  9578. height: math.unit(250000, "km")
  9579. },
  9580. ]
  9581. ))
  9582. characterMakers.push(() => makeCharacter(
  9583. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9584. {
  9585. front: {
  9586. height: math.unit(100, "feet"),
  9587. weight: math.unit(350, "kg"),
  9588. name: "Front",
  9589. image: {
  9590. source: "./media/characters/rikes/front.svg",
  9591. extra: 1565 / 1483,
  9592. bottom: 0.017
  9593. }
  9594. },
  9595. },
  9596. [
  9597. {
  9598. name: "Macro",
  9599. height: math.unit(100, "feet"),
  9600. default: true
  9601. },
  9602. ]
  9603. ))
  9604. characterMakers.push(() => makeCharacter(
  9605. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9606. {
  9607. anthro: {
  9608. height: math.unit(8, "feet"),
  9609. weight: math.unit(120, "kg"),
  9610. name: "Anthro",
  9611. image: {
  9612. source: "./media/characters/adam-silver-mane/anthro.svg",
  9613. extra: 5743 / 5339,
  9614. bottom: 0.07
  9615. }
  9616. },
  9617. taur: {
  9618. height: math.unit(16, "feet"),
  9619. weight: math.unit(1500, "kg"),
  9620. name: "Taur",
  9621. image: {
  9622. source: "./media/characters/adam-silver-mane/taur.svg",
  9623. extra: 1713 / 1571,
  9624. bottom: 0.01
  9625. }
  9626. },
  9627. },
  9628. [
  9629. {
  9630. name: "Normal",
  9631. height: math.unit(8, "feet")
  9632. },
  9633. {
  9634. name: "Minimacro",
  9635. height: math.unit(80, "feet")
  9636. },
  9637. {
  9638. name: "Macro",
  9639. height: math.unit(800, "feet"),
  9640. default: true
  9641. },
  9642. {
  9643. name: "Megamacro",
  9644. height: math.unit(8000, "feet")
  9645. },
  9646. {
  9647. name: "Gigamacro",
  9648. height: math.unit(800, "miles")
  9649. },
  9650. {
  9651. name: "Teramacro",
  9652. height: math.unit(80000, "miles")
  9653. },
  9654. {
  9655. name: "Celestial",
  9656. height: math.unit(8e6, "miles")
  9657. },
  9658. {
  9659. name: "Star Dragon",
  9660. height: math.unit(800000, "parsecs")
  9661. },
  9662. {
  9663. name: "Godly",
  9664. height: math.unit(800, "teraparsecs")
  9665. },
  9666. ]
  9667. ))
  9668. characterMakers.push(() => makeCharacter(
  9669. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9670. {
  9671. front: {
  9672. height: math.unit(6, "feet"),
  9673. weight: math.unit(150, "lb"),
  9674. name: "Front",
  9675. image: {
  9676. source: "./media/characters/ky'owin/front.svg",
  9677. extra: 3888 / 3068,
  9678. bottom: 0.015
  9679. }
  9680. },
  9681. },
  9682. [
  9683. {
  9684. name: "Normal",
  9685. height: math.unit(6 + 8 / 12, "feet")
  9686. },
  9687. {
  9688. name: "Large",
  9689. height: math.unit(68, "feet")
  9690. },
  9691. {
  9692. name: "Macro",
  9693. height: math.unit(132, "feet")
  9694. },
  9695. {
  9696. name: "Macro+",
  9697. height: math.unit(340, "feet")
  9698. },
  9699. {
  9700. name: "Macro++",
  9701. height: math.unit(680, "feet"),
  9702. default: true
  9703. },
  9704. {
  9705. name: "Megamacro",
  9706. height: math.unit(1, "mile")
  9707. },
  9708. {
  9709. name: "Megamacro+",
  9710. height: math.unit(10, "miles")
  9711. },
  9712. ]
  9713. ))
  9714. characterMakers.push(() => makeCharacter(
  9715. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9716. {
  9717. front: {
  9718. height: math.unit(4, "feet"),
  9719. weight: math.unit(50, "lb"),
  9720. name: "Front",
  9721. image: {
  9722. source: "./media/characters/mal/front.svg",
  9723. extra: 785 / 724,
  9724. bottom: 0.07
  9725. }
  9726. },
  9727. },
  9728. [
  9729. {
  9730. name: "Micro",
  9731. height: math.unit(4, "inches")
  9732. },
  9733. {
  9734. name: "Normal",
  9735. height: math.unit(4, "feet"),
  9736. default: true
  9737. },
  9738. {
  9739. name: "Macro",
  9740. height: math.unit(200, "feet")
  9741. },
  9742. ]
  9743. ))
  9744. characterMakers.push(() => makeCharacter(
  9745. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9746. {
  9747. front: {
  9748. height: math.unit(6, "feet"),
  9749. weight: math.unit(150, "lb"),
  9750. name: "Front",
  9751. image: {
  9752. source: "./media/characters/jordan-deware/front.svg",
  9753. extra: 1191 / 1012
  9754. }
  9755. },
  9756. },
  9757. [
  9758. {
  9759. name: "Nano",
  9760. height: math.unit(0.01, "mm")
  9761. },
  9762. {
  9763. name: "Minimicro",
  9764. height: math.unit(1, "mm")
  9765. },
  9766. {
  9767. name: "Micro",
  9768. height: math.unit(0.5, "inches")
  9769. },
  9770. {
  9771. name: "Normal",
  9772. height: math.unit(4, "feet"),
  9773. default: true
  9774. },
  9775. {
  9776. name: "Minimacro",
  9777. height: math.unit(40, "meters")
  9778. },
  9779. {
  9780. name: "Small Macro",
  9781. height: math.unit(400, "meters")
  9782. },
  9783. {
  9784. name: "Macro",
  9785. height: math.unit(4, "miles")
  9786. },
  9787. {
  9788. name: "Megamacro",
  9789. height: math.unit(40, "miles")
  9790. },
  9791. {
  9792. name: "Megamacro+",
  9793. height: math.unit(400, "miles")
  9794. },
  9795. {
  9796. name: "Gigamacro",
  9797. height: math.unit(400000, "miles")
  9798. },
  9799. ]
  9800. ))
  9801. characterMakers.push(() => makeCharacter(
  9802. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9803. {
  9804. side: {
  9805. height: math.unit(6, "feet"),
  9806. weight: math.unit(150, "lb"),
  9807. name: "Side",
  9808. image: {
  9809. source: "./media/characters/kimiko/side.svg",
  9810. extra: 600 / 358
  9811. }
  9812. },
  9813. },
  9814. [
  9815. {
  9816. name: "Normal",
  9817. height: math.unit(15, "feet"),
  9818. default: true
  9819. },
  9820. {
  9821. name: "Macro",
  9822. height: math.unit(220, "feet")
  9823. },
  9824. {
  9825. name: "Macro+",
  9826. height: math.unit(1450, "feet")
  9827. },
  9828. {
  9829. name: "Megamacro",
  9830. height: math.unit(11500, "feet")
  9831. },
  9832. {
  9833. name: "Gigamacro",
  9834. height: math.unit(9500, "miles")
  9835. },
  9836. {
  9837. name: "Teramacro",
  9838. height: math.unit(2208005005, "miles")
  9839. },
  9840. {
  9841. name: "Examacro",
  9842. height: math.unit(2750, "parsecs")
  9843. },
  9844. {
  9845. name: "Zettamacro",
  9846. height: math.unit(101500, "parsecs")
  9847. },
  9848. ]
  9849. ))
  9850. characterMakers.push(() => makeCharacter(
  9851. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9852. {
  9853. front: {
  9854. height: math.unit(6, "feet"),
  9855. weight: math.unit(70, "kg"),
  9856. name: "Front",
  9857. image: {
  9858. source: "./media/characters/andrew-sleepy/front.svg"
  9859. }
  9860. },
  9861. side: {
  9862. height: math.unit(6, "feet"),
  9863. weight: math.unit(70, "kg"),
  9864. name: "Side",
  9865. image: {
  9866. source: "./media/characters/andrew-sleepy/side.svg"
  9867. }
  9868. },
  9869. },
  9870. [
  9871. {
  9872. name: "Micro",
  9873. height: math.unit(1, "mm"),
  9874. default: true
  9875. },
  9876. ]
  9877. ))
  9878. characterMakers.push(() => makeCharacter(
  9879. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  9880. {
  9881. front: {
  9882. height: math.unit(6, "feet"),
  9883. weight: math.unit(150, "lb"),
  9884. name: "Front",
  9885. image: {
  9886. source: "./media/characters/judio/front.svg",
  9887. extra: 1258 / 1110
  9888. }
  9889. },
  9890. },
  9891. [
  9892. {
  9893. name: "Normal",
  9894. height: math.unit(5 + 6 / 12, "feet")
  9895. },
  9896. {
  9897. name: "Macro",
  9898. height: math.unit(1000, "feet"),
  9899. default: true
  9900. },
  9901. {
  9902. name: "Megamacro",
  9903. height: math.unit(10, "miles")
  9904. },
  9905. ]
  9906. ))
  9907. characterMakers.push(() => makeCharacter(
  9908. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  9909. {
  9910. front: {
  9911. height: math.unit(6, "feet"),
  9912. weight: math.unit(68, "kg"),
  9913. name: "Front",
  9914. image: {
  9915. source: "./media/characters/nomaxice/front.svg",
  9916. extra: 1498 / 1073,
  9917. bottom: 0.075
  9918. }
  9919. },
  9920. foot: {
  9921. height: math.unit(1.1, "feet"),
  9922. name: "Foot",
  9923. image: {
  9924. source: "./media/characters/nomaxice/foot.svg"
  9925. }
  9926. },
  9927. },
  9928. [
  9929. {
  9930. name: "Micro",
  9931. height: math.unit(8, "cm")
  9932. },
  9933. {
  9934. name: "Norm",
  9935. height: math.unit(1.82, "m")
  9936. },
  9937. {
  9938. name: "Norm+",
  9939. height: math.unit(8.8, "feet")
  9940. },
  9941. {
  9942. name: "Big",
  9943. height: math.unit(8, "meters"),
  9944. default: true
  9945. },
  9946. {
  9947. name: "Macro",
  9948. height: math.unit(18, "meters")
  9949. },
  9950. {
  9951. name: "Macro+",
  9952. height: math.unit(88, "meters")
  9953. },
  9954. ]
  9955. ))
  9956. characterMakers.push(() => makeCharacter(
  9957. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  9958. {
  9959. front: {
  9960. height: math.unit(12, "feet"),
  9961. weight: math.unit(1.5, "tons"),
  9962. name: "Front",
  9963. image: {
  9964. source: "./media/characters/dydros/front.svg",
  9965. extra: 863 / 800,
  9966. bottom: 0.015
  9967. }
  9968. },
  9969. back: {
  9970. height: math.unit(12, "feet"),
  9971. weight: math.unit(1.5, "tons"),
  9972. name: "Back",
  9973. image: {
  9974. source: "./media/characters/dydros/back.svg",
  9975. extra: 900 / 843,
  9976. bottom: 0.005
  9977. }
  9978. },
  9979. },
  9980. [
  9981. {
  9982. name: "Normal",
  9983. height: math.unit(12, "feet"),
  9984. default: true
  9985. },
  9986. ]
  9987. ))
  9988. characterMakers.push(() => makeCharacter(
  9989. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  9990. {
  9991. front: {
  9992. height: math.unit(6, "feet"),
  9993. weight: math.unit(100, "kg"),
  9994. name: "Front",
  9995. image: {
  9996. source: "./media/characters/riggi/front.svg",
  9997. extra: 5787 / 5303
  9998. }
  9999. },
  10000. hyper: {
  10001. height: math.unit(6 * 5 / 3, "feet"),
  10002. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10003. name: "Hyper",
  10004. image: {
  10005. source: "./media/characters/riggi/hyper.svg",
  10006. extra: 3595 / 3485
  10007. }
  10008. },
  10009. },
  10010. [
  10011. {
  10012. name: "Small Macro",
  10013. height: math.unit(50, "feet")
  10014. },
  10015. {
  10016. name: "Default",
  10017. height: math.unit(200, "feet"),
  10018. default: true
  10019. },
  10020. {
  10021. name: "Loom",
  10022. height: math.unit(10000, "feet")
  10023. },
  10024. {
  10025. name: "Cruising Altitude",
  10026. height: math.unit(30000, "feet")
  10027. },
  10028. {
  10029. name: "Megamacro",
  10030. height: math.unit(100, "miles")
  10031. },
  10032. {
  10033. name: "Continent Sized",
  10034. height: math.unit(2800, "miles")
  10035. },
  10036. {
  10037. name: "Earth Sized",
  10038. height: math.unit(8000, "miles")
  10039. },
  10040. ]
  10041. ))
  10042. characterMakers.push(() => makeCharacter(
  10043. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10044. {
  10045. front: {
  10046. height: math.unit(6, "feet"),
  10047. weight: math.unit(250, "lb"),
  10048. name: "Front",
  10049. image: {
  10050. source: "./media/characters/alexi/front.svg",
  10051. extra: 3483 / 3291,
  10052. bottom: 0.04
  10053. }
  10054. },
  10055. back: {
  10056. height: math.unit(6, "feet"),
  10057. weight: math.unit(250, "lb"),
  10058. name: "Back",
  10059. image: {
  10060. source: "./media/characters/alexi/back.svg",
  10061. extra: 3533 / 3356,
  10062. bottom: 0.021
  10063. }
  10064. },
  10065. frontTransforming: {
  10066. height: math.unit(8.58, "feet"),
  10067. weight: math.unit(1300, "lb"),
  10068. name: "Transforming",
  10069. image: {
  10070. source: "./media/characters/alexi/front-transforming.svg",
  10071. extra: 437 / 409,
  10072. bottom: 19 / 458.66
  10073. }
  10074. },
  10075. frontTransformed: {
  10076. height: math.unit(12.5, "feet"),
  10077. weight: math.unit(4000, "lb"),
  10078. name: "Transformed",
  10079. image: {
  10080. source: "./media/characters/alexi/front-transformed.svg",
  10081. extra: 639 / 614,
  10082. bottom: 30.55 / 671
  10083. }
  10084. },
  10085. },
  10086. [
  10087. {
  10088. name: "Normal",
  10089. height: math.unit(3, "meters"),
  10090. default: true
  10091. },
  10092. {
  10093. name: "Minimacro",
  10094. height: math.unit(30, "meters")
  10095. },
  10096. {
  10097. name: "Macro",
  10098. height: math.unit(500, "meters")
  10099. },
  10100. {
  10101. name: "Megamacro",
  10102. height: math.unit(9000, "km")
  10103. },
  10104. {
  10105. name: "Teramacro",
  10106. height: math.unit(384000, "km")
  10107. },
  10108. ]
  10109. ))
  10110. characterMakers.push(() => makeCharacter(
  10111. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10112. {
  10113. front: {
  10114. height: math.unit(6, "feet"),
  10115. weight: math.unit(150, "lb"),
  10116. name: "Front",
  10117. image: {
  10118. source: "./media/characters/kayroo/front.svg",
  10119. extra: 1153 / 1038,
  10120. bottom: 0.06
  10121. }
  10122. },
  10123. foot: {
  10124. height: math.unit(6, "feet"),
  10125. weight: math.unit(150, "lb"),
  10126. name: "Foot",
  10127. image: {
  10128. source: "./media/characters/kayroo/foot.svg"
  10129. }
  10130. },
  10131. },
  10132. [
  10133. {
  10134. name: "Normal",
  10135. height: math.unit(8, "feet"),
  10136. default: true
  10137. },
  10138. {
  10139. name: "Minimacro",
  10140. height: math.unit(250, "feet")
  10141. },
  10142. {
  10143. name: "Macro",
  10144. height: math.unit(2800, "feet")
  10145. },
  10146. {
  10147. name: "Megamacro",
  10148. height: math.unit(5200, "feet")
  10149. },
  10150. {
  10151. name: "Gigamacro",
  10152. height: math.unit(27000, "feet")
  10153. },
  10154. {
  10155. name: "Omega",
  10156. height: math.unit(45000, "feet")
  10157. },
  10158. ]
  10159. ))
  10160. characterMakers.push(() => makeCharacter(
  10161. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10162. {
  10163. front: {
  10164. height: math.unit(18, "feet"),
  10165. weight: math.unit(5800, "lb"),
  10166. name: "Front",
  10167. image: {
  10168. source: "./media/characters/rhys/front.svg",
  10169. extra: 3386 / 3090,
  10170. bottom: 0.07
  10171. }
  10172. },
  10173. },
  10174. [
  10175. {
  10176. name: "Normal",
  10177. height: math.unit(18, "feet"),
  10178. default: true
  10179. },
  10180. {
  10181. name: "Working Size",
  10182. height: math.unit(200, "feet")
  10183. },
  10184. {
  10185. name: "Demolition Size",
  10186. height: math.unit(2000, "feet")
  10187. },
  10188. {
  10189. name: "Maximum Licensed Size",
  10190. height: math.unit(5, "miles")
  10191. },
  10192. {
  10193. name: "Maximum Observed Size",
  10194. height: math.unit(10, "yottameters")
  10195. },
  10196. ]
  10197. ))
  10198. characterMakers.push(() => makeCharacter(
  10199. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10200. {
  10201. front: {
  10202. height: math.unit(6, "feet"),
  10203. weight: math.unit(250, "lb"),
  10204. name: "Front",
  10205. image: {
  10206. source: "./media/characters/toto/front.svg",
  10207. extra: 527 / 479,
  10208. bottom: 0.05
  10209. }
  10210. },
  10211. },
  10212. [
  10213. {
  10214. name: "Micro",
  10215. height: math.unit(3, "feet")
  10216. },
  10217. {
  10218. name: "Normal",
  10219. height: math.unit(10, "feet")
  10220. },
  10221. {
  10222. name: "Macro",
  10223. height: math.unit(150, "feet"),
  10224. default: true
  10225. },
  10226. {
  10227. name: "Megamacro",
  10228. height: math.unit(1200, "feet")
  10229. },
  10230. ]
  10231. ))
  10232. characterMakers.push(() => makeCharacter(
  10233. { name: "King", species: ["lion"], tags: ["anthro"] },
  10234. {
  10235. back: {
  10236. height: math.unit(6, "feet"),
  10237. weight: math.unit(150, "lb"),
  10238. name: "Back",
  10239. image: {
  10240. source: "./media/characters/king/back.svg"
  10241. }
  10242. },
  10243. },
  10244. [
  10245. {
  10246. name: "Micro",
  10247. height: math.unit(2, "inches")
  10248. },
  10249. {
  10250. name: "Normal",
  10251. height: math.unit(8, "feet")
  10252. },
  10253. {
  10254. name: "Macro",
  10255. height: math.unit(200, "feet"),
  10256. default: true
  10257. },
  10258. {
  10259. name: "Megamacro",
  10260. height: math.unit(50, "miles")
  10261. },
  10262. ]
  10263. ))
  10264. characterMakers.push(() => makeCharacter(
  10265. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10266. {
  10267. anthro: {
  10268. height: math.unit(6 + 5 / 12, "feet"),
  10269. weight: math.unit(280, "lb"),
  10270. name: "Anthro",
  10271. image: {
  10272. source: "./media/characters/cordite/anthro.svg",
  10273. extra: 1986 / 1905,
  10274. bottom: 0.025
  10275. }
  10276. },
  10277. feral: {
  10278. height: math.unit(2, "feet"),
  10279. weight: math.unit(90, "lb"),
  10280. name: "Feral",
  10281. image: {
  10282. source: "./media/characters/cordite/feral.svg",
  10283. extra: 1260 / 755,
  10284. bottom: 0.05
  10285. }
  10286. },
  10287. },
  10288. [
  10289. {
  10290. name: "Normal",
  10291. height: math.unit(6 + 5 / 12, "feet"),
  10292. default: true
  10293. },
  10294. ]
  10295. ))
  10296. characterMakers.push(() => makeCharacter(
  10297. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10298. {
  10299. front: {
  10300. height: math.unit(6, "feet"),
  10301. weight: math.unit(150, "lb"),
  10302. name: "Front",
  10303. image: {
  10304. source: "./media/characters/pianostrong/front.svg",
  10305. extra: 6577 / 6254,
  10306. bottom: 0.02
  10307. }
  10308. },
  10309. side: {
  10310. height: math.unit(6, "feet"),
  10311. weight: math.unit(150, "lb"),
  10312. name: "Side",
  10313. image: {
  10314. source: "./media/characters/pianostrong/side.svg",
  10315. extra: 6106 / 5730
  10316. }
  10317. },
  10318. back: {
  10319. height: math.unit(6, "feet"),
  10320. weight: math.unit(150, "lb"),
  10321. name: "Back",
  10322. image: {
  10323. source: "./media/characters/pianostrong/back.svg",
  10324. extra: 6085 / 5733,
  10325. bottom: 0.01
  10326. }
  10327. },
  10328. },
  10329. [
  10330. {
  10331. name: "Macro",
  10332. height: math.unit(100, "feet")
  10333. },
  10334. {
  10335. name: "Macro+",
  10336. height: math.unit(300, "feet"),
  10337. default: true
  10338. },
  10339. {
  10340. name: "Macro++",
  10341. height: math.unit(1000, "feet")
  10342. },
  10343. ]
  10344. ))
  10345. characterMakers.push(() => makeCharacter(
  10346. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10347. {
  10348. front: {
  10349. height: math.unit(6, "feet"),
  10350. weight: math.unit(150, "lb"),
  10351. name: "Front",
  10352. image: {
  10353. source: "./media/characters/kona/front.svg",
  10354. extra: 2960 / 2629,
  10355. bottom: 0.005
  10356. }
  10357. },
  10358. },
  10359. [
  10360. {
  10361. name: "Normal",
  10362. height: math.unit(11 + 8 / 12, "feet")
  10363. },
  10364. {
  10365. name: "Macro",
  10366. height: math.unit(850, "feet"),
  10367. default: true
  10368. },
  10369. {
  10370. name: "Macro+",
  10371. height: math.unit(1.5, "km"),
  10372. default: true
  10373. },
  10374. {
  10375. name: "Megamacro",
  10376. height: math.unit(80, "miles")
  10377. },
  10378. {
  10379. name: "Gigamacro",
  10380. height: math.unit(3500, "miles")
  10381. },
  10382. ]
  10383. ))
  10384. characterMakers.push(() => makeCharacter(
  10385. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10386. {
  10387. side: {
  10388. height: math.unit(1.9, "meters"),
  10389. weight: math.unit(326, "kg"),
  10390. name: "Side",
  10391. image: {
  10392. source: "./media/characters/levi/side.svg",
  10393. extra: 1704 / 1334,
  10394. bottom: 0.02
  10395. }
  10396. },
  10397. },
  10398. [
  10399. {
  10400. name: "Normal",
  10401. height: math.unit(1.9, "meters"),
  10402. default: true
  10403. },
  10404. {
  10405. name: "Macro",
  10406. height: math.unit(20, "meters")
  10407. },
  10408. {
  10409. name: "Macro+",
  10410. height: math.unit(200, "meters")
  10411. },
  10412. {
  10413. name: "Megamacro",
  10414. height: math.unit(2, "km")
  10415. },
  10416. {
  10417. name: "Megamacro+",
  10418. height: math.unit(20, "km")
  10419. },
  10420. {
  10421. name: "Gigamacro",
  10422. height: math.unit(2500, "km")
  10423. },
  10424. {
  10425. name: "Gigamacro+",
  10426. height: math.unit(120000, "km")
  10427. },
  10428. {
  10429. name: "Teramacro",
  10430. height: math.unit(7.77e6, "km")
  10431. },
  10432. ]
  10433. ))
  10434. characterMakers.push(() => makeCharacter(
  10435. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10436. {
  10437. front: {
  10438. height: math.unit(6 + 4 / 12, "feet"),
  10439. weight: math.unit(188, "lb"),
  10440. name: "Front",
  10441. image: {
  10442. source: "./media/characters/bmc/front.svg",
  10443. extra: 1067 / 1022,
  10444. bottom: 0.047
  10445. }
  10446. },
  10447. },
  10448. [
  10449. {
  10450. name: "Human-sized",
  10451. height: math.unit(6 + 4 / 12, "feet")
  10452. },
  10453. {
  10454. name: "Small",
  10455. height: math.unit(250, "feet")
  10456. },
  10457. {
  10458. name: "Normal",
  10459. height: math.unit(1250, "feet"),
  10460. default: true
  10461. },
  10462. {
  10463. name: "Good Day",
  10464. height: math.unit(88, "miles")
  10465. },
  10466. {
  10467. name: "Largest Measured Size",
  10468. height: math.unit(11.2e6, "lightyears")
  10469. },
  10470. ]
  10471. ))
  10472. characterMakers.push(() => makeCharacter(
  10473. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10474. {
  10475. front: {
  10476. height: math.unit(20, "feet"),
  10477. weight: math.unit(2016, "kg"),
  10478. name: "Front",
  10479. image: {
  10480. source: "./media/characters/sven-the-kaiju/front.svg",
  10481. extra: 1479 / 1449,
  10482. bottom: 0.05
  10483. }
  10484. },
  10485. },
  10486. [
  10487. {
  10488. name: "Fairy",
  10489. height: math.unit(6, "inches")
  10490. },
  10491. {
  10492. name: "Normal",
  10493. height: math.unit(20, "feet"),
  10494. default: true
  10495. },
  10496. {
  10497. name: "Rampage",
  10498. height: math.unit(200, "feet")
  10499. },
  10500. {
  10501. name: "Archfey Forest Guardian",
  10502. height: math.unit(1, "mile")
  10503. },
  10504. ]
  10505. ))
  10506. characterMakers.push(() => makeCharacter(
  10507. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10508. {
  10509. front: {
  10510. height: math.unit(4, "meters"),
  10511. weight: math.unit(2, "tons"),
  10512. name: "Front",
  10513. image: {
  10514. source: "./media/characters/marik/front.svg",
  10515. extra: 1057 / 1003,
  10516. bottom: 0.08
  10517. }
  10518. },
  10519. },
  10520. [
  10521. {
  10522. name: "Normal",
  10523. height: math.unit(4, "meters"),
  10524. default: true
  10525. },
  10526. {
  10527. name: "Macro",
  10528. height: math.unit(20, "meters")
  10529. },
  10530. {
  10531. name: "Megamacro",
  10532. height: math.unit(50, "km")
  10533. },
  10534. {
  10535. name: "Gigamacro",
  10536. height: math.unit(100, "km")
  10537. },
  10538. {
  10539. name: "Alpha Macro",
  10540. height: math.unit(7.88e7, "yottameters")
  10541. },
  10542. ]
  10543. ))
  10544. characterMakers.push(() => makeCharacter(
  10545. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10546. {
  10547. front: {
  10548. height: math.unit(6, "feet"),
  10549. weight: math.unit(110, "lb"),
  10550. name: "Front",
  10551. image: {
  10552. source: "./media/characters/mel/front.svg",
  10553. extra: 736 / 617,
  10554. bottom: 0.017
  10555. }
  10556. },
  10557. },
  10558. [
  10559. {
  10560. name: "Pico",
  10561. height: math.unit(3, "pm")
  10562. },
  10563. {
  10564. name: "Nano",
  10565. height: math.unit(3, "nm")
  10566. },
  10567. {
  10568. name: "Micro",
  10569. height: math.unit(0.3, "mm"),
  10570. default: true
  10571. },
  10572. {
  10573. name: "Micro+",
  10574. height: math.unit(3, "mm")
  10575. },
  10576. {
  10577. name: "Normal",
  10578. height: math.unit(5 + 10.5 / 12, "feet")
  10579. },
  10580. ]
  10581. ))
  10582. characterMakers.push(() => makeCharacter(
  10583. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10584. {
  10585. kaiju: {
  10586. height: math.unit(1.75, "meters"),
  10587. weight: math.unit(55, "kg"),
  10588. name: "Kaiju",
  10589. image: {
  10590. source: "./media/characters/lykonous/kaiju.svg",
  10591. extra: 1055 / 946,
  10592. bottom: 0.135
  10593. }
  10594. },
  10595. },
  10596. [
  10597. {
  10598. name: "Normal",
  10599. height: math.unit(2.5, "meters"),
  10600. default: true
  10601. },
  10602. {
  10603. name: "Kaiju Dragon",
  10604. height: math.unit(60, "meters")
  10605. },
  10606. {
  10607. name: "Mega Kaiju",
  10608. height: math.unit(120, "km")
  10609. },
  10610. {
  10611. name: "Giga Kaiju",
  10612. height: math.unit(200, "megameters")
  10613. },
  10614. {
  10615. name: "Terra Kaiju",
  10616. height: math.unit(400, "gigameters")
  10617. },
  10618. {
  10619. name: "Kaiju Dragon God",
  10620. height: math.unit(13000, "exaparsecs")
  10621. },
  10622. ]
  10623. ))
  10624. characterMakers.push(() => makeCharacter(
  10625. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10626. {
  10627. front: {
  10628. height: math.unit(6, "feet"),
  10629. weight: math.unit(150, "lb"),
  10630. name: "Front",
  10631. image: {
  10632. source: "./media/characters/blü/front.svg",
  10633. extra: 1883 / 1564,
  10634. bottom: 0.031
  10635. }
  10636. },
  10637. },
  10638. [
  10639. {
  10640. name: "Normal",
  10641. height: math.unit(13, "feet"),
  10642. default: true
  10643. },
  10644. {
  10645. name: "Big Boi",
  10646. height: math.unit(150, "meters")
  10647. },
  10648. {
  10649. name: "Mini Stomper",
  10650. height: math.unit(300, "meters")
  10651. },
  10652. {
  10653. name: "Macro",
  10654. height: math.unit(1000, "meters")
  10655. },
  10656. {
  10657. name: "Megamacro",
  10658. height: math.unit(11000, "meters")
  10659. },
  10660. {
  10661. name: "Gigamacro",
  10662. height: math.unit(11000, "km")
  10663. },
  10664. {
  10665. name: "Teramacro",
  10666. height: math.unit(420000, "km")
  10667. },
  10668. {
  10669. name: "Examacro",
  10670. height: math.unit(120, "parsecs")
  10671. },
  10672. {
  10673. name: "God Tho",
  10674. height: math.unit(98000000000, "parsecs")
  10675. },
  10676. ]
  10677. ))
  10678. characterMakers.push(() => makeCharacter(
  10679. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10680. {
  10681. taurFront: {
  10682. height: math.unit(6, "feet"),
  10683. weight: math.unit(200, "lb"),
  10684. name: "Taur (Front)",
  10685. image: {
  10686. source: "./media/characters/scales/taur-front.svg",
  10687. extra: 1,
  10688. bottom: 0.05
  10689. }
  10690. },
  10691. taurBack: {
  10692. height: math.unit(6, "feet"),
  10693. weight: math.unit(200, "lb"),
  10694. name: "Taur (Back)",
  10695. image: {
  10696. source: "./media/characters/scales/taur-back.svg",
  10697. extra: 1,
  10698. bottom: 0.08
  10699. }
  10700. },
  10701. anthro: {
  10702. height: math.unit(6 * 7 / 12, "feet"),
  10703. weight: math.unit(100, "lb"),
  10704. name: "Anthro",
  10705. image: {
  10706. source: "./media/characters/scales/anthro.svg",
  10707. extra: 1,
  10708. bottom: 0.06
  10709. }
  10710. },
  10711. },
  10712. [
  10713. {
  10714. name: "Normal",
  10715. height: math.unit(12, "feet"),
  10716. default: true
  10717. },
  10718. ]
  10719. ))
  10720. characterMakers.push(() => makeCharacter(
  10721. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10722. {
  10723. front: {
  10724. height: math.unit(6, "feet"),
  10725. weight: math.unit(150, "lb"),
  10726. name: "Front",
  10727. image: {
  10728. source: "./media/characters/koragos/front.svg",
  10729. extra: 841 / 794,
  10730. bottom: 0.035
  10731. }
  10732. },
  10733. back: {
  10734. height: math.unit(6, "feet"),
  10735. weight: math.unit(150, "lb"),
  10736. name: "Back",
  10737. image: {
  10738. source: "./media/characters/koragos/back.svg",
  10739. extra: 841 / 810,
  10740. bottom: 0.022
  10741. }
  10742. },
  10743. },
  10744. [
  10745. {
  10746. name: "Normal",
  10747. height: math.unit(6 + 11 / 12, "feet"),
  10748. default: true
  10749. },
  10750. {
  10751. name: "Macro",
  10752. height: math.unit(490, "feet")
  10753. },
  10754. {
  10755. name: "Megamacro",
  10756. height: math.unit(10, "miles")
  10757. },
  10758. {
  10759. name: "Gigamacro",
  10760. height: math.unit(50, "miles")
  10761. },
  10762. ]
  10763. ))
  10764. characterMakers.push(() => makeCharacter(
  10765. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10766. {
  10767. front: {
  10768. height: math.unit(6, "feet"),
  10769. weight: math.unit(250, "lb"),
  10770. name: "Front",
  10771. image: {
  10772. source: "./media/characters/xylrem/front.svg",
  10773. extra: 3323 / 3050,
  10774. bottom: 0.065
  10775. }
  10776. },
  10777. },
  10778. [
  10779. {
  10780. name: "Micro",
  10781. height: math.unit(4, "feet")
  10782. },
  10783. {
  10784. name: "Normal",
  10785. height: math.unit(16, "feet"),
  10786. default: true
  10787. },
  10788. {
  10789. name: "Macro",
  10790. height: math.unit(2720, "feet")
  10791. },
  10792. {
  10793. name: "Megamacro",
  10794. height: math.unit(25000, "miles")
  10795. },
  10796. ]
  10797. ))
  10798. characterMakers.push(() => makeCharacter(
  10799. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10800. {
  10801. front: {
  10802. height: math.unit(8, "feet"),
  10803. weight: math.unit(250, "kg"),
  10804. name: "Front",
  10805. image: {
  10806. source: "./media/characters/ikideru/front.svg",
  10807. extra: 930 / 870,
  10808. bottom: 0.087
  10809. }
  10810. },
  10811. back: {
  10812. height: math.unit(8, "feet"),
  10813. weight: math.unit(250, "kg"),
  10814. name: "Back",
  10815. image: {
  10816. source: "./media/characters/ikideru/back.svg",
  10817. extra: 919 / 852,
  10818. bottom: 0.055
  10819. }
  10820. },
  10821. },
  10822. [
  10823. {
  10824. name: "Rare",
  10825. height: math.unit(8, "feet"),
  10826. default: true
  10827. },
  10828. {
  10829. name: "Playful Loom",
  10830. height: math.unit(80, "feet")
  10831. },
  10832. {
  10833. name: "City Leaner",
  10834. height: math.unit(230, "feet")
  10835. },
  10836. {
  10837. name: "Megamacro",
  10838. height: math.unit(2500, "feet")
  10839. },
  10840. {
  10841. name: "Gigamacro",
  10842. height: math.unit(26400, "feet")
  10843. },
  10844. {
  10845. name: "Tectonic Shifter",
  10846. height: math.unit(1.7, "megameters")
  10847. },
  10848. {
  10849. name: "Planet Carer",
  10850. height: math.unit(21, "megameters")
  10851. },
  10852. {
  10853. name: "God",
  10854. height: math.unit(11157.22, "parsecs")
  10855. },
  10856. ]
  10857. ))
  10858. characterMakers.push(() => makeCharacter(
  10859. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10860. {
  10861. front: {
  10862. height: math.unit(6, "feet"),
  10863. weight: math.unit(120, "lb"),
  10864. name: "Front",
  10865. image: {
  10866. source: "./media/characters/neo/front.svg"
  10867. }
  10868. },
  10869. },
  10870. [
  10871. {
  10872. name: "Micro",
  10873. height: math.unit(2, "inches"),
  10874. default: true
  10875. },
  10876. {
  10877. name: "Human Size",
  10878. height: math.unit(5 + 8 / 12, "feet")
  10879. },
  10880. ]
  10881. ))
  10882. characterMakers.push(() => makeCharacter(
  10883. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  10884. {
  10885. front: {
  10886. height: math.unit(13 + 10 / 12, "feet"),
  10887. weight: math.unit(5320, "lb"),
  10888. name: "Front",
  10889. image: {
  10890. source: "./media/characters/chauncey-chantz/front.svg",
  10891. extra: 1587 / 1435,
  10892. bottom: 0.02
  10893. }
  10894. },
  10895. },
  10896. [
  10897. {
  10898. name: "Normal",
  10899. height: math.unit(13 + 10 / 12, "feet"),
  10900. default: true
  10901. },
  10902. {
  10903. name: "Macro",
  10904. height: math.unit(45, "feet")
  10905. },
  10906. {
  10907. name: "Megamacro",
  10908. height: math.unit(250, "miles")
  10909. },
  10910. {
  10911. name: "Planetary",
  10912. height: math.unit(10000, "miles")
  10913. },
  10914. {
  10915. name: "Galactic",
  10916. height: math.unit(40000, "parsecs")
  10917. },
  10918. {
  10919. name: "Universal",
  10920. height: math.unit(1, "yottameter")
  10921. },
  10922. ]
  10923. ))
  10924. characterMakers.push(() => makeCharacter(
  10925. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  10926. {
  10927. front: {
  10928. height: math.unit(6, "feet"),
  10929. weight: math.unit(150, "lb"),
  10930. name: "Front",
  10931. image: {
  10932. source: "./media/characters/epifox/front.svg",
  10933. extra: 1,
  10934. bottom: 0.075
  10935. }
  10936. },
  10937. },
  10938. [
  10939. {
  10940. name: "Micro",
  10941. height: math.unit(6, "inches")
  10942. },
  10943. {
  10944. name: "Normal",
  10945. height: math.unit(12, "feet"),
  10946. default: true
  10947. },
  10948. {
  10949. name: "Macro",
  10950. height: math.unit(3810, "feet")
  10951. },
  10952. {
  10953. name: "Megamacro",
  10954. height: math.unit(500, "miles")
  10955. },
  10956. ]
  10957. ))
  10958. characterMakers.push(() => makeCharacter(
  10959. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  10960. {
  10961. front: {
  10962. height: math.unit(1.8796, "m"),
  10963. weight: math.unit(230, "lb"),
  10964. name: "Front",
  10965. image: {
  10966. source: "./media/characters/colin-t/front.svg",
  10967. extra: 1272 / 1193,
  10968. bottom: 0.07
  10969. }
  10970. },
  10971. },
  10972. [
  10973. {
  10974. name: "Micro",
  10975. height: math.unit(0.571, "meters")
  10976. },
  10977. {
  10978. name: "Normal",
  10979. height: math.unit(1.8796, "meters"),
  10980. default: true
  10981. },
  10982. {
  10983. name: "Tall",
  10984. height: math.unit(4, "meters")
  10985. },
  10986. {
  10987. name: "Macro",
  10988. height: math.unit(67.241, "meters")
  10989. },
  10990. {
  10991. name: "Megamacro",
  10992. height: math.unit(371.856, "meters")
  10993. },
  10994. {
  10995. name: "Planetary",
  10996. height: math.unit(12631.5689, "km")
  10997. },
  10998. ]
  10999. ))
  11000. characterMakers.push(() => makeCharacter(
  11001. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11002. {
  11003. front: {
  11004. height: math.unit(1.85, "meters"),
  11005. weight: math.unit(80, "kg"),
  11006. name: "Front",
  11007. image: {
  11008. source: "./media/characters/matvei/front.svg",
  11009. extra: 614 / 594,
  11010. bottom: 0.01
  11011. }
  11012. },
  11013. },
  11014. [
  11015. {
  11016. name: "Normal",
  11017. height: math.unit(1.85, "meters"),
  11018. default: true
  11019. },
  11020. ]
  11021. ))
  11022. characterMakers.push(() => makeCharacter(
  11023. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11024. {
  11025. front: {
  11026. height: math.unit(5 + 9 / 12, "feet"),
  11027. weight: math.unit(70, "lb"),
  11028. name: "Front",
  11029. image: {
  11030. source: "./media/characters/quincy/front.svg",
  11031. extra: 3041 / 2751
  11032. }
  11033. },
  11034. back: {
  11035. height: math.unit(5 + 9 / 12, "feet"),
  11036. weight: math.unit(70, "lb"),
  11037. name: "Back",
  11038. image: {
  11039. source: "./media/characters/quincy/back.svg",
  11040. extra: 3041 / 2751
  11041. }
  11042. },
  11043. flying: {
  11044. height: math.unit(5 + 4 / 12, "feet"),
  11045. weight: math.unit(70, "lb"),
  11046. name: "Flying",
  11047. image: {
  11048. source: "./media/characters/quincy/flying.svg",
  11049. extra: 1044 / 930
  11050. }
  11051. },
  11052. },
  11053. [
  11054. {
  11055. name: "Micro",
  11056. height: math.unit(3, "cm")
  11057. },
  11058. {
  11059. name: "Normal",
  11060. height: math.unit(5 + 9 / 12, "feet")
  11061. },
  11062. {
  11063. name: "Macro",
  11064. height: math.unit(200, "meters"),
  11065. default: true
  11066. },
  11067. {
  11068. name: "Megamacro",
  11069. height: math.unit(1000, "meters")
  11070. },
  11071. ]
  11072. ))
  11073. characterMakers.push(() => makeCharacter(
  11074. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11075. {
  11076. front: {
  11077. height: math.unit(4 + 7 / 12, "feet"),
  11078. weight: math.unit(150, "lb"),
  11079. name: "Front",
  11080. image: {
  11081. source: "./media/characters/vanrel/front.svg",
  11082. extra: 1,
  11083. bottom: 0.02
  11084. }
  11085. },
  11086. elemental: {
  11087. height: math.unit(3, "feet"),
  11088. weight: math.unit(150, "lb"),
  11089. name: "Elemental",
  11090. image: {
  11091. source: "./media/characters/vanrel/elemental.svg",
  11092. extra: 192.3 / 162.8,
  11093. bottom: 1.79 / 194.17
  11094. }
  11095. },
  11096. side: {
  11097. height: math.unit(4 + 7 / 12, "feet"),
  11098. weight: math.unit(150, "lb"),
  11099. name: "Side",
  11100. image: {
  11101. source: "./media/characters/vanrel/side.svg",
  11102. extra: 1,
  11103. bottom: 0.025
  11104. }
  11105. },
  11106. tome: {
  11107. height: math.unit(1.35, "feet"),
  11108. weight: math.unit(10, "lb"),
  11109. name: "Vanrel's Tome",
  11110. rename: true,
  11111. image: {
  11112. source: "./media/characters/vanrel/tome.svg"
  11113. }
  11114. },
  11115. beans: {
  11116. height: math.unit(0.89, "feet"),
  11117. name: "Beans",
  11118. image: {
  11119. source: "./media/characters/vanrel/beans.svg"
  11120. }
  11121. },
  11122. },
  11123. [
  11124. {
  11125. name: "Normal",
  11126. height: math.unit(4 + 7 / 12, "feet"),
  11127. default: true
  11128. },
  11129. ]
  11130. ))
  11131. characterMakers.push(() => makeCharacter(
  11132. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11133. {
  11134. front: {
  11135. height: math.unit(7 + 5 / 12, "feet"),
  11136. weight: math.unit(150, "lb"),
  11137. name: "Front",
  11138. image: {
  11139. source: "./media/characters/kuiper-vanrel/front.svg",
  11140. extra: 1118 / 1068,
  11141. bottom: 0.09
  11142. }
  11143. },
  11144. foot: {
  11145. height: math.unit(0.55, "meters"),
  11146. name: "Foot",
  11147. image: {
  11148. source: "./media/characters/kuiper-vanrel/foot.svg",
  11149. }
  11150. },
  11151. battle: {
  11152. height: math.unit(6.824, "feet"),
  11153. weight: math.unit(150, "lb"),
  11154. name: "Battle",
  11155. image: {
  11156. source: "./media/characters/kuiper-vanrel/battle.svg",
  11157. extra: 1466 / 1327,
  11158. bottom: 29 / 1492.5
  11159. }
  11160. },
  11161. },
  11162. [
  11163. {
  11164. name: "Normal",
  11165. height: math.unit(7 + 5 / 12, "feet"),
  11166. default: true
  11167. },
  11168. ]
  11169. ))
  11170. characterMakers.push(() => makeCharacter(
  11171. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11172. {
  11173. front: {
  11174. height: math.unit(8 + 5 / 12, "feet"),
  11175. weight: math.unit(150, "lb"),
  11176. name: "Front",
  11177. image: {
  11178. source: "./media/characters/keset-vanrel/front.svg",
  11179. extra: 1150 / 1084,
  11180. bottom: 0.05
  11181. }
  11182. },
  11183. hand: {
  11184. height: math.unit(0.6, "meters"),
  11185. name: "Hand",
  11186. image: {
  11187. source: "./media/characters/keset-vanrel/hand.svg"
  11188. }
  11189. },
  11190. foot: {
  11191. height: math.unit(0.94978, "meters"),
  11192. name: "Foot",
  11193. image: {
  11194. source: "./media/characters/keset-vanrel/foot.svg"
  11195. }
  11196. },
  11197. battle: {
  11198. height: math.unit(7.408, "feet"),
  11199. weight: math.unit(150, "lb"),
  11200. name: "Battle",
  11201. image: {
  11202. source: "./media/characters/keset-vanrel/battle.svg",
  11203. extra: 1890 / 1386,
  11204. bottom: 73.28 / 1970
  11205. }
  11206. },
  11207. },
  11208. [
  11209. {
  11210. name: "Normal",
  11211. height: math.unit(8 + 5 / 12, "feet"),
  11212. default: true
  11213. },
  11214. ]
  11215. ))
  11216. characterMakers.push(() => makeCharacter(
  11217. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11218. {
  11219. front: {
  11220. height: math.unit(6, "feet"),
  11221. weight: math.unit(150, "lb"),
  11222. name: "Front",
  11223. image: {
  11224. source: "./media/characters/neos/front.svg",
  11225. extra: 1696 / 992,
  11226. bottom: 0.14
  11227. }
  11228. },
  11229. },
  11230. [
  11231. {
  11232. name: "Normal",
  11233. height: math.unit(54, "cm"),
  11234. default: true
  11235. },
  11236. {
  11237. name: "Macro",
  11238. height: math.unit(100, "m")
  11239. },
  11240. {
  11241. name: "Megamacro",
  11242. height: math.unit(10, "km")
  11243. },
  11244. {
  11245. name: "Megamacro+",
  11246. height: math.unit(100, "km")
  11247. },
  11248. {
  11249. name: "Gigamacro",
  11250. height: math.unit(100, "Mm")
  11251. },
  11252. {
  11253. name: "Teramacro",
  11254. height: math.unit(100, "Gm")
  11255. },
  11256. {
  11257. name: "Examacro",
  11258. height: math.unit(100, "Em")
  11259. },
  11260. {
  11261. name: "Godly",
  11262. height: math.unit(10000, "Ym")
  11263. },
  11264. {
  11265. name: "Beyond Godly",
  11266. height: math.unit(25, "multiverses")
  11267. },
  11268. ]
  11269. ))
  11270. characterMakers.push(() => makeCharacter(
  11271. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11272. {
  11273. feminine: {
  11274. height: math.unit(5, "feet"),
  11275. weight: math.unit(100, "lb"),
  11276. name: "Feminine",
  11277. image: {
  11278. source: "./media/characters/sammy-mouse/feminine.svg",
  11279. extra: 2526 / 2425,
  11280. bottom: 0.123
  11281. }
  11282. },
  11283. masculine: {
  11284. height: math.unit(5, "feet"),
  11285. weight: math.unit(100, "lb"),
  11286. name: "Masculine",
  11287. image: {
  11288. source: "./media/characters/sammy-mouse/masculine.svg",
  11289. extra: 2526 / 2425,
  11290. bottom: 0.123
  11291. }
  11292. },
  11293. },
  11294. [
  11295. {
  11296. name: "Micro",
  11297. height: math.unit(5, "inches")
  11298. },
  11299. {
  11300. name: "Normal",
  11301. height: math.unit(5, "feet"),
  11302. default: true
  11303. },
  11304. {
  11305. name: "Macro",
  11306. height: math.unit(60, "feet")
  11307. },
  11308. ]
  11309. ))
  11310. characterMakers.push(() => makeCharacter(
  11311. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11312. {
  11313. front: {
  11314. height: math.unit(4, "feet"),
  11315. weight: math.unit(50, "lb"),
  11316. name: "Front",
  11317. image: {
  11318. source: "./media/characters/kole/front.svg",
  11319. extra: 1423 / 1303,
  11320. bottom: 0.025
  11321. }
  11322. },
  11323. back: {
  11324. height: math.unit(4, "feet"),
  11325. weight: math.unit(50, "lb"),
  11326. name: "Back",
  11327. image: {
  11328. source: "./media/characters/kole/back.svg",
  11329. extra: 1426 / 1280,
  11330. bottom: 0.02
  11331. }
  11332. },
  11333. },
  11334. [
  11335. {
  11336. name: "Normal",
  11337. height: math.unit(4, "feet"),
  11338. default: true
  11339. },
  11340. ]
  11341. ))
  11342. characterMakers.push(() => makeCharacter(
  11343. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11344. {
  11345. front: {
  11346. height: math.unit(2 + 6 / 12, "feet"),
  11347. weight: math.unit(20, "lb"),
  11348. name: "Front",
  11349. image: {
  11350. source: "./media/characters/rufran/front.svg",
  11351. extra: 2041 / 1839,
  11352. bottom: 0.055
  11353. }
  11354. },
  11355. back: {
  11356. height: math.unit(2 + 6 / 12, "feet"),
  11357. weight: math.unit(20, "lb"),
  11358. name: "Back",
  11359. image: {
  11360. source: "./media/characters/rufran/back.svg",
  11361. extra: 2054 / 1839,
  11362. bottom: 0.01
  11363. }
  11364. },
  11365. hand: {
  11366. height: math.unit(0.2166, "meters"),
  11367. name: "Hand",
  11368. image: {
  11369. source: "./media/characters/rufran/hand.svg"
  11370. }
  11371. },
  11372. foot: {
  11373. height: math.unit(0.185, "meters"),
  11374. name: "Foot",
  11375. image: {
  11376. source: "./media/characters/rufran/foot.svg"
  11377. }
  11378. },
  11379. },
  11380. [
  11381. {
  11382. name: "Micro",
  11383. height: math.unit(1, "inch")
  11384. },
  11385. {
  11386. name: "Normal",
  11387. height: math.unit(2 + 6 / 12, "feet"),
  11388. default: true
  11389. },
  11390. {
  11391. name: "Big",
  11392. height: math.unit(60, "feet")
  11393. },
  11394. {
  11395. name: "Macro",
  11396. height: math.unit(325, "feet")
  11397. },
  11398. ]
  11399. ))
  11400. characterMakers.push(() => makeCharacter(
  11401. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11402. {
  11403. front: {
  11404. height: math.unit(0.3, "meters"),
  11405. weight: math.unit(3.5, "kg"),
  11406. name: "Front",
  11407. image: {
  11408. source: "./media/characters/chip/front.svg",
  11409. extra: 748 / 674
  11410. }
  11411. },
  11412. },
  11413. [
  11414. {
  11415. name: "Micro",
  11416. height: math.unit(1, "inch"),
  11417. default: true
  11418. },
  11419. ]
  11420. ))
  11421. characterMakers.push(() => makeCharacter(
  11422. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11423. {
  11424. side: {
  11425. height: math.unit(2.3, "meters"),
  11426. weight: math.unit(3500, "lb"),
  11427. name: "Side",
  11428. image: {
  11429. source: "./media/characters/torvid/side.svg",
  11430. extra: 1972 / 722,
  11431. bottom: 0.035
  11432. }
  11433. },
  11434. },
  11435. [
  11436. {
  11437. name: "Normal",
  11438. height: math.unit(2.3, "meters"),
  11439. default: true
  11440. },
  11441. ]
  11442. ))
  11443. characterMakers.push(() => makeCharacter(
  11444. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11445. {
  11446. front: {
  11447. height: math.unit(2, "meters"),
  11448. weight: math.unit(150.5, "kg"),
  11449. name: "Front",
  11450. image: {
  11451. source: "./media/characters/susan/front.svg",
  11452. extra: 693 / 635,
  11453. bottom: 0.05
  11454. }
  11455. },
  11456. },
  11457. [
  11458. {
  11459. name: "Megamacro",
  11460. height: math.unit(505, "miles"),
  11461. default: true
  11462. },
  11463. ]
  11464. ))
  11465. characterMakers.push(() => makeCharacter(
  11466. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11467. {
  11468. front: {
  11469. height: math.unit(6, "feet"),
  11470. weight: math.unit(150, "lb"),
  11471. name: "Front",
  11472. image: {
  11473. source: "./media/characters/raindrops/front.svg",
  11474. extra: 2655 / 2461,
  11475. bottom: 49/2705
  11476. }
  11477. },
  11478. back: {
  11479. height: math.unit(6, "feet"),
  11480. weight: math.unit(150, "lb"),
  11481. name: "Back",
  11482. image: {
  11483. source: "./media/characters/raindrops/back.svg",
  11484. extra: 2574 / 2400,
  11485. bottom: 65/2634
  11486. }
  11487. },
  11488. },
  11489. [
  11490. {
  11491. name: "Micro",
  11492. height: math.unit(6, "inches")
  11493. },
  11494. {
  11495. name: "Normal",
  11496. height: math.unit(6 + 2 / 12, "feet")
  11497. },
  11498. {
  11499. name: "Macro",
  11500. height: math.unit(131, "feet"),
  11501. default: true
  11502. },
  11503. {
  11504. name: "Megamacro",
  11505. height: math.unit(15, "miles")
  11506. },
  11507. {
  11508. name: "Gigamacro",
  11509. height: math.unit(4000, "miles")
  11510. },
  11511. {
  11512. name: "Teramacro",
  11513. height: math.unit(315000, "miles")
  11514. },
  11515. ]
  11516. ))
  11517. characterMakers.push(() => makeCharacter(
  11518. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11519. {
  11520. front: {
  11521. height: math.unit(2.794, "meters"),
  11522. weight: math.unit(325, "kg"),
  11523. name: "Front",
  11524. image: {
  11525. source: "./media/characters/tezwa/front.svg",
  11526. extra: 2083 / 1906,
  11527. bottom: 0.031
  11528. }
  11529. },
  11530. foot: {
  11531. height: math.unit(0.687, "meters"),
  11532. name: "Foot",
  11533. image: {
  11534. source: "./media/characters/tezwa/foot.svg"
  11535. }
  11536. },
  11537. },
  11538. [
  11539. {
  11540. name: "Normal",
  11541. height: math.unit(9 + 2 / 12, "feet"),
  11542. default: true
  11543. },
  11544. ]
  11545. ))
  11546. characterMakers.push(() => makeCharacter(
  11547. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11548. {
  11549. front: {
  11550. height: math.unit(58, "feet"),
  11551. weight: math.unit(89000, "lb"),
  11552. name: "Front",
  11553. image: {
  11554. source: "./media/characters/typhus/front.svg",
  11555. extra: 816 / 800,
  11556. bottom: 0.065
  11557. }
  11558. },
  11559. },
  11560. [
  11561. {
  11562. name: "Macro",
  11563. height: math.unit(58, "feet"),
  11564. default: true
  11565. },
  11566. ]
  11567. ))
  11568. characterMakers.push(() => makeCharacter(
  11569. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11570. {
  11571. front: {
  11572. height: math.unit(12, "feet"),
  11573. weight: math.unit(6, "tonnes"),
  11574. name: "Front",
  11575. image: {
  11576. source: "./media/characters/lyra-von-wulf/front.svg",
  11577. extra: 1,
  11578. bottom: 0.10
  11579. }
  11580. },
  11581. frontMecha: {
  11582. height: math.unit(12, "feet"),
  11583. weight: math.unit(12, "tonnes"),
  11584. name: "Front (Mecha)",
  11585. image: {
  11586. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11587. extra: 1,
  11588. bottom: 0.042
  11589. }
  11590. },
  11591. maw: {
  11592. height: math.unit(2.2, "feet"),
  11593. name: "Maw",
  11594. image: {
  11595. source: "./media/characters/lyra-von-wulf/maw.svg"
  11596. }
  11597. },
  11598. },
  11599. [
  11600. {
  11601. name: "Normal",
  11602. height: math.unit(12, "feet"),
  11603. default: true
  11604. },
  11605. {
  11606. name: "Classic",
  11607. height: math.unit(50, "feet")
  11608. },
  11609. {
  11610. name: "Macro",
  11611. height: math.unit(500, "feet")
  11612. },
  11613. {
  11614. name: "Megamacro",
  11615. height: math.unit(1, "mile")
  11616. },
  11617. {
  11618. name: "Gigamacro",
  11619. height: math.unit(400, "miles")
  11620. },
  11621. {
  11622. name: "Teramacro",
  11623. height: math.unit(22000, "miles")
  11624. },
  11625. {
  11626. name: "Solarmacro",
  11627. height: math.unit(8600000, "miles")
  11628. },
  11629. {
  11630. name: "Galactic",
  11631. height: math.unit(1057000, "lightyears")
  11632. },
  11633. ]
  11634. ))
  11635. characterMakers.push(() => makeCharacter(
  11636. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11637. {
  11638. front: {
  11639. height: math.unit(6 + 10 / 12, "feet"),
  11640. weight: math.unit(150, "lb"),
  11641. name: "Front",
  11642. image: {
  11643. source: "./media/characters/dixon/front.svg",
  11644. extra: 3361 / 3209,
  11645. bottom: 0.01
  11646. }
  11647. },
  11648. },
  11649. [
  11650. {
  11651. name: "Normal",
  11652. height: math.unit(6 + 10 / 12, "feet"),
  11653. default: true
  11654. },
  11655. {
  11656. name: "Big",
  11657. height: math.unit(12, "meters")
  11658. },
  11659. {
  11660. name: "Macro",
  11661. height: math.unit(500, "meters")
  11662. },
  11663. {
  11664. name: "Megamacro",
  11665. height: math.unit(2, "km")
  11666. },
  11667. ]
  11668. ))
  11669. characterMakers.push(() => makeCharacter(
  11670. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11671. {
  11672. front: {
  11673. height: math.unit(185, "cm"),
  11674. weight: math.unit(68, "kg"),
  11675. name: "Front",
  11676. image: {
  11677. source: "./media/characters/kauko/front.svg",
  11678. extra: 1455 / 1421,
  11679. bottom: 0.03
  11680. }
  11681. },
  11682. back: {
  11683. height: math.unit(185, "cm"),
  11684. weight: math.unit(68, "kg"),
  11685. name: "Back",
  11686. image: {
  11687. source: "./media/characters/kauko/back.svg",
  11688. extra: 1455 / 1421,
  11689. bottom: 0.004
  11690. }
  11691. },
  11692. },
  11693. [
  11694. {
  11695. name: "Normal",
  11696. height: math.unit(185, "cm"),
  11697. default: true
  11698. },
  11699. ]
  11700. ))
  11701. characterMakers.push(() => makeCharacter(
  11702. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11703. {
  11704. front: {
  11705. height: math.unit(6, "feet"),
  11706. weight: math.unit(150, "kg"),
  11707. name: "Front",
  11708. image: {
  11709. source: "./media/characters/varg/front.svg",
  11710. extra: 1108 / 1018,
  11711. bottom: 0.0375
  11712. }
  11713. },
  11714. },
  11715. [
  11716. {
  11717. name: "Normal",
  11718. height: math.unit(5, "meters")
  11719. },
  11720. {
  11721. name: "Macro",
  11722. height: math.unit(200, "meters")
  11723. },
  11724. {
  11725. name: "Megamacro",
  11726. height: math.unit(20, "kilometers")
  11727. },
  11728. {
  11729. name: "True Size",
  11730. height: math.unit(211, "km"),
  11731. default: true
  11732. },
  11733. {
  11734. name: "Gigamacro",
  11735. height: math.unit(1000, "km")
  11736. },
  11737. {
  11738. name: "Gigamacro+",
  11739. height: math.unit(8000, "km")
  11740. },
  11741. {
  11742. name: "Teramacro",
  11743. height: math.unit(1000000, "km")
  11744. },
  11745. ]
  11746. ))
  11747. characterMakers.push(() => makeCharacter(
  11748. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11749. {
  11750. front: {
  11751. height: math.unit(7 + 7 / 12, "feet"),
  11752. weight: math.unit(267, "lb"),
  11753. name: "Front",
  11754. image: {
  11755. source: "./media/characters/dayza/front.svg",
  11756. extra: 1262 / 1200,
  11757. bottom: 0.035
  11758. }
  11759. },
  11760. side: {
  11761. height: math.unit(7 + 7 / 12, "feet"),
  11762. weight: math.unit(267, "lb"),
  11763. name: "Side",
  11764. image: {
  11765. source: "./media/characters/dayza/side.svg",
  11766. extra: 1295 / 1245,
  11767. bottom: 0.05
  11768. }
  11769. },
  11770. back: {
  11771. height: math.unit(7 + 7 / 12, "feet"),
  11772. weight: math.unit(267, "lb"),
  11773. name: "Back",
  11774. image: {
  11775. source: "./media/characters/dayza/back.svg",
  11776. extra: 1241 / 1170
  11777. }
  11778. },
  11779. },
  11780. [
  11781. {
  11782. name: "Normal",
  11783. height: math.unit(7 + 7 / 12, "feet"),
  11784. default: true
  11785. },
  11786. {
  11787. name: "Macro",
  11788. height: math.unit(155, "feet")
  11789. },
  11790. ]
  11791. ))
  11792. characterMakers.push(() => makeCharacter(
  11793. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11794. {
  11795. front: {
  11796. height: math.unit(6 + 5 / 12, "feet"),
  11797. weight: math.unit(160, "lb"),
  11798. name: "Front",
  11799. image: {
  11800. source: "./media/characters/xanthos/front.svg",
  11801. extra: 1,
  11802. bottom: 0.04
  11803. }
  11804. },
  11805. back: {
  11806. height: math.unit(6 + 5 / 12, "feet"),
  11807. weight: math.unit(160, "lb"),
  11808. name: "Back",
  11809. image: {
  11810. source: "./media/characters/xanthos/back.svg",
  11811. extra: 1,
  11812. bottom: 0.03
  11813. }
  11814. },
  11815. hand: {
  11816. height: math.unit(0.928, "feet"),
  11817. name: "Hand",
  11818. image: {
  11819. source: "./media/characters/xanthos/hand.svg"
  11820. }
  11821. },
  11822. foot: {
  11823. height: math.unit(1.286, "feet"),
  11824. name: "Foot",
  11825. image: {
  11826. source: "./media/characters/xanthos/foot.svg"
  11827. }
  11828. },
  11829. },
  11830. [
  11831. {
  11832. name: "Normal",
  11833. height: math.unit(6 + 5 / 12, "feet"),
  11834. default: true
  11835. },
  11836. {
  11837. name: "Normal+",
  11838. height: math.unit(6, "meters")
  11839. },
  11840. {
  11841. name: "Macro",
  11842. height: math.unit(40, "feet")
  11843. },
  11844. {
  11845. name: "Macro+",
  11846. height: math.unit(200, "meters")
  11847. },
  11848. {
  11849. name: "Megamacro",
  11850. height: math.unit(20, "km")
  11851. },
  11852. {
  11853. name: "Megamacro+",
  11854. height: math.unit(100, "km")
  11855. },
  11856. ]
  11857. ))
  11858. characterMakers.push(() => makeCharacter(
  11859. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11860. {
  11861. front: {
  11862. height: math.unit(6 + 3 / 12, "feet"),
  11863. weight: math.unit(215, "lb"),
  11864. name: "Front",
  11865. image: {
  11866. source: "./media/characters/grynn/front.svg",
  11867. extra: 4627 / 4209,
  11868. bottom: 0.047
  11869. }
  11870. },
  11871. },
  11872. [
  11873. {
  11874. name: "Micro",
  11875. height: math.unit(6, "inches")
  11876. },
  11877. {
  11878. name: "Normal",
  11879. height: math.unit(6 + 3 / 12, "feet"),
  11880. default: true
  11881. },
  11882. {
  11883. name: "Big",
  11884. height: math.unit(104, "feet")
  11885. },
  11886. {
  11887. name: "Macro",
  11888. height: math.unit(944, "feet")
  11889. },
  11890. {
  11891. name: "Macro+",
  11892. height: math.unit(9480, "feet")
  11893. },
  11894. {
  11895. name: "Megamacro",
  11896. height: math.unit(78752, "feet")
  11897. },
  11898. {
  11899. name: "Megamacro+",
  11900. height: math.unit(630128, "feet")
  11901. },
  11902. {
  11903. name: "Megamacro++",
  11904. height: math.unit(3150695, "feet")
  11905. },
  11906. ]
  11907. ))
  11908. characterMakers.push(() => makeCharacter(
  11909. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  11910. {
  11911. front: {
  11912. height: math.unit(7 + 5 / 12, "feet"),
  11913. weight: math.unit(450, "lb"),
  11914. name: "Front",
  11915. image: {
  11916. source: "./media/characters/mocha-aura/front.svg",
  11917. extra: 1907 / 1817,
  11918. bottom: 0.04
  11919. }
  11920. },
  11921. back: {
  11922. height: math.unit(7 + 5 / 12, "feet"),
  11923. weight: math.unit(450, "lb"),
  11924. name: "Back",
  11925. image: {
  11926. source: "./media/characters/mocha-aura/back.svg",
  11927. extra: 1900 / 1825,
  11928. bottom: 0.045
  11929. }
  11930. },
  11931. },
  11932. [
  11933. {
  11934. name: "Nano",
  11935. height: math.unit(1, "nm")
  11936. },
  11937. {
  11938. name: "Megamicro",
  11939. height: math.unit(1, "mm")
  11940. },
  11941. {
  11942. name: "Micro",
  11943. height: math.unit(3, "inches")
  11944. },
  11945. {
  11946. name: "Normal",
  11947. height: math.unit(7 + 5 / 12, "feet"),
  11948. default: true
  11949. },
  11950. {
  11951. name: "Macro",
  11952. height: math.unit(30, "feet")
  11953. },
  11954. {
  11955. name: "Megamacro",
  11956. height: math.unit(3500, "feet")
  11957. },
  11958. {
  11959. name: "Teramacro",
  11960. height: math.unit(500000, "miles")
  11961. },
  11962. {
  11963. name: "Petamacro",
  11964. height: math.unit(50000000000000000, "parsecs")
  11965. },
  11966. ]
  11967. ))
  11968. characterMakers.push(() => makeCharacter(
  11969. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  11970. {
  11971. front: {
  11972. height: math.unit(6, "feet"),
  11973. weight: math.unit(150, "lb"),
  11974. name: "Front",
  11975. image: {
  11976. source: "./media/characters/ilisha-devya/front.svg",
  11977. extra: 1,
  11978. bottom: 0.175
  11979. }
  11980. },
  11981. back: {
  11982. height: math.unit(6, "feet"),
  11983. weight: math.unit(150, "lb"),
  11984. name: "Back",
  11985. image: {
  11986. source: "./media/characters/ilisha-devya/back.svg",
  11987. extra: 1,
  11988. bottom: 0.015
  11989. }
  11990. },
  11991. },
  11992. [
  11993. {
  11994. name: "Macro",
  11995. height: math.unit(500, "feet"),
  11996. default: true
  11997. },
  11998. {
  11999. name: "Megamacro",
  12000. height: math.unit(10, "miles")
  12001. },
  12002. {
  12003. name: "Gigamacro",
  12004. height: math.unit(100000, "miles")
  12005. },
  12006. {
  12007. name: "Examacro",
  12008. height: math.unit(1e9, "lightyears")
  12009. },
  12010. {
  12011. name: "Omniversal",
  12012. height: math.unit(1e33, "lightyears")
  12013. },
  12014. {
  12015. name: "Beyond Infinite",
  12016. height: math.unit(1e100, "lightyears")
  12017. },
  12018. ]
  12019. ))
  12020. characterMakers.push(() => makeCharacter(
  12021. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12022. {
  12023. Side: {
  12024. height: math.unit(6, "feet"),
  12025. weight: math.unit(150, "lb"),
  12026. name: "Side",
  12027. image: {
  12028. source: "./media/characters/mira/side.svg",
  12029. extra: 900 / 799,
  12030. bottom: 0.02
  12031. }
  12032. },
  12033. },
  12034. [
  12035. {
  12036. name: "Human Size",
  12037. height: math.unit(6, "feet")
  12038. },
  12039. {
  12040. name: "Macro",
  12041. height: math.unit(100, "feet"),
  12042. default: true
  12043. },
  12044. {
  12045. name: "Megamacro",
  12046. height: math.unit(10, "miles")
  12047. },
  12048. {
  12049. name: "Gigamacro",
  12050. height: math.unit(25000, "miles")
  12051. },
  12052. {
  12053. name: "Teramacro",
  12054. height: math.unit(300, "AU")
  12055. },
  12056. {
  12057. name: "Full Size",
  12058. height: math.unit(4.5e10, "lightyears")
  12059. },
  12060. ]
  12061. ))
  12062. characterMakers.push(() => makeCharacter(
  12063. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12064. {
  12065. front: {
  12066. height: math.unit(6, "feet"),
  12067. weight: math.unit(150, "lb"),
  12068. name: "Front",
  12069. image: {
  12070. source: "./media/characters/holly/front.svg",
  12071. extra: 639 / 606
  12072. }
  12073. },
  12074. back: {
  12075. height: math.unit(6, "feet"),
  12076. weight: math.unit(150, "lb"),
  12077. name: "Back",
  12078. image: {
  12079. source: "./media/characters/holly/back.svg",
  12080. extra: 623 / 598
  12081. }
  12082. },
  12083. frontWorking: {
  12084. height: math.unit(6, "feet"),
  12085. weight: math.unit(150, "lb"),
  12086. name: "Front (Working)",
  12087. image: {
  12088. source: "./media/characters/holly/front-working.svg",
  12089. extra: 607 / 577,
  12090. bottom: 0.048
  12091. }
  12092. },
  12093. },
  12094. [
  12095. {
  12096. name: "Normal",
  12097. height: math.unit(12 + 3 / 12, "feet"),
  12098. default: true
  12099. },
  12100. ]
  12101. ))
  12102. characterMakers.push(() => makeCharacter(
  12103. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12104. {
  12105. front: {
  12106. height: math.unit(6, "feet"),
  12107. weight: math.unit(150, "lb"),
  12108. name: "Front",
  12109. image: {
  12110. source: "./media/characters/porter/front.svg",
  12111. extra: 1,
  12112. bottom: 0.01
  12113. }
  12114. },
  12115. frontRobes: {
  12116. height: math.unit(6, "feet"),
  12117. weight: math.unit(150, "lb"),
  12118. name: "Front (Robes)",
  12119. image: {
  12120. source: "./media/characters/porter/front-robes.svg",
  12121. extra: 1.01,
  12122. bottom: 0.01
  12123. }
  12124. },
  12125. },
  12126. [
  12127. {
  12128. name: "Normal",
  12129. height: math.unit(11 + 9 / 12, "feet"),
  12130. default: true
  12131. },
  12132. ]
  12133. ))
  12134. characterMakers.push(() => makeCharacter(
  12135. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12136. {
  12137. legendary: {
  12138. height: math.unit(6, "feet"),
  12139. weight: math.unit(150, "lb"),
  12140. name: "Legendary",
  12141. image: {
  12142. source: "./media/characters/lucy/legendary.svg",
  12143. extra: 1355 / 1100,
  12144. bottom: 0.045
  12145. }
  12146. },
  12147. },
  12148. [
  12149. {
  12150. name: "Legendary",
  12151. height: math.unit(86882 * 2, "miles"),
  12152. default: true
  12153. },
  12154. ]
  12155. ))
  12156. characterMakers.push(() => makeCharacter(
  12157. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12158. {
  12159. front: {
  12160. height: math.unit(6, "feet"),
  12161. weight: math.unit(150, "lb"),
  12162. name: "Front",
  12163. image: {
  12164. source: "./media/characters/drusilla/front.svg",
  12165. extra: 678 / 635,
  12166. bottom: 0.03
  12167. }
  12168. },
  12169. back: {
  12170. height: math.unit(6, "feet"),
  12171. weight: math.unit(150, "lb"),
  12172. name: "Back",
  12173. image: {
  12174. source: "./media/characters/drusilla/back.svg",
  12175. extra: 678 / 635,
  12176. bottom: 0.005
  12177. }
  12178. },
  12179. },
  12180. [
  12181. {
  12182. name: "Macro",
  12183. height: math.unit(100, "feet")
  12184. },
  12185. {
  12186. name: "Canon Height",
  12187. height: math.unit(2000, "feet"),
  12188. default: true
  12189. },
  12190. ]
  12191. ))
  12192. characterMakers.push(() => makeCharacter(
  12193. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12194. {
  12195. front: {
  12196. height: math.unit(6, "feet"),
  12197. weight: math.unit(180, "lb"),
  12198. name: "Front",
  12199. image: {
  12200. source: "./media/characters/renard-thatch/front.svg",
  12201. extra: 2411 / 2275,
  12202. bottom: 0.01
  12203. }
  12204. },
  12205. frontPosing: {
  12206. height: math.unit(6, "feet"),
  12207. weight: math.unit(180, "lb"),
  12208. name: "Front (Posing)",
  12209. image: {
  12210. source: "./media/characters/renard-thatch/front-posing.svg",
  12211. extra: 2381 / 2261,
  12212. bottom: 0.01
  12213. }
  12214. },
  12215. back: {
  12216. height: math.unit(6, "feet"),
  12217. weight: math.unit(180, "lb"),
  12218. name: "Back",
  12219. image: {
  12220. source: "./media/characters/renard-thatch/back.svg",
  12221. extra: 2428 / 2288
  12222. }
  12223. },
  12224. },
  12225. [
  12226. {
  12227. name: "Micro",
  12228. height: math.unit(3, "inches")
  12229. },
  12230. {
  12231. name: "Default",
  12232. height: math.unit(6, "feet"),
  12233. default: true
  12234. },
  12235. {
  12236. name: "Macro",
  12237. height: math.unit(75, "feet")
  12238. },
  12239. ]
  12240. ))
  12241. characterMakers.push(() => makeCharacter(
  12242. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12243. {
  12244. front: {
  12245. height: math.unit(1450, "feet"),
  12246. weight: math.unit(1.21e6, "tons"),
  12247. name: "Front",
  12248. image: {
  12249. source: "./media/characters/sekvra/front.svg",
  12250. extra: 1,
  12251. bottom: 0.03
  12252. }
  12253. },
  12254. frontClothed: {
  12255. height: math.unit(1450, "feet"),
  12256. weight: math.unit(1.21e6, "tons"),
  12257. name: "Front (Clothed)",
  12258. image: {
  12259. source: "./media/characters/sekvra/front-clothed.svg",
  12260. extra: 1,
  12261. bottom: 0.03
  12262. }
  12263. },
  12264. side: {
  12265. height: math.unit(1450, "feet"),
  12266. weight: math.unit(1.21e6, "tons"),
  12267. name: "Side",
  12268. image: {
  12269. source: "./media/characters/sekvra/side.svg",
  12270. extra: 1,
  12271. bottom: 0.025
  12272. }
  12273. },
  12274. back: {
  12275. height: math.unit(1450, "feet"),
  12276. weight: math.unit(1.21e6, "tons"),
  12277. name: "Back",
  12278. image: {
  12279. source: "./media/characters/sekvra/back.svg",
  12280. extra: 1,
  12281. bottom: 0.005
  12282. }
  12283. },
  12284. },
  12285. [
  12286. {
  12287. name: "Macro",
  12288. height: math.unit(1450, "feet"),
  12289. default: true
  12290. },
  12291. {
  12292. name: "Megamacro",
  12293. height: math.unit(15000, "feet")
  12294. },
  12295. ]
  12296. ))
  12297. characterMakers.push(() => makeCharacter(
  12298. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12299. {
  12300. front: {
  12301. height: math.unit(6, "feet"),
  12302. weight: math.unit(150, "lb"),
  12303. name: "Front",
  12304. image: {
  12305. source: "./media/characters/carmine/front.svg",
  12306. extra: 1,
  12307. bottom: 0.035
  12308. }
  12309. },
  12310. frontArmor: {
  12311. height: math.unit(6, "feet"),
  12312. weight: math.unit(150, "lb"),
  12313. name: "Front (Armor)",
  12314. image: {
  12315. source: "./media/characters/carmine/front-armor.svg",
  12316. extra: 1,
  12317. bottom: 0.035
  12318. }
  12319. },
  12320. },
  12321. [
  12322. {
  12323. name: "Large",
  12324. height: math.unit(1, "mile")
  12325. },
  12326. {
  12327. name: "Huge",
  12328. height: math.unit(40, "miles"),
  12329. default: true
  12330. },
  12331. {
  12332. name: "Colossal",
  12333. height: math.unit(2500, "miles")
  12334. },
  12335. ]
  12336. ))
  12337. characterMakers.push(() => makeCharacter(
  12338. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12339. {
  12340. front: {
  12341. height: math.unit(6, "feet"),
  12342. weight: math.unit(150, "lb"),
  12343. name: "Front",
  12344. image: {
  12345. source: "./media/characters/elyssia/front.svg",
  12346. extra: 2201 / 2035,
  12347. bottom: 0.05
  12348. }
  12349. },
  12350. frontClothed: {
  12351. height: math.unit(6, "feet"),
  12352. weight: math.unit(150, "lb"),
  12353. name: "Front (Clothed)",
  12354. image: {
  12355. source: "./media/characters/elyssia/front-clothed.svg",
  12356. extra: 2201 / 2035,
  12357. bottom: 0.05
  12358. }
  12359. },
  12360. back: {
  12361. height: math.unit(6, "feet"),
  12362. weight: math.unit(150, "lb"),
  12363. name: "Back",
  12364. image: {
  12365. source: "./media/characters/elyssia/back.svg",
  12366. extra: 2201 / 2035,
  12367. bottom: 0.013
  12368. }
  12369. },
  12370. },
  12371. [
  12372. {
  12373. name: "Smaller",
  12374. height: math.unit(150, "feet")
  12375. },
  12376. {
  12377. name: "Standard",
  12378. height: math.unit(1400, "feet"),
  12379. default: true
  12380. },
  12381. {
  12382. name: "Distracted",
  12383. height: math.unit(15000, "feet")
  12384. },
  12385. ]
  12386. ))
  12387. characterMakers.push(() => makeCharacter(
  12388. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12389. {
  12390. front: {
  12391. height: math.unit(7 + 4 / 12, "feet"),
  12392. weight: math.unit(500, "lb"),
  12393. name: "Front",
  12394. image: {
  12395. source: "./media/characters/geno-maxwell/front.svg",
  12396. extra: 2207 / 2040,
  12397. bottom: 0.015
  12398. }
  12399. },
  12400. },
  12401. [
  12402. {
  12403. name: "Micro",
  12404. height: math.unit(3, "inches")
  12405. },
  12406. {
  12407. name: "Normal",
  12408. height: math.unit(7 + 4 / 12, "feet"),
  12409. default: true
  12410. },
  12411. {
  12412. name: "Macro",
  12413. height: math.unit(220, "feet")
  12414. },
  12415. {
  12416. name: "Megamacro",
  12417. height: math.unit(11, "miles")
  12418. },
  12419. ]
  12420. ))
  12421. characterMakers.push(() => makeCharacter(
  12422. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12423. {
  12424. front: {
  12425. height: math.unit(7 + 4 / 12, "feet"),
  12426. weight: math.unit(500, "lb"),
  12427. name: "Front",
  12428. image: {
  12429. source: "./media/characters/regena-maxwell/front.svg",
  12430. extra: 3115 / 2770,
  12431. bottom: 0.02
  12432. }
  12433. },
  12434. },
  12435. [
  12436. {
  12437. name: "Normal",
  12438. height: math.unit(7 + 4 / 12, "feet"),
  12439. default: true
  12440. },
  12441. {
  12442. name: "Macro",
  12443. height: math.unit(220, "feet")
  12444. },
  12445. {
  12446. name: "Megamacro",
  12447. height: math.unit(11, "miles")
  12448. },
  12449. ]
  12450. ))
  12451. characterMakers.push(() => makeCharacter(
  12452. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12453. {
  12454. front: {
  12455. height: math.unit(6, "feet"),
  12456. weight: math.unit(150, "lb"),
  12457. name: "Front",
  12458. image: {
  12459. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12460. extra: 860 / 690,
  12461. bottom: 0.03
  12462. }
  12463. },
  12464. },
  12465. [
  12466. {
  12467. name: "Normal",
  12468. height: math.unit(1.7, "meters"),
  12469. default: true
  12470. },
  12471. ]
  12472. ))
  12473. characterMakers.push(() => makeCharacter(
  12474. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12475. {
  12476. front: {
  12477. height: math.unit(6, "feet"),
  12478. weight: math.unit(150, "lb"),
  12479. name: "Front",
  12480. image: {
  12481. source: "./media/characters/quilly/front.svg",
  12482. extra: 890 / 776
  12483. }
  12484. },
  12485. },
  12486. [
  12487. {
  12488. name: "Gigamacro",
  12489. height: math.unit(404090, "miles"),
  12490. default: true
  12491. },
  12492. ]
  12493. ))
  12494. characterMakers.push(() => makeCharacter(
  12495. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12496. {
  12497. front: {
  12498. height: math.unit(7 + 8 / 12, "feet"),
  12499. weight: math.unit(350, "lb"),
  12500. name: "Front",
  12501. image: {
  12502. source: "./media/characters/tempest/front.svg",
  12503. extra: 1175 / 1086,
  12504. bottom: 0.02
  12505. }
  12506. },
  12507. },
  12508. [
  12509. {
  12510. name: "Normal",
  12511. height: math.unit(7 + 8 / 12, "feet"),
  12512. default: true
  12513. },
  12514. ]
  12515. ))
  12516. characterMakers.push(() => makeCharacter(
  12517. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12518. {
  12519. side: {
  12520. height: math.unit(4 + 5 / 12, "feet"),
  12521. weight: math.unit(80, "lb"),
  12522. name: "Side",
  12523. image: {
  12524. source: "./media/characters/rodger/side.svg",
  12525. extra: 1235 / 1118
  12526. }
  12527. },
  12528. },
  12529. [
  12530. {
  12531. name: "Micro",
  12532. height: math.unit(1, "inch")
  12533. },
  12534. {
  12535. name: "Normal",
  12536. height: math.unit(4 + 5 / 12, "feet"),
  12537. default: true
  12538. },
  12539. {
  12540. name: "Macro",
  12541. height: math.unit(120, "feet")
  12542. },
  12543. ]
  12544. ))
  12545. characterMakers.push(() => makeCharacter(
  12546. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12547. {
  12548. front: {
  12549. height: math.unit(6, "feet"),
  12550. weight: math.unit(150, "lb"),
  12551. name: "Front",
  12552. image: {
  12553. source: "./media/characters/danyel/front.svg",
  12554. extra: 1185 / 1123,
  12555. bottom: 0.05
  12556. }
  12557. },
  12558. },
  12559. [
  12560. {
  12561. name: "Shrunken",
  12562. height: math.unit(0.5, "mm")
  12563. },
  12564. {
  12565. name: "Micro",
  12566. height: math.unit(1, "mm"),
  12567. default: true
  12568. },
  12569. {
  12570. name: "Upsized",
  12571. height: math.unit(5 + 5 / 12, "feet")
  12572. },
  12573. ]
  12574. ))
  12575. characterMakers.push(() => makeCharacter(
  12576. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12577. {
  12578. front: {
  12579. height: math.unit(5 + 6 / 12, "feet"),
  12580. weight: math.unit(200, "lb"),
  12581. name: "Front",
  12582. image: {
  12583. source: "./media/characters/vivian-bijoux/front.svg",
  12584. extra: 1,
  12585. bottom: 0.072
  12586. }
  12587. },
  12588. },
  12589. [
  12590. {
  12591. name: "Normal",
  12592. height: math.unit(5 + 6 / 12, "feet"),
  12593. default: true
  12594. },
  12595. {
  12596. name: "Bad Dream",
  12597. height: math.unit(500, "feet")
  12598. },
  12599. {
  12600. name: "Nightmare",
  12601. height: math.unit(500, "miles")
  12602. },
  12603. ]
  12604. ))
  12605. characterMakers.push(() => makeCharacter(
  12606. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12607. {
  12608. front: {
  12609. height: math.unit(6 + 1 / 12, "feet"),
  12610. weight: math.unit(260, "lb"),
  12611. name: "Front",
  12612. image: {
  12613. source: "./media/characters/zeta/front.svg",
  12614. extra: 1968 / 1889,
  12615. bottom: 0.06
  12616. }
  12617. },
  12618. back: {
  12619. height: math.unit(6 + 1 / 12, "feet"),
  12620. weight: math.unit(260, "lb"),
  12621. name: "Back",
  12622. image: {
  12623. source: "./media/characters/zeta/back.svg",
  12624. extra: 1944 / 1858,
  12625. bottom: 0.03
  12626. }
  12627. },
  12628. hand: {
  12629. height: math.unit(1.112, "feet"),
  12630. name: "Hand",
  12631. image: {
  12632. source: "./media/characters/zeta/hand.svg"
  12633. }
  12634. },
  12635. foot: {
  12636. height: math.unit(1.48, "feet"),
  12637. name: "Foot",
  12638. image: {
  12639. source: "./media/characters/zeta/foot.svg"
  12640. }
  12641. },
  12642. },
  12643. [
  12644. {
  12645. name: "Micro",
  12646. height: math.unit(6, "inches")
  12647. },
  12648. {
  12649. name: "Normal",
  12650. height: math.unit(6 + 1 / 12, "feet"),
  12651. default: true
  12652. },
  12653. {
  12654. name: "Macro",
  12655. height: math.unit(20, "feet")
  12656. },
  12657. ]
  12658. ))
  12659. characterMakers.push(() => makeCharacter(
  12660. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12661. {
  12662. front: {
  12663. height: math.unit(6, "feet"),
  12664. weight: math.unit(150, "lb"),
  12665. name: "Front",
  12666. image: {
  12667. source: "./media/characters/jamie-larsen/front.svg",
  12668. extra: 962 / 933,
  12669. bottom: 0.02
  12670. }
  12671. },
  12672. back: {
  12673. height: math.unit(6, "feet"),
  12674. weight: math.unit(150, "lb"),
  12675. name: "Back",
  12676. image: {
  12677. source: "./media/characters/jamie-larsen/back.svg",
  12678. extra: 997 / 946
  12679. }
  12680. },
  12681. },
  12682. [
  12683. {
  12684. name: "Macro",
  12685. height: math.unit(28 + 7 / 12, "feet"),
  12686. default: true
  12687. },
  12688. {
  12689. name: "Macro+",
  12690. height: math.unit(180, "feet")
  12691. },
  12692. {
  12693. name: "Megamacro",
  12694. height: math.unit(10, "miles")
  12695. },
  12696. {
  12697. name: "Gigamacro",
  12698. height: math.unit(200000, "miles")
  12699. },
  12700. ]
  12701. ))
  12702. characterMakers.push(() => makeCharacter(
  12703. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12704. {
  12705. front: {
  12706. height: math.unit(6, "feet"),
  12707. weight: math.unit(120, "lb"),
  12708. name: "Front",
  12709. image: {
  12710. source: "./media/characters/vance/front.svg",
  12711. extra: 1980 / 1890,
  12712. bottom: 0.09
  12713. }
  12714. },
  12715. back: {
  12716. height: math.unit(6, "feet"),
  12717. weight: math.unit(120, "lb"),
  12718. name: "Back",
  12719. image: {
  12720. source: "./media/characters/vance/back.svg",
  12721. extra: 2081 / 1994,
  12722. bottom: 0.014
  12723. }
  12724. },
  12725. hand: {
  12726. height: math.unit(0.88, "feet"),
  12727. name: "Hand",
  12728. image: {
  12729. source: "./media/characters/vance/hand.svg"
  12730. }
  12731. },
  12732. foot: {
  12733. height: math.unit(0.64, "feet"),
  12734. name: "Foot",
  12735. image: {
  12736. source: "./media/characters/vance/foot.svg"
  12737. }
  12738. },
  12739. },
  12740. [
  12741. {
  12742. name: "Small",
  12743. height: math.unit(90, "feet"),
  12744. default: true
  12745. },
  12746. {
  12747. name: "Macro",
  12748. height: math.unit(100, "meters")
  12749. },
  12750. {
  12751. name: "Megamacro",
  12752. height: math.unit(15, "miles")
  12753. },
  12754. ]
  12755. ))
  12756. characterMakers.push(() => makeCharacter(
  12757. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12758. {
  12759. front: {
  12760. height: math.unit(6, "feet"),
  12761. weight: math.unit(180, "lb"),
  12762. name: "Front",
  12763. image: {
  12764. source: "./media/characters/xochitl/front.svg",
  12765. extra: 2297 / 2261,
  12766. bottom: 0.065
  12767. }
  12768. },
  12769. back: {
  12770. height: math.unit(6, "feet"),
  12771. weight: math.unit(180, "lb"),
  12772. name: "Back",
  12773. image: {
  12774. source: "./media/characters/xochitl/back.svg",
  12775. extra: 2386 / 2354,
  12776. bottom: 0.01
  12777. }
  12778. },
  12779. foot: {
  12780. height: math.unit(6 / 5 * 1.15, "feet"),
  12781. weight: math.unit(150, "lb"),
  12782. name: "Foot",
  12783. image: {
  12784. source: "./media/characters/xochitl/foot.svg"
  12785. }
  12786. },
  12787. },
  12788. [
  12789. {
  12790. name: "Macro",
  12791. height: math.unit(80, "feet")
  12792. },
  12793. {
  12794. name: "Macro+",
  12795. height: math.unit(400, "feet"),
  12796. default: true
  12797. },
  12798. {
  12799. name: "Gigamacro",
  12800. height: math.unit(80000, "miles")
  12801. },
  12802. {
  12803. name: "Gigamacro+",
  12804. height: math.unit(400000, "miles")
  12805. },
  12806. {
  12807. name: "Teramacro",
  12808. height: math.unit(300, "AU")
  12809. },
  12810. ]
  12811. ))
  12812. characterMakers.push(() => makeCharacter(
  12813. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12814. {
  12815. front: {
  12816. height: math.unit(6, "feet"),
  12817. weight: math.unit(150, "lb"),
  12818. name: "Front",
  12819. image: {
  12820. source: "./media/characters/vincent/front.svg",
  12821. extra: 1130 / 1080,
  12822. bottom: 0.055
  12823. }
  12824. },
  12825. beak: {
  12826. height: math.unit(6 * 0.1, "feet"),
  12827. name: "Beak",
  12828. image: {
  12829. source: "./media/characters/vincent/beak.svg"
  12830. }
  12831. },
  12832. hand: {
  12833. height: math.unit(6 * 0.85, "feet"),
  12834. weight: math.unit(150, "lb"),
  12835. name: "Hand",
  12836. image: {
  12837. source: "./media/characters/vincent/hand.svg"
  12838. }
  12839. },
  12840. foot: {
  12841. height: math.unit(6 * 0.19, "feet"),
  12842. weight: math.unit(150, "lb"),
  12843. name: "Foot",
  12844. image: {
  12845. source: "./media/characters/vincent/foot.svg"
  12846. }
  12847. },
  12848. },
  12849. [
  12850. {
  12851. name: "Base",
  12852. height: math.unit(6 + 5 / 12, "feet"),
  12853. default: true
  12854. },
  12855. {
  12856. name: "Macro",
  12857. height: math.unit(300, "feet")
  12858. },
  12859. {
  12860. name: "Megamacro",
  12861. height: math.unit(2, "miles")
  12862. },
  12863. {
  12864. name: "Gigamacro",
  12865. height: math.unit(1000, "miles")
  12866. },
  12867. ]
  12868. ))
  12869. characterMakers.push(() => makeCharacter(
  12870. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  12871. {
  12872. front: {
  12873. height: math.unit(6 + 2 / 12, "feet"),
  12874. weight: math.unit(265, "lb"),
  12875. name: "Front",
  12876. image: {
  12877. source: "./media/characters/jay/front.svg",
  12878. extra: 1510 / 1430,
  12879. bottom: 0.042
  12880. }
  12881. },
  12882. back: {
  12883. height: math.unit(6 + 2 / 12, "feet"),
  12884. weight: math.unit(265, "lb"),
  12885. name: "Back",
  12886. image: {
  12887. source: "./media/characters/jay/back.svg",
  12888. extra: 1510 / 1430,
  12889. bottom: 0.025
  12890. }
  12891. },
  12892. clothed: {
  12893. height: math.unit(6 + 2 / 12, "feet"),
  12894. weight: math.unit(265, "lb"),
  12895. name: "Front (Clothed)",
  12896. image: {
  12897. source: "./media/characters/jay/clothed.svg",
  12898. extra: 744 / 699,
  12899. bottom: 0.043
  12900. }
  12901. },
  12902. head: {
  12903. height: math.unit(1.772, "feet"),
  12904. name: "Head",
  12905. image: {
  12906. source: "./media/characters/jay/head.svg"
  12907. }
  12908. },
  12909. sizeRay: {
  12910. height: math.unit(1.331, "feet"),
  12911. name: "Size Ray",
  12912. image: {
  12913. source: "./media/characters/jay/size-ray.svg"
  12914. }
  12915. },
  12916. },
  12917. [
  12918. {
  12919. name: "Micro",
  12920. height: math.unit(1, "inch")
  12921. },
  12922. {
  12923. name: "Normal",
  12924. height: math.unit(6 + 2 / 12, "feet"),
  12925. default: true
  12926. },
  12927. {
  12928. name: "Macro",
  12929. height: math.unit(1, "mile")
  12930. },
  12931. {
  12932. name: "Megamacro",
  12933. height: math.unit(100, "miles")
  12934. },
  12935. ]
  12936. ))
  12937. characterMakers.push(() => makeCharacter(
  12938. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  12939. {
  12940. front: {
  12941. height: math.unit(2, "meters"),
  12942. weight: math.unit(500, "kg"),
  12943. name: "Front",
  12944. image: {
  12945. source: "./media/characters/coatl/front.svg",
  12946. extra: 3948 / 3500,
  12947. bottom: 0.082
  12948. }
  12949. },
  12950. },
  12951. [
  12952. {
  12953. name: "Normal",
  12954. height: math.unit(4, "meters")
  12955. },
  12956. {
  12957. name: "Macro",
  12958. height: math.unit(100, "meters"),
  12959. default: true
  12960. },
  12961. {
  12962. name: "Macro+",
  12963. height: math.unit(300, "meters")
  12964. },
  12965. {
  12966. name: "Megamacro",
  12967. height: math.unit(3, "gigameters")
  12968. },
  12969. {
  12970. name: "Megamacro+",
  12971. height: math.unit(300, "terameters")
  12972. },
  12973. {
  12974. name: "Megamacro++",
  12975. height: math.unit(3, "lightyears")
  12976. },
  12977. ]
  12978. ))
  12979. characterMakers.push(() => makeCharacter(
  12980. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  12981. {
  12982. front: {
  12983. height: math.unit(6, "feet"),
  12984. weight: math.unit(50, "kg"),
  12985. name: "front",
  12986. image: {
  12987. source: "./media/characters/shiroryu/front.svg",
  12988. extra: 1990 / 1935
  12989. }
  12990. },
  12991. },
  12992. [
  12993. {
  12994. name: "Mortal Mingling",
  12995. height: math.unit(3, "meters")
  12996. },
  12997. {
  12998. name: "Kaiju-ish",
  12999. height: math.unit(250, "meters")
  13000. },
  13001. {
  13002. name: "Somewhat Godly",
  13003. height: math.unit(400, "km"),
  13004. default: true
  13005. },
  13006. {
  13007. name: "Planetary",
  13008. height: math.unit(300, "megameters")
  13009. },
  13010. {
  13011. name: "Galaxy-dwarfing",
  13012. height: math.unit(450, "kiloparsecs")
  13013. },
  13014. {
  13015. name: "Universe Eater",
  13016. height: math.unit(150, "gigaparsecs")
  13017. },
  13018. {
  13019. name: "Almost Immeasurable",
  13020. height: math.unit(1.3e266, "yottaparsecs")
  13021. },
  13022. ]
  13023. ))
  13024. characterMakers.push(() => makeCharacter(
  13025. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13026. {
  13027. front: {
  13028. height: math.unit(6, "feet"),
  13029. weight: math.unit(150, "lb"),
  13030. name: "Front",
  13031. image: {
  13032. source: "./media/characters/umeko/front.svg",
  13033. extra: 1,
  13034. bottom: 0.019
  13035. }
  13036. },
  13037. frontArmored: {
  13038. height: math.unit(6, "feet"),
  13039. weight: math.unit(150, "lb"),
  13040. name: "Front (Armored)",
  13041. image: {
  13042. source: "./media/characters/umeko/front-armored.svg",
  13043. extra: 1,
  13044. bottom: 0.021
  13045. }
  13046. },
  13047. },
  13048. [
  13049. {
  13050. name: "Macro",
  13051. height: math.unit(220, "feet"),
  13052. default: true
  13053. },
  13054. {
  13055. name: "Guardian Dragon",
  13056. height: math.unit(50, "miles")
  13057. },
  13058. {
  13059. name: "Cosmic",
  13060. height: math.unit(800000, "miles")
  13061. },
  13062. ]
  13063. ))
  13064. characterMakers.push(() => makeCharacter(
  13065. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13066. {
  13067. front: {
  13068. height: math.unit(6, "feet"),
  13069. weight: math.unit(150, "lb"),
  13070. name: "Front",
  13071. image: {
  13072. source: "./media/characters/cassidy/front.svg",
  13073. extra: 1,
  13074. bottom: 0.043
  13075. }
  13076. },
  13077. },
  13078. [
  13079. {
  13080. name: "Canon Height",
  13081. height: math.unit(120, "feet"),
  13082. default: true
  13083. },
  13084. {
  13085. name: "Macro+",
  13086. height: math.unit(400, "feet")
  13087. },
  13088. {
  13089. name: "Macro++",
  13090. height: math.unit(4000, "feet")
  13091. },
  13092. {
  13093. name: "Megamacro",
  13094. height: math.unit(3, "miles")
  13095. },
  13096. ]
  13097. ))
  13098. characterMakers.push(() => makeCharacter(
  13099. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13100. {
  13101. front: {
  13102. height: math.unit(6, "feet"),
  13103. weight: math.unit(150, "lb"),
  13104. name: "Front",
  13105. image: {
  13106. source: "./media/characters/isaac/front.svg",
  13107. extra: 896 / 815,
  13108. bottom: 0.11
  13109. }
  13110. },
  13111. },
  13112. [
  13113. {
  13114. name: "Human Size",
  13115. height: math.unit(8, "feet"),
  13116. default: true
  13117. },
  13118. {
  13119. name: "Macro",
  13120. height: math.unit(400, "feet")
  13121. },
  13122. {
  13123. name: "Megamacro",
  13124. height: math.unit(50, "miles")
  13125. },
  13126. {
  13127. name: "Canon Height",
  13128. height: math.unit(200, "AU")
  13129. },
  13130. ]
  13131. ))
  13132. characterMakers.push(() => makeCharacter(
  13133. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13134. {
  13135. front: {
  13136. height: math.unit(6, "feet"),
  13137. weight: math.unit(72, "kg"),
  13138. name: "Front",
  13139. image: {
  13140. source: "./media/characters/sleekit/front.svg",
  13141. extra: 4693 / 4487,
  13142. bottom: 0.012
  13143. }
  13144. },
  13145. },
  13146. [
  13147. {
  13148. name: "Minimum Height",
  13149. height: math.unit(10, "meters")
  13150. },
  13151. {
  13152. name: "Smaller",
  13153. height: math.unit(25, "meters")
  13154. },
  13155. {
  13156. name: "Larger",
  13157. height: math.unit(38, "meters"),
  13158. default: true
  13159. },
  13160. {
  13161. name: "Maximum height",
  13162. height: math.unit(100, "meters")
  13163. },
  13164. ]
  13165. ))
  13166. characterMakers.push(() => makeCharacter(
  13167. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13168. {
  13169. front: {
  13170. height: math.unit(6, "feet"),
  13171. weight: math.unit(150, "lb"),
  13172. name: "Front",
  13173. image: {
  13174. source: "./media/characters/nillia/front.svg",
  13175. extra: 2195 / 2037,
  13176. bottom: 0.005
  13177. }
  13178. },
  13179. back: {
  13180. height: math.unit(6, "feet"),
  13181. weight: math.unit(150, "lb"),
  13182. name: "Back",
  13183. image: {
  13184. source: "./media/characters/nillia/back.svg",
  13185. extra: 2195 / 2037,
  13186. bottom: 0.005
  13187. }
  13188. },
  13189. },
  13190. [
  13191. {
  13192. name: "Canon Height",
  13193. height: math.unit(489, "feet"),
  13194. default: true
  13195. }
  13196. ]
  13197. ))
  13198. characterMakers.push(() => makeCharacter(
  13199. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13200. {
  13201. front: {
  13202. height: math.unit(6, "feet"),
  13203. weight: math.unit(150, "lb"),
  13204. name: "Front",
  13205. image: {
  13206. source: "./media/characters/mesmyriza/front.svg",
  13207. extra: 2067 / 1784,
  13208. bottom: 0.035
  13209. }
  13210. },
  13211. foot: {
  13212. height: math.unit(6 / (250 / 35), "feet"),
  13213. name: "Foot",
  13214. image: {
  13215. source: "./media/characters/mesmyriza/foot.svg"
  13216. }
  13217. },
  13218. },
  13219. [
  13220. {
  13221. name: "Macro",
  13222. height: math.unit(457, "meters"),
  13223. default: true
  13224. },
  13225. {
  13226. name: "Megamacro",
  13227. height: math.unit(8, "megameters")
  13228. },
  13229. ]
  13230. ))
  13231. characterMakers.push(() => makeCharacter(
  13232. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13233. {
  13234. front: {
  13235. height: math.unit(6, "feet"),
  13236. weight: math.unit(250, "lb"),
  13237. name: "Front",
  13238. image: {
  13239. source: "./media/characters/saudade/front.svg",
  13240. extra: 1172 / 1139,
  13241. bottom: 0.035
  13242. }
  13243. },
  13244. },
  13245. [
  13246. {
  13247. name: "Micro",
  13248. height: math.unit(3, "inches")
  13249. },
  13250. {
  13251. name: "Normal",
  13252. height: math.unit(6, "feet"),
  13253. default: true
  13254. },
  13255. {
  13256. name: "Macro",
  13257. height: math.unit(50, "feet")
  13258. },
  13259. {
  13260. name: "Megamacro",
  13261. height: math.unit(2800, "feet")
  13262. },
  13263. ]
  13264. ))
  13265. characterMakers.push(() => makeCharacter(
  13266. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13267. {
  13268. front: {
  13269. height: math.unit(5 + 4 / 12, "feet"),
  13270. weight: math.unit(100, "lb"),
  13271. name: "Front",
  13272. image: {
  13273. source: "./media/characters/keireer/front.svg",
  13274. extra: 716 / 666,
  13275. bottom: 0.05
  13276. }
  13277. },
  13278. },
  13279. [
  13280. {
  13281. name: "Normal",
  13282. height: math.unit(5 + 4 / 12, "feet"),
  13283. default: true
  13284. },
  13285. ]
  13286. ))
  13287. characterMakers.push(() => makeCharacter(
  13288. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13289. {
  13290. front: {
  13291. height: math.unit(6, "feet"),
  13292. weight: math.unit(90, "kg"),
  13293. name: "Front",
  13294. image: {
  13295. source: "./media/characters/mirja/front.svg",
  13296. extra: 1789 / 1683,
  13297. bottom: 0.05
  13298. }
  13299. },
  13300. frontDressed: {
  13301. height: math.unit(6, "feet"),
  13302. weight: math.unit(90, "lb"),
  13303. name: "Front (Dressed)",
  13304. image: {
  13305. source: "./media/characters/mirja/front-dressed.svg",
  13306. extra: 1789 / 1683,
  13307. bottom: 0.05
  13308. }
  13309. },
  13310. back: {
  13311. height: math.unit(6, "feet"),
  13312. weight: math.unit(90, "lb"),
  13313. name: "Back",
  13314. image: {
  13315. source: "./media/characters/mirja/back.svg",
  13316. extra: 953 / 917,
  13317. bottom: 0.017
  13318. }
  13319. },
  13320. },
  13321. [
  13322. {
  13323. name: "\"Incognito\"",
  13324. height: math.unit(3, "meters")
  13325. },
  13326. {
  13327. name: "Strolling Size",
  13328. height: math.unit(15, "km")
  13329. },
  13330. {
  13331. name: "Larger Strolling Size",
  13332. height: math.unit(400, "km")
  13333. },
  13334. {
  13335. name: "Preferred Size",
  13336. height: math.unit(5000, "km")
  13337. },
  13338. {
  13339. name: "True Size",
  13340. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13341. default: true
  13342. },
  13343. ]
  13344. ))
  13345. characterMakers.push(() => makeCharacter(
  13346. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13347. {
  13348. front: {
  13349. height: math.unit(15, "feet"),
  13350. weight: math.unit(880, "kg"),
  13351. name: "Front",
  13352. image: {
  13353. source: "./media/characters/nightraver/front.svg",
  13354. extra: 2444 / 2160,
  13355. bottom: 0.027
  13356. }
  13357. },
  13358. back: {
  13359. height: math.unit(15, "feet"),
  13360. weight: math.unit(880, "kg"),
  13361. name: "Back",
  13362. image: {
  13363. source: "./media/characters/nightraver/back.svg",
  13364. extra: 2309 / 2180,
  13365. bottom: 0.005
  13366. }
  13367. },
  13368. sole: {
  13369. height: math.unit(2.878, "feet"),
  13370. name: "Sole",
  13371. image: {
  13372. source: "./media/characters/nightraver/sole.svg"
  13373. }
  13374. },
  13375. foot: {
  13376. height: math.unit(2.285, "feet"),
  13377. name: "Foot",
  13378. image: {
  13379. source: "./media/characters/nightraver/foot.svg"
  13380. }
  13381. },
  13382. maw: {
  13383. height: math.unit(2.67, "feet"),
  13384. name: "Maw",
  13385. image: {
  13386. source: "./media/characters/nightraver/maw.svg"
  13387. }
  13388. },
  13389. },
  13390. [
  13391. {
  13392. name: "Micro",
  13393. height: math.unit(1, "cm")
  13394. },
  13395. {
  13396. name: "Normal",
  13397. height: math.unit(15, "feet"),
  13398. default: true
  13399. },
  13400. {
  13401. name: "Macro",
  13402. height: math.unit(300, "feet")
  13403. },
  13404. {
  13405. name: "Megamacro",
  13406. height: math.unit(300, "miles")
  13407. },
  13408. {
  13409. name: "Gigamacro",
  13410. height: math.unit(10000, "miles")
  13411. },
  13412. ]
  13413. ))
  13414. characterMakers.push(() => makeCharacter(
  13415. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13416. {
  13417. side: {
  13418. height: math.unit(2, "inches"),
  13419. weight: math.unit(5, "grams"),
  13420. name: "Side",
  13421. image: {
  13422. source: "./media/characters/arc/side.svg"
  13423. }
  13424. },
  13425. },
  13426. [
  13427. {
  13428. name: "Micro",
  13429. height: math.unit(2, "inches"),
  13430. default: true
  13431. },
  13432. ]
  13433. ))
  13434. characterMakers.push(() => makeCharacter(
  13435. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13436. {
  13437. front: {
  13438. height: math.unit(1.1938, "meters"),
  13439. weight: math.unit(54, "kg"),
  13440. name: "Front",
  13441. image: {
  13442. source: "./media/characters/nebula-shahar/front.svg",
  13443. extra: 1642 / 1436,
  13444. bottom: 0.06
  13445. }
  13446. },
  13447. },
  13448. [
  13449. {
  13450. name: "Megamicro",
  13451. height: math.unit(0.3, "mm")
  13452. },
  13453. {
  13454. name: "Micro",
  13455. height: math.unit(3, "cm")
  13456. },
  13457. {
  13458. name: "Normal",
  13459. height: math.unit(138, "cm"),
  13460. default: true
  13461. },
  13462. {
  13463. name: "Macro",
  13464. height: math.unit(30, "m")
  13465. },
  13466. ]
  13467. ))
  13468. characterMakers.push(() => makeCharacter(
  13469. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13470. {
  13471. front: {
  13472. height: math.unit(5.24, "feet"),
  13473. weight: math.unit(150, "lb"),
  13474. name: "Front",
  13475. image: {
  13476. source: "./media/characters/shayla/front.svg",
  13477. extra: 1512 / 1414,
  13478. bottom: 0.01
  13479. }
  13480. },
  13481. back: {
  13482. height: math.unit(5.24, "feet"),
  13483. weight: math.unit(150, "lb"),
  13484. name: "Back",
  13485. image: {
  13486. source: "./media/characters/shayla/back.svg",
  13487. extra: 1512 / 1414
  13488. }
  13489. },
  13490. hand: {
  13491. height: math.unit(0.7781496062992126, "feet"),
  13492. name: "Hand",
  13493. image: {
  13494. source: "./media/characters/shayla/hand.svg"
  13495. }
  13496. },
  13497. foot: {
  13498. height: math.unit(1.4206036745406823, "feet"),
  13499. name: "Foot",
  13500. image: {
  13501. source: "./media/characters/shayla/foot.svg"
  13502. }
  13503. },
  13504. },
  13505. [
  13506. {
  13507. name: "Micro",
  13508. height: math.unit(0.32, "feet")
  13509. },
  13510. {
  13511. name: "Normal",
  13512. height: math.unit(5.24, "feet"),
  13513. default: true
  13514. },
  13515. {
  13516. name: "Macro",
  13517. height: math.unit(492.12, "feet")
  13518. },
  13519. {
  13520. name: "Megamacro",
  13521. height: math.unit(186.41, "miles")
  13522. },
  13523. ]
  13524. ))
  13525. characterMakers.push(() => makeCharacter(
  13526. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13527. {
  13528. front: {
  13529. height: math.unit(2.2, "m"),
  13530. weight: math.unit(120, "kg"),
  13531. name: "Front",
  13532. image: {
  13533. source: "./media/characters/pia-jr/front.svg",
  13534. extra: 1000 / 970,
  13535. bottom: 0.035
  13536. }
  13537. },
  13538. hand: {
  13539. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13540. name: "Hand",
  13541. image: {
  13542. source: "./media/characters/pia-jr/hand.svg"
  13543. }
  13544. },
  13545. paw: {
  13546. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13547. name: "Paw",
  13548. image: {
  13549. source: "./media/characters/pia-jr/paw.svg"
  13550. }
  13551. },
  13552. },
  13553. [
  13554. {
  13555. name: "Micro",
  13556. height: math.unit(1.2, "cm")
  13557. },
  13558. {
  13559. name: "Normal",
  13560. height: math.unit(2.2, "m"),
  13561. default: true
  13562. },
  13563. {
  13564. name: "Macro",
  13565. height: math.unit(180, "m")
  13566. },
  13567. {
  13568. name: "Megamacro",
  13569. height: math.unit(420, "km")
  13570. },
  13571. ]
  13572. ))
  13573. characterMakers.push(() => makeCharacter(
  13574. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13575. {
  13576. front: {
  13577. height: math.unit(2, "m"),
  13578. weight: math.unit(115, "kg"),
  13579. name: "Front",
  13580. image: {
  13581. source: "./media/characters/pia-sr/front.svg",
  13582. extra: 760 / 730,
  13583. bottom: 0.015
  13584. }
  13585. },
  13586. back: {
  13587. height: math.unit(2, "m"),
  13588. weight: math.unit(115, "kg"),
  13589. name: "Back",
  13590. image: {
  13591. source: "./media/characters/pia-sr/back.svg",
  13592. extra: 760 / 730,
  13593. bottom: 0.01
  13594. }
  13595. },
  13596. hand: {
  13597. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13598. name: "Hand",
  13599. image: {
  13600. source: "./media/characters/pia-sr/hand.svg"
  13601. }
  13602. },
  13603. foot: {
  13604. height: math.unit(1.83, "feet"),
  13605. name: "Foot",
  13606. image: {
  13607. source: "./media/characters/pia-sr/foot.svg"
  13608. }
  13609. },
  13610. },
  13611. [
  13612. {
  13613. name: "Micro",
  13614. height: math.unit(88, "mm")
  13615. },
  13616. {
  13617. name: "Normal",
  13618. height: math.unit(2, "m"),
  13619. default: true
  13620. },
  13621. {
  13622. name: "Macro",
  13623. height: math.unit(200, "m")
  13624. },
  13625. {
  13626. name: "Megamacro",
  13627. height: math.unit(420, "km")
  13628. },
  13629. ]
  13630. ))
  13631. characterMakers.push(() => makeCharacter(
  13632. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13633. {
  13634. front: {
  13635. height: math.unit(8 + 2 / 12, "feet"),
  13636. weight: math.unit(300, "lb"),
  13637. name: "Front",
  13638. image: {
  13639. source: "./media/characters/kibibyte/front.svg",
  13640. extra: 2221 / 2098,
  13641. bottom: 0.04
  13642. }
  13643. },
  13644. },
  13645. [
  13646. {
  13647. name: "Normal",
  13648. height: math.unit(8 + 2 / 12, "feet"),
  13649. default: true
  13650. },
  13651. {
  13652. name: "Socialable Macro",
  13653. height: math.unit(50, "feet")
  13654. },
  13655. {
  13656. name: "Macro",
  13657. height: math.unit(300, "feet")
  13658. },
  13659. {
  13660. name: "Megamacro",
  13661. height: math.unit(500, "miles")
  13662. },
  13663. ]
  13664. ))
  13665. characterMakers.push(() => makeCharacter(
  13666. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13667. {
  13668. front: {
  13669. height: math.unit(6, "feet"),
  13670. weight: math.unit(150, "lb"),
  13671. name: "Front",
  13672. image: {
  13673. source: "./media/characters/felix/front.svg",
  13674. extra: 762 / 722,
  13675. bottom: 0.02
  13676. }
  13677. },
  13678. frontClothed: {
  13679. height: math.unit(6, "feet"),
  13680. weight: math.unit(150, "lb"),
  13681. name: "Front (Clothed)",
  13682. image: {
  13683. source: "./media/characters/felix/front-clothed.svg",
  13684. extra: 762 / 722,
  13685. bottom: 0.02
  13686. }
  13687. },
  13688. },
  13689. [
  13690. {
  13691. name: "Normal",
  13692. height: math.unit(6 + 8 / 12, "feet"),
  13693. default: true
  13694. },
  13695. {
  13696. name: "Macro",
  13697. height: math.unit(2600, "feet")
  13698. },
  13699. {
  13700. name: "Megamacro",
  13701. height: math.unit(450, "miles")
  13702. },
  13703. ]
  13704. ))
  13705. characterMakers.push(() => makeCharacter(
  13706. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13707. {
  13708. front: {
  13709. height: math.unit(6 + 1 / 12, "feet"),
  13710. weight: math.unit(250, "lb"),
  13711. name: "Front",
  13712. image: {
  13713. source: "./media/characters/tobo/front.svg",
  13714. extra: 608 / 586,
  13715. bottom: 0.023
  13716. }
  13717. },
  13718. back: {
  13719. height: math.unit(6 + 1 / 12, "feet"),
  13720. weight: math.unit(250, "lb"),
  13721. name: "Back",
  13722. image: {
  13723. source: "./media/characters/tobo/back.svg",
  13724. extra: 608 / 586
  13725. }
  13726. },
  13727. },
  13728. [
  13729. {
  13730. name: "Nano",
  13731. height: math.unit(2, "nm")
  13732. },
  13733. {
  13734. name: "Megamicro",
  13735. height: math.unit(0.1, "mm")
  13736. },
  13737. {
  13738. name: "Micro",
  13739. height: math.unit(1, "inch"),
  13740. default: true
  13741. },
  13742. {
  13743. name: "Human-sized",
  13744. height: math.unit(6 + 1 / 12, "feet")
  13745. },
  13746. {
  13747. name: "Macro",
  13748. height: math.unit(250, "feet")
  13749. },
  13750. {
  13751. name: "Megamacro",
  13752. height: math.unit(75, "miles")
  13753. },
  13754. {
  13755. name: "Texas-sized",
  13756. height: math.unit(750, "miles")
  13757. },
  13758. {
  13759. name: "Teramacro",
  13760. height: math.unit(50000, "miles")
  13761. },
  13762. ]
  13763. ))
  13764. characterMakers.push(() => makeCharacter(
  13765. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13766. {
  13767. front: {
  13768. height: math.unit(6, "feet"),
  13769. weight: math.unit(269, "lb"),
  13770. name: "Front",
  13771. image: {
  13772. source: "./media/characters/danny-kapowsky/front.svg",
  13773. extra: 766 / 736,
  13774. bottom: 0.044
  13775. }
  13776. },
  13777. back: {
  13778. height: math.unit(6, "feet"),
  13779. weight: math.unit(269, "lb"),
  13780. name: "Back",
  13781. image: {
  13782. source: "./media/characters/danny-kapowsky/back.svg",
  13783. extra: 797 / 760,
  13784. bottom: 0.025
  13785. }
  13786. },
  13787. },
  13788. [
  13789. {
  13790. name: "Macro",
  13791. height: math.unit(150, "feet"),
  13792. default: true
  13793. },
  13794. {
  13795. name: "Macro+",
  13796. height: math.unit(200, "feet")
  13797. },
  13798. {
  13799. name: "Macro++",
  13800. height: math.unit(300, "feet")
  13801. },
  13802. {
  13803. name: "Macro+++",
  13804. height: math.unit(400, "feet")
  13805. },
  13806. ]
  13807. ))
  13808. characterMakers.push(() => makeCharacter(
  13809. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13810. {
  13811. side: {
  13812. height: math.unit(6, "feet"),
  13813. weight: math.unit(170, "lb"),
  13814. name: "Side",
  13815. image: {
  13816. source: "./media/characters/finn/side.svg",
  13817. extra: 1953 / 1807,
  13818. bottom: 0.057
  13819. }
  13820. },
  13821. },
  13822. [
  13823. {
  13824. name: "Megamacro",
  13825. height: math.unit(14445, "feet"),
  13826. default: true
  13827. },
  13828. ]
  13829. ))
  13830. characterMakers.push(() => makeCharacter(
  13831. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13832. {
  13833. front: {
  13834. height: math.unit(5 + 6 / 12, "feet"),
  13835. weight: math.unit(125, "lb"),
  13836. name: "Front",
  13837. image: {
  13838. source: "./media/characters/roy/front.svg",
  13839. extra: 1,
  13840. bottom: 0.11
  13841. }
  13842. },
  13843. },
  13844. [
  13845. {
  13846. name: "Micro",
  13847. height: math.unit(3, "inches"),
  13848. default: true
  13849. },
  13850. {
  13851. name: "Normal",
  13852. height: math.unit(5 + 6 / 12, "feet")
  13853. },
  13854. {
  13855. name: "Lesser Macro",
  13856. height: math.unit(60, "feet")
  13857. },
  13858. {
  13859. name: "Greater Macro",
  13860. height: math.unit(120, "feet")
  13861. },
  13862. ]
  13863. ))
  13864. characterMakers.push(() => makeCharacter(
  13865. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  13866. {
  13867. front: {
  13868. height: math.unit(6, "feet"),
  13869. weight: math.unit(100, "lb"),
  13870. name: "Front",
  13871. image: {
  13872. source: "./media/characters/aevsivs/front.svg",
  13873. extra: 1,
  13874. bottom: 0.03
  13875. }
  13876. },
  13877. back: {
  13878. height: math.unit(6, "feet"),
  13879. weight: math.unit(100, "lb"),
  13880. name: "Back",
  13881. image: {
  13882. source: "./media/characters/aevsivs/back.svg"
  13883. }
  13884. },
  13885. },
  13886. [
  13887. {
  13888. name: "Micro",
  13889. height: math.unit(2, "inches"),
  13890. default: true
  13891. },
  13892. {
  13893. name: "Normal",
  13894. height: math.unit(5, "feet")
  13895. },
  13896. ]
  13897. ))
  13898. characterMakers.push(() => makeCharacter(
  13899. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  13900. {
  13901. front: {
  13902. height: math.unit(5 + 7 / 12, "feet"),
  13903. weight: math.unit(159, "lb"),
  13904. name: "Front",
  13905. image: {
  13906. source: "./media/characters/hildegard/front.svg",
  13907. extra: 289 / 269,
  13908. bottom: 7.63/297.8
  13909. }
  13910. },
  13911. back: {
  13912. height: math.unit(5 + 7 / 12, "feet"),
  13913. weight: math.unit(159, "lb"),
  13914. name: "Back",
  13915. image: {
  13916. source: "./media/characters/hildegard/back.svg",
  13917. extra: 280/260,
  13918. bottom: 2.3/282
  13919. }
  13920. },
  13921. },
  13922. [
  13923. {
  13924. name: "Normal",
  13925. height: math.unit(5 + 7 / 12, "feet"),
  13926. default: true
  13927. },
  13928. ]
  13929. ))
  13930. characterMakers.push(() => makeCharacter(
  13931. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  13932. {
  13933. bernard: {
  13934. height: math.unit(2 + 7 / 12, "feet"),
  13935. weight: math.unit(66, "lb"),
  13936. name: "Bernard",
  13937. rename: true,
  13938. image: {
  13939. source: "./media/characters/bernard-wilder/bernard.svg",
  13940. extra: 192 / 128,
  13941. bottom: 0.05
  13942. }
  13943. },
  13944. wilder: {
  13945. height: math.unit(5 + 8 / 12, "feet"),
  13946. weight: math.unit(143, "lb"),
  13947. name: "Wilder",
  13948. rename: true,
  13949. image: {
  13950. source: "./media/characters/bernard-wilder/wilder.svg",
  13951. extra: 361 / 312,
  13952. bottom: 0.02
  13953. }
  13954. },
  13955. },
  13956. [
  13957. {
  13958. name: "Normal",
  13959. height: math.unit(2 + 7 / 12, "feet"),
  13960. default: true
  13961. },
  13962. ]
  13963. ))
  13964. characterMakers.push(() => makeCharacter(
  13965. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  13966. {
  13967. anthro: {
  13968. height: math.unit(6 + 1 / 12, "feet"),
  13969. weight: math.unit(155, "lb"),
  13970. name: "Anthro",
  13971. image: {
  13972. source: "./media/characters/hearth/anthro.svg",
  13973. extra: 260 / 250,
  13974. bottom: 0.02
  13975. }
  13976. },
  13977. feral: {
  13978. height: math.unit(3.78, "feet"),
  13979. weight: math.unit(35, "kg"),
  13980. name: "Feral",
  13981. image: {
  13982. source: "./media/characters/hearth/feral.svg",
  13983. extra: 153 / 135,
  13984. bottom: 0.03
  13985. }
  13986. },
  13987. },
  13988. [
  13989. {
  13990. name: "Normal",
  13991. height: math.unit(6 + 1 / 12, "feet"),
  13992. default: true
  13993. },
  13994. ]
  13995. ))
  13996. characterMakers.push(() => makeCharacter(
  13997. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  13998. {
  13999. front: {
  14000. height: math.unit(6, "feet"),
  14001. weight: math.unit(182, "lb"),
  14002. name: "Front",
  14003. image: {
  14004. source: "./media/characters/ingrid/front.svg",
  14005. extra: 294 / 268,
  14006. bottom: 0.027
  14007. }
  14008. },
  14009. },
  14010. [
  14011. {
  14012. name: "Normal",
  14013. height: math.unit(6, "feet"),
  14014. default: true
  14015. },
  14016. ]
  14017. ))
  14018. characterMakers.push(() => makeCharacter(
  14019. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14020. {
  14021. eevee: {
  14022. height: math.unit(2 + 10 / 12, "feet"),
  14023. weight: math.unit(86, "lb"),
  14024. name: "Malgam",
  14025. image: {
  14026. source: "./media/characters/malgam/eevee.svg",
  14027. extra: 218 / 180,
  14028. bottom: 0.2
  14029. }
  14030. },
  14031. sylveon: {
  14032. height: math.unit(4, "feet"),
  14033. weight: math.unit(101, "lb"),
  14034. name: "Future Malgam",
  14035. rename: true,
  14036. image: {
  14037. source: "./media/characters/malgam/sylveon.svg",
  14038. extra: 371 / 325,
  14039. bottom: 0.015
  14040. }
  14041. },
  14042. gigantamax: {
  14043. height: math.unit(50, "feet"),
  14044. name: "Gigantamax Malgam",
  14045. rename: true,
  14046. image: {
  14047. source: "./media/characters/malgam/gigantamax.svg"
  14048. }
  14049. },
  14050. },
  14051. [
  14052. {
  14053. name: "Normal",
  14054. height: math.unit(2 + 10 / 12, "feet"),
  14055. default: true
  14056. },
  14057. ]
  14058. ))
  14059. characterMakers.push(() => makeCharacter(
  14060. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14061. {
  14062. front: {
  14063. height: math.unit(5 + 11 / 12, "feet"),
  14064. weight: math.unit(188, "lb"),
  14065. name: "Front",
  14066. image: {
  14067. source: "./media/characters/fleur/front.svg",
  14068. extra: 309 / 283,
  14069. bottom: 0.007
  14070. }
  14071. },
  14072. },
  14073. [
  14074. {
  14075. name: "Normal",
  14076. height: math.unit(5 + 11 / 12, "feet"),
  14077. default: true
  14078. },
  14079. ]
  14080. ))
  14081. characterMakers.push(() => makeCharacter(
  14082. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14083. {
  14084. front: {
  14085. height: math.unit(5 + 4 / 12, "feet"),
  14086. weight: math.unit(122, "lb"),
  14087. name: "Front",
  14088. image: {
  14089. source: "./media/characters/jude/front.svg",
  14090. extra: 288 / 273,
  14091. bottom: 0.03
  14092. }
  14093. },
  14094. },
  14095. [
  14096. {
  14097. name: "Normal",
  14098. height: math.unit(5 + 4 / 12, "feet"),
  14099. default: true
  14100. },
  14101. ]
  14102. ))
  14103. characterMakers.push(() => makeCharacter(
  14104. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14105. {
  14106. front: {
  14107. height: math.unit(5 + 11 / 12, "feet"),
  14108. weight: math.unit(190, "lb"),
  14109. name: "Front",
  14110. image: {
  14111. source: "./media/characters/seara/front.svg",
  14112. extra: 1,
  14113. bottom: 0.05
  14114. }
  14115. },
  14116. },
  14117. [
  14118. {
  14119. name: "Normal",
  14120. height: math.unit(5 + 11 / 12, "feet"),
  14121. default: true
  14122. },
  14123. ]
  14124. ))
  14125. characterMakers.push(() => makeCharacter(
  14126. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14127. {
  14128. front: {
  14129. height: math.unit(16 + 5 / 12, "feet"),
  14130. weight: math.unit(524, "lb"),
  14131. name: "Front",
  14132. image: {
  14133. source: "./media/characters/caspian/front.svg",
  14134. extra: 1,
  14135. bottom: 0.04
  14136. }
  14137. },
  14138. },
  14139. [
  14140. {
  14141. name: "Normal",
  14142. height: math.unit(16 + 5 / 12, "feet"),
  14143. default: true
  14144. },
  14145. ]
  14146. ))
  14147. characterMakers.push(() => makeCharacter(
  14148. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14149. {
  14150. front: {
  14151. height: math.unit(5 + 7 / 12, "feet"),
  14152. weight: math.unit(170, "lb"),
  14153. name: "Front",
  14154. image: {
  14155. source: "./media/characters/mika/front.svg",
  14156. extra: 1,
  14157. bottom: 0.016
  14158. }
  14159. },
  14160. },
  14161. [
  14162. {
  14163. name: "Normal",
  14164. height: math.unit(5 + 7 / 12, "feet"),
  14165. default: true
  14166. },
  14167. ]
  14168. ))
  14169. characterMakers.push(() => makeCharacter(
  14170. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14171. {
  14172. front: {
  14173. height: math.unit(6 + 2 / 12, "feet"),
  14174. weight: math.unit(268, "lb"),
  14175. name: "Front",
  14176. image: {
  14177. source: "./media/characters/sol/front.svg",
  14178. extra: 247 / 231,
  14179. bottom: 0.05
  14180. }
  14181. },
  14182. },
  14183. [
  14184. {
  14185. name: "Normal",
  14186. height: math.unit(6 + 2 / 12, "feet"),
  14187. default: true
  14188. },
  14189. ]
  14190. ))
  14191. characterMakers.push(() => makeCharacter(
  14192. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14193. {
  14194. buizel: {
  14195. height: math.unit(2 + 5 / 12, "feet"),
  14196. weight: math.unit(87, "lb"),
  14197. name: "Buizel",
  14198. image: {
  14199. source: "./media/characters/umiko/buizel.svg",
  14200. extra: 172 / 157,
  14201. bottom: 0.01
  14202. }
  14203. },
  14204. floatzel: {
  14205. height: math.unit(5 + 9 / 12, "feet"),
  14206. weight: math.unit(250, "lb"),
  14207. name: "Floatzel",
  14208. image: {
  14209. source: "./media/characters/umiko/floatzel.svg",
  14210. extra: 262 / 248
  14211. }
  14212. },
  14213. },
  14214. [
  14215. {
  14216. name: "Normal",
  14217. height: math.unit(2 + 5 / 12, "feet"),
  14218. default: true
  14219. },
  14220. ]
  14221. ))
  14222. characterMakers.push(() => makeCharacter(
  14223. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14224. {
  14225. front: {
  14226. height: math.unit(6 + 2 / 12, "feet"),
  14227. weight: math.unit(146, "lb"),
  14228. name: "Front",
  14229. image: {
  14230. source: "./media/characters/iliac/front.svg",
  14231. extra: 389 / 365,
  14232. bottom: 0.035
  14233. }
  14234. },
  14235. },
  14236. [
  14237. {
  14238. name: "Normal",
  14239. height: math.unit(6 + 2 / 12, "feet"),
  14240. default: true
  14241. },
  14242. ]
  14243. ))
  14244. characterMakers.push(() => makeCharacter(
  14245. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14246. {
  14247. front: {
  14248. height: math.unit(6, "feet"),
  14249. weight: math.unit(170, "lb"),
  14250. name: "Front",
  14251. image: {
  14252. source: "./media/characters/topaz/front.svg",
  14253. extra: 317 / 303,
  14254. bottom: 0.055
  14255. }
  14256. },
  14257. },
  14258. [
  14259. {
  14260. name: "Normal",
  14261. height: math.unit(6, "feet"),
  14262. default: true
  14263. },
  14264. ]
  14265. ))
  14266. characterMakers.push(() => makeCharacter(
  14267. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14268. {
  14269. front: {
  14270. height: math.unit(5 + 11 / 12, "feet"),
  14271. weight: math.unit(144, "lb"),
  14272. name: "Front",
  14273. image: {
  14274. source: "./media/characters/gabriel/front.svg",
  14275. extra: 285 / 262,
  14276. bottom: 0.004
  14277. }
  14278. },
  14279. },
  14280. [
  14281. {
  14282. name: "Normal",
  14283. height: math.unit(5 + 11 / 12, "feet"),
  14284. default: true
  14285. },
  14286. ]
  14287. ))
  14288. characterMakers.push(() => makeCharacter(
  14289. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14290. {
  14291. side: {
  14292. height: math.unit(6 + 5 / 12, "feet"),
  14293. weight: math.unit(300, "lb"),
  14294. name: "Side",
  14295. image: {
  14296. source: "./media/characters/tempest-suicune/side.svg",
  14297. extra: 195 / 154,
  14298. bottom: 0.04
  14299. }
  14300. },
  14301. },
  14302. [
  14303. {
  14304. name: "Normal",
  14305. height: math.unit(6 + 5 / 12, "feet"),
  14306. default: true
  14307. },
  14308. ]
  14309. ))
  14310. characterMakers.push(() => makeCharacter(
  14311. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14312. {
  14313. front: {
  14314. height: math.unit(7 + 2 / 12, "feet"),
  14315. weight: math.unit(322, "lb"),
  14316. name: "Front",
  14317. image: {
  14318. source: "./media/characters/vulcan/front.svg",
  14319. extra: 154 / 147,
  14320. bottom: 0.04
  14321. }
  14322. },
  14323. },
  14324. [
  14325. {
  14326. name: "Normal",
  14327. height: math.unit(7 + 2 / 12, "feet"),
  14328. default: true
  14329. },
  14330. ]
  14331. ))
  14332. characterMakers.push(() => makeCharacter(
  14333. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14334. {
  14335. front: {
  14336. height: math.unit(5 + 10 / 12, "feet"),
  14337. weight: math.unit(264, "lb"),
  14338. name: "Front",
  14339. image: {
  14340. source: "./media/characters/gault/front.svg",
  14341. extra: 161 / 140,
  14342. bottom: 0.028
  14343. }
  14344. },
  14345. },
  14346. [
  14347. {
  14348. name: "Normal",
  14349. height: math.unit(5 + 10 / 12, "feet"),
  14350. default: true
  14351. },
  14352. ]
  14353. ))
  14354. characterMakers.push(() => makeCharacter(
  14355. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14356. {
  14357. front: {
  14358. height: math.unit(6, "feet"),
  14359. weight: math.unit(150, "lb"),
  14360. name: "Front",
  14361. image: {
  14362. source: "./media/characters/shard/front.svg",
  14363. extra: 273 / 238,
  14364. bottom: 0.02
  14365. }
  14366. },
  14367. },
  14368. [
  14369. {
  14370. name: "Normal",
  14371. height: math.unit(3 + 6 / 12, "feet"),
  14372. default: true
  14373. },
  14374. ]
  14375. ))
  14376. characterMakers.push(() => makeCharacter(
  14377. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14378. {
  14379. front: {
  14380. height: math.unit(5 + 11 / 12, "feet"),
  14381. weight: math.unit(146, "lb"),
  14382. name: "Front",
  14383. image: {
  14384. source: "./media/characters/ashe/front.svg",
  14385. extra: 400 / 373,
  14386. bottom: 0.01
  14387. }
  14388. },
  14389. },
  14390. [
  14391. {
  14392. name: "Normal",
  14393. height: math.unit(5 + 11 / 12, "feet"),
  14394. default: true
  14395. },
  14396. ]
  14397. ))
  14398. characterMakers.push(() => makeCharacter(
  14399. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14400. {
  14401. front: {
  14402. height: math.unit(5 + 5 / 12, "feet"),
  14403. weight: math.unit(135, "lb"),
  14404. name: "Front",
  14405. image: {
  14406. source: "./media/characters/beatrix/front.svg",
  14407. extra: 392 / 379,
  14408. bottom: 0.01
  14409. }
  14410. },
  14411. },
  14412. [
  14413. {
  14414. name: "Normal",
  14415. height: math.unit(6, "feet"),
  14416. default: true
  14417. },
  14418. ]
  14419. ))
  14420. characterMakers.push(() => makeCharacter(
  14421. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14422. {
  14423. front: {
  14424. height: math.unit(6, "feet"),
  14425. weight: math.unit(150, "lb"),
  14426. name: "Front",
  14427. image: {
  14428. source: "./media/characters/ignatius/front.svg",
  14429. extra: 245 / 222,
  14430. bottom: 0.01
  14431. }
  14432. },
  14433. },
  14434. [
  14435. {
  14436. name: "Normal",
  14437. height: math.unit(5 + 5 / 12, "feet"),
  14438. default: true
  14439. },
  14440. ]
  14441. ))
  14442. characterMakers.push(() => makeCharacter(
  14443. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14444. {
  14445. front: {
  14446. height: math.unit(6 + 2 / 12, "feet"),
  14447. weight: math.unit(138, "lb"),
  14448. name: "Front",
  14449. image: {
  14450. source: "./media/characters/mei-li/front.svg",
  14451. extra: 237 / 229,
  14452. bottom: 0.03
  14453. }
  14454. },
  14455. },
  14456. [
  14457. {
  14458. name: "Normal",
  14459. height: math.unit(6 + 2 / 12, "feet"),
  14460. default: true
  14461. },
  14462. ]
  14463. ))
  14464. characterMakers.push(() => makeCharacter(
  14465. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14466. {
  14467. front: {
  14468. height: math.unit(2 + 4 / 12, "feet"),
  14469. weight: math.unit(62, "lb"),
  14470. name: "Front",
  14471. image: {
  14472. source: "./media/characters/puru/front.svg",
  14473. extra: 206 / 149,
  14474. bottom: 0.06
  14475. }
  14476. },
  14477. },
  14478. [
  14479. {
  14480. name: "Normal",
  14481. height: math.unit(2 + 4 / 12, "feet"),
  14482. default: true
  14483. },
  14484. ]
  14485. ))
  14486. characterMakers.push(() => makeCharacter(
  14487. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14488. {
  14489. taur: {
  14490. height: math.unit(11, "feet"),
  14491. weight: math.unit(500, "lb"),
  14492. name: "Taur",
  14493. image: {
  14494. source: "./media/characters/kee/taur.svg",
  14495. extra: 1,
  14496. bottom: 0.04
  14497. }
  14498. },
  14499. },
  14500. [
  14501. {
  14502. name: "Normal",
  14503. height: math.unit(11, "feet"),
  14504. default: true
  14505. },
  14506. ]
  14507. ))
  14508. characterMakers.push(() => makeCharacter(
  14509. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14510. {
  14511. anthro: {
  14512. height: math.unit(7, "feet"),
  14513. weight: math.unit(190, "lb"),
  14514. name: "Anthro",
  14515. image: {
  14516. source: "./media/characters/cobalt-dracha/anthro.svg",
  14517. extra: 231 / 225,
  14518. bottom: 0.04
  14519. }
  14520. },
  14521. feral: {
  14522. height: math.unit(9 + 7 / 12, "feet"),
  14523. weight: math.unit(294, "lb"),
  14524. name: "Feral",
  14525. image: {
  14526. source: "./media/characters/cobalt-dracha/feral.svg",
  14527. extra: 692 / 633,
  14528. bottom: 0.05
  14529. }
  14530. },
  14531. },
  14532. [
  14533. {
  14534. name: "Normal",
  14535. height: math.unit(7, "feet"),
  14536. default: true
  14537. },
  14538. ]
  14539. ))
  14540. characterMakers.push(() => makeCharacter(
  14541. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14542. {
  14543. fallen: {
  14544. height: math.unit(11 + 8 / 12, "feet"),
  14545. weight: math.unit(485, "lb"),
  14546. name: "Java (Fallen)",
  14547. rename: true,
  14548. image: {
  14549. source: "./media/characters/java/fallen.svg",
  14550. extra: 226 / 208,
  14551. bottom: 0.005
  14552. }
  14553. },
  14554. godkin: {
  14555. height: math.unit(10 + 6 / 12, "feet"),
  14556. weight: math.unit(328, "lb"),
  14557. name: "Java (Godkin)",
  14558. rename: true,
  14559. image: {
  14560. source: "./media/characters/java/godkin.svg",
  14561. extra: 270 / 262,
  14562. bottom: 0.02
  14563. }
  14564. },
  14565. },
  14566. [
  14567. {
  14568. name: "Normal",
  14569. height: math.unit(11 + 8 / 12, "feet"),
  14570. default: true
  14571. },
  14572. ]
  14573. ))
  14574. characterMakers.push(() => makeCharacter(
  14575. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14576. {
  14577. front: {
  14578. height: math.unit(7 + 8 / 12, "feet"),
  14579. weight: math.unit(320, "lb"),
  14580. name: "Front",
  14581. image: {
  14582. source: "./media/characters/skoll/front.svg",
  14583. extra: 232 / 220,
  14584. bottom: 0.02
  14585. }
  14586. },
  14587. },
  14588. [
  14589. {
  14590. name: "Normal",
  14591. height: math.unit(7 + 8 / 12, "feet"),
  14592. default: true
  14593. },
  14594. ]
  14595. ))
  14596. characterMakers.push(() => makeCharacter(
  14597. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14598. {
  14599. front: {
  14600. height: math.unit(5 + 9 / 12, "feet"),
  14601. weight: math.unit(170, "lb"),
  14602. name: "Front",
  14603. image: {
  14604. source: "./media/characters/purna/front.svg",
  14605. extra: 239 / 229,
  14606. bottom: 0.01
  14607. }
  14608. },
  14609. },
  14610. [
  14611. {
  14612. name: "Normal",
  14613. height: math.unit(5 + 9 / 12, "feet"),
  14614. default: true
  14615. },
  14616. ]
  14617. ))
  14618. characterMakers.push(() => makeCharacter(
  14619. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14620. {
  14621. front: {
  14622. height: math.unit(5 + 9 / 12, "feet"),
  14623. weight: math.unit(142, "lb"),
  14624. name: "Front",
  14625. image: {
  14626. source: "./media/characters/kuva/front.svg",
  14627. extra: 281 / 271,
  14628. bottom: 0.006
  14629. }
  14630. },
  14631. },
  14632. [
  14633. {
  14634. name: "Normal",
  14635. height: math.unit(5 + 9 / 12, "feet"),
  14636. default: true
  14637. },
  14638. ]
  14639. ))
  14640. characterMakers.push(() => makeCharacter(
  14641. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14642. {
  14643. anthro: {
  14644. height: math.unit(9 + 2 / 12, "feet"),
  14645. weight: math.unit(270, "lb"),
  14646. name: "Anthro",
  14647. image: {
  14648. source: "./media/characters/embra/anthro.svg",
  14649. extra: 200 / 187,
  14650. bottom: 0.02
  14651. }
  14652. },
  14653. feral: {
  14654. height: math.unit(18 + 8 / 12, "feet"),
  14655. weight: math.unit(576, "lb"),
  14656. name: "Feral",
  14657. image: {
  14658. source: "./media/characters/embra/feral.svg",
  14659. extra: 152 / 137,
  14660. bottom: 0.037
  14661. }
  14662. },
  14663. },
  14664. [
  14665. {
  14666. name: "Normal",
  14667. height: math.unit(9 + 2 / 12, "feet"),
  14668. default: true
  14669. },
  14670. ]
  14671. ))
  14672. characterMakers.push(() => makeCharacter(
  14673. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14674. {
  14675. anthro: {
  14676. height: math.unit(10 + 9 / 12, "feet"),
  14677. weight: math.unit(224, "lb"),
  14678. name: "Anthro",
  14679. image: {
  14680. source: "./media/characters/grottos/anthro.svg",
  14681. extra: 350 / 332,
  14682. bottom: 0.045
  14683. }
  14684. },
  14685. feral: {
  14686. height: math.unit(20 + 7 / 12, "feet"),
  14687. weight: math.unit(629, "lb"),
  14688. name: "Feral",
  14689. image: {
  14690. source: "./media/characters/grottos/feral.svg",
  14691. extra: 207 / 190,
  14692. bottom: 0.05
  14693. }
  14694. },
  14695. },
  14696. [
  14697. {
  14698. name: "Normal",
  14699. height: math.unit(10 + 9 / 12, "feet"),
  14700. default: true
  14701. },
  14702. ]
  14703. ))
  14704. characterMakers.push(() => makeCharacter(
  14705. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14706. {
  14707. anthro: {
  14708. height: math.unit(9 + 6 / 12, "feet"),
  14709. weight: math.unit(298, "lb"),
  14710. name: "Anthro",
  14711. image: {
  14712. source: "./media/characters/frifna/anthro.svg",
  14713. extra: 282 / 269,
  14714. bottom: 0.015
  14715. }
  14716. },
  14717. feral: {
  14718. height: math.unit(16 + 2 / 12, "feet"),
  14719. weight: math.unit(624, "lb"),
  14720. name: "Feral",
  14721. image: {
  14722. source: "./media/characters/frifna/feral.svg"
  14723. }
  14724. },
  14725. },
  14726. [
  14727. {
  14728. name: "Normal",
  14729. height: math.unit(9 + 6 / 12, "feet"),
  14730. default: true
  14731. },
  14732. ]
  14733. ))
  14734. characterMakers.push(() => makeCharacter(
  14735. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14736. {
  14737. front: {
  14738. height: math.unit(6 + 2 / 12, "feet"),
  14739. weight: math.unit(168, "lb"),
  14740. name: "Front",
  14741. image: {
  14742. source: "./media/characters/elise/front.svg",
  14743. extra: 276 / 271
  14744. }
  14745. },
  14746. },
  14747. [
  14748. {
  14749. name: "Normal",
  14750. height: math.unit(6 + 2 / 12, "feet"),
  14751. default: true
  14752. },
  14753. ]
  14754. ))
  14755. characterMakers.push(() => makeCharacter(
  14756. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14757. {
  14758. front: {
  14759. height: math.unit(5 + 10 / 12, "feet"),
  14760. weight: math.unit(210, "lb"),
  14761. name: "Front",
  14762. image: {
  14763. source: "./media/characters/glade/front.svg",
  14764. extra: 258 / 247,
  14765. bottom: 0.008
  14766. }
  14767. },
  14768. },
  14769. [
  14770. {
  14771. name: "Normal",
  14772. height: math.unit(5 + 10 / 12, "feet"),
  14773. default: true
  14774. },
  14775. ]
  14776. ))
  14777. characterMakers.push(() => makeCharacter(
  14778. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14779. {
  14780. front: {
  14781. height: math.unit(5 + 10 / 12, "feet"),
  14782. weight: math.unit(129, "lb"),
  14783. name: "Front",
  14784. image: {
  14785. source: "./media/characters/rina/front.svg",
  14786. extra: 266 / 255,
  14787. bottom: 0.005
  14788. }
  14789. },
  14790. },
  14791. [
  14792. {
  14793. name: "Normal",
  14794. height: math.unit(5 + 10 / 12, "feet"),
  14795. default: true
  14796. },
  14797. ]
  14798. ))
  14799. characterMakers.push(() => makeCharacter(
  14800. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14801. {
  14802. front: {
  14803. height: math.unit(6 + 1 / 12, "feet"),
  14804. weight: math.unit(192, "lb"),
  14805. name: "Front",
  14806. image: {
  14807. source: "./media/characters/veronica/front.svg",
  14808. extra: 319 / 309,
  14809. bottom: 0.005
  14810. }
  14811. },
  14812. },
  14813. [
  14814. {
  14815. name: "Normal",
  14816. height: math.unit(6 + 1 / 12, "feet"),
  14817. default: true
  14818. },
  14819. ]
  14820. ))
  14821. characterMakers.push(() => makeCharacter(
  14822. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14823. {
  14824. front: {
  14825. height: math.unit(9 + 3 / 12, "feet"),
  14826. weight: math.unit(1100, "lb"),
  14827. name: "Front",
  14828. image: {
  14829. source: "./media/characters/braxton/front.svg",
  14830. extra: 1057 / 984,
  14831. bottom: 0.05
  14832. }
  14833. },
  14834. },
  14835. [
  14836. {
  14837. name: "Normal",
  14838. height: math.unit(9 + 3 / 12, "feet")
  14839. },
  14840. {
  14841. name: "Giant",
  14842. height: math.unit(300, "feet"),
  14843. default: true
  14844. },
  14845. {
  14846. name: "Macro",
  14847. height: math.unit(700, "feet")
  14848. },
  14849. {
  14850. name: "Megamacro",
  14851. height: math.unit(6000, "feet")
  14852. },
  14853. ]
  14854. ))
  14855. characterMakers.push(() => makeCharacter(
  14856. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14857. {
  14858. front: {
  14859. height: math.unit(6 + 7 / 12, "feet"),
  14860. weight: math.unit(150, "lb"),
  14861. name: "Front",
  14862. image: {
  14863. source: "./media/characters/blue-feyonics/front.svg",
  14864. extra: 1403 / 1306,
  14865. bottom: 0.047
  14866. }
  14867. },
  14868. },
  14869. [
  14870. {
  14871. name: "Normal",
  14872. height: math.unit(6 + 7 / 12, "feet"),
  14873. default: true
  14874. },
  14875. ]
  14876. ))
  14877. characterMakers.push(() => makeCharacter(
  14878. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  14879. {
  14880. front: {
  14881. height: math.unit(1.8, "meters"),
  14882. weight: math.unit(60, "kg"),
  14883. name: "Front",
  14884. image: {
  14885. source: "./media/characters/maxwell/front.svg",
  14886. extra: 2060 / 1873
  14887. }
  14888. },
  14889. },
  14890. [
  14891. {
  14892. name: "Micro",
  14893. height: math.unit(1, "mm")
  14894. },
  14895. {
  14896. name: "Normal",
  14897. height: math.unit(1.8, "meter"),
  14898. default: true
  14899. },
  14900. {
  14901. name: "Macro",
  14902. height: math.unit(30, "meters")
  14903. },
  14904. {
  14905. name: "Megamacro",
  14906. height: math.unit(10, "km")
  14907. },
  14908. ]
  14909. ))
  14910. characterMakers.push(() => makeCharacter(
  14911. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  14912. {
  14913. front: {
  14914. height: math.unit(6, "feet"),
  14915. weight: math.unit(150, "lb"),
  14916. name: "Front",
  14917. image: {
  14918. source: "./media/characters/jack/front.svg",
  14919. extra: 1754 / 1640,
  14920. bottom: 0.01
  14921. }
  14922. },
  14923. },
  14924. [
  14925. {
  14926. name: "Normal",
  14927. height: math.unit(80000, "feet"),
  14928. default: true
  14929. },
  14930. {
  14931. name: "Max size",
  14932. height: math.unit(10, "lightyears")
  14933. },
  14934. ]
  14935. ))
  14936. characterMakers.push(() => makeCharacter(
  14937. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  14938. {
  14939. upright: {
  14940. height: math.unit(7, "feet"),
  14941. weight: math.unit(170, "lb"),
  14942. name: "Upright",
  14943. image: {
  14944. source: "./media/characters/cafat/upright.svg",
  14945. bottom: 0.01
  14946. }
  14947. },
  14948. uprightFull: {
  14949. height: math.unit(7, "feet"),
  14950. weight: math.unit(170, "lb"),
  14951. name: "Upright (Full)",
  14952. image: {
  14953. source: "./media/characters/cafat/upright-full.svg",
  14954. bottom: 0.01
  14955. }
  14956. },
  14957. side: {
  14958. height: math.unit(5, "feet"),
  14959. weight: math.unit(150, "lb"),
  14960. name: "Side",
  14961. image: {
  14962. source: "./media/characters/cafat/side.svg"
  14963. }
  14964. },
  14965. },
  14966. [
  14967. {
  14968. name: "Small",
  14969. height: math.unit(7, "feet"),
  14970. default: true
  14971. },
  14972. {
  14973. name: "Large",
  14974. height: math.unit(15.5, "feet")
  14975. },
  14976. ]
  14977. ))
  14978. characterMakers.push(() => makeCharacter(
  14979. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  14980. {
  14981. front: {
  14982. height: math.unit(6, "feet"),
  14983. weight: math.unit(150, "lb"),
  14984. name: "Front",
  14985. image: {
  14986. source: "./media/characters/verin-raharra/front.svg",
  14987. extra: 5019 / 4835,
  14988. bottom: 0.023
  14989. }
  14990. },
  14991. },
  14992. [
  14993. {
  14994. name: "Normal",
  14995. height: math.unit(7 + 5 / 12, "feet"),
  14996. default: true
  14997. },
  14998. {
  14999. name: "Upsized",
  15000. height: math.unit(20, "feet")
  15001. },
  15002. ]
  15003. ))
  15004. characterMakers.push(() => makeCharacter(
  15005. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15006. {
  15007. front: {
  15008. height: math.unit(7, "feet"),
  15009. weight: math.unit(230, "lb"),
  15010. name: "Front",
  15011. image: {
  15012. source: "./media/characters/nakata/front.svg",
  15013. extra: 1.005,
  15014. bottom: 0.01
  15015. }
  15016. },
  15017. },
  15018. [
  15019. {
  15020. name: "Normal",
  15021. height: math.unit(7, "feet"),
  15022. default: true
  15023. },
  15024. {
  15025. name: "Big",
  15026. height: math.unit(14, "feet")
  15027. },
  15028. {
  15029. name: "Macro",
  15030. height: math.unit(400, "feet")
  15031. },
  15032. ]
  15033. ))
  15034. characterMakers.push(() => makeCharacter(
  15035. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15036. {
  15037. front: {
  15038. height: math.unit(4.91, "feet"),
  15039. weight: math.unit(100, "lb"),
  15040. name: "Front",
  15041. image: {
  15042. source: "./media/characters/lily/front.svg",
  15043. extra: 1585 / 1415,
  15044. bottom: 0.02
  15045. }
  15046. },
  15047. },
  15048. [
  15049. {
  15050. name: "Normal",
  15051. height: math.unit(4.91, "feet"),
  15052. default: true
  15053. },
  15054. ]
  15055. ))
  15056. characterMakers.push(() => makeCharacter(
  15057. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15058. {
  15059. laying: {
  15060. height: math.unit(4 + 4 / 12, "feet"),
  15061. weight: math.unit(600, "lb"),
  15062. name: "Laying",
  15063. image: {
  15064. source: "./media/characters/sheila/laying.svg",
  15065. extra: 1333 / 1265,
  15066. bottom: 0.16
  15067. }
  15068. },
  15069. },
  15070. [
  15071. {
  15072. name: "Normal",
  15073. height: math.unit(4 + 4 / 12, "feet"),
  15074. default: true
  15075. },
  15076. ]
  15077. ))
  15078. characterMakers.push(() => makeCharacter(
  15079. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15080. {
  15081. front: {
  15082. height: math.unit(6, "feet"),
  15083. weight: math.unit(190, "lb"),
  15084. name: "Front",
  15085. image: {
  15086. source: "./media/characters/sax/front.svg",
  15087. extra: 1187 / 973,
  15088. bottom: 0.042
  15089. }
  15090. },
  15091. },
  15092. [
  15093. {
  15094. name: "Micro",
  15095. height: math.unit(4, "inches"),
  15096. default: true
  15097. },
  15098. ]
  15099. ))
  15100. characterMakers.push(() => makeCharacter(
  15101. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15102. {
  15103. front: {
  15104. height: math.unit(6, "feet"),
  15105. weight: math.unit(150, "lb"),
  15106. name: "Front",
  15107. image: {
  15108. source: "./media/characters/pandora/front.svg",
  15109. extra: 2720 / 2556,
  15110. bottom: 0.015
  15111. }
  15112. },
  15113. back: {
  15114. height: math.unit(6, "feet"),
  15115. weight: math.unit(150, "lb"),
  15116. name: "Back",
  15117. image: {
  15118. source: "./media/characters/pandora/back.svg",
  15119. extra: 2720 / 2556,
  15120. bottom: 0.01
  15121. }
  15122. },
  15123. beans: {
  15124. height: math.unit(6 / 8, "feet"),
  15125. name: "Beans",
  15126. image: {
  15127. source: "./media/characters/pandora/beans.svg"
  15128. }
  15129. },
  15130. skirt: {
  15131. height: math.unit(6, "feet"),
  15132. weight: math.unit(150, "lb"),
  15133. name: "Skirt",
  15134. image: {
  15135. source: "./media/characters/pandora/skirt.svg",
  15136. extra: 1622 / 1525,
  15137. bottom: 0.015
  15138. }
  15139. },
  15140. hoodie: {
  15141. height: math.unit(6, "feet"),
  15142. weight: math.unit(150, "lb"),
  15143. name: "Hoodie",
  15144. image: {
  15145. source: "./media/characters/pandora/hoodie.svg",
  15146. extra: 1622 / 1525,
  15147. bottom: 0.015
  15148. }
  15149. },
  15150. casual: {
  15151. height: math.unit(6, "feet"),
  15152. weight: math.unit(150, "lb"),
  15153. name: "Casual",
  15154. image: {
  15155. source: "./media/characters/pandora/casual.svg",
  15156. extra: 1622 / 1525,
  15157. bottom: 0.015
  15158. }
  15159. },
  15160. },
  15161. [
  15162. {
  15163. name: "Normal",
  15164. height: math.unit(6, "feet")
  15165. },
  15166. {
  15167. name: "Big Steppy",
  15168. height: math.unit(1, "km"),
  15169. default: true
  15170. },
  15171. ]
  15172. ))
  15173. characterMakers.push(() => makeCharacter(
  15174. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15175. {
  15176. side: {
  15177. height: math.unit(10, "feet"),
  15178. weight: math.unit(800, "kg"),
  15179. name: "Side",
  15180. image: {
  15181. source: "./media/characters/venio-darcony/side.svg",
  15182. extra: 1373 / 1003,
  15183. bottom: 0.037
  15184. }
  15185. },
  15186. front: {
  15187. height: math.unit(19, "feet"),
  15188. weight: math.unit(800, "kg"),
  15189. name: "Front",
  15190. image: {
  15191. source: "./media/characters/venio-darcony/front.svg"
  15192. }
  15193. },
  15194. back: {
  15195. height: math.unit(19, "feet"),
  15196. weight: math.unit(800, "kg"),
  15197. name: "Back",
  15198. image: {
  15199. source: "./media/characters/venio-darcony/back.svg"
  15200. }
  15201. },
  15202. sideNsfw: {
  15203. height: math.unit(10, "feet"),
  15204. weight: math.unit(800, "kg"),
  15205. name: "Side (NSFW)",
  15206. image: {
  15207. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15208. extra: 1373 / 1003,
  15209. bottom: 0.037
  15210. }
  15211. },
  15212. frontNsfw: {
  15213. height: math.unit(19, "feet"),
  15214. weight: math.unit(800, "kg"),
  15215. name: "Front (NSFW)",
  15216. image: {
  15217. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15218. }
  15219. },
  15220. backNsfw: {
  15221. height: math.unit(19, "feet"),
  15222. weight: math.unit(800, "kg"),
  15223. name: "Back (NSFW)",
  15224. image: {
  15225. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15226. }
  15227. },
  15228. sideArmored: {
  15229. height: math.unit(10, "feet"),
  15230. weight: math.unit(800, "kg"),
  15231. name: "Side (Armored)",
  15232. image: {
  15233. source: "./media/characters/venio-darcony/side-armored.svg",
  15234. extra: 1373 / 1003,
  15235. bottom: 0.037
  15236. }
  15237. },
  15238. frontArmored: {
  15239. height: math.unit(19, "feet"),
  15240. weight: math.unit(900, "kg"),
  15241. name: "Front (Armored)",
  15242. image: {
  15243. source: "./media/characters/venio-darcony/front-armored.svg"
  15244. }
  15245. },
  15246. backArmored: {
  15247. height: math.unit(19, "feet"),
  15248. weight: math.unit(900, "kg"),
  15249. name: "Back (Armored)",
  15250. image: {
  15251. source: "./media/characters/venio-darcony/back-armored.svg"
  15252. }
  15253. },
  15254. sword: {
  15255. height: math.unit(10, "feet"),
  15256. weight: math.unit(50, "lb"),
  15257. name: "Sword",
  15258. image: {
  15259. source: "./media/characters/venio-darcony/sword.svg"
  15260. }
  15261. },
  15262. },
  15263. [
  15264. {
  15265. name: "Normal",
  15266. height: math.unit(10, "feet")
  15267. },
  15268. {
  15269. name: "Macro",
  15270. height: math.unit(130, "feet"),
  15271. default: true
  15272. },
  15273. {
  15274. name: "Macro+",
  15275. height: math.unit(240, "feet")
  15276. },
  15277. ]
  15278. ))
  15279. characterMakers.push(() => makeCharacter(
  15280. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15281. {
  15282. front: {
  15283. height: math.unit(6, "feet"),
  15284. weight: math.unit(150, "lb"),
  15285. name: "Front",
  15286. image: {
  15287. source: "./media/characters/veski/front.svg",
  15288. extra: 1299 / 1225,
  15289. bottom: 0.04
  15290. }
  15291. },
  15292. back: {
  15293. height: math.unit(6, "feet"),
  15294. weight: math.unit(150, "lb"),
  15295. name: "Back",
  15296. image: {
  15297. source: "./media/characters/veski/back.svg",
  15298. extra: 1299 / 1225,
  15299. bottom: 0.008
  15300. }
  15301. },
  15302. maw: {
  15303. height: math.unit(1.5 * 1.21, "feet"),
  15304. name: "Maw",
  15305. image: {
  15306. source: "./media/characters/veski/maw.svg"
  15307. }
  15308. },
  15309. },
  15310. [
  15311. {
  15312. name: "Macro",
  15313. height: math.unit(2, "km"),
  15314. default: true
  15315. },
  15316. ]
  15317. ))
  15318. characterMakers.push(() => makeCharacter(
  15319. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15320. {
  15321. front: {
  15322. height: math.unit(5 + 7 / 12, "feet"),
  15323. name: "Front",
  15324. image: {
  15325. source: "./media/characters/isabelle/front.svg",
  15326. extra: 2130 / 1976,
  15327. bottom: 0.05
  15328. }
  15329. },
  15330. },
  15331. [
  15332. {
  15333. name: "Supermicro",
  15334. height: math.unit(10, "micrometers")
  15335. },
  15336. {
  15337. name: "Micro",
  15338. height: math.unit(1, "inch")
  15339. },
  15340. {
  15341. name: "Tiny",
  15342. height: math.unit(5, "inches")
  15343. },
  15344. {
  15345. name: "Standard",
  15346. height: math.unit(5 + 7 / 12, "inches")
  15347. },
  15348. {
  15349. name: "Macro",
  15350. height: math.unit(80, "meters"),
  15351. default: true
  15352. },
  15353. {
  15354. name: "Megamacro",
  15355. height: math.unit(250, "meters")
  15356. },
  15357. {
  15358. name: "Gigamacro",
  15359. height: math.unit(5, "km")
  15360. },
  15361. {
  15362. name: "Cosmic",
  15363. height: math.unit(2.5e6, "miles")
  15364. },
  15365. ]
  15366. ))
  15367. characterMakers.push(() => makeCharacter(
  15368. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15369. {
  15370. front: {
  15371. height: math.unit(6, "feet"),
  15372. weight: math.unit(150, "lb"),
  15373. name: "Front",
  15374. image: {
  15375. source: "./media/characters/hanzo/front.svg",
  15376. extra: 374 / 344,
  15377. bottom: 0.02
  15378. }
  15379. },
  15380. },
  15381. [
  15382. {
  15383. name: "Normal",
  15384. height: math.unit(8, "feet"),
  15385. default: true
  15386. },
  15387. ]
  15388. ))
  15389. characterMakers.push(() => makeCharacter(
  15390. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15391. {
  15392. front: {
  15393. height: math.unit(7, "feet"),
  15394. weight: math.unit(130, "lb"),
  15395. name: "Front",
  15396. image: {
  15397. source: "./media/characters/anna/front.svg",
  15398. extra: 169 / 145,
  15399. bottom: 0.06
  15400. }
  15401. },
  15402. full: {
  15403. height: math.unit(4.96, "feet"),
  15404. weight: math.unit(220, "lb"),
  15405. name: "Full",
  15406. image: {
  15407. source: "./media/characters/anna/full.svg",
  15408. extra: 138 / 114,
  15409. bottom: 0.15
  15410. }
  15411. },
  15412. tongue: {
  15413. height: math.unit(2.53, "feet"),
  15414. name: "Tongue",
  15415. image: {
  15416. source: "./media/characters/anna/tongue.svg"
  15417. }
  15418. },
  15419. },
  15420. [
  15421. {
  15422. name: "Normal",
  15423. height: math.unit(7, "feet"),
  15424. default: true
  15425. },
  15426. ]
  15427. ))
  15428. characterMakers.push(() => makeCharacter(
  15429. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15430. {
  15431. front: {
  15432. height: math.unit(7, "feet"),
  15433. weight: math.unit(150, "lb"),
  15434. name: "Front",
  15435. image: {
  15436. source: "./media/characters/ian-corvid/front.svg",
  15437. extra: 150 / 142,
  15438. bottom: 0.02
  15439. }
  15440. },
  15441. back: {
  15442. height: math.unit(7, "feet"),
  15443. weight: math.unit(150, "lb"),
  15444. name: "Back",
  15445. image: {
  15446. source: "./media/characters/ian-corvid/back.svg",
  15447. extra: 150 / 143,
  15448. bottom: 0.01
  15449. }
  15450. },
  15451. stomping: {
  15452. height: math.unit(7, "feet"),
  15453. weight: math.unit(150, "lb"),
  15454. name: "Stomping",
  15455. image: {
  15456. source: "./media/characters/ian-corvid/stomping.svg",
  15457. extra: 76 / 72
  15458. }
  15459. },
  15460. sitting: {
  15461. height: math.unit(7 / 1.8, "feet"),
  15462. weight: math.unit(150, "lb"),
  15463. name: "Sitting",
  15464. image: {
  15465. source: "./media/characters/ian-corvid/sitting.svg",
  15466. extra: 1400 / 1269,
  15467. bottom: 0.15
  15468. }
  15469. },
  15470. },
  15471. [
  15472. {
  15473. name: "Tiny Microw",
  15474. height: math.unit(1, "inch")
  15475. },
  15476. {
  15477. name: "Microw",
  15478. height: math.unit(6, "inches")
  15479. },
  15480. {
  15481. name: "Crow",
  15482. height: math.unit(7 + 1 / 12, "feet"),
  15483. default: true
  15484. },
  15485. {
  15486. name: "Macrow",
  15487. height: math.unit(176, "feet")
  15488. },
  15489. ]
  15490. ))
  15491. characterMakers.push(() => makeCharacter(
  15492. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15493. {
  15494. front: {
  15495. height: math.unit(5 + 7 / 12, "feet"),
  15496. weight: math.unit(147, "lb"),
  15497. name: "Front",
  15498. image: {
  15499. source: "./media/characters/natalie-kellon/front.svg",
  15500. extra: 1214 / 1141,
  15501. bottom: 0.02
  15502. }
  15503. },
  15504. },
  15505. [
  15506. {
  15507. name: "Micro",
  15508. height: math.unit(1 / 16, "inch")
  15509. },
  15510. {
  15511. name: "Tiny",
  15512. height: math.unit(4, "inches")
  15513. },
  15514. {
  15515. name: "Normal",
  15516. height: math.unit(5 + 7 / 12, "feet"),
  15517. default: true
  15518. },
  15519. {
  15520. name: "Amazon",
  15521. height: math.unit(12, "feet")
  15522. },
  15523. {
  15524. name: "Giantess",
  15525. height: math.unit(160, "meters")
  15526. },
  15527. {
  15528. name: "Titaness",
  15529. height: math.unit(800, "meters")
  15530. },
  15531. ]
  15532. ))
  15533. characterMakers.push(() => makeCharacter(
  15534. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15535. {
  15536. front: {
  15537. height: math.unit(6, "feet"),
  15538. weight: math.unit(150, "lb"),
  15539. name: "Front",
  15540. image: {
  15541. source: "./media/characters/alluria/front.svg",
  15542. extra: 806 / 738,
  15543. bottom: 0.01
  15544. }
  15545. },
  15546. side: {
  15547. height: math.unit(6, "feet"),
  15548. weight: math.unit(150, "lb"),
  15549. name: "Side",
  15550. image: {
  15551. source: "./media/characters/alluria/side.svg",
  15552. extra: 800 / 750,
  15553. }
  15554. },
  15555. back: {
  15556. height: math.unit(6, "feet"),
  15557. weight: math.unit(150, "lb"),
  15558. name: "Back",
  15559. image: {
  15560. source: "./media/characters/alluria/back.svg",
  15561. extra: 806 / 738,
  15562. }
  15563. },
  15564. frontMaid: {
  15565. height: math.unit(6, "feet"),
  15566. weight: math.unit(150, "lb"),
  15567. name: "Front (Maid)",
  15568. image: {
  15569. source: "./media/characters/alluria/front-maid.svg",
  15570. extra: 806 / 738,
  15571. bottom: 0.01
  15572. }
  15573. },
  15574. sideMaid: {
  15575. height: math.unit(6, "feet"),
  15576. weight: math.unit(150, "lb"),
  15577. name: "Side (Maid)",
  15578. image: {
  15579. source: "./media/characters/alluria/side-maid.svg",
  15580. extra: 800 / 750,
  15581. bottom: 0.005
  15582. }
  15583. },
  15584. backMaid: {
  15585. height: math.unit(6, "feet"),
  15586. weight: math.unit(150, "lb"),
  15587. name: "Back (Maid)",
  15588. image: {
  15589. source: "./media/characters/alluria/back-maid.svg",
  15590. extra: 806 / 738,
  15591. }
  15592. },
  15593. },
  15594. [
  15595. {
  15596. name: "Micro",
  15597. height: math.unit(6, "inches"),
  15598. default: true
  15599. },
  15600. ]
  15601. ))
  15602. characterMakers.push(() => makeCharacter(
  15603. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15604. {
  15605. front: {
  15606. height: math.unit(6, "feet"),
  15607. weight: math.unit(150, "lb"),
  15608. name: "Front",
  15609. image: {
  15610. source: "./media/characters/kyle/front.svg",
  15611. extra: 1069 / 962,
  15612. bottom: 77.228 / 1727.45
  15613. }
  15614. },
  15615. },
  15616. [
  15617. {
  15618. name: "Macro",
  15619. height: math.unit(150, "feet"),
  15620. default: true
  15621. },
  15622. ]
  15623. ))
  15624. characterMakers.push(() => makeCharacter(
  15625. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15626. {
  15627. front: {
  15628. height: math.unit(6, "feet"),
  15629. weight: math.unit(300, "lb"),
  15630. name: "Front",
  15631. image: {
  15632. source: "./media/characters/duncan/front.svg",
  15633. extra: 1650 / 1482,
  15634. bottom: 0.05
  15635. }
  15636. },
  15637. },
  15638. [
  15639. {
  15640. name: "Macro",
  15641. height: math.unit(100, "feet"),
  15642. default: true
  15643. },
  15644. ]
  15645. ))
  15646. characterMakers.push(() => makeCharacter(
  15647. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15648. {
  15649. front: {
  15650. height: math.unit(5 + 4 / 12, "feet"),
  15651. weight: math.unit(220, "lb"),
  15652. name: "Front",
  15653. image: {
  15654. source: "./media/characters/memory/front.svg",
  15655. extra: 3641 / 3545,
  15656. bottom: 0.03
  15657. }
  15658. },
  15659. back: {
  15660. height: math.unit(5 + 4 / 12, "feet"),
  15661. weight: math.unit(220, "lb"),
  15662. name: "Back",
  15663. image: {
  15664. source: "./media/characters/memory/back.svg",
  15665. extra: 3641 / 3545,
  15666. bottom: 0.025
  15667. }
  15668. },
  15669. frontSkirt: {
  15670. height: math.unit(5 + 4 / 12, "feet"),
  15671. weight: math.unit(220, "lb"),
  15672. name: "Front (Skirt)",
  15673. image: {
  15674. source: "./media/characters/memory/front-skirt.svg",
  15675. extra: 3641 / 3545,
  15676. bottom: 0.03
  15677. }
  15678. },
  15679. frontDress: {
  15680. height: math.unit(5 + 4 / 12, "feet"),
  15681. weight: math.unit(220, "lb"),
  15682. name: "Front (Dress)",
  15683. image: {
  15684. source: "./media/characters/memory/front-dress.svg",
  15685. extra: 3641 / 3545,
  15686. bottom: 0.03
  15687. }
  15688. },
  15689. },
  15690. [
  15691. {
  15692. name: "Micro",
  15693. height: math.unit(6, "inches"),
  15694. default: true
  15695. },
  15696. {
  15697. name: "Normal",
  15698. height: math.unit(5 + 4 / 12, "feet")
  15699. },
  15700. ]
  15701. ))
  15702. characterMakers.push(() => makeCharacter(
  15703. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15704. {
  15705. front: {
  15706. height: math.unit(4 + 11 / 12, "feet"),
  15707. weight: math.unit(100, "lb"),
  15708. name: "Front",
  15709. image: {
  15710. source: "./media/characters/luno/front.svg",
  15711. extra: 1535 / 1487,
  15712. bottom: 0.03
  15713. }
  15714. },
  15715. },
  15716. [
  15717. {
  15718. name: "Micro",
  15719. height: math.unit(3, "inches")
  15720. },
  15721. {
  15722. name: "Normal",
  15723. height: math.unit(4 + 11 / 12, "feet"),
  15724. default: true
  15725. },
  15726. {
  15727. name: "Macro",
  15728. height: math.unit(300, "feet")
  15729. },
  15730. {
  15731. name: "Megamacro",
  15732. height: math.unit(700, "miles")
  15733. },
  15734. ]
  15735. ))
  15736. characterMakers.push(() => makeCharacter(
  15737. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15738. {
  15739. front: {
  15740. height: math.unit(6 + 2 / 12, "feet"),
  15741. weight: math.unit(170, "lb"),
  15742. name: "Front",
  15743. image: {
  15744. source: "./media/characters/jamesy/front.svg",
  15745. extra: 440 / 382,
  15746. bottom: 0.005
  15747. }
  15748. },
  15749. },
  15750. [
  15751. {
  15752. name: "Micro",
  15753. height: math.unit(3, "inches")
  15754. },
  15755. {
  15756. name: "Normal",
  15757. height: math.unit(6 + 2 / 12, "feet"),
  15758. default: true
  15759. },
  15760. {
  15761. name: "Macro",
  15762. height: math.unit(300, "feet")
  15763. },
  15764. {
  15765. name: "Megamacro",
  15766. height: math.unit(700, "miles")
  15767. },
  15768. ]
  15769. ))
  15770. characterMakers.push(() => makeCharacter(
  15771. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15772. {
  15773. front: {
  15774. height: math.unit(6, "feet"),
  15775. weight: math.unit(160, "lb"),
  15776. name: "Front",
  15777. image: {
  15778. source: "./media/characters/mark/front.svg",
  15779. extra: 3300 / 3100,
  15780. bottom: 136.42 / 3440.47
  15781. }
  15782. },
  15783. },
  15784. [
  15785. {
  15786. name: "Macro",
  15787. height: math.unit(120, "meters")
  15788. },
  15789. {
  15790. name: "Bigger Macro",
  15791. height: math.unit(350, "meters")
  15792. },
  15793. {
  15794. name: "Megamacro",
  15795. height: math.unit(8, "km"),
  15796. default: true
  15797. },
  15798. {
  15799. name: "Continental",
  15800. height: math.unit(4550, "km")
  15801. },
  15802. {
  15803. name: "Planetary",
  15804. height: math.unit(65000, "km")
  15805. },
  15806. ]
  15807. ))
  15808. characterMakers.push(() => makeCharacter(
  15809. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15810. {
  15811. front: {
  15812. height: math.unit(6, "feet"),
  15813. weight: math.unit(400, "lb"),
  15814. name: "Front",
  15815. image: {
  15816. source: "./media/characters/mac/front.svg",
  15817. extra: 1048 / 987.7,
  15818. bottom: 60 / 1107.6,
  15819. }
  15820. },
  15821. },
  15822. [
  15823. {
  15824. name: "Macro",
  15825. height: math.unit(500, "feet"),
  15826. default: true
  15827. },
  15828. ]
  15829. ))
  15830. characterMakers.push(() => makeCharacter(
  15831. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15832. {
  15833. front: {
  15834. height: math.unit(5 + 2 / 12, "feet"),
  15835. weight: math.unit(190, "lb"),
  15836. name: "Front",
  15837. image: {
  15838. source: "./media/characters/bari/front.svg",
  15839. extra: 3156 / 2880,
  15840. bottom: 0.03
  15841. }
  15842. },
  15843. back: {
  15844. height: math.unit(5 + 2 / 12, "feet"),
  15845. weight: math.unit(190, "lb"),
  15846. name: "Back",
  15847. image: {
  15848. source: "./media/characters/bari/back.svg",
  15849. extra: 3260 / 2834,
  15850. bottom: 0.025
  15851. }
  15852. },
  15853. frontPlush: {
  15854. height: math.unit(5 + 2 / 12, "feet"),
  15855. weight: math.unit(190, "lb"),
  15856. name: "Front (Plush)",
  15857. image: {
  15858. source: "./media/characters/bari/front-plush.svg",
  15859. extra: 1112 / 1061,
  15860. bottom: 0.002
  15861. }
  15862. },
  15863. },
  15864. [
  15865. {
  15866. name: "Micro",
  15867. height: math.unit(3, "inches")
  15868. },
  15869. {
  15870. name: "Normal",
  15871. height: math.unit(5 + 2 / 12, "feet"),
  15872. default: true
  15873. },
  15874. {
  15875. name: "Macro",
  15876. height: math.unit(20, "feet")
  15877. },
  15878. ]
  15879. ))
  15880. characterMakers.push(() => makeCharacter(
  15881. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  15882. {
  15883. front: {
  15884. height: math.unit(6 + 1 / 12, "feet"),
  15885. weight: math.unit(275, "lb"),
  15886. name: "Front",
  15887. image: {
  15888. source: "./media/characters/hunter-misha-raven/front.svg"
  15889. }
  15890. },
  15891. },
  15892. [
  15893. {
  15894. name: "Mortal",
  15895. height: math.unit(6 + 1 / 12, "feet")
  15896. },
  15897. {
  15898. name: "Divine",
  15899. height: math.unit(1.12134e34, "parsecs"),
  15900. default: true
  15901. },
  15902. ]
  15903. ))
  15904. characterMakers.push(() => makeCharacter(
  15905. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  15906. {
  15907. front: {
  15908. height: math.unit(6 + 3 / 12, "feet"),
  15909. weight: math.unit(220, "lb"),
  15910. name: "Front",
  15911. image: {
  15912. source: "./media/characters/max-calore/front.svg",
  15913. extra: 1700 / 1648,
  15914. bottom: 0.01
  15915. }
  15916. },
  15917. back: {
  15918. height: math.unit(6 + 3 / 12, "feet"),
  15919. weight: math.unit(220, "lb"),
  15920. name: "Back",
  15921. image: {
  15922. source: "./media/characters/max-calore/back.svg",
  15923. extra: 1700 / 1648,
  15924. bottom: 0.01
  15925. }
  15926. },
  15927. },
  15928. [
  15929. {
  15930. name: "Normal",
  15931. height: math.unit(6 + 3 / 12, "feet"),
  15932. default: true
  15933. },
  15934. ]
  15935. ))
  15936. characterMakers.push(() => makeCharacter(
  15937. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  15938. {
  15939. side: {
  15940. height: math.unit(2 + 8 / 12, "feet"),
  15941. weight: math.unit(99, "lb"),
  15942. name: "Side",
  15943. image: {
  15944. source: "./media/characters/aspen/side.svg",
  15945. extra: 152 / 138,
  15946. bottom: 0.032
  15947. }
  15948. },
  15949. },
  15950. [
  15951. {
  15952. name: "Normal",
  15953. height: math.unit(2 + 8 / 12, "feet"),
  15954. default: true
  15955. },
  15956. ]
  15957. ))
  15958. characterMakers.push(() => makeCharacter(
  15959. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  15960. {
  15961. side: {
  15962. height: math.unit(3 + 2 / 12, "feet"),
  15963. weight: math.unit(224, "lb"),
  15964. name: "Side",
  15965. image: {
  15966. source: "./media/characters/sheila-feral-wolf/side.svg",
  15967. extra: 179 / 166,
  15968. bottom: 0.03
  15969. }
  15970. },
  15971. },
  15972. [
  15973. {
  15974. name: "Normal",
  15975. height: math.unit(3 + 2 / 12, "feet"),
  15976. default: true
  15977. },
  15978. ]
  15979. ))
  15980. characterMakers.push(() => makeCharacter(
  15981. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  15982. {
  15983. side: {
  15984. height: math.unit(1 + 9 / 12, "feet"),
  15985. weight: math.unit(38, "lb"),
  15986. name: "Side",
  15987. image: {
  15988. source: "./media/characters/michelle/side.svg",
  15989. extra: 147 / 136.7,
  15990. bottom: 0.03
  15991. }
  15992. },
  15993. },
  15994. [
  15995. {
  15996. name: "Normal",
  15997. height: math.unit(1 + 9 / 12, "feet"),
  15998. default: true
  15999. },
  16000. ]
  16001. ))
  16002. characterMakers.push(() => makeCharacter(
  16003. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16004. {
  16005. front: {
  16006. height: math.unit(1 + 1 / 12, "feet"),
  16007. weight: math.unit(18, "lb"),
  16008. name: "Front",
  16009. image: {
  16010. source: "./media/characters/nino/front.svg"
  16011. }
  16012. },
  16013. },
  16014. [
  16015. {
  16016. name: "Normal",
  16017. height: math.unit(1 + 1 / 12, "feet"),
  16018. default: true
  16019. },
  16020. ]
  16021. ))
  16022. characterMakers.push(() => makeCharacter(
  16023. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16024. {
  16025. front: {
  16026. height: math.unit(1, "feet"),
  16027. weight: math.unit(16, "lb"),
  16028. name: "Front",
  16029. image: {
  16030. source: "./media/characters/viola/front.svg"
  16031. }
  16032. },
  16033. },
  16034. [
  16035. {
  16036. name: "Normal",
  16037. height: math.unit(1, "feet"),
  16038. default: true
  16039. },
  16040. ]
  16041. ))
  16042. characterMakers.push(() => makeCharacter(
  16043. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16044. {
  16045. front: {
  16046. height: math.unit(6 + 5 / 12, "feet"),
  16047. weight: math.unit(580, "lb"),
  16048. name: "Front",
  16049. image: {
  16050. source: "./media/characters/atlas/front.svg",
  16051. extra: 298.5 / 290,
  16052. bottom: 0.015
  16053. }
  16054. },
  16055. },
  16056. [
  16057. {
  16058. name: "Normal",
  16059. height: math.unit(6 + 5 / 12, "feet"),
  16060. default: true
  16061. },
  16062. ]
  16063. ))
  16064. characterMakers.push(() => makeCharacter(
  16065. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16066. {
  16067. side: {
  16068. height: math.unit(1 + 10 / 12, "feet"),
  16069. weight: math.unit(25, "lb"),
  16070. name: "Side",
  16071. image: {
  16072. source: "./media/characters/davy/side.svg",
  16073. extra: 200 / 170,
  16074. bottom: 0.01
  16075. }
  16076. },
  16077. },
  16078. [
  16079. {
  16080. name: "Normal",
  16081. height: math.unit(1 + 10 / 12, "feet"),
  16082. default: true
  16083. },
  16084. ]
  16085. ))
  16086. characterMakers.push(() => makeCharacter(
  16087. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16088. {
  16089. side: {
  16090. height: math.unit(4 + 8 / 12, "feet"),
  16091. weight: math.unit(166, "lb"),
  16092. name: "Side",
  16093. image: {
  16094. source: "./media/characters/fiona/side.svg",
  16095. extra: 232 / 220,
  16096. bottom: 0.03
  16097. }
  16098. },
  16099. },
  16100. [
  16101. {
  16102. name: "Normal",
  16103. height: math.unit(4 + 8 / 12, "feet"),
  16104. default: true
  16105. },
  16106. ]
  16107. ))
  16108. characterMakers.push(() => makeCharacter(
  16109. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16110. {
  16111. front: {
  16112. height: math.unit(2, "feet"),
  16113. weight: math.unit(62, "lb"),
  16114. name: "Front",
  16115. image: {
  16116. source: "./media/characters/lyla/front.svg",
  16117. bottom: 0.1
  16118. }
  16119. },
  16120. },
  16121. [
  16122. {
  16123. name: "Normal",
  16124. height: math.unit(2, "feet"),
  16125. default: true
  16126. },
  16127. ]
  16128. ))
  16129. characterMakers.push(() => makeCharacter(
  16130. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16131. {
  16132. side: {
  16133. height: math.unit(1.8, "feet"),
  16134. weight: math.unit(44, "lb"),
  16135. name: "Side",
  16136. image: {
  16137. source: "./media/characters/perseus/side.svg",
  16138. bottom: 0.21
  16139. }
  16140. },
  16141. },
  16142. [
  16143. {
  16144. name: "Normal",
  16145. height: math.unit(1.8, "feet"),
  16146. default: true
  16147. },
  16148. ]
  16149. ))
  16150. characterMakers.push(() => makeCharacter(
  16151. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16152. {
  16153. side: {
  16154. height: math.unit(4 + 2 / 12, "feet"),
  16155. weight: math.unit(20, "lb"),
  16156. name: "Side",
  16157. image: {
  16158. source: "./media/characters/remus/side.svg"
  16159. }
  16160. },
  16161. },
  16162. [
  16163. {
  16164. name: "Normal",
  16165. height: math.unit(4 + 2 / 12, "feet"),
  16166. default: true
  16167. },
  16168. ]
  16169. ))
  16170. characterMakers.push(() => makeCharacter(
  16171. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16172. {
  16173. front: {
  16174. height: math.unit(4 + 11 / 12, "feet"),
  16175. weight: math.unit(114, "lb"),
  16176. name: "Front",
  16177. image: {
  16178. source: "./media/characters/raf/front.svg",
  16179. bottom: 20.5/1863
  16180. }
  16181. },
  16182. side: {
  16183. height: math.unit(4 + 11 / 12, "feet"),
  16184. weight: math.unit(114, "lb"),
  16185. name: "Side",
  16186. image: {
  16187. source: "./media/characters/raf/side.svg",
  16188. bottom: 22/1822
  16189. }
  16190. },
  16191. },
  16192. [
  16193. {
  16194. name: "Micro",
  16195. height: math.unit(2, "inches")
  16196. },
  16197. {
  16198. name: "Normal",
  16199. height: math.unit(4 + 11 / 12, "feet"),
  16200. default: true
  16201. },
  16202. {
  16203. name: "Macro",
  16204. height: math.unit(70, "feet")
  16205. },
  16206. ]
  16207. ))
  16208. characterMakers.push(() => makeCharacter(
  16209. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16210. {
  16211. front: {
  16212. height: math.unit(1.5, "meters"),
  16213. weight: math.unit(68, "kg"),
  16214. name: "Front",
  16215. image: {
  16216. source: "./media/characters/liam-einarr/front.svg",
  16217. extra: 2822 / 2666
  16218. }
  16219. },
  16220. back: {
  16221. height: math.unit(1.5, "meters"),
  16222. weight: math.unit(68, "kg"),
  16223. name: "Back",
  16224. image: {
  16225. source: "./media/characters/liam-einarr/back.svg",
  16226. extra: 2822 / 2666,
  16227. bottom: 0.015
  16228. }
  16229. },
  16230. },
  16231. [
  16232. {
  16233. name: "Normal",
  16234. height: math.unit(1.5, "meters"),
  16235. default: true
  16236. },
  16237. {
  16238. name: "Macro",
  16239. height: math.unit(150, "meters")
  16240. },
  16241. {
  16242. name: "Megamacro",
  16243. height: math.unit(35, "km")
  16244. },
  16245. ]
  16246. ))
  16247. characterMakers.push(() => makeCharacter(
  16248. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16249. {
  16250. front: {
  16251. height: math.unit(6, "feet"),
  16252. weight: math.unit(75, "kg"),
  16253. name: "Front",
  16254. image: {
  16255. source: "./media/characters/linda/front.svg",
  16256. extra: 930 / 874,
  16257. bottom: 0.004
  16258. }
  16259. },
  16260. },
  16261. [
  16262. {
  16263. name: "Normal",
  16264. height: math.unit(6, "feet"),
  16265. default: true
  16266. },
  16267. ]
  16268. ))
  16269. characterMakers.push(() => makeCharacter(
  16270. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16271. {
  16272. front: {
  16273. height: math.unit(6 + 8 / 12, "feet"),
  16274. weight: math.unit(220, "lb"),
  16275. name: "Front",
  16276. image: {
  16277. source: "./media/characters/caylex/front.svg",
  16278. extra: 821 / 772,
  16279. bottom: 0.07
  16280. }
  16281. },
  16282. back: {
  16283. height: math.unit(6 + 8 / 12, "feet"),
  16284. weight: math.unit(220, "lb"),
  16285. name: "Back",
  16286. image: {
  16287. source: "./media/characters/caylex/back.svg",
  16288. extra: 821 / 772,
  16289. bottom: 0.022
  16290. }
  16291. },
  16292. hand: {
  16293. height: math.unit(1.25, "feet"),
  16294. name: "Hand",
  16295. image: {
  16296. source: "./media/characters/caylex/hand.svg"
  16297. }
  16298. },
  16299. foot: {
  16300. height: math.unit(1.6, "feet"),
  16301. name: "Foot",
  16302. image: {
  16303. source: "./media/characters/caylex/foot.svg"
  16304. }
  16305. },
  16306. armored: {
  16307. height: math.unit(6 + 8 / 12, "feet"),
  16308. weight: math.unit(250, "lb"),
  16309. name: "Armored",
  16310. image: {
  16311. source: "./media/characters/caylex/armored.svg",
  16312. extra: 1420 / 1310,
  16313. bottom: 0.045
  16314. }
  16315. },
  16316. },
  16317. [
  16318. {
  16319. name: "Normal",
  16320. height: math.unit(6 + 8 / 12, "feet"),
  16321. default: true
  16322. },
  16323. {
  16324. name: "Normal+",
  16325. height: math.unit(12, "feet")
  16326. },
  16327. ]
  16328. ))
  16329. characterMakers.push(() => makeCharacter(
  16330. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16331. {
  16332. front: {
  16333. height: math.unit(7 + 6 / 12, "feet"),
  16334. weight: math.unit(288, "lb"),
  16335. name: "Front",
  16336. image: {
  16337. source: "./media/characters/alana/front.svg",
  16338. extra: 679 / 653,
  16339. bottom: 22.5 / 701
  16340. }
  16341. },
  16342. },
  16343. [
  16344. {
  16345. name: "Normal",
  16346. height: math.unit(7 + 6 / 12, "feet")
  16347. },
  16348. {
  16349. name: "Large",
  16350. height: math.unit(50, "feet")
  16351. },
  16352. {
  16353. name: "Macro",
  16354. height: math.unit(100, "feet"),
  16355. default: true
  16356. },
  16357. {
  16358. name: "Macro+",
  16359. height: math.unit(200, "feet")
  16360. },
  16361. ]
  16362. ))
  16363. characterMakers.push(() => makeCharacter(
  16364. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16365. {
  16366. front: {
  16367. height: math.unit(6 + 1 / 12, "feet"),
  16368. weight: math.unit(210, "lb"),
  16369. name: "Front",
  16370. image: {
  16371. source: "./media/characters/hasani/front.svg",
  16372. extra: 244 / 232,
  16373. bottom: 0.01
  16374. }
  16375. },
  16376. back: {
  16377. height: math.unit(6 + 1 / 12, "feet"),
  16378. weight: math.unit(210, "lb"),
  16379. name: "Back",
  16380. image: {
  16381. source: "./media/characters/hasani/back.svg",
  16382. extra: 244 / 232,
  16383. bottom: 0.01
  16384. }
  16385. },
  16386. },
  16387. [
  16388. {
  16389. name: "Normal",
  16390. height: math.unit(6 + 1 / 12, "feet")
  16391. },
  16392. {
  16393. name: "Macro",
  16394. height: math.unit(175, "feet"),
  16395. default: true
  16396. },
  16397. ]
  16398. ))
  16399. characterMakers.push(() => makeCharacter(
  16400. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16401. {
  16402. front: {
  16403. height: math.unit(1.82, "meters"),
  16404. weight: math.unit(140, "lb"),
  16405. name: "Front",
  16406. image: {
  16407. source: "./media/characters/nita/front.svg",
  16408. extra: 2473 / 2363,
  16409. bottom: 0.01
  16410. }
  16411. },
  16412. },
  16413. [
  16414. {
  16415. name: "Normal",
  16416. height: math.unit(1.82, "m")
  16417. },
  16418. {
  16419. name: "Macro",
  16420. height: math.unit(300, "m")
  16421. },
  16422. {
  16423. name: "Mistake Canon",
  16424. height: math.unit(0.5, "miles"),
  16425. default: true
  16426. },
  16427. {
  16428. name: "Big Mistake",
  16429. height: math.unit(13, "miles")
  16430. },
  16431. {
  16432. name: "Playing God",
  16433. height: math.unit(2450, "miles")
  16434. },
  16435. ]
  16436. ))
  16437. characterMakers.push(() => makeCharacter(
  16438. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16439. {
  16440. front: {
  16441. height: math.unit(4, "feet"),
  16442. weight: math.unit(120, "lb"),
  16443. name: "Front",
  16444. image: {
  16445. source: "./media/characters/shiriko/front.svg",
  16446. extra: 195 / 188
  16447. }
  16448. },
  16449. },
  16450. [
  16451. {
  16452. name: "Normal",
  16453. height: math.unit(4, "feet"),
  16454. default: true
  16455. },
  16456. ]
  16457. ))
  16458. characterMakers.push(() => makeCharacter(
  16459. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16460. {
  16461. front: {
  16462. height: math.unit(6, "feet"),
  16463. name: "front",
  16464. image: {
  16465. source: "./media/characters/deja/front.svg",
  16466. extra: 926 / 840,
  16467. bottom: 0.07
  16468. }
  16469. },
  16470. },
  16471. [
  16472. {
  16473. name: "Planck Length",
  16474. height: math.unit(1.6e-35, "meters")
  16475. },
  16476. {
  16477. name: "Normal",
  16478. height: math.unit(30.48, "meters"),
  16479. default: true
  16480. },
  16481. {
  16482. name: "Universal",
  16483. height: math.unit(8.8e26, "meters")
  16484. },
  16485. ]
  16486. ))
  16487. characterMakers.push(() => makeCharacter(
  16488. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16489. {
  16490. side: {
  16491. height: math.unit(8, "feet"),
  16492. weight: math.unit(6300, "lb"),
  16493. name: "Side",
  16494. image: {
  16495. source: "./media/characters/anima/side.svg",
  16496. bottom: 0.035
  16497. }
  16498. },
  16499. },
  16500. [
  16501. {
  16502. name: "Normal",
  16503. height: math.unit(8, "feet"),
  16504. default: true
  16505. },
  16506. ]
  16507. ))
  16508. characterMakers.push(() => makeCharacter(
  16509. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16510. {
  16511. front: {
  16512. height: math.unit(8, "feet"),
  16513. weight: math.unit(350, "lb"),
  16514. name: "Front",
  16515. image: {
  16516. source: "./media/characters/bianca/front.svg",
  16517. extra: 234 / 225,
  16518. bottom: 0.03
  16519. }
  16520. },
  16521. },
  16522. [
  16523. {
  16524. name: "Normal",
  16525. height: math.unit(8, "feet"),
  16526. default: true
  16527. },
  16528. ]
  16529. ))
  16530. characterMakers.push(() => makeCharacter(
  16531. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16532. {
  16533. front: {
  16534. height: math.unit(6, "feet"),
  16535. weight: math.unit(150, "lb"),
  16536. name: "Front",
  16537. image: {
  16538. source: "./media/characters/adinia/front.svg",
  16539. extra: 1845 / 1672,
  16540. bottom: 0.02
  16541. }
  16542. },
  16543. back: {
  16544. height: math.unit(6, "feet"),
  16545. weight: math.unit(150, "lb"),
  16546. name: "Back",
  16547. image: {
  16548. source: "./media/characters/adinia/back.svg",
  16549. extra: 1845 / 1672,
  16550. bottom: 0.002
  16551. }
  16552. },
  16553. },
  16554. [
  16555. {
  16556. name: "Normal",
  16557. height: math.unit(11 + 5 / 12, "feet"),
  16558. default: true
  16559. },
  16560. ]
  16561. ))
  16562. characterMakers.push(() => makeCharacter(
  16563. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16564. {
  16565. front: {
  16566. height: math.unit(3, "meters"),
  16567. weight: math.unit(200, "kg"),
  16568. name: "Front",
  16569. image: {
  16570. source: "./media/characters/lykasa/front.svg",
  16571. extra: 1076 / 976,
  16572. bottom: 0.06
  16573. }
  16574. },
  16575. },
  16576. [
  16577. {
  16578. name: "Normal",
  16579. height: math.unit(3, "meters")
  16580. },
  16581. {
  16582. name: "Kaiju",
  16583. height: math.unit(120, "meters"),
  16584. default: true
  16585. },
  16586. {
  16587. name: "Mega Kaiju",
  16588. height: math.unit(240, "km")
  16589. },
  16590. {
  16591. name: "Giga Kaiju",
  16592. height: math.unit(400, "megameters")
  16593. },
  16594. {
  16595. name: "Tera Kaiju",
  16596. height: math.unit(800, "gigameters")
  16597. },
  16598. {
  16599. name: "Kaiju Dragon Goddess",
  16600. height: math.unit(26, "zettaparsecs")
  16601. },
  16602. ]
  16603. ))
  16604. characterMakers.push(() => makeCharacter(
  16605. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16606. {
  16607. side: {
  16608. height: math.unit(283 / 124 * 6, "feet"),
  16609. weight: math.unit(35000, "lb"),
  16610. name: "Side",
  16611. image: {
  16612. source: "./media/characters/malfaren/side.svg",
  16613. extra: 2500 / 1010,
  16614. bottom: 0.01
  16615. }
  16616. },
  16617. front: {
  16618. height: math.unit(22.36, "feet"),
  16619. weight: math.unit(35000, "lb"),
  16620. name: "Front",
  16621. image: {
  16622. source: "./media/characters/malfaren/front.svg",
  16623. extra: 1631 / 1476,
  16624. bottom: 0.01
  16625. }
  16626. },
  16627. maw: {
  16628. height: math.unit(6.9, "feet"),
  16629. name: "Maw",
  16630. image: {
  16631. source: "./media/characters/malfaren/maw.svg"
  16632. }
  16633. },
  16634. },
  16635. [
  16636. {
  16637. name: "Big",
  16638. height: math.unit(283 / 162 * 6, "feet"),
  16639. },
  16640. {
  16641. name: "Bigger",
  16642. height: math.unit(283 / 124 * 6, "feet")
  16643. },
  16644. {
  16645. name: "Massive",
  16646. height: math.unit(283 / 92 * 6, "feet"),
  16647. default: true
  16648. },
  16649. {
  16650. name: "👀💦",
  16651. height: math.unit(283 / 73 * 6, "feet"),
  16652. },
  16653. ]
  16654. ))
  16655. characterMakers.push(() => makeCharacter(
  16656. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16657. {
  16658. front: {
  16659. height: math.unit(1.7, "m"),
  16660. weight: math.unit(70, "kg"),
  16661. name: "Front",
  16662. image: {
  16663. source: "./media/characters/kernel/front.svg",
  16664. extra: 222 / 210,
  16665. bottom: 0.007
  16666. }
  16667. },
  16668. },
  16669. [
  16670. {
  16671. name: "Nano",
  16672. height: math.unit(17, "micrometers")
  16673. },
  16674. {
  16675. name: "Micro",
  16676. height: math.unit(1.7, "mm")
  16677. },
  16678. {
  16679. name: "Small",
  16680. height: math.unit(1.7, "cm")
  16681. },
  16682. {
  16683. name: "Normal",
  16684. height: math.unit(1.7, "m"),
  16685. default: true
  16686. },
  16687. ]
  16688. ))
  16689. characterMakers.push(() => makeCharacter(
  16690. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16691. {
  16692. front: {
  16693. height: math.unit(1.75, "meters"),
  16694. weight: math.unit(65, "kg"),
  16695. name: "Front",
  16696. image: {
  16697. source: "./media/characters/jayne-folest/front.svg",
  16698. extra: 2115 / 2007,
  16699. bottom: 0.02
  16700. }
  16701. },
  16702. back: {
  16703. height: math.unit(1.75, "meters"),
  16704. weight: math.unit(65, "kg"),
  16705. name: "Back",
  16706. image: {
  16707. source: "./media/characters/jayne-folest/back.svg",
  16708. extra: 2115 / 2007,
  16709. bottom: 0.005
  16710. }
  16711. },
  16712. frontClothed: {
  16713. height: math.unit(1.75, "meters"),
  16714. weight: math.unit(65, "kg"),
  16715. name: "Front (Clothed)",
  16716. image: {
  16717. source: "./media/characters/jayne-folest/front-clothed.svg",
  16718. extra: 2115 / 2007,
  16719. bottom: 0.035
  16720. }
  16721. },
  16722. hand: {
  16723. height: math.unit(1 / 1.260, "feet"),
  16724. name: "Hand",
  16725. image: {
  16726. source: "./media/characters/jayne-folest/hand.svg"
  16727. }
  16728. },
  16729. foot: {
  16730. height: math.unit(1 / 0.918, "feet"),
  16731. name: "Foot",
  16732. image: {
  16733. source: "./media/characters/jayne-folest/foot.svg"
  16734. }
  16735. },
  16736. },
  16737. [
  16738. {
  16739. name: "Micro",
  16740. height: math.unit(4, "cm")
  16741. },
  16742. {
  16743. name: "Normal",
  16744. height: math.unit(1.75, "meters")
  16745. },
  16746. {
  16747. name: "Macro",
  16748. height: math.unit(47.5, "meters"),
  16749. default: true
  16750. },
  16751. ]
  16752. ))
  16753. characterMakers.push(() => makeCharacter(
  16754. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16755. {
  16756. front: {
  16757. height: math.unit(180, "cm"),
  16758. weight: math.unit(70, "kg"),
  16759. name: "Front",
  16760. image: {
  16761. source: "./media/characters/algier/front.svg",
  16762. extra: 596 / 572,
  16763. bottom: 0.04
  16764. }
  16765. },
  16766. back: {
  16767. height: math.unit(180, "cm"),
  16768. weight: math.unit(70, "kg"),
  16769. name: "Back",
  16770. image: {
  16771. source: "./media/characters/algier/back.svg",
  16772. extra: 596 / 572,
  16773. bottom: 0.025
  16774. }
  16775. },
  16776. frontdressed: {
  16777. height: math.unit(180, "cm"),
  16778. weight: math.unit(150, "kg"),
  16779. name: "Front-dressed",
  16780. image: {
  16781. source: "./media/characters/algier/front-dressed.svg",
  16782. extra: 596 / 572,
  16783. bottom: 0.038
  16784. }
  16785. },
  16786. },
  16787. [
  16788. {
  16789. name: "Micro",
  16790. height: math.unit(5, "cm")
  16791. },
  16792. {
  16793. name: "Normal",
  16794. height: math.unit(180, "cm"),
  16795. default: true
  16796. },
  16797. {
  16798. name: "Macro",
  16799. height: math.unit(64, "m")
  16800. },
  16801. ]
  16802. ))
  16803. characterMakers.push(() => makeCharacter(
  16804. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16805. {
  16806. upright: {
  16807. height: math.unit(7, "feet"),
  16808. weight: math.unit(300, "lb"),
  16809. name: "Upright",
  16810. image: {
  16811. source: "./media/characters/pretzel/upright.svg",
  16812. extra: 534 / 522,
  16813. bottom: 0.065
  16814. }
  16815. },
  16816. sprawling: {
  16817. height: math.unit(3.75, "feet"),
  16818. weight: math.unit(300, "lb"),
  16819. name: "Sprawling",
  16820. image: {
  16821. source: "./media/characters/pretzel/sprawling.svg",
  16822. extra: 314 / 281,
  16823. bottom: 0.1
  16824. }
  16825. },
  16826. tongue: {
  16827. height: math.unit(2, "feet"),
  16828. name: "Tongue",
  16829. image: {
  16830. source: "./media/characters/pretzel/tongue.svg"
  16831. }
  16832. },
  16833. },
  16834. [
  16835. {
  16836. name: "Normal",
  16837. height: math.unit(7, "feet"),
  16838. default: true
  16839. },
  16840. {
  16841. name: "Oversized",
  16842. height: math.unit(15, "feet")
  16843. },
  16844. {
  16845. name: "Huge",
  16846. height: math.unit(30, "feet")
  16847. },
  16848. {
  16849. name: "Macro",
  16850. height: math.unit(250, "feet")
  16851. },
  16852. ]
  16853. ))
  16854. characterMakers.push(() => makeCharacter(
  16855. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16856. {
  16857. sideFront: {
  16858. height: math.unit(5 + 2 / 12, "feet"),
  16859. weight: math.unit(120, "lb"),
  16860. name: "Front Side",
  16861. image: {
  16862. source: "./media/characters/roxi/side-front.svg",
  16863. extra: 2924 / 2717,
  16864. bottom: 0.08
  16865. }
  16866. },
  16867. sideBack: {
  16868. height: math.unit(5 + 2 / 12, "feet"),
  16869. weight: math.unit(120, "lb"),
  16870. name: "Back Side",
  16871. image: {
  16872. source: "./media/characters/roxi/side-back.svg",
  16873. extra: 2904 / 2693,
  16874. bottom: 0.06
  16875. }
  16876. },
  16877. front: {
  16878. height: math.unit(5 + 2 / 12, "feet"),
  16879. weight: math.unit(120, "lb"),
  16880. name: "Front",
  16881. image: {
  16882. source: "./media/characters/roxi/front.svg",
  16883. extra: 2028 / 1907,
  16884. bottom: 0.01
  16885. }
  16886. },
  16887. frontAlt: {
  16888. height: math.unit(5 + 2 / 12, "feet"),
  16889. weight: math.unit(120, "lb"),
  16890. name: "Front (Alt)",
  16891. image: {
  16892. source: "./media/characters/roxi/front-alt.svg",
  16893. extra: 1828 / 1798,
  16894. bottom: 0.01
  16895. }
  16896. },
  16897. sitting: {
  16898. height: math.unit(2.8, "feet"),
  16899. weight: math.unit(120, "lb"),
  16900. name: "Sitting",
  16901. image: {
  16902. source: "./media/characters/roxi/sitting.svg",
  16903. extra: 2660 / 2462,
  16904. bottom: 0.1
  16905. }
  16906. },
  16907. },
  16908. [
  16909. {
  16910. name: "Normal",
  16911. height: math.unit(5 + 2 / 12, "feet"),
  16912. default: true
  16913. },
  16914. ]
  16915. ))
  16916. characterMakers.push(() => makeCharacter(
  16917. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  16918. {
  16919. side: {
  16920. height: math.unit(55, "feet"),
  16921. weight: math.unit(153, "tons"),
  16922. name: "Side",
  16923. image: {
  16924. source: "./media/characters/shadow/side.svg",
  16925. extra: 701 / 628,
  16926. bottom: 0.02
  16927. }
  16928. },
  16929. flying: {
  16930. height: math.unit(145, "feet"),
  16931. weight: math.unit(153, "tons"),
  16932. name: "Flying",
  16933. image: {
  16934. source: "./media/characters/shadow/flying.svg"
  16935. }
  16936. },
  16937. },
  16938. [
  16939. {
  16940. name: "Normal",
  16941. height: math.unit(55, "feet"),
  16942. default: true
  16943. },
  16944. ]
  16945. ))
  16946. characterMakers.push(() => makeCharacter(
  16947. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  16948. {
  16949. front: {
  16950. height: math.unit(6, "feet"),
  16951. weight: math.unit(200, "lb"),
  16952. name: "Front",
  16953. image: {
  16954. source: "./media/characters/marcie/front.svg",
  16955. extra: 960 / 876,
  16956. bottom: 58 / 1017.87
  16957. }
  16958. },
  16959. },
  16960. [
  16961. {
  16962. name: "Macro",
  16963. height: math.unit(1, "mile"),
  16964. default: true
  16965. },
  16966. ]
  16967. ))
  16968. characterMakers.push(() => makeCharacter(
  16969. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  16970. {
  16971. front: {
  16972. height: math.unit(7, "feet"),
  16973. weight: math.unit(200, "lb"),
  16974. name: "Front",
  16975. image: {
  16976. source: "./media/characters/kachina/front.svg",
  16977. extra: 1290.68 / 1119,
  16978. bottom: 36.5 / 1327.18
  16979. }
  16980. },
  16981. },
  16982. [
  16983. {
  16984. name: "Normal",
  16985. height: math.unit(7, "feet"),
  16986. default: true
  16987. },
  16988. ]
  16989. ))
  16990. characterMakers.push(() => makeCharacter(
  16991. { name: "Kash", species: ["canine"], tags: ["feral"] },
  16992. {
  16993. looking: {
  16994. height: math.unit(2, "meters"),
  16995. weight: math.unit(300, "kg"),
  16996. name: "Looking",
  16997. image: {
  16998. source: "./media/characters/kash/looking.svg",
  16999. extra: 474 / 344,
  17000. bottom: 0.03
  17001. }
  17002. },
  17003. side: {
  17004. height: math.unit(2, "meters"),
  17005. weight: math.unit(300, "kg"),
  17006. name: "Side",
  17007. image: {
  17008. source: "./media/characters/kash/side.svg",
  17009. extra: 302 / 251,
  17010. bottom: 0.03
  17011. }
  17012. },
  17013. front: {
  17014. height: math.unit(2, "meters"),
  17015. weight: math.unit(300, "kg"),
  17016. name: "Front",
  17017. image: {
  17018. source: "./media/characters/kash/front.svg",
  17019. extra: 495 / 360,
  17020. bottom: 0.015
  17021. }
  17022. },
  17023. },
  17024. [
  17025. {
  17026. name: "Normal",
  17027. height: math.unit(2, "meters"),
  17028. default: true
  17029. },
  17030. {
  17031. name: "Big",
  17032. height: math.unit(3, "meters")
  17033. },
  17034. {
  17035. name: "Large",
  17036. height: math.unit(5, "meters")
  17037. },
  17038. ]
  17039. ))
  17040. characterMakers.push(() => makeCharacter(
  17041. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17042. {
  17043. feeding: {
  17044. height: math.unit(6.7, "feet"),
  17045. weight: math.unit(350, "lb"),
  17046. name: "Feeding",
  17047. image: {
  17048. source: "./media/characters/lalim/feeding.svg",
  17049. }
  17050. },
  17051. },
  17052. [
  17053. {
  17054. name: "Normal",
  17055. height: math.unit(6.7, "feet"),
  17056. default: true
  17057. },
  17058. ]
  17059. ))
  17060. characterMakers.push(() => makeCharacter(
  17061. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17062. {
  17063. front: {
  17064. height: math.unit(9.5, "feet"),
  17065. weight: math.unit(600, "lb"),
  17066. name: "Front",
  17067. image: {
  17068. source: "./media/characters/de'vout/front.svg",
  17069. extra: 1443 / 1328,
  17070. bottom: 0.025
  17071. }
  17072. },
  17073. back: {
  17074. height: math.unit(9.5, "feet"),
  17075. weight: math.unit(600, "lb"),
  17076. name: "Back",
  17077. image: {
  17078. source: "./media/characters/de'vout/back.svg",
  17079. extra: 1443 / 1328
  17080. }
  17081. },
  17082. frontDressed: {
  17083. height: math.unit(9.5, "feet"),
  17084. weight: math.unit(600, "lb"),
  17085. name: "Front (Dressed",
  17086. image: {
  17087. source: "./media/characters/de'vout/front-dressed.svg",
  17088. extra: 1443 / 1328,
  17089. bottom: 0.025
  17090. }
  17091. },
  17092. backDressed: {
  17093. height: math.unit(9.5, "feet"),
  17094. weight: math.unit(600, "lb"),
  17095. name: "Back (Dressed",
  17096. image: {
  17097. source: "./media/characters/de'vout/back-dressed.svg",
  17098. extra: 1443 / 1328
  17099. }
  17100. },
  17101. },
  17102. [
  17103. {
  17104. name: "Normal",
  17105. height: math.unit(9.5, "feet"),
  17106. default: true
  17107. },
  17108. ]
  17109. ))
  17110. characterMakers.push(() => makeCharacter(
  17111. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17112. {
  17113. front: {
  17114. height: math.unit(8, "feet"),
  17115. weight: math.unit(225, "lb"),
  17116. name: "Front",
  17117. image: {
  17118. source: "./media/characters/talana/front.svg",
  17119. extra: 1410 / 1300,
  17120. bottom: 0.015
  17121. }
  17122. },
  17123. frontDressed: {
  17124. height: math.unit(8, "feet"),
  17125. weight: math.unit(225, "lb"),
  17126. name: "Front (Dressed",
  17127. image: {
  17128. source: "./media/characters/talana/front-dressed.svg",
  17129. extra: 1410 / 1300,
  17130. bottom: 0.015
  17131. }
  17132. },
  17133. },
  17134. [
  17135. {
  17136. name: "Normal",
  17137. height: math.unit(8, "feet"),
  17138. default: true
  17139. },
  17140. ]
  17141. ))
  17142. characterMakers.push(() => makeCharacter(
  17143. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17144. {
  17145. side: {
  17146. height: math.unit(7.2, "feet"),
  17147. weight: math.unit(150, "lb"),
  17148. name: "Side",
  17149. image: {
  17150. source: "./media/characters/xeauvok/side.svg",
  17151. extra: 1975 / 1523,
  17152. bottom: 0.07
  17153. }
  17154. },
  17155. },
  17156. [
  17157. {
  17158. name: "Normal",
  17159. height: math.unit(7.2, "feet"),
  17160. default: true
  17161. },
  17162. ]
  17163. ))
  17164. characterMakers.push(() => makeCharacter(
  17165. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17166. {
  17167. side: {
  17168. height: math.unit(10, "feet"),
  17169. weight: math.unit(900, "kg"),
  17170. name: "Side",
  17171. image: {
  17172. source: "./media/characters/zara/side.svg",
  17173. extra: 504 / 498
  17174. }
  17175. },
  17176. },
  17177. [
  17178. {
  17179. name: "Normal",
  17180. height: math.unit(10, "feet"),
  17181. default: true
  17182. },
  17183. ]
  17184. ))
  17185. characterMakers.push(() => makeCharacter(
  17186. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17187. {
  17188. side: {
  17189. height: math.unit(6, "feet"),
  17190. weight: math.unit(150, "lb"),
  17191. name: "Side",
  17192. image: {
  17193. source: "./media/characters/richard-dragon/side.svg",
  17194. extra: 845 / 340,
  17195. bottom: 0.017
  17196. }
  17197. },
  17198. maw: {
  17199. height: math.unit(2.97, "feet"),
  17200. name: "Maw",
  17201. image: {
  17202. source: "./media/characters/richard-dragon/maw.svg"
  17203. }
  17204. },
  17205. },
  17206. [
  17207. ]
  17208. ))
  17209. characterMakers.push(() => makeCharacter(
  17210. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17211. {
  17212. front: {
  17213. height: math.unit(4, "feet"),
  17214. weight: math.unit(100, "lb"),
  17215. name: "Front",
  17216. image: {
  17217. source: "./media/characters/richard-smeargle/front.svg",
  17218. extra: 2952 / 2820,
  17219. bottom: 0.028
  17220. }
  17221. },
  17222. },
  17223. [
  17224. {
  17225. name: "Normal",
  17226. height: math.unit(4, "feet"),
  17227. default: true
  17228. },
  17229. {
  17230. name: "Dynamax",
  17231. height: math.unit(20, "meters")
  17232. },
  17233. ]
  17234. ))
  17235. characterMakers.push(() => makeCharacter(
  17236. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17237. {
  17238. front: {
  17239. height: math.unit(6, "feet"),
  17240. weight: math.unit(110, "lb"),
  17241. name: "Front",
  17242. image: {
  17243. source: "./media/characters/klay/front.svg",
  17244. extra: 962 / 883,
  17245. bottom: 0.04
  17246. }
  17247. },
  17248. back: {
  17249. height: math.unit(6, "feet"),
  17250. weight: math.unit(110, "lb"),
  17251. name: "Back",
  17252. image: {
  17253. source: "./media/characters/klay/back.svg",
  17254. extra: 962 / 883
  17255. }
  17256. },
  17257. beans: {
  17258. height: math.unit(1.15, "feet"),
  17259. name: "Beans",
  17260. image: {
  17261. source: "./media/characters/klay/beans.svg"
  17262. }
  17263. },
  17264. },
  17265. [
  17266. {
  17267. name: "Micro",
  17268. height: math.unit(6, "inches")
  17269. },
  17270. {
  17271. name: "Mini",
  17272. height: math.unit(3, "feet")
  17273. },
  17274. {
  17275. name: "Normal",
  17276. height: math.unit(6, "feet"),
  17277. default: true
  17278. },
  17279. {
  17280. name: "Big",
  17281. height: math.unit(25, "feet")
  17282. },
  17283. {
  17284. name: "Macro",
  17285. height: math.unit(100, "feet")
  17286. },
  17287. {
  17288. name: "Megamacro",
  17289. height: math.unit(400, "feet")
  17290. },
  17291. ]
  17292. ))
  17293. characterMakers.push(() => makeCharacter(
  17294. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17295. {
  17296. front: {
  17297. height: math.unit(6, "feet"),
  17298. weight: math.unit(160, "lb"),
  17299. name: "Front",
  17300. image: {
  17301. source: "./media/characters/marcus/front.svg",
  17302. extra: 734 / 676,
  17303. bottom: 0.03
  17304. }
  17305. },
  17306. },
  17307. [
  17308. {
  17309. name: "Little",
  17310. height: math.unit(6, "feet")
  17311. },
  17312. {
  17313. name: "Normal",
  17314. height: math.unit(110, "feet"),
  17315. default: true
  17316. },
  17317. {
  17318. name: "Macro",
  17319. height: math.unit(250, "feet")
  17320. },
  17321. {
  17322. name: "Megamacro",
  17323. height: math.unit(1000, "feet")
  17324. },
  17325. ]
  17326. ))
  17327. characterMakers.push(() => makeCharacter(
  17328. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17329. {
  17330. front: {
  17331. height: math.unit(7, "feet"),
  17332. weight: math.unit(275, "lb"),
  17333. name: "Front",
  17334. image: {
  17335. source: "./media/characters/claude-delroute/front.svg",
  17336. extra: 230 / 214,
  17337. bottom: 0.007
  17338. }
  17339. },
  17340. side: {
  17341. height: math.unit(7, "feet"),
  17342. weight: math.unit(275, "lb"),
  17343. name: "Side",
  17344. image: {
  17345. source: "./media/characters/claude-delroute/side.svg",
  17346. extra: 222 / 214,
  17347. bottom: 0.01
  17348. }
  17349. },
  17350. back: {
  17351. height: math.unit(7, "feet"),
  17352. weight: math.unit(275, "lb"),
  17353. name: "Back",
  17354. image: {
  17355. source: "./media/characters/claude-delroute/back.svg",
  17356. extra: 230 / 214,
  17357. bottom: 0.015
  17358. }
  17359. },
  17360. maw: {
  17361. height: math.unit(0.6407, "meters"),
  17362. name: "Maw",
  17363. image: {
  17364. source: "./media/characters/claude-delroute/maw.svg"
  17365. }
  17366. },
  17367. },
  17368. [
  17369. {
  17370. name: "Normal",
  17371. height: math.unit(7, "feet"),
  17372. default: true
  17373. },
  17374. {
  17375. name: "Lorge",
  17376. height: math.unit(20, "feet")
  17377. },
  17378. ]
  17379. ))
  17380. characterMakers.push(() => makeCharacter(
  17381. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17382. {
  17383. front: {
  17384. height: math.unit(8 + 4 / 12, "feet"),
  17385. weight: math.unit(600, "lb"),
  17386. name: "Front",
  17387. image: {
  17388. source: "./media/characters/dragonien/front.svg",
  17389. extra: 100 / 94,
  17390. bottom: 3.3 / 103.3445
  17391. }
  17392. },
  17393. back: {
  17394. height: math.unit(8 + 4 / 12, "feet"),
  17395. weight: math.unit(600, "lb"),
  17396. name: "Back",
  17397. image: {
  17398. source: "./media/characters/dragonien/back.svg",
  17399. extra: 776 / 746,
  17400. bottom: 6.4 / 782.0616
  17401. }
  17402. },
  17403. foot: {
  17404. height: math.unit(1.54, "feet"),
  17405. name: "Foot",
  17406. image: {
  17407. source: "./media/characters/dragonien/foot.svg",
  17408. }
  17409. },
  17410. },
  17411. [
  17412. {
  17413. name: "Normal",
  17414. height: math.unit(8 + 4 / 12, "feet"),
  17415. default: true
  17416. },
  17417. {
  17418. name: "Macro",
  17419. height: math.unit(200, "feet")
  17420. },
  17421. {
  17422. name: "Megamacro",
  17423. height: math.unit(1, "mile")
  17424. },
  17425. {
  17426. name: "Gigamacro",
  17427. height: math.unit(1000, "miles")
  17428. },
  17429. ]
  17430. ))
  17431. characterMakers.push(() => makeCharacter(
  17432. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17433. {
  17434. front: {
  17435. height: math.unit(5 + 2 / 12, "feet"),
  17436. weight: math.unit(110, "lb"),
  17437. name: "Front",
  17438. image: {
  17439. source: "./media/characters/desta/front.svg",
  17440. extra: 767/726,
  17441. bottom: 11.7/779
  17442. }
  17443. },
  17444. back: {
  17445. height: math.unit(5 + 2 / 12, "feet"),
  17446. weight: math.unit(110, "lb"),
  17447. name: "Back",
  17448. image: {
  17449. source: "./media/characters/desta/back.svg",
  17450. extra: 777/728,
  17451. bottom: 6/784
  17452. }
  17453. },
  17454. frontAlt: {
  17455. height: math.unit(5 + 2 / 12, "feet"),
  17456. weight: math.unit(110, "lb"),
  17457. name: "Front",
  17458. image: {
  17459. source: "./media/characters/desta/front-alt.svg",
  17460. extra: 1482 / 1417
  17461. }
  17462. },
  17463. side: {
  17464. height: math.unit(5 + 2 / 12, "feet"),
  17465. weight: math.unit(110, "lb"),
  17466. name: "Side",
  17467. image: {
  17468. source: "./media/characters/desta/side.svg",
  17469. extra: 2579 / 2491,
  17470. bottom: 0.053
  17471. }
  17472. },
  17473. },
  17474. [
  17475. {
  17476. name: "Micro",
  17477. height: math.unit(6, "inches")
  17478. },
  17479. {
  17480. name: "Normal",
  17481. height: math.unit(5 + 2 / 12, "feet"),
  17482. default: true
  17483. },
  17484. {
  17485. name: "Macro",
  17486. height: math.unit(62, "feet")
  17487. },
  17488. {
  17489. name: "Megamacro",
  17490. height: math.unit(1800, "feet")
  17491. },
  17492. ]
  17493. ))
  17494. characterMakers.push(() => makeCharacter(
  17495. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17496. {
  17497. front: {
  17498. height: math.unit(10, "feet"),
  17499. weight: math.unit(700, "lb"),
  17500. name: "Front",
  17501. image: {
  17502. source: "./media/characters/storm-alystar/front.svg",
  17503. extra: 2112 / 1898,
  17504. bottom: 0.034
  17505. }
  17506. },
  17507. },
  17508. [
  17509. {
  17510. name: "Micro",
  17511. height: math.unit(3.5, "inches")
  17512. },
  17513. {
  17514. name: "Normal",
  17515. height: math.unit(10, "feet"),
  17516. default: true
  17517. },
  17518. {
  17519. name: "Macro",
  17520. height: math.unit(400, "feet")
  17521. },
  17522. {
  17523. name: "Deific",
  17524. height: math.unit(60, "miles")
  17525. },
  17526. ]
  17527. ))
  17528. characterMakers.push(() => makeCharacter(
  17529. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17530. {
  17531. front: {
  17532. height: math.unit(2.35, "meters"),
  17533. weight: math.unit(119, "kg"),
  17534. name: "Front",
  17535. image: {
  17536. source: "./media/characters/ilia/front.svg",
  17537. extra: 1285 / 1255,
  17538. bottom: 0.06
  17539. }
  17540. },
  17541. },
  17542. [
  17543. {
  17544. name: "Normal",
  17545. height: math.unit(2.35, "meters")
  17546. },
  17547. {
  17548. name: "Macro",
  17549. height: math.unit(140, "meters"),
  17550. default: true
  17551. },
  17552. {
  17553. name: "Megamacro",
  17554. height: math.unit(100, "miles")
  17555. },
  17556. ]
  17557. ))
  17558. characterMakers.push(() => makeCharacter(
  17559. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17560. {
  17561. front: {
  17562. height: math.unit(6 + 5 / 12, "feet"),
  17563. weight: math.unit(190, "lb"),
  17564. name: "Front",
  17565. image: {
  17566. source: "./media/characters/kingdead/front.svg",
  17567. extra: 1228 / 1177
  17568. }
  17569. },
  17570. },
  17571. [
  17572. {
  17573. name: "Micro",
  17574. height: math.unit(7, "inches")
  17575. },
  17576. {
  17577. name: "Normal",
  17578. height: math.unit(6 + 5 / 12, "feet")
  17579. },
  17580. {
  17581. name: "Macro",
  17582. height: math.unit(150, "feet"),
  17583. default: true
  17584. },
  17585. {
  17586. name: "Megamacro",
  17587. height: math.unit(200, "miles")
  17588. },
  17589. ]
  17590. ))
  17591. characterMakers.push(() => makeCharacter(
  17592. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17593. {
  17594. front: {
  17595. height: math.unit(8, "feet"),
  17596. weight: math.unit(600, "lb"),
  17597. name: "Front",
  17598. image: {
  17599. source: "./media/characters/kyrehx/front.svg",
  17600. extra: 1195 / 1095,
  17601. bottom: 0.034
  17602. }
  17603. },
  17604. },
  17605. [
  17606. {
  17607. name: "Micro",
  17608. height: math.unit(2, "inches")
  17609. },
  17610. {
  17611. name: "Normal",
  17612. height: math.unit(8, "feet"),
  17613. default: true
  17614. },
  17615. {
  17616. name: "Macro",
  17617. height: math.unit(255, "feet")
  17618. },
  17619. ]
  17620. ))
  17621. characterMakers.push(() => makeCharacter(
  17622. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17623. {
  17624. front: {
  17625. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17626. weight: math.unit(184, "lb"),
  17627. name: "Front",
  17628. image: {
  17629. source: "./media/characters/xang/front.svg",
  17630. extra: 845 / 755
  17631. }
  17632. },
  17633. },
  17634. [
  17635. {
  17636. name: "Normal",
  17637. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17638. default: true
  17639. },
  17640. {
  17641. name: "Macro",
  17642. height: math.unit(0.935 * 146, "feet")
  17643. },
  17644. {
  17645. name: "Megamacro",
  17646. height: math.unit(0.935 * 3, "miles")
  17647. },
  17648. ]
  17649. ))
  17650. characterMakers.push(() => makeCharacter(
  17651. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17652. {
  17653. frontDressed: {
  17654. height: math.unit(5 + 7 / 12, "feet"),
  17655. weight: math.unit(140, "lb"),
  17656. name: "Front (Dressed)",
  17657. image: {
  17658. source: "./media/characters/doc-weardno/front-dressed.svg",
  17659. extra: 263 / 234
  17660. }
  17661. },
  17662. backDressed: {
  17663. height: math.unit(5 + 7 / 12, "feet"),
  17664. weight: math.unit(140, "lb"),
  17665. name: "Back (Dressed)",
  17666. image: {
  17667. source: "./media/characters/doc-weardno/back-dressed.svg",
  17668. extra: 266 / 238
  17669. }
  17670. },
  17671. front: {
  17672. height: math.unit(5 + 7 / 12, "feet"),
  17673. weight: math.unit(140, "lb"),
  17674. name: "Front",
  17675. image: {
  17676. source: "./media/characters/doc-weardno/front.svg",
  17677. extra: 254 / 233
  17678. }
  17679. },
  17680. },
  17681. [
  17682. {
  17683. name: "Micro",
  17684. height: math.unit(3, "inches")
  17685. },
  17686. {
  17687. name: "Normal",
  17688. height: math.unit(5 + 7 / 12, "feet"),
  17689. default: true
  17690. },
  17691. {
  17692. name: "Macro",
  17693. height: math.unit(25, "feet")
  17694. },
  17695. {
  17696. name: "Megamacro",
  17697. height: math.unit(2, "miles")
  17698. },
  17699. ]
  17700. ))
  17701. characterMakers.push(() => makeCharacter(
  17702. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17703. {
  17704. front: {
  17705. height: math.unit(6 + 2 / 12, "feet"),
  17706. weight: math.unit(153, "lb"),
  17707. name: "Front",
  17708. image: {
  17709. source: "./media/characters/seth-whilst/front.svg",
  17710. bottom: 0.07
  17711. }
  17712. },
  17713. },
  17714. [
  17715. {
  17716. name: "Micro",
  17717. height: math.unit(5, "inches")
  17718. },
  17719. {
  17720. name: "Normal",
  17721. height: math.unit(6 + 2 / 12, "feet"),
  17722. default: true
  17723. },
  17724. ]
  17725. ))
  17726. characterMakers.push(() => makeCharacter(
  17727. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17728. {
  17729. front: {
  17730. height: math.unit(3, "inches"),
  17731. weight: math.unit(8, "grams"),
  17732. name: "Front",
  17733. image: {
  17734. source: "./media/characters/pocket-jabari/front.svg",
  17735. extra: 1024 / 974,
  17736. bottom: 0.039
  17737. }
  17738. },
  17739. },
  17740. [
  17741. {
  17742. name: "Minimicro",
  17743. height: math.unit(8, "mm")
  17744. },
  17745. {
  17746. name: "Micro",
  17747. height: math.unit(3, "inches"),
  17748. default: true
  17749. },
  17750. {
  17751. name: "Normal",
  17752. height: math.unit(3, "feet")
  17753. },
  17754. ]
  17755. ))
  17756. characterMakers.push(() => makeCharacter(
  17757. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17758. {
  17759. front: {
  17760. height: math.unit(15, "feet"),
  17761. weight: math.unit(3280, "lb"),
  17762. name: "Front",
  17763. image: {
  17764. source: "./media/characters/sapphy/front.svg",
  17765. extra: 671 / 577,
  17766. bottom: 0.085
  17767. }
  17768. },
  17769. back: {
  17770. height: math.unit(15, "feet"),
  17771. weight: math.unit(3280, "lb"),
  17772. name: "Back",
  17773. image: {
  17774. source: "./media/characters/sapphy/back.svg",
  17775. extra: 631 / 607,
  17776. bottom: 0.045
  17777. }
  17778. },
  17779. },
  17780. [
  17781. {
  17782. name: "Normal",
  17783. height: math.unit(15, "feet")
  17784. },
  17785. {
  17786. name: "Casual Macro",
  17787. height: math.unit(120, "feet")
  17788. },
  17789. {
  17790. name: "Macro",
  17791. height: math.unit(2150, "feet"),
  17792. default: true
  17793. },
  17794. {
  17795. name: "Megamacro",
  17796. height: math.unit(8, "miles")
  17797. },
  17798. {
  17799. name: "Galaxy Mom",
  17800. height: math.unit(6, "megalightyears")
  17801. },
  17802. ]
  17803. ))
  17804. characterMakers.push(() => makeCharacter(
  17805. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17806. {
  17807. front: {
  17808. height: math.unit(6, "feet"),
  17809. weight: math.unit(170, "lb"),
  17810. name: "Front",
  17811. image: {
  17812. source: "./media/characters/kiro/front.svg",
  17813. extra: 1064 / 1012,
  17814. bottom: 0.052
  17815. }
  17816. },
  17817. },
  17818. [
  17819. {
  17820. name: "Micro",
  17821. height: math.unit(6, "inches")
  17822. },
  17823. {
  17824. name: "Normal",
  17825. height: math.unit(6, "feet"),
  17826. default: true
  17827. },
  17828. {
  17829. name: "Macro",
  17830. height: math.unit(72, "feet")
  17831. },
  17832. ]
  17833. ))
  17834. characterMakers.push(() => makeCharacter(
  17835. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17836. {
  17837. front: {
  17838. height: math.unit(5 + 9 / 12, "feet"),
  17839. weight: math.unit(175, "lb"),
  17840. name: "Front",
  17841. image: {
  17842. source: "./media/characters/irishfox/front.svg",
  17843. extra: 1912 / 1680,
  17844. bottom: 0.02
  17845. }
  17846. },
  17847. },
  17848. [
  17849. {
  17850. name: "Nano",
  17851. height: math.unit(1, "mm")
  17852. },
  17853. {
  17854. name: "Micro",
  17855. height: math.unit(2, "inches")
  17856. },
  17857. {
  17858. name: "Normal",
  17859. height: math.unit(5 + 9 / 12, "feet"),
  17860. default: true
  17861. },
  17862. {
  17863. name: "Macro",
  17864. height: math.unit(45, "feet")
  17865. },
  17866. ]
  17867. ))
  17868. characterMakers.push(() => makeCharacter(
  17869. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  17870. {
  17871. front: {
  17872. height: math.unit(6 + 1 / 12, "feet"),
  17873. weight: math.unit(150, "lb"),
  17874. name: "Front",
  17875. image: {
  17876. source: "./media/characters/aronai-sieyes/front.svg",
  17877. extra: 1556 / 1480,
  17878. bottom: 0.015
  17879. }
  17880. },
  17881. side: {
  17882. height: math.unit(6 + 1 / 12, "feet"),
  17883. weight: math.unit(150, "lb"),
  17884. name: "Side",
  17885. image: {
  17886. source: "./media/characters/aronai-sieyes/side.svg",
  17887. extra: 1433 / 1390,
  17888. bottom: 0.0393
  17889. }
  17890. },
  17891. back: {
  17892. height: math.unit(6 + 1 / 12, "feet"),
  17893. weight: math.unit(150, "lb"),
  17894. name: "Back",
  17895. image: {
  17896. source: "./media/characters/aronai-sieyes/back.svg",
  17897. extra: 1544 / 1494,
  17898. bottom: 0.02
  17899. }
  17900. },
  17901. frontClothed: {
  17902. height: math.unit(6 + 1 / 12, "feet"),
  17903. weight: math.unit(150, "lb"),
  17904. name: "Front (Clothed)",
  17905. image: {
  17906. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17907. extra: 1582 / 1527
  17908. }
  17909. },
  17910. feral: {
  17911. height: math.unit(18, "feet"),
  17912. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17913. name: "Feral",
  17914. image: {
  17915. source: "./media/characters/aronai-sieyes/feral.svg",
  17916. extra: 1530 / 1240,
  17917. bottom: 0.035
  17918. }
  17919. },
  17920. },
  17921. [
  17922. {
  17923. name: "Micro",
  17924. height: math.unit(2, "inches")
  17925. },
  17926. {
  17927. name: "Normal",
  17928. height: math.unit(6 + 1 / 12, "feet"),
  17929. default: true
  17930. }
  17931. ]
  17932. ))
  17933. characterMakers.push(() => makeCharacter(
  17934. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  17935. {
  17936. front: {
  17937. height: math.unit(12, "feet"),
  17938. weight: math.unit(410, "kg"),
  17939. name: "Front",
  17940. image: {
  17941. source: "./media/characters/xuna/front.svg",
  17942. extra: 2184 / 1980
  17943. }
  17944. },
  17945. side: {
  17946. height: math.unit(12, "feet"),
  17947. weight: math.unit(410, "kg"),
  17948. name: "Side",
  17949. image: {
  17950. source: "./media/characters/xuna/side.svg",
  17951. extra: 2184 / 1980
  17952. }
  17953. },
  17954. back: {
  17955. height: math.unit(12, "feet"),
  17956. weight: math.unit(410, "kg"),
  17957. name: "Back",
  17958. image: {
  17959. source: "./media/characters/xuna/back.svg",
  17960. extra: 2184 / 1980
  17961. }
  17962. },
  17963. },
  17964. [
  17965. {
  17966. name: "Nano glow",
  17967. height: math.unit(10, "nm")
  17968. },
  17969. {
  17970. name: "Micro floof",
  17971. height: math.unit(0.3, "m")
  17972. },
  17973. {
  17974. name: "Huggable softy boi",
  17975. height: math.unit(3.6576, "m"),
  17976. default: true
  17977. },
  17978. {
  17979. name: "Admirable floof",
  17980. height: math.unit(80, "meters")
  17981. },
  17982. {
  17983. name: "Gentle macro",
  17984. height: math.unit(300, "meters")
  17985. },
  17986. {
  17987. name: "Very careful floof",
  17988. height: math.unit(3200, "meters")
  17989. },
  17990. {
  17991. name: "The mega floof",
  17992. height: math.unit(36000, "meters")
  17993. },
  17994. {
  17995. name: "Giga-fur-Wicker",
  17996. height: math.unit(4800000, "meters")
  17997. },
  17998. {
  17999. name: "Licky world",
  18000. height: math.unit(20000000, "meters")
  18001. },
  18002. {
  18003. name: "Floofy cyan sun",
  18004. height: math.unit(1500000000, "meters")
  18005. },
  18006. {
  18007. name: "Milky Wicker",
  18008. height: math.unit(1000000000000000000000, "meters")
  18009. },
  18010. {
  18011. name: "The observing Wicker",
  18012. height: math.unit(999999999999999999999999999, "meters")
  18013. },
  18014. ]
  18015. ))
  18016. characterMakers.push(() => makeCharacter(
  18017. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18018. {
  18019. front: {
  18020. height: math.unit(5 + 9 / 12, "feet"),
  18021. weight: math.unit(150, "lb"),
  18022. name: "Front",
  18023. image: {
  18024. source: "./media/characters/arokha-sieyes/front.svg",
  18025. extra: 1425 / 1284,
  18026. bottom: 0.05
  18027. }
  18028. },
  18029. },
  18030. [
  18031. {
  18032. name: "Normal",
  18033. height: math.unit(5 + 9 / 12, "feet")
  18034. },
  18035. {
  18036. name: "Macro",
  18037. height: math.unit(30, "meters"),
  18038. default: true
  18039. },
  18040. ]
  18041. ))
  18042. characterMakers.push(() => makeCharacter(
  18043. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18044. {
  18045. front: {
  18046. height: math.unit(6, "feet"),
  18047. weight: math.unit(180, "lb"),
  18048. name: "Front",
  18049. image: {
  18050. source: "./media/characters/arokh-sieyes/front.svg",
  18051. extra: 1830 / 1769,
  18052. bottom: 0.01
  18053. }
  18054. },
  18055. },
  18056. [
  18057. {
  18058. name: "Normal",
  18059. height: math.unit(6, "feet")
  18060. },
  18061. {
  18062. name: "Macro",
  18063. height: math.unit(30, "meters"),
  18064. default: true
  18065. },
  18066. ]
  18067. ))
  18068. characterMakers.push(() => makeCharacter(
  18069. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18070. {
  18071. side: {
  18072. height: math.unit(13 + 1 / 12, "feet"),
  18073. weight: math.unit(8.5, "tonnes"),
  18074. name: "Side",
  18075. image: {
  18076. source: "./media/characters/goldeneye/side.svg",
  18077. extra: 1182 / 778,
  18078. bottom: 0.067
  18079. }
  18080. },
  18081. paw: {
  18082. height: math.unit(3.4, "feet"),
  18083. name: "Paw",
  18084. image: {
  18085. source: "./media/characters/goldeneye/paw.svg"
  18086. }
  18087. },
  18088. },
  18089. [
  18090. {
  18091. name: "Normal",
  18092. height: math.unit(13 + 1 / 12, "feet"),
  18093. default: true
  18094. },
  18095. ]
  18096. ))
  18097. characterMakers.push(() => makeCharacter(
  18098. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18099. {
  18100. front: {
  18101. height: math.unit(6 + 1 / 12, "feet"),
  18102. weight: math.unit(210, "lb"),
  18103. name: "Front",
  18104. image: {
  18105. source: "./media/characters/leonardo-lycheborne/front.svg",
  18106. extra: 390 / 365,
  18107. bottom: 0.032
  18108. }
  18109. },
  18110. side: {
  18111. height: math.unit(6 + 1 / 12, "feet"),
  18112. weight: math.unit(210, "lb"),
  18113. name: "Side",
  18114. image: {
  18115. source: "./media/characters/leonardo-lycheborne/side.svg",
  18116. extra: 390 / 365,
  18117. bottom: 0.005
  18118. }
  18119. },
  18120. back: {
  18121. height: math.unit(6 + 1 / 12, "feet"),
  18122. weight: math.unit(210, "lb"),
  18123. name: "Back",
  18124. image: {
  18125. source: "./media/characters/leonardo-lycheborne/back.svg",
  18126. extra: 392 / 366,
  18127. bottom: 0.01
  18128. }
  18129. },
  18130. hand: {
  18131. height: math.unit(1.08, "feet"),
  18132. name: "Hand",
  18133. image: {
  18134. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18135. }
  18136. },
  18137. foot: {
  18138. height: math.unit(1.32, "feet"),
  18139. name: "Foot",
  18140. image: {
  18141. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18142. }
  18143. },
  18144. were: {
  18145. height: math.unit(20, "feet"),
  18146. weight: math.unit(7800, "lb"),
  18147. name: "Were",
  18148. image: {
  18149. source: "./media/characters/leonardo-lycheborne/were.svg",
  18150. extra: 308 / 294,
  18151. bottom: 0.048
  18152. }
  18153. },
  18154. feral: {
  18155. height: math.unit(7.5, "feet"),
  18156. weight: math.unit(600, "lb"),
  18157. name: "Feral",
  18158. image: {
  18159. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18160. extra: 210 / 186,
  18161. bottom: 0.108
  18162. }
  18163. },
  18164. taur: {
  18165. height: math.unit(11, "feet"),
  18166. weight: math.unit(3300, "lb"),
  18167. name: "Taur",
  18168. image: {
  18169. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18170. extra: 320 / 303,
  18171. bottom: 0.025
  18172. }
  18173. },
  18174. barghest: {
  18175. height: math.unit(11, "feet"),
  18176. weight: math.unit(1300, "lb"),
  18177. name: "Barghest",
  18178. image: {
  18179. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18180. extra: 323 / 302,
  18181. bottom: 0.027
  18182. }
  18183. },
  18184. dick: {
  18185. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18186. name: "Dick",
  18187. image: {
  18188. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18189. }
  18190. },
  18191. dickWere: {
  18192. height: math.unit((20) / 3.8, "feet"),
  18193. name: "Dick (Were)",
  18194. image: {
  18195. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18196. }
  18197. },
  18198. },
  18199. [
  18200. {
  18201. name: "Normal",
  18202. height: math.unit(6 + 1 / 12, "feet"),
  18203. default: true
  18204. },
  18205. ]
  18206. ))
  18207. characterMakers.push(() => makeCharacter(
  18208. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18209. {
  18210. front: {
  18211. height: math.unit(10, "feet"),
  18212. weight: math.unit(350, "lb"),
  18213. name: "Front",
  18214. image: {
  18215. source: "./media/characters/jet/front.svg",
  18216. extra: 2050 / 1980,
  18217. bottom: 0.013
  18218. }
  18219. },
  18220. back: {
  18221. height: math.unit(10, "feet"),
  18222. weight: math.unit(350, "lb"),
  18223. name: "Back",
  18224. image: {
  18225. source: "./media/characters/jet/back.svg",
  18226. extra: 2050 / 1980,
  18227. bottom: 0.013
  18228. }
  18229. },
  18230. },
  18231. [
  18232. {
  18233. name: "Micro",
  18234. height: math.unit(6, "inches")
  18235. },
  18236. {
  18237. name: "Normal",
  18238. height: math.unit(10, "feet"),
  18239. default: true
  18240. },
  18241. {
  18242. name: "Macro",
  18243. height: math.unit(100, "feet")
  18244. },
  18245. ]
  18246. ))
  18247. characterMakers.push(() => makeCharacter(
  18248. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18249. {
  18250. front: {
  18251. height: math.unit(15, "feet"),
  18252. weight: math.unit(2800, "lb"),
  18253. name: "Front",
  18254. image: {
  18255. source: "./media/characters/tanarath/front.svg",
  18256. extra: 2392 / 2220,
  18257. bottom: 0.03
  18258. }
  18259. },
  18260. back: {
  18261. height: math.unit(15, "feet"),
  18262. weight: math.unit(2800, "lb"),
  18263. name: "Back",
  18264. image: {
  18265. source: "./media/characters/tanarath/back.svg",
  18266. extra: 2392 / 2220,
  18267. bottom: 0.03
  18268. }
  18269. },
  18270. },
  18271. [
  18272. {
  18273. name: "Normal",
  18274. height: math.unit(15, "feet"),
  18275. default: true
  18276. },
  18277. ]
  18278. ))
  18279. characterMakers.push(() => makeCharacter(
  18280. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18281. {
  18282. front: {
  18283. height: math.unit(7 + 1 / 12, "feet"),
  18284. weight: math.unit(175, "lb"),
  18285. name: "Front",
  18286. image: {
  18287. source: "./media/characters/patty-cattybatty/front.svg",
  18288. extra: 908 / 874,
  18289. bottom: 0.025
  18290. }
  18291. },
  18292. },
  18293. [
  18294. {
  18295. name: "Micro",
  18296. height: math.unit(1, "inch")
  18297. },
  18298. {
  18299. name: "Normal",
  18300. height: math.unit(7 + 1 / 12, "feet")
  18301. },
  18302. {
  18303. name: "Mini Macro",
  18304. height: math.unit(155, "feet")
  18305. },
  18306. {
  18307. name: "Macro",
  18308. height: math.unit(1077, "feet")
  18309. },
  18310. {
  18311. name: "Mega Macro",
  18312. height: math.unit(47650, "feet"),
  18313. default: true
  18314. },
  18315. {
  18316. name: "Giga Macro",
  18317. height: math.unit(440, "miles")
  18318. },
  18319. {
  18320. name: "Tera Macro",
  18321. height: math.unit(8700, "miles")
  18322. },
  18323. {
  18324. name: "Planetary Macro",
  18325. height: math.unit(32700, "miles")
  18326. },
  18327. {
  18328. name: "Solar Macro",
  18329. height: math.unit(550000, "miles")
  18330. },
  18331. {
  18332. name: "Celestial Macro",
  18333. height: math.unit(2.5, "AU")
  18334. },
  18335. ]
  18336. ))
  18337. characterMakers.push(() => makeCharacter(
  18338. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18339. {
  18340. front: {
  18341. height: math.unit(4 + 5 / 12, "feet"),
  18342. weight: math.unit(90, "lb"),
  18343. name: "Front",
  18344. image: {
  18345. source: "./media/characters/cappu/front.svg",
  18346. extra: 1247 / 1152,
  18347. bottom: 0.012
  18348. }
  18349. },
  18350. },
  18351. [
  18352. {
  18353. name: "Normal",
  18354. height: math.unit(4 + 5 / 12, "feet"),
  18355. default: true
  18356. },
  18357. ]
  18358. ))
  18359. characterMakers.push(() => makeCharacter(
  18360. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18361. {
  18362. frontDressed: {
  18363. height: math.unit(70, "cm"),
  18364. weight: math.unit(6, "kg"),
  18365. name: "Front (Dressed)",
  18366. image: {
  18367. source: "./media/characters/sebi/front-dressed.svg",
  18368. extra: 713.5 / 686.5,
  18369. bottom: 0.003
  18370. }
  18371. },
  18372. front: {
  18373. height: math.unit(70, "cm"),
  18374. weight: math.unit(5, "kg"),
  18375. name: "Front",
  18376. image: {
  18377. source: "./media/characters/sebi/front.svg",
  18378. extra: 713.5 / 686.5,
  18379. bottom: 0.003
  18380. }
  18381. }
  18382. },
  18383. [
  18384. {
  18385. name: "Normal",
  18386. height: math.unit(70, "cm"),
  18387. default: true
  18388. },
  18389. {
  18390. name: "Macro",
  18391. height: math.unit(8, "meters")
  18392. },
  18393. ]
  18394. ))
  18395. characterMakers.push(() => makeCharacter(
  18396. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18397. {
  18398. front: {
  18399. height: math.unit(6, "feet"),
  18400. weight: math.unit(150, "lb"),
  18401. name: "Front",
  18402. image: {
  18403. source: "./media/characters/typhek/front.svg",
  18404. extra: 1948 / 1929,
  18405. bottom: 0.025
  18406. }
  18407. },
  18408. side: {
  18409. height: math.unit(6, "feet"),
  18410. weight: math.unit(150, "lb"),
  18411. name: "Side",
  18412. image: {
  18413. source: "./media/characters/typhek/side.svg",
  18414. extra: 2034 / 2010,
  18415. bottom: 0.003
  18416. }
  18417. },
  18418. back: {
  18419. height: math.unit(6, "feet"),
  18420. weight: math.unit(150, "lb"),
  18421. name: "Back",
  18422. image: {
  18423. source: "./media/characters/typhek/back.svg",
  18424. extra: 2005 / 1978,
  18425. bottom: 0.004
  18426. }
  18427. },
  18428. palm: {
  18429. height: math.unit(1.2, "feet"),
  18430. name: "Palm",
  18431. image: {
  18432. source: "./media/characters/typhek/palm.svg"
  18433. }
  18434. },
  18435. fist: {
  18436. height: math.unit(1.1, "feet"),
  18437. name: "Fist",
  18438. image: {
  18439. source: "./media/characters/typhek/fist.svg"
  18440. }
  18441. },
  18442. foot: {
  18443. height: math.unit(1.57, "feet"),
  18444. name: "Foot",
  18445. image: {
  18446. source: "./media/characters/typhek/foot.svg"
  18447. }
  18448. },
  18449. sole: {
  18450. height: math.unit(2.05, "feet"),
  18451. name: "Sole",
  18452. image: {
  18453. source: "./media/characters/typhek/sole.svg"
  18454. }
  18455. },
  18456. },
  18457. [
  18458. {
  18459. name: "Macro",
  18460. height: math.unit(40, "stories"),
  18461. default: true
  18462. },
  18463. {
  18464. name: "Megamacro",
  18465. height: math.unit(1, "mile")
  18466. },
  18467. {
  18468. name: "Gigamacro",
  18469. height: math.unit(4000, "solarradii")
  18470. },
  18471. {
  18472. name: "Universal",
  18473. height: math.unit(1.1, "universes")
  18474. }
  18475. ]
  18476. ))
  18477. characterMakers.push(() => makeCharacter(
  18478. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18479. {
  18480. side: {
  18481. height: math.unit(5 + 7 / 12, "feet"),
  18482. weight: math.unit(150, "lb"),
  18483. name: "Side",
  18484. image: {
  18485. source: "./media/characters/kassy/side.svg",
  18486. extra: 1280 / 1225,
  18487. bottom: 0.002
  18488. }
  18489. },
  18490. front: {
  18491. height: math.unit(5 + 7 / 12, "feet"),
  18492. weight: math.unit(150, "lb"),
  18493. name: "Front",
  18494. image: {
  18495. source: "./media/characters/kassy/front.svg",
  18496. extra: 1280 / 1225,
  18497. bottom: 0.025
  18498. }
  18499. },
  18500. back: {
  18501. height: math.unit(5 + 7 / 12, "feet"),
  18502. weight: math.unit(150, "lb"),
  18503. name: "Back",
  18504. image: {
  18505. source: "./media/characters/kassy/back.svg",
  18506. extra: 1280 / 1225,
  18507. bottom: 0.002
  18508. }
  18509. },
  18510. foot: {
  18511. height: math.unit(1.266, "feet"),
  18512. name: "Foot",
  18513. image: {
  18514. source: "./media/characters/kassy/foot.svg"
  18515. }
  18516. },
  18517. },
  18518. [
  18519. {
  18520. name: "Normal",
  18521. height: math.unit(5 + 7 / 12, "feet")
  18522. },
  18523. {
  18524. name: "Macro",
  18525. height: math.unit(137, "feet"),
  18526. default: true
  18527. },
  18528. {
  18529. name: "Megamacro",
  18530. height: math.unit(1, "mile")
  18531. },
  18532. ]
  18533. ))
  18534. characterMakers.push(() => makeCharacter(
  18535. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18536. {
  18537. front: {
  18538. height: math.unit(6 + 1 / 12, "feet"),
  18539. weight: math.unit(200, "lb"),
  18540. name: "Front",
  18541. image: {
  18542. source: "./media/characters/neil/front.svg",
  18543. extra: 1326 / 1250,
  18544. bottom: 0.023
  18545. }
  18546. },
  18547. },
  18548. [
  18549. {
  18550. name: "Normal",
  18551. height: math.unit(6 + 1 / 12, "feet"),
  18552. default: true
  18553. },
  18554. {
  18555. name: "Macro",
  18556. height: math.unit(200, "feet")
  18557. },
  18558. ]
  18559. ))
  18560. characterMakers.push(() => makeCharacter(
  18561. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18562. {
  18563. front: {
  18564. height: math.unit(5 + 9 / 12, "feet"),
  18565. weight: math.unit(190, "lb"),
  18566. name: "Front",
  18567. image: {
  18568. source: "./media/characters/atticus/front.svg",
  18569. extra: 2934 / 2785,
  18570. bottom: 0.025
  18571. }
  18572. },
  18573. },
  18574. [
  18575. {
  18576. name: "Normal",
  18577. height: math.unit(5 + 9 / 12, "feet"),
  18578. default: true
  18579. },
  18580. {
  18581. name: "Macro",
  18582. height: math.unit(180, "feet")
  18583. },
  18584. ]
  18585. ))
  18586. characterMakers.push(() => makeCharacter(
  18587. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18588. {
  18589. side: {
  18590. height: math.unit(9, "feet"),
  18591. weight: math.unit(650, "lb"),
  18592. name: "Side",
  18593. image: {
  18594. source: "./media/characters/milo/side.svg",
  18595. extra: 2644 / 2310,
  18596. bottom: 0.032
  18597. }
  18598. },
  18599. },
  18600. [
  18601. {
  18602. name: "Normal",
  18603. height: math.unit(9, "feet"),
  18604. default: true
  18605. },
  18606. {
  18607. name: "Macro",
  18608. height: math.unit(300, "feet")
  18609. },
  18610. ]
  18611. ))
  18612. characterMakers.push(() => makeCharacter(
  18613. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18614. {
  18615. side: {
  18616. height: math.unit(8, "meters"),
  18617. weight: math.unit(90000, "kg"),
  18618. name: "Side",
  18619. image: {
  18620. source: "./media/characters/ijzer/side.svg",
  18621. extra: 2756 / 1600,
  18622. bottom: 0.01
  18623. }
  18624. },
  18625. },
  18626. [
  18627. {
  18628. name: "Small",
  18629. height: math.unit(3, "meters")
  18630. },
  18631. {
  18632. name: "Normal",
  18633. height: math.unit(8, "meters"),
  18634. default: true
  18635. },
  18636. {
  18637. name: "Normal+",
  18638. height: math.unit(10, "meters")
  18639. },
  18640. {
  18641. name: "Bigger",
  18642. height: math.unit(24, "meters")
  18643. },
  18644. {
  18645. name: "Huge",
  18646. height: math.unit(80, "meters")
  18647. },
  18648. ]
  18649. ))
  18650. characterMakers.push(() => makeCharacter(
  18651. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18652. {
  18653. front: {
  18654. height: math.unit(6 + 2 / 12, "feet"),
  18655. weight: math.unit(153, "lb"),
  18656. name: "Front",
  18657. image: {
  18658. source: "./media/characters/luca-cervicum/front.svg",
  18659. extra: 370 / 327,
  18660. bottom: 0.015
  18661. }
  18662. },
  18663. back: {
  18664. height: math.unit(6 + 2 / 12, "feet"),
  18665. weight: math.unit(153, "lb"),
  18666. name: "Back",
  18667. image: {
  18668. source: "./media/characters/luca-cervicum/back.svg",
  18669. extra: 367 / 333,
  18670. bottom: 0.005
  18671. }
  18672. },
  18673. frontGear: {
  18674. height: math.unit(6 + 2 / 12, "feet"),
  18675. weight: math.unit(173, "lb"),
  18676. name: "Front (Gear)",
  18677. image: {
  18678. source: "./media/characters/luca-cervicum/front-gear.svg",
  18679. extra: 377 / 333,
  18680. bottom: 0.006
  18681. }
  18682. },
  18683. },
  18684. [
  18685. {
  18686. name: "Normal",
  18687. height: math.unit(6 + 2 / 12, "feet"),
  18688. default: true
  18689. },
  18690. ]
  18691. ))
  18692. characterMakers.push(() => makeCharacter(
  18693. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18694. {
  18695. front: {
  18696. height: math.unit(6 + 1 / 12, "feet"),
  18697. weight: math.unit(304, "lb"),
  18698. name: "Front",
  18699. image: {
  18700. source: "./media/characters/oliver/front.svg",
  18701. extra: 157 / 143,
  18702. bottom: 0.08
  18703. }
  18704. },
  18705. },
  18706. [
  18707. {
  18708. name: "Normal",
  18709. height: math.unit(6 + 1 / 12, "feet"),
  18710. default: true
  18711. },
  18712. ]
  18713. ))
  18714. characterMakers.push(() => makeCharacter(
  18715. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18716. {
  18717. front: {
  18718. height: math.unit(5 + 7 / 12, "feet"),
  18719. weight: math.unit(140, "lb"),
  18720. name: "Front",
  18721. image: {
  18722. source: "./media/characters/shane/front.svg",
  18723. extra: 304 / 289,
  18724. bottom: 0.005
  18725. }
  18726. },
  18727. },
  18728. [
  18729. {
  18730. name: "Normal",
  18731. height: math.unit(5 + 7 / 12, "feet"),
  18732. default: true
  18733. },
  18734. ]
  18735. ))
  18736. characterMakers.push(() => makeCharacter(
  18737. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18738. {
  18739. front: {
  18740. height: math.unit(5 + 9 / 12, "feet"),
  18741. weight: math.unit(178, "lb"),
  18742. name: "Front",
  18743. image: {
  18744. source: "./media/characters/shin/front.svg",
  18745. extra: 159 / 151,
  18746. bottom: 0.015
  18747. }
  18748. },
  18749. },
  18750. [
  18751. {
  18752. name: "Normal",
  18753. height: math.unit(5 + 9 / 12, "feet"),
  18754. default: true
  18755. },
  18756. ]
  18757. ))
  18758. characterMakers.push(() => makeCharacter(
  18759. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18760. {
  18761. front: {
  18762. height: math.unit(5 + 10 / 12, "feet"),
  18763. weight: math.unit(168, "lb"),
  18764. name: "Front",
  18765. image: {
  18766. source: "./media/characters/xerxes/front.svg",
  18767. extra: 282 / 260,
  18768. bottom: 0.045
  18769. }
  18770. },
  18771. },
  18772. [
  18773. {
  18774. name: "Normal",
  18775. height: math.unit(5 + 10 / 12, "feet"),
  18776. default: true
  18777. },
  18778. ]
  18779. ))
  18780. characterMakers.push(() => makeCharacter(
  18781. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18782. {
  18783. front: {
  18784. height: math.unit(6 + 7 / 12, "feet"),
  18785. weight: math.unit(208, "lb"),
  18786. name: "Front",
  18787. image: {
  18788. source: "./media/characters/chaska/front.svg",
  18789. extra: 332 / 319,
  18790. bottom: 0.015
  18791. }
  18792. },
  18793. },
  18794. [
  18795. {
  18796. name: "Normal",
  18797. height: math.unit(6 + 7 / 12, "feet"),
  18798. default: true
  18799. },
  18800. ]
  18801. ))
  18802. characterMakers.push(() => makeCharacter(
  18803. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18804. {
  18805. front: {
  18806. height: math.unit(5 + 8 / 12, "feet"),
  18807. weight: math.unit(208, "lb"),
  18808. name: "Front",
  18809. image: {
  18810. source: "./media/characters/enuk/front.svg",
  18811. extra: 437 / 406,
  18812. bottom: 0.02
  18813. }
  18814. },
  18815. },
  18816. [
  18817. {
  18818. name: "Normal",
  18819. height: math.unit(5 + 8 / 12, "feet"),
  18820. default: true
  18821. },
  18822. ]
  18823. ))
  18824. characterMakers.push(() => makeCharacter(
  18825. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18826. {
  18827. front: {
  18828. height: math.unit(5 + 10 / 12, "feet"),
  18829. weight: math.unit(252, "lb"),
  18830. name: "Front",
  18831. image: {
  18832. source: "./media/characters/bruun/front.svg",
  18833. extra: 197 / 187,
  18834. bottom: 0.012
  18835. }
  18836. },
  18837. },
  18838. [
  18839. {
  18840. name: "Normal",
  18841. height: math.unit(5 + 10 / 12, "feet"),
  18842. default: true
  18843. },
  18844. ]
  18845. ))
  18846. characterMakers.push(() => makeCharacter(
  18847. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18848. {
  18849. front: {
  18850. height: math.unit(6 + 10 / 12, "feet"),
  18851. weight: math.unit(255, "lb"),
  18852. name: "Front",
  18853. image: {
  18854. source: "./media/characters/alexeev/front.svg",
  18855. extra: 213 / 200,
  18856. bottom: 0.05
  18857. }
  18858. },
  18859. },
  18860. [
  18861. {
  18862. name: "Normal",
  18863. height: math.unit(6 + 10 / 12, "feet"),
  18864. default: true
  18865. },
  18866. ]
  18867. ))
  18868. characterMakers.push(() => makeCharacter(
  18869. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  18870. {
  18871. front: {
  18872. height: math.unit(2 + 8 / 12, "feet"),
  18873. weight: math.unit(22, "lb"),
  18874. name: "Front",
  18875. image: {
  18876. source: "./media/characters/evelyn/front.svg",
  18877. extra: 208 / 180
  18878. }
  18879. },
  18880. },
  18881. [
  18882. {
  18883. name: "Normal",
  18884. height: math.unit(2 + 8 / 12, "feet"),
  18885. default: true
  18886. },
  18887. ]
  18888. ))
  18889. characterMakers.push(() => makeCharacter(
  18890. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  18891. {
  18892. front: {
  18893. height: math.unit(5 + 9 / 12, "feet"),
  18894. weight: math.unit(139, "lb"),
  18895. name: "Front",
  18896. image: {
  18897. source: "./media/characters/inca/front.svg",
  18898. extra: 294 / 291,
  18899. bottom: 0.03
  18900. }
  18901. },
  18902. },
  18903. [
  18904. {
  18905. name: "Normal",
  18906. height: math.unit(5 + 9 / 12, "feet"),
  18907. default: true
  18908. },
  18909. ]
  18910. ))
  18911. characterMakers.push(() => makeCharacter(
  18912. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  18913. {
  18914. front: {
  18915. height: math.unit(5 + 1 / 12, "feet"),
  18916. weight: math.unit(84, "lb"),
  18917. name: "Front",
  18918. image: {
  18919. source: "./media/characters/magdalene/front.svg",
  18920. extra: 293 / 273
  18921. }
  18922. },
  18923. },
  18924. [
  18925. {
  18926. name: "Normal",
  18927. height: math.unit(5 + 1 / 12, "feet"),
  18928. default: true
  18929. },
  18930. ]
  18931. ))
  18932. characterMakers.push(() => makeCharacter(
  18933. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  18934. {
  18935. front: {
  18936. height: math.unit(6 + 3 / 12, "feet"),
  18937. weight: math.unit(185, "lb"),
  18938. name: "Front",
  18939. image: {
  18940. source: "./media/characters/mera/front.svg",
  18941. extra: 291 / 277,
  18942. bottom: 0.03
  18943. }
  18944. },
  18945. },
  18946. [
  18947. {
  18948. name: "Normal",
  18949. height: math.unit(6 + 3 / 12, "feet"),
  18950. default: true
  18951. },
  18952. ]
  18953. ))
  18954. characterMakers.push(() => makeCharacter(
  18955. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  18956. {
  18957. front: {
  18958. height: math.unit(6 + 7 / 12, "feet"),
  18959. weight: math.unit(160, "lb"),
  18960. name: "Front",
  18961. image: {
  18962. source: "./media/characters/ceres/front.svg",
  18963. extra: 1023 / 950,
  18964. bottom: 0.027
  18965. }
  18966. },
  18967. back: {
  18968. height: math.unit(6 + 7 / 12, "feet"),
  18969. weight: math.unit(160, "lb"),
  18970. name: "Back",
  18971. image: {
  18972. source: "./media/characters/ceres/back.svg",
  18973. extra: 1023 / 950
  18974. }
  18975. },
  18976. },
  18977. [
  18978. {
  18979. name: "Normal",
  18980. height: math.unit(6 + 7 / 12, "feet"),
  18981. default: true
  18982. },
  18983. ]
  18984. ))
  18985. characterMakers.push(() => makeCharacter(
  18986. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  18987. {
  18988. front: {
  18989. height: math.unit(5 + 10 / 12, "feet"),
  18990. weight: math.unit(150, "lb"),
  18991. name: "Front",
  18992. image: {
  18993. source: "./media/characters/kris/front.svg",
  18994. extra: 885 / 803,
  18995. bottom: 0.03
  18996. }
  18997. },
  18998. },
  18999. [
  19000. {
  19001. name: "Normal",
  19002. height: math.unit(5 + 10 / 12, "feet"),
  19003. default: true
  19004. },
  19005. ]
  19006. ))
  19007. characterMakers.push(() => makeCharacter(
  19008. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19009. {
  19010. front: {
  19011. height: math.unit(7, "feet"),
  19012. weight: math.unit(120, "kg"),
  19013. name: "Front",
  19014. image: {
  19015. source: "./media/characters/taluthus/front.svg",
  19016. extra: 903 / 833,
  19017. bottom: 0.015
  19018. }
  19019. },
  19020. },
  19021. [
  19022. {
  19023. name: "Normal",
  19024. height: math.unit(7, "feet"),
  19025. default: true
  19026. },
  19027. {
  19028. name: "Macro",
  19029. height: math.unit(300, "feet")
  19030. },
  19031. ]
  19032. ))
  19033. characterMakers.push(() => makeCharacter(
  19034. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19035. {
  19036. front: {
  19037. height: math.unit(5 + 9 / 12, "feet"),
  19038. weight: math.unit(145, "lb"),
  19039. name: "Front",
  19040. image: {
  19041. source: "./media/characters/dawn/front.svg",
  19042. extra: 2094 / 2016,
  19043. bottom: 0.025
  19044. }
  19045. },
  19046. back: {
  19047. height: math.unit(5 + 9 / 12, "feet"),
  19048. weight: math.unit(160, "lb"),
  19049. name: "Back",
  19050. image: {
  19051. source: "./media/characters/dawn/back.svg",
  19052. extra: 2112 / 2080,
  19053. bottom: 0.005
  19054. }
  19055. },
  19056. },
  19057. [
  19058. {
  19059. name: "Normal",
  19060. height: math.unit(6 + 7 / 12, "feet"),
  19061. default: true
  19062. },
  19063. ]
  19064. ))
  19065. characterMakers.push(() => makeCharacter(
  19066. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19067. {
  19068. anthro: {
  19069. height: math.unit(8 + 3 / 12, "feet"),
  19070. weight: math.unit(450, "lb"),
  19071. name: "Anthro",
  19072. image: {
  19073. source: "./media/characters/arador/anthro.svg",
  19074. extra: 1835 / 1718,
  19075. bottom: 0.025
  19076. }
  19077. },
  19078. feral: {
  19079. height: math.unit(4, "feet"),
  19080. weight: math.unit(200, "lb"),
  19081. name: "Feral",
  19082. image: {
  19083. source: "./media/characters/arador/feral.svg",
  19084. extra: 1683 / 1514,
  19085. bottom: 0.07
  19086. }
  19087. },
  19088. },
  19089. [
  19090. {
  19091. name: "Normal",
  19092. height: math.unit(8 + 3 / 12, "feet")
  19093. },
  19094. {
  19095. name: "Macro",
  19096. height: math.unit(82.5, "feet"),
  19097. default: true
  19098. },
  19099. ]
  19100. ))
  19101. characterMakers.push(() => makeCharacter(
  19102. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19103. {
  19104. front: {
  19105. height: math.unit(5 + 10 / 12, "feet"),
  19106. weight: math.unit(125, "lb"),
  19107. name: "Front",
  19108. image: {
  19109. source: "./media/characters/dharsi/front.svg",
  19110. extra: 716 / 630,
  19111. bottom: 0.035
  19112. }
  19113. },
  19114. },
  19115. [
  19116. {
  19117. name: "Nano",
  19118. height: math.unit(100, "nm")
  19119. },
  19120. {
  19121. name: "Micro",
  19122. height: math.unit(2, "inches")
  19123. },
  19124. {
  19125. name: "Normal",
  19126. height: math.unit(5 + 10 / 12, "feet"),
  19127. default: true
  19128. },
  19129. {
  19130. name: "Macro",
  19131. height: math.unit(1000, "feet")
  19132. },
  19133. {
  19134. name: "Megamacro",
  19135. height: math.unit(10, "miles")
  19136. },
  19137. {
  19138. name: "Gigamacro",
  19139. height: math.unit(3000, "miles")
  19140. },
  19141. {
  19142. name: "Teramacro",
  19143. height: math.unit(500000, "miles")
  19144. },
  19145. {
  19146. name: "Teramacro+",
  19147. height: math.unit(30, "galaxies")
  19148. },
  19149. ]
  19150. ))
  19151. characterMakers.push(() => makeCharacter(
  19152. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19153. {
  19154. front: {
  19155. height: math.unit(6, "feet"),
  19156. weight: math.unit(150, "lb"),
  19157. name: "Front",
  19158. image: {
  19159. source: "./media/characters/deathy/front.svg",
  19160. extra: 1552 / 1463,
  19161. bottom: 0.025
  19162. }
  19163. },
  19164. side: {
  19165. height: math.unit(6, "feet"),
  19166. weight: math.unit(150, "lb"),
  19167. name: "Side",
  19168. image: {
  19169. source: "./media/characters/deathy/side.svg",
  19170. extra: 1604 / 1455,
  19171. bottom: 0.025
  19172. }
  19173. },
  19174. back: {
  19175. height: math.unit(6, "feet"),
  19176. weight: math.unit(150, "lb"),
  19177. name: "Back",
  19178. image: {
  19179. source: "./media/characters/deathy/back.svg",
  19180. extra: 1580 / 1463,
  19181. bottom: 0.005
  19182. }
  19183. },
  19184. },
  19185. [
  19186. {
  19187. name: "Micro",
  19188. height: math.unit(5, "millimeters")
  19189. },
  19190. {
  19191. name: "Normal",
  19192. height: math.unit(6 + 5 / 12, "feet"),
  19193. default: true
  19194. },
  19195. ]
  19196. ))
  19197. characterMakers.push(() => makeCharacter(
  19198. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19199. {
  19200. front: {
  19201. height: math.unit(16, "feet"),
  19202. weight: math.unit(4000, "lb"),
  19203. name: "Front",
  19204. image: {
  19205. source: "./media/characters/juniper/front.svg",
  19206. bottom: 0.04
  19207. }
  19208. },
  19209. },
  19210. [
  19211. {
  19212. name: "Normal",
  19213. height: math.unit(16, "feet"),
  19214. default: true
  19215. },
  19216. ]
  19217. ))
  19218. characterMakers.push(() => makeCharacter(
  19219. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19220. {
  19221. front: {
  19222. height: math.unit(6, "feet"),
  19223. weight: math.unit(150, "lb"),
  19224. name: "Front",
  19225. image: {
  19226. source: "./media/characters/hipster/front.svg",
  19227. extra: 1312 / 1209,
  19228. bottom: 0.025
  19229. }
  19230. },
  19231. back: {
  19232. height: math.unit(6, "feet"),
  19233. weight: math.unit(150, "lb"),
  19234. name: "Back",
  19235. image: {
  19236. source: "./media/characters/hipster/back.svg",
  19237. extra: 1281 / 1196,
  19238. bottom: 0.01
  19239. }
  19240. },
  19241. },
  19242. [
  19243. {
  19244. name: "Micro",
  19245. height: math.unit(1, "mm")
  19246. },
  19247. {
  19248. name: "Normal",
  19249. height: math.unit(4, "inches"),
  19250. default: true
  19251. },
  19252. {
  19253. name: "Macro",
  19254. height: math.unit(500, "feet")
  19255. },
  19256. {
  19257. name: "Megamacro",
  19258. height: math.unit(1000, "miles")
  19259. },
  19260. ]
  19261. ))
  19262. characterMakers.push(() => makeCharacter(
  19263. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19264. {
  19265. front: {
  19266. height: math.unit(6, "feet"),
  19267. weight: math.unit(150, "lb"),
  19268. name: "Front",
  19269. image: {
  19270. source: "./media/characters/tendirmuldr/front.svg",
  19271. extra: 1878 / 1772,
  19272. bottom: 0.015
  19273. }
  19274. },
  19275. },
  19276. [
  19277. {
  19278. name: "Megamacro",
  19279. height: math.unit(1500, "miles"),
  19280. default: true
  19281. },
  19282. ]
  19283. ))
  19284. characterMakers.push(() => makeCharacter(
  19285. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19286. {
  19287. front: {
  19288. height: math.unit(14, "feet"),
  19289. weight: math.unit(12000, "lb"),
  19290. name: "Front",
  19291. image: {
  19292. source: "./media/characters/mort/front.svg",
  19293. extra: 365 / 318,
  19294. bottom: 0.01
  19295. }
  19296. },
  19297. side: {
  19298. height: math.unit(14, "feet"),
  19299. weight: math.unit(12000, "lb"),
  19300. name: "Side",
  19301. image: {
  19302. source: "./media/characters/mort/side.svg",
  19303. extra: 365 / 318,
  19304. bottom: 0.052
  19305. },
  19306. default: true
  19307. },
  19308. back: {
  19309. height: math.unit(14, "feet"),
  19310. weight: math.unit(12000, "lb"),
  19311. name: "Back",
  19312. image: {
  19313. source: "./media/characters/mort/back.svg",
  19314. extra: 371 / 332,
  19315. bottom: 0.18
  19316. }
  19317. },
  19318. },
  19319. [
  19320. {
  19321. name: "Normal",
  19322. height: math.unit(14, "feet"),
  19323. default: true
  19324. },
  19325. ]
  19326. ))
  19327. characterMakers.push(() => makeCharacter(
  19328. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19329. {
  19330. front: {
  19331. height: math.unit(8, "feet"),
  19332. weight: math.unit(1, "ton"),
  19333. name: "Front",
  19334. image: {
  19335. source: "./media/characters/lycoa/front.svg",
  19336. extra: 1875 / 1789,
  19337. bottom: 0.022
  19338. }
  19339. },
  19340. back: {
  19341. height: math.unit(8, "feet"),
  19342. weight: math.unit(1, "ton"),
  19343. name: "Back",
  19344. image: {
  19345. source: "./media/characters/lycoa/back.svg",
  19346. extra: 1835 / 1781,
  19347. bottom: 0.03
  19348. }
  19349. },
  19350. head: {
  19351. height: math.unit(2.1, "feet"),
  19352. name: "Head",
  19353. image: {
  19354. source: "./media/characters/lycoa/head.svg"
  19355. }
  19356. },
  19357. tailmaw: {
  19358. height: math.unit(1.9, "feet"),
  19359. name: "Tailmaw",
  19360. image: {
  19361. source: "./media/characters/lycoa/tailmaw.svg"
  19362. }
  19363. },
  19364. tentacles: {
  19365. height: math.unit(2.1, "feet"),
  19366. name: "Tentacles",
  19367. image: {
  19368. source: "./media/characters/lycoa/tentacles.svg"
  19369. }
  19370. },
  19371. dick: {
  19372. height: math.unit(1.73, "feet"),
  19373. name: "Dick",
  19374. image: {
  19375. source: "./media/characters/lycoa/dick.svg"
  19376. }
  19377. },
  19378. },
  19379. [
  19380. {
  19381. name: "Normal",
  19382. height: math.unit(8, "feet"),
  19383. default: true
  19384. },
  19385. {
  19386. name: "Macro",
  19387. height: math.unit(30, "feet")
  19388. },
  19389. ]
  19390. ))
  19391. characterMakers.push(() => makeCharacter(
  19392. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19393. {
  19394. front: {
  19395. height: math.unit(4 + 2 / 12, "feet"),
  19396. weight: math.unit(70, "lb"),
  19397. name: "Front",
  19398. image: {
  19399. source: "./media/characters/naldara/front.svg",
  19400. extra: 841 / 720,
  19401. bottom: 0.04
  19402. }
  19403. },
  19404. naga: {
  19405. height: math.unit(23, "feet"),
  19406. weight: math.unit(15000, "kg"),
  19407. name: "Naga",
  19408. image: {
  19409. source: "./media/characters/naldara/naga.svg",
  19410. extra: 3290/2959,
  19411. bottom: 124/3432
  19412. }
  19413. },
  19414. },
  19415. [
  19416. {
  19417. name: "Normal",
  19418. height: math.unit(4 + 2 / 12, "feet"),
  19419. default: true
  19420. },
  19421. ]
  19422. ))
  19423. characterMakers.push(() => makeCharacter(
  19424. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19425. {
  19426. front: {
  19427. height: math.unit(13 + 7 / 12, "feet"),
  19428. weight: math.unit(1500, "lb"),
  19429. name: "Front",
  19430. image: {
  19431. source: "./media/characters/briar/front.svg",
  19432. extra: 626 / 596,
  19433. bottom: 0.08
  19434. }
  19435. },
  19436. },
  19437. [
  19438. {
  19439. name: "Normal",
  19440. height: math.unit(13 + 7 / 12, "feet"),
  19441. default: true
  19442. },
  19443. ]
  19444. ))
  19445. characterMakers.push(() => makeCharacter(
  19446. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19447. {
  19448. side: {
  19449. height: math.unit(10, "feet"),
  19450. weight: math.unit(500, "lb"),
  19451. name: "Side",
  19452. image: {
  19453. source: "./media/characters/vanguard/side.svg",
  19454. extra: 502 / 425,
  19455. bottom: 0.087
  19456. }
  19457. },
  19458. },
  19459. [
  19460. {
  19461. name: "Normal",
  19462. height: math.unit(10, "feet"),
  19463. default: true
  19464. },
  19465. ]
  19466. ))
  19467. characterMakers.push(() => makeCharacter(
  19468. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19469. {
  19470. front: {
  19471. height: math.unit(7.5, "feet"),
  19472. weight: math.unit(2, "lb"),
  19473. name: "Front",
  19474. image: {
  19475. source: "./media/characters/artemis/front.svg",
  19476. extra: 1192 / 1075,
  19477. bottom: 0.07
  19478. }
  19479. },
  19480. frontNsfw: {
  19481. height: math.unit(7.5, "feet"),
  19482. weight: math.unit(2, "lb"),
  19483. name: "Front (NSFW)",
  19484. image: {
  19485. source: "./media/characters/artemis/front-nsfw.svg",
  19486. extra: 1192 / 1075,
  19487. bottom: 0.07
  19488. }
  19489. },
  19490. frontNsfwer: {
  19491. height: math.unit(7.5, "feet"),
  19492. weight: math.unit(2, "lb"),
  19493. name: "Front (NSFW-er)",
  19494. image: {
  19495. source: "./media/characters/artemis/front-nsfwer.svg",
  19496. extra: 1192 / 1075,
  19497. bottom: 0.07
  19498. }
  19499. },
  19500. side: {
  19501. height: math.unit(7.5, "feet"),
  19502. weight: math.unit(2, "lb"),
  19503. name: "Side",
  19504. image: {
  19505. source: "./media/characters/artemis/side.svg",
  19506. extra: 1192 / 1075,
  19507. bottom: 0.07
  19508. }
  19509. },
  19510. sideNsfw: {
  19511. height: math.unit(7.5, "feet"),
  19512. weight: math.unit(2, "lb"),
  19513. name: "Side (NSFW)",
  19514. image: {
  19515. source: "./media/characters/artemis/side-nsfw.svg",
  19516. extra: 1192 / 1075,
  19517. bottom: 0.07
  19518. }
  19519. },
  19520. sideNsfwer: {
  19521. height: math.unit(7.5, "feet"),
  19522. weight: math.unit(2, "lb"),
  19523. name: "Side (NSFW-er)",
  19524. image: {
  19525. source: "./media/characters/artemis/side-nsfwer.svg",
  19526. extra: 1192 / 1075,
  19527. bottom: 0.07
  19528. }
  19529. },
  19530. maw: {
  19531. height: math.unit(1.1, "feet"),
  19532. name: "Maw",
  19533. image: {
  19534. source: "./media/characters/artemis/maw.svg"
  19535. }
  19536. },
  19537. stomach: {
  19538. height: math.unit(0.95, "feet"),
  19539. name: "Stomach",
  19540. image: {
  19541. source: "./media/characters/artemis/stomach.svg"
  19542. }
  19543. },
  19544. dickCanine: {
  19545. height: math.unit(1, "feet"),
  19546. name: "Dick (Canine)",
  19547. image: {
  19548. source: "./media/characters/artemis/dick-canine.svg"
  19549. }
  19550. },
  19551. dickEquine: {
  19552. height: math.unit(0.85, "feet"),
  19553. name: "Dick (Equine)",
  19554. image: {
  19555. source: "./media/characters/artemis/dick-equine.svg"
  19556. }
  19557. },
  19558. dickExotic: {
  19559. height: math.unit(0.85, "feet"),
  19560. name: "Dick (Exotic)",
  19561. image: {
  19562. source: "./media/characters/artemis/dick-exotic.svg"
  19563. }
  19564. },
  19565. },
  19566. [
  19567. {
  19568. name: "Normal",
  19569. height: math.unit(7.5, "feet"),
  19570. default: true
  19571. },
  19572. {
  19573. name: "Enlarged",
  19574. height: math.unit(12, "feet")
  19575. },
  19576. ]
  19577. ))
  19578. characterMakers.push(() => makeCharacter(
  19579. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19580. {
  19581. front: {
  19582. height: math.unit(5 + 3 / 12, "feet"),
  19583. weight: math.unit(160, "lb"),
  19584. name: "Front",
  19585. image: {
  19586. source: "./media/characters/kira/front.svg",
  19587. extra: 906 / 786,
  19588. bottom: 0.01
  19589. }
  19590. },
  19591. back: {
  19592. height: math.unit(5 + 3 / 12, "feet"),
  19593. weight: math.unit(160, "lb"),
  19594. name: "Back",
  19595. image: {
  19596. source: "./media/characters/kira/back.svg",
  19597. extra: 882 / 757,
  19598. bottom: 0.005
  19599. }
  19600. },
  19601. frontDressed: {
  19602. height: math.unit(5 + 3 / 12, "feet"),
  19603. weight: math.unit(160, "lb"),
  19604. name: "Front (Dressed)",
  19605. image: {
  19606. source: "./media/characters/kira/front-dressed.svg",
  19607. extra: 906 / 786,
  19608. bottom: 0.01
  19609. }
  19610. },
  19611. beans: {
  19612. height: math.unit(0.92, "feet"),
  19613. name: "Beans",
  19614. image: {
  19615. source: "./media/characters/kira/beans.svg"
  19616. }
  19617. },
  19618. },
  19619. [
  19620. {
  19621. name: "Normal",
  19622. height: math.unit(5 + 3 / 12, "feet"),
  19623. default: true
  19624. },
  19625. ]
  19626. ))
  19627. characterMakers.push(() => makeCharacter(
  19628. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19629. {
  19630. front: {
  19631. height: math.unit(5 + 4 / 12, "feet"),
  19632. weight: math.unit(145, "lb"),
  19633. name: "Front",
  19634. image: {
  19635. source: "./media/characters/scramble/front.svg",
  19636. extra: 763 / 727,
  19637. bottom: 0.05
  19638. }
  19639. },
  19640. back: {
  19641. height: math.unit(5 + 4 / 12, "feet"),
  19642. weight: math.unit(145, "lb"),
  19643. name: "Back",
  19644. image: {
  19645. source: "./media/characters/scramble/back.svg",
  19646. extra: 826 / 737,
  19647. bottom: 0.002
  19648. }
  19649. },
  19650. },
  19651. [
  19652. {
  19653. name: "Normal",
  19654. height: math.unit(5 + 4 / 12, "feet"),
  19655. default: true
  19656. },
  19657. ]
  19658. ))
  19659. characterMakers.push(() => makeCharacter(
  19660. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19661. {
  19662. side: {
  19663. height: math.unit(6 + 2 / 12, "feet"),
  19664. weight: math.unit(190, "lb"),
  19665. name: "Side",
  19666. image: {
  19667. source: "./media/characters/biscuit/side.svg",
  19668. extra: 858 / 791,
  19669. bottom: 0.044
  19670. }
  19671. },
  19672. },
  19673. [
  19674. {
  19675. name: "Normal",
  19676. height: math.unit(6 + 2 / 12, "feet"),
  19677. default: true
  19678. },
  19679. ]
  19680. ))
  19681. characterMakers.push(() => makeCharacter(
  19682. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19683. {
  19684. front: {
  19685. height: math.unit(5 + 2 / 12, "feet"),
  19686. weight: math.unit(120, "lb"),
  19687. name: "Front",
  19688. image: {
  19689. source: "./media/characters/poffin/front.svg",
  19690. extra: 786 / 680,
  19691. bottom: 0.005
  19692. }
  19693. },
  19694. },
  19695. [
  19696. {
  19697. name: "Normal",
  19698. height: math.unit(5 + 2 / 12, "feet"),
  19699. default: true
  19700. },
  19701. ]
  19702. ))
  19703. characterMakers.push(() => makeCharacter(
  19704. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19705. {
  19706. front: {
  19707. height: math.unit(6 + 3 / 12, "feet"),
  19708. weight: math.unit(519, "lb"),
  19709. name: "Front",
  19710. image: {
  19711. source: "./media/characters/dhari/front.svg",
  19712. extra: 1048 / 946,
  19713. bottom: 0.015
  19714. }
  19715. },
  19716. back: {
  19717. height: math.unit(6 + 3 / 12, "feet"),
  19718. weight: math.unit(519, "lb"),
  19719. name: "Back",
  19720. image: {
  19721. source: "./media/characters/dhari/back.svg",
  19722. extra: 1048 / 931,
  19723. bottom: 0.005
  19724. }
  19725. },
  19726. frontDressed: {
  19727. height: math.unit(6 + 3 / 12, "feet"),
  19728. weight: math.unit(519, "lb"),
  19729. name: "Front (Dressed)",
  19730. image: {
  19731. source: "./media/characters/dhari/front-dressed.svg",
  19732. extra: 1713 / 1546,
  19733. bottom: 0.02
  19734. }
  19735. },
  19736. backDressed: {
  19737. height: math.unit(6 + 3 / 12, "feet"),
  19738. weight: math.unit(519, "lb"),
  19739. name: "Back (Dressed)",
  19740. image: {
  19741. source: "./media/characters/dhari/back-dressed.svg",
  19742. extra: 1699 / 1537,
  19743. bottom: 0.01
  19744. }
  19745. },
  19746. maw: {
  19747. height: math.unit(0.95, "feet"),
  19748. name: "Maw",
  19749. image: {
  19750. source: "./media/characters/dhari/maw.svg"
  19751. }
  19752. },
  19753. wereFront: {
  19754. height: math.unit(12 + 8 / 12, "feet"),
  19755. weight: math.unit(4000, "lb"),
  19756. name: "Front (Were)",
  19757. image: {
  19758. source: "./media/characters/dhari/were-front.svg",
  19759. extra: 1065 / 969,
  19760. bottom: 0.015
  19761. }
  19762. },
  19763. wereBack: {
  19764. height: math.unit(12 + 8 / 12, "feet"),
  19765. weight: math.unit(4000, "lb"),
  19766. name: "Back (Were)",
  19767. image: {
  19768. source: "./media/characters/dhari/were-back.svg",
  19769. extra: 1065 / 969,
  19770. bottom: 0.012
  19771. }
  19772. },
  19773. wereMaw: {
  19774. height: math.unit(0.625, "meters"),
  19775. name: "Maw (Were)",
  19776. image: {
  19777. source: "./media/characters/dhari/were-maw.svg"
  19778. }
  19779. },
  19780. },
  19781. [
  19782. {
  19783. name: "Normal",
  19784. height: math.unit(6 + 3 / 12, "feet"),
  19785. default: true
  19786. },
  19787. ]
  19788. ))
  19789. characterMakers.push(() => makeCharacter(
  19790. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19791. {
  19792. anthro: {
  19793. height: math.unit(5 + 7 / 12, "feet"),
  19794. weight: math.unit(175, "lb"),
  19795. name: "Anthro",
  19796. image: {
  19797. source: "./media/characters/rena-dyne/anthro.svg",
  19798. extra: 1849 / 1785,
  19799. bottom: 0.005
  19800. }
  19801. },
  19802. taur: {
  19803. height: math.unit(15 + 6 / 12, "feet"),
  19804. weight: math.unit(8000, "lb"),
  19805. name: "Taur",
  19806. image: {
  19807. source: "./media/characters/rena-dyne/taur.svg",
  19808. extra: 2315 / 2234,
  19809. bottom: 0.033
  19810. }
  19811. },
  19812. },
  19813. [
  19814. {
  19815. name: "Normal",
  19816. height: math.unit(5 + 7 / 12, "feet"),
  19817. default: true
  19818. },
  19819. ]
  19820. ))
  19821. characterMakers.push(() => makeCharacter(
  19822. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19823. {
  19824. front: {
  19825. height: math.unit(8, "feet"),
  19826. weight: math.unit(600, "lb"),
  19827. name: "Front",
  19828. image: {
  19829. source: "./media/characters/weremeep/front.svg",
  19830. extra: 967 / 862,
  19831. bottom: 0.01
  19832. }
  19833. },
  19834. },
  19835. [
  19836. {
  19837. name: "Normal",
  19838. height: math.unit(8, "feet"),
  19839. default: true
  19840. },
  19841. {
  19842. name: "Lorg",
  19843. height: math.unit(12, "feet")
  19844. },
  19845. {
  19846. name: "Oh Lawd She Comin'",
  19847. height: math.unit(20, "feet")
  19848. },
  19849. ]
  19850. ))
  19851. characterMakers.push(() => makeCharacter(
  19852. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19853. {
  19854. front: {
  19855. height: math.unit(4, "feet"),
  19856. weight: math.unit(90, "lb"),
  19857. name: "Front",
  19858. image: {
  19859. source: "./media/characters/reza/front.svg",
  19860. extra: 1183 / 1111,
  19861. bottom: 0.017
  19862. }
  19863. },
  19864. back: {
  19865. height: math.unit(4, "feet"),
  19866. weight: math.unit(90, "lb"),
  19867. name: "Back",
  19868. image: {
  19869. source: "./media/characters/reza/back.svg",
  19870. extra: 1183 / 1111,
  19871. bottom: 0.01
  19872. }
  19873. },
  19874. drake: {
  19875. height: math.unit(30, "feet"),
  19876. weight: math.unit(246960, "lb"),
  19877. name: "Drake",
  19878. image: {
  19879. source: "./media/characters/reza/drake.svg",
  19880. extra: 2350 / 2024,
  19881. bottom: 60.7 / 2403
  19882. }
  19883. },
  19884. },
  19885. [
  19886. {
  19887. name: "Normal",
  19888. height: math.unit(4, "feet"),
  19889. default: true
  19890. },
  19891. ]
  19892. ))
  19893. characterMakers.push(() => makeCharacter(
  19894. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  19895. {
  19896. side: {
  19897. height: math.unit(15, "feet"),
  19898. weight: math.unit(14, "tons"),
  19899. name: "Side",
  19900. image: {
  19901. source: "./media/characters/athea/side.svg",
  19902. extra: 960 / 540,
  19903. bottom: 0.003
  19904. }
  19905. },
  19906. sitting: {
  19907. height: math.unit(6 * 2.85, "feet"),
  19908. weight: math.unit(14, "tons"),
  19909. name: "Sitting",
  19910. image: {
  19911. source: "./media/characters/athea/sitting.svg",
  19912. extra: 621 / 581,
  19913. bottom: 0.075
  19914. }
  19915. },
  19916. maw: {
  19917. height: math.unit(7.59498031496063, "feet"),
  19918. name: "Maw",
  19919. image: {
  19920. source: "./media/characters/athea/maw.svg"
  19921. }
  19922. },
  19923. },
  19924. [
  19925. {
  19926. name: "Lap Cat",
  19927. height: math.unit(2.5, "feet")
  19928. },
  19929. {
  19930. name: "Minimacro",
  19931. height: math.unit(15, "feet"),
  19932. default: true
  19933. },
  19934. {
  19935. name: "Macro",
  19936. height: math.unit(120, "feet")
  19937. },
  19938. {
  19939. name: "Macro+",
  19940. height: math.unit(640, "feet")
  19941. },
  19942. {
  19943. name: "Colossus",
  19944. height: math.unit(2.2, "miles")
  19945. },
  19946. ]
  19947. ))
  19948. characterMakers.push(() => makeCharacter(
  19949. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  19950. {
  19951. front: {
  19952. height: math.unit(8 + 8 / 12, "feet"),
  19953. weight: math.unit(130, "kg"),
  19954. name: "Front",
  19955. image: {
  19956. source: "./media/characters/seroko/front.svg",
  19957. extra: 1385 / 1280,
  19958. bottom: 0.025
  19959. }
  19960. },
  19961. back: {
  19962. height: math.unit(8 + 8 / 12, "feet"),
  19963. weight: math.unit(130, "kg"),
  19964. name: "Back",
  19965. image: {
  19966. source: "./media/characters/seroko/back.svg",
  19967. extra: 1369 / 1238,
  19968. bottom: 0.018
  19969. }
  19970. },
  19971. frontDressed: {
  19972. height: math.unit(8 + 8 / 12, "feet"),
  19973. weight: math.unit(130, "kg"),
  19974. name: "Front (Dressed)",
  19975. image: {
  19976. source: "./media/characters/seroko/front-dressed.svg",
  19977. extra: 1366 / 1275,
  19978. bottom: 0.03
  19979. }
  19980. },
  19981. },
  19982. [
  19983. {
  19984. name: "Normal",
  19985. height: math.unit(8 + 8 / 12, "feet"),
  19986. default: true
  19987. },
  19988. ]
  19989. ))
  19990. characterMakers.push(() => makeCharacter(
  19991. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  19992. {
  19993. front: {
  19994. height: math.unit(5.5, "feet"),
  19995. weight: math.unit(160, "lb"),
  19996. name: "Front",
  19997. image: {
  19998. source: "./media/characters/quatzi/front.svg",
  19999. extra: 2346 / 2242,
  20000. bottom: 0.015
  20001. }
  20002. },
  20003. },
  20004. [
  20005. {
  20006. name: "Normal",
  20007. height: math.unit(5.5, "feet"),
  20008. default: true
  20009. },
  20010. {
  20011. name: "Big",
  20012. height: math.unit(7.7, "feet")
  20013. },
  20014. ]
  20015. ))
  20016. characterMakers.push(() => makeCharacter(
  20017. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20018. {
  20019. front: {
  20020. height: math.unit(5 + 11 / 12, "feet"),
  20021. weight: math.unit(180, "lb"),
  20022. name: "Front",
  20023. image: {
  20024. source: "./media/characters/sen/front.svg",
  20025. extra: 1321 / 1254,
  20026. bottom: 0.015
  20027. }
  20028. },
  20029. side: {
  20030. height: math.unit(5 + 11 / 12, "feet"),
  20031. weight: math.unit(180, "lb"),
  20032. name: "Side",
  20033. image: {
  20034. source: "./media/characters/sen/side.svg",
  20035. extra: 1321 / 1254,
  20036. bottom: 0.007
  20037. }
  20038. },
  20039. back: {
  20040. height: math.unit(5 + 11 / 12, "feet"),
  20041. weight: math.unit(180, "lb"),
  20042. name: "Back",
  20043. image: {
  20044. source: "./media/characters/sen/back.svg",
  20045. extra: 1321 / 1254
  20046. }
  20047. },
  20048. },
  20049. [
  20050. {
  20051. name: "Normal",
  20052. height: math.unit(5 + 11 / 12, "feet"),
  20053. default: true
  20054. },
  20055. ]
  20056. ))
  20057. characterMakers.push(() => makeCharacter(
  20058. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20059. {
  20060. front: {
  20061. height: math.unit(166.6, "cm"),
  20062. weight: math.unit(66.6, "kg"),
  20063. name: "Front",
  20064. image: {
  20065. source: "./media/characters/fruity/front.svg",
  20066. extra: 1510 / 1386,
  20067. bottom: 0.04
  20068. }
  20069. },
  20070. back: {
  20071. height: math.unit(166.6, "cm"),
  20072. weight: math.unit(66.6, "lb"),
  20073. name: "Back",
  20074. image: {
  20075. source: "./media/characters/fruity/back.svg",
  20076. extra: 1563 / 1435,
  20077. bottom: 0.005
  20078. }
  20079. },
  20080. },
  20081. [
  20082. {
  20083. name: "Normal",
  20084. height: math.unit(166.6, "cm"),
  20085. default: true
  20086. },
  20087. {
  20088. name: "Demonic",
  20089. height: math.unit(166.6, "feet")
  20090. },
  20091. ]
  20092. ))
  20093. characterMakers.push(() => makeCharacter(
  20094. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20095. {
  20096. side: {
  20097. height: math.unit(10, "feet"),
  20098. weight: math.unit(500, "lb"),
  20099. name: "Side",
  20100. image: {
  20101. source: "./media/characters/zost/side.svg",
  20102. extra: 966 / 880,
  20103. bottom: 0.075
  20104. }
  20105. },
  20106. mawFront: {
  20107. height: math.unit(1.08, "meters"),
  20108. name: "Maw (Front)",
  20109. image: {
  20110. source: "./media/characters/zost/maw-front.svg"
  20111. }
  20112. },
  20113. mawSide: {
  20114. height: math.unit(2.66, "feet"),
  20115. name: "Maw (Side)",
  20116. image: {
  20117. source: "./media/characters/zost/maw-side.svg"
  20118. }
  20119. },
  20120. },
  20121. [
  20122. {
  20123. name: "Normal",
  20124. height: math.unit(10, "feet"),
  20125. default: true
  20126. },
  20127. ]
  20128. ))
  20129. characterMakers.push(() => makeCharacter(
  20130. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20131. {
  20132. front: {
  20133. height: math.unit(5 + 4 / 12, "feet"),
  20134. weight: math.unit(120, "lb"),
  20135. name: "Front",
  20136. image: {
  20137. source: "./media/characters/luci/front.svg",
  20138. extra: 1985 / 1884,
  20139. bottom: 0.04
  20140. }
  20141. },
  20142. back: {
  20143. height: math.unit(5 + 4 / 12, "feet"),
  20144. weight: math.unit(120, "lb"),
  20145. name: "Back",
  20146. image: {
  20147. source: "./media/characters/luci/back.svg",
  20148. extra: 1892 / 1791,
  20149. bottom: 0.002
  20150. }
  20151. },
  20152. },
  20153. [
  20154. {
  20155. name: "Normal",
  20156. height: math.unit(5 + 4 / 12, "feet"),
  20157. default: true
  20158. },
  20159. ]
  20160. ))
  20161. characterMakers.push(() => makeCharacter(
  20162. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20163. {
  20164. front: {
  20165. height: math.unit(1500, "feet"),
  20166. weight: math.unit(3.8e6, "tons"),
  20167. name: "Front",
  20168. image: {
  20169. source: "./media/characters/2th/front.svg",
  20170. extra: 3489 / 3350,
  20171. bottom: 0.1
  20172. }
  20173. },
  20174. foot: {
  20175. height: math.unit(461, "feet"),
  20176. name: "Foot",
  20177. image: {
  20178. source: "./media/characters/2th/foot.svg"
  20179. }
  20180. },
  20181. },
  20182. [
  20183. {
  20184. name: "\"Micro\"",
  20185. height: math.unit(15 + 7 / 12, "feet")
  20186. },
  20187. {
  20188. name: "Normal",
  20189. height: math.unit(1500, "feet"),
  20190. default: true
  20191. },
  20192. {
  20193. name: "Macro",
  20194. height: math.unit(5000, "feet")
  20195. },
  20196. {
  20197. name: "Megamacro",
  20198. height: math.unit(15, "miles")
  20199. },
  20200. {
  20201. name: "Gigamacro",
  20202. height: math.unit(4000, "miles")
  20203. },
  20204. {
  20205. name: "Galactic",
  20206. height: math.unit(50, "AU")
  20207. },
  20208. ]
  20209. ))
  20210. characterMakers.push(() => makeCharacter(
  20211. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20212. {
  20213. front: {
  20214. height: math.unit(5 + 6 / 12, "feet"),
  20215. weight: math.unit(220, "lb"),
  20216. name: "Front",
  20217. image: {
  20218. source: "./media/characters/amethyst/front.svg",
  20219. extra: 2078 / 2040,
  20220. bottom: 0.045
  20221. }
  20222. },
  20223. back: {
  20224. height: math.unit(5 + 6 / 12, "feet"),
  20225. weight: math.unit(220, "lb"),
  20226. name: "Back",
  20227. image: {
  20228. source: "./media/characters/amethyst/back.svg",
  20229. extra: 2021 / 1989,
  20230. bottom: 0.02
  20231. }
  20232. },
  20233. },
  20234. [
  20235. {
  20236. name: "Normal",
  20237. height: math.unit(5 + 6 / 12, "feet"),
  20238. default: true
  20239. },
  20240. ]
  20241. ))
  20242. characterMakers.push(() => makeCharacter(
  20243. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20244. {
  20245. front: {
  20246. height: math.unit(4 + 11 / 12, "feet"),
  20247. weight: math.unit(120, "lb"),
  20248. name: "Front",
  20249. image: {
  20250. source: "./media/characters/yumi-akiyama/front.svg",
  20251. extra: 1327 / 1235,
  20252. bottom: 0.02
  20253. }
  20254. },
  20255. back: {
  20256. height: math.unit(4 + 11 / 12, "feet"),
  20257. weight: math.unit(120, "lb"),
  20258. name: "Back",
  20259. image: {
  20260. source: "./media/characters/yumi-akiyama/back.svg",
  20261. extra: 1287 / 1245,
  20262. bottom: 0.002
  20263. }
  20264. },
  20265. },
  20266. [
  20267. {
  20268. name: "Galactic",
  20269. height: math.unit(50, "galaxies"),
  20270. default: true
  20271. },
  20272. {
  20273. name: "Universal",
  20274. height: math.unit(100, "universes")
  20275. },
  20276. ]
  20277. ))
  20278. characterMakers.push(() => makeCharacter(
  20279. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20280. {
  20281. front: {
  20282. height: math.unit(8, "feet"),
  20283. weight: math.unit(500, "lb"),
  20284. name: "Front",
  20285. image: {
  20286. source: "./media/characters/rifter-yrmori/front.svg",
  20287. extra: 1180 / 1125,
  20288. bottom: 0.02
  20289. }
  20290. },
  20291. back: {
  20292. height: math.unit(8, "feet"),
  20293. weight: math.unit(500, "lb"),
  20294. name: "Back",
  20295. image: {
  20296. source: "./media/characters/rifter-yrmori/back.svg",
  20297. extra: 1190 / 1145,
  20298. bottom: 0.001
  20299. }
  20300. },
  20301. wings: {
  20302. height: math.unit(7.75, "feet"),
  20303. weight: math.unit(500, "lb"),
  20304. name: "Wings",
  20305. image: {
  20306. source: "./media/characters/rifter-yrmori/wings.svg",
  20307. extra: 1357 / 1285
  20308. }
  20309. },
  20310. maw: {
  20311. height: math.unit(0.8, "feet"),
  20312. name: "Maw",
  20313. image: {
  20314. source: "./media/characters/rifter-yrmori/maw.svg"
  20315. }
  20316. },
  20317. mawfront: {
  20318. height: math.unit(1.45, "feet"),
  20319. name: "Maw (Front)",
  20320. image: {
  20321. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20322. }
  20323. },
  20324. },
  20325. [
  20326. {
  20327. name: "Normal",
  20328. height: math.unit(8, "feet"),
  20329. default: true
  20330. },
  20331. {
  20332. name: "Macro",
  20333. height: math.unit(42, "meters")
  20334. },
  20335. ]
  20336. ))
  20337. characterMakers.push(() => makeCharacter(
  20338. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20339. {
  20340. were: {
  20341. height: math.unit(25 + 6 / 12, "feet"),
  20342. weight: math.unit(10000, "lb"),
  20343. name: "Were",
  20344. image: {
  20345. source: "./media/characters/tahajin/were.svg",
  20346. extra: 801 / 770,
  20347. bottom: 0.042
  20348. }
  20349. },
  20350. aquatic: {
  20351. height: math.unit(6 + 4 / 12, "feet"),
  20352. weight: math.unit(160, "lb"),
  20353. name: "Aquatic",
  20354. image: {
  20355. source: "./media/characters/tahajin/aquatic.svg",
  20356. extra: 572 / 542,
  20357. bottom: 0.04
  20358. }
  20359. },
  20360. chow: {
  20361. height: math.unit(8 + 11 / 12, "feet"),
  20362. weight: math.unit(450, "lb"),
  20363. name: "Chow",
  20364. image: {
  20365. source: "./media/characters/tahajin/chow.svg",
  20366. extra: 660 / 640,
  20367. bottom: 0.015
  20368. }
  20369. },
  20370. demiNaga: {
  20371. height: math.unit(6 + 8 / 12, "feet"),
  20372. weight: math.unit(300, "lb"),
  20373. name: "Demi Naga",
  20374. image: {
  20375. source: "./media/characters/tahajin/demi-naga.svg",
  20376. extra: 643 / 615,
  20377. bottom: 0.1
  20378. }
  20379. },
  20380. data: {
  20381. height: math.unit(5, "inches"),
  20382. weight: math.unit(0.1, "lb"),
  20383. name: "Data",
  20384. image: {
  20385. source: "./media/characters/tahajin/data.svg"
  20386. }
  20387. },
  20388. fluu: {
  20389. height: math.unit(5 + 7 / 12, "feet"),
  20390. weight: math.unit(140, "lb"),
  20391. name: "Fluu",
  20392. image: {
  20393. source: "./media/characters/tahajin/fluu.svg",
  20394. extra: 628 / 592,
  20395. bottom: 0.02
  20396. }
  20397. },
  20398. starWarrior: {
  20399. height: math.unit(4 + 5 / 12, "feet"),
  20400. weight: math.unit(50, "lb"),
  20401. name: "Star Warrior",
  20402. image: {
  20403. source: "./media/characters/tahajin/star-warrior.svg"
  20404. }
  20405. },
  20406. },
  20407. [
  20408. {
  20409. name: "Normal",
  20410. height: math.unit(25 + 6 / 12, "feet"),
  20411. default: true
  20412. },
  20413. ]
  20414. ))
  20415. characterMakers.push(() => makeCharacter(
  20416. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20417. {
  20418. front: {
  20419. height: math.unit(8, "feet"),
  20420. weight: math.unit(350, "lb"),
  20421. name: "Front",
  20422. image: {
  20423. source: "./media/characters/gabira/front.svg",
  20424. extra: 608 / 580,
  20425. bottom: 0.03
  20426. }
  20427. },
  20428. back: {
  20429. height: math.unit(8, "feet"),
  20430. weight: math.unit(350, "lb"),
  20431. name: "Back",
  20432. image: {
  20433. source: "./media/characters/gabira/back.svg",
  20434. extra: 608 / 580,
  20435. bottom: 0.03
  20436. }
  20437. },
  20438. },
  20439. [
  20440. {
  20441. name: "Normal",
  20442. height: math.unit(8, "feet"),
  20443. default: true
  20444. },
  20445. ]
  20446. ))
  20447. characterMakers.push(() => makeCharacter(
  20448. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20449. {
  20450. front: {
  20451. height: math.unit(5 + 3 / 12, "feet"),
  20452. weight: math.unit(137, "lb"),
  20453. name: "Front",
  20454. image: {
  20455. source: "./media/characters/sasha-katraine/front.svg",
  20456. bottom: 0.045
  20457. }
  20458. },
  20459. },
  20460. [
  20461. {
  20462. name: "Micro",
  20463. height: math.unit(5, "inches")
  20464. },
  20465. {
  20466. name: "Normal",
  20467. height: math.unit(5 + 3 / 12, "feet"),
  20468. default: true
  20469. },
  20470. ]
  20471. ))
  20472. characterMakers.push(() => makeCharacter(
  20473. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20474. {
  20475. side: {
  20476. height: math.unit(4, "inches"),
  20477. weight: math.unit(200, "grams"),
  20478. name: "Side",
  20479. image: {
  20480. source: "./media/characters/der/side.svg",
  20481. extra: 719 / 400,
  20482. bottom: 30.6 / 749.9187
  20483. }
  20484. },
  20485. },
  20486. [
  20487. {
  20488. name: "Micro",
  20489. height: math.unit(4, "inches"),
  20490. default: true
  20491. },
  20492. ]
  20493. ))
  20494. characterMakers.push(() => makeCharacter(
  20495. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20496. {
  20497. side: {
  20498. height: math.unit(30, "meters"),
  20499. weight: math.unit(700, "tonnes"),
  20500. name: "Side",
  20501. image: {
  20502. source: "./media/characters/fixerdragon/side.svg",
  20503. extra: (1293.0514 - 116.03) / 1106.86,
  20504. bottom: 116.03 / 1293.0514
  20505. }
  20506. },
  20507. },
  20508. [
  20509. {
  20510. name: "Planck",
  20511. height: math.unit(1.6e-35, "meters")
  20512. },
  20513. {
  20514. name: "Micro",
  20515. height: math.unit(0.4, "meters")
  20516. },
  20517. {
  20518. name: "Normal",
  20519. height: math.unit(30, "meters"),
  20520. default: true
  20521. },
  20522. {
  20523. name: "Megamacro",
  20524. height: math.unit(1.2, "megameters")
  20525. },
  20526. {
  20527. name: "Teramacro",
  20528. height: math.unit(130, "terameters")
  20529. },
  20530. {
  20531. name: "Yottamacro",
  20532. height: math.unit(6200, "yottameters")
  20533. },
  20534. ]
  20535. ));
  20536. characterMakers.push(() => makeCharacter(
  20537. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20538. {
  20539. front: {
  20540. height: math.unit(8, "feet"),
  20541. weight: math.unit(250, "lb"),
  20542. name: "Front",
  20543. image: {
  20544. source: "./media/characters/kite/front.svg",
  20545. extra: 2796 / 2659,
  20546. bottom: 0.002
  20547. }
  20548. },
  20549. },
  20550. [
  20551. {
  20552. name: "Normal",
  20553. height: math.unit(8, "feet"),
  20554. default: true
  20555. },
  20556. {
  20557. name: "Macro",
  20558. height: math.unit(360, "feet")
  20559. },
  20560. {
  20561. name: "Megamacro",
  20562. height: math.unit(1500, "feet")
  20563. },
  20564. ]
  20565. ))
  20566. characterMakers.push(() => makeCharacter(
  20567. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20568. {
  20569. front: {
  20570. height: math.unit(5 + 10 / 12, "feet"),
  20571. weight: math.unit(150, "lb"),
  20572. name: "Front",
  20573. image: {
  20574. source: "./media/characters/poojawa-vynar/front.svg",
  20575. extra: (1506.1547 - 55) / 1356.6,
  20576. bottom: 55 / 1506.1547
  20577. }
  20578. },
  20579. frontTailless: {
  20580. height: math.unit(5 + 10 / 12, "feet"),
  20581. weight: math.unit(150, "lb"),
  20582. name: "Front (Tailless)",
  20583. image: {
  20584. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20585. extra: (1506.1547 - 55) / 1356.6,
  20586. bottom: 55 / 1506.1547
  20587. }
  20588. },
  20589. },
  20590. [
  20591. {
  20592. name: "Normal",
  20593. height: math.unit(5 + 10 / 12, "feet"),
  20594. default: true
  20595. },
  20596. ]
  20597. ))
  20598. characterMakers.push(() => makeCharacter(
  20599. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20600. {
  20601. front: {
  20602. height: math.unit(293, "meters"),
  20603. weight: math.unit(70400, "tons"),
  20604. name: "Front",
  20605. image: {
  20606. source: "./media/characters/violette/front.svg",
  20607. extra: 1227 / 1180,
  20608. bottom: 0.005
  20609. }
  20610. },
  20611. back: {
  20612. height: math.unit(293, "meters"),
  20613. weight: math.unit(70400, "tons"),
  20614. name: "Back",
  20615. image: {
  20616. source: "./media/characters/violette/back.svg",
  20617. extra: 1227 / 1180,
  20618. bottom: 0.005
  20619. }
  20620. },
  20621. },
  20622. [
  20623. {
  20624. name: "Macro",
  20625. height: math.unit(293, "meters"),
  20626. default: true
  20627. },
  20628. ]
  20629. ))
  20630. characterMakers.push(() => makeCharacter(
  20631. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20632. {
  20633. front: {
  20634. height: math.unit(1050, "feet"),
  20635. weight: math.unit(200000, "tons"),
  20636. name: "Front",
  20637. image: {
  20638. source: "./media/characters/alessandra/front.svg",
  20639. extra: 960 / 912,
  20640. bottom: 0.06
  20641. }
  20642. },
  20643. },
  20644. [
  20645. {
  20646. name: "Macro",
  20647. height: math.unit(1050, "feet")
  20648. },
  20649. {
  20650. name: "Macro+",
  20651. height: math.unit(900, "meters"),
  20652. default: true
  20653. },
  20654. ]
  20655. ))
  20656. characterMakers.push(() => makeCharacter(
  20657. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20658. {
  20659. front: {
  20660. height: math.unit(5, "feet"),
  20661. weight: math.unit(187, "lb"),
  20662. name: "Front",
  20663. image: {
  20664. source: "./media/characters/person/front.svg",
  20665. extra: 3087 / 2945,
  20666. bottom: 91 / 3181
  20667. }
  20668. },
  20669. },
  20670. [
  20671. {
  20672. name: "Micro",
  20673. height: math.unit(3, "inches")
  20674. },
  20675. {
  20676. name: "Normal",
  20677. height: math.unit(5, "feet"),
  20678. default: true
  20679. },
  20680. {
  20681. name: "Macro",
  20682. height: math.unit(90, "feet")
  20683. },
  20684. {
  20685. name: "Max Size",
  20686. height: math.unit(280, "feet")
  20687. },
  20688. ]
  20689. ))
  20690. characterMakers.push(() => makeCharacter(
  20691. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20692. {
  20693. front: {
  20694. height: math.unit(4.5, "meters"),
  20695. weight: math.unit(3200, "lb"),
  20696. name: "Front",
  20697. image: {
  20698. source: "./media/characters/ty/front.svg",
  20699. extra: 1038 / 960,
  20700. bottom: 31.156 / 1068
  20701. }
  20702. },
  20703. back: {
  20704. height: math.unit(4.5, "meters"),
  20705. weight: math.unit(3200, "lb"),
  20706. name: "Back",
  20707. image: {
  20708. source: "./media/characters/ty/back.svg",
  20709. extra: 1044 / 966,
  20710. bottom: 7.48 / 1049
  20711. }
  20712. },
  20713. },
  20714. [
  20715. {
  20716. name: "Normal",
  20717. height: math.unit(4.5, "meters"),
  20718. default: true
  20719. },
  20720. ]
  20721. ))
  20722. characterMakers.push(() => makeCharacter(
  20723. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20724. {
  20725. front: {
  20726. height: math.unit(5 + 4 / 12, "feet"),
  20727. weight: math.unit(115, "lb"),
  20728. name: "Front",
  20729. image: {
  20730. source: "./media/characters/rocky/front.svg",
  20731. extra: 1012 / 975,
  20732. bottom: 54 / 1066
  20733. }
  20734. },
  20735. },
  20736. [
  20737. {
  20738. name: "Normal",
  20739. height: math.unit(5 + 4 / 12, "feet"),
  20740. default: true
  20741. },
  20742. ]
  20743. ))
  20744. characterMakers.push(() => makeCharacter(
  20745. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20746. {
  20747. upright: {
  20748. height: math.unit(6, "meters"),
  20749. weight: math.unit(4000, "kg"),
  20750. name: "Upright",
  20751. image: {
  20752. source: "./media/characters/ruin/upright.svg",
  20753. extra: 668 / 661,
  20754. bottom: 42 / 799.8396
  20755. }
  20756. },
  20757. },
  20758. [
  20759. {
  20760. name: "Normal",
  20761. height: math.unit(6, "meters"),
  20762. default: true
  20763. },
  20764. ]
  20765. ))
  20766. characterMakers.push(() => makeCharacter(
  20767. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20768. {
  20769. front: {
  20770. height: math.unit(5, "feet"),
  20771. weight: math.unit(106, "lb"),
  20772. name: "Front",
  20773. image: {
  20774. source: "./media/characters/robin/front.svg",
  20775. extra: 862 / 799,
  20776. bottom: 42.4 / 914.8856
  20777. }
  20778. },
  20779. },
  20780. [
  20781. {
  20782. name: "Normal",
  20783. height: math.unit(5, "feet"),
  20784. default: true
  20785. },
  20786. ]
  20787. ))
  20788. characterMakers.push(() => makeCharacter(
  20789. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20790. {
  20791. side: {
  20792. height: math.unit(3, "feet"),
  20793. weight: math.unit(225, "lb"),
  20794. name: "Side",
  20795. image: {
  20796. source: "./media/characters/saian/side.svg",
  20797. extra: 566 / 356,
  20798. bottom: 79.7 / 643
  20799. }
  20800. },
  20801. maw: {
  20802. height: math.unit(2.85, "feet"),
  20803. name: "Maw",
  20804. image: {
  20805. source: "./media/characters/saian/maw.svg"
  20806. }
  20807. },
  20808. },
  20809. [
  20810. {
  20811. name: "Normal",
  20812. height: math.unit(3, "feet"),
  20813. default: true
  20814. },
  20815. ]
  20816. ))
  20817. characterMakers.push(() => makeCharacter(
  20818. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20819. {
  20820. side: {
  20821. height: math.unit(8, "feet"),
  20822. weight: math.unit(300, "lb"),
  20823. name: "Side",
  20824. image: {
  20825. source: "./media/characters/equus-silvermane/side.svg",
  20826. extra: 2176 / 2050,
  20827. bottom: 65.7 / 2245
  20828. }
  20829. },
  20830. front: {
  20831. height: math.unit(8, "feet"),
  20832. weight: math.unit(300, "lb"),
  20833. name: "Front",
  20834. image: {
  20835. source: "./media/characters/equus-silvermane/front.svg",
  20836. extra: 4633 / 4400,
  20837. bottom: 71.3 / 4706.915
  20838. }
  20839. },
  20840. sideStepping: {
  20841. height: math.unit(8, "feet"),
  20842. weight: math.unit(300, "lb"),
  20843. name: "Side (Stepping)",
  20844. image: {
  20845. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20846. extra: 1968 / 1860,
  20847. bottom: 16.4 / 1989
  20848. }
  20849. },
  20850. },
  20851. [
  20852. {
  20853. name: "Normal",
  20854. height: math.unit(8, "feet")
  20855. },
  20856. {
  20857. name: "Minimacro",
  20858. height: math.unit(75, "feet"),
  20859. default: true
  20860. },
  20861. {
  20862. name: "Macro",
  20863. height: math.unit(150, "feet")
  20864. },
  20865. {
  20866. name: "Macro+",
  20867. height: math.unit(1000, "feet")
  20868. },
  20869. {
  20870. name: "Megamacro",
  20871. height: math.unit(1, "mile")
  20872. },
  20873. ]
  20874. ))
  20875. characterMakers.push(() => makeCharacter(
  20876. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  20877. {
  20878. side: {
  20879. height: math.unit(20, "feet"),
  20880. weight: math.unit(30000, "kg"),
  20881. name: "Side",
  20882. image: {
  20883. source: "./media/characters/windar/side.svg",
  20884. extra: 1491 / 1248,
  20885. bottom: 82.56 / 1568
  20886. }
  20887. },
  20888. },
  20889. [
  20890. {
  20891. name: "Normal",
  20892. height: math.unit(20, "feet"),
  20893. default: true
  20894. },
  20895. ]
  20896. ))
  20897. characterMakers.push(() => makeCharacter(
  20898. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  20899. {
  20900. side: {
  20901. height: math.unit(15.66, "feet"),
  20902. weight: math.unit(150, "lb"),
  20903. name: "Side",
  20904. image: {
  20905. source: "./media/characters/melody/side.svg",
  20906. extra: 1097 / 944,
  20907. bottom: 11.8 / 1109
  20908. }
  20909. },
  20910. sideOutfit: {
  20911. height: math.unit(15.66, "feet"),
  20912. weight: math.unit(150, "lb"),
  20913. name: "Side (Outfit)",
  20914. image: {
  20915. source: "./media/characters/melody/side-outfit.svg",
  20916. extra: 1097 / 944,
  20917. bottom: 11.8 / 1109
  20918. }
  20919. },
  20920. },
  20921. [
  20922. {
  20923. name: "Normal",
  20924. height: math.unit(15.66, "feet"),
  20925. default: true
  20926. },
  20927. ]
  20928. ))
  20929. characterMakers.push(() => makeCharacter(
  20930. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  20931. {
  20932. front: {
  20933. height: math.unit(8, "feet"),
  20934. weight: math.unit(325, "lb"),
  20935. name: "Front",
  20936. image: {
  20937. source: "./media/characters/windera/front.svg",
  20938. extra: 3180 / 2845,
  20939. bottom: 178 / 3365
  20940. }
  20941. },
  20942. },
  20943. [
  20944. {
  20945. name: "Normal",
  20946. height: math.unit(8, "feet"),
  20947. default: true
  20948. },
  20949. ]
  20950. ))
  20951. characterMakers.push(() => makeCharacter(
  20952. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  20953. {
  20954. front: {
  20955. height: math.unit(28.75, "feet"),
  20956. weight: math.unit(2000, "kg"),
  20957. name: "Front",
  20958. image: {
  20959. source: "./media/characters/sonear/front.svg",
  20960. extra: 1041.1 / 964.9,
  20961. bottom: 53.7 / 1096.6
  20962. }
  20963. },
  20964. },
  20965. [
  20966. {
  20967. name: "Normal",
  20968. height: math.unit(28.75, "feet"),
  20969. default: true
  20970. },
  20971. ]
  20972. ))
  20973. characterMakers.push(() => makeCharacter(
  20974. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  20975. {
  20976. side: {
  20977. height: math.unit(25.5, "feet"),
  20978. weight: math.unit(23000, "kg"),
  20979. name: "Side",
  20980. image: {
  20981. source: "./media/characters/kanara/side.svg"
  20982. }
  20983. },
  20984. },
  20985. [
  20986. {
  20987. name: "Normal",
  20988. height: math.unit(25.5, "feet"),
  20989. default: true
  20990. },
  20991. ]
  20992. ))
  20993. characterMakers.push(() => makeCharacter(
  20994. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  20995. {
  20996. side: {
  20997. height: math.unit(10, "feet"),
  20998. weight: math.unit(1000, "kg"),
  20999. name: "Side",
  21000. image: {
  21001. source: "./media/characters/ereus/side.svg",
  21002. extra: 1157 / 959,
  21003. bottom: 153 / 1312.5
  21004. }
  21005. },
  21006. },
  21007. [
  21008. {
  21009. name: "Normal",
  21010. height: math.unit(10, "feet"),
  21011. default: true
  21012. },
  21013. ]
  21014. ))
  21015. characterMakers.push(() => makeCharacter(
  21016. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21017. {
  21018. side: {
  21019. height: math.unit(4.5, "feet"),
  21020. weight: math.unit(500, "lb"),
  21021. name: "Side",
  21022. image: {
  21023. source: "./media/characters/e-ter/side.svg",
  21024. extra: 1550 / 1248,
  21025. bottom: 146 / 1694
  21026. }
  21027. },
  21028. },
  21029. [
  21030. {
  21031. name: "Normal",
  21032. height: math.unit(4.5, "feet"),
  21033. default: true
  21034. },
  21035. ]
  21036. ))
  21037. characterMakers.push(() => makeCharacter(
  21038. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21039. {
  21040. side: {
  21041. height: math.unit(9.7, "feet"),
  21042. weight: math.unit(4000, "kg"),
  21043. name: "Side",
  21044. image: {
  21045. source: "./media/characters/yamie/side.svg"
  21046. }
  21047. },
  21048. },
  21049. [
  21050. {
  21051. name: "Normal",
  21052. height: math.unit(9.7, "feet"),
  21053. default: true
  21054. },
  21055. ]
  21056. ))
  21057. characterMakers.push(() => makeCharacter(
  21058. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21059. {
  21060. front: {
  21061. height: math.unit(50, "feet"),
  21062. weight: math.unit(50000, "kg"),
  21063. name: "Front",
  21064. image: {
  21065. source: "./media/characters/anders/front.svg",
  21066. extra: 570 / 539,
  21067. bottom: 14.7 / 586.7
  21068. }
  21069. },
  21070. },
  21071. [
  21072. {
  21073. name: "Large",
  21074. height: math.unit(50, "feet")
  21075. },
  21076. {
  21077. name: "Macro",
  21078. height: math.unit(2000, "feet"),
  21079. default: true
  21080. },
  21081. {
  21082. name: "Megamacro",
  21083. height: math.unit(12, "miles")
  21084. },
  21085. ]
  21086. ))
  21087. characterMakers.push(() => makeCharacter(
  21088. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21089. {
  21090. front: {
  21091. height: math.unit(7 + 2 / 12, "feet"),
  21092. weight: math.unit(300, "lb"),
  21093. name: "Front",
  21094. image: {
  21095. source: "./media/characters/reban/front.svg",
  21096. extra: 516 / 487,
  21097. bottom: 42.82 / 558.356
  21098. }
  21099. },
  21100. dick: {
  21101. height: math.unit(7 / 5, "feet"),
  21102. name: "Dick",
  21103. image: {
  21104. source: "./media/characters/reban/dick.svg"
  21105. }
  21106. },
  21107. },
  21108. [
  21109. {
  21110. name: "Natural Height",
  21111. height: math.unit(7 + 2 / 12, "feet")
  21112. },
  21113. {
  21114. name: "Macro",
  21115. height: math.unit(500, "feet"),
  21116. default: true
  21117. },
  21118. {
  21119. name: "Canon Height",
  21120. height: math.unit(50, "AU")
  21121. },
  21122. ]
  21123. ))
  21124. characterMakers.push(() => makeCharacter(
  21125. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21126. {
  21127. front: {
  21128. height: math.unit(6, "feet"),
  21129. weight: math.unit(150, "lb"),
  21130. name: "Front",
  21131. image: {
  21132. source: "./media/characters/terrance-keayes/front.svg",
  21133. extra: 1.005,
  21134. bottom: 151 / 1615
  21135. }
  21136. },
  21137. side: {
  21138. height: math.unit(6, "feet"),
  21139. weight: math.unit(150, "lb"),
  21140. name: "Side",
  21141. image: {
  21142. source: "./media/characters/terrance-keayes/side.svg",
  21143. extra: 1.005,
  21144. bottom: 129.4 / 1544
  21145. }
  21146. },
  21147. back: {
  21148. height: math.unit(6, "feet"),
  21149. weight: math.unit(150, "lb"),
  21150. name: "Back",
  21151. image: {
  21152. source: "./media/characters/terrance-keayes/back.svg",
  21153. extra: 1.005,
  21154. bottom: 58.4 / 1557.3
  21155. }
  21156. },
  21157. dick: {
  21158. height: math.unit(6 * 0.208, "feet"),
  21159. name: "Dick",
  21160. image: {
  21161. source: "./media/characters/terrance-keayes/dick.svg"
  21162. }
  21163. },
  21164. },
  21165. [
  21166. {
  21167. name: "Canon Height",
  21168. height: math.unit(35, "miles"),
  21169. default: true
  21170. },
  21171. ]
  21172. ))
  21173. characterMakers.push(() => makeCharacter(
  21174. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21175. {
  21176. front: {
  21177. height: math.unit(6, "feet"),
  21178. weight: math.unit(150, "lb"),
  21179. name: "Front",
  21180. image: {
  21181. source: "./media/characters/ofelia/front.svg",
  21182. extra: 546 / 541,
  21183. bottom: 39 / 583
  21184. }
  21185. },
  21186. back: {
  21187. height: math.unit(6, "feet"),
  21188. weight: math.unit(150, "lb"),
  21189. name: "Back",
  21190. image: {
  21191. source: "./media/characters/ofelia/back.svg",
  21192. extra: 564 / 559.5,
  21193. bottom: 8.69 / 573.02
  21194. }
  21195. },
  21196. maw: {
  21197. height: math.unit(1, "feet"),
  21198. name: "Maw",
  21199. image: {
  21200. source: "./media/characters/ofelia/maw.svg"
  21201. }
  21202. },
  21203. foot: {
  21204. height: math.unit(1.949, "feet"),
  21205. name: "Foot",
  21206. image: {
  21207. source: "./media/characters/ofelia/foot.svg"
  21208. }
  21209. },
  21210. },
  21211. [
  21212. {
  21213. name: "Canon Height",
  21214. height: math.unit(2000, "miles"),
  21215. default: true
  21216. },
  21217. ]
  21218. ))
  21219. characterMakers.push(() => makeCharacter(
  21220. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21221. {
  21222. front: {
  21223. height: math.unit(6, "feet"),
  21224. weight: math.unit(150, "lb"),
  21225. name: "Front",
  21226. image: {
  21227. source: "./media/characters/samuel/front.svg",
  21228. extra: 265 / 258,
  21229. bottom: 2 / 266.1566
  21230. }
  21231. },
  21232. },
  21233. [
  21234. {
  21235. name: "Macro",
  21236. height: math.unit(100, "feet"),
  21237. default: true
  21238. },
  21239. {
  21240. name: "Full Size",
  21241. height: math.unit(1000, "miles")
  21242. },
  21243. ]
  21244. ))
  21245. characterMakers.push(() => makeCharacter(
  21246. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21247. {
  21248. front: {
  21249. height: math.unit(6, "feet"),
  21250. weight: math.unit(300, "lb"),
  21251. name: "Front",
  21252. image: {
  21253. source: "./media/characters/beishir-kiel/front.svg",
  21254. extra: 569 / 547,
  21255. bottom: 41.9 / 609
  21256. }
  21257. },
  21258. maw: {
  21259. height: math.unit(6 * 0.202, "feet"),
  21260. name: "Maw",
  21261. image: {
  21262. source: "./media/characters/beishir-kiel/maw.svg"
  21263. }
  21264. },
  21265. },
  21266. [
  21267. {
  21268. name: "Macro",
  21269. height: math.unit(300, "feet"),
  21270. default: true
  21271. },
  21272. ]
  21273. ))
  21274. characterMakers.push(() => makeCharacter(
  21275. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21276. {
  21277. front: {
  21278. height: math.unit(5 + 8 / 12, "feet"),
  21279. weight: math.unit(120, "lb"),
  21280. name: "Front",
  21281. image: {
  21282. source: "./media/characters/logan-grey/front.svg",
  21283. extra: 2539 / 2393,
  21284. bottom: 97.6 / 2636.37
  21285. }
  21286. },
  21287. frontAlt: {
  21288. height: math.unit(5 + 8 / 12, "feet"),
  21289. weight: math.unit(120, "lb"),
  21290. name: "Front (Alt)",
  21291. image: {
  21292. source: "./media/characters/logan-grey/front-alt.svg",
  21293. extra: 958 / 893,
  21294. bottom: 15 / 970.768
  21295. }
  21296. },
  21297. back: {
  21298. height: math.unit(5 + 8 / 12, "feet"),
  21299. weight: math.unit(120, "lb"),
  21300. name: "Back",
  21301. image: {
  21302. source: "./media/characters/logan-grey/back.svg",
  21303. extra: 958 / 893,
  21304. bottom: 2.1881 / 970.9788
  21305. }
  21306. },
  21307. dick: {
  21308. height: math.unit(1.437, "feet"),
  21309. name: "Dick",
  21310. image: {
  21311. source: "./media/characters/logan-grey/dick.svg"
  21312. }
  21313. },
  21314. },
  21315. [
  21316. {
  21317. name: "Normal",
  21318. height: math.unit(5 + 8 / 12, "feet")
  21319. },
  21320. {
  21321. name: "The 500 Foot Femboy",
  21322. height: math.unit(500, "feet"),
  21323. default: true
  21324. },
  21325. {
  21326. name: "Megmacro",
  21327. height: math.unit(20, "miles")
  21328. },
  21329. ]
  21330. ))
  21331. characterMakers.push(() => makeCharacter(
  21332. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21333. {
  21334. front: {
  21335. height: math.unit(8 + 2 / 12, "feet"),
  21336. weight: math.unit(275, "lb"),
  21337. name: "Front",
  21338. image: {
  21339. source: "./media/characters/draganta/front.svg",
  21340. extra: 1177 / 1135,
  21341. bottom: 33.46 / 1212.1
  21342. }
  21343. },
  21344. },
  21345. [
  21346. {
  21347. name: "Normal",
  21348. height: math.unit(8 + 6 / 12, "feet"),
  21349. default: true
  21350. },
  21351. {
  21352. name: "Macro",
  21353. height: math.unit(150, "feet")
  21354. },
  21355. {
  21356. name: "Megamacro",
  21357. height: math.unit(1000, "miles")
  21358. },
  21359. ]
  21360. ))
  21361. characterMakers.push(() => makeCharacter(
  21362. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21363. {
  21364. front: {
  21365. height: math.unit(1.72, "m"),
  21366. weight: math.unit(80, "lb"),
  21367. name: "Front",
  21368. image: {
  21369. source: "./media/characters/voski/front.svg",
  21370. extra: 2076.22 / 2022.4,
  21371. bottom: 102.7 / 2177.3866
  21372. }
  21373. },
  21374. frontNsfw: {
  21375. height: math.unit(1.72, "m"),
  21376. weight: math.unit(80, "lb"),
  21377. name: "Front (NSFW)",
  21378. image: {
  21379. source: "./media/characters/voski/front-nsfw.svg",
  21380. extra: 2076.22 / 2022.4,
  21381. bottom: 102.7 / 2177.3866
  21382. }
  21383. },
  21384. back: {
  21385. height: math.unit(1.72, "m"),
  21386. weight: math.unit(80, "lb"),
  21387. name: "Back",
  21388. image: {
  21389. source: "./media/characters/voski/back.svg",
  21390. extra: 2104 / 2051,
  21391. bottom: 10.45 / 2113.63
  21392. }
  21393. },
  21394. },
  21395. [
  21396. {
  21397. name: "Normal",
  21398. height: math.unit(1.72, "m")
  21399. },
  21400. {
  21401. name: "Macro",
  21402. height: math.unit(55, "m"),
  21403. default: true
  21404. },
  21405. {
  21406. name: "Macro+",
  21407. height: math.unit(300, "m")
  21408. },
  21409. {
  21410. name: "Macro++",
  21411. height: math.unit(700, "m")
  21412. },
  21413. {
  21414. name: "Macro+++",
  21415. height: math.unit(4500, "m")
  21416. },
  21417. {
  21418. name: "Macro++++",
  21419. height: math.unit(45, "km")
  21420. },
  21421. {
  21422. name: "Macro+++++",
  21423. height: math.unit(1220, "km")
  21424. },
  21425. ]
  21426. ))
  21427. characterMakers.push(() => makeCharacter(
  21428. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21429. {
  21430. front: {
  21431. height: math.unit(2.3, "m"),
  21432. weight: math.unit(304, "kg"),
  21433. name: "Front",
  21434. image: {
  21435. source: "./media/characters/icowom-lee/front.svg",
  21436. extra: 985 / 955,
  21437. bottom: 25.4 / 1012
  21438. }
  21439. },
  21440. fronttentacles: {
  21441. height: math.unit(2.3, "m"),
  21442. weight: math.unit(304, "kg"),
  21443. name: "Front-tentacles",
  21444. image: {
  21445. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21446. extra: 985 / 955,
  21447. bottom: 25.4 / 1012
  21448. }
  21449. },
  21450. back: {
  21451. height: math.unit(2.3, "m"),
  21452. weight: math.unit(304, "kg"),
  21453. name: "Back",
  21454. image: {
  21455. source: "./media/characters/icowom-lee/back.svg",
  21456. extra: 975 / 954,
  21457. bottom: 9.5 / 985
  21458. }
  21459. },
  21460. backtentacles: {
  21461. height: math.unit(2.3, "m"),
  21462. weight: math.unit(304, "kg"),
  21463. name: "Back-tentacles",
  21464. image: {
  21465. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21466. extra: 975 / 954,
  21467. bottom: 9.5 / 985
  21468. }
  21469. },
  21470. frontDressed: {
  21471. height: math.unit(2.3, "m"),
  21472. weight: math.unit(304, "kg"),
  21473. name: "Front (Dressed)",
  21474. image: {
  21475. source: "./media/characters/icowom-lee/front-dressed.svg",
  21476. extra: 3076 / 2933,
  21477. bottom: 51.4 / 3125.1889
  21478. }
  21479. },
  21480. rump: {
  21481. height: math.unit(0.776, "meters"),
  21482. name: "Rump",
  21483. image: {
  21484. source: "./media/characters/icowom-lee/rump.svg"
  21485. }
  21486. },
  21487. genitals: {
  21488. height: math.unit(0.78, "meters"),
  21489. name: "Genitals",
  21490. image: {
  21491. source: "./media/characters/icowom-lee/genitals.svg"
  21492. }
  21493. },
  21494. },
  21495. [
  21496. {
  21497. name: "Normal",
  21498. height: math.unit(2.3, "meters"),
  21499. default: true
  21500. },
  21501. {
  21502. name: "Macro",
  21503. height: math.unit(94, "meters"),
  21504. default: true
  21505. },
  21506. ]
  21507. ))
  21508. characterMakers.push(() => makeCharacter(
  21509. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21510. {
  21511. front: {
  21512. height: math.unit(22, "meters"),
  21513. weight: math.unit(21000, "kg"),
  21514. name: "Front",
  21515. image: {
  21516. source: "./media/characters/shock-diamond/front.svg",
  21517. extra: 2204 / 2053,
  21518. bottom: 65 / 2239.47
  21519. }
  21520. },
  21521. frontNude: {
  21522. height: math.unit(22, "meters"),
  21523. weight: math.unit(21000, "kg"),
  21524. name: "Front (Nude)",
  21525. image: {
  21526. source: "./media/characters/shock-diamond/front-nude.svg",
  21527. extra: 2514 / 2285,
  21528. bottom: 13 / 2527.56
  21529. }
  21530. },
  21531. },
  21532. [
  21533. {
  21534. name: "Normal",
  21535. height: math.unit(3, "meters")
  21536. },
  21537. {
  21538. name: "Macro",
  21539. height: math.unit(22, "meters"),
  21540. default: true
  21541. },
  21542. ]
  21543. ))
  21544. characterMakers.push(() => makeCharacter(
  21545. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21546. {
  21547. front: {
  21548. height: math.unit(5 + 4 / 12, "feet"),
  21549. weight: math.unit(120, "lb"),
  21550. name: "Front",
  21551. image: {
  21552. source: "./media/characters/rory/front.svg",
  21553. extra: 589 / 556,
  21554. bottom: 45.7 / 635.76
  21555. }
  21556. },
  21557. frontNude: {
  21558. height: math.unit(5 + 4 / 12, "feet"),
  21559. weight: math.unit(120, "lb"),
  21560. name: "Front (Nude)",
  21561. image: {
  21562. source: "./media/characters/rory/front-nude.svg",
  21563. extra: 589 / 556,
  21564. bottom: 45.7 / 635.76
  21565. }
  21566. },
  21567. side: {
  21568. height: math.unit(5 + 4 / 12, "feet"),
  21569. weight: math.unit(120, "lb"),
  21570. name: "Side",
  21571. image: {
  21572. source: "./media/characters/rory/side.svg",
  21573. extra: 597 / 564,
  21574. bottom: 55 / 653
  21575. }
  21576. },
  21577. back: {
  21578. height: math.unit(5 + 4 / 12, "feet"),
  21579. weight: math.unit(120, "lb"),
  21580. name: "Back",
  21581. image: {
  21582. source: "./media/characters/rory/back.svg",
  21583. extra: 620 / 585,
  21584. bottom: 8.86 / 630.43
  21585. }
  21586. },
  21587. dick: {
  21588. height: math.unit(0.86, "feet"),
  21589. name: "Dick",
  21590. image: {
  21591. source: "./media/characters/rory/dick.svg"
  21592. }
  21593. },
  21594. },
  21595. [
  21596. {
  21597. name: "Normal",
  21598. height: math.unit(5 + 4 / 12, "feet"),
  21599. default: true
  21600. },
  21601. {
  21602. name: "Macro",
  21603. height: math.unit(100, "feet")
  21604. },
  21605. {
  21606. name: "Macro+",
  21607. height: math.unit(140, "feet")
  21608. },
  21609. {
  21610. name: "Macro++",
  21611. height: math.unit(300, "feet")
  21612. },
  21613. ]
  21614. ))
  21615. characterMakers.push(() => makeCharacter(
  21616. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21617. {
  21618. front: {
  21619. height: math.unit(5 + 9 / 12, "feet"),
  21620. weight: math.unit(190, "lb"),
  21621. name: "Front",
  21622. image: {
  21623. source: "./media/characters/sprisk/front.svg",
  21624. extra: 1225 / 1180,
  21625. bottom: 42.7 / 1266.4
  21626. }
  21627. },
  21628. frontNsfw: {
  21629. height: math.unit(5 + 9 / 12, "feet"),
  21630. weight: math.unit(190, "lb"),
  21631. name: "Front (NSFW)",
  21632. image: {
  21633. source: "./media/characters/sprisk/front-nsfw.svg",
  21634. extra: 1225 / 1180,
  21635. bottom: 42.7 / 1266.4
  21636. }
  21637. },
  21638. back: {
  21639. height: math.unit(5 + 9 / 12, "feet"),
  21640. weight: math.unit(190, "lb"),
  21641. name: "Back",
  21642. image: {
  21643. source: "./media/characters/sprisk/back.svg",
  21644. extra: 1247 / 1200,
  21645. bottom: 5.6 / 1253.04
  21646. }
  21647. },
  21648. },
  21649. [
  21650. {
  21651. name: "Tiny",
  21652. height: math.unit(2, "inches")
  21653. },
  21654. {
  21655. name: "Normal",
  21656. height: math.unit(5 + 9 / 12, "feet"),
  21657. default: true
  21658. },
  21659. {
  21660. name: "Mini Macro",
  21661. height: math.unit(18, "feet")
  21662. },
  21663. {
  21664. name: "Macro",
  21665. height: math.unit(100, "feet")
  21666. },
  21667. {
  21668. name: "MACRO",
  21669. height: math.unit(50, "miles")
  21670. },
  21671. {
  21672. name: "M A C R O",
  21673. height: math.unit(300, "miles")
  21674. },
  21675. ]
  21676. ))
  21677. characterMakers.push(() => makeCharacter(
  21678. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21679. {
  21680. side: {
  21681. height: math.unit(15.6, "meters"),
  21682. weight: math.unit(700000, "kg"),
  21683. name: "Side",
  21684. image: {
  21685. source: "./media/characters/bunsen/side.svg",
  21686. extra: 1644 / 358
  21687. }
  21688. },
  21689. foot: {
  21690. height: math.unit(1.611 * 1644 / 358, "meter"),
  21691. name: "Foot",
  21692. image: {
  21693. source: "./media/characters/bunsen/foot.svg"
  21694. }
  21695. },
  21696. },
  21697. [
  21698. {
  21699. name: "Small",
  21700. height: math.unit(10, "feet")
  21701. },
  21702. {
  21703. name: "Normal",
  21704. height: math.unit(15.6, "meters"),
  21705. default: true
  21706. },
  21707. ]
  21708. ))
  21709. characterMakers.push(() => makeCharacter(
  21710. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21711. {
  21712. front: {
  21713. height: math.unit(4 + 11 / 12, "feet"),
  21714. weight: math.unit(140, "lb"),
  21715. name: "Front",
  21716. image: {
  21717. source: "./media/characters/sesh/front.svg",
  21718. extra: 3420 / 3231,
  21719. bottom: 72 / 3949.5
  21720. }
  21721. },
  21722. },
  21723. [
  21724. {
  21725. name: "Normal",
  21726. height: math.unit(4 + 11 / 12, "feet")
  21727. },
  21728. {
  21729. name: "Grown",
  21730. height: math.unit(15, "feet"),
  21731. default: true
  21732. },
  21733. {
  21734. name: "Macro",
  21735. height: math.unit(1500, "feet")
  21736. },
  21737. {
  21738. name: "Megamacro",
  21739. height: math.unit(30, "miles")
  21740. },
  21741. {
  21742. name: "Continental",
  21743. height: math.unit(3000, "miles")
  21744. },
  21745. {
  21746. name: "Gravity Mass",
  21747. height: math.unit(300000, "miles")
  21748. },
  21749. {
  21750. name: "Planet Buster",
  21751. height: math.unit(30000000, "miles")
  21752. },
  21753. {
  21754. name: "Big",
  21755. height: math.unit(3000000000, "miles")
  21756. },
  21757. ]
  21758. ))
  21759. characterMakers.push(() => makeCharacter(
  21760. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21761. {
  21762. front: {
  21763. height: math.unit(9, "feet"),
  21764. weight: math.unit(350, "lb"),
  21765. name: "Front",
  21766. image: {
  21767. source: "./media/characters/pepper/front.svg",
  21768. extra: 1448 / 1312,
  21769. bottom: 9.4 / 1457.88
  21770. }
  21771. },
  21772. back: {
  21773. height: math.unit(9, "feet"),
  21774. weight: math.unit(350, "lb"),
  21775. name: "Back",
  21776. image: {
  21777. source: "./media/characters/pepper/back.svg",
  21778. extra: 1423 / 1300,
  21779. bottom: 4.6 / 1429
  21780. }
  21781. },
  21782. maw: {
  21783. height: math.unit(0.932, "feet"),
  21784. name: "Maw",
  21785. image: {
  21786. source: "./media/characters/pepper/maw.svg"
  21787. }
  21788. },
  21789. },
  21790. [
  21791. {
  21792. name: "Normal",
  21793. height: math.unit(9, "feet"),
  21794. default: true
  21795. },
  21796. ]
  21797. ))
  21798. characterMakers.push(() => makeCharacter(
  21799. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21800. {
  21801. front: {
  21802. height: math.unit(6, "feet"),
  21803. weight: math.unit(150, "lb"),
  21804. name: "Front",
  21805. image: {
  21806. source: "./media/characters/maelstrom/front.svg",
  21807. extra: 2100 / 1883,
  21808. bottom: 94 / 2196.7
  21809. }
  21810. },
  21811. },
  21812. [
  21813. {
  21814. name: "Less Kaiju",
  21815. height: math.unit(200, "feet")
  21816. },
  21817. {
  21818. name: "Kaiju",
  21819. height: math.unit(400, "feet"),
  21820. default: true
  21821. },
  21822. {
  21823. name: "Kaiju-er",
  21824. height: math.unit(600, "feet")
  21825. },
  21826. ]
  21827. ))
  21828. characterMakers.push(() => makeCharacter(
  21829. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21830. {
  21831. front: {
  21832. height: math.unit(6 + 5 / 12, "feet"),
  21833. weight: math.unit(180, "lb"),
  21834. name: "Front",
  21835. image: {
  21836. source: "./media/characters/lexir/front.svg",
  21837. extra: 180 / 172,
  21838. bottom: 12 / 192
  21839. }
  21840. },
  21841. back: {
  21842. height: math.unit(6 + 5 / 12, "feet"),
  21843. weight: math.unit(180, "lb"),
  21844. name: "Back",
  21845. image: {
  21846. source: "./media/characters/lexir/back.svg",
  21847. extra: 183.84 / 175.5,
  21848. bottom: 3.1 / 187
  21849. }
  21850. },
  21851. },
  21852. [
  21853. {
  21854. name: "Very Smal",
  21855. height: math.unit(1, "nm")
  21856. },
  21857. {
  21858. name: "Normal",
  21859. height: math.unit(6 + 5 / 12, "feet"),
  21860. default: true
  21861. },
  21862. {
  21863. name: "Macro",
  21864. height: math.unit(1, "mile")
  21865. },
  21866. {
  21867. name: "Megamacro",
  21868. height: math.unit(50, "miles")
  21869. },
  21870. ]
  21871. ))
  21872. characterMakers.push(() => makeCharacter(
  21873. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  21874. {
  21875. front: {
  21876. height: math.unit(1.5, "meters"),
  21877. weight: math.unit(100, "lb"),
  21878. name: "Front",
  21879. image: {
  21880. source: "./media/characters/maksio/front.svg",
  21881. extra: 1549 / 1531,
  21882. bottom: 123.7 / 1674.5429
  21883. }
  21884. },
  21885. back: {
  21886. height: math.unit(1.5, "meters"),
  21887. weight: math.unit(100, "lb"),
  21888. name: "Back",
  21889. image: {
  21890. source: "./media/characters/maksio/back.svg",
  21891. extra: 1541 / 1509,
  21892. bottom: 97 / 1639
  21893. }
  21894. },
  21895. hand: {
  21896. height: math.unit(0.621, "feet"),
  21897. name: "Hand",
  21898. image: {
  21899. source: "./media/characters/maksio/hand.svg"
  21900. }
  21901. },
  21902. foot: {
  21903. height: math.unit(1.611, "feet"),
  21904. name: "Foot",
  21905. image: {
  21906. source: "./media/characters/maksio/foot.svg"
  21907. }
  21908. },
  21909. },
  21910. [
  21911. {
  21912. name: "Shrunken",
  21913. height: math.unit(10, "cm")
  21914. },
  21915. {
  21916. name: "Normal",
  21917. height: math.unit(150, "cm"),
  21918. default: true
  21919. },
  21920. ]
  21921. ))
  21922. characterMakers.push(() => makeCharacter(
  21923. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  21924. {
  21925. front: {
  21926. height: math.unit(100, "feet"),
  21927. name: "Front",
  21928. image: {
  21929. source: "./media/characters/erza-bear/front.svg",
  21930. extra: 2449 / 2390,
  21931. bottom: 46 / 2494
  21932. }
  21933. },
  21934. back: {
  21935. height: math.unit(100, "feet"),
  21936. name: "Back",
  21937. image: {
  21938. source: "./media/characters/erza-bear/back.svg",
  21939. extra: 2489 / 2430,
  21940. bottom: 85.4 / 2480
  21941. }
  21942. },
  21943. tail: {
  21944. height: math.unit(42, "feet"),
  21945. name: "Tail",
  21946. image: {
  21947. source: "./media/characters/erza-bear/tail.svg"
  21948. }
  21949. },
  21950. tongue: {
  21951. height: math.unit(8, "feet"),
  21952. name: "Tongue",
  21953. image: {
  21954. source: "./media/characters/erza-bear/tongue.svg"
  21955. }
  21956. },
  21957. dick: {
  21958. height: math.unit(10.5, "feet"),
  21959. name: "Dick",
  21960. image: {
  21961. source: "./media/characters/erza-bear/dick.svg"
  21962. }
  21963. },
  21964. dickVertical: {
  21965. height: math.unit(16.9, "feet"),
  21966. name: "Dick (Vertical)",
  21967. image: {
  21968. source: "./media/characters/erza-bear/dick-vertical.svg"
  21969. }
  21970. },
  21971. },
  21972. [
  21973. {
  21974. name: "Macro",
  21975. height: math.unit(100, "feet"),
  21976. default: true
  21977. },
  21978. ]
  21979. ))
  21980. characterMakers.push(() => makeCharacter(
  21981. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  21982. {
  21983. front: {
  21984. height: math.unit(172, "cm"),
  21985. weight: math.unit(73, "kg"),
  21986. name: "Front",
  21987. image: {
  21988. source: "./media/characters/violet-flor/front.svg",
  21989. extra: 1530 / 1442,
  21990. bottom: 61.9 / 1588.8
  21991. }
  21992. },
  21993. back: {
  21994. height: math.unit(180, "cm"),
  21995. weight: math.unit(73, "kg"),
  21996. name: "Back",
  21997. image: {
  21998. source: "./media/characters/violet-flor/back.svg",
  21999. extra: 1692 / 1630,
  22000. bottom: 20 / 1712
  22001. }
  22002. },
  22003. },
  22004. [
  22005. {
  22006. name: "Normal",
  22007. height: math.unit(172, "cm"),
  22008. default: true
  22009. },
  22010. ]
  22011. ))
  22012. characterMakers.push(() => makeCharacter(
  22013. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22014. {
  22015. front: {
  22016. height: math.unit(6, "feet"),
  22017. weight: math.unit(220, "lb"),
  22018. name: "Front",
  22019. image: {
  22020. source: "./media/characters/lynn-rhea/front.svg",
  22021. extra: 310 / 273
  22022. }
  22023. },
  22024. back: {
  22025. height: math.unit(6, "feet"),
  22026. weight: math.unit(220, "lb"),
  22027. name: "Back",
  22028. image: {
  22029. source: "./media/characters/lynn-rhea/back.svg",
  22030. extra: 310 / 273
  22031. }
  22032. },
  22033. dicks: {
  22034. height: math.unit(0.9, "feet"),
  22035. name: "Dicks",
  22036. image: {
  22037. source: "./media/characters/lynn-rhea/dicks.svg"
  22038. }
  22039. },
  22040. slit: {
  22041. height: math.unit(0.4, "feet"),
  22042. name: "Slit",
  22043. image: {
  22044. source: "./media/characters/lynn-rhea/slit.svg"
  22045. }
  22046. },
  22047. },
  22048. [
  22049. {
  22050. name: "Micro",
  22051. height: math.unit(1, "inch")
  22052. },
  22053. {
  22054. name: "Macro",
  22055. height: math.unit(60, "feet"),
  22056. default: true
  22057. },
  22058. {
  22059. name: "Megamacro",
  22060. height: math.unit(2, "miles")
  22061. },
  22062. {
  22063. name: "Gigamacro",
  22064. height: math.unit(3, "earths")
  22065. },
  22066. {
  22067. name: "Galactic",
  22068. height: math.unit(0.8, "galaxies")
  22069. },
  22070. ]
  22071. ))
  22072. characterMakers.push(() => makeCharacter(
  22073. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22074. {
  22075. front: {
  22076. height: math.unit(1600, "feet"),
  22077. weight: math.unit(85758785169, "kg"),
  22078. name: "Front",
  22079. image: {
  22080. source: "./media/characters/valathos/front.svg",
  22081. extra: 1451 / 1339
  22082. }
  22083. },
  22084. },
  22085. [
  22086. {
  22087. name: "Macro",
  22088. height: math.unit(1600, "feet"),
  22089. default: true
  22090. },
  22091. ]
  22092. ))
  22093. characterMakers.push(() => makeCharacter(
  22094. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22095. {
  22096. front: {
  22097. height: math.unit(7 + 5 / 12, "feet"),
  22098. weight: math.unit(300, "lb"),
  22099. name: "Front",
  22100. image: {
  22101. source: "./media/characters/azula/front.svg",
  22102. extra: 3208 / 2880,
  22103. bottom: 80.2 / 3277
  22104. }
  22105. },
  22106. back: {
  22107. height: math.unit(7 + 5 / 12, "feet"),
  22108. weight: math.unit(300, "lb"),
  22109. name: "Back",
  22110. image: {
  22111. source: "./media/characters/azula/back.svg",
  22112. extra: 3169 / 2822,
  22113. bottom: 150.6 / 3321
  22114. }
  22115. },
  22116. },
  22117. [
  22118. {
  22119. name: "Normal",
  22120. height: math.unit(7 + 5 / 12, "feet"),
  22121. default: true
  22122. },
  22123. {
  22124. name: "Big",
  22125. height: math.unit(20, "feet")
  22126. },
  22127. ]
  22128. ))
  22129. characterMakers.push(() => makeCharacter(
  22130. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22131. {
  22132. front: {
  22133. height: math.unit(5 + 1 / 12, "feet"),
  22134. weight: math.unit(110, "lb"),
  22135. name: "Front",
  22136. image: {
  22137. source: "./media/characters/rupert/front.svg",
  22138. extra: 1549 / 1495,
  22139. bottom: 54.2 / 1604.4
  22140. }
  22141. },
  22142. },
  22143. [
  22144. {
  22145. name: "Normal",
  22146. height: math.unit(5 + 1 / 12, "feet"),
  22147. default: true
  22148. },
  22149. ]
  22150. ))
  22151. characterMakers.push(() => makeCharacter(
  22152. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22153. {
  22154. front: {
  22155. height: math.unit(8 + 4 / 12, "feet"),
  22156. weight: math.unit(350, "lb"),
  22157. name: "Front",
  22158. image: {
  22159. source: "./media/characters/sheera-castellar/front.svg",
  22160. extra: 1957 / 1894,
  22161. bottom: 26.97 / 1975.017
  22162. }
  22163. },
  22164. side: {
  22165. height: math.unit(8 + 4 / 12, "feet"),
  22166. weight: math.unit(350, "lb"),
  22167. name: "Side",
  22168. image: {
  22169. source: "./media/characters/sheera-castellar/side.svg",
  22170. extra: 1957 / 1894
  22171. }
  22172. },
  22173. back: {
  22174. height: math.unit(8 + 4 / 12, "feet"),
  22175. weight: math.unit(350, "lb"),
  22176. name: "Back",
  22177. image: {
  22178. source: "./media/characters/sheera-castellar/back.svg",
  22179. extra: 1957 / 1894
  22180. }
  22181. },
  22182. angled: {
  22183. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22184. weight: math.unit(350, "lb"),
  22185. name: "Angled",
  22186. image: {
  22187. source: "./media/characters/sheera-castellar/angled.svg",
  22188. extra: 1807 / 1707,
  22189. bottom: 68 / 1875
  22190. }
  22191. },
  22192. genitals: {
  22193. height: math.unit(2.2, "feet"),
  22194. name: "Genitals",
  22195. image: {
  22196. source: "./media/characters/sheera-castellar/genitals.svg"
  22197. }
  22198. },
  22199. },
  22200. [
  22201. {
  22202. name: "Normal",
  22203. height: math.unit(8 + 4 / 12, "feet")
  22204. },
  22205. {
  22206. name: "Macro",
  22207. height: math.unit(150, "feet"),
  22208. default: true
  22209. },
  22210. {
  22211. name: "Macro+",
  22212. height: math.unit(800, "feet")
  22213. },
  22214. ]
  22215. ))
  22216. characterMakers.push(() => makeCharacter(
  22217. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22218. {
  22219. front: {
  22220. height: math.unit(6, "feet"),
  22221. weight: math.unit(150, "lb"),
  22222. name: "Front",
  22223. image: {
  22224. source: "./media/characters/jaipur/front.svg",
  22225. extra: 3860 / 3731,
  22226. bottom: 287 / 4140
  22227. }
  22228. },
  22229. back: {
  22230. height: math.unit(6, "feet"),
  22231. weight: math.unit(150, "lb"),
  22232. name: "Back",
  22233. image: {
  22234. source: "./media/characters/jaipur/back.svg",
  22235. extra: 4060 / 3930,
  22236. bottom: 151 / 4200
  22237. }
  22238. },
  22239. },
  22240. [
  22241. {
  22242. name: "Normal",
  22243. height: math.unit(1.85, "meters"),
  22244. default: true
  22245. },
  22246. {
  22247. name: "Macro",
  22248. height: math.unit(150, "meters")
  22249. },
  22250. {
  22251. name: "Macro+",
  22252. height: math.unit(0.5, "miles")
  22253. },
  22254. {
  22255. name: "Macro++",
  22256. height: math.unit(2.5, "miles")
  22257. },
  22258. {
  22259. name: "Macro+++",
  22260. height: math.unit(12, "miles")
  22261. },
  22262. {
  22263. name: "Macro++++",
  22264. height: math.unit(120, "miles")
  22265. },
  22266. {
  22267. name: "Macro+++++",
  22268. height: math.unit(1200, "miles")
  22269. },
  22270. ]
  22271. ))
  22272. characterMakers.push(() => makeCharacter(
  22273. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22274. {
  22275. front: {
  22276. height: math.unit(6, "feet"),
  22277. weight: math.unit(150, "lb"),
  22278. name: "Front",
  22279. image: {
  22280. source: "./media/characters/sheila-wolf/front.svg",
  22281. extra: 1931 / 1808,
  22282. bottom: 29.5 / 1960
  22283. }
  22284. },
  22285. dick: {
  22286. height: math.unit(1.464, "feet"),
  22287. name: "Dick",
  22288. image: {
  22289. source: "./media/characters/sheila-wolf/dick.svg"
  22290. }
  22291. },
  22292. muzzle: {
  22293. height: math.unit(0.513, "feet"),
  22294. name: "Muzzle",
  22295. image: {
  22296. source: "./media/characters/sheila-wolf/muzzle.svg"
  22297. }
  22298. },
  22299. },
  22300. [
  22301. {
  22302. name: "Macro",
  22303. height: math.unit(70, "feet"),
  22304. default: true
  22305. },
  22306. ]
  22307. ))
  22308. characterMakers.push(() => makeCharacter(
  22309. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22310. {
  22311. front: {
  22312. height: math.unit(32, "meters"),
  22313. weight: math.unit(300000, "kg"),
  22314. name: "Front",
  22315. image: {
  22316. source: "./media/characters/almor/front.svg",
  22317. extra: 1408 / 1322,
  22318. bottom: 94.6 / 1506.5
  22319. }
  22320. },
  22321. },
  22322. [
  22323. {
  22324. name: "Macro",
  22325. height: math.unit(32, "meters"),
  22326. default: true
  22327. },
  22328. ]
  22329. ))
  22330. characterMakers.push(() => makeCharacter(
  22331. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22332. {
  22333. front: {
  22334. height: math.unit(7, "feet"),
  22335. weight: math.unit(200, "lb"),
  22336. name: "Front",
  22337. image: {
  22338. source: "./media/characters/silver/front.svg",
  22339. extra: 472.1 / 450.5,
  22340. bottom: 26.5 / 499.424
  22341. }
  22342. },
  22343. },
  22344. [
  22345. {
  22346. name: "Normal",
  22347. height: math.unit(7, "feet"),
  22348. default: true
  22349. },
  22350. {
  22351. name: "Macro",
  22352. height: math.unit(800, "feet")
  22353. },
  22354. {
  22355. name: "Megamacro",
  22356. height: math.unit(250, "miles")
  22357. },
  22358. ]
  22359. ))
  22360. characterMakers.push(() => makeCharacter(
  22361. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22362. {
  22363. front: {
  22364. height: math.unit(6, "feet"),
  22365. weight: math.unit(150, "lb"),
  22366. name: "Front",
  22367. image: {
  22368. source: "./media/characters/pliskin/front.svg",
  22369. extra: 1469 / 1359,
  22370. bottom: 70 / 1540
  22371. }
  22372. },
  22373. },
  22374. [
  22375. {
  22376. name: "Micro",
  22377. height: math.unit(3, "inches")
  22378. },
  22379. {
  22380. name: "Normal",
  22381. height: math.unit(5 + 11 / 12, "feet"),
  22382. default: true
  22383. },
  22384. {
  22385. name: "Macro",
  22386. height: math.unit(120, "feet")
  22387. },
  22388. ]
  22389. ))
  22390. characterMakers.push(() => makeCharacter(
  22391. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22392. {
  22393. front: {
  22394. height: math.unit(6, "feet"),
  22395. weight: math.unit(150, "lb"),
  22396. name: "Front",
  22397. image: {
  22398. source: "./media/characters/sammy/front.svg",
  22399. extra: 1193 / 1089,
  22400. bottom: 30.5 / 1226
  22401. }
  22402. },
  22403. },
  22404. [
  22405. {
  22406. name: "Macro",
  22407. height: math.unit(1700, "feet"),
  22408. default: true
  22409. },
  22410. {
  22411. name: "Examacro",
  22412. height: math.unit(2.5e9, "lightyears")
  22413. },
  22414. ]
  22415. ))
  22416. characterMakers.push(() => makeCharacter(
  22417. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22418. {
  22419. front: {
  22420. height: math.unit(21, "meters"),
  22421. weight: math.unit(12, "tonnes"),
  22422. name: "Front",
  22423. image: {
  22424. source: "./media/characters/kuru/front.svg",
  22425. extra: 4301 / 3785,
  22426. bottom: 371.3 / 4691
  22427. }
  22428. },
  22429. },
  22430. [
  22431. {
  22432. name: "Macro",
  22433. height: math.unit(21, "meters"),
  22434. default: true
  22435. },
  22436. ]
  22437. ))
  22438. characterMakers.push(() => makeCharacter(
  22439. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22440. {
  22441. front: {
  22442. height: math.unit(23, "meters"),
  22443. weight: math.unit(12.2, "tonnes"),
  22444. name: "Front",
  22445. image: {
  22446. source: "./media/characters/rakka/front.svg",
  22447. extra: 4670 / 4169,
  22448. bottom: 301 / 4968.7
  22449. }
  22450. },
  22451. },
  22452. [
  22453. {
  22454. name: "Macro",
  22455. height: math.unit(23, "meters"),
  22456. default: true
  22457. },
  22458. ]
  22459. ))
  22460. characterMakers.push(() => makeCharacter(
  22461. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22462. {
  22463. front: {
  22464. height: math.unit(6, "feet"),
  22465. weight: math.unit(150, "lb"),
  22466. name: "Front",
  22467. image: {
  22468. source: "./media/characters/rhys-feline/front.svg",
  22469. extra: 2488 / 2308,
  22470. bottom: 35.67 / 2519.19
  22471. }
  22472. },
  22473. },
  22474. [
  22475. {
  22476. name: "Really Small",
  22477. height: math.unit(1, "nm")
  22478. },
  22479. {
  22480. name: "Micro",
  22481. height: math.unit(4, "inches")
  22482. },
  22483. {
  22484. name: "Normal",
  22485. height: math.unit(4 + 10 / 12, "feet"),
  22486. default: true
  22487. },
  22488. {
  22489. name: "Macro",
  22490. height: math.unit(100, "feet")
  22491. },
  22492. {
  22493. name: "Megamacto",
  22494. height: math.unit(50, "miles")
  22495. },
  22496. ]
  22497. ))
  22498. characterMakers.push(() => makeCharacter(
  22499. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22500. {
  22501. side: {
  22502. height: math.unit(30, "feet"),
  22503. weight: math.unit(35000, "kg"),
  22504. name: "Side",
  22505. image: {
  22506. source: "./media/characters/alydar/side.svg",
  22507. extra: 234 / 222,
  22508. bottom: 6.5 / 241
  22509. }
  22510. },
  22511. front: {
  22512. height: math.unit(30, "feet"),
  22513. weight: math.unit(35000, "kg"),
  22514. name: "Front",
  22515. image: {
  22516. source: "./media/characters/alydar/front.svg",
  22517. extra: 223.37 / 210.2,
  22518. bottom: 22.3 / 246.76
  22519. }
  22520. },
  22521. top: {
  22522. height: math.unit(64.54, "feet"),
  22523. weight: math.unit(35000, "kg"),
  22524. name: "Top",
  22525. image: {
  22526. source: "./media/characters/alydar/top.svg"
  22527. }
  22528. },
  22529. anthro: {
  22530. height: math.unit(30, "feet"),
  22531. weight: math.unit(9000, "kg"),
  22532. name: "Anthro",
  22533. image: {
  22534. source: "./media/characters/alydar/anthro.svg",
  22535. extra: 432 / 421,
  22536. bottom: 7.18 / 440
  22537. }
  22538. },
  22539. maw: {
  22540. height: math.unit(11.693, "feet"),
  22541. name: "Maw",
  22542. image: {
  22543. source: "./media/characters/alydar/maw.svg"
  22544. }
  22545. },
  22546. head: {
  22547. height: math.unit(11.693, "feet"),
  22548. name: "Head",
  22549. image: {
  22550. source: "./media/characters/alydar/head.svg"
  22551. }
  22552. },
  22553. headAlt: {
  22554. height: math.unit(12.861, "feet"),
  22555. name: "Head (Alt)",
  22556. image: {
  22557. source: "./media/characters/alydar/head-alt.svg"
  22558. }
  22559. },
  22560. wing: {
  22561. height: math.unit(20.712, "feet"),
  22562. name: "Wing",
  22563. image: {
  22564. source: "./media/characters/alydar/wing.svg"
  22565. }
  22566. },
  22567. wingFeather: {
  22568. height: math.unit(9.662, "feet"),
  22569. name: "Wing Feather",
  22570. image: {
  22571. source: "./media/characters/alydar/wing-feather.svg"
  22572. }
  22573. },
  22574. countourFeather: {
  22575. height: math.unit(4.154, "feet"),
  22576. name: "Contour Feather",
  22577. image: {
  22578. source: "./media/characters/alydar/contour-feather.svg"
  22579. }
  22580. },
  22581. },
  22582. [
  22583. {
  22584. name: "Diplomatic",
  22585. height: math.unit(13, "feet"),
  22586. default: true
  22587. },
  22588. {
  22589. name: "Small",
  22590. height: math.unit(30, "feet")
  22591. },
  22592. {
  22593. name: "Normal",
  22594. height: math.unit(95, "feet"),
  22595. default: true
  22596. },
  22597. {
  22598. name: "Large",
  22599. height: math.unit(285, "feet")
  22600. },
  22601. {
  22602. name: "Incomprehensible",
  22603. height: math.unit(450, "megameters")
  22604. },
  22605. ]
  22606. ))
  22607. characterMakers.push(() => makeCharacter(
  22608. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22609. {
  22610. side: {
  22611. height: math.unit(11, "feet"),
  22612. weight: math.unit(1750, "kg"),
  22613. name: "Side",
  22614. image: {
  22615. source: "./media/characters/selicia/side.svg",
  22616. extra: 440 / 396,
  22617. bottom: 24.8 / 465.979
  22618. }
  22619. },
  22620. maw: {
  22621. height: math.unit(4.665, "feet"),
  22622. name: "Maw",
  22623. image: {
  22624. source: "./media/characters/selicia/maw.svg"
  22625. }
  22626. },
  22627. },
  22628. [
  22629. {
  22630. name: "Normal",
  22631. height: math.unit(11, "feet"),
  22632. default: true
  22633. },
  22634. ]
  22635. ))
  22636. characterMakers.push(() => makeCharacter(
  22637. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22638. {
  22639. side: {
  22640. height: math.unit(2 + 6 / 12, "feet"),
  22641. weight: math.unit(30, "lb"),
  22642. name: "Side",
  22643. image: {
  22644. source: "./media/characters/layla/side.svg",
  22645. extra: 244 / 188,
  22646. bottom: 18.2 / 262.1
  22647. }
  22648. },
  22649. back: {
  22650. height: math.unit(2 + 6 / 12, "feet"),
  22651. weight: math.unit(30, "lb"),
  22652. name: "Back",
  22653. image: {
  22654. source: "./media/characters/layla/back.svg",
  22655. extra: 308 / 241.5,
  22656. bottom: 8.9 / 316.8
  22657. }
  22658. },
  22659. cumming: {
  22660. height: math.unit(2 + 6 / 12, "feet"),
  22661. weight: math.unit(30, "lb"),
  22662. name: "Cumming",
  22663. image: {
  22664. source: "./media/characters/layla/cumming.svg",
  22665. extra: 342 / 279,
  22666. bottom: 595 / 938
  22667. }
  22668. },
  22669. dickFlaccid: {
  22670. height: math.unit(2.595, "feet"),
  22671. name: "Flaccid Genitals",
  22672. image: {
  22673. source: "./media/characters/layla/dick-flaccid.svg"
  22674. }
  22675. },
  22676. dickErect: {
  22677. height: math.unit(2.359, "feet"),
  22678. name: "Erect Genitals",
  22679. image: {
  22680. source: "./media/characters/layla/dick-erect.svg"
  22681. }
  22682. },
  22683. },
  22684. [
  22685. {
  22686. name: "Micro",
  22687. height: math.unit(1, "inch")
  22688. },
  22689. {
  22690. name: "Small",
  22691. height: math.unit(1, "foot")
  22692. },
  22693. {
  22694. name: "Normal",
  22695. height: math.unit(2 + 6 / 12, "feet"),
  22696. default: true
  22697. },
  22698. {
  22699. name: "Macro",
  22700. height: math.unit(200, "feet")
  22701. },
  22702. {
  22703. name: "Megamacro",
  22704. height: math.unit(1000, "miles")
  22705. },
  22706. {
  22707. name: "Planetary",
  22708. height: math.unit(8000, "miles")
  22709. },
  22710. {
  22711. name: "True Layla",
  22712. height: math.unit(200000 * 7, "multiverses")
  22713. },
  22714. ]
  22715. ))
  22716. characterMakers.push(() => makeCharacter(
  22717. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22718. {
  22719. back: {
  22720. height: math.unit(10.5, "feet"),
  22721. weight: math.unit(800, "lb"),
  22722. name: "Back",
  22723. image: {
  22724. source: "./media/characters/knox/back.svg",
  22725. extra: 1486 / 1089,
  22726. bottom: 107 / 1601.4
  22727. }
  22728. },
  22729. side: {
  22730. height: math.unit(10.5, "feet"),
  22731. weight: math.unit(800, "lb"),
  22732. name: "Side",
  22733. image: {
  22734. source: "./media/characters/knox/side.svg",
  22735. extra: 244 / 218,
  22736. bottom: 14 / 260
  22737. }
  22738. },
  22739. },
  22740. [
  22741. {
  22742. name: "Compact",
  22743. height: math.unit(10.5, "feet"),
  22744. default: true
  22745. },
  22746. {
  22747. name: "Dynamax",
  22748. height: math.unit(210, "feet")
  22749. },
  22750. {
  22751. name: "Full Macro",
  22752. height: math.unit(850, "feet")
  22753. },
  22754. ]
  22755. ))
  22756. characterMakers.push(() => makeCharacter(
  22757. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22758. {
  22759. front: {
  22760. height: math.unit(6, "feet"),
  22761. weight: math.unit(152, "lb"),
  22762. name: "Front",
  22763. image: {
  22764. source: "./media/characters/shin-pikachu/front.svg",
  22765. extra: 1574 / 1480,
  22766. bottom: 53.3 / 1626
  22767. }
  22768. },
  22769. hand: {
  22770. height: math.unit(1.055, "feet"),
  22771. name: "Hand",
  22772. image: {
  22773. source: "./media/characters/shin-pikachu/hand.svg"
  22774. }
  22775. },
  22776. foot: {
  22777. height: math.unit(1.1, "feet"),
  22778. name: "Foot",
  22779. image: {
  22780. source: "./media/characters/shin-pikachu/foot.svg"
  22781. }
  22782. },
  22783. collar: {
  22784. height: math.unit(0.386, "feet"),
  22785. name: "Collar",
  22786. image: {
  22787. source: "./media/characters/shin-pikachu/collar.svg"
  22788. }
  22789. },
  22790. },
  22791. [
  22792. {
  22793. name: "Smallest",
  22794. height: math.unit(0.5, "inches")
  22795. },
  22796. {
  22797. name: "Micro",
  22798. height: math.unit(6, "inches")
  22799. },
  22800. {
  22801. name: "Normal",
  22802. height: math.unit(6, "feet"),
  22803. default: true
  22804. },
  22805. {
  22806. name: "Macro",
  22807. height: math.unit(150, "feet")
  22808. },
  22809. ]
  22810. ))
  22811. characterMakers.push(() => makeCharacter(
  22812. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22813. {
  22814. front: {
  22815. height: math.unit(28, "feet"),
  22816. weight: math.unit(10500, "lb"),
  22817. name: "Front",
  22818. image: {
  22819. source: "./media/characters/kayda/front.svg",
  22820. extra: 1536 / 1428,
  22821. bottom: 68.7 / 1603
  22822. }
  22823. },
  22824. back: {
  22825. height: math.unit(28, "feet"),
  22826. weight: math.unit(10500, "lb"),
  22827. name: "Back",
  22828. image: {
  22829. source: "./media/characters/kayda/back.svg",
  22830. extra: 1557 / 1464,
  22831. bottom: 39.5 / 1597.49
  22832. }
  22833. },
  22834. dick: {
  22835. height: math.unit(3.858, "feet"),
  22836. name: "Dick",
  22837. image: {
  22838. source: "./media/characters/kayda/dick.svg"
  22839. }
  22840. },
  22841. },
  22842. [
  22843. {
  22844. name: "Macro",
  22845. height: math.unit(28, "feet"),
  22846. default: true
  22847. },
  22848. ]
  22849. ))
  22850. characterMakers.push(() => makeCharacter(
  22851. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22852. {
  22853. front: {
  22854. height: math.unit(10 + 11 / 12, "feet"),
  22855. weight: math.unit(1400, "lb"),
  22856. name: "Front",
  22857. image: {
  22858. source: "./media/characters/brian/front.svg",
  22859. extra: 737 / 692,
  22860. bottom: 55.4 / 785
  22861. }
  22862. },
  22863. },
  22864. [
  22865. {
  22866. name: "Normal",
  22867. height: math.unit(10 + 11 / 12, "feet"),
  22868. default: true
  22869. },
  22870. ]
  22871. ))
  22872. characterMakers.push(() => makeCharacter(
  22873. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  22874. {
  22875. front: {
  22876. height: math.unit(5 + 8 / 12, "feet"),
  22877. weight: math.unit(140, "lb"),
  22878. name: "Front",
  22879. image: {
  22880. source: "./media/characters/khemri/front.svg",
  22881. extra: 4780 / 4059,
  22882. bottom: 80.1 / 4859.25
  22883. }
  22884. },
  22885. },
  22886. [
  22887. {
  22888. name: "Micro",
  22889. height: math.unit(6, "inches")
  22890. },
  22891. {
  22892. name: "Normal",
  22893. height: math.unit(5 + 8 / 12, "feet"),
  22894. default: true
  22895. },
  22896. ]
  22897. ))
  22898. characterMakers.push(() => makeCharacter(
  22899. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  22900. {
  22901. front: {
  22902. height: math.unit(13, "feet"),
  22903. weight: math.unit(1700, "lb"),
  22904. name: "Front",
  22905. image: {
  22906. source: "./media/characters/felix-braveheart/front.svg",
  22907. extra: 1222 / 1157,
  22908. bottom: 53.2 / 1280
  22909. }
  22910. },
  22911. back: {
  22912. height: math.unit(13, "feet"),
  22913. weight: math.unit(1700, "lb"),
  22914. name: "Back",
  22915. image: {
  22916. source: "./media/characters/felix-braveheart/back.svg",
  22917. extra: 1277 / 1203,
  22918. bottom: 50.2 / 1327
  22919. }
  22920. },
  22921. feral: {
  22922. height: math.unit(6, "feet"),
  22923. weight: math.unit(400, "lb"),
  22924. name: "Feral",
  22925. image: {
  22926. source: "./media/characters/felix-braveheart/feral.svg",
  22927. extra: 682 / 625,
  22928. bottom: 6.9 / 688
  22929. }
  22930. },
  22931. },
  22932. [
  22933. {
  22934. name: "Normal",
  22935. height: math.unit(13, "feet"),
  22936. default: true
  22937. },
  22938. ]
  22939. ))
  22940. characterMakers.push(() => makeCharacter(
  22941. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  22942. {
  22943. side: {
  22944. height: math.unit(5 + 11 / 12, "feet"),
  22945. weight: math.unit(1400, "lb"),
  22946. name: "Side",
  22947. image: {
  22948. source: "./media/characters/shadow-blade/side.svg",
  22949. extra: 1726 / 1267,
  22950. bottom: 58.4 / 1785
  22951. }
  22952. },
  22953. },
  22954. [
  22955. {
  22956. name: "Normal",
  22957. height: math.unit(5 + 11 / 12, "feet"),
  22958. default: true
  22959. },
  22960. ]
  22961. ))
  22962. characterMakers.push(() => makeCharacter(
  22963. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  22964. {
  22965. front: {
  22966. height: math.unit(1 + 6 / 12, "feet"),
  22967. weight: math.unit(25, "lb"),
  22968. name: "Front",
  22969. image: {
  22970. source: "./media/characters/karla-halldor/front.svg",
  22971. extra: 1459 / 1383,
  22972. bottom: 12 / 1472
  22973. }
  22974. },
  22975. },
  22976. [
  22977. {
  22978. name: "Normal",
  22979. height: math.unit(1 + 6 / 12, "feet"),
  22980. default: true
  22981. },
  22982. ]
  22983. ))
  22984. characterMakers.push(() => makeCharacter(
  22985. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  22986. {
  22987. front: {
  22988. height: math.unit(6 + 2 / 12, "feet"),
  22989. weight: math.unit(160, "lb"),
  22990. name: "Front",
  22991. image: {
  22992. source: "./media/characters/ariam/front.svg",
  22993. extra: 714 / 617,
  22994. bottom: 23.4 / 737,
  22995. }
  22996. },
  22997. squatting: {
  22998. height: math.unit(4.1, "feet"),
  22999. weight: math.unit(160, "lb"),
  23000. name: "Squatting",
  23001. image: {
  23002. source: "./media/characters/ariam/squatting.svg",
  23003. extra: 2617 / 2112,
  23004. bottom: 61.2 / 2681,
  23005. }
  23006. },
  23007. },
  23008. [
  23009. {
  23010. name: "Normal",
  23011. height: math.unit(6 + 2 / 12, "feet"),
  23012. default: true
  23013. },
  23014. {
  23015. name: "Normal+",
  23016. height: math.unit(4, "meters")
  23017. },
  23018. {
  23019. name: "Macro",
  23020. height: math.unit(50, "meters")
  23021. },
  23022. {
  23023. name: "Macro+",
  23024. height: math.unit(100, "meters")
  23025. },
  23026. {
  23027. name: "Megamacro",
  23028. height: math.unit(20, "km")
  23029. },
  23030. ]
  23031. ))
  23032. characterMakers.push(() => makeCharacter(
  23033. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23034. {
  23035. front: {
  23036. height: math.unit(1.67, "meters"),
  23037. weight: math.unit(140, "lb"),
  23038. name: "Front",
  23039. image: {
  23040. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23041. extra: 438 / 410,
  23042. bottom: 0.75 / 439
  23043. }
  23044. },
  23045. },
  23046. [
  23047. {
  23048. name: "Shrunken",
  23049. height: math.unit(7.6, "cm")
  23050. },
  23051. {
  23052. name: "Human Scale",
  23053. height: math.unit(1.67, "meters")
  23054. },
  23055. {
  23056. name: "Wolxi Scale",
  23057. height: math.unit(36.7, "meters"),
  23058. default: true
  23059. },
  23060. ]
  23061. ))
  23062. characterMakers.push(() => makeCharacter(
  23063. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23064. {
  23065. front: {
  23066. height: math.unit(1.73, "meters"),
  23067. weight: math.unit(240, "lb"),
  23068. name: "Front",
  23069. image: {
  23070. source: "./media/characters/izue-two-mothers/front.svg",
  23071. extra: 469 / 437,
  23072. bottom: 1.24 / 470.6
  23073. }
  23074. },
  23075. },
  23076. [
  23077. {
  23078. name: "Shrunken",
  23079. height: math.unit(7.86, "cm")
  23080. },
  23081. {
  23082. name: "Human Scale",
  23083. height: math.unit(1.73, "meters")
  23084. },
  23085. {
  23086. name: "Wolxi Scale",
  23087. height: math.unit(38, "meters"),
  23088. default: true
  23089. },
  23090. ]
  23091. ))
  23092. characterMakers.push(() => makeCharacter(
  23093. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23094. {
  23095. front: {
  23096. height: math.unit(1.55, "meters"),
  23097. weight: math.unit(120, "lb"),
  23098. name: "Front",
  23099. image: {
  23100. source: "./media/characters/teeku-love-shack/front.svg",
  23101. extra: 387 / 362,
  23102. bottom: 1.51 / 388
  23103. }
  23104. },
  23105. },
  23106. [
  23107. {
  23108. name: "Shrunken",
  23109. height: math.unit(7, "cm")
  23110. },
  23111. {
  23112. name: "Human Scale",
  23113. height: math.unit(1.55, "meters")
  23114. },
  23115. {
  23116. name: "Wolxi Scale",
  23117. height: math.unit(34.1, "meters"),
  23118. default: true
  23119. },
  23120. ]
  23121. ))
  23122. characterMakers.push(() => makeCharacter(
  23123. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23124. {
  23125. front: {
  23126. height: math.unit(1.83, "meters"),
  23127. weight: math.unit(135, "lb"),
  23128. name: "Front",
  23129. image: {
  23130. source: "./media/characters/dejma-the-red/front.svg",
  23131. extra: 480 / 458,
  23132. bottom: 1.8 / 482
  23133. }
  23134. },
  23135. },
  23136. [
  23137. {
  23138. name: "Shrunken",
  23139. height: math.unit(8.3, "cm")
  23140. },
  23141. {
  23142. name: "Human Scale",
  23143. height: math.unit(1.83, "meters")
  23144. },
  23145. {
  23146. name: "Wolxi Scale",
  23147. height: math.unit(40, "meters"),
  23148. default: true
  23149. },
  23150. ]
  23151. ))
  23152. characterMakers.push(() => makeCharacter(
  23153. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23154. {
  23155. front: {
  23156. height: math.unit(1.78, "meters"),
  23157. weight: math.unit(65, "kg"),
  23158. name: "Front",
  23159. image: {
  23160. source: "./media/characters/aki/front.svg",
  23161. extra: 452 / 415
  23162. }
  23163. },
  23164. frontNsfw: {
  23165. height: math.unit(1.78, "meters"),
  23166. weight: math.unit(65, "kg"),
  23167. name: "Front (NSFW)",
  23168. image: {
  23169. source: "./media/characters/aki/front-nsfw.svg",
  23170. extra: 452 / 415
  23171. }
  23172. },
  23173. back: {
  23174. height: math.unit(1.78, "meters"),
  23175. weight: math.unit(65, "kg"),
  23176. name: "Back",
  23177. image: {
  23178. source: "./media/characters/aki/back.svg",
  23179. extra: 452 / 415
  23180. }
  23181. },
  23182. rump: {
  23183. height: math.unit(2.05, "feet"),
  23184. name: "Rump",
  23185. image: {
  23186. source: "./media/characters/aki/rump.svg"
  23187. }
  23188. },
  23189. dick: {
  23190. height: math.unit(0.95, "feet"),
  23191. name: "Dick",
  23192. image: {
  23193. source: "./media/characters/aki/dick.svg"
  23194. }
  23195. },
  23196. },
  23197. [
  23198. {
  23199. name: "Micro",
  23200. height: math.unit(15, "cm")
  23201. },
  23202. {
  23203. name: "Normal",
  23204. height: math.unit(178, "cm"),
  23205. default: true
  23206. },
  23207. {
  23208. name: "Macro",
  23209. height: math.unit(214, "m")
  23210. },
  23211. {
  23212. name: "Macro+",
  23213. height: math.unit(534, "m")
  23214. },
  23215. ]
  23216. ))
  23217. characterMakers.push(() => makeCharacter(
  23218. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23219. {
  23220. front: {
  23221. height: math.unit(5 + 5 / 12, "feet"),
  23222. weight: math.unit(120, "lb"),
  23223. name: "Front",
  23224. image: {
  23225. source: "./media/characters/ari/front.svg",
  23226. extra: 714.5 / 682,
  23227. bottom: 8 / 722.5
  23228. }
  23229. },
  23230. },
  23231. [
  23232. {
  23233. name: "Normal",
  23234. height: math.unit(5 + 5 / 12, "feet")
  23235. },
  23236. {
  23237. name: "Macro",
  23238. height: math.unit(100, "feet"),
  23239. default: true
  23240. },
  23241. {
  23242. name: "Megamacro",
  23243. height: math.unit(100, "miles")
  23244. },
  23245. {
  23246. name: "Gigamacro",
  23247. height: math.unit(80000, "miles")
  23248. },
  23249. ]
  23250. ))
  23251. characterMakers.push(() => makeCharacter(
  23252. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23253. {
  23254. side: {
  23255. height: math.unit(9, "feet"),
  23256. weight: math.unit(400, "kg"),
  23257. name: "Side",
  23258. image: {
  23259. source: "./media/characters/bolt/side.svg",
  23260. extra: 1126 / 896,
  23261. bottom: 60 / 1187.3,
  23262. }
  23263. },
  23264. },
  23265. [
  23266. {
  23267. name: "Micro",
  23268. height: math.unit(5, "inches")
  23269. },
  23270. {
  23271. name: "Normal",
  23272. height: math.unit(9, "feet"),
  23273. default: true
  23274. },
  23275. {
  23276. name: "Macro",
  23277. height: math.unit(700, "feet")
  23278. },
  23279. {
  23280. name: "Max Size",
  23281. height: math.unit(1.52e22, "yottameters")
  23282. },
  23283. ]
  23284. ))
  23285. characterMakers.push(() => makeCharacter(
  23286. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23287. {
  23288. front: {
  23289. height: math.unit(4.53, "meters"),
  23290. weight: math.unit(3, "tons"),
  23291. name: "Front",
  23292. image: {
  23293. source: "./media/characters/draekon-sylviar/front.svg",
  23294. extra: 1228 / 1068,
  23295. bottom: 41 / 1270
  23296. }
  23297. },
  23298. tail: {
  23299. height: math.unit(1.772, "meter"),
  23300. name: "Tail",
  23301. image: {
  23302. source: "./media/characters/draekon-sylviar/tail.svg"
  23303. }
  23304. },
  23305. head: {
  23306. height: math.unit(1.331, "meter"),
  23307. name: "Head",
  23308. image: {
  23309. source: "./media/characters/draekon-sylviar/head.svg"
  23310. }
  23311. },
  23312. hand: {
  23313. height: math.unit(0.564, "meter"),
  23314. name: "Hand",
  23315. image: {
  23316. source: "./media/characters/draekon-sylviar/hand.svg"
  23317. }
  23318. },
  23319. foot: {
  23320. height: math.unit(0.621, "meter"),
  23321. name: "Foot",
  23322. image: {
  23323. source: "./media/characters/draekon-sylviar/foot.svg",
  23324. bottom: 32 / 324
  23325. }
  23326. },
  23327. dick: {
  23328. height: math.unit(61, "cm"),
  23329. name: "Dick",
  23330. image: {
  23331. source: "./media/characters/draekon-sylviar/dick.svg"
  23332. }
  23333. },
  23334. dickseparated: {
  23335. height: math.unit(61, "cm"),
  23336. name: "Dick-separated",
  23337. image: {
  23338. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23339. }
  23340. },
  23341. },
  23342. [
  23343. {
  23344. name: "Small",
  23345. height: math.unit(4.53 / 2, "meters"),
  23346. default: true
  23347. },
  23348. {
  23349. name: "Normal",
  23350. height: math.unit(4.53, "meters"),
  23351. default: true
  23352. },
  23353. {
  23354. name: "Large",
  23355. height: math.unit(4.53 * 2, "meters"),
  23356. },
  23357. ]
  23358. ))
  23359. characterMakers.push(() => makeCharacter(
  23360. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23361. {
  23362. front: {
  23363. height: math.unit(6 + 2 / 12, "feet"),
  23364. weight: math.unit(180, "lb"),
  23365. name: "Front",
  23366. image: {
  23367. source: "./media/characters/brawler/front.svg",
  23368. extra: 3301 / 3027,
  23369. bottom: 138 / 3439
  23370. }
  23371. },
  23372. },
  23373. [
  23374. {
  23375. name: "Normal",
  23376. height: math.unit(6 + 2 / 12, "feet"),
  23377. default: true
  23378. },
  23379. ]
  23380. ))
  23381. characterMakers.push(() => makeCharacter(
  23382. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23383. {
  23384. front: {
  23385. height: math.unit(11, "feet"),
  23386. weight: math.unit(1000, "lb"),
  23387. name: "Front",
  23388. image: {
  23389. source: "./media/characters/alex/front.svg",
  23390. bottom: 44.5 / 620
  23391. }
  23392. },
  23393. },
  23394. [
  23395. {
  23396. name: "Micro",
  23397. height: math.unit(5, "inches")
  23398. },
  23399. {
  23400. name: "Normal",
  23401. height: math.unit(11, "feet"),
  23402. default: true
  23403. },
  23404. {
  23405. name: "Macro",
  23406. height: math.unit(9.5e9, "feet")
  23407. },
  23408. {
  23409. name: "Max Size",
  23410. height: math.unit(1.4e283, "yottameters")
  23411. },
  23412. ]
  23413. ))
  23414. characterMakers.push(() => makeCharacter(
  23415. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23416. {
  23417. female: {
  23418. height: math.unit(29.9, "m"),
  23419. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23420. name: "Female",
  23421. image: {
  23422. source: "./media/characters/zenari/female.svg",
  23423. extra: 3281.6 / 3217,
  23424. bottom: 72.2 / 3353
  23425. }
  23426. },
  23427. male: {
  23428. height: math.unit(27.7, "m"),
  23429. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23430. name: "Male",
  23431. image: {
  23432. source: "./media/characters/zenari/male.svg",
  23433. extra: 3008 / 2991,
  23434. bottom: 54.6 / 3069
  23435. }
  23436. },
  23437. },
  23438. [
  23439. {
  23440. name: "Macro",
  23441. height: math.unit(29.7, "meters"),
  23442. default: true
  23443. },
  23444. ]
  23445. ))
  23446. characterMakers.push(() => makeCharacter(
  23447. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23448. {
  23449. female: {
  23450. height: math.unit(23.8, "m"),
  23451. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23452. name: "Female",
  23453. image: {
  23454. source: "./media/characters/mactarian/female.svg",
  23455. extra: 2662 / 2569,
  23456. bottom: 73 / 2736
  23457. }
  23458. },
  23459. male: {
  23460. height: math.unit(23.8, "m"),
  23461. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23462. name: "Male",
  23463. image: {
  23464. source: "./media/characters/mactarian/male.svg",
  23465. extra: 2673 / 2600,
  23466. bottom: 76 / 2750
  23467. }
  23468. },
  23469. },
  23470. [
  23471. {
  23472. name: "Macro",
  23473. height: math.unit(23.8, "meters"),
  23474. default: true
  23475. },
  23476. ]
  23477. ))
  23478. characterMakers.push(() => makeCharacter(
  23479. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23480. {
  23481. female: {
  23482. height: math.unit(19.3, "m"),
  23483. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23484. name: "Female",
  23485. image: {
  23486. source: "./media/characters/umok/female.svg",
  23487. extra: 2186 / 2078,
  23488. bottom: 87 / 2277
  23489. }
  23490. },
  23491. male: {
  23492. height: math.unit(19.5, "m"),
  23493. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23494. name: "Male",
  23495. image: {
  23496. source: "./media/characters/umok/male.svg",
  23497. extra: 2233 / 2140,
  23498. bottom: 24.4 / 2258
  23499. }
  23500. },
  23501. },
  23502. [
  23503. {
  23504. name: "Macro",
  23505. height: math.unit(19.3, "meters"),
  23506. default: true
  23507. },
  23508. ]
  23509. ))
  23510. characterMakers.push(() => makeCharacter(
  23511. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23512. {
  23513. female: {
  23514. height: math.unit(26.15, "m"),
  23515. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23516. name: "Female",
  23517. image: {
  23518. source: "./media/characters/joraxian/female.svg",
  23519. extra: 2912 / 2824,
  23520. bottom: 36 / 2956
  23521. }
  23522. },
  23523. male: {
  23524. height: math.unit(25.4, "m"),
  23525. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23526. name: "Male",
  23527. image: {
  23528. source: "./media/characters/joraxian/male.svg",
  23529. extra: 2877 / 2721,
  23530. bottom: 82 / 2967
  23531. }
  23532. },
  23533. },
  23534. [
  23535. {
  23536. name: "Macro",
  23537. height: math.unit(26.15, "meters"),
  23538. default: true
  23539. },
  23540. ]
  23541. ))
  23542. characterMakers.push(() => makeCharacter(
  23543. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23544. {
  23545. female: {
  23546. height: math.unit(21.6, "m"),
  23547. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23548. name: "Female",
  23549. image: {
  23550. source: "./media/characters/sthara/female.svg",
  23551. extra: 2516 / 2347,
  23552. bottom: 21.5 / 2537
  23553. }
  23554. },
  23555. male: {
  23556. height: math.unit(24, "m"),
  23557. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23558. name: "Male",
  23559. image: {
  23560. source: "./media/characters/sthara/male.svg",
  23561. extra: 2732 / 2607,
  23562. bottom: 23 / 2732
  23563. }
  23564. },
  23565. },
  23566. [
  23567. {
  23568. name: "Macro",
  23569. height: math.unit(21.6, "meters"),
  23570. default: true
  23571. },
  23572. ]
  23573. ))
  23574. characterMakers.push(() => makeCharacter(
  23575. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23576. {
  23577. front: {
  23578. height: math.unit(6 + 4 / 12, "feet"),
  23579. weight: math.unit(175, "lb"),
  23580. name: "Front",
  23581. image: {
  23582. source: "./media/characters/luka-bryzant/front.svg",
  23583. extra: 311 / 289,
  23584. bottom: 4 / 315
  23585. }
  23586. },
  23587. back: {
  23588. height: math.unit(6 + 4 / 12, "feet"),
  23589. weight: math.unit(175, "lb"),
  23590. name: "Back",
  23591. image: {
  23592. source: "./media/characters/luka-bryzant/back.svg",
  23593. extra: 311 / 289,
  23594. bottom: 3.8 / 313.7
  23595. }
  23596. },
  23597. },
  23598. [
  23599. {
  23600. name: "Micro",
  23601. height: math.unit(10, "inches")
  23602. },
  23603. {
  23604. name: "Normal",
  23605. height: math.unit(6 + 4 / 12, "feet"),
  23606. default: true
  23607. },
  23608. {
  23609. name: "Large",
  23610. height: math.unit(12, "feet")
  23611. },
  23612. ]
  23613. ))
  23614. characterMakers.push(() => makeCharacter(
  23615. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23616. {
  23617. front: {
  23618. height: math.unit(5 + 7 / 12, "feet"),
  23619. weight: math.unit(185, "lb"),
  23620. name: "Front",
  23621. image: {
  23622. source: "./media/characters/aman-aquila/front.svg",
  23623. extra: 1013 / 976,
  23624. bottom: 45.6 / 1057
  23625. }
  23626. },
  23627. side: {
  23628. height: math.unit(5 + 7 / 12, "feet"),
  23629. weight: math.unit(185, "lb"),
  23630. name: "Side",
  23631. image: {
  23632. source: "./media/characters/aman-aquila/side.svg",
  23633. extra: 1054 / 1011,
  23634. bottom: 15 / 1070
  23635. }
  23636. },
  23637. back: {
  23638. height: math.unit(5 + 7 / 12, "feet"),
  23639. weight: math.unit(185, "lb"),
  23640. name: "Back",
  23641. image: {
  23642. source: "./media/characters/aman-aquila/back.svg",
  23643. extra: 1026 / 970,
  23644. bottom: 12 / 1039
  23645. }
  23646. },
  23647. head: {
  23648. height: math.unit(1.211, "feet"),
  23649. name: "Head",
  23650. image: {
  23651. source: "./media/characters/aman-aquila/head.svg",
  23652. }
  23653. },
  23654. },
  23655. [
  23656. {
  23657. name: "Minimicro",
  23658. height: math.unit(0.057, "inches")
  23659. },
  23660. {
  23661. name: "Micro",
  23662. height: math.unit(7, "inches")
  23663. },
  23664. {
  23665. name: "Mini",
  23666. height: math.unit(3 + 7 / 12, "feet")
  23667. },
  23668. {
  23669. name: "Normal",
  23670. height: math.unit(5 + 7 / 12, "feet"),
  23671. default: true
  23672. },
  23673. {
  23674. name: "Macro",
  23675. height: math.unit(157 + 7 / 12, "feet")
  23676. },
  23677. {
  23678. name: "Megamacro",
  23679. height: math.unit(1557 + 7 / 12, "feet")
  23680. },
  23681. {
  23682. name: "Gigamacro",
  23683. height: math.unit(15557 + 7 / 12, "feet")
  23684. },
  23685. ]
  23686. ))
  23687. characterMakers.push(() => makeCharacter(
  23688. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23689. {
  23690. front: {
  23691. height: math.unit(3 + 2 / 12, "inches"),
  23692. weight: math.unit(0.3, "ounces"),
  23693. name: "Front",
  23694. image: {
  23695. source: "./media/characters/hiphae/front.svg",
  23696. extra: 1931 / 1683,
  23697. bottom: 24 / 1955
  23698. }
  23699. },
  23700. },
  23701. [
  23702. {
  23703. name: "Normal",
  23704. height: math.unit(3 + 1 / 2, "inches"),
  23705. default: true
  23706. },
  23707. ]
  23708. ))
  23709. characterMakers.push(() => makeCharacter(
  23710. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23711. {
  23712. front: {
  23713. height: math.unit(5 + 10 / 12, "feet"),
  23714. weight: math.unit(165, "lb"),
  23715. name: "Front",
  23716. image: {
  23717. source: "./media/characters/nicky/front.svg",
  23718. extra: 3144 / 2886,
  23719. bottom: 45.6 / 3192
  23720. }
  23721. },
  23722. back: {
  23723. height: math.unit(5 + 10 / 12, "feet"),
  23724. weight: math.unit(165, "lb"),
  23725. name: "Back",
  23726. image: {
  23727. source: "./media/characters/nicky/back.svg",
  23728. extra: 3055 / 2804,
  23729. bottom: 28.4 / 3087
  23730. }
  23731. },
  23732. frontclothed: {
  23733. height: math.unit(5 + 10 / 12, "feet"),
  23734. weight: math.unit(165, "lb"),
  23735. name: "Front-clothed",
  23736. image: {
  23737. source: "./media/characters/nicky/front-clothed.svg",
  23738. extra: 3184.9 / 2926.9,
  23739. bottom: 86.5 / 3239.9
  23740. }
  23741. },
  23742. foot: {
  23743. height: math.unit(1.16, "feet"),
  23744. name: "Foot",
  23745. image: {
  23746. source: "./media/characters/nicky/foot.svg"
  23747. }
  23748. },
  23749. feet: {
  23750. height: math.unit(1.34, "feet"),
  23751. name: "Feet",
  23752. image: {
  23753. source: "./media/characters/nicky/feet.svg"
  23754. }
  23755. },
  23756. maw: {
  23757. height: math.unit(0.9, "feet"),
  23758. name: "Maw",
  23759. image: {
  23760. source: "./media/characters/nicky/maw.svg"
  23761. }
  23762. },
  23763. },
  23764. [
  23765. {
  23766. name: "Normal",
  23767. height: math.unit(5 + 10 / 12, "feet"),
  23768. default: true
  23769. },
  23770. {
  23771. name: "Macro",
  23772. height: math.unit(60, "feet")
  23773. },
  23774. {
  23775. name: "Megamacro",
  23776. height: math.unit(1, "mile")
  23777. },
  23778. ]
  23779. ))
  23780. characterMakers.push(() => makeCharacter(
  23781. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23782. {
  23783. side: {
  23784. height: math.unit(10, "feet"),
  23785. weight: math.unit(600, "lb"),
  23786. name: "Side",
  23787. image: {
  23788. source: "./media/characters/blair/side.svg",
  23789. bottom: 16.6 / 475,
  23790. extra: 458 / 431
  23791. }
  23792. },
  23793. },
  23794. [
  23795. {
  23796. name: "Micro",
  23797. height: math.unit(8, "inches")
  23798. },
  23799. {
  23800. name: "Normal",
  23801. height: math.unit(10, "feet"),
  23802. default: true
  23803. },
  23804. {
  23805. name: "Macro",
  23806. height: math.unit(180, "feet")
  23807. },
  23808. ]
  23809. ))
  23810. characterMakers.push(() => makeCharacter(
  23811. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23812. {
  23813. front: {
  23814. height: math.unit(5 + 4 / 12, "feet"),
  23815. weight: math.unit(125, "lb"),
  23816. name: "Front",
  23817. image: {
  23818. source: "./media/characters/fisher/front.svg",
  23819. extra: 444 / 390,
  23820. bottom: 2 / 444.8
  23821. }
  23822. },
  23823. },
  23824. [
  23825. {
  23826. name: "Micro",
  23827. height: math.unit(4, "inches")
  23828. },
  23829. {
  23830. name: "Normal",
  23831. height: math.unit(5 + 4 / 12, "feet"),
  23832. default: true
  23833. },
  23834. {
  23835. name: "Macro",
  23836. height: math.unit(100, "feet")
  23837. },
  23838. ]
  23839. ))
  23840. characterMakers.push(() => makeCharacter(
  23841. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23842. {
  23843. front: {
  23844. height: math.unit(6.71, "feet"),
  23845. weight: math.unit(200, "lb"),
  23846. capacity: math.unit(1000000, "people"),
  23847. name: "Front",
  23848. image: {
  23849. source: "./media/characters/gliss/front.svg",
  23850. extra: 2347 / 2231,
  23851. bottom: 113 / 2462
  23852. }
  23853. },
  23854. hammerspaceSize: {
  23855. height: math.unit(6.71 * 717, "feet"),
  23856. weight: math.unit(200, "lb"),
  23857. capacity: math.unit(1000000, "people"),
  23858. name: "Hammerspace Size",
  23859. image: {
  23860. source: "./media/characters/gliss/front.svg",
  23861. extra: 2347 / 2231,
  23862. bottom: 113 / 2462
  23863. }
  23864. },
  23865. },
  23866. [
  23867. {
  23868. name: "Normal",
  23869. height: math.unit(6.71, "feet"),
  23870. default: true
  23871. },
  23872. ]
  23873. ))
  23874. characterMakers.push(() => makeCharacter(
  23875. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  23876. {
  23877. side: {
  23878. height: math.unit(1.44, "m"),
  23879. weight: math.unit(80, "kg"),
  23880. name: "Side",
  23881. image: {
  23882. source: "./media/characters/dune-anderson/side.svg",
  23883. bottom: 49 / 1426
  23884. }
  23885. },
  23886. },
  23887. [
  23888. {
  23889. name: "Wolf-sized",
  23890. height: math.unit(1.44, "meters")
  23891. },
  23892. {
  23893. name: "Normal",
  23894. height: math.unit(5.05, "meters"),
  23895. default: true
  23896. },
  23897. {
  23898. name: "Big",
  23899. height: math.unit(14.4, "meters")
  23900. },
  23901. {
  23902. name: "Huge",
  23903. height: math.unit(144, "meters")
  23904. },
  23905. ]
  23906. ))
  23907. characterMakers.push(() => makeCharacter(
  23908. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  23909. {
  23910. front: {
  23911. height: math.unit(7, "feet"),
  23912. weight: math.unit(425, "lb"),
  23913. name: "Front",
  23914. image: {
  23915. source: "./media/characters/hind/front.svg",
  23916. extra: 2091 / 1860,
  23917. bottom: 129 / 2220
  23918. }
  23919. },
  23920. back: {
  23921. height: math.unit(7, "feet"),
  23922. weight: math.unit(425, "lb"),
  23923. name: "Back",
  23924. image: {
  23925. source: "./media/characters/hind/back.svg",
  23926. extra: 2091 / 1860,
  23927. bottom: 24.6 / 2309
  23928. }
  23929. },
  23930. tail: {
  23931. height: math.unit(2.8, "feet"),
  23932. name: "Tail",
  23933. image: {
  23934. source: "./media/characters/hind/tail.svg"
  23935. }
  23936. },
  23937. head: {
  23938. height: math.unit(2.55, "feet"),
  23939. name: "Head",
  23940. image: {
  23941. source: "./media/characters/hind/head.svg"
  23942. }
  23943. },
  23944. },
  23945. [
  23946. {
  23947. name: "XS",
  23948. height: math.unit(0.7, "feet")
  23949. },
  23950. {
  23951. name: "Normal",
  23952. height: math.unit(7, "feet"),
  23953. default: true
  23954. },
  23955. {
  23956. name: "XL",
  23957. height: math.unit(70, "feet")
  23958. },
  23959. ]
  23960. ))
  23961. characterMakers.push(() => makeCharacter(
  23962. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  23963. {
  23964. front: {
  23965. height: math.unit(6, "feet"),
  23966. weight: math.unit(150, "lb"),
  23967. name: "Front",
  23968. image: {
  23969. source: "./media/characters/dylan-skaven/front.svg",
  23970. extra: 2318 / 2063,
  23971. bottom: 93.4 / 2410
  23972. }
  23973. },
  23974. },
  23975. [
  23976. {
  23977. name: "Nano",
  23978. height: math.unit(1, "mm")
  23979. },
  23980. {
  23981. name: "Micro",
  23982. height: math.unit(1, "cm")
  23983. },
  23984. {
  23985. name: "Normal",
  23986. height: math.unit(2.1, "meters"),
  23987. default: true
  23988. },
  23989. ]
  23990. ))
  23991. characterMakers.push(() => makeCharacter(
  23992. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  23993. {
  23994. front: {
  23995. height: math.unit(7 + 5 / 12, "feet"),
  23996. weight: math.unit(357, "lb"),
  23997. name: "Front",
  23998. image: {
  23999. source: "./media/characters/solex-draconov/front.svg",
  24000. extra: 1993 / 1865,
  24001. bottom: 117 / 2111
  24002. }
  24003. },
  24004. },
  24005. [
  24006. {
  24007. name: "Natural Height",
  24008. height: math.unit(7 + 5 / 12, "feet"),
  24009. default: true
  24010. },
  24011. {
  24012. name: "Macro",
  24013. height: math.unit(350, "feet")
  24014. },
  24015. {
  24016. name: "Macro+",
  24017. height: math.unit(1000, "feet")
  24018. },
  24019. {
  24020. name: "Megamacro",
  24021. height: math.unit(20, "km")
  24022. },
  24023. {
  24024. name: "Megamacro+",
  24025. height: math.unit(1000, "km")
  24026. },
  24027. {
  24028. name: "Gigamacro",
  24029. height: math.unit(2.5, "Gm")
  24030. },
  24031. {
  24032. name: "Teramacro",
  24033. height: math.unit(15, "Tm")
  24034. },
  24035. {
  24036. name: "Galactic",
  24037. height: math.unit(30, "Zm")
  24038. },
  24039. {
  24040. name: "Universal",
  24041. height: math.unit(21000, "Ym")
  24042. },
  24043. {
  24044. name: "Omniversal",
  24045. height: math.unit(9.861e50, "Ym")
  24046. },
  24047. {
  24048. name: "Existential",
  24049. height: math.unit(1e300, "meters")
  24050. },
  24051. ]
  24052. ))
  24053. characterMakers.push(() => makeCharacter(
  24054. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24055. {
  24056. side: {
  24057. height: math.unit(25, "feet"),
  24058. weight: math.unit(90000, "lb"),
  24059. name: "Side",
  24060. image: {
  24061. source: "./media/characters/mandarax/side.svg",
  24062. extra: 614 / 332,
  24063. bottom: 55 / 630
  24064. }
  24065. },
  24066. head: {
  24067. height: math.unit(11.4, "feet"),
  24068. name: "Head",
  24069. image: {
  24070. source: "./media/characters/mandarax/head.svg"
  24071. }
  24072. },
  24073. belly: {
  24074. height: math.unit(33, "feet"),
  24075. name: "Belly",
  24076. capacity: math.unit(500, "people"),
  24077. image: {
  24078. source: "./media/characters/mandarax/belly.svg"
  24079. }
  24080. },
  24081. dick: {
  24082. height: math.unit(8.46, "feet"),
  24083. name: "Dick",
  24084. image: {
  24085. source: "./media/characters/mandarax/dick.svg"
  24086. }
  24087. },
  24088. top: {
  24089. height: math.unit(28, "meters"),
  24090. name: "Top",
  24091. image: {
  24092. source: "./media/characters/mandarax/top.svg"
  24093. }
  24094. },
  24095. },
  24096. [
  24097. {
  24098. name: "Normal",
  24099. height: math.unit(25, "feet"),
  24100. default: true
  24101. },
  24102. ]
  24103. ))
  24104. characterMakers.push(() => makeCharacter(
  24105. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24106. {
  24107. front: {
  24108. height: math.unit(5, "feet"),
  24109. weight: math.unit(90, "lb"),
  24110. name: "Front",
  24111. image: {
  24112. source: "./media/characters/pixil/front.svg",
  24113. extra: 2000 / 1618,
  24114. bottom: 12.3 / 2011
  24115. }
  24116. },
  24117. },
  24118. [
  24119. {
  24120. name: "Normal",
  24121. height: math.unit(5, "feet"),
  24122. default: true
  24123. },
  24124. {
  24125. name: "Megamacro",
  24126. height: math.unit(10, "miles"),
  24127. },
  24128. ]
  24129. ))
  24130. characterMakers.push(() => makeCharacter(
  24131. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24132. {
  24133. front: {
  24134. height: math.unit(7 + 2 / 12, "feet"),
  24135. weight: math.unit(200, "lb"),
  24136. name: "Front",
  24137. image: {
  24138. source: "./media/characters/angel/front.svg",
  24139. extra: 1830 / 1737,
  24140. bottom: 22.6 / 1854,
  24141. }
  24142. },
  24143. },
  24144. [
  24145. {
  24146. name: "Normal",
  24147. height: math.unit(7 + 2 / 12, "feet"),
  24148. default: true
  24149. },
  24150. {
  24151. name: "Macro",
  24152. height: math.unit(1000, "feet")
  24153. },
  24154. {
  24155. name: "Megamacro",
  24156. height: math.unit(2, "miles")
  24157. },
  24158. {
  24159. name: "Gigamacro",
  24160. height: math.unit(20, "earths")
  24161. },
  24162. ]
  24163. ))
  24164. characterMakers.push(() => makeCharacter(
  24165. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24166. {
  24167. front: {
  24168. height: math.unit(5, "feet"),
  24169. weight: math.unit(180, "lb"),
  24170. name: "Front",
  24171. image: {
  24172. source: "./media/characters/mekana/front.svg",
  24173. extra: 1671 / 1605,
  24174. bottom: 3.5 / 1691
  24175. }
  24176. },
  24177. side: {
  24178. height: math.unit(5, "feet"),
  24179. weight: math.unit(180, "lb"),
  24180. name: "Side",
  24181. image: {
  24182. source: "./media/characters/mekana/side.svg",
  24183. extra: 1671 / 1605,
  24184. bottom: 3.5 / 1691
  24185. }
  24186. },
  24187. back: {
  24188. height: math.unit(5, "feet"),
  24189. weight: math.unit(180, "lb"),
  24190. name: "Back",
  24191. image: {
  24192. source: "./media/characters/mekana/back.svg",
  24193. extra: 1671 / 1605,
  24194. bottom: 3.5 / 1691
  24195. }
  24196. },
  24197. },
  24198. [
  24199. {
  24200. name: "Normal",
  24201. height: math.unit(5, "feet"),
  24202. default: true
  24203. },
  24204. ]
  24205. ))
  24206. characterMakers.push(() => makeCharacter(
  24207. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24208. {
  24209. front: {
  24210. height: math.unit(4 + 6 / 12, "feet"),
  24211. weight: math.unit(80, "lb"),
  24212. name: "Front",
  24213. image: {
  24214. source: "./media/characters/pixie/front.svg",
  24215. extra: 1924 / 1825,
  24216. bottom: 22.4 / 1946
  24217. }
  24218. },
  24219. },
  24220. [
  24221. {
  24222. name: "Normal",
  24223. height: math.unit(4 + 6 / 12, "feet"),
  24224. default: true
  24225. },
  24226. {
  24227. name: "Macro",
  24228. height: math.unit(40, "feet")
  24229. },
  24230. ]
  24231. ))
  24232. characterMakers.push(() => makeCharacter(
  24233. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24234. {
  24235. front: {
  24236. height: math.unit(2.1, "meters"),
  24237. weight: math.unit(200, "lb"),
  24238. name: "Front",
  24239. image: {
  24240. source: "./media/characters/the-lascivious/front.svg",
  24241. extra: 1 / 0.893,
  24242. bottom: 3.5 / 573.7
  24243. }
  24244. },
  24245. },
  24246. [
  24247. {
  24248. name: "Human Scale",
  24249. height: math.unit(2.1, "meters")
  24250. },
  24251. {
  24252. name: "Wolxi Scale",
  24253. height: math.unit(46.2, "m"),
  24254. default: true
  24255. },
  24256. {
  24257. name: "Boinker of Buildings",
  24258. height: math.unit(10, "km")
  24259. },
  24260. {
  24261. name: "Shagger of Skyscrapers",
  24262. height: math.unit(40, "km")
  24263. },
  24264. {
  24265. name: "Banger of Boroughs",
  24266. height: math.unit(4000, "km")
  24267. },
  24268. {
  24269. name: "Screwer of States",
  24270. height: math.unit(100000, "km")
  24271. },
  24272. {
  24273. name: "Pounder of Planets",
  24274. height: math.unit(2000000, "km")
  24275. },
  24276. ]
  24277. ))
  24278. characterMakers.push(() => makeCharacter(
  24279. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24280. {
  24281. front: {
  24282. height: math.unit(6, "feet"),
  24283. weight: math.unit(150, "lb"),
  24284. name: "Front",
  24285. image: {
  24286. source: "./media/characters/aj/front.svg",
  24287. extra: 2039 / 1562,
  24288. bottom: 40 / 2079
  24289. }
  24290. },
  24291. },
  24292. [
  24293. {
  24294. name: "Normal",
  24295. height: math.unit(11 + 6 / 12, "feet"),
  24296. default: true
  24297. },
  24298. {
  24299. name: "Megamacro",
  24300. height: math.unit(60, "megameters")
  24301. },
  24302. ]
  24303. ))
  24304. characterMakers.push(() => makeCharacter(
  24305. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24306. {
  24307. side: {
  24308. height: math.unit(31 + 8/12, "feet"),
  24309. weight: math.unit(75000, "kg"),
  24310. name: "Side",
  24311. image: {
  24312. source: "./media/characters/koros/side.svg",
  24313. extra: 1442/1297,
  24314. bottom: 122.7/1562
  24315. }
  24316. },
  24317. dicksKingsCrown: {
  24318. height: math.unit(6, "feet"),
  24319. name: "Dicks (King's Crown)",
  24320. image: {
  24321. source: "./media/characters/koros/dicks-kings-crown.svg"
  24322. }
  24323. },
  24324. dicksTailSet: {
  24325. height: math.unit(3, "feet"),
  24326. name: "Dicks (Tail Set)",
  24327. image: {
  24328. source: "./media/characters/koros/dicks-tail-set.svg"
  24329. }
  24330. },
  24331. dickCumming: {
  24332. height: math.unit(7.98, "feet"),
  24333. name: "Dick (Cumming)",
  24334. image: {
  24335. source: "./media/characters/koros/dick-cumming.svg"
  24336. }
  24337. },
  24338. dicksBack: {
  24339. height: math.unit(5.9, "feet"),
  24340. name: "Dicks (Back)",
  24341. image: {
  24342. source: "./media/characters/koros/dicks-back.svg"
  24343. }
  24344. },
  24345. dicksFront: {
  24346. height: math.unit(3.72, "feet"),
  24347. name: "Dicks (Front)",
  24348. image: {
  24349. source: "./media/characters/koros/dicks-front.svg"
  24350. }
  24351. },
  24352. dicksPeeking: {
  24353. height: math.unit(3.0, "feet"),
  24354. name: "Dicks (Peeking)",
  24355. image: {
  24356. source: "./media/characters/koros/dicks-peeking.svg"
  24357. }
  24358. },
  24359. eye: {
  24360. height: math.unit(1.7, "feet"),
  24361. name: "Eye",
  24362. image: {
  24363. source: "./media/characters/koros/eye.svg"
  24364. }
  24365. },
  24366. headFront: {
  24367. height: math.unit(11.69, "feet"),
  24368. name: "Head (Front)",
  24369. image: {
  24370. source: "./media/characters/koros/head-front.svg"
  24371. }
  24372. },
  24373. headSide: {
  24374. height: math.unit(14, "feet"),
  24375. name: "Head (Side)",
  24376. image: {
  24377. source: "./media/characters/koros/head-side.svg"
  24378. }
  24379. },
  24380. leg: {
  24381. height: math.unit(17, "feet"),
  24382. name: "Leg",
  24383. image: {
  24384. source: "./media/characters/koros/leg.svg"
  24385. }
  24386. },
  24387. mawSide: {
  24388. height: math.unit(12.8, "feet"),
  24389. name: "Maw (Side)",
  24390. image: {
  24391. source: "./media/characters/koros/maw-side.svg"
  24392. }
  24393. },
  24394. mawSpitting: {
  24395. height: math.unit(17, "feet"),
  24396. name: "Maw (Spitting)",
  24397. image: {
  24398. source: "./media/characters/koros/maw-spitting.svg"
  24399. }
  24400. },
  24401. slit: {
  24402. height: math.unit(2.8, "feet"),
  24403. name: "Slit",
  24404. image: {
  24405. source: "./media/characters/koros/slit.svg"
  24406. }
  24407. },
  24408. stomach: {
  24409. height: math.unit(6.8, "feet"),
  24410. capacity: math.unit(20, "people"),
  24411. name: "Stomach",
  24412. image: {
  24413. source: "./media/characters/koros/stomach.svg"
  24414. }
  24415. },
  24416. wingspanBottom: {
  24417. height: math.unit(114, "feet"),
  24418. name: "Wingspan (Bottom)",
  24419. image: {
  24420. source: "./media/characters/koros/wingspan-bottom.svg"
  24421. }
  24422. },
  24423. wingspanTop: {
  24424. height: math.unit(104, "feet"),
  24425. name: "Wingspan (Top)",
  24426. image: {
  24427. source: "./media/characters/koros/wingspan-top.svg"
  24428. }
  24429. },
  24430. },
  24431. [
  24432. {
  24433. name: "Normal",
  24434. height: math.unit(31 + 8/12, "feet"),
  24435. default: true
  24436. },
  24437. ]
  24438. ))
  24439. characterMakers.push(() => makeCharacter(
  24440. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24441. {
  24442. front: {
  24443. height: math.unit(18 + 5/12, "feet"),
  24444. weight: math.unit(3750, "kg"),
  24445. name: "Front",
  24446. image: {
  24447. source: "./media/characters/vexx/front.svg",
  24448. extra: 426/396,
  24449. bottom: 31.5/458
  24450. }
  24451. },
  24452. maw: {
  24453. height: math.unit(6, "feet"),
  24454. name: "Maw",
  24455. image: {
  24456. source: "./media/characters/vexx/maw.svg"
  24457. }
  24458. },
  24459. },
  24460. [
  24461. {
  24462. name: "Normal",
  24463. height: math.unit(18 + 5/12, "feet"),
  24464. default: true
  24465. },
  24466. ]
  24467. ))
  24468. characterMakers.push(() => makeCharacter(
  24469. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24470. {
  24471. front: {
  24472. height: math.unit(17 + 6/12, "feet"),
  24473. weight: math.unit(150, "lb"),
  24474. name: "Front",
  24475. image: {
  24476. source: "./media/characters/baadra/front.svg",
  24477. extra: 3137/2890,
  24478. bottom: 168.4/3305
  24479. }
  24480. },
  24481. back: {
  24482. height: math.unit(17 + 6/12, "feet"),
  24483. weight: math.unit(150, "lb"),
  24484. name: "Back",
  24485. image: {
  24486. source: "./media/characters/baadra/back.svg",
  24487. extra: 3142/2890,
  24488. bottom: 220/3371
  24489. }
  24490. },
  24491. head: {
  24492. height: math.unit(5.45, "feet"),
  24493. name: "Head",
  24494. image: {
  24495. source: "./media/characters/baadra/head.svg"
  24496. }
  24497. },
  24498. headAngry: {
  24499. height: math.unit(4.95, "feet"),
  24500. name: "Head (Angry)",
  24501. image: {
  24502. source: "./media/characters/baadra/head-angry.svg"
  24503. }
  24504. },
  24505. headOpen: {
  24506. height: math.unit(6, "feet"),
  24507. name: "Head (Open)",
  24508. image: {
  24509. source: "./media/characters/baadra/head-open.svg"
  24510. }
  24511. },
  24512. },
  24513. [
  24514. {
  24515. name: "Normal",
  24516. height: math.unit(17 + 6/12, "feet"),
  24517. default: true
  24518. },
  24519. ]
  24520. ))
  24521. characterMakers.push(() => makeCharacter(
  24522. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24523. {
  24524. front: {
  24525. height: math.unit(7 + 3/12, "feet"),
  24526. weight: math.unit(180, "lb"),
  24527. name: "Front",
  24528. image: {
  24529. source: "./media/characters/juri/front.svg",
  24530. extra: 1401/1237,
  24531. bottom: 18.5/1418
  24532. }
  24533. },
  24534. side: {
  24535. height: math.unit(7 + 3/12, "feet"),
  24536. weight: math.unit(180, "lb"),
  24537. name: "Side",
  24538. image: {
  24539. source: "./media/characters/juri/side.svg",
  24540. extra: 1424/1242,
  24541. bottom: 18.5/1447
  24542. }
  24543. },
  24544. sitting: {
  24545. height: math.unit(6, "feet"),
  24546. weight: math.unit(180, "lb"),
  24547. name: "Sitting",
  24548. image: {
  24549. source: "./media/characters/juri/sitting.svg",
  24550. extra: 1270/1143,
  24551. bottom: 100/1343
  24552. }
  24553. },
  24554. back: {
  24555. height: math.unit(7 + 3/12, "feet"),
  24556. weight: math.unit(180, "lb"),
  24557. name: "Back",
  24558. image: {
  24559. source: "./media/characters/juri/back.svg",
  24560. extra: 1377/1240,
  24561. bottom: 23.7/1405
  24562. }
  24563. },
  24564. maw: {
  24565. height: math.unit(2.8, "feet"),
  24566. name: "Maw",
  24567. image: {
  24568. source: "./media/characters/juri/maw.svg"
  24569. }
  24570. },
  24571. stomach: {
  24572. height: math.unit(0.89, "feet"),
  24573. capacity: math.unit(4, "liters"),
  24574. name: "Stomach",
  24575. image: {
  24576. source: "./media/characters/juri/stomach.svg"
  24577. }
  24578. },
  24579. },
  24580. [
  24581. {
  24582. name: "Normal",
  24583. height: math.unit(7 + 3/12, "feet"),
  24584. default: true
  24585. },
  24586. ]
  24587. ))
  24588. characterMakers.push(() => makeCharacter(
  24589. { name: "Maxene Sita", species: ["fox"], tags: ["anthro"] },
  24590. {
  24591. fox: {
  24592. height: math.unit(5 + 6/12, "feet"),
  24593. weight: math.unit(140, "lb"),
  24594. name: "Fox",
  24595. image: {
  24596. source: "./media/characters/maxene-sita/fox.svg",
  24597. extra: 146/138,
  24598. bottom: 2.1/148.19
  24599. }
  24600. },
  24601. kitsune: {
  24602. height: math.unit(10, "feet"),
  24603. weight: math.unit(800, "lb"),
  24604. name: "Kitsune",
  24605. image: {
  24606. source: "./media/characters/maxene-sita/kitsune.svg",
  24607. extra: 185/176,
  24608. bottom: 4.7/189.9
  24609. }
  24610. },
  24611. },
  24612. [
  24613. {
  24614. name: "Normal",
  24615. height: math.unit(5 + 6/12, "feet"),
  24616. default: true
  24617. },
  24618. ]
  24619. ))
  24620. characterMakers.push(() => makeCharacter(
  24621. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24622. {
  24623. front: {
  24624. height: math.unit(3 + 4/12, "feet"),
  24625. weight: math.unit(70, "lb"),
  24626. name: "Front",
  24627. image: {
  24628. source: "./media/characters/maia/front.svg",
  24629. extra: 227/219.5,
  24630. bottom: 40 / 267
  24631. }
  24632. },
  24633. back: {
  24634. height: math.unit(3 + 4/12, "feet"),
  24635. weight: math.unit(70, "lb"),
  24636. name: "Back",
  24637. image: {
  24638. source: "./media/characters/maia/back.svg",
  24639. extra: 237/225
  24640. }
  24641. },
  24642. },
  24643. [
  24644. {
  24645. name: "Normal",
  24646. height: math.unit(3 + 4/12, "feet"),
  24647. default: true
  24648. },
  24649. ]
  24650. ))
  24651. characterMakers.push(() => makeCharacter(
  24652. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24653. {
  24654. front: {
  24655. height: math.unit(5 + 10/12, "feet"),
  24656. weight: math.unit(197, "lb"),
  24657. name: "Front",
  24658. image: {
  24659. source: "./media/characters/jabaro/front.svg",
  24660. extra: 225/216,
  24661. bottom: 5.06/230
  24662. }
  24663. },
  24664. back: {
  24665. height: math.unit(5 + 10/12, "feet"),
  24666. weight: math.unit(197, "lb"),
  24667. name: "Back",
  24668. image: {
  24669. source: "./media/characters/jabaro/back.svg",
  24670. extra: 225/219,
  24671. bottom: 1.9/227
  24672. }
  24673. },
  24674. },
  24675. [
  24676. {
  24677. name: "Normal",
  24678. height: math.unit(5 + 10/12, "feet"),
  24679. default: true
  24680. },
  24681. ]
  24682. ))
  24683. characterMakers.push(() => makeCharacter(
  24684. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24685. {
  24686. front: {
  24687. height: math.unit(5 + 8/12, "feet"),
  24688. weight: math.unit(139, "lb"),
  24689. name: "Front",
  24690. image: {
  24691. source: "./media/characters/risa/front.svg",
  24692. extra: 270/260,
  24693. bottom: 11.2/282
  24694. }
  24695. },
  24696. back: {
  24697. height: math.unit(5 + 8/12, "feet"),
  24698. weight: math.unit(139, "lb"),
  24699. name: "Back",
  24700. image: {
  24701. source: "./media/characters/risa/back.svg",
  24702. extra: 264/255,
  24703. bottom: 4/268
  24704. }
  24705. },
  24706. },
  24707. [
  24708. {
  24709. name: "Normal",
  24710. height: math.unit(5 + 8/12, "feet"),
  24711. default: true
  24712. },
  24713. ]
  24714. ))
  24715. characterMakers.push(() => makeCharacter(
  24716. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  24717. {
  24718. front: {
  24719. height: math.unit(2 + 11/12, "feet"),
  24720. weight: math.unit(30, "lb"),
  24721. name: "Front",
  24722. image: {
  24723. source: "./media/characters/weatley/front.svg",
  24724. bottom: 10.7/414,
  24725. extra: 403.5/362
  24726. }
  24727. },
  24728. back: {
  24729. height: math.unit(2 + 11/12, "feet"),
  24730. weight: math.unit(30, "lb"),
  24731. name: "Back",
  24732. image: {
  24733. source: "./media/characters/weatley/back.svg",
  24734. bottom: 10.7/414,
  24735. extra: 403.5/362
  24736. }
  24737. },
  24738. },
  24739. [
  24740. {
  24741. name: "Normal",
  24742. height: math.unit(2 + 11/12, "feet"),
  24743. default: true
  24744. },
  24745. ]
  24746. ))
  24747. characterMakers.push(() => makeCharacter(
  24748. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  24749. {
  24750. front: {
  24751. height: math.unit(5 + 2/12, "feet"),
  24752. weight: math.unit(50, "kg"),
  24753. name: "Front",
  24754. image: {
  24755. source: "./media/characters/mercury-crescent/front.svg",
  24756. extra: 1088/1033,
  24757. bottom: 18.9/1109
  24758. }
  24759. },
  24760. },
  24761. [
  24762. {
  24763. name: "Normal",
  24764. height: math.unit(5 + 2/12, "feet"),
  24765. default: true
  24766. },
  24767. ]
  24768. ))
  24769. characterMakers.push(() => makeCharacter(
  24770. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  24771. {
  24772. front: {
  24773. height: math.unit(2, "feet"),
  24774. weight: math.unit(15, "kg"),
  24775. name: "Front",
  24776. image: {
  24777. source: "./media/characters/diamond-jones/front.svg",
  24778. bottom: 16/568
  24779. }
  24780. },
  24781. },
  24782. [
  24783. {
  24784. name: "Normal",
  24785. height: math.unit(2, "feet"),
  24786. default: true
  24787. },
  24788. ]
  24789. ))
  24790. characterMakers.push(() => makeCharacter(
  24791. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  24792. {
  24793. front: {
  24794. height: math.unit(3, "feet"),
  24795. weight: math.unit(30, "kg"),
  24796. name: "Front",
  24797. image: {
  24798. source: "./media/characters/sweet-bit/front.svg",
  24799. extra: 675/567,
  24800. bottom: 27.7/703
  24801. }
  24802. },
  24803. },
  24804. [
  24805. {
  24806. name: "Normal",
  24807. height: math.unit(3, "feet"),
  24808. default: true
  24809. },
  24810. ]
  24811. ))
  24812. characterMakers.push(() => makeCharacter(
  24813. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  24814. {
  24815. side: {
  24816. height: math.unit(9.178, "feet"),
  24817. weight: math.unit(500, "lb"),
  24818. name: "Side",
  24819. image: {
  24820. source: "./media/characters/umbrazen/side.svg",
  24821. extra: 1730/1473,
  24822. bottom: 34.6/1765
  24823. }
  24824. },
  24825. },
  24826. [
  24827. {
  24828. name: "Normal",
  24829. height: math.unit(9.178, "feet"),
  24830. default: true
  24831. },
  24832. ]
  24833. ))
  24834. characterMakers.push(() => makeCharacter(
  24835. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  24836. {
  24837. front: {
  24838. height: math.unit(10, "feet"),
  24839. weight: math.unit(750, "lb"),
  24840. name: "Front",
  24841. image: {
  24842. source: "./media/characters/arlist/front.svg",
  24843. extra: 961/778,
  24844. bottom: 6.2/986
  24845. }
  24846. },
  24847. },
  24848. [
  24849. {
  24850. name: "Normal",
  24851. height: math.unit(10, "feet"),
  24852. default: true
  24853. },
  24854. ]
  24855. ))
  24856. characterMakers.push(() => makeCharacter(
  24857. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  24858. {
  24859. front: {
  24860. height: math.unit(5 + 1/12, "feet"),
  24861. weight: math.unit(110, "lb"),
  24862. name: "Front",
  24863. image: {
  24864. source: "./media/characters/aradel/front.svg",
  24865. extra: 324/303,
  24866. bottom: 3.6/329.4
  24867. }
  24868. },
  24869. },
  24870. [
  24871. {
  24872. name: "Normal",
  24873. height: math.unit(5 + 1/12, "feet"),
  24874. default: true
  24875. },
  24876. ]
  24877. ))
  24878. characterMakers.push(() => makeCharacter(
  24879. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  24880. {
  24881. front: {
  24882. height: math.unit(3 + 8/12, "feet"),
  24883. weight: math.unit(50, "lb"),
  24884. name: "Front",
  24885. image: {
  24886. source: "./media/characters/serryn/front.svg",
  24887. extra: 1792/1656,
  24888. bottom: 43.5/1840
  24889. }
  24890. },
  24891. },
  24892. [
  24893. {
  24894. name: "Normal",
  24895. height: math.unit(3 + 8/12, "feet"),
  24896. default: true
  24897. },
  24898. ]
  24899. ))
  24900. characterMakers.push(() => makeCharacter(
  24901. { name: "Xavier Thyme" },
  24902. {
  24903. front: {
  24904. height: math.unit(7 + 10/12, "feet"),
  24905. weight: math.unit(255, "lb"),
  24906. name: "Front",
  24907. image: {
  24908. source: "./media/characters/xavier-thyme/front.svg",
  24909. extra: 3733/3642,
  24910. bottom: 131/3869
  24911. }
  24912. },
  24913. frontRaven: {
  24914. height: math.unit(7 + 10/12, "feet"),
  24915. weight: math.unit(255, "lb"),
  24916. name: "Front (Raven)",
  24917. image: {
  24918. source: "./media/characters/xavier-thyme/front-raven.svg",
  24919. extra: 4385/3642,
  24920. bottom: 131/4517
  24921. }
  24922. },
  24923. },
  24924. [
  24925. {
  24926. name: "Normal",
  24927. height: math.unit(7 + 10/12, "feet"),
  24928. default: true
  24929. },
  24930. ]
  24931. ))
  24932. characterMakers.push(() => makeCharacter(
  24933. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  24934. {
  24935. front: {
  24936. height: math.unit(1.6, "m"),
  24937. weight: math.unit(50, "kg"),
  24938. name: "Front",
  24939. image: {
  24940. source: "./media/characters/kiki/front.svg",
  24941. extra: 4682/3610,
  24942. bottom: 115/4777
  24943. }
  24944. },
  24945. },
  24946. [
  24947. {
  24948. name: "Normal",
  24949. height: math.unit(1.6, "meters"),
  24950. default: true
  24951. },
  24952. ]
  24953. ))
  24954. characterMakers.push(() => makeCharacter(
  24955. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  24956. {
  24957. front: {
  24958. height: math.unit(50, "m"),
  24959. weight: math.unit(500, "tonnes"),
  24960. name: "Front",
  24961. image: {
  24962. source: "./media/characters/ryoko/front.svg",
  24963. extra: 4632/3926,
  24964. bottom: 193/4823
  24965. }
  24966. },
  24967. },
  24968. [
  24969. {
  24970. name: "Normal",
  24971. height: math.unit(50, "meters"),
  24972. default: true
  24973. },
  24974. ]
  24975. ))
  24976. characterMakers.push(() => makeCharacter(
  24977. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  24978. {
  24979. front: {
  24980. height: math.unit(30, "m"),
  24981. weight: math.unit(22, "tonnes"),
  24982. name: "Front",
  24983. image: {
  24984. source: "./media/characters/elio/front.svg",
  24985. extra: 4582/3720,
  24986. bottom: 236/4828
  24987. }
  24988. },
  24989. },
  24990. [
  24991. {
  24992. name: "Normal",
  24993. height: math.unit(30, "meters"),
  24994. default: true
  24995. },
  24996. ]
  24997. ))
  24998. characterMakers.push(() => makeCharacter(
  24999. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25000. {
  25001. front: {
  25002. height: math.unit(6 + 3/12, "feet"),
  25003. weight: math.unit(120, "lb"),
  25004. name: "Front",
  25005. image: {
  25006. source: "./media/characters/azura/front.svg",
  25007. extra: 1149/1135,
  25008. bottom: 45/1194
  25009. }
  25010. },
  25011. frontClothed: {
  25012. height: math.unit(6 + 3/12, "feet"),
  25013. weight: math.unit(120, "lb"),
  25014. name: "Front (Clothed)",
  25015. image: {
  25016. source: "./media/characters/azura/front-clothed.svg",
  25017. extra: 1149/1135,
  25018. bottom: 45/1194
  25019. }
  25020. },
  25021. },
  25022. [
  25023. {
  25024. name: "Normal",
  25025. height: math.unit(6 + 3/12, "feet"),
  25026. default: true
  25027. },
  25028. {
  25029. name: "Macro",
  25030. height: math.unit(20 + 6/12, "feet")
  25031. },
  25032. {
  25033. name: "Megamacro",
  25034. height: math.unit(12, "miles")
  25035. },
  25036. {
  25037. name: "Gigamacro",
  25038. height: math.unit(10000, "miles")
  25039. },
  25040. {
  25041. name: "Teramacro",
  25042. height: math.unit(900000, "miles")
  25043. },
  25044. ]
  25045. ))
  25046. characterMakers.push(() => makeCharacter(
  25047. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25048. {
  25049. front: {
  25050. height: math.unit(12, "feet"),
  25051. weight: math.unit(1, "ton"),
  25052. capacity: math.unit(660000, "gallons"),
  25053. name: "Front",
  25054. image: {
  25055. source: "./media/characters/zeus/front.svg",
  25056. extra: 5005/4717,
  25057. bottom: 363/5388
  25058. }
  25059. },
  25060. },
  25061. [
  25062. {
  25063. name: "Normal",
  25064. height: math.unit(12, "feet")
  25065. },
  25066. {
  25067. name: "Preferred Size",
  25068. height: math.unit(0.5, "miles"),
  25069. default: true
  25070. },
  25071. {
  25072. name: "Giga Horse",
  25073. height: math.unit(300, "miles")
  25074. },
  25075. {
  25076. name: "Riding Planets",
  25077. height: math.unit(30, "megameters")
  25078. },
  25079. {
  25080. name: "Cosmic Giant",
  25081. height: math.unit(3, "zettameters")
  25082. },
  25083. {
  25084. name: "Breeding God",
  25085. height: math.unit(9.92e22, "yottameters")
  25086. },
  25087. ]
  25088. ))
  25089. characterMakers.push(() => makeCharacter(
  25090. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25091. {
  25092. side: {
  25093. height: math.unit(9, "feet"),
  25094. weight: math.unit(1500, "kg"),
  25095. name: "Side",
  25096. image: {
  25097. source: "./media/characters/fang/side.svg",
  25098. extra: 924/866,
  25099. bottom: 47.5/972.3
  25100. }
  25101. },
  25102. },
  25103. [
  25104. {
  25105. name: "Normal",
  25106. height: math.unit(9, "feet"),
  25107. default: true
  25108. },
  25109. {
  25110. name: "Macro",
  25111. height: math.unit(75 + 6/12, "feet")
  25112. },
  25113. {
  25114. name: "Teramacro",
  25115. height: math.unit(50000, "miles")
  25116. },
  25117. ]
  25118. ))
  25119. characterMakers.push(() => makeCharacter(
  25120. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25121. {
  25122. front: {
  25123. height: math.unit(10, "feet"),
  25124. weight: math.unit(2, "tons"),
  25125. name: "Front",
  25126. image: {
  25127. source: "./media/characters/rekhit/front.svg",
  25128. extra: 2796/2590,
  25129. bottom: 225/3022
  25130. }
  25131. },
  25132. },
  25133. [
  25134. {
  25135. name: "Normal",
  25136. height: math.unit(10, "feet"),
  25137. default: true
  25138. },
  25139. {
  25140. name: "Macro",
  25141. height: math.unit(500, "feet")
  25142. },
  25143. ]
  25144. ))
  25145. characterMakers.push(() => makeCharacter(
  25146. { name: "Dahlia Verrick" },
  25147. {
  25148. front: {
  25149. height: math.unit(7 + 6.451/12, "feet"),
  25150. weight: math.unit(310, "lb"),
  25151. name: "Front",
  25152. image: {
  25153. source: "./media/characters/dahlia-verrick/front.svg",
  25154. extra: 1488/1365,
  25155. bottom: 6.2/1495
  25156. }
  25157. },
  25158. back: {
  25159. height: math.unit(7 + 6.451/12, "feet"),
  25160. weight: math.unit(310, "lb"),
  25161. name: "Back",
  25162. image: {
  25163. source: "./media/characters/dahlia-verrick/back.svg",
  25164. extra: 1472/1351,
  25165. bottom: 5.28/1477
  25166. }
  25167. },
  25168. frontBusiness: {
  25169. height: math.unit(7 + 6.451/12, "feet"),
  25170. weight: math.unit(200, "lb"),
  25171. name: "Front (Business)",
  25172. image: {
  25173. source: "./media/characters/dahlia-verrick/front-business.svg",
  25174. extra: 1478/1381,
  25175. bottom: 5.5/1484
  25176. }
  25177. },
  25178. frontCasual: {
  25179. height: math.unit(7 + 6.451/12, "feet"),
  25180. weight: math.unit(200, "lb"),
  25181. name: "Front (Casual)",
  25182. image: {
  25183. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25184. extra: 1478/1381,
  25185. bottom: 5.5/1484
  25186. }
  25187. },
  25188. },
  25189. [
  25190. {
  25191. name: "Travel-Sized",
  25192. height: math.unit(7.45, "inches")
  25193. },
  25194. {
  25195. name: "Normal",
  25196. height: math.unit(7 + 6.451/12, "feet"),
  25197. default: true
  25198. },
  25199. {
  25200. name: "Hitting the Town",
  25201. height: math.unit(37 + 8/12, "feet")
  25202. },
  25203. {
  25204. name: "Stomp in the Suburbs",
  25205. height: math.unit(964 + 9.728/12, "feet")
  25206. },
  25207. {
  25208. name: "Sit on the City",
  25209. height: math.unit(61747 + 10.592/12, "feet")
  25210. },
  25211. {
  25212. name: "Glomp the Globe",
  25213. height: math.unit(252919327 + 4.832/12, "feet")
  25214. },
  25215. ]
  25216. ))
  25217. characterMakers.push(() => makeCharacter(
  25218. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25219. {
  25220. front: {
  25221. height: math.unit(6 + 4/12, "feet"),
  25222. weight: math.unit(320, "lb"),
  25223. name: "Front",
  25224. image: {
  25225. source: "./media/characters/balina-mahigan/front.svg",
  25226. extra: 447/428,
  25227. bottom: 18/466
  25228. }
  25229. },
  25230. back: {
  25231. height: math.unit(6 + 4/12, "feet"),
  25232. weight: math.unit(320, "lb"),
  25233. name: "Back",
  25234. image: {
  25235. source: "./media/characters/balina-mahigan/back.svg",
  25236. extra: 445/428,
  25237. bottom: 4.07/448
  25238. }
  25239. },
  25240. arm: {
  25241. height: math.unit(1.88, "feet"),
  25242. name: "Arm",
  25243. image: {
  25244. source: "./media/characters/balina-mahigan/arm.svg"
  25245. }
  25246. },
  25247. backPort: {
  25248. height: math.unit(0.685, "feet"),
  25249. name: "Back Port",
  25250. image: {
  25251. source: "./media/characters/balina-mahigan/back-port.svg"
  25252. }
  25253. },
  25254. hoofpaw: {
  25255. height: math.unit(1.41, "feet"),
  25256. name: "Hoofpaw",
  25257. image: {
  25258. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25259. }
  25260. },
  25261. leftHandBack: {
  25262. height: math.unit(0.938, "feet"),
  25263. name: "Left Hand (Back)",
  25264. image: {
  25265. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25266. }
  25267. },
  25268. leftHandFront: {
  25269. height: math.unit(0.938, "feet"),
  25270. name: "Left Hand (Front)",
  25271. image: {
  25272. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25273. }
  25274. },
  25275. rightHandBack: {
  25276. height: math.unit(0.95, "feet"),
  25277. name: "Right Hand (Back)",
  25278. image: {
  25279. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25280. }
  25281. },
  25282. rightHandFront: {
  25283. height: math.unit(0.95, "feet"),
  25284. name: "Right Hand (Front)",
  25285. image: {
  25286. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25287. }
  25288. },
  25289. },
  25290. [
  25291. {
  25292. name: "Normal",
  25293. height: math.unit(6 + 4/12, "feet"),
  25294. default: true
  25295. },
  25296. ]
  25297. ))
  25298. characterMakers.push(() => makeCharacter(
  25299. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25300. {
  25301. front: {
  25302. height: math.unit(6, "feet"),
  25303. weight: math.unit(320, "lb"),
  25304. name: "Front",
  25305. image: {
  25306. source: "./media/characters/balina-mejeri/front.svg",
  25307. extra: 517/488,
  25308. bottom: 44.2/561
  25309. }
  25310. },
  25311. },
  25312. [
  25313. {
  25314. name: "Normal",
  25315. height: math.unit(6 + 4/12, "feet")
  25316. },
  25317. {
  25318. name: "Business",
  25319. height: math.unit(155, "feet"),
  25320. default: true
  25321. },
  25322. ]
  25323. ))
  25324. characterMakers.push(() => makeCharacter(
  25325. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25326. {
  25327. kneeling: {
  25328. height: math.unit(6 + 4/12, "feet"),
  25329. weight: math.unit(300*20, "lb"),
  25330. name: "Kneeling",
  25331. image: {
  25332. source: "./media/characters/balbarian/kneeling.svg",
  25333. extra: 922/862,
  25334. bottom: 42.4/965
  25335. }
  25336. },
  25337. },
  25338. [
  25339. {
  25340. name: "Normal",
  25341. height: math.unit(6 + 4/12, "feet")
  25342. },
  25343. {
  25344. name: "Treasured",
  25345. height: math.unit(18 + 9/12, "feet"),
  25346. default: true
  25347. },
  25348. {
  25349. name: "Macro",
  25350. height: math.unit(900, "feet")
  25351. },
  25352. ]
  25353. ))
  25354. characterMakers.push(() => makeCharacter(
  25355. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25356. {
  25357. front: {
  25358. height: math.unit(6 + 4/12, "feet"),
  25359. weight: math.unit(325, "lb"),
  25360. name: "Front",
  25361. image: {
  25362. source: "./media/characters/balina-amarini/front.svg",
  25363. extra: 415/403,
  25364. bottom: 19/433.4
  25365. }
  25366. },
  25367. back: {
  25368. height: math.unit(6 + 4/12, "feet"),
  25369. weight: math.unit(325, "lb"),
  25370. name: "Back",
  25371. image: {
  25372. source: "./media/characters/balina-amarini/back.svg",
  25373. extra: 415/403,
  25374. bottom: 13.5/432
  25375. }
  25376. },
  25377. overdrive: {
  25378. height: math.unit(6 + 4/12, "feet"),
  25379. weight: math.unit(400, "lb"),
  25380. name: "Overdrive",
  25381. image: {
  25382. source: "./media/characters/balina-amarini/overdrive.svg",
  25383. extra: 269/259,
  25384. bottom: 12/282
  25385. }
  25386. },
  25387. },
  25388. [
  25389. {
  25390. name: "Boom",
  25391. height: math.unit(9 + 10/12, "feet"),
  25392. default: true
  25393. },
  25394. {
  25395. name: "Macro",
  25396. height: math.unit(280, "feet")
  25397. },
  25398. ]
  25399. ))
  25400. characterMakers.push(() => makeCharacter(
  25401. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25402. {
  25403. goddess: {
  25404. height: math.unit(600, "feet"),
  25405. weight: math.unit(2000000, "tons"),
  25406. name: "Goddess",
  25407. image: {
  25408. source: "./media/characters/lady-kubwa/goddess.svg",
  25409. extra: 1240.5/1223,
  25410. bottom: 22/1263
  25411. }
  25412. },
  25413. goddesser: {
  25414. height: math.unit(900, "feet"),
  25415. weight: math.unit(20000000, "lb"),
  25416. name: "Goddess-er",
  25417. image: {
  25418. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25419. extra: 899/888,
  25420. bottom: 12.6/912
  25421. }
  25422. },
  25423. },
  25424. [
  25425. {
  25426. name: "Macro",
  25427. height: math.unit(600, "feet"),
  25428. default: true
  25429. },
  25430. {
  25431. name: "Megamacro",
  25432. height: math.unit(250, "miles")
  25433. },
  25434. ]
  25435. ))
  25436. characterMakers.push(() => makeCharacter(
  25437. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25438. {
  25439. front: {
  25440. height: math.unit(7 + 7/12, "feet"),
  25441. weight: math.unit(250, "lb"),
  25442. name: "Front",
  25443. image: {
  25444. source: "./media/characters/tala-grovehorn/front.svg",
  25445. extra: 2636/2525,
  25446. bottom: 147/2781
  25447. }
  25448. },
  25449. back: {
  25450. height: math.unit(7 + 7/12, "feet"),
  25451. weight: math.unit(250, "lb"),
  25452. name: "Back",
  25453. image: {
  25454. source: "./media/characters/tala-grovehorn/back.svg",
  25455. extra: 2635/2539,
  25456. bottom: 100/2732.8
  25457. }
  25458. },
  25459. mouth: {
  25460. height: math.unit(1.15, "feet"),
  25461. name: "Mouth",
  25462. image: {
  25463. source: "./media/characters/tala-grovehorn/mouth.svg"
  25464. }
  25465. },
  25466. dick: {
  25467. height: math.unit(2.36, "feet"),
  25468. name: "Dick",
  25469. image: {
  25470. source: "./media/characters/tala-grovehorn/dick.svg"
  25471. }
  25472. },
  25473. slit: {
  25474. height: math.unit(0.61, "feet"),
  25475. name: "Slit",
  25476. image: {
  25477. source: "./media/characters/tala-grovehorn/slit.svg"
  25478. }
  25479. },
  25480. },
  25481. [
  25482. ]
  25483. ))
  25484. characterMakers.push(() => makeCharacter(
  25485. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25486. {
  25487. front: {
  25488. height: math.unit(7 + 7/12, "feet"),
  25489. weight: math.unit(225, "lb"),
  25490. name: "Front",
  25491. image: {
  25492. source: "./media/characters/epona/front.svg",
  25493. extra: 2445/2290,
  25494. bottom: 251/2696
  25495. }
  25496. },
  25497. back: {
  25498. height: math.unit(7 + 7/12, "feet"),
  25499. weight: math.unit(225, "lb"),
  25500. name: "Back",
  25501. image: {
  25502. source: "./media/characters/epona/back.svg",
  25503. extra: 2546/2408,
  25504. bottom: 44/2589
  25505. }
  25506. },
  25507. genitals: {
  25508. height: math.unit(1.5, "feet"),
  25509. name: "Genitals",
  25510. image: {
  25511. source: "./media/characters/epona/genitals.svg"
  25512. }
  25513. },
  25514. },
  25515. [
  25516. {
  25517. name: "Normal",
  25518. height: math.unit(7 + 7/12, "feet")
  25519. },
  25520. ]
  25521. ))
  25522. characterMakers.push(() => makeCharacter(
  25523. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25524. {
  25525. front: {
  25526. height: math.unit(7, "feet"),
  25527. weight: math.unit(518, "lb"),
  25528. name: "Front",
  25529. image: {
  25530. source: "./media/characters/avia-bloodbourn/front.svg",
  25531. extra: 1466/1350,
  25532. bottom: 65/1527
  25533. }
  25534. },
  25535. },
  25536. [
  25537. ]
  25538. ))
  25539. characterMakers.push(() => makeCharacter(
  25540. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25541. {
  25542. front: {
  25543. height: math.unit(9.35, "feet"),
  25544. weight: math.unit(600, "lb"),
  25545. name: "Front",
  25546. image: {
  25547. source: "./media/characters/amera/front.svg",
  25548. extra: 891/818,
  25549. bottom: 30/922.7
  25550. }
  25551. },
  25552. back: {
  25553. height: math.unit(9.35, "feet"),
  25554. weight: math.unit(600, "lb"),
  25555. name: "Back",
  25556. image: {
  25557. source: "./media/characters/amera/back.svg",
  25558. extra: 876/824,
  25559. bottom: 6.8/884
  25560. }
  25561. },
  25562. dick: {
  25563. height: math.unit(2.14, "feet"),
  25564. name: "Dick",
  25565. image: {
  25566. source: "./media/characters/amera/dick.svg"
  25567. }
  25568. },
  25569. },
  25570. [
  25571. {
  25572. name: "Normal",
  25573. height: math.unit(9.35, "feet"),
  25574. default: true
  25575. },
  25576. ]
  25577. ))
  25578. characterMakers.push(() => makeCharacter(
  25579. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25580. {
  25581. kneeling: {
  25582. height: math.unit(3 + 4/12, "feet"),
  25583. weight: math.unit(90, "lb"),
  25584. name: "Kneeling",
  25585. image: {
  25586. source: "./media/characters/rosewen/kneeling.svg",
  25587. extra: 1835/1571,
  25588. bottom: 27.7/1862
  25589. }
  25590. },
  25591. },
  25592. [
  25593. {
  25594. name: "Normal",
  25595. height: math.unit(3 + 4/12, "feet"),
  25596. default: true
  25597. },
  25598. ]
  25599. ))
  25600. characterMakers.push(() => makeCharacter(
  25601. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25602. {
  25603. front: {
  25604. height: math.unit(5 + 10/12, "feet"),
  25605. weight: math.unit(200, "lb"),
  25606. name: "Front",
  25607. image: {
  25608. source: "./media/characters/sabah/front.svg",
  25609. extra: 849/763,
  25610. bottom: 33.9/881
  25611. }
  25612. },
  25613. },
  25614. [
  25615. {
  25616. name: "Normal",
  25617. height: math.unit(5 + 10/12, "feet"),
  25618. default: true
  25619. },
  25620. ]
  25621. ))
  25622. characterMakers.push(() => makeCharacter(
  25623. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25624. {
  25625. front: {
  25626. height: math.unit(3 + 5/12, "feet"),
  25627. weight: math.unit(40, "kg"),
  25628. name: "Front",
  25629. image: {
  25630. source: "./media/characters/purple-flame/front.svg",
  25631. extra: 1577/1412,
  25632. bottom: 97/1694
  25633. }
  25634. },
  25635. frontDressed: {
  25636. height: math.unit(3 + 5/12, "feet"),
  25637. weight: math.unit(40, "kg"),
  25638. name: "Front (Dressed)",
  25639. image: {
  25640. source: "./media/characters/purple-flame/front-dressed.svg",
  25641. extra: 1577/1412,
  25642. bottom: 97/1694
  25643. }
  25644. },
  25645. headphones: {
  25646. height: math.unit(0.85, "feet"),
  25647. name: "Headphones",
  25648. image: {
  25649. source: "./media/characters/purple-flame/headphones.svg"
  25650. }
  25651. },
  25652. },
  25653. [
  25654. {
  25655. name: "Really Small",
  25656. height: math.unit(5, "cm")
  25657. },
  25658. {
  25659. name: "Micro",
  25660. height: math.unit(1 + 5/12, "feet")
  25661. },
  25662. {
  25663. name: "Normal",
  25664. height: math.unit(3 + 5/12, "feet"),
  25665. default: true
  25666. },
  25667. {
  25668. name: "Minimacro",
  25669. height: math.unit(125, "feet")
  25670. },
  25671. {
  25672. name: "Macro",
  25673. height: math.unit(0.5, "miles")
  25674. },
  25675. {
  25676. name: "Megamacro",
  25677. height: math.unit(50, "miles")
  25678. },
  25679. {
  25680. name: "Gigantic",
  25681. height: math.unit(750, "miles")
  25682. },
  25683. {
  25684. name: "Planetary",
  25685. height: math.unit(15000, "miles")
  25686. },
  25687. ]
  25688. ))
  25689. characterMakers.push(() => makeCharacter(
  25690. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  25691. {
  25692. front: {
  25693. height: math.unit(14, "feet"),
  25694. weight: math.unit(959, "lb"),
  25695. name: "Front",
  25696. image: {
  25697. source: "./media/characters/arsenal/front.svg",
  25698. extra: 2357/2157,
  25699. bottom: 93/2458
  25700. }
  25701. },
  25702. },
  25703. [
  25704. {
  25705. name: "Normal",
  25706. height: math.unit(14, "feet"),
  25707. default: true
  25708. },
  25709. ]
  25710. ))
  25711. characterMakers.push(() => makeCharacter(
  25712. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  25713. {
  25714. front: {
  25715. height: math.unit(6, "feet"),
  25716. weight: math.unit(150, "lb"),
  25717. name: "Front",
  25718. image: {
  25719. source: "./media/characters/adira/front.svg",
  25720. extra: 1078/1029,
  25721. bottom: 87/1166
  25722. }
  25723. },
  25724. },
  25725. [
  25726. {
  25727. name: "Micro",
  25728. height: math.unit(4, "inches"),
  25729. default: true
  25730. },
  25731. {
  25732. name: "Macro",
  25733. height: math.unit(50, "feet")
  25734. },
  25735. ]
  25736. ))
  25737. characterMakers.push(() => makeCharacter(
  25738. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  25739. {
  25740. front: {
  25741. height: math.unit(16, "feet"),
  25742. weight: math.unit(1000, "lb"),
  25743. name: "Front",
  25744. image: {
  25745. source: "./media/characters/grim/front.svg",
  25746. extra: 622/614,
  25747. bottom: 18.1/642
  25748. }
  25749. },
  25750. back: {
  25751. height: math.unit(16, "feet"),
  25752. weight: math.unit(1000, "lb"),
  25753. name: "Back",
  25754. image: {
  25755. source: "./media/characters/grim/back.svg",
  25756. extra: 610.6/602,
  25757. bottom: 40.8/652
  25758. }
  25759. },
  25760. hunched: {
  25761. height: math.unit(9.75, "feet"),
  25762. weight: math.unit(1000, "lb"),
  25763. name: "Hunched",
  25764. image: {
  25765. source: "./media/characters/grim/hunched.svg",
  25766. extra: 304/297,
  25767. bottom: 35.4/394
  25768. }
  25769. },
  25770. },
  25771. [
  25772. {
  25773. name: "Normal",
  25774. height: math.unit(16, "feet"),
  25775. default: true
  25776. },
  25777. ]
  25778. ))
  25779. characterMakers.push(() => makeCharacter(
  25780. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  25781. {
  25782. front: {
  25783. height: math.unit(2.3, "meters"),
  25784. weight: math.unit(300, "lb"),
  25785. name: "Front",
  25786. image: {
  25787. source: "./media/characters/sinja/front-sfw.svg",
  25788. extra: 1393/1294,
  25789. bottom: 70/1463
  25790. }
  25791. },
  25792. frontNsfw: {
  25793. height: math.unit(2.3, "meters"),
  25794. weight: math.unit(300, "lb"),
  25795. name: "Front (NSFW)",
  25796. image: {
  25797. source: "./media/characters/sinja/front-nsfw.svg",
  25798. extra: 1393/1294,
  25799. bottom: 70/1463
  25800. }
  25801. },
  25802. back: {
  25803. height: math.unit(2.3, "meters"),
  25804. weight: math.unit(300, "lb"),
  25805. name: "Back",
  25806. image: {
  25807. source: "./media/characters/sinja/back.svg",
  25808. extra: 1393/1294,
  25809. bottom: 70/1463
  25810. }
  25811. },
  25812. head: {
  25813. height: math.unit(1.771, "feet"),
  25814. name: "Head",
  25815. image: {
  25816. source: "./media/characters/sinja/head.svg"
  25817. }
  25818. },
  25819. slit: {
  25820. height: math.unit(0.8, "feet"),
  25821. name: "Slit",
  25822. image: {
  25823. source: "./media/characters/sinja/slit.svg"
  25824. }
  25825. },
  25826. },
  25827. [
  25828. {
  25829. name: "Normal",
  25830. height: math.unit(2.3, "meters")
  25831. },
  25832. {
  25833. name: "Macro",
  25834. height: math.unit(91, "meters"),
  25835. default: true
  25836. },
  25837. {
  25838. name: "Megamacro",
  25839. height: math.unit(91440, "meters")
  25840. },
  25841. {
  25842. name: "Gigamacro",
  25843. height: math.unit(60960000, "meters")
  25844. },
  25845. {
  25846. name: "Teramacro",
  25847. height: math.unit(9144000000, "meters")
  25848. },
  25849. ]
  25850. ))
  25851. characterMakers.push(() => makeCharacter(
  25852. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  25853. {
  25854. front: {
  25855. height: math.unit(1.7, "meters"),
  25856. weight: math.unit(130, "lb"),
  25857. name: "Front",
  25858. image: {
  25859. source: "./media/characters/kyu/front.svg",
  25860. extra: 415/395,
  25861. bottom: 5/420
  25862. }
  25863. },
  25864. head: {
  25865. height: math.unit(1.75, "feet"),
  25866. name: "Head",
  25867. image: {
  25868. source: "./media/characters/kyu/head.svg"
  25869. }
  25870. },
  25871. foot: {
  25872. height: math.unit(0.81, "feet"),
  25873. name: "Foot",
  25874. image: {
  25875. source: "./media/characters/kyu/foot.svg"
  25876. }
  25877. },
  25878. },
  25879. [
  25880. {
  25881. name: "Normal",
  25882. height: math.unit(1.7, "meters")
  25883. },
  25884. {
  25885. name: "Macro",
  25886. height: math.unit(131, "feet"),
  25887. default: true
  25888. },
  25889. {
  25890. name: "Megamacro",
  25891. height: math.unit(91440, "meters")
  25892. },
  25893. {
  25894. name: "Gigamacro",
  25895. height: math.unit(60960000, "meters")
  25896. },
  25897. {
  25898. name: "Teramacro",
  25899. height: math.unit(9144000000, "meters")
  25900. },
  25901. ]
  25902. ))
  25903. characterMakers.push(() => makeCharacter(
  25904. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  25905. {
  25906. front: {
  25907. height: math.unit(7 + 1/12, "feet"),
  25908. weight: math.unit(250, "lb"),
  25909. name: "Front",
  25910. image: {
  25911. source: "./media/characters/joey/front.svg",
  25912. extra: 1791/1537,
  25913. bottom: 28/1816
  25914. }
  25915. },
  25916. },
  25917. [
  25918. {
  25919. name: "Micro",
  25920. height: math.unit(3, "inches")
  25921. },
  25922. {
  25923. name: "Normal",
  25924. height: math.unit(7 + 1/12, "feet"),
  25925. default: true
  25926. },
  25927. ]
  25928. ))
  25929. characterMakers.push(() => makeCharacter(
  25930. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  25931. {
  25932. front: {
  25933. height: math.unit(165, "cm"),
  25934. weight: math.unit(140, "lb"),
  25935. name: "Front",
  25936. image: {
  25937. source: "./media/characters/sam-evans/front.svg",
  25938. extra: 3417/3230,
  25939. bottom: 41.3/3417
  25940. }
  25941. },
  25942. frontSixTails: {
  25943. height: math.unit(165, "cm"),
  25944. weight: math.unit(140, "lb"),
  25945. name: "Front-six-tails",
  25946. image: {
  25947. source: "./media/characters/sam-evans/front-six-tails.svg",
  25948. extra: 3417/3230,
  25949. bottom: 41.3/3417
  25950. }
  25951. },
  25952. back: {
  25953. height: math.unit(165, "cm"),
  25954. weight: math.unit(140, "lb"),
  25955. name: "Back",
  25956. image: {
  25957. source: "./media/characters/sam-evans/back.svg",
  25958. extra: 3227/3032,
  25959. bottom: 6.8/3234
  25960. }
  25961. },
  25962. face: {
  25963. height: math.unit(0.68, "feet"),
  25964. name: "Face",
  25965. image: {
  25966. source: "./media/characters/sam-evans/face.svg"
  25967. }
  25968. },
  25969. },
  25970. [
  25971. {
  25972. name: "Normal",
  25973. height: math.unit(165, "cm"),
  25974. default: true
  25975. },
  25976. {
  25977. name: "Macro",
  25978. height: math.unit(100, "meters")
  25979. },
  25980. {
  25981. name: "Macro+",
  25982. height: math.unit(800, "meters")
  25983. },
  25984. {
  25985. name: "Macro++",
  25986. height: math.unit(3, "km")
  25987. },
  25988. {
  25989. name: "Macro+++",
  25990. height: math.unit(30, "km")
  25991. },
  25992. ]
  25993. ))
  25994. characterMakers.push(() => makeCharacter(
  25995. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  25996. {
  25997. front: {
  25998. height: math.unit(10, "feet"),
  25999. weight: math.unit(750, "lb"),
  26000. name: "Front",
  26001. image: {
  26002. source: "./media/characters/juliet-a/front.svg",
  26003. extra: 1766/1720,
  26004. bottom: 43/1809
  26005. }
  26006. },
  26007. back: {
  26008. height: math.unit(10, "feet"),
  26009. weight: math.unit(750, "lb"),
  26010. name: "Back",
  26011. image: {
  26012. source: "./media/characters/juliet-a/back.svg",
  26013. extra: 1781/1734,
  26014. bottom: 35/1810,
  26015. }
  26016. },
  26017. },
  26018. [
  26019. {
  26020. name: "Normal",
  26021. height: math.unit(10, "feet"),
  26022. default: true
  26023. },
  26024. {
  26025. name: "Dragon Form",
  26026. height: math.unit(250, "feet")
  26027. },
  26028. {
  26029. name: "Macro",
  26030. height: math.unit(1000, "feet")
  26031. },
  26032. {
  26033. name: "Megamacro",
  26034. height: math.unit(10000, "feet")
  26035. }
  26036. ]
  26037. ))
  26038. characterMakers.push(() => makeCharacter(
  26039. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26040. {
  26041. regular: {
  26042. height: math.unit(7 + 3/12, "feet"),
  26043. weight: math.unit(260, "lb"),
  26044. name: "Regular",
  26045. image: {
  26046. source: "./media/characters/wild/regular.svg",
  26047. extra: 97.45/92,
  26048. bottom: 6.8/104.3
  26049. }
  26050. },
  26051. biggums: {
  26052. height: math.unit(8 + 6 /12, "feet"),
  26053. weight: math.unit(425, "lb"),
  26054. name: "Biggums",
  26055. image: {
  26056. source: "./media/characters/wild/biggums.svg",
  26057. extra: 97.45/92,
  26058. bottom: 7.5/132.34
  26059. }
  26060. },
  26061. mawRegular: {
  26062. height: math.unit(1.24, "feet"),
  26063. name: "Maw (Regular)",
  26064. image: {
  26065. source: "./media/characters/wild/maw.svg"
  26066. }
  26067. },
  26068. mawBiggums: {
  26069. height: math.unit(1.47, "feet"),
  26070. name: "Maw (Biggums)",
  26071. image: {
  26072. source: "./media/characters/wild/maw.svg"
  26073. }
  26074. },
  26075. },
  26076. [
  26077. {
  26078. name: "Normal",
  26079. height: math.unit(7 + 3/12, "feet"),
  26080. default: true
  26081. },
  26082. ]
  26083. ))
  26084. characterMakers.push(() => makeCharacter(
  26085. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26086. {
  26087. front: {
  26088. height: math.unit(2.5, "meters"),
  26089. weight: math.unit(200, "kg"),
  26090. name: "Front",
  26091. image: {
  26092. source: "./media/characters/vidar/front.svg",
  26093. extra: 2994/2795,
  26094. bottom: 56/3061
  26095. }
  26096. },
  26097. back: {
  26098. height: math.unit(2.5, "meters"),
  26099. weight: math.unit(200, "kg"),
  26100. name: "Back",
  26101. image: {
  26102. source: "./media/characters/vidar/back.svg",
  26103. extra: 3131/2928,
  26104. bottom: 13.5/3141.5
  26105. }
  26106. },
  26107. feral: {
  26108. height: math.unit(2.5, "meters"),
  26109. weight: math.unit(2000, "kg"),
  26110. name: "Feral",
  26111. image: {
  26112. source: "./media/characters/vidar/feral.svg",
  26113. extra: 2790/1765,
  26114. bottom: 6/2796
  26115. }
  26116. },
  26117. },
  26118. [
  26119. {
  26120. name: "Normal",
  26121. height: math.unit(2.5, "meters"),
  26122. default: true
  26123. },
  26124. {
  26125. name: "Macro",
  26126. height: math.unit(100, "meters")
  26127. },
  26128. ]
  26129. ))
  26130. characterMakers.push(() => makeCharacter(
  26131. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26132. {
  26133. front: {
  26134. height: math.unit(5 + 9/12, "feet"),
  26135. weight: math.unit(120, "lb"),
  26136. name: "Front",
  26137. image: {
  26138. source: "./media/characters/ash/front.svg",
  26139. extra: 2189/1961,
  26140. bottom: 5.2/2194
  26141. }
  26142. },
  26143. },
  26144. [
  26145. {
  26146. name: "Normal",
  26147. height: math.unit(5 + 9/12, "feet"),
  26148. default: true
  26149. },
  26150. ]
  26151. ))
  26152. characterMakers.push(() => makeCharacter(
  26153. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26154. {
  26155. front: {
  26156. height: math.unit(9, "feet"),
  26157. weight: math.unit(10000, "lb"),
  26158. name: "Front",
  26159. image: {
  26160. source: "./media/characters/gygabite/front.svg",
  26161. bottom: 31.7/537.8,
  26162. extra: 505/370
  26163. }
  26164. },
  26165. },
  26166. [
  26167. {
  26168. name: "Normal",
  26169. height: math.unit(9, "feet"),
  26170. default: true
  26171. },
  26172. ]
  26173. ))
  26174. characterMakers.push(() => makeCharacter(
  26175. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26176. {
  26177. front: {
  26178. height: math.unit(12, "feet"),
  26179. weight: math.unit(35000, "lb"),
  26180. name: "Front",
  26181. image: {
  26182. source: "./media/characters/p0tat0/front.svg",
  26183. extra: 1065/921,
  26184. bottom: 55.7/1121.25
  26185. }
  26186. },
  26187. },
  26188. [
  26189. {
  26190. name: "Normal",
  26191. height: math.unit(12, "feet"),
  26192. default: true
  26193. },
  26194. ]
  26195. ))
  26196. characterMakers.push(() => makeCharacter(
  26197. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26198. {
  26199. side: {
  26200. height: math.unit(6.5, "feet"),
  26201. weight: math.unit(800, "lb"),
  26202. name: "Side",
  26203. image: {
  26204. source: "./media/characters/dusk/side.svg",
  26205. extra: 615/373,
  26206. bottom: 53/664
  26207. }
  26208. },
  26209. sitting: {
  26210. height: math.unit(7, "feet"),
  26211. weight: math.unit(800, "lb"),
  26212. name: "Sitting",
  26213. image: {
  26214. source: "./media/characters/dusk/sitting.svg",
  26215. extra: 753/425,
  26216. bottom: 33/774
  26217. }
  26218. },
  26219. head: {
  26220. height: math.unit(6.1, "feet"),
  26221. name: "Head",
  26222. image: {
  26223. source: "./media/characters/dusk/head.svg"
  26224. }
  26225. },
  26226. },
  26227. [
  26228. {
  26229. name: "Normal",
  26230. height: math.unit(7, "feet"),
  26231. default: true
  26232. },
  26233. ]
  26234. ))
  26235. characterMakers.push(() => makeCharacter(
  26236. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26237. {
  26238. front: {
  26239. height: math.unit(15, "feet"),
  26240. weight: math.unit(7000, "lb"),
  26241. name: "Front",
  26242. image: {
  26243. source: "./media/characters/jay-direwolf/front.svg",
  26244. extra: 1810/1732,
  26245. bottom: 66/1892
  26246. }
  26247. },
  26248. },
  26249. [
  26250. {
  26251. name: "Normal",
  26252. height: math.unit(15, "feet"),
  26253. default: true
  26254. },
  26255. ]
  26256. ))
  26257. //characters
  26258. function makeCharacters() {
  26259. const results = [];
  26260. characterMakers.forEach(character => {
  26261. results.push(character());
  26262. });
  26263. return results;
  26264. }