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.
 
 
 

31909 lines
800 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.capacity) {
  29. views[key].attributes.capacity = {
  30. name: "Capacity",
  31. power: 3,
  32. type: "volume",
  33. base: value.capacity
  34. }
  35. }
  36. });
  37. return createEntityMaker(info, views, defaultSizes);
  38. }
  39. const speciesData = {
  40. animal: {
  41. name: "Animal"
  42. },
  43. dog: {
  44. name: "Dog",
  45. parents: [
  46. "canine"
  47. ]
  48. },
  49. canine: {
  50. name: "Canine",
  51. parents: [
  52. "mammal"
  53. ]
  54. },
  55. crux: {
  56. name: "Crux",
  57. parents: [
  58. "mammal"
  59. ]
  60. },
  61. mammal: {
  62. name: "Mammal",
  63. parents: [
  64. "animal"
  65. ]
  66. },
  67. "rough-collie": {
  68. name: "Rough Collie",
  69. parents: [
  70. "dog"
  71. ]
  72. },
  73. dragon: {
  74. name: "Dragon",
  75. parents: [
  76. "reptile"
  77. ]
  78. },
  79. reptile: {
  80. name: "Reptile",
  81. parents: [
  82. "animal"
  83. ]
  84. },
  85. woodpecker: {
  86. name: "Woodpecker",
  87. parents: [
  88. "avian"
  89. ]
  90. },
  91. avian: {
  92. name: "Avian",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. kitsune: {
  98. name: "Kitsune",
  99. parents: [
  100. "fox"
  101. ]
  102. },
  103. fox: {
  104. name: "Fox",
  105. parents: [
  106. "mammal"
  107. ]
  108. },
  109. pokemon: {
  110. name: "Pokemon"
  111. },
  112. tiger: {
  113. name: "Tiger",
  114. parents: [
  115. "cat"
  116. ]
  117. },
  118. cat: {
  119. name: "Cat",
  120. parents: [
  121. "mammal"
  122. ]
  123. },
  124. "blue-jay": {
  125. name: "Blue Jay",
  126. parents: [
  127. "avian"
  128. ]
  129. },
  130. wolf: {
  131. name: "Wolf",
  132. parents: [
  133. "mammal"
  134. ]
  135. },
  136. coyote: {
  137. name: "Coyote",
  138. parents: [
  139. "mammal"
  140. ]
  141. },
  142. raccoon: {
  143. name: "Raccoon",
  144. parents: [
  145. "mammal"
  146. ]
  147. },
  148. weasel: {
  149. name: "Weasel",
  150. parents: [
  151. "mammal"
  152. ]
  153. },
  154. "red-panda": {
  155. name: "Red Panda",
  156. parents: [
  157. "mammal"
  158. ]
  159. },
  160. dolphin: {
  161. name: "Dolphin",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. "african-wild-dog": {
  167. name: "African Wild Dog",
  168. parents: [
  169. "canine"
  170. ]
  171. },
  172. "hyena": {
  173. name: "Hyena",
  174. parents: [
  175. "canine"
  176. ]
  177. },
  178. "carbuncle": {
  179. name: "Carbuncle",
  180. parents: [
  181. "animal"
  182. ]
  183. },
  184. bat: {
  185. name: "Bat",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. "leaf-nosed-bat": {
  191. name: "Leaf-Nosed Bat",
  192. parents: [
  193. "bat"
  194. ]
  195. },
  196. "fish": {
  197. name: "Fish",
  198. parents: [
  199. "animal"
  200. ]
  201. },
  202. "ram": {
  203. name: "Ram",
  204. parents: [
  205. "mammal"
  206. ]
  207. },
  208. "demon": {
  209. name: "Demon"
  210. },
  211. "cougar": {
  212. name: "Cougar",
  213. parents: [
  214. "cat"
  215. ]
  216. },
  217. "goat": {
  218. name: "Goat",
  219. parents: [
  220. "mammal"
  221. ]
  222. },
  223. "lion": {
  224. name: "Lion",
  225. parents: [
  226. "cat"
  227. ]
  228. },
  229. "harpy-eager": {
  230. name: "Harpy Eagle",
  231. parents: [
  232. "avian"
  233. ]
  234. },
  235. "deer": {
  236. name: "Deer",
  237. parents: [
  238. "mammal"
  239. ]
  240. },
  241. "phoenix": {
  242. name: "Phoenix",
  243. parents: [
  244. "avian"
  245. ]
  246. },
  247. "aeromorph": {
  248. name: "Aeromorph",
  249. parents: [
  250. "machine"
  251. ]
  252. },
  253. "machine": {
  254. name: "Machine",
  255. },
  256. "android": {
  257. name: "Android",
  258. parents: [
  259. "machine"
  260. ]
  261. },
  262. "jackal": {
  263. name: "Jackal",
  264. parents: [
  265. "canine"
  266. ]
  267. },
  268. "corvid": {
  269. name: "Corvid",
  270. parents: [
  271. "avian"
  272. ]
  273. },
  274. "pharaoh-hound": {
  275. name: "Pharaoh Hound",
  276. parents: [
  277. "dog"
  278. ]
  279. },
  280. "skunk": {
  281. name: "Skunk",
  282. parents: [
  283. "mammal"
  284. ]
  285. },
  286. "shark": {
  287. name: "Shark",
  288. parents: [
  289. "fish"
  290. ]
  291. },
  292. "black-panther": {
  293. name: "Black Panther",
  294. parents: [
  295. "cat"
  296. ]
  297. },
  298. "umbra": {
  299. name: "Umbra",
  300. parents: [
  301. "animal"
  302. ]
  303. },
  304. "raven": {
  305. name: "Raven",
  306. parents: [
  307. "corvid"
  308. ]
  309. },
  310. "snow-leopard": {
  311. name: "Snow Leopard",
  312. parents: [
  313. "cat"
  314. ]
  315. },
  316. "barbary-lion": {
  317. name: "Barbary Lion",
  318. parents: [
  319. "lion"
  320. ]
  321. },
  322. "dra'gal": {
  323. name: "Dra'Gal",
  324. parents: [
  325. "mammal"
  326. ]
  327. },
  328. "german-shepherd": {
  329. name: "German Shepherd",
  330. parents: [
  331. "dog"
  332. ]
  333. },
  334. "bayleef": {
  335. name: "Bayleef",
  336. parents: [
  337. "pokemon"
  338. ]
  339. },
  340. "mouse": {
  341. name: "Mouse",
  342. parents: [
  343. "rodent"
  344. ]
  345. },
  346. "rat": {
  347. name: "Rat",
  348. parents: [
  349. "mammal"
  350. ]
  351. },
  352. "hoshiko-beast": {
  353. name: "Hoshiko Beast",
  354. parents: ["animal"]
  355. },
  356. "snow-jugani": {
  357. name: "Snow Jugani",
  358. parents: ["cat"]
  359. },
  360. "patamon": {
  361. name: "Patamon",
  362. parents: ["digimon"]
  363. },
  364. "digimon": {
  365. name: "Digimon",
  366. },
  367. "jugani": {
  368. name: "Jugani",
  369. parents: ["cat"]
  370. },
  371. "luxray": {
  372. name: "Luxray",
  373. parents: ["pokemon"]
  374. },
  375. "mech": {
  376. name: "Mech",
  377. parents: ["machine"]
  378. },
  379. "zoid": {
  380. name: "Zoid",
  381. parents: ["mech"]
  382. },
  383. "monster": {
  384. name: "Monster",
  385. parents: ["animal"]
  386. },
  387. "foo-dog": {
  388. name: "Foo Dog",
  389. parents: ["mammal"]
  390. },
  391. "elephant": {
  392. name: "Elephant",
  393. parents: ["mammal"]
  394. },
  395. "eagle": {
  396. name: "Eagle",
  397. parents: ["avian"]
  398. },
  399. "cow": {
  400. name: "Cow",
  401. parents: ["mammal"]
  402. },
  403. "crocodile": {
  404. name: "Crocodile",
  405. parents: ["reptile"]
  406. },
  407. "borzoi": {
  408. name: "Borzoi",
  409. parents: ["dog"]
  410. },
  411. "snake": {
  412. name: "Snake",
  413. parents: ["reptile"]
  414. },
  415. "horned-bush-viper": {
  416. name: "Horned Bush Viper",
  417. parents: ["snake"]
  418. },
  419. "cobra": {
  420. name: "Cobra",
  421. parents: ["snake"]
  422. },
  423. "harpy-eagle": {
  424. name: "Harpy Eagle",
  425. parents: ["eagle"]
  426. },
  427. "raptor": {
  428. name: "Raptor",
  429. parents: ["dinosaur"]
  430. },
  431. "dinosaur": {
  432. name: "Dinosaur",
  433. parents: ["reptile"]
  434. },
  435. "veilhound": {
  436. name: "Veilhound",
  437. parents: ["hellhound", "demon"]
  438. },
  439. "hellhound": {
  440. name: "Hellhound",
  441. parents: ["canine"]
  442. },
  443. "insect": {
  444. name: "Insect",
  445. parents: ["animal"]
  446. },
  447. "beetle": {
  448. name: "Beetle",
  449. parents: ["insect"]
  450. },
  451. "moth": {
  452. name: "Moth",
  453. parents: ["insect"]
  454. },
  455. "eastern-dragon": {
  456. name: "Eastern Dragon",
  457. parents: ["dragon"]
  458. },
  459. "jaguar": {
  460. name: "Jaguar",
  461. parents: ["cat"]
  462. },
  463. "horse": {
  464. name: "Horse",
  465. parents: ["mammal"]
  466. },
  467. "sergal": {
  468. name: "Sergal",
  469. parents: ["mammal"]
  470. },
  471. "gryphon": {
  472. name: "Gryphon",
  473. parents: ["lion", "eagle"]
  474. },
  475. "robot": {
  476. name: "Robot",
  477. parents: ["machine"]
  478. },
  479. "medihound": {
  480. name: "Medihound",
  481. parents: ["robot", "dog"]
  482. },
  483. "sylveon": {
  484. name: "Sylveon",
  485. parents: ["pokemon"]
  486. },
  487. "catgirl": {
  488. name: "Catgirl",
  489. parents: ["mammal"]
  490. },
  491. "cowgirl": {
  492. name: "Cowgirl",
  493. parents: ["mammal"]
  494. },
  495. "pony": {
  496. name: "Pony",
  497. parents: ["horse"]
  498. },
  499. "rabbit": {
  500. name: "Rabbit",
  501. parents: ["mammal"]
  502. },
  503. "fennec-fox": {
  504. name: "Fennec Fox",
  505. parents: ["fox"]
  506. },
  507. "azodian": {
  508. name: "Azodian",
  509. parents: ["mouse"]
  510. },
  511. "shiba-inu": {
  512. name: "Shiba Inu",
  513. parents: ["dog"]
  514. },
  515. "changeling": {
  516. name: "Changeling",
  517. parents: ["insect"]
  518. },
  519. "cheetah": {
  520. name: "Cheetah",
  521. parents: ["cat"]
  522. },
  523. "golden-jackal": {
  524. name: "Golden Jackal",
  525. parents: ["jackal"]
  526. },
  527. "manectric": {
  528. name: "Manectric",
  529. parents: ["pokemon"]
  530. },
  531. "rat": {
  532. name: "Rat",
  533. parents: ["rodent"]
  534. },
  535. "rodent": {
  536. name: "Rodent",
  537. parents: ["mammal"]
  538. },
  539. "octocoon": {
  540. name: "Octocoon",
  541. parents: ["raccoon", "octopus"]
  542. },
  543. "octopus": {
  544. name: "Octopus",
  545. parents: ["fish"]
  546. },
  547. "werewolf": {
  548. name: "Werewolf",
  549. parents: ["wolf"]
  550. },
  551. "meerkat": {
  552. name: "Meerkat",
  553. parents: ["mammal"]
  554. },
  555. "human": {
  556. name: "Human",
  557. parents: ["mammal"]
  558. },
  559. "geth": {
  560. name: "Geth",
  561. parents: ["android"]
  562. },
  563. "husky": {
  564. name: "Husky",
  565. parents: ["dog"]
  566. },
  567. "long-eared-bat": {
  568. name: "Long Eared Bat",
  569. parents: ["bat"]
  570. },
  571. "lizard": {
  572. name: "Lizard",
  573. parents: ["reptile"]
  574. },
  575. "salamander": {
  576. name: "Salamander",
  577. parents: ["lizard"]
  578. },
  579. "chameleon": {
  580. name: "Chameleon",
  581. parents: ["lizard"]
  582. },
  583. "gecko": {
  584. name: "Gecko",
  585. parents: ["lizard"]
  586. },
  587. "kobold": {
  588. name: "Kobold",
  589. parents: ["reptile"]
  590. },
  591. "charizard": {
  592. name: "Charizard",
  593. parents: ["pokemon"]
  594. },
  595. "lugia": {
  596. name: "Lugia",
  597. parents: ["pokemon"]
  598. },
  599. "cerberus": {
  600. name: "Cerberus",
  601. parents: ["dog"]
  602. },
  603. "tyrantrum": {
  604. name: "Tyrantrum",
  605. parents: ["pokemon"]
  606. },
  607. "lemur": {
  608. name: "Lemur",
  609. parents: ["mammal"]
  610. },
  611. "kelpie": {
  612. name: "Kelpie",
  613. parents: ["horse", "monster"]
  614. },
  615. "labrador": {
  616. name: "Labrador",
  617. parents: ["dog"]
  618. },
  619. "sylveon": {
  620. name: "Sylveon",
  621. parents: ["eeveelution"]
  622. },
  623. "eeveelution": {
  624. name: "Eeveelution",
  625. parents: ["pokemon"]
  626. },
  627. "polar-bear": {
  628. name: "Polar Bear",
  629. parents: ["bear"]
  630. },
  631. "bear": {
  632. name: "Bear",
  633. parents: ["mammal"]
  634. },
  635. "absol": {
  636. name: "Absol",
  637. parents: ["pokemon"]
  638. },
  639. "wolver": {
  640. name: "Wolver",
  641. parents: ["mammal"]
  642. },
  643. "rottweiler": {
  644. name: "Rottweiler",
  645. parents: ["dog"]
  646. },
  647. "zebra": {
  648. name: "Zebra",
  649. parents: ["horse"]
  650. },
  651. "yoshi": {
  652. name: "Yoshi",
  653. parents: ["lizard"]
  654. },
  655. "lynx": {
  656. name: "Lynx",
  657. parents: ["cat"]
  658. },
  659. "unknown": {
  660. name: "Unknown",
  661. parents: []
  662. },
  663. "thylacine": {
  664. name: "Thylacine",
  665. parents: ["mammal"]
  666. },
  667. "gabumon": {
  668. name: "Gabumon",
  669. parents: ["digimon"]
  670. },
  671. "border-collie": {
  672. name: "Border Collie",
  673. parents: ["dog"]
  674. },
  675. "imp": {
  676. name: "Imp",
  677. parents: ["demon"]
  678. },
  679. "kangaroo": {
  680. name: "Kangaroo",
  681. parents: ["mammal"]
  682. },
  683. "renamon": {
  684. name: "Renamon",
  685. parents: ["digimon"]
  686. },
  687. "candy-orca-dragon": {
  688. name: "Candy Orca Dragon",
  689. parents: ["fish", "dragon", "candy"]
  690. },
  691. "sabertooth-tiger": {
  692. name: "Sabertooth Tiger",
  693. parents: ["cat"]
  694. },
  695. "espurr": {
  696. name: "Espurr",
  697. parents: ["pokemon"]
  698. },
  699. "otter": {
  700. name: "Otter",
  701. parents: ["mammal"]
  702. },
  703. "elemental": {
  704. name: "Elemental",
  705. parents: ["mammal"]
  706. },
  707. "mew": {
  708. name: "Mew",
  709. parents: ["pokemon"]
  710. },
  711. "goodra": {
  712. name: "Goodra",
  713. parents: ["pokemon"]
  714. },
  715. "fairy": {
  716. name: "Fairy",
  717. parents: ["magical"]
  718. },
  719. "typhlosion": {
  720. name: "Typhlosion",
  721. parents: ["pokemon"]
  722. },
  723. "magical": {
  724. name: "Magical",
  725. parents: []
  726. },
  727. "xenomorph": {
  728. name: "Xenomorph",
  729. parents: ["monster", "alien"]
  730. },
  731. "charr": {
  732. name: "Charr",
  733. parents: ["cat"]
  734. },
  735. "siberian-husky": {
  736. name: "Siberian Husky",
  737. parents: ["husky"]
  738. },
  739. "alligator": {
  740. name: "Alligator",
  741. parents: ["reptile"]
  742. },
  743. "bernese-mountain-dog": {
  744. name: "Bernese Mountain Dog",
  745. parents: ["dog"]
  746. },
  747. "reshiram": {
  748. name: "Reshiram",
  749. parents: ["pokemon"]
  750. },
  751. "grizzly-bear": {
  752. name: "Grizzly Bear",
  753. parents: ["bear"]
  754. },
  755. "water-monitor": {
  756. name: "Water Monitor",
  757. parents: ["lizard"]
  758. },
  759. "banchofossa": {
  760. name: "Banchofossa",
  761. parents: ["mammal"]
  762. },
  763. "kirin": {
  764. name: "Kirin",
  765. parents: ["monster"]
  766. },
  767. "quilava": {
  768. name: "Quilava",
  769. parents: ["pokemon"]
  770. },
  771. "seviper": {
  772. name: "Seviper",
  773. parents: ["pokemon"]
  774. },
  775. "flying-fox": {
  776. name: "Flying Fox",
  777. parents: ["bat"]
  778. },
  779. "keynain": {
  780. name: "Keynain",
  781. parents: ["avian"]
  782. },
  783. "lucario": {
  784. name: "Lucario",
  785. parents: ["pokemon"]
  786. },
  787. "siamese-cat": {
  788. name: "Siamese Cat",
  789. parents: ["cat"]
  790. },
  791. "spider": {
  792. name: "Spider",
  793. parents: ["insect"]
  794. },
  795. "samurott": {
  796. name: "Samurott",
  797. parents: ["pokemon"]
  798. },
  799. "megalodon": {
  800. name: "Megalodon",
  801. parents: ["shark"]
  802. },
  803. "unicorn": {
  804. name: "Unicorn",
  805. parents: ["horse"]
  806. },
  807. "greninja": {
  808. name: "Greninja",
  809. parents: ["pokemon"]
  810. },
  811. "water-dragon": {
  812. name: "Water Dragon",
  813. parents: ["dragon"]
  814. },
  815. "cross-fox": {
  816. name: "Cross Fox",
  817. parents: ["fox"]
  818. },
  819. "synth": {
  820. name: "Synth",
  821. parents: ["machine"]
  822. },
  823. "construct": {
  824. name: "Construct",
  825. parents: []
  826. },
  827. "mexican-wolf": {
  828. name: "Mexican Wolf",
  829. parents: ["wolf"]
  830. },
  831. "leopard": {
  832. name: "Leopard",
  833. parents: ["cat"]
  834. },
  835. "pig": {
  836. name: "Pig",
  837. parents: ["mammal"]
  838. },
  839. "ampharos": {
  840. name: "Ampharos",
  841. parents: ["pokemon"]
  842. },
  843. "orca": {
  844. name: "Orca",
  845. parents: ["fish"]
  846. },
  847. "lycanroc": {
  848. name: "Lycanroc",
  849. parents: ["pokemon"]
  850. },
  851. "surkanu": {
  852. name: "Surkanu",
  853. parents: ["monster"]
  854. },
  855. "seal": {
  856. name: "Seal",
  857. parents: ["mammal"]
  858. },
  859. "keldeo": {
  860. name: "Keldeo",
  861. parents: ["pokemon"]
  862. },
  863. "great-dane": {
  864. name: "Great Dane",
  865. parents: ["dog"]
  866. },
  867. "black-backed-jackal": {
  868. name: "Black Backed Jackal",
  869. parents: ["jackal"]
  870. },
  871. "sheep": {
  872. name: "Sheep",
  873. parents: ["mammal"]
  874. },
  875. "leopard-seal": {
  876. name: "Leopard Seal",
  877. parents: ["seal"]
  878. },
  879. "zoroark": {
  880. name: "Zoroark",
  881. parents: ["pokemon"]
  882. },
  883. "maned-wolf": {
  884. name: "Maned Wolf",
  885. parents: ["canine"]
  886. },
  887. "dracha": {
  888. name: "Dracha",
  889. parents: ["dragon"]
  890. },
  891. "wolxi": {
  892. name: "Wolxi",
  893. parents: ["mammal", "alien"]
  894. },
  895. "dratini": {
  896. name: "Dratini",
  897. parents: ["pokemon", "dragon"]
  898. },
  899. "skaven": {
  900. name: "Skaven",
  901. parents: ["rat"]
  902. },
  903. "mongoose": {
  904. name: "Mongoose",
  905. parents: ["mammal"]
  906. },
  907. "lopunny": {
  908. name: "Lopunny",
  909. parents: ["pokemon", "rabbit"]
  910. },
  911. "feraligatr": {
  912. name: "Feraligatr",
  913. parents: ["pokemon", "alligator"]
  914. },
  915. "houndoom": {
  916. name: "Houndoom",
  917. parents: ["pokemon", "dog"]
  918. },
  919. "protogen": {
  920. name: "Protogen",
  921. parents: ["machine"]
  922. },
  923. "saint-bernard": {
  924. name: "Saint Bernard",
  925. parents: ["dog"]
  926. },
  927. "crow": {
  928. name: "Crow",
  929. parents: ["corvid"]
  930. },
  931. "delphox": {
  932. name: "Delphox",
  933. parents: ["pokemon", "fox"]
  934. },
  935. "moose": {
  936. name: "Moose",
  937. parents: ["mammal"]
  938. },
  939. "joraxian": {
  940. name: "Joraxian",
  941. parents: ["monster", "canine", "demon"]
  942. },
  943. "nimbat": {
  944. name: "Nimbat",
  945. parents: ["mammal"]
  946. },
  947. "aardwolf": {
  948. name: "Aardwolf",
  949. parents: ["canine"]
  950. },
  951. "fluudrani": {
  952. name: "Fluudrani",
  953. parents: ["animal"]
  954. },
  955. "arcanine": {
  956. name: "Arcanine",
  957. parents: ["pokemon", "dog"]
  958. },
  959. "inteleon": {
  960. name: "Inteleon",
  961. parents: ["pokemon", "fish"]
  962. },
  963. "ninetales": {
  964. name: "Ninetales",
  965. parents: ["pokemon", "kitsune"]
  966. },
  967. "tigrex": {
  968. name: "Tigrex",
  969. parents: ["tiger"]
  970. },
  971. "zorua": {
  972. name: "Zorua",
  973. parents: ["pokemon", "fox"]
  974. },
  975. "vulpix": {
  976. name: "Vulpix",
  977. parents: ["pokemon", "fox"]
  978. },
  979. "barghest": {
  980. name: "Barghest",
  981. parents: ["monster"]
  982. },
  983. "gray-wolf": {
  984. name: "Gray Wolf",
  985. parents: ["wolf"]
  986. },
  987. "ruppells-fox": {
  988. name: "Rüppell's Fox",
  989. parents: ["fox"]
  990. },
  991. "bull-terrier": {
  992. name: "Bull Terrier",
  993. parents: ["dog"]
  994. },
  995. "european-honey-buzzard": {
  996. name: "European Honey Buzzard",
  997. parents: ["avian"]
  998. },
  999. "t-rex": {
  1000. name: "T Rex",
  1001. parents: ["dinosaur"]
  1002. },
  1003. "mactarian": {
  1004. name: "Mactarian",
  1005. parents: ["shark", "monster"]
  1006. },
  1007. "mewtwo-y": {
  1008. name: "Mewtwo Y",
  1009. parents: ["mewtwo"]
  1010. },
  1011. "mewtwo": {
  1012. name: "Mewtwo",
  1013. parents: ["pokemon"]
  1014. },
  1015. "mew": {
  1016. name: "Mew",
  1017. parents: ["pokemon"]
  1018. },
  1019. "eevee": {
  1020. name: "Eevee",
  1021. parents: ["eeveelution"]
  1022. },
  1023. "mienshao": {
  1024. name: "Mienshao",
  1025. parents: ["pokemon"]
  1026. },
  1027. "sugar-glider": {
  1028. name: "Sugar Glider",
  1029. parents: ["opossum"]
  1030. },
  1031. "spectral-bat": {
  1032. name: "Spectral Bat",
  1033. parents: ["bat"]
  1034. },
  1035. "scolipede": {
  1036. name: "Scolipede",
  1037. parents: ["pokemon", "insect"]
  1038. },
  1039. "jackalope": {
  1040. name: "Jackalope",
  1041. parents: ["rabbit", "antelope"]
  1042. },
  1043. "caracal": {
  1044. name: "Caracal",
  1045. parents: ["cat"]
  1046. },
  1047. "stoat": {
  1048. name: "Stoat",
  1049. parents: ["mammal"]
  1050. },
  1051. "african-golden-cat": {
  1052. name: "African Golden Cat",
  1053. parents: ["cat"]
  1054. },
  1055. "gigantosaurus": {
  1056. name: "Gigantosaurus",
  1057. parents: ["dinosaur"]
  1058. },
  1059. "zorgoia": {
  1060. name: "Zorgoia",
  1061. parents: ["mammal"]
  1062. },
  1063. "monitor-lizard": {
  1064. name: "Monitor Lizard",
  1065. parents: ["lizard"]
  1066. },
  1067. "ziralkia": {
  1068. name: "Ziralkia",
  1069. parents: ["mammal"]
  1070. },
  1071. "kiiasi": {
  1072. name: "Kiiasi",
  1073. parents: ["animal"]
  1074. },
  1075. "synx": {
  1076. name: "Synx",
  1077. parents: ["monster"]
  1078. },
  1079. "panther": {
  1080. name: "Panther",
  1081. parents: ["cat"]
  1082. },
  1083. "azumarill": {
  1084. name: "Azumarill",
  1085. parents: ["pokemon"]
  1086. },
  1087. "river-snaptail": {
  1088. name: "River Snaptail",
  1089. parents: ["otter", "crocodile"]
  1090. },
  1091. "great-blue-heron": {
  1092. name: "Great Blue Heron",
  1093. parents: ["avian"]
  1094. },
  1095. "smeargle": {
  1096. name: "Smeargle",
  1097. parents: ["pokemon"]
  1098. },
  1099. "vendeilen": {
  1100. name: "Vendeilen",
  1101. parents: ["monster"]
  1102. },
  1103. "ventura": {
  1104. name: "Ventura",
  1105. parents: ["canine"]
  1106. },
  1107. "clouded-leopard": {
  1108. name: "Clouded Leopard",
  1109. parents: ["leopard"]
  1110. },
  1111. "argonian": {
  1112. name: "Argonian",
  1113. parents: ["lizard"]
  1114. },
  1115. "salazzle": {
  1116. name: "Salazzle",
  1117. parents: ["pokemon", "lizard"]
  1118. },
  1119. "je-stoff-drachen": {
  1120. name: "Je-Stoff Drachen",
  1121. parents: ["dragon"]
  1122. },
  1123. "finnish-spitz-dog": {
  1124. name: "Finnish Spitz Dog",
  1125. parents: ["dog"]
  1126. },
  1127. "gray-fox": {
  1128. name: "Gray Fox",
  1129. parents: ["fox"]
  1130. },
  1131. "opossum": {
  1132. name: "opossum",
  1133. parents: ["mammal"]
  1134. },
  1135. "antelope": {
  1136. name: "Antelope",
  1137. parents: ["mammal"]
  1138. },
  1139. "weavile": {
  1140. name: "Weavile",
  1141. parents: ["pokemon"]
  1142. },
  1143. "pikachu": {
  1144. name: "Pikachu",
  1145. parents: ["pokemon", "mouse"]
  1146. },
  1147. "grovyle": {
  1148. name: "Grovyle",
  1149. parents: ["pokemon", "plant"]
  1150. },
  1151. "sthara": {
  1152. name: "Sthara",
  1153. parents: ["snow-leopard", "reptile"]
  1154. },
  1155. "star-warrior": {
  1156. name: "Star Warrior",
  1157. parents: ["magical"]
  1158. },
  1159. "dragonoid": {
  1160. name: "Dragonoid",
  1161. parents: ["dragon"]
  1162. },
  1163. "suicune": {
  1164. name: "Suicune",
  1165. parents: ["pokemon"]
  1166. },
  1167. "vole": {
  1168. name: "Vole",
  1169. parents: ["mammal"]
  1170. },
  1171. "blaziken": {
  1172. name: "Blaziken",
  1173. parents: ["pokemon", "avian"]
  1174. },
  1175. "buizel": {
  1176. name: "Buizel",
  1177. parents: ["pokemon", "fish"]
  1178. },
  1179. "floatzel": {
  1180. name: "Floatzel",
  1181. parents: ["pokemon", "fish"]
  1182. },
  1183. "umok": {
  1184. name: "Umok",
  1185. parents: ["avian"]
  1186. },
  1187. "sea-monster": {
  1188. name: "Sea Monster",
  1189. parents: ["monster", "fish"]
  1190. },
  1191. "egyptian-vulture": {
  1192. name: "Egyptian Vulture",
  1193. parents: ["avian"]
  1194. },
  1195. "doberman": {
  1196. name: "Doberman",
  1197. parents: ["dog"]
  1198. },
  1199. "zangoose": {
  1200. name: "Zangoose",
  1201. parents: ["pokemon", "mongoose"]
  1202. },
  1203. "mongoose": {
  1204. name: "Mongoose",
  1205. parents: ["mammal"]
  1206. },
  1207. "wickerbeast": {
  1208. name: "Wickerbeast",
  1209. parents: ["monster"]
  1210. },
  1211. "zenari": {
  1212. name: "Zenari",
  1213. parents: ["lizard"]
  1214. },
  1215. "plant": {
  1216. name: "Plant",
  1217. parents: []
  1218. },
  1219. "raskatox": {
  1220. name: "Raskatox",
  1221. parents: ["raccoon", "skunk", "cat", "fox"]
  1222. },
  1223. "mikromare": {
  1224. name: "mikromare",
  1225. parents: ["alien"]
  1226. },
  1227. "alien": {
  1228. name: "Alien",
  1229. parents: ["animal"]
  1230. },
  1231. "deity": {
  1232. name: "Deity",
  1233. parents: []
  1234. },
  1235. "skarlan": {
  1236. name: "Skarlan",
  1237. parents: ["slug", "dragon"]
  1238. },
  1239. "slug": {
  1240. name: "Slug",
  1241. parents: ["mollusk"]
  1242. },
  1243. "mollusk": {
  1244. name: "Mollusk",
  1245. parents: ["animal"]
  1246. },
  1247. "chimera": {
  1248. name: "Chimera",
  1249. parents: ["monster"]
  1250. },
  1251. "gestalt": {
  1252. name: "Gestalt",
  1253. parents: ["construct"]
  1254. },
  1255. "mimic": {
  1256. name: "Mimic",
  1257. parents: ["monster"]
  1258. },
  1259. "calico-rat": {
  1260. name: "Calico Rat",
  1261. parents: ["rat"]
  1262. },
  1263. "panda": {
  1264. name: "Panda",
  1265. parents: ["mammal"]
  1266. },
  1267. "oni": {
  1268. name: "Oni",
  1269. parents: ["monster"]
  1270. },
  1271. "pegasus": {
  1272. name: "Pegasus",
  1273. parents: ["horse"]
  1274. },
  1275. "vulpera": {
  1276. name: "Vulpera",
  1277. parents: ["fennec-fox"]
  1278. },
  1279. "ceratosaurus": {
  1280. name: "Ceratosaurus",
  1281. parents: ["dinosaur"]
  1282. },
  1283. "nykur": {
  1284. name: "Nykur",
  1285. parents: ["horse", "monster"]
  1286. },
  1287. "giraffe": {
  1288. name: "Giraffe",
  1289. parents: ["mammal"]
  1290. },
  1291. "tauren": {
  1292. name: "Tauren",
  1293. parents: ["cow"]
  1294. },
  1295. "draconi": {
  1296. name: "Draconi",
  1297. parents: ["alien", "cat", "cyborg"]
  1298. },
  1299. "dire-wolf": {
  1300. name: "Dire Wolf",
  1301. parents: ["wolf"]
  1302. },
  1303. "ferromorph": {
  1304. name: "Ferromorph",
  1305. parents: ["construct"]
  1306. },
  1307. "meowth": {
  1308. name: "Meowth",
  1309. parents: ["cat", "pokemon"]
  1310. },
  1311. "pavodragon": {
  1312. name: "Pavodragon",
  1313. parents: ["dragon"]
  1314. },
  1315. "aaltranae": {
  1316. name: "Aaltranae",
  1317. parents: ["dragon"]
  1318. },
  1319. "cyborg": {
  1320. name: "Cyborg",
  1321. parents: ["machine"]
  1322. },
  1323. "draptor": {
  1324. name: "Draptor",
  1325. parents: ["dragon"]
  1326. },
  1327. "candy": {
  1328. name: "Candy",
  1329. parents: []
  1330. },
  1331. "drenath": {
  1332. name: "Drenath",
  1333. parents: ["dragon", "snake", "rabbit"]
  1334. },
  1335. "coyju": {
  1336. name: "Coyju",
  1337. parents: ["coyote", "kaiju"]
  1338. },
  1339. "kaiju": {
  1340. name: "Kaiju",
  1341. parents: ["monster"]
  1342. },
  1343. "nickit": {
  1344. name: "Nickit",
  1345. parents: ["pokemon", "cat"]
  1346. },
  1347. "lopunny": {
  1348. name: "Lopunny",
  1349. parents: ["pokemon", "rabbit"]
  1350. },
  1351. "korean-jindo-dog": {
  1352. name: "Korean Jindo Dog",
  1353. parents: ["dog"]
  1354. },
  1355. "naga": {
  1356. name: "Naga",
  1357. parents: ["snake", "monster"]
  1358. },
  1359. "undead": {
  1360. name: "Undead",
  1361. parents: ["monster"]
  1362. },
  1363. "whale": {
  1364. name: "Whale",
  1365. parents: ["fish"]
  1366. },
  1367. "gelato-bee": {
  1368. name: "Gelato Bee",
  1369. parents: ["bee"]
  1370. },
  1371. "bee": {
  1372. name: "Bee",
  1373. parents: ["insect"]
  1374. },
  1375. "gardevoir": {
  1376. name: "Gardevoir",
  1377. parents: ["pokemon"]
  1378. },
  1379. "ant": {
  1380. name: "Ant",
  1381. parents: ["insect"]
  1382. },
  1383. "frog": {
  1384. name: "Frog",
  1385. parents: ["amphibian"]
  1386. },
  1387. "amphibian": {
  1388. name: "Amphibian",
  1389. parents: ["animal"]
  1390. },
  1391. "pangolin": {
  1392. name: "Pangolin",
  1393. parents: ["mammal"]
  1394. },
  1395. "uragi'viidorn": {
  1396. name: "Uragi'viidorn",
  1397. parents: ["avian", "bear"]
  1398. },
  1399. "gryphdelphais": {
  1400. name: "Gryphdelphais",
  1401. parents: ["dolphin", "gryphon"]
  1402. },
  1403. "plush": {
  1404. name: "Plush",
  1405. parents: ["construct"]
  1406. },
  1407. "draiger": {
  1408. name: "Draiger",
  1409. parents: ["dragon","tiger"]
  1410. },
  1411. "foxsky": {
  1412. name: "Foxsky",
  1413. parents: ["fox", "husky"]
  1414. },
  1415. "umbreon": {
  1416. name: "Umbreon",
  1417. parents: ["eeveelution"]
  1418. },
  1419. "slime-dragon": {
  1420. name: "Slime Dragon",
  1421. parents: ["dragon"]
  1422. },
  1423. "enderman": {
  1424. name: "Enderman",
  1425. parents: ["monster"]
  1426. },
  1427. }
  1428. //species
  1429. function getSpeciesInfo(speciesList) {
  1430. let result = new Set();
  1431. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1432. result.add(entry)
  1433. });
  1434. return Array.from(result);
  1435. };
  1436. function getSpeciesInfoHelper(species) {
  1437. if (!speciesData[species]) {
  1438. console.warn(species + " doesn't exist");
  1439. return [];
  1440. }
  1441. if (speciesData[species].parents) {
  1442. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1443. } else {
  1444. return [species];
  1445. }
  1446. }
  1447. characterMakers.push(() => makeCharacter(
  1448. {
  1449. name: "Fen",
  1450. species: ["crux"],
  1451. description: {
  1452. title: "Bio",
  1453. text: "Very furry. Sheds on everything."
  1454. },
  1455. tags: [
  1456. "anthro",
  1457. "goo"
  1458. ]
  1459. },
  1460. {
  1461. back: {
  1462. height: math.unit(2.2428, "meter"),
  1463. weight: math.unit(124.738, "kg"),
  1464. name: "Back",
  1465. image: {
  1466. source: "./media/characters/fen/back.svg",
  1467. extra: 2024 / 1867,
  1468. bottom: 13 / 2037
  1469. },
  1470. info: {
  1471. description: {
  1472. mode: "append",
  1473. text: "\n\nHe is not currently looking at you."
  1474. }
  1475. }
  1476. },
  1477. full: {
  1478. height: math.unit(1.34, "meter"),
  1479. weight: math.unit(225, "kg"),
  1480. name: "Full",
  1481. image: {
  1482. source: "./media/characters/fen/full.svg"
  1483. },
  1484. info: {
  1485. description: {
  1486. mode: "append",
  1487. text: "\n\nMunch."
  1488. }
  1489. }
  1490. },
  1491. kneeling: {
  1492. height: math.unit(5.4, "feet"),
  1493. weight: math.unit(124.738, "kg"),
  1494. name: "Kneeling",
  1495. image: {
  1496. source: "./media/characters/fen/kneeling.svg",
  1497. extra: 563 / 507
  1498. }
  1499. },
  1500. goo: {
  1501. height: math.unit(2.8, "feet"),
  1502. weight: math.unit(125, "kg"),
  1503. capacity: math.unit(1, "people"),
  1504. name: "Goo",
  1505. image: {
  1506. source: "./media/characters/fen/goo.svg",
  1507. bottom: 116 / 613
  1508. }
  1509. },
  1510. lounging: {
  1511. height: math.unit(6.5, "feet"),
  1512. weight: math.unit(125, "kg"),
  1513. name: "Lounging",
  1514. image: {
  1515. source: "./media/characters/fen/lounging.svg"
  1516. }
  1517. },
  1518. },
  1519. [
  1520. {
  1521. name: "Normal",
  1522. height: math.unit(2.2428, "meter")
  1523. },
  1524. {
  1525. name: "Big",
  1526. height: math.unit(12, "feet")
  1527. },
  1528. {
  1529. name: "Minimacro",
  1530. height: math.unit(40, "feet"),
  1531. default: true,
  1532. info: {
  1533. description: {
  1534. mode: "append",
  1535. text: "\n\nTOO DAMN BIG"
  1536. }
  1537. }
  1538. },
  1539. {
  1540. name: "Macro",
  1541. height: math.unit(100, "feet"),
  1542. info: {
  1543. description: {
  1544. mode: "append",
  1545. text: "\n\nTOO DAMN BIG"
  1546. }
  1547. }
  1548. },
  1549. {
  1550. name: "Macro+",
  1551. height: math.unit(300, "feet")
  1552. },
  1553. {
  1554. name: "Megamacro",
  1555. height: math.unit(2, "miles")
  1556. }
  1557. ]
  1558. ))
  1559. characterMakers.push(() => makeCharacter(
  1560. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1561. {
  1562. front: {
  1563. height: math.unit(183, "cm"),
  1564. weight: math.unit(80, "kg"),
  1565. name: "Front",
  1566. image: {
  1567. source: "./media/characters/sofia-fluttertail/front.svg",
  1568. bottom: 0.01,
  1569. extra: 2154 / 2081
  1570. }
  1571. },
  1572. frontAlt: {
  1573. height: math.unit(183, "cm"),
  1574. weight: math.unit(80, "kg"),
  1575. name: "Front (alt)",
  1576. image: {
  1577. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1578. }
  1579. },
  1580. back: {
  1581. height: math.unit(183, "cm"),
  1582. weight: math.unit(80, "kg"),
  1583. name: "Back",
  1584. image: {
  1585. source: "./media/characters/sofia-fluttertail/back.svg"
  1586. }
  1587. },
  1588. kneeling: {
  1589. height: math.unit(125, "cm"),
  1590. weight: math.unit(80, "kg"),
  1591. name: "Kneeling",
  1592. image: {
  1593. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1594. extra: 1033 / 977,
  1595. bottom: 23.7 / 1057
  1596. }
  1597. },
  1598. maw: {
  1599. height: math.unit(183 / 5, "cm"),
  1600. name: "Maw",
  1601. image: {
  1602. source: "./media/characters/sofia-fluttertail/maw.svg"
  1603. }
  1604. },
  1605. mawcloseup: {
  1606. height: math.unit(183 / 5 * 0.41, "cm"),
  1607. name: "Maw (Closeup)",
  1608. image: {
  1609. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1610. }
  1611. },
  1612. paws: {
  1613. height: math.unit(1.17, "feet"),
  1614. name: "Paws",
  1615. image: {
  1616. source: "./media/characters/sofia-fluttertail/paws.svg",
  1617. extra: 851 / 851,
  1618. bottom: 17 / 868
  1619. }
  1620. },
  1621. },
  1622. [
  1623. {
  1624. name: "Normal",
  1625. height: math.unit(1.83, "meter")
  1626. },
  1627. {
  1628. name: "Size Thief",
  1629. height: math.unit(18, "feet")
  1630. },
  1631. {
  1632. name: "50 Foot Collie",
  1633. height: math.unit(50, "feet")
  1634. },
  1635. {
  1636. name: "Macro",
  1637. height: math.unit(96, "feet"),
  1638. default: true
  1639. },
  1640. {
  1641. name: "Megamerger",
  1642. height: math.unit(650, "feet")
  1643. },
  1644. ]
  1645. ))
  1646. characterMakers.push(() => makeCharacter(
  1647. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1648. {
  1649. front: {
  1650. height: math.unit(7, "feet"),
  1651. weight: math.unit(100, "kg"),
  1652. name: "Front",
  1653. image: {
  1654. source: "./media/characters/march/front.svg",
  1655. extra: 1,
  1656. bottom: 0.015
  1657. }
  1658. },
  1659. foot: {
  1660. height: math.unit(0.9, "feet"),
  1661. name: "Foot",
  1662. image: {
  1663. source: "./media/characters/march/foot.svg"
  1664. }
  1665. },
  1666. },
  1667. [
  1668. {
  1669. name: "Normal",
  1670. height: math.unit(7.9, "feet")
  1671. },
  1672. {
  1673. name: "Macro",
  1674. height: math.unit(220, "meters")
  1675. },
  1676. {
  1677. name: "Megamacro",
  1678. height: math.unit(2.98, "km"),
  1679. default: true
  1680. },
  1681. {
  1682. name: "Gigamacro",
  1683. height: math.unit(15963, "km")
  1684. },
  1685. {
  1686. name: "Teramacro",
  1687. height: math.unit(2980000000, "km")
  1688. },
  1689. {
  1690. name: "Examacro",
  1691. height: math.unit(250, "parsecs")
  1692. },
  1693. ]
  1694. ))
  1695. characterMakers.push(() => makeCharacter(
  1696. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1697. {
  1698. front: {
  1699. height: math.unit(6, "feet"),
  1700. weight: math.unit(60, "kg"),
  1701. name: "Front",
  1702. image: {
  1703. source: "./media/characters/noir/front.svg",
  1704. extra: 1,
  1705. bottom: 0.032
  1706. }
  1707. },
  1708. },
  1709. [
  1710. {
  1711. name: "Normal",
  1712. height: math.unit(6.6, "feet")
  1713. },
  1714. {
  1715. name: "Macro",
  1716. height: math.unit(500, "feet")
  1717. },
  1718. {
  1719. name: "Megamacro",
  1720. height: math.unit(2.5, "km"),
  1721. default: true
  1722. },
  1723. {
  1724. name: "Gigamacro",
  1725. height: math.unit(22500, "km")
  1726. },
  1727. {
  1728. name: "Teramacro",
  1729. height: math.unit(2500000000, "km")
  1730. },
  1731. {
  1732. name: "Examacro",
  1733. height: math.unit(200, "parsecs")
  1734. },
  1735. ]
  1736. ))
  1737. characterMakers.push(() => makeCharacter(
  1738. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1739. {
  1740. front: {
  1741. height: math.unit(7, "feet"),
  1742. weight: math.unit(100, "kg"),
  1743. name: "Front",
  1744. image: {
  1745. source: "./media/characters/okuri/front.svg",
  1746. extra: 1,
  1747. bottom: 0.037
  1748. }
  1749. },
  1750. back: {
  1751. height: math.unit(7, "feet"),
  1752. weight: math.unit(100, "kg"),
  1753. name: "Back",
  1754. image: {
  1755. source: "./media/characters/okuri/back.svg",
  1756. extra: 1,
  1757. bottom: 0.007
  1758. }
  1759. },
  1760. },
  1761. [
  1762. {
  1763. name: "Megamacro",
  1764. height: math.unit(100, "miles"),
  1765. default: true
  1766. },
  1767. ]
  1768. ))
  1769. characterMakers.push(() => makeCharacter(
  1770. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1771. {
  1772. front: {
  1773. height: math.unit(7, "feet"),
  1774. weight: math.unit(100, "kg"),
  1775. name: "Front",
  1776. image: {
  1777. source: "./media/characters/manny/front.svg",
  1778. extra: 1,
  1779. bottom: 0.06
  1780. }
  1781. },
  1782. back: {
  1783. height: math.unit(7, "feet"),
  1784. weight: math.unit(100, "kg"),
  1785. name: "Back",
  1786. image: {
  1787. source: "./media/characters/manny/back.svg",
  1788. extra: 1,
  1789. bottom: 0.014
  1790. }
  1791. },
  1792. },
  1793. [
  1794. {
  1795. name: "Normal",
  1796. height: math.unit(7, "feet"),
  1797. },
  1798. {
  1799. name: "Macro",
  1800. height: math.unit(78, "feet"),
  1801. default: true
  1802. },
  1803. {
  1804. name: "Macro+",
  1805. height: math.unit(300, "meters")
  1806. },
  1807. {
  1808. name: "Macro++",
  1809. height: math.unit(2400, "meters")
  1810. },
  1811. {
  1812. name: "Megamacro",
  1813. height: math.unit(5167, "meters")
  1814. },
  1815. {
  1816. name: "Gigamacro",
  1817. height: math.unit(41769, "miles")
  1818. },
  1819. ]
  1820. ))
  1821. characterMakers.push(() => makeCharacter(
  1822. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1823. {
  1824. front: {
  1825. height: math.unit(7, "feet"),
  1826. weight: math.unit(100, "kg"),
  1827. name: "Front",
  1828. image: {
  1829. source: "./media/characters/adake/front-1.svg"
  1830. }
  1831. },
  1832. frontAlt: {
  1833. height: math.unit(7, "feet"),
  1834. weight: math.unit(100, "kg"),
  1835. name: "Front (Alt)",
  1836. image: {
  1837. source: "./media/characters/adake/front-2.svg",
  1838. extra: 1,
  1839. bottom: 0.01
  1840. }
  1841. },
  1842. back: {
  1843. height: math.unit(7, "feet"),
  1844. weight: math.unit(100, "kg"),
  1845. name: "Back",
  1846. image: {
  1847. source: "./media/characters/adake/back.svg",
  1848. }
  1849. },
  1850. kneel: {
  1851. height: math.unit(5.385, "feet"),
  1852. weight: math.unit(100, "kg"),
  1853. name: "Kneeling",
  1854. image: {
  1855. source: "./media/characters/adake/kneel.svg",
  1856. bottom: 0.052
  1857. }
  1858. },
  1859. },
  1860. [
  1861. {
  1862. name: "Normal",
  1863. height: math.unit(7, "feet"),
  1864. },
  1865. {
  1866. name: "Macro",
  1867. height: math.unit(78, "feet"),
  1868. default: true
  1869. },
  1870. {
  1871. name: "Macro+",
  1872. height: math.unit(300, "meters")
  1873. },
  1874. {
  1875. name: "Macro++",
  1876. height: math.unit(2400, "meters")
  1877. },
  1878. {
  1879. name: "Megamacro",
  1880. height: math.unit(5167, "meters")
  1881. },
  1882. {
  1883. name: "Gigamacro",
  1884. height: math.unit(41769, "miles")
  1885. },
  1886. ]
  1887. ))
  1888. characterMakers.push(() => makeCharacter(
  1889. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1890. {
  1891. front: {
  1892. height: math.unit(1.65, "meters"),
  1893. weight: math.unit(50, "kg"),
  1894. name: "Front",
  1895. image: {
  1896. source: "./media/characters/elijah/front.svg",
  1897. extra: 858 / 830,
  1898. bottom: 95.5 / 953.8559
  1899. }
  1900. },
  1901. back: {
  1902. height: math.unit(1.65, "meters"),
  1903. weight: math.unit(50, "kg"),
  1904. name: "Back",
  1905. image: {
  1906. source: "./media/characters/elijah/back.svg",
  1907. extra: 895 / 850,
  1908. bottom: 5.3 / 897.956
  1909. }
  1910. },
  1911. frontNsfw: {
  1912. height: math.unit(1.65, "meters"),
  1913. weight: math.unit(50, "kg"),
  1914. name: "Front (NSFW)",
  1915. image: {
  1916. source: "./media/characters/elijah/front-nsfw.svg",
  1917. extra: 858 / 830,
  1918. bottom: 95.5 / 953.8559
  1919. }
  1920. },
  1921. backNsfw: {
  1922. height: math.unit(1.65, "meters"),
  1923. weight: math.unit(50, "kg"),
  1924. name: "Back (NSFW)",
  1925. image: {
  1926. source: "./media/characters/elijah/back-nsfw.svg",
  1927. extra: 895 / 850,
  1928. bottom: 5.3 / 897.956
  1929. }
  1930. },
  1931. dick: {
  1932. height: math.unit(1, "feet"),
  1933. name: "Dick",
  1934. image: {
  1935. source: "./media/characters/elijah/dick.svg"
  1936. }
  1937. },
  1938. beakOpen: {
  1939. height: math.unit(1.25, "feet"),
  1940. name: "Beak (Open)",
  1941. image: {
  1942. source: "./media/characters/elijah/beak-open.svg"
  1943. }
  1944. },
  1945. beakShut: {
  1946. height: math.unit(1.25, "feet"),
  1947. name: "Beak (Shut)",
  1948. image: {
  1949. source: "./media/characters/elijah/beak-shut.svg"
  1950. }
  1951. },
  1952. footFlexing: {
  1953. height: math.unit(1.61, "feet"),
  1954. name: "Foot (Flexing)",
  1955. image: {
  1956. source: "./media/characters/elijah/foot-flexing.svg"
  1957. }
  1958. },
  1959. footStepping: {
  1960. height: math.unit(1.44, "feet"),
  1961. name: "Foot (Stepping)",
  1962. image: {
  1963. source: "./media/characters/elijah/foot-stepping.svg"
  1964. }
  1965. },
  1966. plantigradeLeg: {
  1967. height: math.unit(2.34, "feet"),
  1968. name: "Plantigrade Leg",
  1969. image: {
  1970. source: "./media/characters/elijah/plantigrade-leg.svg"
  1971. }
  1972. },
  1973. plantigradeFootLeft: {
  1974. height: math.unit(0.9, "feet"),
  1975. name: "Plantigrade Foot (Left)",
  1976. image: {
  1977. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1978. }
  1979. },
  1980. plantigradeFootRight: {
  1981. height: math.unit(0.9, "feet"),
  1982. name: "Plantigrade Foot (Right)",
  1983. image: {
  1984. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1985. }
  1986. },
  1987. },
  1988. [
  1989. {
  1990. name: "Normal",
  1991. height: math.unit(1.65, "meters")
  1992. },
  1993. {
  1994. name: "Macro",
  1995. height: math.unit(55, "meters"),
  1996. default: true
  1997. },
  1998. {
  1999. name: "Macro+",
  2000. height: math.unit(105, "meters")
  2001. },
  2002. ]
  2003. ))
  2004. characterMakers.push(() => makeCharacter(
  2005. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2006. {
  2007. front: {
  2008. height: math.unit(11, "feet"),
  2009. weight: math.unit(80, "kg"),
  2010. name: "Front",
  2011. image: {
  2012. source: "./media/characters/rai/front.svg",
  2013. extra: 1,
  2014. bottom: 0.03
  2015. }
  2016. },
  2017. side: {
  2018. height: math.unit(11, "feet"),
  2019. weight: math.unit(80, "kg"),
  2020. name: "Side",
  2021. image: {
  2022. source: "./media/characters/rai/side.svg"
  2023. }
  2024. },
  2025. back: {
  2026. height: math.unit(11, "feet"),
  2027. weight: math.unit(80, "lb"),
  2028. name: "Back",
  2029. image: {
  2030. source: "./media/characters/rai/back.svg",
  2031. extra: 1,
  2032. bottom: 0.01
  2033. }
  2034. },
  2035. feral: {
  2036. height: math.unit(11, "feet"),
  2037. weight: math.unit(800, "lb"),
  2038. name: "Feral",
  2039. image: {
  2040. source: "./media/characters/rai/feral.svg",
  2041. extra: 1050 / 659,
  2042. bottom: 0.07
  2043. }
  2044. },
  2045. dragon: {
  2046. height: math.unit(23, "feet"),
  2047. weight: math.unit(50000, "lb"),
  2048. name: "Dragon",
  2049. image: {
  2050. source: "./media/characters/rai/dragon.svg",
  2051. extra: 2498 / 2030,
  2052. bottom: 85.2 / 2584
  2053. }
  2054. },
  2055. maw: {
  2056. height: math.unit(6 / 3.81416, "feet"),
  2057. name: "Maw",
  2058. image: {
  2059. source: "./media/characters/rai/maw.svg"
  2060. }
  2061. },
  2062. },
  2063. [
  2064. {
  2065. name: "Normal",
  2066. height: math.unit(11, "feet")
  2067. },
  2068. {
  2069. name: "Macro",
  2070. height: math.unit(302, "feet"),
  2071. default: true
  2072. },
  2073. ]
  2074. ))
  2075. characterMakers.push(() => makeCharacter(
  2076. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2077. {
  2078. frontDressed: {
  2079. height: math.unit(216, "feet"),
  2080. weight: math.unit(7000000, "lb"),
  2081. name: "Front (Dressed)",
  2082. image: {
  2083. source: "./media/characters/jazzy/front-dressed.svg",
  2084. extra: 2738 / 2651,
  2085. bottom: 41.8 / 2786
  2086. }
  2087. },
  2088. backDressed: {
  2089. height: math.unit(216, "feet"),
  2090. weight: math.unit(7000000, "lb"),
  2091. name: "Back (Dressed)",
  2092. image: {
  2093. source: "./media/characters/jazzy/back-dressed.svg",
  2094. extra: 2775 / 2673,
  2095. bottom: 36.8 / 2817
  2096. }
  2097. },
  2098. front: {
  2099. height: math.unit(216, "feet"),
  2100. weight: math.unit(7000000, "lb"),
  2101. name: "Front",
  2102. image: {
  2103. source: "./media/characters/jazzy/front.svg",
  2104. extra: 2738 / 2651,
  2105. bottom: 41.8 / 2786
  2106. }
  2107. },
  2108. back: {
  2109. height: math.unit(216, "feet"),
  2110. weight: math.unit(7000000, "lb"),
  2111. name: "Back",
  2112. image: {
  2113. source: "./media/characters/jazzy/back.svg",
  2114. extra: 2775 / 2673,
  2115. bottom: 36.8 / 2817
  2116. }
  2117. },
  2118. maw: {
  2119. height: math.unit(20, "feet"),
  2120. name: "Maw",
  2121. image: {
  2122. source: "./media/characters/jazzy/maw.svg"
  2123. }
  2124. },
  2125. paws: {
  2126. height: math.unit(27.5, "feet"),
  2127. name: "Paws",
  2128. image: {
  2129. source: "./media/characters/jazzy/paws.svg"
  2130. }
  2131. },
  2132. eye: {
  2133. height: math.unit(4.4, "feet"),
  2134. name: "Eye",
  2135. image: {
  2136. source: "./media/characters/jazzy/eye.svg"
  2137. }
  2138. },
  2139. droneOffense: {
  2140. height: math.unit(9.5, "inches"),
  2141. name: "Drone (Offense)",
  2142. image: {
  2143. source: "./media/characters/jazzy/drone-offense.svg"
  2144. }
  2145. },
  2146. droneRecon: {
  2147. height: math.unit(9.5, "inches"),
  2148. name: "Drone (Recon)",
  2149. image: {
  2150. source: "./media/characters/jazzy/drone-recon.svg"
  2151. }
  2152. },
  2153. droneDefense: {
  2154. height: math.unit(9.5, "inches"),
  2155. name: "Drone (Defense)",
  2156. image: {
  2157. source: "./media/characters/jazzy/drone-defense.svg"
  2158. }
  2159. },
  2160. },
  2161. [
  2162. {
  2163. name: "Macro",
  2164. height: math.unit(216, "feet"),
  2165. default: true
  2166. },
  2167. ]
  2168. ))
  2169. characterMakers.push(() => makeCharacter(
  2170. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2171. {
  2172. front: {
  2173. height: math.unit(7, "feet"),
  2174. weight: math.unit(80, "kg"),
  2175. name: "Front",
  2176. image: {
  2177. source: "./media/characters/flamm/front.svg",
  2178. extra: 1794 / 1677,
  2179. bottom: 31.7 / 1828.5
  2180. }
  2181. },
  2182. },
  2183. [
  2184. {
  2185. name: "Normal",
  2186. height: math.unit(9.5, "feet")
  2187. },
  2188. {
  2189. name: "Macro",
  2190. height: math.unit(200, "feet"),
  2191. default: true
  2192. },
  2193. ]
  2194. ))
  2195. characterMakers.push(() => makeCharacter(
  2196. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2197. {
  2198. front: {
  2199. height: math.unit(7, "feet"),
  2200. weight: math.unit(80, "kg"),
  2201. name: "Front",
  2202. image: {
  2203. source: "./media/characters/zephiro/front.svg",
  2204. extra: 2309 / 2162,
  2205. bottom: 0.069
  2206. }
  2207. },
  2208. side: {
  2209. height: math.unit(7, "feet"),
  2210. weight: math.unit(80, "kg"),
  2211. name: "Side",
  2212. image: {
  2213. source: "./media/characters/zephiro/side.svg",
  2214. extra: 2403 / 2279,
  2215. bottom: 0.015
  2216. }
  2217. },
  2218. back: {
  2219. height: math.unit(7, "feet"),
  2220. weight: math.unit(80, "kg"),
  2221. name: "Back",
  2222. image: {
  2223. source: "./media/characters/zephiro/back.svg",
  2224. extra: 2373 / 2244,
  2225. bottom: 0.013
  2226. }
  2227. },
  2228. },
  2229. [
  2230. {
  2231. name: "Micro",
  2232. height: math.unit(3, "inches")
  2233. },
  2234. {
  2235. name: "Normal",
  2236. height: math.unit(5 + 3 / 12, "feet"),
  2237. default: true
  2238. },
  2239. {
  2240. name: "Macro",
  2241. height: math.unit(118, "feet")
  2242. },
  2243. ]
  2244. ))
  2245. characterMakers.push(() => makeCharacter(
  2246. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2247. {
  2248. front: {
  2249. height: math.unit(5, "feet"),
  2250. weight: math.unit(90, "kg"),
  2251. name: "Front",
  2252. image: {
  2253. source: "./media/characters/fory/front.svg",
  2254. extra: 2862 / 2674,
  2255. bottom: 180 / 3043.8
  2256. }
  2257. },
  2258. back: {
  2259. height: math.unit(5, "feet"),
  2260. weight: math.unit(90, "kg"),
  2261. name: "Back",
  2262. image: {
  2263. source: "./media/characters/fory/back.svg",
  2264. extra: 2962 / 2791,
  2265. bottom: 106 / 3071.8
  2266. }
  2267. },
  2268. foot: {
  2269. height: math.unit(2.14, "feet"),
  2270. name: "Foot",
  2271. image: {
  2272. source: "./media/characters/fory/foot.svg"
  2273. }
  2274. },
  2275. },
  2276. [
  2277. {
  2278. name: "Normal",
  2279. height: math.unit(5, "feet")
  2280. },
  2281. {
  2282. name: "Macro",
  2283. height: math.unit(50, "feet"),
  2284. default: true
  2285. },
  2286. {
  2287. name: "Megamacro",
  2288. height: math.unit(10, "miles")
  2289. },
  2290. {
  2291. name: "Gigamacro",
  2292. height: math.unit(5, "earths")
  2293. },
  2294. ]
  2295. ))
  2296. characterMakers.push(() => makeCharacter(
  2297. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2298. {
  2299. front: {
  2300. height: math.unit(7, "feet"),
  2301. weight: math.unit(90, "kg"),
  2302. name: "Front",
  2303. image: {
  2304. source: "./media/characters/kurrikage/front.svg",
  2305. extra: 1,
  2306. bottom: 0.035
  2307. }
  2308. },
  2309. back: {
  2310. height: math.unit(7, "feet"),
  2311. weight: math.unit(90, "lb"),
  2312. name: "Back",
  2313. image: {
  2314. source: "./media/characters/kurrikage/back.svg"
  2315. }
  2316. },
  2317. paw: {
  2318. height: math.unit(1.5, "feet"),
  2319. name: "Paw",
  2320. image: {
  2321. source: "./media/characters/kurrikage/paw.svg"
  2322. }
  2323. },
  2324. staff: {
  2325. height: math.unit(6.7, "feet"),
  2326. name: "Staff",
  2327. image: {
  2328. source: "./media/characters/kurrikage/staff.svg"
  2329. }
  2330. },
  2331. peek: {
  2332. height: math.unit(1.05, "feet"),
  2333. name: "Peeking",
  2334. image: {
  2335. source: "./media/characters/kurrikage/peek.svg",
  2336. bottom: 0.08
  2337. }
  2338. },
  2339. },
  2340. [
  2341. {
  2342. name: "Normal",
  2343. height: math.unit(12, "feet"),
  2344. default: true
  2345. },
  2346. {
  2347. name: "Big",
  2348. height: math.unit(20, "feet")
  2349. },
  2350. {
  2351. name: "Macro",
  2352. height: math.unit(500, "feet")
  2353. },
  2354. {
  2355. name: "Megamacro",
  2356. height: math.unit(20, "miles")
  2357. },
  2358. ]
  2359. ))
  2360. characterMakers.push(() => makeCharacter(
  2361. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2362. {
  2363. front: {
  2364. height: math.unit(6, "feet"),
  2365. weight: math.unit(75, "kg"),
  2366. name: "Front",
  2367. image: {
  2368. source: "./media/characters/shingo/front.svg",
  2369. extra: 3511 / 3338,
  2370. bottom: 0.005
  2371. }
  2372. },
  2373. paw: {
  2374. height: math.unit(1, "feet"),
  2375. name: "Paw",
  2376. image: {
  2377. source: "./media/characters/shingo/paw.svg"
  2378. }
  2379. },
  2380. },
  2381. [
  2382. {
  2383. name: "Micro",
  2384. height: math.unit(4, "inches")
  2385. },
  2386. {
  2387. name: "Normal",
  2388. height: math.unit(6, "feet"),
  2389. default: true
  2390. },
  2391. {
  2392. name: "Macro",
  2393. height: math.unit(108, "feet")
  2394. },
  2395. {
  2396. name: "Macro+",
  2397. height: math.unit(1500, "feet")
  2398. },
  2399. ]
  2400. ))
  2401. characterMakers.push(() => makeCharacter(
  2402. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2403. {
  2404. side: {
  2405. height: math.unit(6, "feet"),
  2406. weight: math.unit(75, "kg"),
  2407. name: "Side",
  2408. image: {
  2409. source: "./media/characters/aigey/side.svg"
  2410. }
  2411. },
  2412. },
  2413. [
  2414. {
  2415. name: "Macro",
  2416. height: math.unit(200, "feet"),
  2417. default: true
  2418. },
  2419. {
  2420. name: "Megamacro",
  2421. height: math.unit(100, "miles")
  2422. },
  2423. ]
  2424. )
  2425. )
  2426. characterMakers.push(() => makeCharacter(
  2427. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2428. {
  2429. front: {
  2430. height: math.unit(5 + 5 / 12, "feet"),
  2431. weight: math.unit(75, "kg"),
  2432. name: "Front",
  2433. image: {
  2434. source: "./media/characters/natasha/front.svg",
  2435. extra: 859 / 824,
  2436. bottom: 23 / 879.6
  2437. }
  2438. },
  2439. frontNsfw: {
  2440. height: math.unit(5 + 5 / 12, "feet"),
  2441. weight: math.unit(75, "kg"),
  2442. name: "Front (NSFW)",
  2443. image: {
  2444. source: "./media/characters/natasha/front-nsfw.svg",
  2445. extra: 859 / 824,
  2446. bottom: 23 / 879.6
  2447. }
  2448. },
  2449. frontErect: {
  2450. height: math.unit(5 + 5 / 12, "feet"),
  2451. weight: math.unit(75, "kg"),
  2452. name: "Front (Erect)",
  2453. image: {
  2454. source: "./media/characters/natasha/front-erect.svg",
  2455. extra: 859 / 824,
  2456. bottom: 23 / 879.6
  2457. }
  2458. },
  2459. back: {
  2460. height: math.unit(5 + 5 / 12, "feet"),
  2461. weight: math.unit(75, "kg"),
  2462. name: "Back",
  2463. image: {
  2464. source: "./media/characters/natasha/back.svg",
  2465. extra: 887.9 / 852.6,
  2466. bottom: 9.7 / 896.4
  2467. }
  2468. },
  2469. backAlt: {
  2470. height: math.unit(5 + 5 / 12, "feet"),
  2471. weight: math.unit(75, "kg"),
  2472. name: "Back (Alt)",
  2473. image: {
  2474. source: "./media/characters/natasha/back-alt.svg",
  2475. extra: 1236.7 / 1192,
  2476. bottom: 22.3 / 1258.2
  2477. }
  2478. },
  2479. dick: {
  2480. height: math.unit(1.772, "feet"),
  2481. name: "Dick",
  2482. image: {
  2483. source: "./media/characters/natasha/dick.svg"
  2484. }
  2485. },
  2486. paw: {
  2487. height: math.unit(0.250, "meters"),
  2488. name: "Paw",
  2489. image: {
  2490. source: "./media/characters/natasha/paw.svg"
  2491. }
  2492. },
  2493. },
  2494. [
  2495. {
  2496. name: "Normal",
  2497. height: math.unit(5 + 5 / 12, "feet")
  2498. },
  2499. {
  2500. name: "Large",
  2501. height: math.unit(12, "feet")
  2502. },
  2503. {
  2504. name: "Macro",
  2505. height: math.unit(100, "feet"),
  2506. default: true
  2507. },
  2508. {
  2509. name: "Macro+",
  2510. height: math.unit(260, "feet")
  2511. },
  2512. {
  2513. name: "Macro++",
  2514. height: math.unit(1, "mile")
  2515. },
  2516. ]
  2517. ))
  2518. characterMakers.push(() => makeCharacter(
  2519. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2520. {
  2521. front: {
  2522. height: math.unit(6, "feet"),
  2523. weight: math.unit(75, "kg"),
  2524. name: "Front",
  2525. image: {
  2526. source: "./media/characters/malik/front.svg"
  2527. }
  2528. },
  2529. side: {
  2530. height: math.unit(6, "feet"),
  2531. weight: math.unit(75, "kg"),
  2532. name: "Side",
  2533. image: {
  2534. source: "./media/characters/malik/side.svg",
  2535. extra: 1.1539
  2536. }
  2537. },
  2538. back: {
  2539. height: math.unit(6, "feet"),
  2540. weight: math.unit(75, "kg"),
  2541. name: "Back",
  2542. image: {
  2543. source: "./media/characters/malik/back.svg"
  2544. }
  2545. },
  2546. },
  2547. [
  2548. {
  2549. name: "Macro",
  2550. height: math.unit(156, "feet"),
  2551. default: true
  2552. },
  2553. {
  2554. name: "Macro+",
  2555. height: math.unit(1188, "feet")
  2556. },
  2557. ]
  2558. ))
  2559. characterMakers.push(() => makeCharacter(
  2560. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2561. {
  2562. front: {
  2563. height: math.unit(6, "feet"),
  2564. weight: math.unit(75, "kg"),
  2565. name: "Front",
  2566. image: {
  2567. source: "./media/characters/sefer/front.svg",
  2568. extra: 848 / 659,
  2569. bottom: 28.3 / 876.442
  2570. }
  2571. },
  2572. back: {
  2573. height: math.unit(6, "feet"),
  2574. weight: math.unit(75, "kg"),
  2575. name: "Back",
  2576. image: {
  2577. source: "./media/characters/sefer/back.svg",
  2578. extra: 864 / 695,
  2579. bottom: 10 / 871
  2580. }
  2581. },
  2582. frontDressed: {
  2583. height: math.unit(6, "feet"),
  2584. weight: math.unit(75, "kg"),
  2585. name: "Front (Dressed)",
  2586. image: {
  2587. source: "./media/characters/sefer/front-dressed.svg",
  2588. extra: 839 / 653,
  2589. bottom: 37.6 / 878
  2590. }
  2591. },
  2592. },
  2593. [
  2594. {
  2595. name: "Normal",
  2596. height: math.unit(6, "feet"),
  2597. default: true
  2598. },
  2599. ]
  2600. ))
  2601. characterMakers.push(() => makeCharacter(
  2602. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2603. {
  2604. body: {
  2605. height: math.unit(2.2428, "meter"),
  2606. weight: math.unit(124.738, "kg"),
  2607. name: "Body",
  2608. image: {
  2609. extra: 1225 / 1050,
  2610. source: "./media/characters/north/front.svg"
  2611. }
  2612. }
  2613. },
  2614. [
  2615. {
  2616. name: "Micro",
  2617. height: math.unit(4, "inches")
  2618. },
  2619. {
  2620. name: "Macro",
  2621. height: math.unit(63, "meters")
  2622. },
  2623. {
  2624. name: "Megamacro",
  2625. height: math.unit(101, "miles"),
  2626. default: true
  2627. }
  2628. ]
  2629. ))
  2630. characterMakers.push(() => makeCharacter(
  2631. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2632. {
  2633. angled: {
  2634. height: math.unit(4, "meter"),
  2635. weight: math.unit(150, "kg"),
  2636. name: "Angled",
  2637. image: {
  2638. source: "./media/characters/talan/angled-sfw.svg",
  2639. bottom: 29 / 3734
  2640. }
  2641. },
  2642. angledNsfw: {
  2643. height: math.unit(4, "meter"),
  2644. weight: math.unit(150, "kg"),
  2645. name: "Angled (NSFW)",
  2646. image: {
  2647. source: "./media/characters/talan/angled-nsfw.svg",
  2648. bottom: 29 / 3734
  2649. }
  2650. },
  2651. frontNsfw: {
  2652. height: math.unit(4, "meter"),
  2653. weight: math.unit(150, "kg"),
  2654. name: "Front (NSFW)",
  2655. image: {
  2656. source: "./media/characters/talan/front-nsfw.svg",
  2657. bottom: 29 / 3734
  2658. }
  2659. },
  2660. sideNsfw: {
  2661. height: math.unit(4, "meter"),
  2662. weight: math.unit(150, "kg"),
  2663. name: "Side (NSFW)",
  2664. image: {
  2665. source: "./media/characters/talan/side-nsfw.svg",
  2666. bottom: 29 / 3734
  2667. }
  2668. },
  2669. back: {
  2670. height: math.unit(4, "meter"),
  2671. weight: math.unit(150, "kg"),
  2672. name: "Back",
  2673. image: {
  2674. source: "./media/characters/talan/back.svg"
  2675. }
  2676. },
  2677. dickBottom: {
  2678. height: math.unit(0.621, "meter"),
  2679. name: "Dick (Bottom)",
  2680. image: {
  2681. source: "./media/characters/talan/dick-bottom.svg"
  2682. }
  2683. },
  2684. dickTop: {
  2685. height: math.unit(0.621, "meter"),
  2686. name: "Dick (Top)",
  2687. image: {
  2688. source: "./media/characters/talan/dick-top.svg"
  2689. }
  2690. },
  2691. dickSide: {
  2692. height: math.unit(0.305, "meter"),
  2693. name: "Dick (Side)",
  2694. image: {
  2695. source: "./media/characters/talan/dick-side.svg"
  2696. }
  2697. },
  2698. dickFront: {
  2699. height: math.unit(0.305, "meter"),
  2700. name: "Dick (Front)",
  2701. image: {
  2702. source: "./media/characters/talan/dick-front.svg"
  2703. }
  2704. },
  2705. },
  2706. [
  2707. {
  2708. name: "Normal",
  2709. height: math.unit(4, "meters")
  2710. },
  2711. {
  2712. name: "Macro",
  2713. height: math.unit(100, "meters")
  2714. },
  2715. {
  2716. name: "Megamacro",
  2717. height: math.unit(2, "miles"),
  2718. default: true
  2719. },
  2720. {
  2721. name: "Gigamacro",
  2722. height: math.unit(5000, "miles")
  2723. },
  2724. {
  2725. name: "Teramacro",
  2726. height: math.unit(100, "parsecs")
  2727. }
  2728. ]
  2729. ))
  2730. characterMakers.push(() => makeCharacter(
  2731. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2732. {
  2733. front: {
  2734. height: math.unit(2, "meter"),
  2735. weight: math.unit(90, "kg"),
  2736. name: "Front",
  2737. image: {
  2738. source: "./media/characters/gael'rathus/front.svg"
  2739. }
  2740. },
  2741. frontAlt: {
  2742. height: math.unit(2, "meter"),
  2743. weight: math.unit(90, "kg"),
  2744. name: "Front (alt)",
  2745. image: {
  2746. source: "./media/characters/gael'rathus/front-alt.svg"
  2747. }
  2748. },
  2749. frontAlt2: {
  2750. height: math.unit(2, "meter"),
  2751. weight: math.unit(90, "kg"),
  2752. name: "Front (alt 2)",
  2753. image: {
  2754. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2755. }
  2756. }
  2757. },
  2758. [
  2759. {
  2760. name: "Normal",
  2761. height: math.unit(9, "feet"),
  2762. default: true
  2763. },
  2764. {
  2765. name: "Large",
  2766. height: math.unit(25, "feet")
  2767. },
  2768. {
  2769. name: "Macro",
  2770. height: math.unit(0.25, "miles")
  2771. },
  2772. {
  2773. name: "Megamacro",
  2774. height: math.unit(10, "miles")
  2775. }
  2776. ]
  2777. ))
  2778. characterMakers.push(() => makeCharacter(
  2779. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2780. {
  2781. side: {
  2782. height: math.unit(2, "meter"),
  2783. weight: math.unit(140, "kg"),
  2784. name: "Side",
  2785. image: {
  2786. source: "./media/characters/sosha/side.svg",
  2787. bottom: 0.042
  2788. }
  2789. },
  2790. },
  2791. [
  2792. {
  2793. name: "Normal",
  2794. height: math.unit(12, "feet"),
  2795. default: true
  2796. }
  2797. ]
  2798. ))
  2799. characterMakers.push(() => makeCharacter(
  2800. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2801. {
  2802. side: {
  2803. height: math.unit(5 + 5 / 12, "feet"),
  2804. weight: math.unit(170, "kg"),
  2805. name: "Side",
  2806. image: {
  2807. source: "./media/characters/runnola/side.svg",
  2808. extra: 741 / 448,
  2809. bottom: 0.05
  2810. }
  2811. },
  2812. },
  2813. [
  2814. {
  2815. name: "Small",
  2816. height: math.unit(3, "feet")
  2817. },
  2818. {
  2819. name: "Normal",
  2820. height: math.unit(5 + 5 / 12, "feet"),
  2821. default: true
  2822. },
  2823. {
  2824. name: "Big",
  2825. height: math.unit(10, "feet")
  2826. },
  2827. ]
  2828. ))
  2829. characterMakers.push(() => makeCharacter(
  2830. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2831. {
  2832. front: {
  2833. height: math.unit(2, "meter"),
  2834. weight: math.unit(50, "kg"),
  2835. name: "Front",
  2836. image: {
  2837. source: "./media/characters/kurribird/front.svg",
  2838. bottom: 0.015
  2839. }
  2840. },
  2841. frontAlt: {
  2842. height: math.unit(1.5, "meter"),
  2843. weight: math.unit(50, "kg"),
  2844. name: "Front (Alt)",
  2845. image: {
  2846. source: "./media/characters/kurribird/front-alt.svg",
  2847. extra: 1.45
  2848. }
  2849. },
  2850. },
  2851. [
  2852. {
  2853. name: "Normal",
  2854. height: math.unit(7, "feet")
  2855. },
  2856. {
  2857. name: "Big",
  2858. height: math.unit(12, "feet"),
  2859. default: true
  2860. },
  2861. {
  2862. name: "Macro",
  2863. height: math.unit(1500, "feet")
  2864. },
  2865. {
  2866. name: "Megamacro",
  2867. height: math.unit(2, "miles")
  2868. }
  2869. ]
  2870. ))
  2871. characterMakers.push(() => makeCharacter(
  2872. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2873. {
  2874. front: {
  2875. height: math.unit(2, "meter"),
  2876. weight: math.unit(80, "kg"),
  2877. name: "Front",
  2878. image: {
  2879. source: "./media/characters/elbial/front.svg",
  2880. extra: 1643 / 1556,
  2881. bottom: 60.2 / 1696
  2882. }
  2883. },
  2884. side: {
  2885. height: math.unit(2, "meter"),
  2886. weight: math.unit(80, "kg"),
  2887. name: "Side",
  2888. image: {
  2889. source: "./media/characters/elbial/side.svg",
  2890. extra: 1630 / 1565,
  2891. bottom: 71.5 / 1697
  2892. }
  2893. },
  2894. back: {
  2895. height: math.unit(2, "meter"),
  2896. weight: math.unit(80, "kg"),
  2897. name: "Back",
  2898. image: {
  2899. source: "./media/characters/elbial/back.svg",
  2900. extra: 1668 / 1595,
  2901. bottom: 5.6 / 1672
  2902. }
  2903. },
  2904. frontDressed: {
  2905. height: math.unit(2, "meter"),
  2906. weight: math.unit(80, "kg"),
  2907. name: "Front (Dressed)",
  2908. image: {
  2909. source: "./media/characters/elbial/front-dressed.svg",
  2910. extra: 1653 / 1584,
  2911. bottom: 57 / 1708
  2912. }
  2913. },
  2914. genitals: {
  2915. height: math.unit(2 / 3.367, "meter"),
  2916. name: "Genitals",
  2917. image: {
  2918. source: "./media/characters/elbial/genitals.svg"
  2919. }
  2920. },
  2921. },
  2922. [
  2923. {
  2924. name: "Large",
  2925. height: math.unit(100, "feet")
  2926. },
  2927. {
  2928. name: "Macro",
  2929. height: math.unit(500, "feet"),
  2930. default: true
  2931. },
  2932. {
  2933. name: "Megamacro",
  2934. height: math.unit(10, "miles")
  2935. },
  2936. {
  2937. name: "Gigamacro",
  2938. height: math.unit(25000, "miles")
  2939. },
  2940. {
  2941. name: "Full-Size",
  2942. height: math.unit(8000000, "gigaparsecs")
  2943. }
  2944. ]
  2945. ))
  2946. characterMakers.push(() => makeCharacter(
  2947. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2948. {
  2949. front: {
  2950. height: math.unit(2, "meter"),
  2951. weight: math.unit(60, "kg"),
  2952. name: "Front",
  2953. image: {
  2954. source: "./media/characters/noah/front.svg"
  2955. }
  2956. },
  2957. talons: {
  2958. height: math.unit(0.315, "meter"),
  2959. name: "Talons",
  2960. image: {
  2961. source: "./media/characters/noah/talons.svg"
  2962. }
  2963. }
  2964. },
  2965. [
  2966. {
  2967. name: "Large",
  2968. height: math.unit(50, "feet")
  2969. },
  2970. {
  2971. name: "Macro",
  2972. height: math.unit(750, "feet"),
  2973. default: true
  2974. },
  2975. {
  2976. name: "Megamacro",
  2977. height: math.unit(50, "miles")
  2978. },
  2979. {
  2980. name: "Gigamacro",
  2981. height: math.unit(100000, "miles")
  2982. },
  2983. {
  2984. name: "Full-Size",
  2985. height: math.unit(3000000000, "miles")
  2986. }
  2987. ]
  2988. ))
  2989. characterMakers.push(() => makeCharacter(
  2990. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2991. {
  2992. front: {
  2993. height: math.unit(2, "meter"),
  2994. weight: math.unit(80, "kg"),
  2995. name: "Front",
  2996. image: {
  2997. source: "./media/characters/natalya/front.svg"
  2998. }
  2999. },
  3000. back: {
  3001. height: math.unit(2, "meter"),
  3002. weight: math.unit(80, "kg"),
  3003. name: "Back",
  3004. image: {
  3005. source: "./media/characters/natalya/back.svg"
  3006. }
  3007. }
  3008. },
  3009. [
  3010. {
  3011. name: "Normal",
  3012. height: math.unit(150, "feet"),
  3013. default: true
  3014. },
  3015. {
  3016. name: "Megamacro",
  3017. height: math.unit(5, "miles")
  3018. },
  3019. {
  3020. name: "Full-Size",
  3021. height: math.unit(600, "kiloparsecs")
  3022. }
  3023. ]
  3024. ))
  3025. characterMakers.push(() => makeCharacter(
  3026. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3027. {
  3028. front: {
  3029. height: math.unit(2, "meter"),
  3030. weight: math.unit(50, "kg"),
  3031. name: "Front",
  3032. image: {
  3033. source: "./media/characters/erestrebah/front.svg",
  3034. extra: 208 / 193,
  3035. bottom: 0.055
  3036. }
  3037. },
  3038. back: {
  3039. height: math.unit(2, "meter"),
  3040. weight: math.unit(50, "kg"),
  3041. name: "Back",
  3042. image: {
  3043. source: "./media/characters/erestrebah/back.svg",
  3044. extra: 1.3
  3045. }
  3046. }
  3047. },
  3048. [
  3049. {
  3050. name: "Normal",
  3051. height: math.unit(10, "feet")
  3052. },
  3053. {
  3054. name: "Large",
  3055. height: math.unit(50, "feet"),
  3056. default: true
  3057. },
  3058. {
  3059. name: "Macro",
  3060. height: math.unit(300, "feet")
  3061. },
  3062. {
  3063. name: "Macro+",
  3064. height: math.unit(750, "feet")
  3065. },
  3066. {
  3067. name: "Megamacro",
  3068. height: math.unit(3, "miles")
  3069. }
  3070. ]
  3071. ))
  3072. characterMakers.push(() => makeCharacter(
  3073. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3074. {
  3075. front: {
  3076. height: math.unit(2, "meter"),
  3077. weight: math.unit(80, "kg"),
  3078. name: "Front",
  3079. image: {
  3080. source: "./media/characters/jennifer/front.svg",
  3081. bottom: 0.11,
  3082. extra: 1.16
  3083. }
  3084. },
  3085. frontAlt: {
  3086. height: math.unit(2, "meter"),
  3087. weight: math.unit(80, "kg"),
  3088. name: "Front (Alt)",
  3089. image: {
  3090. source: "./media/characters/jennifer/front-alt.svg"
  3091. }
  3092. }
  3093. },
  3094. [
  3095. {
  3096. name: "Canon Height",
  3097. height: math.unit(120, "feet"),
  3098. default: true
  3099. },
  3100. {
  3101. name: "Macro+",
  3102. height: math.unit(300, "feet")
  3103. },
  3104. {
  3105. name: "Megamacro",
  3106. height: math.unit(20000, "feet")
  3107. }
  3108. ]
  3109. ))
  3110. characterMakers.push(() => makeCharacter(
  3111. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3112. {
  3113. front: {
  3114. height: math.unit(2, "meter"),
  3115. weight: math.unit(50, "kg"),
  3116. name: "Front",
  3117. image: {
  3118. source: "./media/characters/kalista/front.svg",
  3119. extra: 1947 / 1700,
  3120. bottom: 76.6 / 1412.98
  3121. }
  3122. },
  3123. back: {
  3124. height: math.unit(2, "meter"),
  3125. weight: math.unit(50, "kg"),
  3126. name: "Back",
  3127. image: {
  3128. source: "./media/characters/kalista/back.svg",
  3129. extra: 1366 / 1156,
  3130. bottom: 33.9 / 1362.78
  3131. }
  3132. }
  3133. },
  3134. [
  3135. {
  3136. name: "Uncomfortably Small",
  3137. height: math.unit(10, "feet")
  3138. },
  3139. {
  3140. name: "Small",
  3141. height: math.unit(30, "feet")
  3142. },
  3143. {
  3144. name: "Macro",
  3145. height: math.unit(100, "feet"),
  3146. default: true
  3147. },
  3148. {
  3149. name: "Macro+",
  3150. height: math.unit(2000, "feet")
  3151. },
  3152. {
  3153. name: "True Form",
  3154. height: math.unit(8924, "miles")
  3155. }
  3156. ]
  3157. ))
  3158. characterMakers.push(() => makeCharacter(
  3159. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3160. {
  3161. front: {
  3162. height: math.unit(2, "meter"),
  3163. weight: math.unit(120, "kg"),
  3164. name: "Front",
  3165. image: {
  3166. source: "./media/characters/ggv/front.svg"
  3167. }
  3168. },
  3169. side: {
  3170. height: math.unit(2, "meter"),
  3171. weight: math.unit(120, "kg"),
  3172. name: "Side",
  3173. image: {
  3174. source: "./media/characters/ggv/side.svg"
  3175. }
  3176. }
  3177. },
  3178. [
  3179. {
  3180. name: "Extremely Puny",
  3181. height: math.unit(9 + 5 / 12, "feet")
  3182. },
  3183. {
  3184. name: "Horribly Small",
  3185. height: math.unit(47.7, "miles"),
  3186. default: true
  3187. },
  3188. {
  3189. name: "Reasonably Sized",
  3190. height: math.unit(25000, "parsecs")
  3191. },
  3192. {
  3193. name: "Slightly Uncompressed",
  3194. height: math.unit(7.77e31, "parsecs")
  3195. },
  3196. {
  3197. name: "Omniversal",
  3198. height: math.unit(1e300, "meters")
  3199. },
  3200. ]
  3201. ))
  3202. characterMakers.push(() => makeCharacter(
  3203. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3204. {
  3205. front: {
  3206. height: math.unit(2, "meter"),
  3207. weight: math.unit(75, "lb"),
  3208. name: "Front",
  3209. image: {
  3210. source: "./media/characters/napalm/front.svg"
  3211. }
  3212. },
  3213. back: {
  3214. height: math.unit(2, "meter"),
  3215. weight: math.unit(75, "lb"),
  3216. name: "Back",
  3217. image: {
  3218. source: "./media/characters/napalm/back.svg"
  3219. }
  3220. }
  3221. },
  3222. [
  3223. {
  3224. name: "Standard",
  3225. height: math.unit(55, "feet"),
  3226. default: true
  3227. }
  3228. ]
  3229. ))
  3230. characterMakers.push(() => makeCharacter(
  3231. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3232. {
  3233. front: {
  3234. height: math.unit(7 + 5 / 6, "feet"),
  3235. weight: math.unit(325, "lb"),
  3236. name: "Front",
  3237. image: {
  3238. source: "./media/characters/asana/front.svg",
  3239. extra: 1133 / 1060,
  3240. bottom: 15.2 / 1148.6
  3241. }
  3242. },
  3243. back: {
  3244. height: math.unit(7 + 5 / 6, "feet"),
  3245. weight: math.unit(325, "lb"),
  3246. name: "Back",
  3247. image: {
  3248. source: "./media/characters/asana/back.svg",
  3249. extra: 1114 / 1043,
  3250. bottom: 5 / 1120
  3251. }
  3252. },
  3253. dressedDark: {
  3254. height: math.unit(7 + 5 / 6, "feet"),
  3255. weight: math.unit(325, "lb"),
  3256. name: "Dressed (Dark)",
  3257. image: {
  3258. source: "./media/characters/asana/dressed-dark.svg",
  3259. extra: 1133 / 1060,
  3260. bottom: 15.2 / 1148.6
  3261. }
  3262. },
  3263. dressedLight: {
  3264. height: math.unit(7 + 5 / 6, "feet"),
  3265. weight: math.unit(325, "lb"),
  3266. name: "Dressed (Light)",
  3267. image: {
  3268. source: "./media/characters/asana/dressed-light.svg",
  3269. extra: 1133 / 1060,
  3270. bottom: 15.2 / 1148.6
  3271. }
  3272. },
  3273. },
  3274. [
  3275. {
  3276. name: "Standard",
  3277. height: math.unit(7 + 5 / 6, "feet"),
  3278. default: true
  3279. },
  3280. {
  3281. name: "Large",
  3282. height: math.unit(10, "meters")
  3283. },
  3284. {
  3285. name: "Macro",
  3286. height: math.unit(2500, "meters")
  3287. },
  3288. {
  3289. name: "Megamacro",
  3290. height: math.unit(5e6, "meters")
  3291. },
  3292. {
  3293. name: "Examacro",
  3294. height: math.unit(5e12, "lightyears")
  3295. },
  3296. {
  3297. name: "Max Size",
  3298. height: math.unit(1e31, "lightyears")
  3299. }
  3300. ]
  3301. ))
  3302. characterMakers.push(() => makeCharacter(
  3303. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3304. {
  3305. front: {
  3306. height: math.unit(2, "meter"),
  3307. weight: math.unit(60, "kg"),
  3308. name: "Front",
  3309. image: {
  3310. source: "./media/characters/ebony/front.svg",
  3311. bottom: 0.03,
  3312. extra: 1045 / 810 + 0.03
  3313. }
  3314. },
  3315. side: {
  3316. height: math.unit(2, "meter"),
  3317. weight: math.unit(60, "kg"),
  3318. name: "Side",
  3319. image: {
  3320. source: "./media/characters/ebony/side.svg",
  3321. bottom: 0.03,
  3322. extra: 1045 / 810 + 0.03
  3323. }
  3324. },
  3325. back: {
  3326. height: math.unit(2, "meter"),
  3327. weight: math.unit(60, "kg"),
  3328. name: "Back",
  3329. image: {
  3330. source: "./media/characters/ebony/back.svg",
  3331. bottom: 0.01,
  3332. extra: 1045 / 810 + 0.01
  3333. }
  3334. },
  3335. },
  3336. [
  3337. // TODO check why I did this lol
  3338. {
  3339. name: "Standard",
  3340. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3341. default: true
  3342. },
  3343. {
  3344. name: "Macro",
  3345. height: math.unit(200, "feet")
  3346. },
  3347. {
  3348. name: "Gigamacro",
  3349. height: math.unit(13000, "km")
  3350. }
  3351. ]
  3352. ))
  3353. characterMakers.push(() => makeCharacter(
  3354. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3355. {
  3356. front: {
  3357. height: math.unit(6, "feet"),
  3358. weight: math.unit(175, "lb"),
  3359. name: "Front",
  3360. image: {
  3361. source: "./media/characters/mountain/front.svg",
  3362. extra: 972 / 955,
  3363. bottom: 64 / 1036.6
  3364. }
  3365. },
  3366. back: {
  3367. height: math.unit(6, "feet"),
  3368. weight: math.unit(175, "lb"),
  3369. name: "Back",
  3370. image: {
  3371. source: "./media/characters/mountain/back.svg",
  3372. extra: 970 / 950,
  3373. bottom: 28.25 / 999
  3374. }
  3375. },
  3376. },
  3377. [
  3378. {
  3379. name: "Large",
  3380. height: math.unit(20, "meters")
  3381. },
  3382. {
  3383. name: "Macro",
  3384. height: math.unit(300, "meters")
  3385. },
  3386. {
  3387. name: "Gigamacro",
  3388. height: math.unit(10000, "km"),
  3389. default: true
  3390. },
  3391. {
  3392. name: "Examacro",
  3393. height: math.unit(10e9, "lightyears")
  3394. }
  3395. ]
  3396. ))
  3397. characterMakers.push(() => makeCharacter(
  3398. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3399. {
  3400. front: {
  3401. height: math.unit(8, "feet"),
  3402. weight: math.unit(500, "lb"),
  3403. name: "Front",
  3404. image: {
  3405. source: "./media/characters/rick/front.svg"
  3406. }
  3407. }
  3408. },
  3409. [
  3410. {
  3411. name: "Normal",
  3412. height: math.unit(8, "feet"),
  3413. default: true
  3414. },
  3415. {
  3416. name: "Macro",
  3417. height: math.unit(5, "km")
  3418. }
  3419. ]
  3420. ))
  3421. characterMakers.push(() => makeCharacter(
  3422. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3423. {
  3424. front: {
  3425. height: math.unit(8, "feet"),
  3426. weight: math.unit(120, "lb"),
  3427. name: "Front",
  3428. image: {
  3429. source: "./media/characters/ona/front.svg"
  3430. }
  3431. },
  3432. frontAlt: {
  3433. height: math.unit(8, "feet"),
  3434. weight: math.unit(120, "lb"),
  3435. name: "Front (Alt)",
  3436. image: {
  3437. source: "./media/characters/ona/front-alt.svg"
  3438. }
  3439. },
  3440. back: {
  3441. height: math.unit(8, "feet"),
  3442. weight: math.unit(120, "lb"),
  3443. name: "Back",
  3444. image: {
  3445. source: "./media/characters/ona/back.svg"
  3446. }
  3447. },
  3448. foot: {
  3449. height: math.unit(1.1, "feet"),
  3450. name: "Foot",
  3451. image: {
  3452. source: "./media/characters/ona/foot.svg"
  3453. }
  3454. }
  3455. },
  3456. [
  3457. {
  3458. name: "Megamacro",
  3459. height: math.unit(70, "km"),
  3460. default: true
  3461. },
  3462. {
  3463. name: "Gigamacro",
  3464. height: math.unit(681818, "miles")
  3465. },
  3466. {
  3467. name: "Examacro",
  3468. height: math.unit(3800000, "lightyears")
  3469. },
  3470. ]
  3471. ))
  3472. characterMakers.push(() => makeCharacter(
  3473. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3474. {
  3475. front: {
  3476. height: math.unit(12, "feet"),
  3477. weight: math.unit(3000, "lb"),
  3478. name: "Front",
  3479. image: {
  3480. source: "./media/characters/mech/front.svg",
  3481. extra: 2900 / 2770,
  3482. bottom: 110 / 3010
  3483. }
  3484. },
  3485. back: {
  3486. height: math.unit(12, "feet"),
  3487. weight: math.unit(3000, "lb"),
  3488. name: "Back",
  3489. image: {
  3490. source: "./media/characters/mech/back.svg",
  3491. extra: 3011 / 2890,
  3492. bottom: 94 / 3105
  3493. }
  3494. },
  3495. maw: {
  3496. height: math.unit(3.07, "feet"),
  3497. name: "Maw",
  3498. image: {
  3499. source: "./media/characters/mech/maw.svg"
  3500. }
  3501. },
  3502. head: {
  3503. height: math.unit(2.82, "feet"),
  3504. name: "Head",
  3505. image: {
  3506. source: "./media/characters/mech/head.svg"
  3507. }
  3508. },
  3509. dick: {
  3510. height: math.unit(1.43, "feet"),
  3511. name: "Dick",
  3512. image: {
  3513. source: "./media/characters/mech/dick.svg"
  3514. }
  3515. },
  3516. },
  3517. [
  3518. {
  3519. name: "Normal",
  3520. height: math.unit(12, "feet")
  3521. },
  3522. {
  3523. name: "Macro",
  3524. height: math.unit(300, "feet"),
  3525. default: true
  3526. },
  3527. {
  3528. name: "Macro+",
  3529. height: math.unit(1500, "feet")
  3530. },
  3531. ]
  3532. ))
  3533. characterMakers.push(() => makeCharacter(
  3534. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3535. {
  3536. front: {
  3537. height: math.unit(1.3, "meter"),
  3538. weight: math.unit(30, "kg"),
  3539. name: "Front",
  3540. image: {
  3541. source: "./media/characters/gregory/front.svg",
  3542. }
  3543. }
  3544. },
  3545. [
  3546. {
  3547. name: "Normal",
  3548. height: math.unit(1.3, "meter"),
  3549. default: true
  3550. },
  3551. {
  3552. name: "Macro",
  3553. height: math.unit(20, "meter")
  3554. }
  3555. ]
  3556. ))
  3557. characterMakers.push(() => makeCharacter(
  3558. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3559. {
  3560. front: {
  3561. height: math.unit(2.8, "meter"),
  3562. weight: math.unit(200, "kg"),
  3563. name: "Front",
  3564. image: {
  3565. source: "./media/characters/elory/front.svg",
  3566. }
  3567. }
  3568. },
  3569. [
  3570. {
  3571. name: "Normal",
  3572. height: math.unit(2.8, "meter"),
  3573. default: true
  3574. },
  3575. {
  3576. name: "Macro",
  3577. height: math.unit(38, "meter")
  3578. }
  3579. ]
  3580. ))
  3581. characterMakers.push(() => makeCharacter(
  3582. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3583. {
  3584. front: {
  3585. height: math.unit(470, "feet"),
  3586. weight: math.unit(924, "tons"),
  3587. name: "Front",
  3588. image: {
  3589. source: "./media/characters/angelpatamon/front.svg",
  3590. }
  3591. }
  3592. },
  3593. [
  3594. {
  3595. name: "Normal",
  3596. height: math.unit(470, "feet"),
  3597. default: true
  3598. },
  3599. {
  3600. name: "Deity Size I",
  3601. height: math.unit(28651.2, "km")
  3602. },
  3603. {
  3604. name: "Deity Size II",
  3605. height: math.unit(171907.2, "km")
  3606. }
  3607. ]
  3608. ))
  3609. characterMakers.push(() => makeCharacter(
  3610. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3611. {
  3612. side: {
  3613. height: math.unit(7.2, "meter"),
  3614. weight: math.unit(8.2, "tons"),
  3615. name: "Side",
  3616. image: {
  3617. source: "./media/characters/cryae/side.svg",
  3618. extra: 3500 / 1500
  3619. }
  3620. }
  3621. },
  3622. [
  3623. {
  3624. name: "Normal",
  3625. height: math.unit(7.2, "meter"),
  3626. default: true
  3627. }
  3628. ]
  3629. ))
  3630. characterMakers.push(() => makeCharacter(
  3631. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3632. {
  3633. front: {
  3634. height: math.unit(6, "feet"),
  3635. weight: math.unit(175, "lb"),
  3636. name: "Front",
  3637. image: {
  3638. source: "./media/characters/xera/front.svg",
  3639. extra: 2377 / 1972,
  3640. bottom: 75.5 / 2452
  3641. }
  3642. },
  3643. side: {
  3644. height: math.unit(6, "feet"),
  3645. weight: math.unit(175, "lb"),
  3646. name: "Side",
  3647. image: {
  3648. source: "./media/characters/xera/side.svg",
  3649. extra: 2345 / 2019,
  3650. bottom: 39.7 / 2384
  3651. }
  3652. },
  3653. back: {
  3654. height: math.unit(6, "feet"),
  3655. weight: math.unit(175, "lb"),
  3656. name: "Back",
  3657. image: {
  3658. source: "./media/characters/xera/back.svg",
  3659. extra: 2095 / 1984,
  3660. bottom: 67 / 2166
  3661. }
  3662. },
  3663. },
  3664. [
  3665. {
  3666. name: "Small",
  3667. height: math.unit(10, "feet")
  3668. },
  3669. {
  3670. name: "Macro",
  3671. height: math.unit(500, "meters"),
  3672. default: true
  3673. },
  3674. {
  3675. name: "Macro+",
  3676. height: math.unit(10, "km")
  3677. },
  3678. {
  3679. name: "Gigamacro",
  3680. height: math.unit(25000, "km")
  3681. },
  3682. {
  3683. name: "Teramacro",
  3684. height: math.unit(3e6, "km")
  3685. }
  3686. ]
  3687. ))
  3688. characterMakers.push(() => makeCharacter(
  3689. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3690. {
  3691. front: {
  3692. height: math.unit(6, "feet"),
  3693. weight: math.unit(175, "lb"),
  3694. name: "Front",
  3695. image: {
  3696. source: "./media/characters/nebula/front.svg",
  3697. extra: 2566 / 2362,
  3698. bottom: 81 / 2644
  3699. }
  3700. }
  3701. },
  3702. [
  3703. {
  3704. name: "Small",
  3705. height: math.unit(4.5, "meters")
  3706. },
  3707. {
  3708. name: "Macro",
  3709. height: math.unit(1500, "meters"),
  3710. default: true
  3711. },
  3712. {
  3713. name: "Megamacro",
  3714. height: math.unit(150, "km")
  3715. },
  3716. {
  3717. name: "Gigamacro",
  3718. height: math.unit(27000, "km")
  3719. }
  3720. ]
  3721. ))
  3722. characterMakers.push(() => makeCharacter(
  3723. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3724. {
  3725. front: {
  3726. height: math.unit(6, "feet"),
  3727. weight: math.unit(225, "lb"),
  3728. name: "Front",
  3729. image: {
  3730. source: "./media/characters/abysgar/front.svg"
  3731. }
  3732. }
  3733. },
  3734. [
  3735. {
  3736. name: "Small",
  3737. height: math.unit(4.5, "meters")
  3738. },
  3739. {
  3740. name: "Macro",
  3741. height: math.unit(1250, "meters"),
  3742. default: true
  3743. },
  3744. {
  3745. name: "Megamacro",
  3746. height: math.unit(125, "km")
  3747. },
  3748. {
  3749. name: "Gigamacro",
  3750. height: math.unit(26000, "km")
  3751. }
  3752. ]
  3753. ))
  3754. characterMakers.push(() => makeCharacter(
  3755. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3756. {
  3757. front: {
  3758. height: math.unit(6, "feet"),
  3759. weight: math.unit(180, "lb"),
  3760. name: "Front",
  3761. image: {
  3762. source: "./media/characters/yakuz/front.svg"
  3763. }
  3764. }
  3765. },
  3766. [
  3767. {
  3768. name: "Small",
  3769. height: math.unit(5, "meters")
  3770. },
  3771. {
  3772. name: "Macro",
  3773. height: math.unit(1500, "meters"),
  3774. default: true
  3775. },
  3776. {
  3777. name: "Megamacro",
  3778. height: math.unit(200, "km")
  3779. },
  3780. {
  3781. name: "Gigamacro",
  3782. height: math.unit(100000, "km")
  3783. }
  3784. ]
  3785. ))
  3786. characterMakers.push(() => makeCharacter(
  3787. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3788. {
  3789. front: {
  3790. height: math.unit(6, "feet"),
  3791. weight: math.unit(175, "lb"),
  3792. name: "Front",
  3793. image: {
  3794. source: "./media/characters/mirova/front.svg",
  3795. extra: 3334 / 3071,
  3796. bottom: 42 / 3375.6
  3797. }
  3798. }
  3799. },
  3800. [
  3801. {
  3802. name: "Small",
  3803. height: math.unit(5, "meters")
  3804. },
  3805. {
  3806. name: "Macro",
  3807. height: math.unit(900, "meters"),
  3808. default: true
  3809. },
  3810. {
  3811. name: "Megamacro",
  3812. height: math.unit(135, "km")
  3813. },
  3814. {
  3815. name: "Gigamacro",
  3816. height: math.unit(20000, "km")
  3817. }
  3818. ]
  3819. ))
  3820. characterMakers.push(() => makeCharacter(
  3821. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3822. {
  3823. side: {
  3824. height: math.unit(28.35, "feet"),
  3825. weight: math.unit(99.75, "tons"),
  3826. name: "Side",
  3827. image: {
  3828. source: "./media/characters/asana-mech/side.svg",
  3829. extra: 923 / 699,
  3830. bottom: 50 / 975
  3831. }
  3832. },
  3833. chaingun: {
  3834. height: math.unit(7, "feet"),
  3835. weight: math.unit(2400, "lb"),
  3836. name: "Chaingun",
  3837. image: {
  3838. source: "./media/characters/asana-mech/chaingun.svg"
  3839. }
  3840. },
  3841. laser: {
  3842. height: math.unit(7.12, "feet"),
  3843. weight: math.unit(2000, "lb"),
  3844. name: "Laser",
  3845. image: {
  3846. source: "./media/characters/asana-mech/laser.svg"
  3847. }
  3848. },
  3849. },
  3850. [
  3851. {
  3852. name: "Normal",
  3853. height: math.unit(28.35, "feet"),
  3854. default: true
  3855. },
  3856. {
  3857. name: "Macro",
  3858. height: math.unit(2500, "feet")
  3859. },
  3860. {
  3861. name: "Megamacro",
  3862. height: math.unit(25, "miles")
  3863. },
  3864. {
  3865. name: "Examacro",
  3866. height: math.unit(6e8, "lightyears")
  3867. },
  3868. ]
  3869. ))
  3870. characterMakers.push(() => makeCharacter(
  3871. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3872. {
  3873. front: {
  3874. height: math.unit(5, "meters"),
  3875. weight: math.unit(1000, "kg"),
  3876. name: "Front",
  3877. image: {
  3878. source: "./media/characters/asche/front.svg",
  3879. extra: 1258 / 1190,
  3880. bottom: 47 / 1305
  3881. }
  3882. },
  3883. frontUnderwear: {
  3884. height: math.unit(5, "meters"),
  3885. weight: math.unit(1000, "kg"),
  3886. name: "Front (Underwear)",
  3887. image: {
  3888. source: "./media/characters/asche/front-underwear.svg",
  3889. extra: 1258 / 1190,
  3890. bottom: 47 / 1305
  3891. }
  3892. },
  3893. frontDressed: {
  3894. height: math.unit(5, "meters"),
  3895. weight: math.unit(1000, "kg"),
  3896. name: "Front (Dressed)",
  3897. image: {
  3898. source: "./media/characters/asche/front-dressed.svg",
  3899. extra: 1258 / 1190,
  3900. bottom: 47 / 1305
  3901. }
  3902. },
  3903. frontArmor: {
  3904. height: math.unit(5, "meters"),
  3905. weight: math.unit(1000, "kg"),
  3906. name: "Front (Armored)",
  3907. image: {
  3908. source: "./media/characters/asche/front-armored.svg",
  3909. extra: 1374 / 1308,
  3910. bottom: 23 / 1397
  3911. }
  3912. },
  3913. mp724: {
  3914. height: math.unit(0.96, "meters"),
  3915. weight: math.unit(38, "kg"),
  3916. name: "H&K MP724",
  3917. image: {
  3918. source: "./media/characters/asche/h&k-mp724.svg"
  3919. }
  3920. },
  3921. side: {
  3922. height: math.unit(5, "meters"),
  3923. weight: math.unit(1000, "kg"),
  3924. name: "Side",
  3925. image: {
  3926. source: "./media/characters/asche/side.svg",
  3927. extra: 1717 / 1609,
  3928. bottom: 0.005
  3929. }
  3930. },
  3931. back: {
  3932. height: math.unit(5, "meters"),
  3933. weight: math.unit(1000, "kg"),
  3934. name: "Back",
  3935. image: {
  3936. source: "./media/characters/asche/back.svg",
  3937. extra: 1570 / 1501
  3938. }
  3939. },
  3940. },
  3941. [
  3942. {
  3943. name: "DEFCON 5",
  3944. height: math.unit(5, "meters")
  3945. },
  3946. {
  3947. name: "DEFCON 4",
  3948. height: math.unit(500, "meters"),
  3949. default: true
  3950. },
  3951. {
  3952. name: "DEFCON 3",
  3953. height: math.unit(5, "km")
  3954. },
  3955. {
  3956. name: "DEFCON 2",
  3957. height: math.unit(500, "km")
  3958. },
  3959. {
  3960. name: "DEFCON 1",
  3961. height: math.unit(500000, "km")
  3962. },
  3963. {
  3964. name: "DEFCON 0",
  3965. height: math.unit(3, "gigaparsecs")
  3966. },
  3967. ]
  3968. ))
  3969. characterMakers.push(() => makeCharacter(
  3970. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3971. {
  3972. front: {
  3973. height: math.unit(2, "meters"),
  3974. weight: math.unit(76, "kg"),
  3975. name: "Front",
  3976. image: {
  3977. source: "./media/characters/gale/front.svg"
  3978. }
  3979. },
  3980. frontAlt1: {
  3981. height: math.unit(2, "meters"),
  3982. weight: math.unit(76, "kg"),
  3983. name: "Front (Alt 1)",
  3984. image: {
  3985. source: "./media/characters/gale/front-alt-1.svg"
  3986. }
  3987. },
  3988. frontAlt2: {
  3989. height: math.unit(2, "meters"),
  3990. weight: math.unit(76, "kg"),
  3991. name: "Front (Alt 2)",
  3992. image: {
  3993. source: "./media/characters/gale/front-alt-2.svg"
  3994. }
  3995. },
  3996. },
  3997. [
  3998. {
  3999. name: "Normal",
  4000. height: math.unit(7, "feet")
  4001. },
  4002. {
  4003. name: "Macro",
  4004. height: math.unit(150, "feet"),
  4005. default: true
  4006. },
  4007. {
  4008. name: "Macro+",
  4009. height: math.unit(300, "feet")
  4010. },
  4011. ]
  4012. ))
  4013. characterMakers.push(() => makeCharacter(
  4014. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4015. {
  4016. front: {
  4017. height: math.unit(2, "meters"),
  4018. weight: math.unit(76, "kg"),
  4019. name: "Front",
  4020. image: {
  4021. source: "./media/characters/draylen/front.svg"
  4022. }
  4023. }
  4024. },
  4025. [
  4026. {
  4027. name: "Macro",
  4028. height: math.unit(150, "feet"),
  4029. default: true
  4030. }
  4031. ]
  4032. ))
  4033. characterMakers.push(() => makeCharacter(
  4034. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4035. {
  4036. front: {
  4037. height: math.unit(7 + 9 / 12, "feet"),
  4038. weight: math.unit(379, "lbs"),
  4039. name: "Front",
  4040. image: {
  4041. source: "./media/characters/chez/front.svg"
  4042. }
  4043. },
  4044. side: {
  4045. height: math.unit(7 + 9 / 12, "feet"),
  4046. weight: math.unit(379, "lbs"),
  4047. name: "Side",
  4048. image: {
  4049. source: "./media/characters/chez/side.svg"
  4050. }
  4051. }
  4052. },
  4053. [
  4054. {
  4055. name: "Normal",
  4056. height: math.unit(7 + 9 / 12, "feet"),
  4057. default: true
  4058. },
  4059. {
  4060. name: "God King",
  4061. height: math.unit(9750000, "meters")
  4062. }
  4063. ]
  4064. ))
  4065. characterMakers.push(() => makeCharacter(
  4066. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4067. {
  4068. front: {
  4069. height: math.unit(6, "feet"),
  4070. weight: math.unit(275, "lbs"),
  4071. name: "Front",
  4072. image: {
  4073. source: "./media/characters/kaylum/front.svg",
  4074. bottom: 0.01,
  4075. extra: 1166 / 1031
  4076. }
  4077. },
  4078. frontWingless: {
  4079. height: math.unit(6, "feet"),
  4080. weight: math.unit(275, "lbs"),
  4081. name: "Front (Wingless)",
  4082. image: {
  4083. source: "./media/characters/kaylum/front-wingless.svg",
  4084. bottom: 0.01,
  4085. extra: 1117 / 1031
  4086. }
  4087. }
  4088. },
  4089. [
  4090. {
  4091. name: "Normal",
  4092. height: math.unit(3.05, "meters")
  4093. },
  4094. {
  4095. name: "Master",
  4096. height: math.unit(5.5, "meters")
  4097. },
  4098. {
  4099. name: "Rampage",
  4100. height: math.unit(19, "meters")
  4101. },
  4102. {
  4103. name: "Macro Lite",
  4104. height: math.unit(37, "meters")
  4105. },
  4106. {
  4107. name: "Hyper Predator",
  4108. height: math.unit(61, "meters")
  4109. },
  4110. {
  4111. name: "Macro",
  4112. height: math.unit(138, "meters"),
  4113. default: true
  4114. }
  4115. ]
  4116. ))
  4117. characterMakers.push(() => makeCharacter(
  4118. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4119. {
  4120. front: {
  4121. height: math.unit(6, "feet"),
  4122. weight: math.unit(150, "lbs"),
  4123. name: "Front",
  4124. image: {
  4125. source: "./media/characters/geta/front.svg"
  4126. }
  4127. }
  4128. },
  4129. [
  4130. {
  4131. name: "Micro",
  4132. height: math.unit(3, "inches"),
  4133. default: true
  4134. },
  4135. {
  4136. name: "Normal",
  4137. height: math.unit(5 + 5 / 12, "feet")
  4138. }
  4139. ]
  4140. ))
  4141. characterMakers.push(() => makeCharacter(
  4142. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4143. {
  4144. front: {
  4145. height: math.unit(6, "feet"),
  4146. weight: math.unit(300, "lbs"),
  4147. name: "Front",
  4148. image: {
  4149. source: "./media/characters/tyrnn/front.svg"
  4150. }
  4151. }
  4152. },
  4153. [
  4154. {
  4155. name: "Main Height",
  4156. height: math.unit(355, "feet"),
  4157. default: true
  4158. },
  4159. {
  4160. name: "Fave. Height",
  4161. height: math.unit(2400, "feet")
  4162. }
  4163. ]
  4164. ))
  4165. characterMakers.push(() => makeCharacter(
  4166. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4167. {
  4168. front: {
  4169. height: math.unit(6, "feet"),
  4170. weight: math.unit(300, "lbs"),
  4171. name: "Front",
  4172. image: {
  4173. source: "./media/characters/appledectomy/front.svg"
  4174. }
  4175. }
  4176. },
  4177. [
  4178. {
  4179. name: "Macro",
  4180. height: math.unit(2500, "feet")
  4181. },
  4182. {
  4183. name: "Megamacro",
  4184. height: math.unit(50, "miles"),
  4185. default: true
  4186. },
  4187. {
  4188. name: "Gigamacro",
  4189. height: math.unit(5000, "miles")
  4190. },
  4191. {
  4192. name: "Teramacro",
  4193. height: math.unit(250000, "miles")
  4194. },
  4195. ]
  4196. ))
  4197. characterMakers.push(() => makeCharacter(
  4198. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4199. {
  4200. front: {
  4201. height: math.unit(6, "feet"),
  4202. weight: math.unit(200, "lbs"),
  4203. name: "Front",
  4204. image: {
  4205. source: "./media/characters/vulpes/front.svg",
  4206. extra: 573 / 543,
  4207. bottom: 0.033
  4208. }
  4209. },
  4210. side: {
  4211. height: math.unit(6, "feet"),
  4212. weight: math.unit(200, "lbs"),
  4213. name: "Side",
  4214. image: {
  4215. source: "./media/characters/vulpes/side.svg",
  4216. extra: 577 / 549,
  4217. bottom: 11 / 588
  4218. }
  4219. },
  4220. back: {
  4221. height: math.unit(6, "feet"),
  4222. weight: math.unit(200, "lbs"),
  4223. name: "Back",
  4224. image: {
  4225. source: "./media/characters/vulpes/back.svg",
  4226. extra: 573 / 549,
  4227. bottom: 20 / 593
  4228. }
  4229. },
  4230. feet: {
  4231. height: math.unit(1.276, "feet"),
  4232. name: "Feet",
  4233. image: {
  4234. source: "./media/characters/vulpes/feet.svg"
  4235. }
  4236. },
  4237. maw: {
  4238. height: math.unit(1.18, "feet"),
  4239. name: "Maw",
  4240. image: {
  4241. source: "./media/characters/vulpes/maw.svg"
  4242. }
  4243. },
  4244. },
  4245. [
  4246. {
  4247. name: "Micro",
  4248. height: math.unit(2, "inches")
  4249. },
  4250. {
  4251. name: "Normal",
  4252. height: math.unit(6.3, "feet")
  4253. },
  4254. {
  4255. name: "Macro",
  4256. height: math.unit(850, "feet")
  4257. },
  4258. {
  4259. name: "Megamacro",
  4260. height: math.unit(7500, "feet"),
  4261. default: true
  4262. },
  4263. {
  4264. name: "Gigamacro",
  4265. height: math.unit(570000, "miles")
  4266. }
  4267. ]
  4268. ))
  4269. characterMakers.push(() => makeCharacter(
  4270. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4271. {
  4272. front: {
  4273. height: math.unit(6, "feet"),
  4274. weight: math.unit(210, "lbs"),
  4275. name: "Front",
  4276. image: {
  4277. source: "./media/characters/rain-fallen/front.svg"
  4278. }
  4279. },
  4280. side: {
  4281. height: math.unit(6, "feet"),
  4282. weight: math.unit(210, "lbs"),
  4283. name: "Side",
  4284. image: {
  4285. source: "./media/characters/rain-fallen/side.svg"
  4286. }
  4287. },
  4288. back: {
  4289. height: math.unit(6, "feet"),
  4290. weight: math.unit(210, "lbs"),
  4291. name: "Back",
  4292. image: {
  4293. source: "./media/characters/rain-fallen/back.svg"
  4294. }
  4295. },
  4296. feral: {
  4297. height: math.unit(9, "feet"),
  4298. weight: math.unit(700, "lbs"),
  4299. name: "Feral",
  4300. image: {
  4301. source: "./media/characters/rain-fallen/feral.svg"
  4302. }
  4303. },
  4304. },
  4305. [
  4306. {
  4307. name: "Normal",
  4308. height: math.unit(5, "meter")
  4309. },
  4310. {
  4311. name: "Macro",
  4312. height: math.unit(150, "meter"),
  4313. default: true
  4314. },
  4315. {
  4316. name: "Megamacro",
  4317. height: math.unit(278e6, "meter")
  4318. },
  4319. {
  4320. name: "Gigamacro",
  4321. height: math.unit(2e9, "meter")
  4322. },
  4323. {
  4324. name: "Teramacro",
  4325. height: math.unit(8e12, "meter")
  4326. },
  4327. {
  4328. name: "Devourer",
  4329. height: math.unit(14, "zettameters")
  4330. },
  4331. {
  4332. name: "Scarlet King",
  4333. height: math.unit(18, "yottameters")
  4334. },
  4335. {
  4336. name: "Void",
  4337. height: math.unit(6.66e66, "yottameters")
  4338. }
  4339. ]
  4340. ))
  4341. characterMakers.push(() => makeCharacter(
  4342. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4343. {
  4344. standing: {
  4345. height: math.unit(6, "feet"),
  4346. weight: math.unit(180, "lbs"),
  4347. name: "Standing",
  4348. image: {
  4349. source: "./media/characters/zaakira/standing.svg"
  4350. }
  4351. },
  4352. laying: {
  4353. height: math.unit(3, "feet"),
  4354. weight: math.unit(180, "lbs"),
  4355. name: "Laying",
  4356. image: {
  4357. source: "./media/characters/zaakira/laying.svg"
  4358. }
  4359. },
  4360. },
  4361. [
  4362. {
  4363. name: "Normal",
  4364. height: math.unit(12, "feet")
  4365. },
  4366. {
  4367. name: "Macro",
  4368. height: math.unit(279, "feet"),
  4369. default: true
  4370. }
  4371. ]
  4372. ))
  4373. characterMakers.push(() => makeCharacter(
  4374. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4375. {
  4376. femSfw: {
  4377. height: math.unit(8, "feet"),
  4378. weight: math.unit(350, "lb"),
  4379. name: "Fem",
  4380. image: {
  4381. source: "./media/characters/sigvald/fem-sfw.svg",
  4382. extra: 182 / 164,
  4383. bottom: 8.7 / 190.5
  4384. }
  4385. },
  4386. femNsfw: {
  4387. height: math.unit(8, "feet"),
  4388. weight: math.unit(350, "lb"),
  4389. name: "Fem (NSFW)",
  4390. image: {
  4391. source: "./media/characters/sigvald/fem-nsfw.svg",
  4392. extra: 182 / 164,
  4393. bottom: 8.7 / 190.5
  4394. }
  4395. },
  4396. maleNsfw: {
  4397. height: math.unit(8, "feet"),
  4398. weight: math.unit(350, "lb"),
  4399. name: "Male (NSFW)",
  4400. image: {
  4401. source: "./media/characters/sigvald/male-nsfw.svg",
  4402. extra: 182 / 164,
  4403. bottom: 8.7 / 190.5
  4404. }
  4405. },
  4406. hermNsfw: {
  4407. height: math.unit(8, "feet"),
  4408. weight: math.unit(350, "lb"),
  4409. name: "Herm (NSFW)",
  4410. image: {
  4411. source: "./media/characters/sigvald/herm-nsfw.svg",
  4412. extra: 182 / 164,
  4413. bottom: 8.7 / 190.5
  4414. }
  4415. },
  4416. dick: {
  4417. height: math.unit(2.36, "feet"),
  4418. name: "Dick",
  4419. image: {
  4420. source: "./media/characters/sigvald/dick.svg"
  4421. }
  4422. },
  4423. eye: {
  4424. height: math.unit(0.31, "feet"),
  4425. name: "Eye",
  4426. image: {
  4427. source: "./media/characters/sigvald/eye.svg"
  4428. }
  4429. },
  4430. mouth: {
  4431. height: math.unit(0.92, "feet"),
  4432. name: "Mouth",
  4433. image: {
  4434. source: "./media/characters/sigvald/mouth.svg"
  4435. }
  4436. },
  4437. paws: {
  4438. height: math.unit(2.2, "feet"),
  4439. name: "Paws",
  4440. image: {
  4441. source: "./media/characters/sigvald/paws.svg"
  4442. }
  4443. }
  4444. },
  4445. [
  4446. {
  4447. name: "Normal",
  4448. height: math.unit(8, "feet")
  4449. },
  4450. {
  4451. name: "Large",
  4452. height: math.unit(12, "feet")
  4453. },
  4454. {
  4455. name: "Larger",
  4456. height: math.unit(20, "feet")
  4457. },
  4458. {
  4459. name: "Macro",
  4460. height: math.unit(150, "feet")
  4461. },
  4462. {
  4463. name: "Macro+",
  4464. height: math.unit(200, "feet"),
  4465. default: true
  4466. },
  4467. ]
  4468. ))
  4469. characterMakers.push(() => makeCharacter(
  4470. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4471. {
  4472. side: {
  4473. height: math.unit(12, "feet"),
  4474. weight: math.unit(2000, "kg"),
  4475. name: "Side",
  4476. image: {
  4477. source: "./media/characters/scott/side.svg",
  4478. extra: 754 / 724,
  4479. bottom: 0.069
  4480. }
  4481. },
  4482. upright: {
  4483. height: math.unit(12, "feet"),
  4484. weight: math.unit(2000, "kg"),
  4485. name: "Upright",
  4486. image: {
  4487. source: "./media/characters/scott/upright.svg",
  4488. extra: 3881 / 3722,
  4489. bottom: 0.05
  4490. }
  4491. },
  4492. },
  4493. [
  4494. {
  4495. name: "Normal",
  4496. height: math.unit(12, "feet"),
  4497. default: true
  4498. },
  4499. ]
  4500. ))
  4501. characterMakers.push(() => makeCharacter(
  4502. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4503. {
  4504. side: {
  4505. height: math.unit(8, "meters"),
  4506. weight: math.unit(84755, "lbs"),
  4507. name: "Side",
  4508. image: {
  4509. source: "./media/characters/tobias/side.svg",
  4510. extra: 1474 / 1096,
  4511. bottom: 38.9 / 1513.1235
  4512. }
  4513. },
  4514. },
  4515. [
  4516. {
  4517. name: "Normal",
  4518. height: math.unit(8, "meters"),
  4519. default: true
  4520. },
  4521. ]
  4522. ))
  4523. characterMakers.push(() => makeCharacter(
  4524. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4525. {
  4526. front: {
  4527. height: math.unit(5.5, "feet"),
  4528. weight: math.unit(400, "lbs"),
  4529. name: "Front",
  4530. image: {
  4531. source: "./media/characters/kieran/front.svg",
  4532. extra: 2694 / 2364,
  4533. bottom: 217 / 2908
  4534. }
  4535. },
  4536. side: {
  4537. height: math.unit(5.5, "feet"),
  4538. weight: math.unit(400, "lbs"),
  4539. name: "Side",
  4540. image: {
  4541. source: "./media/characters/kieran/side.svg",
  4542. extra: 875 / 777,
  4543. bottom: 84.6 / 959
  4544. }
  4545. },
  4546. },
  4547. [
  4548. {
  4549. name: "Normal",
  4550. height: math.unit(5.5, "feet"),
  4551. default: true
  4552. },
  4553. ]
  4554. ))
  4555. characterMakers.push(() => makeCharacter(
  4556. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4557. {
  4558. side: {
  4559. height: math.unit(2, "meters"),
  4560. weight: math.unit(70, "kg"),
  4561. name: "Side",
  4562. image: {
  4563. source: "./media/characters/sanya/side.svg",
  4564. bottom: 0.02,
  4565. extra: 1.02
  4566. }
  4567. },
  4568. },
  4569. [
  4570. {
  4571. name: "Small",
  4572. height: math.unit(2, "meters")
  4573. },
  4574. {
  4575. name: "Normal",
  4576. height: math.unit(3, "meters")
  4577. },
  4578. {
  4579. name: "Macro",
  4580. height: math.unit(16, "meters"),
  4581. default: true
  4582. },
  4583. ]
  4584. ))
  4585. characterMakers.push(() => makeCharacter(
  4586. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4587. {
  4588. front: {
  4589. height: math.unit(2, "meters"),
  4590. weight: math.unit(120, "kg"),
  4591. name: "Front",
  4592. image: {
  4593. source: "./media/characters/miranda/front.svg",
  4594. extra: 195 / 185,
  4595. bottom: 10.9 / 206.5
  4596. }
  4597. },
  4598. back: {
  4599. height: math.unit(2, "meters"),
  4600. weight: math.unit(120, "kg"),
  4601. name: "Back",
  4602. image: {
  4603. source: "./media/characters/miranda/back.svg",
  4604. extra: 201 / 193,
  4605. bottom: 2.3 / 203.7
  4606. }
  4607. },
  4608. },
  4609. [
  4610. {
  4611. name: "Normal",
  4612. height: math.unit(10, "feet"),
  4613. default: true
  4614. }
  4615. ]
  4616. ))
  4617. characterMakers.push(() => makeCharacter(
  4618. { name: "James", species: ["deer"], tags: ["anthro"] },
  4619. {
  4620. side: {
  4621. height: math.unit(2, "meters"),
  4622. weight: math.unit(100, "kg"),
  4623. name: "Front",
  4624. image: {
  4625. source: "./media/characters/james/front.svg",
  4626. extra: 10 / 8.5
  4627. }
  4628. },
  4629. },
  4630. [
  4631. {
  4632. name: "Normal",
  4633. height: math.unit(8.5, "feet"),
  4634. default: true
  4635. }
  4636. ]
  4637. ))
  4638. characterMakers.push(() => makeCharacter(
  4639. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4640. {
  4641. side: {
  4642. height: math.unit(9.5, "feet"),
  4643. weight: math.unit(2500, "lbs"),
  4644. name: "Side",
  4645. image: {
  4646. source: "./media/characters/heather/side.svg"
  4647. }
  4648. },
  4649. },
  4650. [
  4651. {
  4652. name: "Normal",
  4653. height: math.unit(9.5, "feet"),
  4654. default: true
  4655. }
  4656. ]
  4657. ))
  4658. characterMakers.push(() => makeCharacter(
  4659. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4660. {
  4661. side: {
  4662. height: math.unit(6.5, "feet"),
  4663. weight: math.unit(400, "lbs"),
  4664. name: "Side",
  4665. image: {
  4666. source: "./media/characters/lukas/side.svg",
  4667. extra: 7.25 / 6.5
  4668. }
  4669. },
  4670. },
  4671. [
  4672. {
  4673. name: "Normal",
  4674. height: math.unit(6.5, "feet"),
  4675. default: true
  4676. }
  4677. ]
  4678. ))
  4679. characterMakers.push(() => makeCharacter(
  4680. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4681. {
  4682. side: {
  4683. height: math.unit(5, "feet"),
  4684. weight: math.unit(3000, "lbs"),
  4685. name: "Side",
  4686. image: {
  4687. source: "./media/characters/louise/side.svg"
  4688. }
  4689. },
  4690. },
  4691. [
  4692. {
  4693. name: "Normal",
  4694. height: math.unit(5, "feet"),
  4695. default: true
  4696. }
  4697. ]
  4698. ))
  4699. characterMakers.push(() => makeCharacter(
  4700. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4701. {
  4702. side: {
  4703. height: math.unit(6, "feet"),
  4704. weight: math.unit(150, "lbs"),
  4705. name: "Side",
  4706. image: {
  4707. source: "./media/characters/ramona/side.svg"
  4708. }
  4709. },
  4710. },
  4711. [
  4712. {
  4713. name: "Normal",
  4714. height: math.unit(5.3, "meters"),
  4715. default: true
  4716. },
  4717. {
  4718. name: "Macro",
  4719. height: math.unit(20, "stories")
  4720. },
  4721. {
  4722. name: "Macro+",
  4723. height: math.unit(50, "stories")
  4724. },
  4725. ]
  4726. ))
  4727. characterMakers.push(() => makeCharacter(
  4728. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4729. {
  4730. standing: {
  4731. height: math.unit(5.75, "feet"),
  4732. weight: math.unit(160, "lbs"),
  4733. name: "Standing",
  4734. image: {
  4735. source: "./media/characters/deerpuff/standing.svg",
  4736. extra: 682 / 624
  4737. }
  4738. },
  4739. sitting: {
  4740. height: math.unit(5.75 / 1.79, "feet"),
  4741. weight: math.unit(160, "lbs"),
  4742. name: "Sitting",
  4743. image: {
  4744. source: "./media/characters/deerpuff/sitting.svg",
  4745. bottom: 44 / 400,
  4746. extra: 1
  4747. }
  4748. },
  4749. taurLaying: {
  4750. height: math.unit(6, "feet"),
  4751. weight: math.unit(400, "lbs"),
  4752. name: "Taur (Laying)",
  4753. image: {
  4754. source: "./media/characters/deerpuff/taur-laying.svg"
  4755. }
  4756. },
  4757. },
  4758. [
  4759. {
  4760. name: "Puffball",
  4761. height: math.unit(6, "inches")
  4762. },
  4763. {
  4764. name: "Normalpuff",
  4765. height: math.unit(5.75, "feet")
  4766. },
  4767. {
  4768. name: "Macropuff",
  4769. height: math.unit(1500, "feet"),
  4770. default: true
  4771. },
  4772. {
  4773. name: "Megapuff",
  4774. height: math.unit(500, "miles")
  4775. },
  4776. {
  4777. name: "Gigapuff",
  4778. height: math.unit(250000, "miles")
  4779. },
  4780. {
  4781. name: "Omegapuff",
  4782. height: math.unit(1000, "lightyears")
  4783. },
  4784. ]
  4785. ))
  4786. characterMakers.push(() => makeCharacter(
  4787. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4788. {
  4789. stomping: {
  4790. height: math.unit(6, "feet"),
  4791. weight: math.unit(170, "lbs"),
  4792. name: "Stomping",
  4793. image: {
  4794. source: "./media/characters/vivian/stomping.svg"
  4795. }
  4796. },
  4797. sitting: {
  4798. height: math.unit(6 / 1.75, "feet"),
  4799. weight: math.unit(170, "lbs"),
  4800. name: "Sitting",
  4801. image: {
  4802. source: "./media/characters/vivian/sitting.svg",
  4803. bottom: 1 / 6.4,
  4804. extra: 1,
  4805. }
  4806. },
  4807. },
  4808. [
  4809. {
  4810. name: "Normal",
  4811. height: math.unit(7, "feet"),
  4812. default: true
  4813. },
  4814. {
  4815. name: "Macro",
  4816. height: math.unit(10, "stories")
  4817. },
  4818. {
  4819. name: "Macro+",
  4820. height: math.unit(30, "stories")
  4821. },
  4822. {
  4823. name: "Megamacro",
  4824. height: math.unit(10, "miles")
  4825. },
  4826. {
  4827. name: "Megamacro+",
  4828. height: math.unit(2750000, "meters")
  4829. },
  4830. ]
  4831. ))
  4832. characterMakers.push(() => makeCharacter(
  4833. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4834. {
  4835. front: {
  4836. height: math.unit(6, "feet"),
  4837. weight: math.unit(160, "lbs"),
  4838. name: "Front",
  4839. image: {
  4840. source: "./media/characters/prince/front.svg",
  4841. extra: 3400 / 3000
  4842. }
  4843. },
  4844. jumping: {
  4845. height: math.unit(6, "feet"),
  4846. weight: math.unit(160, "lbs"),
  4847. name: "Jumping",
  4848. image: {
  4849. source: "./media/characters/prince/jump.svg",
  4850. extra: 2555 / 2134
  4851. }
  4852. },
  4853. },
  4854. [
  4855. {
  4856. name: "Normal",
  4857. height: math.unit(7.75, "feet"),
  4858. default: true
  4859. },
  4860. {
  4861. name: "Not cute",
  4862. height: math.unit(17, "feet")
  4863. },
  4864. {
  4865. name: "I said NOT",
  4866. height: math.unit(91, "feet")
  4867. },
  4868. {
  4869. name: "Please stop",
  4870. height: math.unit(560, "feet")
  4871. },
  4872. {
  4873. name: "What have you done",
  4874. height: math.unit(2200, "feet")
  4875. },
  4876. {
  4877. name: "Deer God",
  4878. height: math.unit(3.6, "miles")
  4879. },
  4880. ]
  4881. ))
  4882. characterMakers.push(() => makeCharacter(
  4883. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4884. {
  4885. standing: {
  4886. height: math.unit(6, "feet"),
  4887. weight: math.unit(300, "lbs"),
  4888. name: "Standing",
  4889. image: {
  4890. source: "./media/characters/psymon/standing.svg",
  4891. extra: 1888 / 1810,
  4892. bottom: 0.05
  4893. }
  4894. },
  4895. slithering: {
  4896. height: math.unit(6, "feet"),
  4897. weight: math.unit(300, "lbs"),
  4898. name: "Slithering",
  4899. image: {
  4900. source: "./media/characters/psymon/slithering.svg",
  4901. extra: 1330 / 1224
  4902. }
  4903. },
  4904. slitheringAlt: {
  4905. height: math.unit(6, "feet"),
  4906. weight: math.unit(300, "lbs"),
  4907. name: "Slithering (Alt)",
  4908. image: {
  4909. source: "./media/characters/psymon/slithering-alt.svg",
  4910. extra: 1330 / 1224
  4911. }
  4912. },
  4913. },
  4914. [
  4915. {
  4916. name: "Normal",
  4917. height: math.unit(11.25, "feet"),
  4918. default: true
  4919. },
  4920. {
  4921. name: "Large",
  4922. height: math.unit(27, "feet")
  4923. },
  4924. {
  4925. name: "Giant",
  4926. height: math.unit(87, "feet")
  4927. },
  4928. {
  4929. name: "Macro",
  4930. height: math.unit(365, "feet")
  4931. },
  4932. {
  4933. name: "Megamacro",
  4934. height: math.unit(3, "miles")
  4935. },
  4936. {
  4937. name: "World Serpent",
  4938. height: math.unit(8000, "miles")
  4939. },
  4940. ]
  4941. ))
  4942. characterMakers.push(() => makeCharacter(
  4943. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4944. {
  4945. front: {
  4946. height: math.unit(6, "feet"),
  4947. weight: math.unit(180, "lbs"),
  4948. name: "Front",
  4949. image: {
  4950. source: "./media/characters/daimos/front.svg",
  4951. extra: 4160 / 3897,
  4952. bottom: 0.021
  4953. }
  4954. }
  4955. },
  4956. [
  4957. {
  4958. name: "Normal",
  4959. height: math.unit(8, "feet"),
  4960. default: true
  4961. },
  4962. {
  4963. name: "Big Dog",
  4964. height: math.unit(22, "feet")
  4965. },
  4966. {
  4967. name: "Macro",
  4968. height: math.unit(127, "feet")
  4969. },
  4970. {
  4971. name: "Megamacro",
  4972. height: math.unit(3600, "feet")
  4973. },
  4974. ]
  4975. ))
  4976. characterMakers.push(() => makeCharacter(
  4977. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4978. {
  4979. side: {
  4980. height: math.unit(6, "feet"),
  4981. weight: math.unit(180, "lbs"),
  4982. name: "Side",
  4983. image: {
  4984. source: "./media/characters/blake/side.svg",
  4985. extra: 1212 / 1120,
  4986. bottom: 0.05
  4987. }
  4988. },
  4989. crouched: {
  4990. height: math.unit(6 * 0.57, "feet"),
  4991. weight: math.unit(180, "lbs"),
  4992. name: "Crouched",
  4993. image: {
  4994. source: "./media/characters/blake/crouched.svg",
  4995. extra: 840 / 587,
  4996. bottom: 0.04
  4997. }
  4998. },
  4999. bent: {
  5000. height: math.unit(6 * 0.75, "feet"),
  5001. weight: math.unit(180, "lbs"),
  5002. name: "Bent",
  5003. image: {
  5004. source: "./media/characters/blake/bent.svg",
  5005. extra: 592 / 544,
  5006. bottom: 0.035
  5007. }
  5008. },
  5009. },
  5010. [
  5011. {
  5012. name: "Normal",
  5013. height: math.unit(8 + 1 / 6, "feet"),
  5014. default: true
  5015. },
  5016. {
  5017. name: "Big Backside",
  5018. height: math.unit(37, "feet")
  5019. },
  5020. {
  5021. name: "Subway Shredder",
  5022. height: math.unit(72, "feet")
  5023. },
  5024. {
  5025. name: "City Carver",
  5026. height: math.unit(1675, "feet")
  5027. },
  5028. {
  5029. name: "Tectonic Tweaker",
  5030. height: math.unit(2300, "miles")
  5031. },
  5032. ]
  5033. ))
  5034. characterMakers.push(() => makeCharacter(
  5035. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5036. {
  5037. front: {
  5038. height: math.unit(6, "feet"),
  5039. weight: math.unit(180, "lbs"),
  5040. name: "Front",
  5041. image: {
  5042. source: "./media/characters/guisetto/front.svg",
  5043. extra: 856 / 817,
  5044. bottom: 0.06
  5045. }
  5046. },
  5047. airborne: {
  5048. height: math.unit(6, "feet"),
  5049. weight: math.unit(180, "lbs"),
  5050. name: "Airborne",
  5051. image: {
  5052. source: "./media/characters/guisetto/airborne.svg",
  5053. extra: 584 / 525
  5054. }
  5055. },
  5056. },
  5057. [
  5058. {
  5059. name: "Normal",
  5060. height: math.unit(10 + 11 / 12, "feet"),
  5061. default: true
  5062. },
  5063. {
  5064. name: "Large",
  5065. height: math.unit(35, "feet")
  5066. },
  5067. {
  5068. name: "Macro",
  5069. height: math.unit(475, "feet")
  5070. },
  5071. ]
  5072. ))
  5073. characterMakers.push(() => makeCharacter(
  5074. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5075. {
  5076. front: {
  5077. height: math.unit(6, "feet"),
  5078. weight: math.unit(180, "lbs"),
  5079. name: "Front",
  5080. image: {
  5081. source: "./media/characters/luxor/front.svg",
  5082. extra: 2940 / 2152
  5083. }
  5084. },
  5085. back: {
  5086. height: math.unit(6, "feet"),
  5087. weight: math.unit(180, "lbs"),
  5088. name: "Back",
  5089. image: {
  5090. source: "./media/characters/luxor/back.svg",
  5091. extra: 1083 / 960
  5092. }
  5093. },
  5094. },
  5095. [
  5096. {
  5097. name: "Normal",
  5098. height: math.unit(5 + 5 / 6, "feet"),
  5099. default: true
  5100. },
  5101. {
  5102. name: "Lamp",
  5103. height: math.unit(50, "feet")
  5104. },
  5105. {
  5106. name: "Lämp",
  5107. height: math.unit(300, "feet")
  5108. },
  5109. {
  5110. name: "The sun is a lamp",
  5111. height: math.unit(250000, "miles")
  5112. },
  5113. ]
  5114. ))
  5115. characterMakers.push(() => makeCharacter(
  5116. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5117. {
  5118. front: {
  5119. height: math.unit(6, "feet"),
  5120. weight: math.unit(50, "lbs"),
  5121. name: "Front",
  5122. image: {
  5123. source: "./media/characters/huoyan/front.svg"
  5124. }
  5125. },
  5126. side: {
  5127. height: math.unit(6, "feet"),
  5128. weight: math.unit(180, "lbs"),
  5129. name: "Side",
  5130. image: {
  5131. source: "./media/characters/huoyan/side.svg"
  5132. }
  5133. },
  5134. },
  5135. [
  5136. {
  5137. name: "Chef",
  5138. height: math.unit(9, "feet")
  5139. },
  5140. {
  5141. name: "Normal",
  5142. height: math.unit(65, "feet"),
  5143. default: true
  5144. },
  5145. {
  5146. name: "Macro",
  5147. height: math.unit(780, "feet")
  5148. },
  5149. {
  5150. name: "Flaming Mountain",
  5151. height: math.unit(4.8, "miles")
  5152. },
  5153. {
  5154. name: "Celestial",
  5155. height: math.unit(765000, "miles")
  5156. },
  5157. ]
  5158. ))
  5159. characterMakers.push(() => makeCharacter(
  5160. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5161. {
  5162. front: {
  5163. height: math.unit(5 + 3 / 4, "feet"),
  5164. weight: math.unit(120, "lbs"),
  5165. name: "Front",
  5166. image: {
  5167. source: "./media/characters/tails/front.svg"
  5168. }
  5169. }
  5170. },
  5171. [
  5172. {
  5173. name: "Normal",
  5174. height: math.unit(5 + 3 / 4, "feet"),
  5175. default: true
  5176. }
  5177. ]
  5178. ))
  5179. characterMakers.push(() => makeCharacter(
  5180. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5181. {
  5182. front: {
  5183. height: math.unit(4, "feet"),
  5184. weight: math.unit(50, "lbs"),
  5185. name: "Front",
  5186. image: {
  5187. source: "./media/characters/rainy/front.svg"
  5188. }
  5189. }
  5190. },
  5191. [
  5192. {
  5193. name: "Macro",
  5194. height: math.unit(800, "feet"),
  5195. default: true
  5196. }
  5197. ]
  5198. ))
  5199. characterMakers.push(() => makeCharacter(
  5200. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5201. {
  5202. front: {
  5203. height: math.unit(6, "feet"),
  5204. weight: math.unit(150, "lbs"),
  5205. name: "Front",
  5206. image: {
  5207. source: "./media/characters/rainier/front.svg"
  5208. }
  5209. }
  5210. },
  5211. [
  5212. {
  5213. name: "Micro",
  5214. height: math.unit(2, "mm"),
  5215. default: true
  5216. }
  5217. ]
  5218. ))
  5219. characterMakers.push(() => makeCharacter(
  5220. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5221. {
  5222. front: {
  5223. height: math.unit(6, "feet"),
  5224. weight: math.unit(180, "lbs"),
  5225. name: "Front",
  5226. image: {
  5227. source: "./media/characters/andy/front.svg"
  5228. }
  5229. }
  5230. },
  5231. [
  5232. {
  5233. name: "Normal",
  5234. height: math.unit(8, "feet"),
  5235. default: true
  5236. },
  5237. {
  5238. name: "Macro",
  5239. height: math.unit(1000, "feet")
  5240. },
  5241. {
  5242. name: "Megamacro",
  5243. height: math.unit(5, "miles")
  5244. },
  5245. {
  5246. name: "Gigamacro",
  5247. height: math.unit(5000, "miles")
  5248. },
  5249. ]
  5250. ))
  5251. characterMakers.push(() => makeCharacter(
  5252. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5253. {
  5254. front: {
  5255. height: math.unit(6, "feet"),
  5256. weight: math.unit(210, "lbs"),
  5257. name: "Front",
  5258. image: {
  5259. source: "./media/characters/cimmaron/front-sfw.svg",
  5260. extra: 701 / 676,
  5261. bottom: 0.046
  5262. }
  5263. },
  5264. back: {
  5265. height: math.unit(6, "feet"),
  5266. weight: math.unit(210, "lbs"),
  5267. name: "Back",
  5268. image: {
  5269. source: "./media/characters/cimmaron/back-sfw.svg",
  5270. extra: 701 / 676,
  5271. bottom: 0.046
  5272. }
  5273. },
  5274. frontNsfw: {
  5275. height: math.unit(6, "feet"),
  5276. weight: math.unit(210, "lbs"),
  5277. name: "Front (NSFW)",
  5278. image: {
  5279. source: "./media/characters/cimmaron/front-nsfw.svg",
  5280. extra: 701 / 676,
  5281. bottom: 0.046
  5282. }
  5283. },
  5284. backNsfw: {
  5285. height: math.unit(6, "feet"),
  5286. weight: math.unit(210, "lbs"),
  5287. name: "Back (NSFW)",
  5288. image: {
  5289. source: "./media/characters/cimmaron/back-nsfw.svg",
  5290. extra: 701 / 676,
  5291. bottom: 0.046
  5292. }
  5293. },
  5294. dick: {
  5295. height: math.unit(1.714, "feet"),
  5296. name: "Dick",
  5297. image: {
  5298. source: "./media/characters/cimmaron/dick.svg"
  5299. }
  5300. },
  5301. },
  5302. [
  5303. {
  5304. name: "Normal",
  5305. height: math.unit(6, "feet"),
  5306. default: true
  5307. },
  5308. {
  5309. name: "Macro Mayor",
  5310. height: math.unit(350, "meters")
  5311. },
  5312. ]
  5313. ))
  5314. characterMakers.push(() => makeCharacter(
  5315. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5316. {
  5317. front: {
  5318. height: math.unit(6, "feet"),
  5319. weight: math.unit(200, "lbs"),
  5320. name: "Front",
  5321. image: {
  5322. source: "./media/characters/akari/front.svg",
  5323. extra: 962 / 901,
  5324. bottom: 0.04
  5325. }
  5326. }
  5327. },
  5328. [
  5329. {
  5330. name: "Micro",
  5331. height: math.unit(5, "inches"),
  5332. default: true
  5333. },
  5334. {
  5335. name: "Normal",
  5336. height: math.unit(7, "feet")
  5337. },
  5338. ]
  5339. ))
  5340. characterMakers.push(() => makeCharacter(
  5341. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5342. {
  5343. front: {
  5344. height: math.unit(6, "feet"),
  5345. weight: math.unit(140, "lbs"),
  5346. name: "Front",
  5347. image: {
  5348. source: "./media/characters/cynosura/front.svg",
  5349. extra: 896 / 847
  5350. }
  5351. },
  5352. back: {
  5353. height: math.unit(6, "feet"),
  5354. weight: math.unit(140, "lbs"),
  5355. name: "Back",
  5356. image: {
  5357. source: "./media/characters/cynosura/back.svg",
  5358. extra: 1365 / 1250
  5359. }
  5360. },
  5361. },
  5362. [
  5363. {
  5364. name: "Micro",
  5365. height: math.unit(4, "inches")
  5366. },
  5367. {
  5368. name: "Normal",
  5369. height: math.unit(5.75, "feet"),
  5370. default: true
  5371. },
  5372. {
  5373. name: "Tall",
  5374. height: math.unit(10, "feet")
  5375. },
  5376. {
  5377. name: "Big",
  5378. height: math.unit(20, "feet")
  5379. },
  5380. {
  5381. name: "Macro",
  5382. height: math.unit(50, "feet")
  5383. },
  5384. ]
  5385. ))
  5386. characterMakers.push(() => makeCharacter(
  5387. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5388. {
  5389. front: {
  5390. height: math.unit(6, "feet"),
  5391. weight: math.unit(170, "lbs"),
  5392. name: "Front",
  5393. image: {
  5394. source: "./media/characters/gin/front.svg",
  5395. extra: 1.053,
  5396. bottom: 0.025
  5397. }
  5398. },
  5399. foot: {
  5400. height: math.unit(6 / 4.25, "feet"),
  5401. name: "Foot",
  5402. image: {
  5403. source: "./media/characters/gin/foot.svg"
  5404. }
  5405. },
  5406. sole: {
  5407. height: math.unit(6 / 4.40, "feet"),
  5408. name: "Sole",
  5409. image: {
  5410. source: "./media/characters/gin/sole.svg"
  5411. }
  5412. },
  5413. },
  5414. [
  5415. {
  5416. name: "Normal",
  5417. height: math.unit(13 + 2 / 12, "feet")
  5418. },
  5419. {
  5420. name: "Macro",
  5421. height: math.unit(1500, "feet")
  5422. },
  5423. {
  5424. name: "Megamacro",
  5425. height: math.unit(200, "miles"),
  5426. default: true
  5427. },
  5428. {
  5429. name: "Gigamacro",
  5430. height: math.unit(500, "megameters")
  5431. },
  5432. {
  5433. name: "Teramacro",
  5434. height: math.unit(15, "lightyears")
  5435. }
  5436. ]
  5437. ))
  5438. characterMakers.push(() => makeCharacter(
  5439. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5440. {
  5441. front: {
  5442. height: math.unit(6 + 1 / 6, "feet"),
  5443. weight: math.unit(178, "lbs"),
  5444. name: "Front",
  5445. image: {
  5446. source: "./media/characters/guy/front.svg"
  5447. }
  5448. }
  5449. },
  5450. [
  5451. {
  5452. name: "Normal",
  5453. height: math.unit(6 + 1 / 6, "feet"),
  5454. default: true
  5455. },
  5456. {
  5457. name: "Large",
  5458. height: math.unit(25 + 7 / 12, "feet")
  5459. },
  5460. {
  5461. name: "Macro",
  5462. height: math.unit(60 + 9 / 12, "feet")
  5463. },
  5464. {
  5465. name: "Macro+",
  5466. height: math.unit(246, "feet")
  5467. },
  5468. {
  5469. name: "Macro++",
  5470. height: math.unit(878, "feet")
  5471. }
  5472. ]
  5473. ))
  5474. characterMakers.push(() => makeCharacter(
  5475. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5476. {
  5477. front: {
  5478. height: math.unit(9, "feet"),
  5479. weight: math.unit(800, "lbs"),
  5480. name: "Front",
  5481. image: {
  5482. source: "./media/characters/tiberius/front.svg",
  5483. extra: 2295 / 2071
  5484. }
  5485. },
  5486. back: {
  5487. height: math.unit(9, "feet"),
  5488. weight: math.unit(800, "lbs"),
  5489. name: "Back",
  5490. image: {
  5491. source: "./media/characters/tiberius/back.svg",
  5492. extra: 2373 / 2160
  5493. }
  5494. },
  5495. },
  5496. [
  5497. {
  5498. name: "Normal",
  5499. height: math.unit(9, "feet"),
  5500. default: true
  5501. }
  5502. ]
  5503. ))
  5504. characterMakers.push(() => makeCharacter(
  5505. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5506. {
  5507. front: {
  5508. height: math.unit(6, "feet"),
  5509. weight: math.unit(600, "lbs"),
  5510. name: "Front",
  5511. image: {
  5512. source: "./media/characters/surgo/front.svg",
  5513. extra: 3591 / 2227
  5514. }
  5515. },
  5516. back: {
  5517. height: math.unit(6, "feet"),
  5518. weight: math.unit(600, "lbs"),
  5519. name: "Back",
  5520. image: {
  5521. source: "./media/characters/surgo/back.svg",
  5522. extra: 3557 / 2228
  5523. }
  5524. },
  5525. laying: {
  5526. height: math.unit(6 * 0.85, "feet"),
  5527. weight: math.unit(600, "lbs"),
  5528. name: "Laying",
  5529. image: {
  5530. source: "./media/characters/surgo/laying.svg"
  5531. }
  5532. },
  5533. },
  5534. [
  5535. {
  5536. name: "Normal",
  5537. height: math.unit(6, "feet"),
  5538. default: true
  5539. }
  5540. ]
  5541. ))
  5542. characterMakers.push(() => makeCharacter(
  5543. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5544. {
  5545. side: {
  5546. height: math.unit(6, "feet"),
  5547. weight: math.unit(150, "lbs"),
  5548. name: "Side",
  5549. image: {
  5550. source: "./media/characters/cibus/side.svg",
  5551. extra: 800 / 400
  5552. }
  5553. },
  5554. },
  5555. [
  5556. {
  5557. name: "Normal",
  5558. height: math.unit(6, "feet"),
  5559. default: true
  5560. }
  5561. ]
  5562. ))
  5563. characterMakers.push(() => makeCharacter(
  5564. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5565. {
  5566. front: {
  5567. height: math.unit(6, "feet"),
  5568. weight: math.unit(240, "lbs"),
  5569. name: "Front",
  5570. image: {
  5571. source: "./media/characters/nibbles/front.svg"
  5572. }
  5573. },
  5574. side: {
  5575. height: math.unit(6, "feet"),
  5576. weight: math.unit(240, "lbs"),
  5577. name: "Side",
  5578. image: {
  5579. source: "./media/characters/nibbles/side.svg"
  5580. }
  5581. },
  5582. },
  5583. [
  5584. {
  5585. name: "Normal",
  5586. height: math.unit(9, "feet"),
  5587. default: true
  5588. }
  5589. ]
  5590. ))
  5591. characterMakers.push(() => makeCharacter(
  5592. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5593. {
  5594. side: {
  5595. height: math.unit(5 + 1 / 6, "feet"),
  5596. weight: math.unit(130, "lbs"),
  5597. name: "Side",
  5598. image: {
  5599. source: "./media/characters/rikky/side.svg",
  5600. extra: 851 / 801
  5601. }
  5602. },
  5603. },
  5604. [
  5605. {
  5606. name: "Normal",
  5607. height: math.unit(5 + 1 / 6, "feet")
  5608. },
  5609. {
  5610. name: "Macro",
  5611. height: math.unit(152, "feet"),
  5612. default: true
  5613. },
  5614. {
  5615. name: "Megamacro",
  5616. height: math.unit(7, "miles")
  5617. }
  5618. ]
  5619. ))
  5620. characterMakers.push(() => makeCharacter(
  5621. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5622. {
  5623. side: {
  5624. height: math.unit(370, "cm"),
  5625. weight: math.unit(350, "lbs"),
  5626. name: "Side",
  5627. image: {
  5628. source: "./media/characters/malfressa/side.svg"
  5629. }
  5630. },
  5631. walking: {
  5632. height: math.unit(370, "cm"),
  5633. weight: math.unit(350, "lbs"),
  5634. name: "Walking",
  5635. image: {
  5636. source: "./media/characters/malfressa/walking.svg"
  5637. }
  5638. },
  5639. feral: {
  5640. height: math.unit(2500, "cm"),
  5641. weight: math.unit(100000, "lbs"),
  5642. name: "Feral",
  5643. image: {
  5644. source: "./media/characters/malfressa/feral.svg",
  5645. extra: 2108 / 837,
  5646. bottom: 0.02
  5647. }
  5648. },
  5649. },
  5650. [
  5651. {
  5652. name: "Normal",
  5653. height: math.unit(370, "cm")
  5654. },
  5655. {
  5656. name: "Macro",
  5657. height: math.unit(300, "meters"),
  5658. default: true
  5659. }
  5660. ]
  5661. ))
  5662. characterMakers.push(() => makeCharacter(
  5663. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5664. {
  5665. front: {
  5666. height: math.unit(6, "feet"),
  5667. weight: math.unit(60, "kg"),
  5668. name: "Front",
  5669. image: {
  5670. source: "./media/characters/jaro/front.svg"
  5671. }
  5672. },
  5673. back: {
  5674. height: math.unit(6, "feet"),
  5675. weight: math.unit(60, "kg"),
  5676. name: "Back",
  5677. image: {
  5678. source: "./media/characters/jaro/back.svg"
  5679. }
  5680. },
  5681. },
  5682. [
  5683. {
  5684. name: "Micro",
  5685. height: math.unit(7, "inches")
  5686. },
  5687. {
  5688. name: "Normal",
  5689. height: math.unit(5.5, "feet"),
  5690. default: true
  5691. },
  5692. {
  5693. name: "Minimacro",
  5694. height: math.unit(20, "feet")
  5695. },
  5696. {
  5697. name: "Macro",
  5698. height: math.unit(200, "meters")
  5699. }
  5700. ]
  5701. ))
  5702. characterMakers.push(() => makeCharacter(
  5703. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5704. {
  5705. front: {
  5706. height: math.unit(6, "feet"),
  5707. weight: math.unit(195, "lb"),
  5708. name: "Front",
  5709. image: {
  5710. source: "./media/characters/rogue/front.svg"
  5711. }
  5712. },
  5713. },
  5714. [
  5715. {
  5716. name: "Macro",
  5717. height: math.unit(90, "feet"),
  5718. default: true
  5719. },
  5720. ]
  5721. ))
  5722. characterMakers.push(() => makeCharacter(
  5723. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5724. {
  5725. front: {
  5726. height: math.unit(5 + 8 / 12, "feet"),
  5727. weight: math.unit(140, "lb"),
  5728. name: "Front",
  5729. image: {
  5730. source: "./media/characters/piper/front.svg",
  5731. extra: 3928 / 3681
  5732. }
  5733. },
  5734. },
  5735. [
  5736. {
  5737. name: "Micro",
  5738. height: math.unit(2, "inches")
  5739. },
  5740. {
  5741. name: "Normal",
  5742. height: math.unit(5 + 8 / 12, "feet")
  5743. },
  5744. {
  5745. name: "Macro",
  5746. height: math.unit(250, "feet"),
  5747. default: true
  5748. },
  5749. {
  5750. name: "Megamacro",
  5751. height: math.unit(7, "miles")
  5752. },
  5753. ]
  5754. ))
  5755. characterMakers.push(() => makeCharacter(
  5756. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5757. {
  5758. front: {
  5759. height: math.unit(6, "feet"),
  5760. weight: math.unit(220, "lb"),
  5761. name: "Front",
  5762. image: {
  5763. source: "./media/characters/gemini/front.svg"
  5764. }
  5765. },
  5766. back: {
  5767. height: math.unit(6, "feet"),
  5768. weight: math.unit(220, "lb"),
  5769. name: "Back",
  5770. image: {
  5771. source: "./media/characters/gemini/back.svg"
  5772. }
  5773. },
  5774. kneeling: {
  5775. height: math.unit(6 / 1.5, "feet"),
  5776. weight: math.unit(220, "lb"),
  5777. name: "Kneeling",
  5778. image: {
  5779. source: "./media/characters/gemini/kneeling.svg",
  5780. bottom: 0.02
  5781. }
  5782. },
  5783. },
  5784. [
  5785. {
  5786. name: "Macro",
  5787. height: math.unit(300, "meters"),
  5788. default: true
  5789. },
  5790. {
  5791. name: "Megamacro",
  5792. height: math.unit(6900, "meters")
  5793. },
  5794. ]
  5795. ))
  5796. characterMakers.push(() => makeCharacter(
  5797. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5798. {
  5799. anthro: {
  5800. height: math.unit(2.35, "meters"),
  5801. weight: math.unit(73, "kg"),
  5802. name: "Anthro",
  5803. image: {
  5804. source: "./media/characters/alicia/anthro.svg",
  5805. extra: 2571 / 2385,
  5806. bottom: 75 / 2648
  5807. }
  5808. },
  5809. paw: {
  5810. height: math.unit(1.32, "feet"),
  5811. name: "Paw",
  5812. image: {
  5813. source: "./media/characters/alicia/paw.svg"
  5814. }
  5815. },
  5816. feral: {
  5817. height: math.unit(1.69, "meters"),
  5818. weight: math.unit(73, "kg"),
  5819. name: "Feral",
  5820. image: {
  5821. source: "./media/characters/alicia/feral.svg",
  5822. extra: 2123 / 1715,
  5823. bottom: 222 / 2349
  5824. }
  5825. },
  5826. },
  5827. [
  5828. {
  5829. name: "Normal",
  5830. height: math.unit(2.35, "meters")
  5831. },
  5832. {
  5833. name: "Macro",
  5834. height: math.unit(60, "meters"),
  5835. default: true
  5836. },
  5837. {
  5838. name: "Megamacro",
  5839. height: math.unit(10000, "kilometers")
  5840. },
  5841. ]
  5842. ))
  5843. characterMakers.push(() => makeCharacter(
  5844. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5845. {
  5846. front: {
  5847. height: math.unit(7, "feet"),
  5848. weight: math.unit(250, "lbs"),
  5849. name: "Front",
  5850. image: {
  5851. source: "./media/characters/archy/front.svg"
  5852. }
  5853. }
  5854. },
  5855. [
  5856. {
  5857. name: "Micro",
  5858. height: math.unit(1, "inch")
  5859. },
  5860. {
  5861. name: "Shorty",
  5862. height: math.unit(5, "feet")
  5863. },
  5864. {
  5865. name: "Normal",
  5866. height: math.unit(7, "feet")
  5867. },
  5868. {
  5869. name: "Macro",
  5870. height: math.unit(600, "meters"),
  5871. default: true
  5872. },
  5873. {
  5874. name: "Megamacro",
  5875. height: math.unit(1, "mile")
  5876. },
  5877. ]
  5878. ))
  5879. characterMakers.push(() => makeCharacter(
  5880. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5881. {
  5882. front: {
  5883. height: math.unit(1.65, "meters"),
  5884. weight: math.unit(74, "kg"),
  5885. name: "Front",
  5886. image: {
  5887. source: "./media/characters/berri/front.svg",
  5888. extra: 857 / 837,
  5889. bottom: 18 / 877
  5890. }
  5891. },
  5892. bum: {
  5893. height: math.unit(1.46, "feet"),
  5894. name: "Bum",
  5895. image: {
  5896. source: "./media/characters/berri/bum.svg"
  5897. }
  5898. },
  5899. mouth: {
  5900. height: math.unit(0.44, "feet"),
  5901. name: "Mouth",
  5902. image: {
  5903. source: "./media/characters/berri/mouth.svg"
  5904. }
  5905. },
  5906. paw: {
  5907. height: math.unit(0.826, "feet"),
  5908. name: "Paw",
  5909. image: {
  5910. source: "./media/characters/berri/paw.svg"
  5911. }
  5912. },
  5913. },
  5914. [
  5915. {
  5916. name: "Normal",
  5917. height: math.unit(1.65, "meters")
  5918. },
  5919. {
  5920. name: "Macro",
  5921. height: math.unit(60, "m"),
  5922. default: true
  5923. },
  5924. {
  5925. name: "Megamacro",
  5926. height: math.unit(9.213, "km")
  5927. },
  5928. {
  5929. name: "Planet Eater",
  5930. height: math.unit(489, "megameters")
  5931. },
  5932. {
  5933. name: "Teramacro",
  5934. height: math.unit(2471635000000, "meters")
  5935. },
  5936. {
  5937. name: "Examacro",
  5938. height: math.unit(8.0624e+26, "meters")
  5939. }
  5940. ]
  5941. ))
  5942. characterMakers.push(() => makeCharacter(
  5943. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5944. {
  5945. front: {
  5946. height: math.unit(1.72, "meters"),
  5947. weight: math.unit(68, "kg"),
  5948. name: "Front",
  5949. image: {
  5950. source: "./media/characters/lexi/front.svg"
  5951. }
  5952. }
  5953. },
  5954. [
  5955. {
  5956. name: "Very Smol",
  5957. height: math.unit(10, "mm")
  5958. },
  5959. {
  5960. name: "Micro",
  5961. height: math.unit(6.8, "cm"),
  5962. default: true
  5963. },
  5964. {
  5965. name: "Normal",
  5966. height: math.unit(1.72, "m")
  5967. }
  5968. ]
  5969. ))
  5970. characterMakers.push(() => makeCharacter(
  5971. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5972. {
  5973. front: {
  5974. height: math.unit(1.69, "meters"),
  5975. weight: math.unit(68, "kg"),
  5976. name: "Front",
  5977. image: {
  5978. source: "./media/characters/martin/front.svg",
  5979. extra: 596 / 581
  5980. }
  5981. }
  5982. },
  5983. [
  5984. {
  5985. name: "Micro",
  5986. height: math.unit(6.85, "cm"),
  5987. default: true
  5988. },
  5989. {
  5990. name: "Normal",
  5991. height: math.unit(1.69, "m")
  5992. }
  5993. ]
  5994. ))
  5995. characterMakers.push(() => makeCharacter(
  5996. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5997. {
  5998. front: {
  5999. height: math.unit(1.69, "meters"),
  6000. weight: math.unit(68, "kg"),
  6001. name: "Front",
  6002. image: {
  6003. source: "./media/characters/juno/front.svg"
  6004. }
  6005. }
  6006. },
  6007. [
  6008. {
  6009. name: "Micro",
  6010. height: math.unit(7, "cm")
  6011. },
  6012. {
  6013. name: "Normal",
  6014. height: math.unit(1.89, "m")
  6015. },
  6016. {
  6017. name: "Macro",
  6018. height: math.unit(353, "meters"),
  6019. default: true
  6020. }
  6021. ]
  6022. ))
  6023. characterMakers.push(() => makeCharacter(
  6024. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6025. {
  6026. front: {
  6027. height: math.unit(1.93, "meters"),
  6028. weight: math.unit(83, "kg"),
  6029. name: "Front",
  6030. image: {
  6031. source: "./media/characters/samantha/front.svg"
  6032. }
  6033. },
  6034. frontClothed: {
  6035. height: math.unit(1.93, "meters"),
  6036. weight: math.unit(83, "kg"),
  6037. name: "Front (Clothed)",
  6038. image: {
  6039. source: "./media/characters/samantha/front-clothed.svg"
  6040. }
  6041. },
  6042. back: {
  6043. height: math.unit(1.93, "meters"),
  6044. weight: math.unit(83, "kg"),
  6045. name: "Back",
  6046. image: {
  6047. source: "./media/characters/samantha/back.svg"
  6048. }
  6049. },
  6050. },
  6051. [
  6052. {
  6053. name: "Normal",
  6054. height: math.unit(1.93, "m")
  6055. },
  6056. {
  6057. name: "Macro",
  6058. height: math.unit(74, "meters"),
  6059. default: true
  6060. },
  6061. {
  6062. name: "Macro+",
  6063. height: math.unit(223, "meters"),
  6064. },
  6065. {
  6066. name: "Megamacro",
  6067. height: math.unit(8381, "meters"),
  6068. },
  6069. {
  6070. name: "Megamacro+",
  6071. height: math.unit(12000, "kilometers")
  6072. },
  6073. ]
  6074. ))
  6075. characterMakers.push(() => makeCharacter(
  6076. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6077. {
  6078. front: {
  6079. height: math.unit(1.92, "meters"),
  6080. weight: math.unit(80, "kg"),
  6081. name: "Front",
  6082. image: {
  6083. source: "./media/characters/dr-clay/front.svg"
  6084. }
  6085. },
  6086. frontClothed: {
  6087. height: math.unit(1.92, "meters"),
  6088. weight: math.unit(80, "kg"),
  6089. name: "Front (Clothed)",
  6090. image: {
  6091. source: "./media/characters/dr-clay/front-clothed.svg"
  6092. }
  6093. }
  6094. },
  6095. [
  6096. {
  6097. name: "Normal",
  6098. height: math.unit(1.92, "m")
  6099. },
  6100. {
  6101. name: "Macro",
  6102. height: math.unit(214, "meters"),
  6103. default: true
  6104. },
  6105. {
  6106. name: "Macro+",
  6107. height: math.unit(12.237, "meters"),
  6108. },
  6109. {
  6110. name: "Megamacro",
  6111. height: math.unit(557, "megameters"),
  6112. },
  6113. {
  6114. name: "Unimaginable",
  6115. height: math.unit(120e9, "lightyears")
  6116. },
  6117. ]
  6118. ))
  6119. characterMakers.push(() => makeCharacter(
  6120. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6121. {
  6122. front: {
  6123. height: math.unit(2, "meters"),
  6124. weight: math.unit(80, "kg"),
  6125. name: "Front",
  6126. image: {
  6127. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6128. }
  6129. }
  6130. },
  6131. [
  6132. {
  6133. name: "Teramacro",
  6134. height: math.unit(500000, "lightyears"),
  6135. default: true
  6136. },
  6137. ]
  6138. ))
  6139. characterMakers.push(() => makeCharacter(
  6140. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6141. {
  6142. front: {
  6143. height: math.unit(2, "meters"),
  6144. weight: math.unit(150, "kg"),
  6145. name: "Front",
  6146. image: {
  6147. source: "./media/characters/vemus/front.svg",
  6148. extra: 2384 / 2084,
  6149. bottom: 0.0123
  6150. }
  6151. }
  6152. },
  6153. [
  6154. {
  6155. name: "Normal",
  6156. height: math.unit(3.75, "meters"),
  6157. default: true
  6158. },
  6159. {
  6160. name: "Big",
  6161. height: math.unit(8, "meters")
  6162. },
  6163. {
  6164. name: "Macro",
  6165. height: math.unit(100, "meters")
  6166. },
  6167. {
  6168. name: "Macro+",
  6169. height: math.unit(1500, "meters")
  6170. },
  6171. {
  6172. name: "Stellar",
  6173. height: math.unit(14e8, "meters")
  6174. },
  6175. ]
  6176. ))
  6177. characterMakers.push(() => makeCharacter(
  6178. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6179. {
  6180. front: {
  6181. height: math.unit(2, "meters"),
  6182. weight: math.unit(70, "kg"),
  6183. name: "Front",
  6184. image: {
  6185. source: "./media/characters/beherit/front.svg",
  6186. extra: 1408 / 1242
  6187. }
  6188. }
  6189. },
  6190. [
  6191. {
  6192. name: "Normal",
  6193. height: math.unit(6, "feet")
  6194. },
  6195. {
  6196. name: "Lorg",
  6197. height: math.unit(25, "feet"),
  6198. default: true
  6199. },
  6200. {
  6201. name: "Lorger",
  6202. height: math.unit(75, "feet")
  6203. },
  6204. {
  6205. name: "Macro",
  6206. height: math.unit(200, "meters")
  6207. },
  6208. ]
  6209. ))
  6210. characterMakers.push(() => makeCharacter(
  6211. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6212. {
  6213. front: {
  6214. height: math.unit(2, "meters"),
  6215. weight: math.unit(150, "kg"),
  6216. name: "Front",
  6217. image: {
  6218. source: "./media/characters/everett/front.svg",
  6219. extra: 2038 / 1737,
  6220. bottom: 0.03
  6221. }
  6222. },
  6223. paw: {
  6224. height: math.unit(2 / 3.6, "meters"),
  6225. name: "Paw",
  6226. image: {
  6227. source: "./media/characters/everett/paw.svg"
  6228. }
  6229. },
  6230. },
  6231. [
  6232. {
  6233. name: "Normal",
  6234. height: math.unit(15, "feet"),
  6235. default: true
  6236. },
  6237. {
  6238. name: "Lorg",
  6239. height: math.unit(70, "feet"),
  6240. default: true
  6241. },
  6242. {
  6243. name: "Lorger",
  6244. height: math.unit(250, "feet")
  6245. },
  6246. {
  6247. name: "Macro",
  6248. height: math.unit(500, "meters")
  6249. },
  6250. ]
  6251. ))
  6252. characterMakers.push(() => makeCharacter(
  6253. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6254. {
  6255. front: {
  6256. height: math.unit(2, "meters"),
  6257. weight: math.unit(86, "kg"),
  6258. name: "Front",
  6259. image: {
  6260. source: "./media/characters/rose/front.svg",
  6261. extra: 350/335,
  6262. bottom: 10/360
  6263. }
  6264. },
  6265. frontAlt: {
  6266. height: math.unit(1.6, "meters"),
  6267. weight: math.unit(86, "kg"),
  6268. name: "Front (Alt)",
  6269. image: {
  6270. source: "./media/characters/rose/front-alt.svg",
  6271. extra: 299/283,
  6272. bottom: 3/302
  6273. }
  6274. },
  6275. plush: {
  6276. height: math.unit(2, "meters"),
  6277. weight: math.unit(86/3, "kg"),
  6278. name: "Plush",
  6279. image: {
  6280. source: "./media/characters/rose/plush.svg",
  6281. extra: 361/337,
  6282. bottom: 11/372
  6283. }
  6284. },
  6285. },
  6286. [
  6287. {
  6288. name: "Mini-Micro",
  6289. height: math.unit(1, "cm")
  6290. },
  6291. {
  6292. name: "Micro",
  6293. height: math.unit(3.5, "inches"),
  6294. default: true
  6295. },
  6296. {
  6297. name: "Normal",
  6298. height: math.unit(6 + 1 / 6, "feet")
  6299. },
  6300. {
  6301. name: "Mini-Macro",
  6302. height: math.unit(9 + 10 / 12, "feet")
  6303. },
  6304. ]
  6305. ))
  6306. characterMakers.push(() => makeCharacter(
  6307. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6308. {
  6309. front: {
  6310. height: math.unit(2, "meters"),
  6311. weight: math.unit(350, "lbs"),
  6312. name: "Front",
  6313. image: {
  6314. source: "./media/characters/regal/front.svg"
  6315. }
  6316. },
  6317. back: {
  6318. height: math.unit(2, "meters"),
  6319. weight: math.unit(350, "lbs"),
  6320. name: "Back",
  6321. image: {
  6322. source: "./media/characters/regal/back.svg"
  6323. }
  6324. },
  6325. },
  6326. [
  6327. {
  6328. name: "Macro",
  6329. height: math.unit(350, "feet"),
  6330. default: true
  6331. }
  6332. ]
  6333. ))
  6334. characterMakers.push(() => makeCharacter(
  6335. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6336. {
  6337. front: {
  6338. height: math.unit(4 + 11 / 12, "feet"),
  6339. weight: math.unit(100, "lbs"),
  6340. name: "Front",
  6341. image: {
  6342. source: "./media/characters/opal/front.svg"
  6343. }
  6344. },
  6345. frontAlt: {
  6346. height: math.unit(4 + 11 / 12, "feet"),
  6347. weight: math.unit(100, "lbs"),
  6348. name: "Front (Alt)",
  6349. image: {
  6350. source: "./media/characters/opal/front-alt.svg"
  6351. }
  6352. },
  6353. },
  6354. [
  6355. {
  6356. name: "Small",
  6357. height: math.unit(4 + 11 / 12, "feet")
  6358. },
  6359. {
  6360. name: "Normal",
  6361. height: math.unit(20, "feet"),
  6362. default: true
  6363. },
  6364. {
  6365. name: "Macro",
  6366. height: math.unit(120, "feet")
  6367. },
  6368. {
  6369. name: "Megamacro",
  6370. height: math.unit(80, "miles")
  6371. },
  6372. {
  6373. name: "True Size",
  6374. height: math.unit(100000, "lightyears")
  6375. },
  6376. ]
  6377. ))
  6378. characterMakers.push(() => makeCharacter(
  6379. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6380. {
  6381. front: {
  6382. height: math.unit(6, "feet"),
  6383. weight: math.unit(200, "lbs"),
  6384. name: "Front",
  6385. image: {
  6386. source: "./media/characters/vector-wuff/front.svg"
  6387. }
  6388. }
  6389. },
  6390. [
  6391. {
  6392. name: "Normal",
  6393. height: math.unit(2.8, "meters")
  6394. },
  6395. {
  6396. name: "Macro",
  6397. height: math.unit(450, "meters"),
  6398. default: true
  6399. },
  6400. {
  6401. name: "Megamacro",
  6402. height: math.unit(15, "kilometers")
  6403. }
  6404. ]
  6405. ))
  6406. characterMakers.push(() => makeCharacter(
  6407. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6408. {
  6409. front: {
  6410. height: math.unit(6, "feet"),
  6411. weight: math.unit(256, "lbs"),
  6412. name: "Front",
  6413. image: {
  6414. source: "./media/characters/dannik/front.svg"
  6415. }
  6416. }
  6417. },
  6418. [
  6419. {
  6420. name: "Macro",
  6421. height: math.unit(69.57, "meters"),
  6422. default: true
  6423. },
  6424. ]
  6425. ))
  6426. characterMakers.push(() => makeCharacter(
  6427. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6428. {
  6429. front: {
  6430. height: math.unit(6, "feet"),
  6431. weight: math.unit(120, "lbs"),
  6432. name: "Front",
  6433. image: {
  6434. source: "./media/characters/azura-saharah/front.svg"
  6435. }
  6436. },
  6437. back: {
  6438. height: math.unit(6, "feet"),
  6439. weight: math.unit(120, "lbs"),
  6440. name: "Back",
  6441. image: {
  6442. source: "./media/characters/azura-saharah/back.svg"
  6443. }
  6444. },
  6445. },
  6446. [
  6447. {
  6448. name: "Macro",
  6449. height: math.unit(100, "feet"),
  6450. default: true
  6451. },
  6452. ]
  6453. ))
  6454. characterMakers.push(() => makeCharacter(
  6455. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6456. {
  6457. side: {
  6458. height: math.unit(5 + 4 / 12, "feet"),
  6459. weight: math.unit(163, "lbs"),
  6460. name: "Side",
  6461. image: {
  6462. source: "./media/characters/kennedy/side.svg"
  6463. }
  6464. }
  6465. },
  6466. [
  6467. {
  6468. name: "Standard Doggo",
  6469. height: math.unit(5 + 4 / 12, "feet")
  6470. },
  6471. {
  6472. name: "Big Doggo",
  6473. height: math.unit(25 + 3 / 12, "feet"),
  6474. default: true
  6475. },
  6476. ]
  6477. ))
  6478. characterMakers.push(() => makeCharacter(
  6479. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6480. {
  6481. front: {
  6482. height: math.unit(6, "feet"),
  6483. weight: math.unit(90, "lbs"),
  6484. name: "Front",
  6485. image: {
  6486. source: "./media/characters/odi-lunar/front.svg"
  6487. }
  6488. }
  6489. },
  6490. [
  6491. {
  6492. name: "Micro",
  6493. height: math.unit(3, "inches"),
  6494. default: true
  6495. },
  6496. {
  6497. name: "Normal",
  6498. height: math.unit(5.5, "feet")
  6499. }
  6500. ]
  6501. ))
  6502. characterMakers.push(() => makeCharacter(
  6503. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6504. {
  6505. back: {
  6506. height: math.unit(6, "feet"),
  6507. weight: math.unit(220, "lbs"),
  6508. name: "Back",
  6509. image: {
  6510. source: "./media/characters/mandake/back.svg"
  6511. }
  6512. }
  6513. },
  6514. [
  6515. {
  6516. name: "Normal",
  6517. height: math.unit(7, "feet"),
  6518. default: true
  6519. },
  6520. {
  6521. name: "Macro",
  6522. height: math.unit(78, "feet")
  6523. },
  6524. {
  6525. name: "Macro+",
  6526. height: math.unit(300, "meters")
  6527. },
  6528. {
  6529. name: "Macro++",
  6530. height: math.unit(2400, "feet")
  6531. },
  6532. {
  6533. name: "Megamacro",
  6534. height: math.unit(5167, "meters")
  6535. },
  6536. {
  6537. name: "Gigamacro",
  6538. height: math.unit(41769, "miles")
  6539. },
  6540. ]
  6541. ))
  6542. characterMakers.push(() => makeCharacter(
  6543. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6544. {
  6545. front: {
  6546. height: math.unit(6, "feet"),
  6547. weight: math.unit(120, "lbs"),
  6548. name: "Front",
  6549. image: {
  6550. source: "./media/characters/yozey/front.svg"
  6551. }
  6552. },
  6553. frontAlt: {
  6554. height: math.unit(6, "feet"),
  6555. weight: math.unit(120, "lbs"),
  6556. name: "Front (Alt)",
  6557. image: {
  6558. source: "./media/characters/yozey/front-alt.svg"
  6559. }
  6560. },
  6561. side: {
  6562. height: math.unit(6, "feet"),
  6563. weight: math.unit(120, "lbs"),
  6564. name: "Side",
  6565. image: {
  6566. source: "./media/characters/yozey/side.svg"
  6567. }
  6568. },
  6569. },
  6570. [
  6571. {
  6572. name: "Micro",
  6573. height: math.unit(3, "inches"),
  6574. default: true
  6575. },
  6576. {
  6577. name: "Normal",
  6578. height: math.unit(6, "feet")
  6579. }
  6580. ]
  6581. ))
  6582. characterMakers.push(() => makeCharacter(
  6583. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6584. {
  6585. front: {
  6586. height: math.unit(6, "feet"),
  6587. weight: math.unit(103, "lbs"),
  6588. name: "Front",
  6589. image: {
  6590. source: "./media/characters/valeska-voss/front.svg"
  6591. }
  6592. }
  6593. },
  6594. [
  6595. {
  6596. name: "Mini-Sized Sub",
  6597. height: math.unit(3.1, "inches")
  6598. },
  6599. {
  6600. name: "Mid-Sized Sub",
  6601. height: math.unit(6.2, "inches")
  6602. },
  6603. {
  6604. name: "Full-Sized Sub",
  6605. height: math.unit(9.3, "inches")
  6606. },
  6607. {
  6608. name: "Normal",
  6609. height: math.unit(5 + 2 / 12, "foot"),
  6610. default: true
  6611. },
  6612. ]
  6613. ))
  6614. characterMakers.push(() => makeCharacter(
  6615. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6616. {
  6617. front: {
  6618. height: math.unit(6, "feet"),
  6619. weight: math.unit(160, "lbs"),
  6620. name: "Front",
  6621. image: {
  6622. source: "./media/characters/gene-zeta/front.svg",
  6623. extra: 3006 / 2826,
  6624. bottom: 182 / 3188
  6625. }
  6626. }
  6627. },
  6628. [
  6629. {
  6630. name: "Micro",
  6631. height: math.unit(6, "inches")
  6632. },
  6633. {
  6634. name: "Normal",
  6635. height: math.unit(5 + 11 / 12, "foot"),
  6636. default: true
  6637. },
  6638. {
  6639. name: "Macro",
  6640. height: math.unit(140, "feet")
  6641. },
  6642. {
  6643. name: "Supercharged",
  6644. height: math.unit(2500, "feet")
  6645. },
  6646. ]
  6647. ))
  6648. characterMakers.push(() => makeCharacter(
  6649. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6650. {
  6651. front: {
  6652. height: math.unit(6, "feet"),
  6653. weight: math.unit(350, "lbs"),
  6654. name: "Front",
  6655. image: {
  6656. source: "./media/characters/razinox/front.svg",
  6657. extra: 1686 / 1548,
  6658. bottom: 28.2 / 1868
  6659. }
  6660. },
  6661. back: {
  6662. height: math.unit(6, "feet"),
  6663. weight: math.unit(350, "lbs"),
  6664. name: "Back",
  6665. image: {
  6666. source: "./media/characters/razinox/back.svg",
  6667. extra: 1660 / 1590,
  6668. bottom: 15 / 1665
  6669. }
  6670. },
  6671. },
  6672. [
  6673. {
  6674. name: "Normal",
  6675. height: math.unit(10 + 8 / 12, "foot")
  6676. },
  6677. {
  6678. name: "Minimacro",
  6679. height: math.unit(15, "foot")
  6680. },
  6681. {
  6682. name: "Macro",
  6683. height: math.unit(60, "foot"),
  6684. default: true
  6685. },
  6686. {
  6687. name: "Megamacro",
  6688. height: math.unit(5, "miles")
  6689. },
  6690. {
  6691. name: "Gigamacro",
  6692. height: math.unit(6000, "miles")
  6693. },
  6694. ]
  6695. ))
  6696. characterMakers.push(() => makeCharacter(
  6697. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6698. {
  6699. front: {
  6700. height: math.unit(6, "feet"),
  6701. weight: math.unit(150, "lbs"),
  6702. name: "Front",
  6703. image: {
  6704. source: "./media/characters/cobalt/front.svg"
  6705. }
  6706. }
  6707. },
  6708. [
  6709. {
  6710. name: "Normal",
  6711. height: math.unit(8 + 1 / 12, "foot")
  6712. },
  6713. {
  6714. name: "Macro",
  6715. height: math.unit(111, "foot"),
  6716. default: true
  6717. },
  6718. {
  6719. name: "Supracosmic",
  6720. height: math.unit(1e42, "feet")
  6721. },
  6722. ]
  6723. ))
  6724. characterMakers.push(() => makeCharacter(
  6725. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6726. {
  6727. front: {
  6728. height: math.unit(6, "feet"),
  6729. weight: math.unit(140, "lbs"),
  6730. name: "Front",
  6731. image: {
  6732. source: "./media/characters/amanda/front.svg"
  6733. }
  6734. }
  6735. },
  6736. [
  6737. {
  6738. name: "Micro",
  6739. height: math.unit(5, "inches"),
  6740. default: true
  6741. },
  6742. ]
  6743. ))
  6744. characterMakers.push(() => makeCharacter(
  6745. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6746. {
  6747. front: {
  6748. height: math.unit(2.75, "meters"),
  6749. weight: math.unit(1200, "lb"),
  6750. name: "Front",
  6751. image: {
  6752. source: "./media/characters/teal/front.svg",
  6753. extra: 2463 / 2320,
  6754. bottom: 166 / 2629
  6755. }
  6756. },
  6757. back: {
  6758. height: math.unit(2.75, "meters"),
  6759. weight: math.unit(1200, "lb"),
  6760. name: "Back",
  6761. image: {
  6762. source: "./media/characters/teal/back.svg",
  6763. extra: 2580 / 2489,
  6764. bottom: 151 / 2731
  6765. }
  6766. },
  6767. sitting: {
  6768. height: math.unit(1.9, "meters"),
  6769. weight: math.unit(1200, "lb"),
  6770. name: "Sitting",
  6771. image: {
  6772. source: "./media/characters/teal/sitting.svg",
  6773. extra: 623 / 590,
  6774. bottom: 121 / 744
  6775. }
  6776. },
  6777. standing: {
  6778. height: math.unit(2.75, "meters"),
  6779. weight: math.unit(1200, "lb"),
  6780. name: "Standing",
  6781. image: {
  6782. source: "./media/characters/teal/standing.svg",
  6783. extra: 923 / 893,
  6784. bottom: 60 / 983
  6785. }
  6786. },
  6787. stretching: {
  6788. height: math.unit(3.65, "meters"),
  6789. weight: math.unit(1200, "lb"),
  6790. name: "Stretching",
  6791. image: {
  6792. source: "./media/characters/teal/stretching.svg",
  6793. extra: 1276 / 1244,
  6794. bottom: 0 / 1276
  6795. }
  6796. },
  6797. legged: {
  6798. height: math.unit(1.3, "meters"),
  6799. weight: math.unit(100, "lb"),
  6800. name: "Legged",
  6801. image: {
  6802. source: "./media/characters/teal/legged.svg",
  6803. extra: 462 / 437,
  6804. bottom: 24 / 486
  6805. }
  6806. },
  6807. naga: {
  6808. height: math.unit(5.4, "meters"),
  6809. weight: math.unit(4000, "lb"),
  6810. name: "Naga",
  6811. image: {
  6812. source: "./media/characters/teal/naga.svg",
  6813. extra: 1902 / 1858,
  6814. bottom: 0 / 1902
  6815. }
  6816. },
  6817. hand: {
  6818. height: math.unit(0.52, "meters"),
  6819. name: "Hand",
  6820. image: {
  6821. source: "./media/characters/teal/hand.svg"
  6822. }
  6823. },
  6824. maw: {
  6825. height: math.unit(0.43, "meters"),
  6826. name: "Maw",
  6827. image: {
  6828. source: "./media/characters/teal/maw.svg"
  6829. }
  6830. },
  6831. slit: {
  6832. height: math.unit(0.25, "meters"),
  6833. name: "Slit",
  6834. image: {
  6835. source: "./media/characters/teal/slit.svg"
  6836. }
  6837. },
  6838. },
  6839. [
  6840. {
  6841. name: "Normal",
  6842. height: math.unit(2.75, "meters"),
  6843. default: true
  6844. },
  6845. {
  6846. name: "Macro",
  6847. height: math.unit(300, "feet")
  6848. },
  6849. {
  6850. name: "Macro+",
  6851. height: math.unit(2000, "feet")
  6852. },
  6853. ]
  6854. ))
  6855. characterMakers.push(() => makeCharacter(
  6856. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6857. {
  6858. frontCat: {
  6859. height: math.unit(6, "feet"),
  6860. weight: math.unit(180, "lbs"),
  6861. name: "Front (Cat)",
  6862. image: {
  6863. source: "./media/characters/ravin-amulet/front-cat.svg"
  6864. }
  6865. },
  6866. frontCatAlt: {
  6867. height: math.unit(6, "feet"),
  6868. weight: math.unit(180, "lbs"),
  6869. name: "Front (Alt, Cat)",
  6870. image: {
  6871. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6872. }
  6873. },
  6874. frontWerewolf: {
  6875. height: math.unit(6 * 1.2, "feet"),
  6876. weight: math.unit(225, "lbs"),
  6877. name: "Front (Werewolf)",
  6878. image: {
  6879. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6880. }
  6881. },
  6882. backWerewolf: {
  6883. height: math.unit(6 * 1.2, "feet"),
  6884. weight: math.unit(225, "lbs"),
  6885. name: "Back (Werewolf)",
  6886. image: {
  6887. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6888. }
  6889. },
  6890. },
  6891. [
  6892. {
  6893. name: "Nano",
  6894. height: math.unit(1, "micrometer")
  6895. },
  6896. {
  6897. name: "Micro",
  6898. height: math.unit(1, "inch")
  6899. },
  6900. {
  6901. name: "Normal",
  6902. height: math.unit(6, "feet"),
  6903. default: true
  6904. },
  6905. {
  6906. name: "Macro",
  6907. height: math.unit(60, "feet")
  6908. }
  6909. ]
  6910. ))
  6911. characterMakers.push(() => makeCharacter(
  6912. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6913. {
  6914. front: {
  6915. height: math.unit(6, "feet"),
  6916. weight: math.unit(165, "lbs"),
  6917. name: "Front",
  6918. image: {
  6919. source: "./media/characters/fluoresce/front.svg"
  6920. }
  6921. }
  6922. },
  6923. [
  6924. {
  6925. name: "Micro",
  6926. height: math.unit(6, "cm")
  6927. },
  6928. {
  6929. name: "Normal",
  6930. height: math.unit(5 + 7 / 12, "feet"),
  6931. default: true
  6932. },
  6933. {
  6934. name: "Macro",
  6935. height: math.unit(56, "feet")
  6936. },
  6937. {
  6938. name: "Megamacro",
  6939. height: math.unit(1.9, "miles")
  6940. },
  6941. ]
  6942. ))
  6943. characterMakers.push(() => makeCharacter(
  6944. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6945. {
  6946. front: {
  6947. height: math.unit(9 + 6 / 12, "feet"),
  6948. weight: math.unit(523, "lbs"),
  6949. name: "Side",
  6950. image: {
  6951. source: "./media/characters/aurora/side.svg"
  6952. }
  6953. }
  6954. },
  6955. [
  6956. {
  6957. name: "Normal",
  6958. height: math.unit(9 + 6 / 12, "feet")
  6959. },
  6960. {
  6961. name: "Macro",
  6962. height: math.unit(96, "feet"),
  6963. default: true
  6964. },
  6965. {
  6966. name: "Macro+",
  6967. height: math.unit(243, "feet")
  6968. },
  6969. ]
  6970. ))
  6971. characterMakers.push(() => makeCharacter(
  6972. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6973. {
  6974. front: {
  6975. height: math.unit(194, "cm"),
  6976. weight: math.unit(90, "kg"),
  6977. name: "Front",
  6978. image: {
  6979. source: "./media/characters/ranek/front.svg"
  6980. }
  6981. },
  6982. side: {
  6983. height: math.unit(194, "cm"),
  6984. weight: math.unit(90, "kg"),
  6985. name: "Side",
  6986. image: {
  6987. source: "./media/characters/ranek/side.svg"
  6988. }
  6989. },
  6990. back: {
  6991. height: math.unit(194, "cm"),
  6992. weight: math.unit(90, "kg"),
  6993. name: "Back",
  6994. image: {
  6995. source: "./media/characters/ranek/back.svg"
  6996. }
  6997. },
  6998. feral: {
  6999. height: math.unit(30, "cm"),
  7000. weight: math.unit(1.6, "lbs"),
  7001. name: "Feral",
  7002. image: {
  7003. source: "./media/characters/ranek/feral.svg"
  7004. }
  7005. },
  7006. },
  7007. [
  7008. {
  7009. name: "Normal",
  7010. height: math.unit(194, "cm"),
  7011. default: true
  7012. },
  7013. {
  7014. name: "Macro",
  7015. height: math.unit(100, "meters")
  7016. },
  7017. ]
  7018. ))
  7019. characterMakers.push(() => makeCharacter(
  7020. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7021. {
  7022. front: {
  7023. height: math.unit(5 + 6 / 12, "feet"),
  7024. weight: math.unit(153, "lbs"),
  7025. name: "Front",
  7026. image: {
  7027. source: "./media/characters/andrew-cooper/front.svg"
  7028. }
  7029. },
  7030. },
  7031. [
  7032. {
  7033. name: "Nano",
  7034. height: math.unit(1, "mm")
  7035. },
  7036. {
  7037. name: "Micro",
  7038. height: math.unit(2, "inches")
  7039. },
  7040. {
  7041. name: "Normal",
  7042. height: math.unit(5 + 6 / 12, "feet"),
  7043. default: true
  7044. }
  7045. ]
  7046. ))
  7047. characterMakers.push(() => makeCharacter(
  7048. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7049. {
  7050. front: {
  7051. height: math.unit(6, "feet"),
  7052. weight: math.unit(180, "lbs"),
  7053. name: "Front",
  7054. image: {
  7055. source: "./media/characters/akane-sato/front.svg",
  7056. extra: 1219 / 1140
  7057. }
  7058. },
  7059. back: {
  7060. height: math.unit(6, "feet"),
  7061. weight: math.unit(180, "lbs"),
  7062. name: "Back",
  7063. image: {
  7064. source: "./media/characters/akane-sato/back.svg",
  7065. extra: 1219 / 1170
  7066. }
  7067. },
  7068. },
  7069. [
  7070. {
  7071. name: "Normal",
  7072. height: math.unit(2.5, "meters")
  7073. },
  7074. {
  7075. name: "Macro",
  7076. height: math.unit(250, "meters"),
  7077. default: true
  7078. },
  7079. {
  7080. name: "Megamacro",
  7081. height: math.unit(25, "km")
  7082. },
  7083. ]
  7084. ))
  7085. characterMakers.push(() => makeCharacter(
  7086. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7087. {
  7088. front: {
  7089. height: math.unit(6, "feet"),
  7090. weight: math.unit(65, "kg"),
  7091. name: "Front",
  7092. image: {
  7093. source: "./media/characters/rook/front.svg",
  7094. extra: 960 / 950
  7095. }
  7096. }
  7097. },
  7098. [
  7099. {
  7100. name: "Normal",
  7101. height: math.unit(8.8, "feet")
  7102. },
  7103. {
  7104. name: "Macro",
  7105. height: math.unit(88, "feet"),
  7106. default: true
  7107. },
  7108. {
  7109. name: "Megamacro",
  7110. height: math.unit(8, "miles")
  7111. },
  7112. ]
  7113. ))
  7114. characterMakers.push(() => makeCharacter(
  7115. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7116. {
  7117. front: {
  7118. height: math.unit(12 + 2 / 12, "feet"),
  7119. weight: math.unit(808, "lbs"),
  7120. name: "Front",
  7121. image: {
  7122. source: "./media/characters/prodigy/front.svg"
  7123. }
  7124. }
  7125. },
  7126. [
  7127. {
  7128. name: "Normal",
  7129. height: math.unit(12 + 2 / 12, "feet"),
  7130. default: true
  7131. },
  7132. {
  7133. name: "Macro",
  7134. height: math.unit(143, "feet")
  7135. },
  7136. {
  7137. name: "Macro+",
  7138. height: math.unit(400, "feet")
  7139. },
  7140. ]
  7141. ))
  7142. characterMakers.push(() => makeCharacter(
  7143. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7144. {
  7145. front: {
  7146. height: math.unit(6, "feet"),
  7147. weight: math.unit(225, "lbs"),
  7148. name: "Front",
  7149. image: {
  7150. source: "./media/characters/daniel/front.svg"
  7151. }
  7152. },
  7153. leaning: {
  7154. height: math.unit(6, "feet"),
  7155. weight: math.unit(225, "lbs"),
  7156. name: "Leaning",
  7157. image: {
  7158. source: "./media/characters/daniel/leaning.svg"
  7159. }
  7160. },
  7161. },
  7162. [
  7163. {
  7164. name: "Macro",
  7165. height: math.unit(1000, "feet"),
  7166. default: true
  7167. },
  7168. ]
  7169. ))
  7170. characterMakers.push(() => makeCharacter(
  7171. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7172. {
  7173. front: {
  7174. height: math.unit(6, "feet"),
  7175. weight: math.unit(88, "lbs"),
  7176. name: "Front",
  7177. image: {
  7178. source: "./media/characters/chiros/front.svg",
  7179. extra: 306 / 226
  7180. }
  7181. },
  7182. side: {
  7183. height: math.unit(6, "feet"),
  7184. weight: math.unit(88, "lbs"),
  7185. name: "Side",
  7186. image: {
  7187. source: "./media/characters/chiros/side.svg",
  7188. extra: 306 / 226
  7189. }
  7190. },
  7191. },
  7192. [
  7193. {
  7194. name: "Normal",
  7195. height: math.unit(6, "cm"),
  7196. default: true
  7197. },
  7198. ]
  7199. ))
  7200. characterMakers.push(() => makeCharacter(
  7201. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7202. {
  7203. front: {
  7204. height: math.unit(6, "feet"),
  7205. weight: math.unit(100, "lbs"),
  7206. name: "Front",
  7207. image: {
  7208. source: "./media/characters/selka/front.svg",
  7209. extra: 947 / 887
  7210. }
  7211. }
  7212. },
  7213. [
  7214. {
  7215. name: "Normal",
  7216. height: math.unit(5, "cm"),
  7217. default: true
  7218. },
  7219. ]
  7220. ))
  7221. characterMakers.push(() => makeCharacter(
  7222. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7223. {
  7224. front: {
  7225. height: math.unit(8 + 3 / 12, "feet"),
  7226. weight: math.unit(424, "lbs"),
  7227. name: "Front",
  7228. image: {
  7229. source: "./media/characters/verin/front.svg",
  7230. extra: 1845 / 1550
  7231. }
  7232. },
  7233. frontArmored: {
  7234. height: math.unit(8 + 3 / 12, "feet"),
  7235. weight: math.unit(424, "lbs"),
  7236. name: "Front (Armored)",
  7237. image: {
  7238. source: "./media/characters/verin/front-armor.svg",
  7239. extra: 1845 / 1550,
  7240. bottom: 0.01
  7241. }
  7242. },
  7243. back: {
  7244. height: math.unit(8 + 3 / 12, "feet"),
  7245. weight: math.unit(424, "lbs"),
  7246. name: "Back",
  7247. image: {
  7248. source: "./media/characters/verin/back.svg",
  7249. bottom: 0.1,
  7250. extra: 1
  7251. }
  7252. },
  7253. foot: {
  7254. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7255. name: "Foot",
  7256. image: {
  7257. source: "./media/characters/verin/foot.svg"
  7258. }
  7259. },
  7260. },
  7261. [
  7262. {
  7263. name: "Normal",
  7264. height: math.unit(8 + 3 / 12, "feet")
  7265. },
  7266. {
  7267. name: "Minimacro",
  7268. height: math.unit(21, "feet"),
  7269. default: true
  7270. },
  7271. {
  7272. name: "Macro",
  7273. height: math.unit(626, "feet")
  7274. },
  7275. ]
  7276. ))
  7277. characterMakers.push(() => makeCharacter(
  7278. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7279. {
  7280. front: {
  7281. height: math.unit(2.718, "meters"),
  7282. weight: math.unit(150, "lbs"),
  7283. name: "Front",
  7284. image: {
  7285. source: "./media/characters/sovrim-terraquian/front.svg"
  7286. }
  7287. },
  7288. back: {
  7289. height: math.unit(2.718, "meters"),
  7290. weight: math.unit(150, "lbs"),
  7291. name: "Back",
  7292. image: {
  7293. source: "./media/characters/sovrim-terraquian/back.svg"
  7294. }
  7295. }
  7296. },
  7297. [
  7298. {
  7299. name: "Micro",
  7300. height: math.unit(2, "inches")
  7301. },
  7302. {
  7303. name: "Small",
  7304. height: math.unit(1, "meter")
  7305. },
  7306. {
  7307. name: "Normal",
  7308. height: math.unit(Math.E, "meters"),
  7309. default: true
  7310. },
  7311. {
  7312. name: "Macro",
  7313. height: math.unit(20, "meters")
  7314. },
  7315. {
  7316. name: "Macro+",
  7317. height: math.unit(400, "meters")
  7318. },
  7319. ]
  7320. ))
  7321. characterMakers.push(() => makeCharacter(
  7322. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7323. {
  7324. front: {
  7325. height: math.unit(7, "feet"),
  7326. weight: math.unit(489, "lbs"),
  7327. name: "Front",
  7328. image: {
  7329. source: "./media/characters/reece-silvermane/front.svg",
  7330. bottom: 0.02,
  7331. extra: 1
  7332. }
  7333. },
  7334. },
  7335. [
  7336. {
  7337. name: "Macro",
  7338. height: math.unit(1.5, "miles"),
  7339. default: true
  7340. },
  7341. ]
  7342. ))
  7343. characterMakers.push(() => makeCharacter(
  7344. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7345. {
  7346. front: {
  7347. height: math.unit(6, "feet"),
  7348. weight: math.unit(78, "kg"),
  7349. name: "Front",
  7350. image: {
  7351. source: "./media/characters/kane/front.svg",
  7352. extra: 978 / 899
  7353. }
  7354. },
  7355. },
  7356. [
  7357. {
  7358. name: "Normal",
  7359. height: math.unit(2.1, "m"),
  7360. },
  7361. {
  7362. name: "Macro",
  7363. height: math.unit(1, "km"),
  7364. default: true
  7365. },
  7366. ]
  7367. ))
  7368. characterMakers.push(() => makeCharacter(
  7369. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7370. {
  7371. front: {
  7372. height: math.unit(6, "feet"),
  7373. weight: math.unit(200, "kg"),
  7374. name: "Front",
  7375. image: {
  7376. source: "./media/characters/tegon/front.svg",
  7377. bottom: 0.01,
  7378. extra: 1
  7379. }
  7380. },
  7381. },
  7382. [
  7383. {
  7384. name: "Micro",
  7385. height: math.unit(1, "inch")
  7386. },
  7387. {
  7388. name: "Normal",
  7389. height: math.unit(6 + 3 / 12, "feet"),
  7390. default: true
  7391. },
  7392. {
  7393. name: "Macro",
  7394. height: math.unit(300, "feet")
  7395. },
  7396. {
  7397. name: "Megamacro",
  7398. height: math.unit(69, "miles")
  7399. },
  7400. ]
  7401. ))
  7402. characterMakers.push(() => makeCharacter(
  7403. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7404. {
  7405. side: {
  7406. height: math.unit(6, "feet"),
  7407. weight: math.unit(2304, "lbs"),
  7408. name: "Side",
  7409. image: {
  7410. source: "./media/characters/arcturax/side.svg",
  7411. extra: 790 / 376,
  7412. bottom: 0.01
  7413. }
  7414. },
  7415. },
  7416. [
  7417. {
  7418. name: "Micro",
  7419. height: math.unit(2, "inch")
  7420. },
  7421. {
  7422. name: "Normal",
  7423. height: math.unit(6, "feet")
  7424. },
  7425. {
  7426. name: "Macro",
  7427. height: math.unit(39, "feet"),
  7428. default: true
  7429. },
  7430. {
  7431. name: "Megamacro",
  7432. height: math.unit(7, "miles")
  7433. },
  7434. ]
  7435. ))
  7436. characterMakers.push(() => makeCharacter(
  7437. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7438. {
  7439. front: {
  7440. height: math.unit(6, "feet"),
  7441. weight: math.unit(50, "lbs"),
  7442. name: "Front",
  7443. image: {
  7444. source: "./media/characters/sentri/front.svg",
  7445. extra: 1750 / 1570,
  7446. bottom: 0.025
  7447. }
  7448. },
  7449. frontAlt: {
  7450. height: math.unit(6, "feet"),
  7451. weight: math.unit(50, "lbs"),
  7452. name: "Front (Alt)",
  7453. image: {
  7454. source: "./media/characters/sentri/front-alt.svg",
  7455. extra: 1750 / 1570,
  7456. bottom: 0.025
  7457. }
  7458. },
  7459. },
  7460. [
  7461. {
  7462. name: "Normal",
  7463. height: math.unit(15, "feet"),
  7464. default: true
  7465. },
  7466. {
  7467. name: "Macro",
  7468. height: math.unit(2500, "feet")
  7469. }
  7470. ]
  7471. ))
  7472. characterMakers.push(() => makeCharacter(
  7473. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7474. {
  7475. front: {
  7476. height: math.unit(5 + 8 / 12, "feet"),
  7477. weight: math.unit(130, "lbs"),
  7478. name: "Front",
  7479. image: {
  7480. source: "./media/characters/corvin/front.svg",
  7481. extra: 1803 / 1629
  7482. }
  7483. },
  7484. frontShirt: {
  7485. height: math.unit(5 + 8 / 12, "feet"),
  7486. weight: math.unit(130, "lbs"),
  7487. name: "Front (Shirt)",
  7488. image: {
  7489. source: "./media/characters/corvin/front-shirt.svg",
  7490. extra: 1803 / 1629
  7491. }
  7492. },
  7493. frontPoncho: {
  7494. height: math.unit(5 + 8 / 12, "feet"),
  7495. weight: math.unit(130, "lbs"),
  7496. name: "Front (Poncho)",
  7497. image: {
  7498. source: "./media/characters/corvin/front-poncho.svg",
  7499. extra: 1803 / 1629
  7500. }
  7501. },
  7502. side: {
  7503. height: math.unit(5 + 8 / 12, "feet"),
  7504. weight: math.unit(130, "lbs"),
  7505. name: "Side",
  7506. image: {
  7507. source: "./media/characters/corvin/side.svg",
  7508. extra: 1012 / 945
  7509. }
  7510. },
  7511. back: {
  7512. height: math.unit(5 + 8 / 12, "feet"),
  7513. weight: math.unit(130, "lbs"),
  7514. name: "Back",
  7515. image: {
  7516. source: "./media/characters/corvin/back.svg",
  7517. extra: 1803 / 1629
  7518. }
  7519. },
  7520. },
  7521. [
  7522. {
  7523. name: "Micro",
  7524. height: math.unit(3, "inches")
  7525. },
  7526. {
  7527. name: "Normal",
  7528. height: math.unit(5 + 8 / 12, "feet")
  7529. },
  7530. {
  7531. name: "Macro",
  7532. height: math.unit(300, "feet"),
  7533. default: true
  7534. },
  7535. {
  7536. name: "Megamacro",
  7537. height: math.unit(500, "miles")
  7538. }
  7539. ]
  7540. ))
  7541. characterMakers.push(() => makeCharacter(
  7542. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7543. {
  7544. front: {
  7545. height: math.unit(6, "feet"),
  7546. weight: math.unit(135, "lbs"),
  7547. name: "Front",
  7548. image: {
  7549. source: "./media/characters/q/front.svg",
  7550. extra: 854 / 752,
  7551. bottom: 0.005
  7552. }
  7553. },
  7554. back: {
  7555. height: math.unit(6, "feet"),
  7556. weight: math.unit(130, "lbs"),
  7557. name: "Back",
  7558. image: {
  7559. source: "./media/characters/q/back.svg",
  7560. extra: 854 / 752
  7561. }
  7562. },
  7563. },
  7564. [
  7565. {
  7566. name: "Macro",
  7567. height: math.unit(90, "feet"),
  7568. default: true
  7569. },
  7570. {
  7571. name: "Extra Macro",
  7572. height: math.unit(300, "feet"),
  7573. },
  7574. {
  7575. name: "BIG WALF",
  7576. height: math.unit(750, "feet"),
  7577. },
  7578. ]
  7579. ))
  7580. characterMakers.push(() => makeCharacter(
  7581. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7582. {
  7583. front: {
  7584. height: math.unit(6, "feet"),
  7585. weight: math.unit(150, "lbs"),
  7586. name: "Front",
  7587. image: {
  7588. source: "./media/characters/carley/front.svg",
  7589. extra: 3927 / 3540,
  7590. bottom: 29.2 / 735
  7591. }
  7592. }
  7593. },
  7594. [
  7595. {
  7596. name: "Normal",
  7597. height: math.unit(6 + 3 / 12, "feet")
  7598. },
  7599. {
  7600. name: "Macro",
  7601. height: math.unit(185, "feet"),
  7602. default: true
  7603. },
  7604. {
  7605. name: "Megamacro",
  7606. height: math.unit(8, "miles"),
  7607. },
  7608. ]
  7609. ))
  7610. characterMakers.push(() => makeCharacter(
  7611. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7612. {
  7613. front: {
  7614. height: math.unit(3, "feet"),
  7615. weight: math.unit(28, "lbs"),
  7616. name: "Front",
  7617. image: {
  7618. source: "./media/characters/citrine/front.svg"
  7619. }
  7620. }
  7621. },
  7622. [
  7623. {
  7624. name: "Normal",
  7625. height: math.unit(3, "feet"),
  7626. default: true
  7627. }
  7628. ]
  7629. ))
  7630. characterMakers.push(() => makeCharacter(
  7631. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7632. {
  7633. front: {
  7634. height: math.unit(14, "feet"),
  7635. weight: math.unit(1450, "kg"),
  7636. capacity: math.unit(15, "people"),
  7637. name: "Front",
  7638. image: {
  7639. source: "./media/characters/aura-starwind/front.svg",
  7640. extra: 1455 / 1335
  7641. }
  7642. },
  7643. side: {
  7644. height: math.unit(14, "feet"),
  7645. weight: math.unit(1450, "kg"),
  7646. capacity: math.unit(15, "people"),
  7647. name: "Side",
  7648. image: {
  7649. source: "./media/characters/aura-starwind/side.svg",
  7650. extra: 1654 / 1497
  7651. }
  7652. },
  7653. taur: {
  7654. height: math.unit(18, "feet"),
  7655. weight: math.unit(5500, "kg"),
  7656. capacity: math.unit(50, "people"),
  7657. name: "Taur",
  7658. image: {
  7659. source: "./media/characters/aura-starwind/taur.svg",
  7660. extra: 1760 / 1650
  7661. }
  7662. },
  7663. feral: {
  7664. height: math.unit(46, "feet"),
  7665. weight: math.unit(25000, "kg"),
  7666. capacity: math.unit(120, "people"),
  7667. name: "Feral",
  7668. image: {
  7669. source: "./media/characters/aura-starwind/feral.svg"
  7670. }
  7671. },
  7672. },
  7673. [
  7674. {
  7675. name: "Normal",
  7676. height: math.unit(14, "feet"),
  7677. default: true
  7678. },
  7679. {
  7680. name: "Macro",
  7681. height: math.unit(50, "meters")
  7682. },
  7683. {
  7684. name: "Megamacro",
  7685. height: math.unit(5000, "meters")
  7686. },
  7687. {
  7688. name: "Gigamacro",
  7689. height: math.unit(100000, "kilometers")
  7690. },
  7691. ]
  7692. ))
  7693. characterMakers.push(() => makeCharacter(
  7694. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7695. {
  7696. front: {
  7697. height: math.unit(2 + 7 / 12, "feet"),
  7698. weight: math.unit(32, "lbs"),
  7699. name: "Front",
  7700. image: {
  7701. source: "./media/characters/rivet/front.svg",
  7702. extra: 1716 / 1658,
  7703. bottom: 0.03
  7704. }
  7705. },
  7706. foot: {
  7707. height: math.unit(0.551, "feet"),
  7708. name: "Rivet's Foot",
  7709. image: {
  7710. source: "./media/characters/rivet/foot.svg"
  7711. },
  7712. rename: true
  7713. }
  7714. },
  7715. [
  7716. {
  7717. name: "Micro",
  7718. height: math.unit(1.5, "inches"),
  7719. },
  7720. {
  7721. name: "Normal",
  7722. height: math.unit(2 + 7 / 12, "feet"),
  7723. default: true
  7724. },
  7725. {
  7726. name: "Macro",
  7727. height: math.unit(85, "feet")
  7728. },
  7729. {
  7730. name: "Megamacro",
  7731. height: math.unit(2.2, "km")
  7732. }
  7733. ]
  7734. ))
  7735. characterMakers.push(() => makeCharacter(
  7736. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7737. {
  7738. front: {
  7739. height: math.unit(5 + 9 / 12, "feet"),
  7740. weight: math.unit(150, "lbs"),
  7741. name: "Front",
  7742. image: {
  7743. source: "./media/characters/coffee/front.svg",
  7744. extra: 3666 / 3032,
  7745. bottom: 0.04
  7746. }
  7747. },
  7748. foot: {
  7749. height: math.unit(1.29, "feet"),
  7750. name: "Foot",
  7751. image: {
  7752. source: "./media/characters/coffee/foot.svg"
  7753. }
  7754. },
  7755. },
  7756. [
  7757. {
  7758. name: "Micro",
  7759. height: math.unit(2, "inches"),
  7760. },
  7761. {
  7762. name: "Normal",
  7763. height: math.unit(5 + 9 / 12, "feet"),
  7764. default: true
  7765. },
  7766. {
  7767. name: "Macro",
  7768. height: math.unit(800, "feet")
  7769. },
  7770. {
  7771. name: "Megamacro",
  7772. height: math.unit(25, "miles")
  7773. }
  7774. ]
  7775. ))
  7776. characterMakers.push(() => makeCharacter(
  7777. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7778. {
  7779. front: {
  7780. height: math.unit(6, "feet"),
  7781. weight: math.unit(200, "lbs"),
  7782. name: "Front",
  7783. image: {
  7784. source: "./media/characters/chari-gal/front.svg",
  7785. extra: 1568 / 1385,
  7786. bottom: 0.047
  7787. }
  7788. },
  7789. gigantamax: {
  7790. height: math.unit(6 * 16, "feet"),
  7791. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7792. name: "Gigantamax",
  7793. image: {
  7794. source: "./media/characters/chari-gal/gigantamax.svg",
  7795. extra: 1124 / 888,
  7796. bottom: 0.03
  7797. }
  7798. },
  7799. },
  7800. [
  7801. {
  7802. name: "Normal",
  7803. height: math.unit(5 + 7 / 12, "feet")
  7804. },
  7805. {
  7806. name: "Macro",
  7807. height: math.unit(200, "feet"),
  7808. default: true
  7809. }
  7810. ]
  7811. ))
  7812. characterMakers.push(() => makeCharacter(
  7813. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7814. {
  7815. front: {
  7816. height: math.unit(6, "feet"),
  7817. weight: math.unit(150, "lbs"),
  7818. name: "Front",
  7819. image: {
  7820. source: "./media/characters/nova/front.svg",
  7821. extra: 5000 / 4722,
  7822. bottom: 0.02
  7823. }
  7824. }
  7825. },
  7826. [
  7827. {
  7828. name: "Micro-",
  7829. height: math.unit(0.8, "inches")
  7830. },
  7831. {
  7832. name: "Micro",
  7833. height: math.unit(2, "inches"),
  7834. default: true
  7835. },
  7836. ]
  7837. ))
  7838. characterMakers.push(() => makeCharacter(
  7839. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7840. {
  7841. front: {
  7842. height: math.unit(3 + 1 / 12, "feet"),
  7843. weight: math.unit(21.7, "lbs"),
  7844. name: "Front",
  7845. image: {
  7846. source: "./media/characters/argent/front.svg",
  7847. extra: 1471 / 1331,
  7848. bottom: 100.8 / 1575.5
  7849. }
  7850. }
  7851. },
  7852. [
  7853. {
  7854. name: "Micro",
  7855. height: math.unit(2, "inches")
  7856. },
  7857. {
  7858. name: "Normal",
  7859. height: math.unit(3 + 1 / 12, "feet"),
  7860. default: true
  7861. },
  7862. {
  7863. name: "Macro",
  7864. height: math.unit(120, "feet")
  7865. },
  7866. ]
  7867. ))
  7868. characterMakers.push(() => makeCharacter(
  7869. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7870. {
  7871. lamp: {
  7872. height: math.unit(7 * 1559 / 989, "feet"),
  7873. name: "Magic Lamp",
  7874. image: {
  7875. source: "./media/characters/mira-al-cul/lamp.svg",
  7876. extra: 1617 / 1559
  7877. }
  7878. },
  7879. front: {
  7880. height: math.unit(7, "feet"),
  7881. name: "Front",
  7882. image: {
  7883. source: "./media/characters/mira-al-cul/front.svg",
  7884. extra: 1044 / 990
  7885. }
  7886. },
  7887. },
  7888. [
  7889. {
  7890. name: "Heavily Restricted",
  7891. height: math.unit(7 * 1559 / 989, "feet")
  7892. },
  7893. {
  7894. name: "Freshly Freed",
  7895. height: math.unit(50 * 1559 / 989, "feet")
  7896. },
  7897. {
  7898. name: "World Encompassing",
  7899. height: math.unit(10000 * 1559 / 989, "miles")
  7900. },
  7901. {
  7902. name: "Galactic",
  7903. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7904. },
  7905. {
  7906. name: "Palmed Universe",
  7907. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7908. default: true
  7909. },
  7910. {
  7911. name: "Multiversal Matriarch",
  7912. height: math.unit(8.87e10, "yottameters")
  7913. },
  7914. {
  7915. name: "Void Mother",
  7916. height: math.unit(3.14e110, "yottaparsecs")
  7917. },
  7918. {
  7919. name: "Toying with Transcendence",
  7920. height: math.unit(1e307, "meters")
  7921. },
  7922. ]
  7923. ))
  7924. characterMakers.push(() => makeCharacter(
  7925. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7926. {
  7927. front: {
  7928. height: math.unit(17 + 1 / 12, "feet"),
  7929. weight: math.unit(476.2 * 5, "lbs"),
  7930. name: "Front",
  7931. image: {
  7932. source: "./media/characters/kuro-shi-uchū/front.svg",
  7933. extra: 2329 / 1835,
  7934. bottom: 0.02
  7935. }
  7936. },
  7937. },
  7938. [
  7939. {
  7940. name: "Micro",
  7941. height: math.unit(2, "inches")
  7942. },
  7943. {
  7944. name: "Normal",
  7945. height: math.unit(12, "meters")
  7946. },
  7947. {
  7948. name: "Planetary",
  7949. height: math.unit(0.00929, "AU"),
  7950. default: true
  7951. },
  7952. {
  7953. name: "Universal",
  7954. height: math.unit(20, "gigaparsecs")
  7955. },
  7956. ]
  7957. ))
  7958. characterMakers.push(() => makeCharacter(
  7959. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7960. {
  7961. front: {
  7962. height: math.unit(5 + 2 / 12, "feet"),
  7963. weight: math.unit(120, "lbs"),
  7964. name: "Front",
  7965. image: {
  7966. source: "./media/characters/katherine/front.svg",
  7967. extra: 2075 / 1969
  7968. }
  7969. },
  7970. dress: {
  7971. height: math.unit(5 + 2 / 12, "feet"),
  7972. weight: math.unit(120, "lbs"),
  7973. name: "Dress",
  7974. image: {
  7975. source: "./media/characters/katherine/dress.svg",
  7976. extra: 2258 / 2064
  7977. }
  7978. },
  7979. },
  7980. [
  7981. {
  7982. name: "Micro",
  7983. height: math.unit(1, "inches"),
  7984. default: true
  7985. },
  7986. {
  7987. name: "Normal",
  7988. height: math.unit(5 + 2 / 12, "feet")
  7989. },
  7990. {
  7991. name: "Macro",
  7992. height: math.unit(100, "meters")
  7993. },
  7994. {
  7995. name: "Megamacro",
  7996. height: math.unit(80, "miles")
  7997. },
  7998. ]
  7999. ))
  8000. characterMakers.push(() => makeCharacter(
  8001. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8002. {
  8003. front: {
  8004. height: math.unit(7 + 8 / 12, "feet"),
  8005. weight: math.unit(250, "lbs"),
  8006. name: "Front",
  8007. image: {
  8008. source: "./media/characters/yevis/front.svg",
  8009. extra: 1938 / 1755
  8010. }
  8011. }
  8012. },
  8013. [
  8014. {
  8015. name: "Mortal",
  8016. height: math.unit(7 + 8 / 12, "feet")
  8017. },
  8018. {
  8019. name: "Battle",
  8020. height: math.unit(25 + 11 / 12, "feet")
  8021. },
  8022. {
  8023. name: "Wrath",
  8024. height: math.unit(1654 + 11 / 12, "feet")
  8025. },
  8026. {
  8027. name: "Planet Destroyer",
  8028. height: math.unit(12000, "miles")
  8029. },
  8030. {
  8031. name: "Galaxy Conqueror",
  8032. height: math.unit(1.45, "zettameters"),
  8033. default: true
  8034. },
  8035. {
  8036. name: "Universal War",
  8037. height: math.unit(184, "gigaparsecs")
  8038. },
  8039. {
  8040. name: "Eternity War",
  8041. height: math.unit(1.98e55, "yottaparsecs")
  8042. },
  8043. ]
  8044. ))
  8045. characterMakers.push(() => makeCharacter(
  8046. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8047. {
  8048. front: {
  8049. height: math.unit(5 + 8 / 12, "feet"),
  8050. weight: math.unit(63, "kg"),
  8051. name: "Front",
  8052. image: {
  8053. source: "./media/characters/xavier/front.svg",
  8054. extra: 944 / 883
  8055. }
  8056. },
  8057. frontStretch: {
  8058. height: math.unit(5 + 8 / 12, "feet"),
  8059. weight: math.unit(63, "kg"),
  8060. name: "Stretching",
  8061. image: {
  8062. source: "./media/characters/xavier/front-stretch.svg",
  8063. extra: 962 / 820
  8064. }
  8065. },
  8066. },
  8067. [
  8068. {
  8069. name: "Normal",
  8070. height: math.unit(5 + 8 / 12, "feet")
  8071. },
  8072. {
  8073. name: "Macro",
  8074. height: math.unit(100, "meters"),
  8075. default: true
  8076. },
  8077. {
  8078. name: "McLargeHuge",
  8079. height: math.unit(10, "miles")
  8080. },
  8081. ]
  8082. ))
  8083. characterMakers.push(() => makeCharacter(
  8084. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8085. {
  8086. front: {
  8087. height: math.unit(5 + 5 / 12, "feet"),
  8088. weight: math.unit(150, "lb"),
  8089. name: "Front",
  8090. image: {
  8091. source: "./media/characters/joshii/front.svg",
  8092. extra: 765 / 653,
  8093. bottom: 51 / 816
  8094. }
  8095. },
  8096. foot: {
  8097. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8098. name: "Foot",
  8099. image: {
  8100. source: "./media/characters/joshii/foot.svg"
  8101. }
  8102. },
  8103. },
  8104. [
  8105. {
  8106. name: "Micro",
  8107. height: math.unit(2, "inches"),
  8108. default: true
  8109. },
  8110. {
  8111. name: "Normal",
  8112. height: math.unit(5 + 5 / 12, "feet")
  8113. },
  8114. {
  8115. name: "Macro",
  8116. height: math.unit(785, "feet")
  8117. },
  8118. {
  8119. name: "Megamacro",
  8120. height: math.unit(24.5, "miles")
  8121. },
  8122. ]
  8123. ))
  8124. characterMakers.push(() => makeCharacter(
  8125. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8126. {
  8127. front: {
  8128. height: math.unit(6, "feet"),
  8129. weight: math.unit(150, "lb"),
  8130. name: "Front",
  8131. image: {
  8132. source: "./media/characters/goddess-elizabeth/front.svg",
  8133. extra: 1800 / 1525,
  8134. bottom: 0.005
  8135. }
  8136. },
  8137. foot: {
  8138. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8139. name: "Foot",
  8140. image: {
  8141. source: "./media/characters/goddess-elizabeth/foot.svg"
  8142. }
  8143. },
  8144. mouth: {
  8145. height: math.unit(6, "feet"),
  8146. name: "Mouth",
  8147. image: {
  8148. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8149. }
  8150. },
  8151. },
  8152. [
  8153. {
  8154. name: "Micro",
  8155. height: math.unit(12, "feet")
  8156. },
  8157. {
  8158. name: "Normal",
  8159. height: math.unit(80, "miles"),
  8160. default: true
  8161. },
  8162. {
  8163. name: "Macro",
  8164. height: math.unit(15000, "parsecs")
  8165. },
  8166. ]
  8167. ))
  8168. characterMakers.push(() => makeCharacter(
  8169. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8170. {
  8171. front: {
  8172. height: math.unit(5 + 9 / 12, "feet"),
  8173. weight: math.unit(144, "lb"),
  8174. name: "Front",
  8175. image: {
  8176. source: "./media/characters/kara/front.svg"
  8177. }
  8178. },
  8179. feet: {
  8180. height: math.unit(6 / 6.765, "feet"),
  8181. name: "Kara's Feet",
  8182. rename: true,
  8183. image: {
  8184. source: "./media/characters/kara/feet.svg"
  8185. }
  8186. },
  8187. },
  8188. [
  8189. {
  8190. name: "Normal",
  8191. height: math.unit(5 + 9 / 12, "feet")
  8192. },
  8193. {
  8194. name: "Macro",
  8195. height: math.unit(174, "feet"),
  8196. default: true
  8197. },
  8198. ]
  8199. ))
  8200. characterMakers.push(() => makeCharacter(
  8201. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8202. {
  8203. front: {
  8204. height: math.unit(18, "feet"),
  8205. weight: math.unit(4050, "lb"),
  8206. name: "Front",
  8207. image: {
  8208. source: "./media/characters/tyrone/front.svg",
  8209. extra: 2405 / 2270,
  8210. bottom: 182 / 2587
  8211. }
  8212. },
  8213. },
  8214. [
  8215. {
  8216. name: "Normal",
  8217. height: math.unit(18, "feet"),
  8218. default: true
  8219. },
  8220. {
  8221. name: "Macro",
  8222. height: math.unit(300, "feet")
  8223. },
  8224. {
  8225. name: "Megamacro",
  8226. height: math.unit(15, "km")
  8227. },
  8228. {
  8229. name: "Gigamacro",
  8230. height: math.unit(500, "km")
  8231. },
  8232. {
  8233. name: "Teramacro",
  8234. height: math.unit(0.5, "gigameters")
  8235. },
  8236. {
  8237. name: "Omnimacro",
  8238. height: math.unit(1e252, "yottauniverse")
  8239. },
  8240. ]
  8241. ))
  8242. characterMakers.push(() => makeCharacter(
  8243. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8244. {
  8245. front: {
  8246. height: math.unit(7 + 8 / 12, "feet"),
  8247. weight: math.unit(120, "lb"),
  8248. name: "Front",
  8249. image: {
  8250. source: "./media/characters/danny/front.svg",
  8251. extra: 1490 / 1350
  8252. }
  8253. },
  8254. back: {
  8255. height: math.unit(7 + 8 / 12, "feet"),
  8256. weight: math.unit(120, "lb"),
  8257. name: "Back",
  8258. image: {
  8259. source: "./media/characters/danny/back.svg",
  8260. extra: 1490 / 1350
  8261. }
  8262. },
  8263. },
  8264. [
  8265. {
  8266. name: "Normal",
  8267. height: math.unit(7 + 8 / 12, "feet"),
  8268. default: true
  8269. },
  8270. ]
  8271. ))
  8272. characterMakers.push(() => makeCharacter(
  8273. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8274. {
  8275. front: {
  8276. height: math.unit(3.5, "inches"),
  8277. weight: math.unit(19, "grams"),
  8278. name: "Front",
  8279. image: {
  8280. source: "./media/characters/mallow/front.svg",
  8281. extra: 471 / 431
  8282. }
  8283. },
  8284. back: {
  8285. height: math.unit(3.5, "inches"),
  8286. weight: math.unit(19, "grams"),
  8287. name: "Back",
  8288. image: {
  8289. source: "./media/characters/mallow/back.svg",
  8290. extra: 471 / 431
  8291. }
  8292. },
  8293. },
  8294. [
  8295. {
  8296. name: "Normal",
  8297. height: math.unit(3.5, "inches"),
  8298. default: true
  8299. },
  8300. ]
  8301. ))
  8302. characterMakers.push(() => makeCharacter(
  8303. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8304. {
  8305. front: {
  8306. height: math.unit(9, "feet"),
  8307. weight: math.unit(230, "kg"),
  8308. name: "Front",
  8309. image: {
  8310. source: "./media/characters/starry-aqua/front.svg"
  8311. }
  8312. },
  8313. back: {
  8314. height: math.unit(9, "feet"),
  8315. weight: math.unit(230, "kg"),
  8316. name: "Back",
  8317. image: {
  8318. source: "./media/characters/starry-aqua/back.svg"
  8319. }
  8320. },
  8321. hand: {
  8322. height: math.unit(9 * 0.1168, "feet"),
  8323. name: "Hand",
  8324. image: {
  8325. source: "./media/characters/starry-aqua/hand.svg"
  8326. }
  8327. },
  8328. foot: {
  8329. height: math.unit(9 * 0.18, "feet"),
  8330. name: "Foot",
  8331. image: {
  8332. source: "./media/characters/starry-aqua/foot.svg"
  8333. }
  8334. }
  8335. },
  8336. [
  8337. {
  8338. name: "Micro",
  8339. height: math.unit(3, "inches")
  8340. },
  8341. {
  8342. name: "Normal",
  8343. height: math.unit(9, "feet")
  8344. },
  8345. {
  8346. name: "Macro",
  8347. height: math.unit(300, "feet"),
  8348. default: true
  8349. },
  8350. {
  8351. name: "Megamacro",
  8352. height: math.unit(3200, "feet")
  8353. }
  8354. ]
  8355. ))
  8356. characterMakers.push(() => makeCharacter(
  8357. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8358. {
  8359. front: {
  8360. height: math.unit(6, "feet"),
  8361. weight: math.unit(230, "lb"),
  8362. name: "Front",
  8363. image: {
  8364. source: "./media/characters/luka/front.svg",
  8365. extra: 1,
  8366. bottom: 0.025
  8367. }
  8368. },
  8369. },
  8370. [
  8371. {
  8372. name: "Normal",
  8373. height: math.unit(12 + 8 / 12, "feet"),
  8374. default: true
  8375. },
  8376. {
  8377. name: "Minimacro",
  8378. height: math.unit(20, "feet")
  8379. },
  8380. {
  8381. name: "Macro",
  8382. height: math.unit(250, "feet")
  8383. },
  8384. {
  8385. name: "Megamacro",
  8386. height: math.unit(5, "miles")
  8387. },
  8388. {
  8389. name: "Gigamacro",
  8390. height: math.unit(8000, "miles")
  8391. },
  8392. ]
  8393. ))
  8394. characterMakers.push(() => makeCharacter(
  8395. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8396. {
  8397. front: {
  8398. height: math.unit(6, "feet"),
  8399. weight: math.unit(150, "lb"),
  8400. name: "Front",
  8401. image: {
  8402. source: "./media/characters/natalie-nightring/front.svg",
  8403. extra: 1,
  8404. bottom: 0.06
  8405. }
  8406. },
  8407. },
  8408. [
  8409. {
  8410. name: "Uh Oh",
  8411. height: math.unit(0.1, "mm")
  8412. },
  8413. {
  8414. name: "Small",
  8415. height: math.unit(3, "inches")
  8416. },
  8417. {
  8418. name: "Human Scale",
  8419. height: math.unit(6, "feet")
  8420. },
  8421. {
  8422. name: "Librarian",
  8423. height: math.unit(50, "feet"),
  8424. default: true
  8425. },
  8426. {
  8427. name: "Immense",
  8428. height: math.unit(200, "miles")
  8429. },
  8430. ]
  8431. ))
  8432. characterMakers.push(() => makeCharacter(
  8433. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8434. {
  8435. front: {
  8436. height: math.unit(6, "feet"),
  8437. weight: math.unit(180, "lbs"),
  8438. name: "Front",
  8439. image: {
  8440. source: "./media/characters/danni-rosie/front.svg",
  8441. extra: 1260 / 1128,
  8442. bottom: 0.022
  8443. }
  8444. },
  8445. },
  8446. [
  8447. {
  8448. name: "Micro",
  8449. height: math.unit(2, "inches"),
  8450. default: true
  8451. },
  8452. ]
  8453. ))
  8454. characterMakers.push(() => makeCharacter(
  8455. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8456. {
  8457. front: {
  8458. height: math.unit(5 + 9 / 12, "feet"),
  8459. weight: math.unit(220, "lb"),
  8460. name: "Front",
  8461. image: {
  8462. source: "./media/characters/samantha-kruse/front.svg",
  8463. extra: (985 / 935),
  8464. bottom: 0.03
  8465. }
  8466. },
  8467. frontUndressed: {
  8468. height: math.unit(5 + 9 / 12, "feet"),
  8469. weight: math.unit(220, "lb"),
  8470. name: "Front (Undressed)",
  8471. image: {
  8472. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8473. extra: (973 / 923),
  8474. bottom: 0.025
  8475. }
  8476. },
  8477. fat: {
  8478. height: math.unit(5 + 9 / 12, "feet"),
  8479. weight: math.unit(900, "lb"),
  8480. name: "Front (Fat)",
  8481. image: {
  8482. source: "./media/characters/samantha-kruse/fat.svg",
  8483. extra: 2688 / 2561
  8484. }
  8485. },
  8486. },
  8487. [
  8488. {
  8489. name: "Normal",
  8490. height: math.unit(5 + 9 / 12, "feet"),
  8491. default: true
  8492. }
  8493. ]
  8494. ))
  8495. characterMakers.push(() => makeCharacter(
  8496. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8497. {
  8498. back: {
  8499. height: math.unit(5 + 4 / 12, "feet"),
  8500. weight: math.unit(4963, "lb"),
  8501. name: "Back",
  8502. image: {
  8503. source: "./media/characters/amelia-rosie/back.svg",
  8504. extra: 1113 / 963,
  8505. bottom: 0.01
  8506. }
  8507. },
  8508. },
  8509. [
  8510. {
  8511. name: "Level 0",
  8512. height: math.unit(5 + 4 / 12, "feet")
  8513. },
  8514. {
  8515. name: "Level 1",
  8516. height: math.unit(164597, "feet"),
  8517. default: true
  8518. },
  8519. {
  8520. name: "Level 2",
  8521. height: math.unit(956243, "miles")
  8522. },
  8523. {
  8524. name: "Level 3",
  8525. height: math.unit(29421709423, "miles")
  8526. },
  8527. {
  8528. name: "Level 4",
  8529. height: math.unit(154, "lightyears")
  8530. },
  8531. {
  8532. name: "Level 5",
  8533. height: math.unit(4738272, "lightyears")
  8534. },
  8535. {
  8536. name: "Level 6",
  8537. height: math.unit(145787152896, "lightyears")
  8538. },
  8539. ]
  8540. ))
  8541. characterMakers.push(() => makeCharacter(
  8542. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8543. {
  8544. front: {
  8545. height: math.unit(5 + 11 / 12, "feet"),
  8546. weight: math.unit(65, "kg"),
  8547. name: "Front",
  8548. image: {
  8549. source: "./media/characters/rook-kitara/front.svg",
  8550. extra: 1347 / 1274,
  8551. bottom: 0.005
  8552. }
  8553. },
  8554. },
  8555. [
  8556. {
  8557. name: "Totally Unfair",
  8558. height: math.unit(1.8, "mm")
  8559. },
  8560. {
  8561. name: "Lap Rookie",
  8562. height: math.unit(1.4, "feet")
  8563. },
  8564. {
  8565. name: "Normal",
  8566. height: math.unit(5 + 11 / 12, "feet"),
  8567. default: true
  8568. },
  8569. {
  8570. name: "How Did This Happen",
  8571. height: math.unit(80, "miles")
  8572. }
  8573. ]
  8574. ))
  8575. characterMakers.push(() => makeCharacter(
  8576. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8577. {
  8578. front: {
  8579. height: math.unit(7, "feet"),
  8580. weight: math.unit(300, "lb"),
  8581. name: "Front",
  8582. image: {
  8583. source: "./media/characters/pisces/front.svg",
  8584. extra: 2255 / 2115,
  8585. bottom: 0.03
  8586. }
  8587. },
  8588. back: {
  8589. height: math.unit(7, "feet"),
  8590. weight: math.unit(300, "lb"),
  8591. name: "Back",
  8592. image: {
  8593. source: "./media/characters/pisces/back.svg",
  8594. extra: 2146 / 2055,
  8595. bottom: 0.04
  8596. }
  8597. },
  8598. },
  8599. [
  8600. {
  8601. name: "Normal",
  8602. height: math.unit(7, "feet"),
  8603. default: true
  8604. },
  8605. {
  8606. name: "Swimming Pool",
  8607. height: math.unit(12.2, "meters")
  8608. },
  8609. {
  8610. name: "Olympic Swimming Pool",
  8611. height: math.unit(56.3, "meters")
  8612. },
  8613. {
  8614. name: "Lake Superior",
  8615. height: math.unit(93900, "meters")
  8616. },
  8617. {
  8618. name: "Mediterranean Sea",
  8619. height: math.unit(644457, "meters")
  8620. },
  8621. {
  8622. name: "World's Oceans",
  8623. height: math.unit(4567491, "meters")
  8624. },
  8625. ]
  8626. ))
  8627. characterMakers.push(() => makeCharacter(
  8628. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8629. {
  8630. front: {
  8631. height: math.unit(2.3, "meters"),
  8632. weight: math.unit(120, "kg"),
  8633. name: "Front",
  8634. image: {
  8635. source: "./media/characters/zelas/front.svg"
  8636. }
  8637. },
  8638. side: {
  8639. height: math.unit(2.3, "meters"),
  8640. weight: math.unit(120, "kg"),
  8641. name: "Side",
  8642. image: {
  8643. source: "./media/characters/zelas/side.svg"
  8644. }
  8645. },
  8646. back: {
  8647. height: math.unit(2.3, "meters"),
  8648. weight: math.unit(120, "kg"),
  8649. name: "Back",
  8650. image: {
  8651. source: "./media/characters/zelas/back.svg"
  8652. }
  8653. },
  8654. foot: {
  8655. height: math.unit(1.116, "feet"),
  8656. name: "Foot",
  8657. image: {
  8658. source: "./media/characters/zelas/foot.svg"
  8659. }
  8660. },
  8661. },
  8662. [
  8663. {
  8664. name: "Normal",
  8665. height: math.unit(2.3, "meters")
  8666. },
  8667. {
  8668. name: "Macro",
  8669. height: math.unit(30, "meters"),
  8670. default: true
  8671. },
  8672. ]
  8673. ))
  8674. characterMakers.push(() => makeCharacter(
  8675. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8676. {
  8677. front: {
  8678. height: math.unit(1, "inch"),
  8679. weight: math.unit(0.21, "grams"),
  8680. name: "Front",
  8681. image: {
  8682. source: "./media/characters/talbot/front.svg",
  8683. extra: 594 / 544
  8684. }
  8685. },
  8686. },
  8687. [
  8688. {
  8689. name: "Micro",
  8690. height: math.unit(1, "inch"),
  8691. default: true
  8692. },
  8693. ]
  8694. ))
  8695. characterMakers.push(() => makeCharacter(
  8696. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8697. {
  8698. front: {
  8699. height: math.unit(3 + 3 / 12, "feet"),
  8700. weight: math.unit(51.8, "lb"),
  8701. name: "Front",
  8702. image: {
  8703. source: "./media/characters/fliss/front.svg",
  8704. extra: 840 / 640
  8705. }
  8706. },
  8707. },
  8708. [
  8709. {
  8710. name: "Teeny Tiny",
  8711. height: math.unit(1, "mm")
  8712. },
  8713. {
  8714. name: "Small",
  8715. height: math.unit(1, "inch"),
  8716. default: true
  8717. },
  8718. {
  8719. name: "Standard Sylveon",
  8720. height: math.unit(3 + 3 / 12, "feet")
  8721. },
  8722. {
  8723. name: "Large Nuisance",
  8724. height: math.unit(33, "feet")
  8725. },
  8726. {
  8727. name: "City Filler",
  8728. height: math.unit(3000, "feet")
  8729. },
  8730. {
  8731. name: "New Horizon",
  8732. height: math.unit(6000, "miles")
  8733. },
  8734. ]
  8735. ))
  8736. characterMakers.push(() => makeCharacter(
  8737. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8738. {
  8739. front: {
  8740. height: math.unit(5, "cm"),
  8741. weight: math.unit(1.94, "g"),
  8742. name: "Front",
  8743. image: {
  8744. source: "./media/characters/fleta/front.svg",
  8745. extra: 835 / 803
  8746. }
  8747. },
  8748. back: {
  8749. height: math.unit(5, "cm"),
  8750. weight: math.unit(1.94, "g"),
  8751. name: "Back",
  8752. image: {
  8753. source: "./media/characters/fleta/back.svg",
  8754. extra: 835 / 803
  8755. }
  8756. },
  8757. },
  8758. [
  8759. {
  8760. name: "Micro",
  8761. height: math.unit(5, "cm"),
  8762. default: true
  8763. },
  8764. ]
  8765. ))
  8766. characterMakers.push(() => makeCharacter(
  8767. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8768. {
  8769. front: {
  8770. height: math.unit(6, "feet"),
  8771. weight: math.unit(225, "lb"),
  8772. name: "Front",
  8773. image: {
  8774. source: "./media/characters/dominic/front.svg",
  8775. extra: 1770 / 1620,
  8776. bottom: 0.025
  8777. }
  8778. },
  8779. back: {
  8780. height: math.unit(6, "feet"),
  8781. weight: math.unit(225, "lb"),
  8782. name: "Back",
  8783. image: {
  8784. source: "./media/characters/dominic/back.svg",
  8785. extra: 1745 / 1620,
  8786. bottom: 0.065
  8787. }
  8788. },
  8789. },
  8790. [
  8791. {
  8792. name: "Nano",
  8793. height: math.unit(0.1, "mm")
  8794. },
  8795. {
  8796. name: "Micro-",
  8797. height: math.unit(1, "mm")
  8798. },
  8799. {
  8800. name: "Micro",
  8801. height: math.unit(4, "inches")
  8802. },
  8803. {
  8804. name: "Normal",
  8805. height: math.unit(6 + 4 / 12, "feet"),
  8806. default: true
  8807. },
  8808. {
  8809. name: "Macro",
  8810. height: math.unit(115, "feet")
  8811. },
  8812. {
  8813. name: "Macro+",
  8814. height: math.unit(955, "feet")
  8815. },
  8816. {
  8817. name: "Megamacro",
  8818. height: math.unit(8990, "feet")
  8819. },
  8820. {
  8821. name: "Gigmacro",
  8822. height: math.unit(9310, "miles")
  8823. },
  8824. {
  8825. name: "Teramacro",
  8826. height: math.unit(1567005010, "miles")
  8827. },
  8828. {
  8829. name: "Examacro",
  8830. height: math.unit(1425, "parsecs")
  8831. },
  8832. ]
  8833. ))
  8834. characterMakers.push(() => makeCharacter(
  8835. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8836. {
  8837. front: {
  8838. height: math.unit(400, "feet"),
  8839. weight: math.unit(44444444, "lb"),
  8840. name: "Front",
  8841. image: {
  8842. source: "./media/characters/major-colonel/front.svg"
  8843. }
  8844. },
  8845. back: {
  8846. height: math.unit(400, "feet"),
  8847. weight: math.unit(44444444, "lb"),
  8848. name: "Back",
  8849. image: {
  8850. source: "./media/characters/major-colonel/back.svg"
  8851. }
  8852. },
  8853. },
  8854. [
  8855. {
  8856. name: "Macro",
  8857. height: math.unit(400, "feet"),
  8858. default: true
  8859. },
  8860. ]
  8861. ))
  8862. characterMakers.push(() => makeCharacter(
  8863. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8864. {
  8865. catFront: {
  8866. height: math.unit(6, "feet"),
  8867. weight: math.unit(120, "lb"),
  8868. name: "Front (Cat Side)",
  8869. image: {
  8870. source: "./media/characters/axel-lycan/cat-front.svg",
  8871. extra: 430 / 402,
  8872. bottom: 43 / 472.35
  8873. }
  8874. },
  8875. catBack: {
  8876. height: math.unit(6, "feet"),
  8877. weight: math.unit(120, "lb"),
  8878. name: "Back (Cat Side)",
  8879. image: {
  8880. source: "./media/characters/axel-lycan/cat-back.svg",
  8881. extra: 447 / 419,
  8882. bottom: 23.3 / 469
  8883. }
  8884. },
  8885. wolfFront: {
  8886. height: math.unit(6, "feet"),
  8887. weight: math.unit(120, "lb"),
  8888. name: "Front (Wolf Side)",
  8889. image: {
  8890. source: "./media/characters/axel-lycan/wolf-front.svg",
  8891. extra: 485 / 456,
  8892. bottom: 19 / 504
  8893. }
  8894. },
  8895. wolfBack: {
  8896. height: math.unit(6, "feet"),
  8897. weight: math.unit(120, "lb"),
  8898. name: "Back (Wolf Side)",
  8899. image: {
  8900. source: "./media/characters/axel-lycan/wolf-back.svg",
  8901. extra: 475 / 438,
  8902. bottom: 39.2 / 514
  8903. }
  8904. },
  8905. },
  8906. [
  8907. {
  8908. name: "Macro",
  8909. height: math.unit(1, "km"),
  8910. default: true
  8911. },
  8912. ]
  8913. ))
  8914. characterMakers.push(() => makeCharacter(
  8915. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8916. {
  8917. front: {
  8918. height: math.unit(5 + 9 / 12, "feet"),
  8919. weight: math.unit(175, "lb"),
  8920. name: "Front",
  8921. image: {
  8922. source: "./media/characters/vanrel-hyena/front.svg",
  8923. extra: 1086 / 1010,
  8924. bottom: 0.04
  8925. }
  8926. },
  8927. },
  8928. [
  8929. {
  8930. name: "Normal",
  8931. height: math.unit(5 + 9 / 12, "feet"),
  8932. default: true
  8933. },
  8934. ]
  8935. ))
  8936. characterMakers.push(() => makeCharacter(
  8937. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8938. {
  8939. front: {
  8940. height: math.unit(6, "feet"),
  8941. weight: math.unit(103, "lb"),
  8942. name: "Front",
  8943. image: {
  8944. source: "./media/characters/abbott-absol/front.svg",
  8945. extra: 2010 / 1842
  8946. }
  8947. },
  8948. },
  8949. [
  8950. {
  8951. name: "Megamicro",
  8952. height: math.unit(0.1, "mm")
  8953. },
  8954. {
  8955. name: "Micro",
  8956. height: math.unit(1, "inch")
  8957. },
  8958. {
  8959. name: "Normal",
  8960. height: math.unit(6, "feet"),
  8961. default: true
  8962. },
  8963. ]
  8964. ))
  8965. characterMakers.push(() => makeCharacter(
  8966. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8967. {
  8968. front: {
  8969. height: math.unit(6, "feet"),
  8970. weight: math.unit(264, "lb"),
  8971. name: "Front",
  8972. image: {
  8973. source: "./media/characters/hector/front.svg",
  8974. extra: 2280 / 2130,
  8975. bottom: 0.07
  8976. }
  8977. },
  8978. },
  8979. [
  8980. {
  8981. name: "Normal",
  8982. height: math.unit(12.25, "foot"),
  8983. default: true
  8984. },
  8985. {
  8986. name: "Macro",
  8987. height: math.unit(160, "feet")
  8988. },
  8989. ]
  8990. ))
  8991. characterMakers.push(() => makeCharacter(
  8992. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8993. {
  8994. front: {
  8995. height: math.unit(6, "feet"),
  8996. weight: math.unit(150, "lb"),
  8997. name: "Front",
  8998. image: {
  8999. source: "./media/characters/sal/front.svg",
  9000. extra: 1846 / 1699,
  9001. bottom: 0.04
  9002. }
  9003. },
  9004. },
  9005. [
  9006. {
  9007. name: "Megamacro",
  9008. height: math.unit(10, "miles"),
  9009. default: true
  9010. },
  9011. ]
  9012. ))
  9013. characterMakers.push(() => makeCharacter(
  9014. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9015. {
  9016. front: {
  9017. height: math.unit(3, "meters"),
  9018. weight: math.unit(450, "kg"),
  9019. name: "front",
  9020. image: {
  9021. source: "./media/characters/ranger/front.svg",
  9022. extra: 2401 / 2243,
  9023. bottom: 0.05
  9024. }
  9025. },
  9026. },
  9027. [
  9028. {
  9029. name: "Normal",
  9030. height: math.unit(3, "meters"),
  9031. default: true
  9032. },
  9033. ]
  9034. ))
  9035. characterMakers.push(() => makeCharacter(
  9036. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9037. {
  9038. front: {
  9039. height: math.unit(14, "feet"),
  9040. weight: math.unit(800, "kg"),
  9041. name: "Front",
  9042. image: {
  9043. source: "./media/characters/theresa/front.svg",
  9044. extra: 3575 / 3346,
  9045. bottom: 0.03
  9046. }
  9047. },
  9048. },
  9049. [
  9050. {
  9051. name: "Normal",
  9052. height: math.unit(14, "feet"),
  9053. default: true
  9054. },
  9055. ]
  9056. ))
  9057. characterMakers.push(() => makeCharacter(
  9058. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9059. {
  9060. front: {
  9061. height: math.unit(6, "feet"),
  9062. weight: math.unit(3, "kg"),
  9063. name: "Front",
  9064. image: {
  9065. source: "./media/characters/ine/front.svg",
  9066. extra: 678 / 539,
  9067. bottom: 0.023
  9068. }
  9069. },
  9070. },
  9071. [
  9072. {
  9073. name: "Normal",
  9074. height: math.unit(2.265, "feet"),
  9075. default: true
  9076. },
  9077. ]
  9078. ))
  9079. characterMakers.push(() => makeCharacter(
  9080. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9081. {
  9082. front: {
  9083. height: math.unit(5, "feet"),
  9084. weight: math.unit(30, "kg"),
  9085. name: "Front",
  9086. image: {
  9087. source: "./media/characters/vial/front.svg",
  9088. extra: 1365 / 1277,
  9089. bottom: 0.04
  9090. }
  9091. },
  9092. },
  9093. [
  9094. {
  9095. name: "Normal",
  9096. height: math.unit(5, "feet"),
  9097. default: true
  9098. },
  9099. ]
  9100. ))
  9101. characterMakers.push(() => makeCharacter(
  9102. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9103. {
  9104. side: {
  9105. height: math.unit(3.4, "meters"),
  9106. weight: math.unit(1000, "lb"),
  9107. name: "Side",
  9108. image: {
  9109. source: "./media/characters/rovoska/side.svg",
  9110. extra: 4403 / 1515
  9111. }
  9112. },
  9113. },
  9114. [
  9115. {
  9116. name: "Normal",
  9117. height: math.unit(3.4, "meters"),
  9118. default: true
  9119. },
  9120. ]
  9121. ))
  9122. characterMakers.push(() => makeCharacter(
  9123. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9124. {
  9125. front: {
  9126. height: math.unit(8, "feet"),
  9127. weight: math.unit(315, "lb"),
  9128. name: "Front",
  9129. image: {
  9130. source: "./media/characters/gunner-rotthbauer/front.svg"
  9131. }
  9132. },
  9133. back: {
  9134. height: math.unit(8, "feet"),
  9135. weight: math.unit(315, "lb"),
  9136. name: "Back",
  9137. image: {
  9138. source: "./media/characters/gunner-rotthbauer/back.svg"
  9139. }
  9140. },
  9141. },
  9142. [
  9143. {
  9144. name: "Micro",
  9145. height: math.unit(3.5, "inches")
  9146. },
  9147. {
  9148. name: "Normal",
  9149. height: math.unit(8, "feet"),
  9150. default: true
  9151. },
  9152. {
  9153. name: "Macro",
  9154. height: math.unit(250, "feet")
  9155. },
  9156. {
  9157. name: "Megamacro",
  9158. height: math.unit(1, "AU")
  9159. },
  9160. ]
  9161. ))
  9162. characterMakers.push(() => makeCharacter(
  9163. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9164. {
  9165. front: {
  9166. height: math.unit(5 + 5 / 12, "feet"),
  9167. weight: math.unit(140, "lb"),
  9168. name: "Front",
  9169. image: {
  9170. source: "./media/characters/allatia/front.svg",
  9171. extra: 1227 / 1180,
  9172. bottom: 0.027
  9173. }
  9174. },
  9175. },
  9176. [
  9177. {
  9178. name: "Normal",
  9179. height: math.unit(5 + 5 / 12, "feet")
  9180. },
  9181. {
  9182. name: "Macro",
  9183. height: math.unit(250, "feet"),
  9184. default: true
  9185. },
  9186. {
  9187. name: "Megamacro",
  9188. height: math.unit(8, "miles")
  9189. }
  9190. ]
  9191. ))
  9192. characterMakers.push(() => makeCharacter(
  9193. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9194. {
  9195. front: {
  9196. height: math.unit(6, "feet"),
  9197. weight: math.unit(120, "lb"),
  9198. name: "Front",
  9199. image: {
  9200. source: "./media/characters/tene/front.svg",
  9201. extra: 1728 / 1578,
  9202. bottom: 0.022
  9203. }
  9204. },
  9205. stomping: {
  9206. height: math.unit(2.025, "meters"),
  9207. weight: math.unit(120, "lb"),
  9208. name: "Stomping",
  9209. image: {
  9210. source: "./media/characters/tene/stomping.svg",
  9211. extra: 938 / 873,
  9212. bottom: 0.01
  9213. }
  9214. },
  9215. sitting: {
  9216. height: math.unit(1, "meter"),
  9217. weight: math.unit(120, "lb"),
  9218. name: "Sitting",
  9219. image: {
  9220. source: "./media/characters/tene/sitting.svg",
  9221. extra: 437 / 415,
  9222. bottom: 0.1
  9223. }
  9224. },
  9225. feral: {
  9226. height: math.unit(3.9, "feet"),
  9227. weight: math.unit(250, "lb"),
  9228. name: "Feral",
  9229. image: {
  9230. source: "./media/characters/tene/feral.svg",
  9231. extra: 717 / 458,
  9232. bottom: 0.179
  9233. }
  9234. },
  9235. },
  9236. [
  9237. {
  9238. name: "Normal",
  9239. height: math.unit(6, "feet")
  9240. },
  9241. {
  9242. name: "Macro",
  9243. height: math.unit(300, "feet"),
  9244. default: true
  9245. },
  9246. {
  9247. name: "Megamacro",
  9248. height: math.unit(5, "miles")
  9249. },
  9250. ]
  9251. ))
  9252. characterMakers.push(() => makeCharacter(
  9253. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9254. {
  9255. side: {
  9256. height: math.unit(6, "feet"),
  9257. name: "Side",
  9258. image: {
  9259. source: "./media/characters/evander/side.svg",
  9260. extra: 877 / 477
  9261. }
  9262. },
  9263. },
  9264. [
  9265. {
  9266. name: "Normal",
  9267. height: math.unit(0.83, "meters"),
  9268. default: true
  9269. },
  9270. ]
  9271. ))
  9272. characterMakers.push(() => makeCharacter(
  9273. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9274. {
  9275. front: {
  9276. height: math.unit(12, "feet"),
  9277. weight: math.unit(1000, "lb"),
  9278. name: "Front",
  9279. image: {
  9280. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9281. extra: 1762 / 1611
  9282. }
  9283. },
  9284. back: {
  9285. height: math.unit(12, "feet"),
  9286. weight: math.unit(1000, "lb"),
  9287. name: "Back",
  9288. image: {
  9289. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9290. extra: 1762 / 1611
  9291. }
  9292. },
  9293. },
  9294. [
  9295. {
  9296. name: "Normal",
  9297. height: math.unit(12, "feet"),
  9298. default: true
  9299. },
  9300. {
  9301. name: "Kaiju",
  9302. height: math.unit(150, "feet")
  9303. },
  9304. ]
  9305. ))
  9306. characterMakers.push(() => makeCharacter(
  9307. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9308. {
  9309. front: {
  9310. height: math.unit(6, "feet"),
  9311. weight: math.unit(150, "lb"),
  9312. name: "Front",
  9313. image: {
  9314. source: "./media/characters/zero-alurus/front.svg"
  9315. }
  9316. },
  9317. back: {
  9318. height: math.unit(6, "feet"),
  9319. weight: math.unit(150, "lb"),
  9320. name: "Back",
  9321. image: {
  9322. source: "./media/characters/zero-alurus/back.svg"
  9323. }
  9324. },
  9325. },
  9326. [
  9327. {
  9328. name: "Normal",
  9329. height: math.unit(5 + 10 / 12, "feet")
  9330. },
  9331. {
  9332. name: "Macro",
  9333. height: math.unit(60, "feet"),
  9334. default: true
  9335. },
  9336. {
  9337. name: "Macro+",
  9338. height: math.unit(450, "feet")
  9339. },
  9340. ]
  9341. ))
  9342. characterMakers.push(() => makeCharacter(
  9343. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9344. {
  9345. front: {
  9346. height: math.unit(6, "feet"),
  9347. weight: math.unit(200, "lb"),
  9348. name: "Front",
  9349. image: {
  9350. source: "./media/characters/mega-shi/front.svg",
  9351. extra: 1279 / 1250,
  9352. bottom: 0.02
  9353. }
  9354. },
  9355. back: {
  9356. height: math.unit(6, "feet"),
  9357. weight: math.unit(200, "lb"),
  9358. name: "Back",
  9359. image: {
  9360. source: "./media/characters/mega-shi/back.svg",
  9361. extra: 1279 / 1250,
  9362. bottom: 0.02
  9363. }
  9364. },
  9365. },
  9366. [
  9367. {
  9368. name: "Micro",
  9369. height: math.unit(16 + 6 / 12, "feet")
  9370. },
  9371. {
  9372. name: "Third Dimension",
  9373. height: math.unit(40, "meters")
  9374. },
  9375. {
  9376. name: "Normal",
  9377. height: math.unit(660, "feet"),
  9378. default: true
  9379. },
  9380. {
  9381. name: "Megamacro",
  9382. height: math.unit(10, "miles")
  9383. },
  9384. {
  9385. name: "Planetary Launch",
  9386. height: math.unit(500, "miles")
  9387. },
  9388. {
  9389. name: "Interstellar",
  9390. height: math.unit(1e9, "miles")
  9391. },
  9392. {
  9393. name: "Leaving the Universe",
  9394. height: math.unit(1, "gigaparsec")
  9395. },
  9396. {
  9397. name: "Travelling Universes",
  9398. height: math.unit(30e15, "parsecs")
  9399. },
  9400. ]
  9401. ))
  9402. characterMakers.push(() => makeCharacter(
  9403. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9404. {
  9405. front: {
  9406. height: math.unit(6, "feet"),
  9407. weight: math.unit(150, "lb"),
  9408. name: "Front",
  9409. image: {
  9410. source: "./media/characters/odyssey/front.svg",
  9411. extra: 1782 / 1582,
  9412. bottom: 0.01
  9413. }
  9414. },
  9415. side: {
  9416. height: math.unit(5.7, "feet"),
  9417. weight: math.unit(140, "lb"),
  9418. name: "Side",
  9419. image: {
  9420. source: "./media/characters/odyssey/side.svg",
  9421. extra: 6462 / 5700
  9422. }
  9423. },
  9424. },
  9425. [
  9426. {
  9427. name: "Normal",
  9428. height: math.unit(5 + 4 / 12, "feet")
  9429. },
  9430. {
  9431. name: "Macro",
  9432. height: math.unit(1, "km")
  9433. },
  9434. {
  9435. name: "Megamacro",
  9436. height: math.unit(3000, "km")
  9437. },
  9438. {
  9439. name: "Gigamacro",
  9440. height: math.unit(1, "AU"),
  9441. default: true
  9442. },
  9443. {
  9444. name: "Omniversal",
  9445. height: math.unit(100e14, "lightyears")
  9446. },
  9447. ]
  9448. ))
  9449. characterMakers.push(() => makeCharacter(
  9450. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9451. {
  9452. front: {
  9453. height: math.unit(6, "feet"),
  9454. weight: math.unit(300, "lb"),
  9455. name: "Front",
  9456. image: {
  9457. source: "./media/characters/mekuto/front.svg",
  9458. extra: 921 / 832,
  9459. bottom: 0.03
  9460. }
  9461. },
  9462. hand: {
  9463. height: math.unit(6 / 10.24, "feet"),
  9464. name: "Hand",
  9465. image: {
  9466. source: "./media/characters/mekuto/hand.svg"
  9467. }
  9468. },
  9469. foot: {
  9470. height: math.unit(6 / 5.05, "feet"),
  9471. name: "Foot",
  9472. image: {
  9473. source: "./media/characters/mekuto/foot.svg"
  9474. }
  9475. },
  9476. },
  9477. [
  9478. {
  9479. name: "Minimicro",
  9480. height: math.unit(0.2, "inches")
  9481. },
  9482. {
  9483. name: "Micro",
  9484. height: math.unit(1.5, "inches")
  9485. },
  9486. {
  9487. name: "Normal",
  9488. height: math.unit(5 + 11 / 12, "feet"),
  9489. default: true
  9490. },
  9491. {
  9492. name: "Minimacro",
  9493. height: math.unit(17 + 9 / 12, "feet")
  9494. },
  9495. {
  9496. name: "Macro",
  9497. height: math.unit(177.5, "feet")
  9498. },
  9499. {
  9500. name: "Megamacro",
  9501. height: math.unit(152, "miles")
  9502. },
  9503. ]
  9504. ))
  9505. characterMakers.push(() => makeCharacter(
  9506. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9507. {
  9508. front: {
  9509. height: math.unit(6.5, "inches"),
  9510. weight: math.unit(13, "oz"),
  9511. name: "Front",
  9512. image: {
  9513. source: "./media/characters/dafydd-tomos/front.svg",
  9514. extra: 2990 / 2603,
  9515. bottom: 0.03
  9516. }
  9517. },
  9518. },
  9519. [
  9520. {
  9521. name: "Micro",
  9522. height: math.unit(6.5, "inches"),
  9523. default: true
  9524. },
  9525. ]
  9526. ))
  9527. characterMakers.push(() => makeCharacter(
  9528. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9529. {
  9530. front: {
  9531. height: math.unit(6, "feet"),
  9532. weight: math.unit(150, "lb"),
  9533. name: "Front",
  9534. image: {
  9535. source: "./media/characters/splinter/front.svg",
  9536. extra: 2990 / 2882,
  9537. bottom: 0.04
  9538. }
  9539. },
  9540. back: {
  9541. height: math.unit(6, "feet"),
  9542. weight: math.unit(150, "lb"),
  9543. name: "Back",
  9544. image: {
  9545. source: "./media/characters/splinter/back.svg",
  9546. extra: 2990 / 2882,
  9547. bottom: 0.04
  9548. }
  9549. },
  9550. },
  9551. [
  9552. {
  9553. name: "Normal",
  9554. height: math.unit(6, "feet")
  9555. },
  9556. {
  9557. name: "Macro",
  9558. height: math.unit(230, "meters"),
  9559. default: true
  9560. },
  9561. ]
  9562. ))
  9563. characterMakers.push(() => makeCharacter(
  9564. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9565. {
  9566. front: {
  9567. height: math.unit(4 + 10 / 12, "feet"),
  9568. weight: math.unit(480, "lb"),
  9569. name: "Front",
  9570. image: {
  9571. source: "./media/characters/snow-gabumon/front.svg",
  9572. extra: 1140 / 963,
  9573. bottom: 0.058
  9574. }
  9575. },
  9576. back: {
  9577. height: math.unit(4 + 10 / 12, "feet"),
  9578. weight: math.unit(480, "lb"),
  9579. name: "Back",
  9580. image: {
  9581. source: "./media/characters/snow-gabumon/back.svg",
  9582. extra: 1115 / 962,
  9583. bottom: 0.041
  9584. }
  9585. },
  9586. frontUndresed: {
  9587. height: math.unit(4 + 10 / 12, "feet"),
  9588. weight: math.unit(480, "lb"),
  9589. name: "Front (Undressed)",
  9590. image: {
  9591. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9592. extra: 1061 / 960,
  9593. bottom: 0.045
  9594. }
  9595. },
  9596. },
  9597. [
  9598. {
  9599. name: "Micro",
  9600. height: math.unit(1, "inch")
  9601. },
  9602. {
  9603. name: "Normal",
  9604. height: math.unit(4 + 10 / 12, "feet"),
  9605. default: true
  9606. },
  9607. {
  9608. name: "Macro",
  9609. height: math.unit(200, "feet")
  9610. },
  9611. {
  9612. name: "Megamacro",
  9613. height: math.unit(120, "miles")
  9614. },
  9615. {
  9616. name: "Gigamacro",
  9617. height: math.unit(9800, "miles")
  9618. },
  9619. ]
  9620. ))
  9621. characterMakers.push(() => makeCharacter(
  9622. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9623. {
  9624. front: {
  9625. height: math.unit(1.7, "meters"),
  9626. weight: math.unit(140, "lb"),
  9627. name: "Front",
  9628. image: {
  9629. source: "./media/characters/moody/front.svg",
  9630. extra: 3226 / 3007,
  9631. bottom: 0.087
  9632. }
  9633. },
  9634. },
  9635. [
  9636. {
  9637. name: "Micro",
  9638. height: math.unit(1, "mm")
  9639. },
  9640. {
  9641. name: "Normal",
  9642. height: math.unit(1.7, "meters"),
  9643. default: true
  9644. },
  9645. {
  9646. name: "Macro",
  9647. height: math.unit(80, "meters")
  9648. },
  9649. {
  9650. name: "Macro+",
  9651. height: math.unit(500, "meters")
  9652. },
  9653. ]
  9654. ))
  9655. characterMakers.push(() => makeCharacter(
  9656. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9657. {
  9658. front: {
  9659. height: math.unit(6, "feet"),
  9660. weight: math.unit(150, "lb"),
  9661. name: "Front",
  9662. image: {
  9663. source: "./media/characters/zyas/front.svg",
  9664. extra: 1180 / 1120,
  9665. bottom: 0.045
  9666. }
  9667. },
  9668. },
  9669. [
  9670. {
  9671. name: "Normal",
  9672. height: math.unit(10, "feet"),
  9673. default: true
  9674. },
  9675. {
  9676. name: "Macro",
  9677. height: math.unit(500, "feet")
  9678. },
  9679. {
  9680. name: "Megamacro",
  9681. height: math.unit(5, "miles")
  9682. },
  9683. {
  9684. name: "Teramacro",
  9685. height: math.unit(150000, "miles")
  9686. },
  9687. ]
  9688. ))
  9689. characterMakers.push(() => makeCharacter(
  9690. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9691. {
  9692. front: {
  9693. height: math.unit(6, "feet"),
  9694. weight: math.unit(150, "lb"),
  9695. name: "Front",
  9696. image: {
  9697. source: "./media/characters/cuon/front.svg",
  9698. extra: 1390 / 1320,
  9699. bottom: 0.008
  9700. }
  9701. },
  9702. },
  9703. [
  9704. {
  9705. name: "Micro",
  9706. height: math.unit(3, "inches")
  9707. },
  9708. {
  9709. name: "Normal",
  9710. height: math.unit(18 + 9 / 12, "feet"),
  9711. default: true
  9712. },
  9713. {
  9714. name: "Macro",
  9715. height: math.unit(360, "feet")
  9716. },
  9717. {
  9718. name: "Megamacro",
  9719. height: math.unit(360, "miles")
  9720. },
  9721. ]
  9722. ))
  9723. characterMakers.push(() => makeCharacter(
  9724. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9725. {
  9726. front: {
  9727. height: math.unit(2.4, "meters"),
  9728. weight: math.unit(70, "kg"),
  9729. name: "Front",
  9730. image: {
  9731. source: "./media/characters/nyanuxk/front.svg",
  9732. extra: 1172 / 1084,
  9733. bottom: 0.065
  9734. }
  9735. },
  9736. side: {
  9737. height: math.unit(2.4, "meters"),
  9738. weight: math.unit(70, "kg"),
  9739. name: "Side",
  9740. image: {
  9741. source: "./media/characters/nyanuxk/side.svg",
  9742. extra: 1190 / 1132,
  9743. bottom: 0.007
  9744. }
  9745. },
  9746. back: {
  9747. height: math.unit(2.4, "meters"),
  9748. weight: math.unit(70, "kg"),
  9749. name: "Back",
  9750. image: {
  9751. source: "./media/characters/nyanuxk/back.svg",
  9752. extra: 1200 / 1141,
  9753. bottom: 0.015
  9754. }
  9755. },
  9756. foot: {
  9757. height: math.unit(0.52, "meters"),
  9758. name: "Foot",
  9759. image: {
  9760. source: "./media/characters/nyanuxk/foot.svg"
  9761. }
  9762. },
  9763. },
  9764. [
  9765. {
  9766. name: "Micro",
  9767. height: math.unit(2, "cm")
  9768. },
  9769. {
  9770. name: "Normal",
  9771. height: math.unit(2.4, "meters"),
  9772. default: true
  9773. },
  9774. {
  9775. name: "Smaller Macro",
  9776. height: math.unit(120, "meters")
  9777. },
  9778. {
  9779. name: "Bigger Macro",
  9780. height: math.unit(1.2, "km")
  9781. },
  9782. {
  9783. name: "Megamacro",
  9784. height: math.unit(15, "kilometers")
  9785. },
  9786. {
  9787. name: "Gigamacro",
  9788. height: math.unit(2000, "km")
  9789. },
  9790. {
  9791. name: "Teramacro",
  9792. height: math.unit(500000, "km")
  9793. },
  9794. ]
  9795. ))
  9796. characterMakers.push(() => makeCharacter(
  9797. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9798. {
  9799. side: {
  9800. height: math.unit(6, "feet"),
  9801. name: "Side",
  9802. image: {
  9803. source: "./media/characters/ailbhe/side.svg",
  9804. extra: 757 / 464,
  9805. bottom: 0.041
  9806. }
  9807. },
  9808. },
  9809. [
  9810. {
  9811. name: "Normal",
  9812. height: math.unit(1.07, "meters"),
  9813. default: true
  9814. },
  9815. ]
  9816. ))
  9817. characterMakers.push(() => makeCharacter(
  9818. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9819. {
  9820. front: {
  9821. height: math.unit(6, "feet"),
  9822. weight: math.unit(120, "kg"),
  9823. name: "Front",
  9824. image: {
  9825. source: "./media/characters/zevulfius/front.svg",
  9826. extra: 965 / 903
  9827. }
  9828. },
  9829. side: {
  9830. height: math.unit(6, "feet"),
  9831. weight: math.unit(120, "kg"),
  9832. name: "Side",
  9833. image: {
  9834. source: "./media/characters/zevulfius/side.svg",
  9835. extra: 939 / 900
  9836. }
  9837. },
  9838. back: {
  9839. height: math.unit(6, "feet"),
  9840. weight: math.unit(120, "kg"),
  9841. name: "Back",
  9842. image: {
  9843. source: "./media/characters/zevulfius/back.svg",
  9844. extra: 918 / 854,
  9845. bottom: 0.005
  9846. }
  9847. },
  9848. foot: {
  9849. height: math.unit(6 / 3.72, "feet"),
  9850. name: "Foot",
  9851. image: {
  9852. source: "./media/characters/zevulfius/foot.svg"
  9853. }
  9854. },
  9855. },
  9856. [
  9857. {
  9858. name: "Macro",
  9859. height: math.unit(750, "meters")
  9860. },
  9861. {
  9862. name: "Megamacro",
  9863. height: math.unit(20, "km"),
  9864. default: true
  9865. },
  9866. {
  9867. name: "Gigamacro",
  9868. height: math.unit(2000, "km")
  9869. },
  9870. {
  9871. name: "Teramacro",
  9872. height: math.unit(250000, "km")
  9873. },
  9874. ]
  9875. ))
  9876. characterMakers.push(() => makeCharacter(
  9877. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9878. {
  9879. front: {
  9880. height: math.unit(100, "feet"),
  9881. weight: math.unit(350, "kg"),
  9882. name: "Front",
  9883. image: {
  9884. source: "./media/characters/rikes/front.svg",
  9885. extra: 1565 / 1483,
  9886. bottom: 0.017
  9887. }
  9888. },
  9889. },
  9890. [
  9891. {
  9892. name: "Macro",
  9893. height: math.unit(100, "feet"),
  9894. default: true
  9895. },
  9896. ]
  9897. ))
  9898. characterMakers.push(() => makeCharacter(
  9899. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9900. {
  9901. anthro: {
  9902. height: math.unit(8, "feet"),
  9903. weight: math.unit(120, "kg"),
  9904. name: "Anthro",
  9905. image: {
  9906. source: "./media/characters/adam-silver-mane/anthro.svg",
  9907. extra: 5743 / 5339,
  9908. bottom: 0.07
  9909. }
  9910. },
  9911. taur: {
  9912. height: math.unit(16, "feet"),
  9913. weight: math.unit(1500, "kg"),
  9914. name: "Taur",
  9915. image: {
  9916. source: "./media/characters/adam-silver-mane/taur.svg",
  9917. extra: 1713 / 1571,
  9918. bottom: 0.01
  9919. }
  9920. },
  9921. },
  9922. [
  9923. {
  9924. name: "Normal",
  9925. height: math.unit(8, "feet")
  9926. },
  9927. {
  9928. name: "Minimacro",
  9929. height: math.unit(80, "feet")
  9930. },
  9931. {
  9932. name: "Macro",
  9933. height: math.unit(800, "feet"),
  9934. default: true
  9935. },
  9936. {
  9937. name: "Megamacro",
  9938. height: math.unit(8000, "feet")
  9939. },
  9940. {
  9941. name: "Gigamacro",
  9942. height: math.unit(800, "miles")
  9943. },
  9944. {
  9945. name: "Teramacro",
  9946. height: math.unit(80000, "miles")
  9947. },
  9948. {
  9949. name: "Celestial",
  9950. height: math.unit(8e6, "miles")
  9951. },
  9952. {
  9953. name: "Star Dragon",
  9954. height: math.unit(800000, "parsecs")
  9955. },
  9956. {
  9957. name: "Godly",
  9958. height: math.unit(800, "teraparsecs")
  9959. },
  9960. ]
  9961. ))
  9962. characterMakers.push(() => makeCharacter(
  9963. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9964. {
  9965. front: {
  9966. height: math.unit(6, "feet"),
  9967. weight: math.unit(150, "lb"),
  9968. name: "Front",
  9969. image: {
  9970. source: "./media/characters/ky'owin/front.svg",
  9971. extra: 3888 / 3068,
  9972. bottom: 0.015
  9973. }
  9974. },
  9975. },
  9976. [
  9977. {
  9978. name: "Normal",
  9979. height: math.unit(6 + 8 / 12, "feet")
  9980. },
  9981. {
  9982. name: "Large",
  9983. height: math.unit(68, "feet")
  9984. },
  9985. {
  9986. name: "Macro",
  9987. height: math.unit(132, "feet")
  9988. },
  9989. {
  9990. name: "Macro+",
  9991. height: math.unit(340, "feet")
  9992. },
  9993. {
  9994. name: "Macro++",
  9995. height: math.unit(680, "feet"),
  9996. default: true
  9997. },
  9998. {
  9999. name: "Megamacro",
  10000. height: math.unit(1, "mile")
  10001. },
  10002. {
  10003. name: "Megamacro+",
  10004. height: math.unit(10, "miles")
  10005. },
  10006. ]
  10007. ))
  10008. characterMakers.push(() => makeCharacter(
  10009. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10010. {
  10011. front: {
  10012. height: math.unit(4, "feet"),
  10013. weight: math.unit(50, "lb"),
  10014. name: "Front",
  10015. image: {
  10016. source: "./media/characters/mal/front.svg",
  10017. extra: 785 / 724,
  10018. bottom: 0.07
  10019. }
  10020. },
  10021. },
  10022. [
  10023. {
  10024. name: "Micro",
  10025. height: math.unit(4, "inches")
  10026. },
  10027. {
  10028. name: "Normal",
  10029. height: math.unit(4, "feet"),
  10030. default: true
  10031. },
  10032. {
  10033. name: "Macro",
  10034. height: math.unit(200, "feet")
  10035. },
  10036. ]
  10037. ))
  10038. characterMakers.push(() => makeCharacter(
  10039. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10040. {
  10041. front: {
  10042. height: math.unit(6, "feet"),
  10043. weight: math.unit(150, "lb"),
  10044. name: "Front",
  10045. image: {
  10046. source: "./media/characters/jordan-deware/front.svg",
  10047. extra: 1191 / 1012
  10048. }
  10049. },
  10050. },
  10051. [
  10052. {
  10053. name: "Nano",
  10054. height: math.unit(0.01, "mm")
  10055. },
  10056. {
  10057. name: "Minimicro",
  10058. height: math.unit(1, "mm")
  10059. },
  10060. {
  10061. name: "Micro",
  10062. height: math.unit(0.5, "inches")
  10063. },
  10064. {
  10065. name: "Normal",
  10066. height: math.unit(4, "feet"),
  10067. default: true
  10068. },
  10069. {
  10070. name: "Minimacro",
  10071. height: math.unit(40, "meters")
  10072. },
  10073. {
  10074. name: "Small Macro",
  10075. height: math.unit(400, "meters")
  10076. },
  10077. {
  10078. name: "Macro",
  10079. height: math.unit(4, "miles")
  10080. },
  10081. {
  10082. name: "Megamacro",
  10083. height: math.unit(40, "miles")
  10084. },
  10085. {
  10086. name: "Megamacro+",
  10087. height: math.unit(400, "miles")
  10088. },
  10089. {
  10090. name: "Gigamacro",
  10091. height: math.unit(400000, "miles")
  10092. },
  10093. ]
  10094. ))
  10095. characterMakers.push(() => makeCharacter(
  10096. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10097. {
  10098. side: {
  10099. height: math.unit(6, "feet"),
  10100. weight: math.unit(150, "lb"),
  10101. name: "Side",
  10102. image: {
  10103. source: "./media/characters/kimiko/side.svg",
  10104. extra: 600 / 358
  10105. }
  10106. },
  10107. },
  10108. [
  10109. {
  10110. name: "Normal",
  10111. height: math.unit(15, "feet"),
  10112. default: true
  10113. },
  10114. {
  10115. name: "Macro",
  10116. height: math.unit(220, "feet")
  10117. },
  10118. {
  10119. name: "Macro+",
  10120. height: math.unit(1450, "feet")
  10121. },
  10122. {
  10123. name: "Megamacro",
  10124. height: math.unit(11500, "feet")
  10125. },
  10126. {
  10127. name: "Gigamacro",
  10128. height: math.unit(9500, "miles")
  10129. },
  10130. {
  10131. name: "Teramacro",
  10132. height: math.unit(2208005005, "miles")
  10133. },
  10134. {
  10135. name: "Examacro",
  10136. height: math.unit(2750, "parsecs")
  10137. },
  10138. {
  10139. name: "Zettamacro",
  10140. height: math.unit(101500, "parsecs")
  10141. },
  10142. ]
  10143. ))
  10144. characterMakers.push(() => makeCharacter(
  10145. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10146. {
  10147. front: {
  10148. height: math.unit(6, "feet"),
  10149. weight: math.unit(70, "kg"),
  10150. name: "Front",
  10151. image: {
  10152. source: "./media/characters/andrew-sleepy/front.svg"
  10153. }
  10154. },
  10155. side: {
  10156. height: math.unit(6, "feet"),
  10157. weight: math.unit(70, "kg"),
  10158. name: "Side",
  10159. image: {
  10160. source: "./media/characters/andrew-sleepy/side.svg"
  10161. }
  10162. },
  10163. },
  10164. [
  10165. {
  10166. name: "Micro",
  10167. height: math.unit(1, "mm"),
  10168. default: true
  10169. },
  10170. ]
  10171. ))
  10172. characterMakers.push(() => makeCharacter(
  10173. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10174. {
  10175. front: {
  10176. height: math.unit(6, "feet"),
  10177. weight: math.unit(150, "lb"),
  10178. name: "Front",
  10179. image: {
  10180. source: "./media/characters/judio/front.svg",
  10181. extra: 1258 / 1110
  10182. }
  10183. },
  10184. },
  10185. [
  10186. {
  10187. name: "Normal",
  10188. height: math.unit(5 + 6 / 12, "feet")
  10189. },
  10190. {
  10191. name: "Macro",
  10192. height: math.unit(1000, "feet"),
  10193. default: true
  10194. },
  10195. {
  10196. name: "Megamacro",
  10197. height: math.unit(10, "miles")
  10198. },
  10199. ]
  10200. ))
  10201. characterMakers.push(() => makeCharacter(
  10202. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10203. {
  10204. front: {
  10205. height: math.unit(6, "feet"),
  10206. weight: math.unit(68, "kg"),
  10207. name: "Front",
  10208. image: {
  10209. source: "./media/characters/nomaxice/front.svg",
  10210. extra: 1498 / 1073,
  10211. bottom: 0.075
  10212. }
  10213. },
  10214. foot: {
  10215. height: math.unit(1.1, "feet"),
  10216. name: "Foot",
  10217. image: {
  10218. source: "./media/characters/nomaxice/foot.svg"
  10219. }
  10220. },
  10221. },
  10222. [
  10223. {
  10224. name: "Micro",
  10225. height: math.unit(8, "cm")
  10226. },
  10227. {
  10228. name: "Norm",
  10229. height: math.unit(1.82, "m")
  10230. },
  10231. {
  10232. name: "Norm+",
  10233. height: math.unit(8.8, "feet")
  10234. },
  10235. {
  10236. name: "Big",
  10237. height: math.unit(8, "meters"),
  10238. default: true
  10239. },
  10240. {
  10241. name: "Macro",
  10242. height: math.unit(18, "meters")
  10243. },
  10244. {
  10245. name: "Macro+",
  10246. height: math.unit(88, "meters")
  10247. },
  10248. ]
  10249. ))
  10250. characterMakers.push(() => makeCharacter(
  10251. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10252. {
  10253. front: {
  10254. height: math.unit(12, "feet"),
  10255. weight: math.unit(1.5, "tons"),
  10256. name: "Front",
  10257. image: {
  10258. source: "./media/characters/dydros/front.svg",
  10259. extra: 863 / 800,
  10260. bottom: 0.015
  10261. }
  10262. },
  10263. back: {
  10264. height: math.unit(12, "feet"),
  10265. weight: math.unit(1.5, "tons"),
  10266. name: "Back",
  10267. image: {
  10268. source: "./media/characters/dydros/back.svg",
  10269. extra: 900 / 843,
  10270. bottom: 0.005
  10271. }
  10272. },
  10273. },
  10274. [
  10275. {
  10276. name: "Normal",
  10277. height: math.unit(12, "feet"),
  10278. default: true
  10279. },
  10280. ]
  10281. ))
  10282. characterMakers.push(() => makeCharacter(
  10283. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10284. {
  10285. front: {
  10286. height: math.unit(6, "feet"),
  10287. weight: math.unit(100, "kg"),
  10288. name: "Front",
  10289. image: {
  10290. source: "./media/characters/riggi/front.svg",
  10291. extra: 5787 / 5303
  10292. }
  10293. },
  10294. hyper: {
  10295. height: math.unit(6 * 5 / 3, "feet"),
  10296. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10297. name: "Hyper",
  10298. image: {
  10299. source: "./media/characters/riggi/hyper.svg",
  10300. extra: 3595 / 3485
  10301. }
  10302. },
  10303. },
  10304. [
  10305. {
  10306. name: "Small Macro",
  10307. height: math.unit(50, "feet")
  10308. },
  10309. {
  10310. name: "Default",
  10311. height: math.unit(200, "feet"),
  10312. default: true
  10313. },
  10314. {
  10315. name: "Loom",
  10316. height: math.unit(10000, "feet")
  10317. },
  10318. {
  10319. name: "Cruising Altitude",
  10320. height: math.unit(30000, "feet")
  10321. },
  10322. {
  10323. name: "Megamacro",
  10324. height: math.unit(100, "miles")
  10325. },
  10326. {
  10327. name: "Continent Sized",
  10328. height: math.unit(2800, "miles")
  10329. },
  10330. {
  10331. name: "Earth Sized",
  10332. height: math.unit(8000, "miles")
  10333. },
  10334. ]
  10335. ))
  10336. characterMakers.push(() => makeCharacter(
  10337. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10338. {
  10339. front: {
  10340. height: math.unit(6, "feet"),
  10341. weight: math.unit(250, "lb"),
  10342. name: "Front",
  10343. image: {
  10344. source: "./media/characters/alexi/front.svg",
  10345. extra: 3483 / 3291,
  10346. bottom: 0.04
  10347. }
  10348. },
  10349. back: {
  10350. height: math.unit(6, "feet"),
  10351. weight: math.unit(250, "lb"),
  10352. name: "Back",
  10353. image: {
  10354. source: "./media/characters/alexi/back.svg",
  10355. extra: 3533 / 3356,
  10356. bottom: 0.021
  10357. }
  10358. },
  10359. frontTransforming: {
  10360. height: math.unit(8.58, "feet"),
  10361. weight: math.unit(1300, "lb"),
  10362. name: "Transforming",
  10363. image: {
  10364. source: "./media/characters/alexi/front-transforming.svg",
  10365. extra: 437 / 409,
  10366. bottom: 19 / 458.66
  10367. }
  10368. },
  10369. frontTransformed: {
  10370. height: math.unit(12.5, "feet"),
  10371. weight: math.unit(4000, "lb"),
  10372. name: "Transformed",
  10373. image: {
  10374. source: "./media/characters/alexi/front-transformed.svg",
  10375. extra: 639 / 614,
  10376. bottom: 30.55 / 671
  10377. }
  10378. },
  10379. },
  10380. [
  10381. {
  10382. name: "Normal",
  10383. height: math.unit(14, "feet"),
  10384. default: true
  10385. },
  10386. {
  10387. name: "Minimacro",
  10388. height: math.unit(30, "meters")
  10389. },
  10390. {
  10391. name: "Macro",
  10392. height: math.unit(500, "meters")
  10393. },
  10394. {
  10395. name: "Megamacro",
  10396. height: math.unit(9000, "km")
  10397. },
  10398. {
  10399. name: "Teramacro",
  10400. height: math.unit(384000, "km")
  10401. },
  10402. ]
  10403. ))
  10404. characterMakers.push(() => makeCharacter(
  10405. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10406. {
  10407. front: {
  10408. height: math.unit(6, "feet"),
  10409. weight: math.unit(150, "lb"),
  10410. name: "Front",
  10411. image: {
  10412. source: "./media/characters/kayroo/front.svg",
  10413. extra: 1153 / 1038,
  10414. bottom: 0.06
  10415. }
  10416. },
  10417. foot: {
  10418. height: math.unit(6, "feet"),
  10419. weight: math.unit(150, "lb"),
  10420. name: "Foot",
  10421. image: {
  10422. source: "./media/characters/kayroo/foot.svg"
  10423. }
  10424. },
  10425. },
  10426. [
  10427. {
  10428. name: "Normal",
  10429. height: math.unit(8, "feet"),
  10430. default: true
  10431. },
  10432. {
  10433. name: "Minimacro",
  10434. height: math.unit(250, "feet")
  10435. },
  10436. {
  10437. name: "Macro",
  10438. height: math.unit(2800, "feet")
  10439. },
  10440. {
  10441. name: "Megamacro",
  10442. height: math.unit(5200, "feet")
  10443. },
  10444. {
  10445. name: "Gigamacro",
  10446. height: math.unit(27000, "feet")
  10447. },
  10448. {
  10449. name: "Omega",
  10450. height: math.unit(45000, "feet")
  10451. },
  10452. ]
  10453. ))
  10454. characterMakers.push(() => makeCharacter(
  10455. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10456. {
  10457. front: {
  10458. height: math.unit(18, "feet"),
  10459. weight: math.unit(5800, "lb"),
  10460. name: "Front",
  10461. image: {
  10462. source: "./media/characters/rhys/front.svg",
  10463. extra: 3386 / 3090,
  10464. bottom: 0.07
  10465. }
  10466. },
  10467. },
  10468. [
  10469. {
  10470. name: "Normal",
  10471. height: math.unit(18, "feet"),
  10472. default: true
  10473. },
  10474. {
  10475. name: "Working Size",
  10476. height: math.unit(200, "feet")
  10477. },
  10478. {
  10479. name: "Demolition Size",
  10480. height: math.unit(2000, "feet")
  10481. },
  10482. {
  10483. name: "Maximum Licensed Size",
  10484. height: math.unit(5, "miles")
  10485. },
  10486. {
  10487. name: "Maximum Observed Size",
  10488. height: math.unit(10, "yottameters")
  10489. },
  10490. ]
  10491. ))
  10492. characterMakers.push(() => makeCharacter(
  10493. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10494. {
  10495. front: {
  10496. height: math.unit(6, "feet"),
  10497. weight: math.unit(250, "lb"),
  10498. name: "Front",
  10499. image: {
  10500. source: "./media/characters/toto/front.svg",
  10501. extra: 527 / 479,
  10502. bottom: 0.05
  10503. }
  10504. },
  10505. },
  10506. [
  10507. {
  10508. name: "Micro",
  10509. height: math.unit(3, "feet")
  10510. },
  10511. {
  10512. name: "Normal",
  10513. height: math.unit(10, "feet")
  10514. },
  10515. {
  10516. name: "Macro",
  10517. height: math.unit(150, "feet"),
  10518. default: true
  10519. },
  10520. {
  10521. name: "Megamacro",
  10522. height: math.unit(1200, "feet")
  10523. },
  10524. ]
  10525. ))
  10526. characterMakers.push(() => makeCharacter(
  10527. { name: "King", species: ["lion"], tags: ["anthro"] },
  10528. {
  10529. back: {
  10530. height: math.unit(6, "feet"),
  10531. weight: math.unit(150, "lb"),
  10532. name: "Back",
  10533. image: {
  10534. source: "./media/characters/king/back.svg"
  10535. }
  10536. },
  10537. },
  10538. [
  10539. {
  10540. name: "Micro",
  10541. height: math.unit(2, "inches")
  10542. },
  10543. {
  10544. name: "Normal",
  10545. height: math.unit(8, "feet")
  10546. },
  10547. {
  10548. name: "Macro",
  10549. height: math.unit(200, "feet"),
  10550. default: true
  10551. },
  10552. {
  10553. name: "Megamacro",
  10554. height: math.unit(50, "miles")
  10555. },
  10556. ]
  10557. ))
  10558. characterMakers.push(() => makeCharacter(
  10559. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10560. {
  10561. anthro: {
  10562. height: math.unit(6 + 5 / 12, "feet"),
  10563. weight: math.unit(280, "lb"),
  10564. name: "Anthro",
  10565. image: {
  10566. source: "./media/characters/cordite/anthro.svg",
  10567. extra: 1986 / 1905,
  10568. bottom: 0.025
  10569. }
  10570. },
  10571. feral: {
  10572. height: math.unit(2, "feet"),
  10573. weight: math.unit(90, "lb"),
  10574. name: "Feral",
  10575. image: {
  10576. source: "./media/characters/cordite/feral.svg",
  10577. extra: 1260 / 755,
  10578. bottom: 0.05
  10579. }
  10580. },
  10581. },
  10582. [
  10583. {
  10584. name: "Normal",
  10585. height: math.unit(6 + 5 / 12, "feet"),
  10586. default: true
  10587. },
  10588. ]
  10589. ))
  10590. characterMakers.push(() => makeCharacter(
  10591. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10592. {
  10593. front: {
  10594. height: math.unit(6, "feet"),
  10595. weight: math.unit(150, "lb"),
  10596. name: "Front",
  10597. image: {
  10598. source: "./media/characters/pianostrong/front.svg",
  10599. extra: 6577 / 6254,
  10600. bottom: 0.02
  10601. }
  10602. },
  10603. side: {
  10604. height: math.unit(6, "feet"),
  10605. weight: math.unit(150, "lb"),
  10606. name: "Side",
  10607. image: {
  10608. source: "./media/characters/pianostrong/side.svg",
  10609. extra: 6106 / 5730
  10610. }
  10611. },
  10612. back: {
  10613. height: math.unit(6, "feet"),
  10614. weight: math.unit(150, "lb"),
  10615. name: "Back",
  10616. image: {
  10617. source: "./media/characters/pianostrong/back.svg",
  10618. extra: 6085 / 5733,
  10619. bottom: 0.01
  10620. }
  10621. },
  10622. },
  10623. [
  10624. {
  10625. name: "Macro",
  10626. height: math.unit(100, "feet")
  10627. },
  10628. {
  10629. name: "Macro+",
  10630. height: math.unit(300, "feet"),
  10631. default: true
  10632. },
  10633. {
  10634. name: "Macro++",
  10635. height: math.unit(1000, "feet")
  10636. },
  10637. ]
  10638. ))
  10639. characterMakers.push(() => makeCharacter(
  10640. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10641. {
  10642. front: {
  10643. height: math.unit(6, "feet"),
  10644. weight: math.unit(150, "lb"),
  10645. name: "Front",
  10646. image: {
  10647. source: "./media/characters/kona/front.svg",
  10648. extra: 2960 / 2629,
  10649. bottom: 0.005
  10650. }
  10651. },
  10652. },
  10653. [
  10654. {
  10655. name: "Normal",
  10656. height: math.unit(11 + 8 / 12, "feet")
  10657. },
  10658. {
  10659. name: "Macro",
  10660. height: math.unit(850, "feet"),
  10661. default: true
  10662. },
  10663. {
  10664. name: "Macro+",
  10665. height: math.unit(1.5, "km"),
  10666. default: true
  10667. },
  10668. {
  10669. name: "Megamacro",
  10670. height: math.unit(80, "miles")
  10671. },
  10672. {
  10673. name: "Gigamacro",
  10674. height: math.unit(3500, "miles")
  10675. },
  10676. ]
  10677. ))
  10678. characterMakers.push(() => makeCharacter(
  10679. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10680. {
  10681. side: {
  10682. height: math.unit(1.9, "meters"),
  10683. weight: math.unit(326, "kg"),
  10684. name: "Side",
  10685. image: {
  10686. source: "./media/characters/levi/side.svg",
  10687. extra: 1704 / 1334,
  10688. bottom: 0.02
  10689. }
  10690. },
  10691. },
  10692. [
  10693. {
  10694. name: "Normal",
  10695. height: math.unit(1.9, "meters"),
  10696. default: true
  10697. },
  10698. {
  10699. name: "Macro",
  10700. height: math.unit(20, "meters")
  10701. },
  10702. {
  10703. name: "Macro+",
  10704. height: math.unit(200, "meters")
  10705. },
  10706. {
  10707. name: "Megamacro",
  10708. height: math.unit(2, "km")
  10709. },
  10710. {
  10711. name: "Megamacro+",
  10712. height: math.unit(20, "km")
  10713. },
  10714. {
  10715. name: "Gigamacro",
  10716. height: math.unit(2500, "km")
  10717. },
  10718. {
  10719. name: "Gigamacro+",
  10720. height: math.unit(120000, "km")
  10721. },
  10722. {
  10723. name: "Teramacro",
  10724. height: math.unit(7.77e6, "km")
  10725. },
  10726. ]
  10727. ))
  10728. characterMakers.push(() => makeCharacter(
  10729. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10730. {
  10731. front: {
  10732. height: math.unit(6 + 4 / 12, "feet"),
  10733. weight: math.unit(188, "lb"),
  10734. name: "Front",
  10735. image: {
  10736. source: "./media/characters/bmc/front.svg",
  10737. extra: 1067 / 1022,
  10738. bottom: 0.047
  10739. }
  10740. },
  10741. },
  10742. [
  10743. {
  10744. name: "Human-sized",
  10745. height: math.unit(6 + 4 / 12, "feet")
  10746. },
  10747. {
  10748. name: "Small",
  10749. height: math.unit(250, "feet")
  10750. },
  10751. {
  10752. name: "Normal",
  10753. height: math.unit(1250, "feet"),
  10754. default: true
  10755. },
  10756. {
  10757. name: "Good Day",
  10758. height: math.unit(88, "miles")
  10759. },
  10760. {
  10761. name: "Largest Measured Size",
  10762. height: math.unit(11.2e6, "lightyears")
  10763. },
  10764. ]
  10765. ))
  10766. characterMakers.push(() => makeCharacter(
  10767. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10768. {
  10769. front: {
  10770. height: math.unit(20, "feet"),
  10771. weight: math.unit(2016, "kg"),
  10772. name: "Front",
  10773. image: {
  10774. source: "./media/characters/sven-the-kaiju/front.svg",
  10775. extra: 1479 / 1449,
  10776. bottom: 0.05
  10777. }
  10778. },
  10779. },
  10780. [
  10781. {
  10782. name: "Fairy",
  10783. height: math.unit(6, "inches")
  10784. },
  10785. {
  10786. name: "Normal",
  10787. height: math.unit(20, "feet"),
  10788. default: true
  10789. },
  10790. {
  10791. name: "Rampage",
  10792. height: math.unit(200, "feet")
  10793. },
  10794. {
  10795. name: "Archfey Forest Guardian",
  10796. height: math.unit(1, "mile")
  10797. },
  10798. ]
  10799. ))
  10800. characterMakers.push(() => makeCharacter(
  10801. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10802. {
  10803. front: {
  10804. height: math.unit(4, "meters"),
  10805. weight: math.unit(2, "tons"),
  10806. name: "Front",
  10807. image: {
  10808. source: "./media/characters/marik/front.svg",
  10809. extra: 1057 / 1003,
  10810. bottom: 0.08
  10811. }
  10812. },
  10813. },
  10814. [
  10815. {
  10816. name: "Normal",
  10817. height: math.unit(4, "meters"),
  10818. default: true
  10819. },
  10820. {
  10821. name: "Macro",
  10822. height: math.unit(20, "meters")
  10823. },
  10824. {
  10825. name: "Megamacro",
  10826. height: math.unit(50, "km")
  10827. },
  10828. {
  10829. name: "Gigamacro",
  10830. height: math.unit(100, "km")
  10831. },
  10832. {
  10833. name: "Alpha Macro",
  10834. height: math.unit(7.88e7, "yottameters")
  10835. },
  10836. ]
  10837. ))
  10838. characterMakers.push(() => makeCharacter(
  10839. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10840. {
  10841. front: {
  10842. height: math.unit(6, "feet"),
  10843. weight: math.unit(110, "lb"),
  10844. name: "Front",
  10845. image: {
  10846. source: "./media/characters/mel/front.svg",
  10847. extra: 736 / 617,
  10848. bottom: 0.017
  10849. }
  10850. },
  10851. },
  10852. [
  10853. {
  10854. name: "Pico",
  10855. height: math.unit(3, "pm")
  10856. },
  10857. {
  10858. name: "Nano",
  10859. height: math.unit(3, "nm")
  10860. },
  10861. {
  10862. name: "Micro",
  10863. height: math.unit(0.3, "mm"),
  10864. default: true
  10865. },
  10866. {
  10867. name: "Micro+",
  10868. height: math.unit(3, "mm")
  10869. },
  10870. {
  10871. name: "Normal",
  10872. height: math.unit(5 + 10.5 / 12, "feet")
  10873. },
  10874. ]
  10875. ))
  10876. characterMakers.push(() => makeCharacter(
  10877. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10878. {
  10879. kaiju: {
  10880. height: math.unit(1.75, "meters"),
  10881. weight: math.unit(55, "kg"),
  10882. name: "Kaiju",
  10883. image: {
  10884. source: "./media/characters/lykonous/kaiju.svg",
  10885. extra: 1055 / 946,
  10886. bottom: 0.135
  10887. }
  10888. },
  10889. },
  10890. [
  10891. {
  10892. name: "Normal",
  10893. height: math.unit(2.5, "meters"),
  10894. default: true
  10895. },
  10896. {
  10897. name: "Kaiju Dragon",
  10898. height: math.unit(60, "meters")
  10899. },
  10900. {
  10901. name: "Mega Kaiju",
  10902. height: math.unit(120, "km")
  10903. },
  10904. {
  10905. name: "Giga Kaiju",
  10906. height: math.unit(200, "megameters")
  10907. },
  10908. {
  10909. name: "Terra Kaiju",
  10910. height: math.unit(400, "gigameters")
  10911. },
  10912. {
  10913. name: "Kaiju Dragon God",
  10914. height: math.unit(13000, "exaparsecs")
  10915. },
  10916. ]
  10917. ))
  10918. characterMakers.push(() => makeCharacter(
  10919. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10920. {
  10921. front: {
  10922. height: math.unit(6, "feet"),
  10923. weight: math.unit(150, "lb"),
  10924. name: "Front",
  10925. image: {
  10926. source: "./media/characters/blü/front.svg",
  10927. extra: 1883 / 1564,
  10928. bottom: 0.031
  10929. }
  10930. },
  10931. },
  10932. [
  10933. {
  10934. name: "Normal",
  10935. height: math.unit(13, "feet"),
  10936. default: true
  10937. },
  10938. {
  10939. name: "Big Boi",
  10940. height: math.unit(150, "meters")
  10941. },
  10942. {
  10943. name: "Mini Stomper",
  10944. height: math.unit(300, "meters")
  10945. },
  10946. {
  10947. name: "Macro",
  10948. height: math.unit(1000, "meters")
  10949. },
  10950. {
  10951. name: "Megamacro",
  10952. height: math.unit(11000, "meters")
  10953. },
  10954. {
  10955. name: "Gigamacro",
  10956. height: math.unit(11000, "km")
  10957. },
  10958. {
  10959. name: "Teramacro",
  10960. height: math.unit(420000, "km")
  10961. },
  10962. {
  10963. name: "Examacro",
  10964. height: math.unit(120, "parsecs")
  10965. },
  10966. {
  10967. name: "God Tho",
  10968. height: math.unit(98000000000, "parsecs")
  10969. },
  10970. ]
  10971. ))
  10972. characterMakers.push(() => makeCharacter(
  10973. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10974. {
  10975. taurFront: {
  10976. height: math.unit(6, "feet"),
  10977. weight: math.unit(200, "lb"),
  10978. name: "Taur (Front)",
  10979. image: {
  10980. source: "./media/characters/scales/taur-front.svg",
  10981. extra: 1,
  10982. bottom: 0.05
  10983. }
  10984. },
  10985. taurBack: {
  10986. height: math.unit(6, "feet"),
  10987. weight: math.unit(200, "lb"),
  10988. name: "Taur (Back)",
  10989. image: {
  10990. source: "./media/characters/scales/taur-back.svg",
  10991. extra: 1,
  10992. bottom: 0.08
  10993. }
  10994. },
  10995. anthro: {
  10996. height: math.unit(6 * 7 / 12, "feet"),
  10997. weight: math.unit(100, "lb"),
  10998. name: "Anthro",
  10999. image: {
  11000. source: "./media/characters/scales/anthro.svg",
  11001. extra: 1,
  11002. bottom: 0.06
  11003. }
  11004. },
  11005. },
  11006. [
  11007. {
  11008. name: "Normal",
  11009. height: math.unit(12, "feet"),
  11010. default: true
  11011. },
  11012. ]
  11013. ))
  11014. characterMakers.push(() => makeCharacter(
  11015. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11016. {
  11017. front: {
  11018. height: math.unit(6, "feet"),
  11019. weight: math.unit(150, "lb"),
  11020. name: "Front",
  11021. image: {
  11022. source: "./media/characters/koragos/front.svg",
  11023. extra: 841 / 794,
  11024. bottom: 0.035
  11025. }
  11026. },
  11027. back: {
  11028. height: math.unit(6, "feet"),
  11029. weight: math.unit(150, "lb"),
  11030. name: "Back",
  11031. image: {
  11032. source: "./media/characters/koragos/back.svg",
  11033. extra: 841 / 810,
  11034. bottom: 0.022
  11035. }
  11036. },
  11037. },
  11038. [
  11039. {
  11040. name: "Normal",
  11041. height: math.unit(6 + 11 / 12, "feet"),
  11042. default: true
  11043. },
  11044. {
  11045. name: "Macro",
  11046. height: math.unit(490, "feet")
  11047. },
  11048. {
  11049. name: "Megamacro",
  11050. height: math.unit(10, "miles")
  11051. },
  11052. {
  11053. name: "Gigamacro",
  11054. height: math.unit(50, "miles")
  11055. },
  11056. ]
  11057. ))
  11058. characterMakers.push(() => makeCharacter(
  11059. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11060. {
  11061. front: {
  11062. height: math.unit(6, "feet"),
  11063. weight: math.unit(250, "lb"),
  11064. name: "Front",
  11065. image: {
  11066. source: "./media/characters/xylrem/front.svg",
  11067. extra: 3323 / 3050,
  11068. bottom: 0.065
  11069. }
  11070. },
  11071. },
  11072. [
  11073. {
  11074. name: "Micro",
  11075. height: math.unit(4, "feet")
  11076. },
  11077. {
  11078. name: "Normal",
  11079. height: math.unit(16, "feet"),
  11080. default: true
  11081. },
  11082. {
  11083. name: "Macro",
  11084. height: math.unit(2720, "feet")
  11085. },
  11086. {
  11087. name: "Megamacro",
  11088. height: math.unit(25000, "miles")
  11089. },
  11090. ]
  11091. ))
  11092. characterMakers.push(() => makeCharacter(
  11093. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11094. {
  11095. front: {
  11096. height: math.unit(8, "feet"),
  11097. weight: math.unit(250, "kg"),
  11098. name: "Front",
  11099. image: {
  11100. source: "./media/characters/ikideru/front.svg",
  11101. extra: 930 / 870,
  11102. bottom: 0.087
  11103. }
  11104. },
  11105. back: {
  11106. height: math.unit(8, "feet"),
  11107. weight: math.unit(250, "kg"),
  11108. name: "Back",
  11109. image: {
  11110. source: "./media/characters/ikideru/back.svg",
  11111. extra: 919 / 852,
  11112. bottom: 0.055
  11113. }
  11114. },
  11115. },
  11116. [
  11117. {
  11118. name: "Rare",
  11119. height: math.unit(8, "feet"),
  11120. default: true
  11121. },
  11122. {
  11123. name: "Playful Loom",
  11124. height: math.unit(80, "feet")
  11125. },
  11126. {
  11127. name: "City Leaner",
  11128. height: math.unit(230, "feet")
  11129. },
  11130. {
  11131. name: "Megamacro",
  11132. height: math.unit(2500, "feet")
  11133. },
  11134. {
  11135. name: "Gigamacro",
  11136. height: math.unit(26400, "feet")
  11137. },
  11138. {
  11139. name: "Tectonic Shifter",
  11140. height: math.unit(1.7, "megameters")
  11141. },
  11142. {
  11143. name: "Planet Carer",
  11144. height: math.unit(21, "megameters")
  11145. },
  11146. {
  11147. name: "God",
  11148. height: math.unit(11157.22, "parsecs")
  11149. },
  11150. ]
  11151. ))
  11152. characterMakers.push(() => makeCharacter(
  11153. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11154. {
  11155. front: {
  11156. height: math.unit(6, "feet"),
  11157. weight: math.unit(120, "lb"),
  11158. name: "Front",
  11159. image: {
  11160. source: "./media/characters/neo/front.svg"
  11161. }
  11162. },
  11163. },
  11164. [
  11165. {
  11166. name: "Micro",
  11167. height: math.unit(2, "inches"),
  11168. default: true
  11169. },
  11170. {
  11171. name: "Human Size",
  11172. height: math.unit(5 + 8 / 12, "feet")
  11173. },
  11174. ]
  11175. ))
  11176. characterMakers.push(() => makeCharacter(
  11177. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11178. {
  11179. front: {
  11180. height: math.unit(13 + 10 / 12, "feet"),
  11181. weight: math.unit(5320, "lb"),
  11182. name: "Front",
  11183. image: {
  11184. source: "./media/characters/chauncey-chantz/front.svg",
  11185. extra: 1587 / 1435,
  11186. bottom: 0.02
  11187. }
  11188. },
  11189. },
  11190. [
  11191. {
  11192. name: "Normal",
  11193. height: math.unit(13 + 10 / 12, "feet"),
  11194. default: true
  11195. },
  11196. {
  11197. name: "Macro",
  11198. height: math.unit(45, "feet")
  11199. },
  11200. {
  11201. name: "Megamacro",
  11202. height: math.unit(250, "miles")
  11203. },
  11204. {
  11205. name: "Planetary",
  11206. height: math.unit(10000, "miles")
  11207. },
  11208. {
  11209. name: "Galactic",
  11210. height: math.unit(40000, "parsecs")
  11211. },
  11212. {
  11213. name: "Universal",
  11214. height: math.unit(1, "yottameter")
  11215. },
  11216. ]
  11217. ))
  11218. characterMakers.push(() => makeCharacter(
  11219. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11220. {
  11221. front: {
  11222. height: math.unit(6, "feet"),
  11223. weight: math.unit(150, "lb"),
  11224. name: "Front",
  11225. image: {
  11226. source: "./media/characters/epifox/front.svg",
  11227. extra: 1,
  11228. bottom: 0.075
  11229. }
  11230. },
  11231. },
  11232. [
  11233. {
  11234. name: "Micro",
  11235. height: math.unit(6, "inches")
  11236. },
  11237. {
  11238. name: "Normal",
  11239. height: math.unit(12, "feet"),
  11240. default: true
  11241. },
  11242. {
  11243. name: "Macro",
  11244. height: math.unit(3810, "feet")
  11245. },
  11246. {
  11247. name: "Megamacro",
  11248. height: math.unit(500, "miles")
  11249. },
  11250. ]
  11251. ))
  11252. characterMakers.push(() => makeCharacter(
  11253. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11254. {
  11255. front: {
  11256. height: math.unit(1.8796, "m"),
  11257. weight: math.unit(230, "lb"),
  11258. name: "Front",
  11259. image: {
  11260. source: "./media/characters/colin-t/front.svg",
  11261. extra: 1272 / 1193,
  11262. bottom: 0.07
  11263. }
  11264. },
  11265. },
  11266. [
  11267. {
  11268. name: "Micro",
  11269. height: math.unit(0.571, "meters")
  11270. },
  11271. {
  11272. name: "Normal",
  11273. height: math.unit(1.8796, "meters"),
  11274. default: true
  11275. },
  11276. {
  11277. name: "Tall",
  11278. height: math.unit(4, "meters")
  11279. },
  11280. {
  11281. name: "Macro",
  11282. height: math.unit(67.241, "meters")
  11283. },
  11284. {
  11285. name: "Megamacro",
  11286. height: math.unit(371.856, "meters")
  11287. },
  11288. {
  11289. name: "Planetary",
  11290. height: math.unit(12631.5689, "km")
  11291. },
  11292. ]
  11293. ))
  11294. characterMakers.push(() => makeCharacter(
  11295. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11296. {
  11297. front: {
  11298. height: math.unit(1.85, "meters"),
  11299. weight: math.unit(80, "kg"),
  11300. name: "Front",
  11301. image: {
  11302. source: "./media/characters/matvei/front.svg",
  11303. extra: 614 / 594,
  11304. bottom: 0.01
  11305. }
  11306. },
  11307. },
  11308. [
  11309. {
  11310. name: "Normal",
  11311. height: math.unit(1.85, "meters"),
  11312. default: true
  11313. },
  11314. ]
  11315. ))
  11316. characterMakers.push(() => makeCharacter(
  11317. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11318. {
  11319. front: {
  11320. height: math.unit(5 + 9 / 12, "feet"),
  11321. weight: math.unit(70, "lb"),
  11322. name: "Front",
  11323. image: {
  11324. source: "./media/characters/quincy/front.svg",
  11325. extra: 3041 / 2751
  11326. }
  11327. },
  11328. back: {
  11329. height: math.unit(5 + 9 / 12, "feet"),
  11330. weight: math.unit(70, "lb"),
  11331. name: "Back",
  11332. image: {
  11333. source: "./media/characters/quincy/back.svg",
  11334. extra: 3041 / 2751
  11335. }
  11336. },
  11337. flying: {
  11338. height: math.unit(5 + 4 / 12, "feet"),
  11339. weight: math.unit(70, "lb"),
  11340. name: "Flying",
  11341. image: {
  11342. source: "./media/characters/quincy/flying.svg",
  11343. extra: 1044 / 930
  11344. }
  11345. },
  11346. },
  11347. [
  11348. {
  11349. name: "Micro",
  11350. height: math.unit(3, "cm")
  11351. },
  11352. {
  11353. name: "Normal",
  11354. height: math.unit(5 + 9 / 12, "feet")
  11355. },
  11356. {
  11357. name: "Macro",
  11358. height: math.unit(200, "meters"),
  11359. default: true
  11360. },
  11361. {
  11362. name: "Megamacro",
  11363. height: math.unit(1000, "meters")
  11364. },
  11365. ]
  11366. ))
  11367. characterMakers.push(() => makeCharacter(
  11368. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11369. {
  11370. front: {
  11371. height: math.unit(4 + 7 / 12, "feet"),
  11372. weight: math.unit(50, "lb"),
  11373. name: "Front",
  11374. image: {
  11375. source: "./media/characters/vanrel/front.svg",
  11376. extra: 1,
  11377. bottom: 0.02
  11378. }
  11379. },
  11380. frontAlt: {
  11381. height: math.unit(4 + 7 / 12, "feet"),
  11382. weight: math.unit(50, "lb"),
  11383. name: "Front-alt",
  11384. image: {
  11385. source: "./media/characters/vanrel/front-alt.svg",
  11386. extra: 1,
  11387. bottom: 15 / 1511
  11388. }
  11389. },
  11390. elemental: {
  11391. height: math.unit(3, "feet"),
  11392. weight: math.unit(50, "lb"),
  11393. name: "Elemental",
  11394. image: {
  11395. source: "./media/characters/vanrel/elemental.svg",
  11396. extra: 192.3 / 162.8,
  11397. bottom: 1.79 / 194.17
  11398. }
  11399. },
  11400. side: {
  11401. height: math.unit(4 + 7 / 12, "feet"),
  11402. weight: math.unit(50, "lb"),
  11403. name: "Side",
  11404. image: {
  11405. source: "./media/characters/vanrel/side.svg",
  11406. extra: 1,
  11407. bottom: 0.025
  11408. }
  11409. },
  11410. tome: {
  11411. height: math.unit(1.35, "feet"),
  11412. weight: math.unit(10, "lb"),
  11413. name: "Vanrel's Tome",
  11414. rename: true,
  11415. image: {
  11416. source: "./media/characters/vanrel/tome.svg"
  11417. }
  11418. },
  11419. beans: {
  11420. height: math.unit(0.89, "feet"),
  11421. name: "Beans",
  11422. image: {
  11423. source: "./media/characters/vanrel/beans.svg"
  11424. }
  11425. },
  11426. },
  11427. [
  11428. {
  11429. name: "Normal",
  11430. height: math.unit(4 + 7 / 12, "feet"),
  11431. default: true
  11432. },
  11433. ]
  11434. ))
  11435. characterMakers.push(() => makeCharacter(
  11436. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11437. {
  11438. front: {
  11439. height: math.unit(7 + 5 / 12, "feet"),
  11440. weight: math.unit(150, "lb"),
  11441. name: "Front",
  11442. image: {
  11443. source: "./media/characters/kuiper-vanrel/front.svg",
  11444. extra: 1118 / 1068,
  11445. bottom: 0.09
  11446. }
  11447. },
  11448. foot: {
  11449. height: math.unit(0.55, "meters"),
  11450. name: "Foot",
  11451. image: {
  11452. source: "./media/characters/kuiper-vanrel/foot.svg",
  11453. }
  11454. },
  11455. battle: {
  11456. height: math.unit(6.824, "feet"),
  11457. weight: math.unit(150, "lb"),
  11458. name: "Battle",
  11459. image: {
  11460. source: "./media/characters/kuiper-vanrel/battle.svg",
  11461. extra: 1466 / 1327,
  11462. bottom: 29 / 1492.5
  11463. }
  11464. },
  11465. battleAlt: {
  11466. height: math.unit(6.824, "feet"),
  11467. weight: math.unit(150, "lb"),
  11468. name: "Battle (Alt)",
  11469. image: {
  11470. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11471. extra: 2081 / 1965,
  11472. bottom: 40 / 2121
  11473. }
  11474. },
  11475. },
  11476. [
  11477. {
  11478. name: "Normal",
  11479. height: math.unit(7 + 5 / 12, "feet"),
  11480. default: true
  11481. },
  11482. ]
  11483. ))
  11484. characterMakers.push(() => makeCharacter(
  11485. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11486. {
  11487. front: {
  11488. height: math.unit(8 + 5 / 12, "feet"),
  11489. weight: math.unit(150, "lb"),
  11490. name: "Front",
  11491. image: {
  11492. source: "./media/characters/keset-vanrel/front.svg",
  11493. extra: 1150 / 1084,
  11494. bottom: 0.05
  11495. }
  11496. },
  11497. hand: {
  11498. height: math.unit(0.6, "meters"),
  11499. name: "Hand",
  11500. image: {
  11501. source: "./media/characters/keset-vanrel/hand.svg"
  11502. }
  11503. },
  11504. foot: {
  11505. height: math.unit(0.94978, "meters"),
  11506. name: "Foot",
  11507. image: {
  11508. source: "./media/characters/keset-vanrel/foot.svg"
  11509. }
  11510. },
  11511. battle: {
  11512. height: math.unit(7.408, "feet"),
  11513. weight: math.unit(150, "lb"),
  11514. name: "Battle",
  11515. image: {
  11516. source: "./media/characters/keset-vanrel/battle.svg",
  11517. extra: 1890 / 1386,
  11518. bottom: 73.28 / 1970
  11519. }
  11520. },
  11521. },
  11522. [
  11523. {
  11524. name: "Normal",
  11525. height: math.unit(8 + 5 / 12, "feet"),
  11526. default: true
  11527. },
  11528. ]
  11529. ))
  11530. characterMakers.push(() => makeCharacter(
  11531. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11532. {
  11533. front: {
  11534. height: math.unit(6, "feet"),
  11535. weight: math.unit(150, "lb"),
  11536. name: "Front",
  11537. image: {
  11538. source: "./media/characters/neos/front.svg",
  11539. extra: 1696 / 992,
  11540. bottom: 0.14
  11541. }
  11542. },
  11543. },
  11544. [
  11545. {
  11546. name: "Normal",
  11547. height: math.unit(54, "cm"),
  11548. default: true
  11549. },
  11550. {
  11551. name: "Macro",
  11552. height: math.unit(100, "m")
  11553. },
  11554. {
  11555. name: "Megamacro",
  11556. height: math.unit(10, "km")
  11557. },
  11558. {
  11559. name: "Megamacro+",
  11560. height: math.unit(100, "km")
  11561. },
  11562. {
  11563. name: "Gigamacro",
  11564. height: math.unit(100, "Mm")
  11565. },
  11566. {
  11567. name: "Teramacro",
  11568. height: math.unit(100, "Gm")
  11569. },
  11570. {
  11571. name: "Examacro",
  11572. height: math.unit(100, "Em")
  11573. },
  11574. {
  11575. name: "Godly",
  11576. height: math.unit(10000, "Ym")
  11577. },
  11578. {
  11579. name: "Beyond Godly",
  11580. height: math.unit(25, "multiverses")
  11581. },
  11582. ]
  11583. ))
  11584. characterMakers.push(() => makeCharacter(
  11585. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11586. {
  11587. feminine: {
  11588. height: math.unit(5, "feet"),
  11589. weight: math.unit(100, "lb"),
  11590. name: "Feminine",
  11591. image: {
  11592. source: "./media/characters/sammy-mouse/feminine.svg",
  11593. extra: 2526 / 2425,
  11594. bottom: 0.123
  11595. }
  11596. },
  11597. masculine: {
  11598. height: math.unit(5, "feet"),
  11599. weight: math.unit(100, "lb"),
  11600. name: "Masculine",
  11601. image: {
  11602. source: "./media/characters/sammy-mouse/masculine.svg",
  11603. extra: 2526 / 2425,
  11604. bottom: 0.123
  11605. }
  11606. },
  11607. },
  11608. [
  11609. {
  11610. name: "Micro",
  11611. height: math.unit(5, "inches")
  11612. },
  11613. {
  11614. name: "Normal",
  11615. height: math.unit(5, "feet"),
  11616. default: true
  11617. },
  11618. {
  11619. name: "Macro",
  11620. height: math.unit(60, "feet")
  11621. },
  11622. ]
  11623. ))
  11624. characterMakers.push(() => makeCharacter(
  11625. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11626. {
  11627. front: {
  11628. height: math.unit(4, "feet"),
  11629. weight: math.unit(50, "lb"),
  11630. name: "Front",
  11631. image: {
  11632. source: "./media/characters/kole/front.svg",
  11633. extra: 1423 / 1303,
  11634. bottom: 0.025
  11635. }
  11636. },
  11637. back: {
  11638. height: math.unit(4, "feet"),
  11639. weight: math.unit(50, "lb"),
  11640. name: "Back",
  11641. image: {
  11642. source: "./media/characters/kole/back.svg",
  11643. extra: 1426 / 1280,
  11644. bottom: 0.02
  11645. }
  11646. },
  11647. },
  11648. [
  11649. {
  11650. name: "Normal",
  11651. height: math.unit(4, "feet"),
  11652. default: true
  11653. },
  11654. ]
  11655. ))
  11656. characterMakers.push(() => makeCharacter(
  11657. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11658. {
  11659. front: {
  11660. height: math.unit(2 + 6 / 12, "feet"),
  11661. weight: math.unit(20, "lb"),
  11662. name: "Front",
  11663. image: {
  11664. source: "./media/characters/rufran/front.svg",
  11665. extra: 2041 / 1839,
  11666. bottom: 0.055
  11667. }
  11668. },
  11669. back: {
  11670. height: math.unit(2 + 6 / 12, "feet"),
  11671. weight: math.unit(20, "lb"),
  11672. name: "Back",
  11673. image: {
  11674. source: "./media/characters/rufran/back.svg",
  11675. extra: 2054 / 1839,
  11676. bottom: 0.01
  11677. }
  11678. },
  11679. hand: {
  11680. height: math.unit(0.2166, "meters"),
  11681. name: "Hand",
  11682. image: {
  11683. source: "./media/characters/rufran/hand.svg"
  11684. }
  11685. },
  11686. foot: {
  11687. height: math.unit(0.185, "meters"),
  11688. name: "Foot",
  11689. image: {
  11690. source: "./media/characters/rufran/foot.svg"
  11691. }
  11692. },
  11693. },
  11694. [
  11695. {
  11696. name: "Micro",
  11697. height: math.unit(1, "inch")
  11698. },
  11699. {
  11700. name: "Normal",
  11701. height: math.unit(2 + 6 / 12, "feet"),
  11702. default: true
  11703. },
  11704. {
  11705. name: "Big",
  11706. height: math.unit(60, "feet")
  11707. },
  11708. {
  11709. name: "Macro",
  11710. height: math.unit(325, "feet")
  11711. },
  11712. ]
  11713. ))
  11714. characterMakers.push(() => makeCharacter(
  11715. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11716. {
  11717. front: {
  11718. height: math.unit(0.3, "meters"),
  11719. weight: math.unit(3.5, "kg"),
  11720. name: "Front",
  11721. image: {
  11722. source: "./media/characters/chip/front.svg",
  11723. extra: 748 / 674
  11724. }
  11725. },
  11726. },
  11727. [
  11728. {
  11729. name: "Micro",
  11730. height: math.unit(1, "inch"),
  11731. default: true
  11732. },
  11733. ]
  11734. ))
  11735. characterMakers.push(() => makeCharacter(
  11736. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11737. {
  11738. side: {
  11739. height: math.unit(2.3, "meters"),
  11740. weight: math.unit(3500, "lb"),
  11741. name: "Side",
  11742. image: {
  11743. source: "./media/characters/torvid/side.svg",
  11744. extra: 1972 / 722,
  11745. bottom: 0.035
  11746. }
  11747. },
  11748. },
  11749. [
  11750. {
  11751. name: "Normal",
  11752. height: math.unit(2.3, "meters"),
  11753. default: true
  11754. },
  11755. ]
  11756. ))
  11757. characterMakers.push(() => makeCharacter(
  11758. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11759. {
  11760. front: {
  11761. height: math.unit(2, "meters"),
  11762. weight: math.unit(150.5, "kg"),
  11763. name: "Front",
  11764. image: {
  11765. source: "./media/characters/susan/front.svg",
  11766. extra: 693 / 635,
  11767. bottom: 0.05
  11768. }
  11769. },
  11770. },
  11771. [
  11772. {
  11773. name: "Megamacro",
  11774. height: math.unit(505, "miles"),
  11775. default: true
  11776. },
  11777. ]
  11778. ))
  11779. characterMakers.push(() => makeCharacter(
  11780. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11781. {
  11782. front: {
  11783. height: math.unit(6, "feet"),
  11784. weight: math.unit(150, "lb"),
  11785. name: "Front",
  11786. image: {
  11787. source: "./media/characters/raindrops/front.svg",
  11788. extra: 2655 / 2461,
  11789. bottom: 49 / 2705
  11790. }
  11791. },
  11792. back: {
  11793. height: math.unit(6, "feet"),
  11794. weight: math.unit(150, "lb"),
  11795. name: "Back",
  11796. image: {
  11797. source: "./media/characters/raindrops/back.svg",
  11798. extra: 2574 / 2400,
  11799. bottom: 65 / 2634
  11800. }
  11801. },
  11802. },
  11803. [
  11804. {
  11805. name: "Micro",
  11806. height: math.unit(6, "inches")
  11807. },
  11808. {
  11809. name: "Normal",
  11810. height: math.unit(6 + 2 / 12, "feet")
  11811. },
  11812. {
  11813. name: "Macro",
  11814. height: math.unit(131, "feet"),
  11815. default: true
  11816. },
  11817. {
  11818. name: "Megamacro",
  11819. height: math.unit(15, "miles")
  11820. },
  11821. {
  11822. name: "Gigamacro",
  11823. height: math.unit(4000, "miles")
  11824. },
  11825. {
  11826. name: "Teramacro",
  11827. height: math.unit(315000, "miles")
  11828. },
  11829. ]
  11830. ))
  11831. characterMakers.push(() => makeCharacter(
  11832. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11833. {
  11834. front: {
  11835. height: math.unit(2.794, "meters"),
  11836. weight: math.unit(325, "kg"),
  11837. name: "Front",
  11838. image: {
  11839. source: "./media/characters/tezwa/front.svg",
  11840. extra: 2083 / 1906,
  11841. bottom: 0.031
  11842. }
  11843. },
  11844. foot: {
  11845. height: math.unit(0.687, "meters"),
  11846. name: "Foot",
  11847. image: {
  11848. source: "./media/characters/tezwa/foot.svg"
  11849. }
  11850. },
  11851. },
  11852. [
  11853. {
  11854. name: "Normal",
  11855. height: math.unit(9 + 2 / 12, "feet"),
  11856. default: true
  11857. },
  11858. ]
  11859. ))
  11860. characterMakers.push(() => makeCharacter(
  11861. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11862. {
  11863. front: {
  11864. height: math.unit(58, "feet"),
  11865. weight: math.unit(89000, "lb"),
  11866. name: "Front",
  11867. image: {
  11868. source: "./media/characters/typhus/front.svg",
  11869. extra: 816 / 800,
  11870. bottom: 0.065
  11871. }
  11872. },
  11873. },
  11874. [
  11875. {
  11876. name: "Macro",
  11877. height: math.unit(58, "feet"),
  11878. default: true
  11879. },
  11880. ]
  11881. ))
  11882. characterMakers.push(() => makeCharacter(
  11883. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11884. {
  11885. front: {
  11886. height: math.unit(12, "feet"),
  11887. weight: math.unit(6, "tonnes"),
  11888. name: "Front",
  11889. image: {
  11890. source: "./media/characters/lyra-von-wulf/front.svg",
  11891. extra: 1,
  11892. bottom: 0.10
  11893. }
  11894. },
  11895. frontMecha: {
  11896. height: math.unit(12, "feet"),
  11897. weight: math.unit(12, "tonnes"),
  11898. name: "Front (Mecha)",
  11899. image: {
  11900. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11901. extra: 1,
  11902. bottom: 0.042
  11903. }
  11904. },
  11905. maw: {
  11906. height: math.unit(2.2, "feet"),
  11907. name: "Maw",
  11908. image: {
  11909. source: "./media/characters/lyra-von-wulf/maw.svg"
  11910. }
  11911. },
  11912. },
  11913. [
  11914. {
  11915. name: "Normal",
  11916. height: math.unit(12, "feet"),
  11917. default: true
  11918. },
  11919. {
  11920. name: "Classic",
  11921. height: math.unit(50, "feet")
  11922. },
  11923. {
  11924. name: "Macro",
  11925. height: math.unit(500, "feet")
  11926. },
  11927. {
  11928. name: "Megamacro",
  11929. height: math.unit(1, "mile")
  11930. },
  11931. {
  11932. name: "Gigamacro",
  11933. height: math.unit(400, "miles")
  11934. },
  11935. {
  11936. name: "Teramacro",
  11937. height: math.unit(22000, "miles")
  11938. },
  11939. {
  11940. name: "Solarmacro",
  11941. height: math.unit(8600000, "miles")
  11942. },
  11943. {
  11944. name: "Galactic",
  11945. height: math.unit(1057000, "lightyears")
  11946. },
  11947. ]
  11948. ))
  11949. characterMakers.push(() => makeCharacter(
  11950. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11951. {
  11952. front: {
  11953. height: math.unit(6 + 10 / 12, "feet"),
  11954. weight: math.unit(150, "lb"),
  11955. name: "Front",
  11956. image: {
  11957. source: "./media/characters/dixon/front.svg",
  11958. extra: 3361 / 3209,
  11959. bottom: 0.01
  11960. }
  11961. },
  11962. },
  11963. [
  11964. {
  11965. name: "Normal",
  11966. height: math.unit(6 + 10 / 12, "feet"),
  11967. default: true
  11968. },
  11969. {
  11970. name: "Big",
  11971. height: math.unit(12, "meters")
  11972. },
  11973. {
  11974. name: "Macro",
  11975. height: math.unit(500, "meters")
  11976. },
  11977. {
  11978. name: "Megamacro",
  11979. height: math.unit(2, "km")
  11980. },
  11981. ]
  11982. ))
  11983. characterMakers.push(() => makeCharacter(
  11984. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11985. {
  11986. front: {
  11987. height: math.unit(185, "cm"),
  11988. weight: math.unit(68, "kg"),
  11989. name: "Front",
  11990. image: {
  11991. source: "./media/characters/kauko/front.svg",
  11992. extra: 1455 / 1421,
  11993. bottom: 0.03
  11994. }
  11995. },
  11996. back: {
  11997. height: math.unit(185, "cm"),
  11998. weight: math.unit(68, "kg"),
  11999. name: "Back",
  12000. image: {
  12001. source: "./media/characters/kauko/back.svg",
  12002. extra: 1455 / 1421,
  12003. bottom: 0.004
  12004. }
  12005. },
  12006. },
  12007. [
  12008. {
  12009. name: "Normal",
  12010. height: math.unit(185, "cm"),
  12011. default: true
  12012. },
  12013. ]
  12014. ))
  12015. characterMakers.push(() => makeCharacter(
  12016. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12017. {
  12018. front: {
  12019. height: math.unit(6, "feet"),
  12020. weight: math.unit(150, "kg"),
  12021. name: "Front",
  12022. image: {
  12023. source: "./media/characters/varg/front.svg",
  12024. extra: 1108 / 1018,
  12025. bottom: 0.0375
  12026. }
  12027. },
  12028. },
  12029. [
  12030. {
  12031. name: "Normal",
  12032. height: math.unit(5, "meters")
  12033. },
  12034. {
  12035. name: "Macro",
  12036. height: math.unit(200, "meters")
  12037. },
  12038. {
  12039. name: "Megamacro",
  12040. height: math.unit(20, "kilometers")
  12041. },
  12042. {
  12043. name: "True Size",
  12044. height: math.unit(211, "km"),
  12045. default: true
  12046. },
  12047. {
  12048. name: "Gigamacro",
  12049. height: math.unit(1000, "km")
  12050. },
  12051. {
  12052. name: "Gigamacro+",
  12053. height: math.unit(8000, "km")
  12054. },
  12055. {
  12056. name: "Teramacro",
  12057. height: math.unit(1000000, "km")
  12058. },
  12059. ]
  12060. ))
  12061. characterMakers.push(() => makeCharacter(
  12062. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12063. {
  12064. front: {
  12065. height: math.unit(7 + 7 / 12, "feet"),
  12066. weight: math.unit(267, "lb"),
  12067. name: "Front",
  12068. image: {
  12069. source: "./media/characters/dayza/front.svg",
  12070. extra: 1262 / 1200,
  12071. bottom: 0.035
  12072. }
  12073. },
  12074. side: {
  12075. height: math.unit(7 + 7 / 12, "feet"),
  12076. weight: math.unit(267, "lb"),
  12077. name: "Side",
  12078. image: {
  12079. source: "./media/characters/dayza/side.svg",
  12080. extra: 1295 / 1245,
  12081. bottom: 0.05
  12082. }
  12083. },
  12084. back: {
  12085. height: math.unit(7 + 7 / 12, "feet"),
  12086. weight: math.unit(267, "lb"),
  12087. name: "Back",
  12088. image: {
  12089. source: "./media/characters/dayza/back.svg",
  12090. extra: 1241 / 1170
  12091. }
  12092. },
  12093. },
  12094. [
  12095. {
  12096. name: "Normal",
  12097. height: math.unit(7 + 7 / 12, "feet"),
  12098. default: true
  12099. },
  12100. {
  12101. name: "Macro",
  12102. height: math.unit(155, "feet")
  12103. },
  12104. ]
  12105. ))
  12106. characterMakers.push(() => makeCharacter(
  12107. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12108. {
  12109. front: {
  12110. height: math.unit(6 + 5 / 12, "feet"),
  12111. weight: math.unit(160, "lb"),
  12112. name: "Front",
  12113. image: {
  12114. source: "./media/characters/xanthos/front.svg",
  12115. extra: 1,
  12116. bottom: 0.04
  12117. }
  12118. },
  12119. back: {
  12120. height: math.unit(6 + 5 / 12, "feet"),
  12121. weight: math.unit(160, "lb"),
  12122. name: "Back",
  12123. image: {
  12124. source: "./media/characters/xanthos/back.svg",
  12125. extra: 1,
  12126. bottom: 0.03
  12127. }
  12128. },
  12129. hand: {
  12130. height: math.unit(0.928, "feet"),
  12131. name: "Hand",
  12132. image: {
  12133. source: "./media/characters/xanthos/hand.svg"
  12134. }
  12135. },
  12136. foot: {
  12137. height: math.unit(1.286, "feet"),
  12138. name: "Foot",
  12139. image: {
  12140. source: "./media/characters/xanthos/foot.svg"
  12141. }
  12142. },
  12143. },
  12144. [
  12145. {
  12146. name: "Normal",
  12147. height: math.unit(6 + 5 / 12, "feet"),
  12148. default: true
  12149. },
  12150. {
  12151. name: "Normal+",
  12152. height: math.unit(6, "meters")
  12153. },
  12154. {
  12155. name: "Macro",
  12156. height: math.unit(40, "feet")
  12157. },
  12158. {
  12159. name: "Macro+",
  12160. height: math.unit(200, "meters")
  12161. },
  12162. {
  12163. name: "Megamacro",
  12164. height: math.unit(20, "km")
  12165. },
  12166. {
  12167. name: "Megamacro+",
  12168. height: math.unit(100, "km")
  12169. },
  12170. ]
  12171. ))
  12172. characterMakers.push(() => makeCharacter(
  12173. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12174. {
  12175. front: {
  12176. height: math.unit(6 + 3 / 12, "feet"),
  12177. weight: math.unit(215, "lb"),
  12178. name: "Front",
  12179. image: {
  12180. source: "./media/characters/grynn/front.svg",
  12181. extra: 4627 / 4209,
  12182. bottom: 0.047
  12183. }
  12184. },
  12185. },
  12186. [
  12187. {
  12188. name: "Micro",
  12189. height: math.unit(6, "inches")
  12190. },
  12191. {
  12192. name: "Normal",
  12193. height: math.unit(6 + 3 / 12, "feet"),
  12194. default: true
  12195. },
  12196. {
  12197. name: "Big",
  12198. height: math.unit(104, "feet")
  12199. },
  12200. {
  12201. name: "Macro",
  12202. height: math.unit(944, "feet")
  12203. },
  12204. {
  12205. name: "Macro+",
  12206. height: math.unit(9480, "feet")
  12207. },
  12208. {
  12209. name: "Megamacro",
  12210. height: math.unit(78752, "feet")
  12211. },
  12212. {
  12213. name: "Megamacro+",
  12214. height: math.unit(630128, "feet")
  12215. },
  12216. {
  12217. name: "Megamacro++",
  12218. height: math.unit(3150695, "feet")
  12219. },
  12220. ]
  12221. ))
  12222. characterMakers.push(() => makeCharacter(
  12223. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12224. {
  12225. front: {
  12226. height: math.unit(7 + 5 / 12, "feet"),
  12227. weight: math.unit(450, "lb"),
  12228. name: "Front",
  12229. image: {
  12230. source: "./media/characters/mocha-aura/front.svg",
  12231. extra: 1907 / 1817,
  12232. bottom: 0.04
  12233. }
  12234. },
  12235. back: {
  12236. height: math.unit(7 + 5 / 12, "feet"),
  12237. weight: math.unit(450, "lb"),
  12238. name: "Back",
  12239. image: {
  12240. source: "./media/characters/mocha-aura/back.svg",
  12241. extra: 1900 / 1825,
  12242. bottom: 0.045
  12243. }
  12244. },
  12245. },
  12246. [
  12247. {
  12248. name: "Nano",
  12249. height: math.unit(1, "nm")
  12250. },
  12251. {
  12252. name: "Megamicro",
  12253. height: math.unit(1, "mm")
  12254. },
  12255. {
  12256. name: "Micro",
  12257. height: math.unit(3, "inches")
  12258. },
  12259. {
  12260. name: "Normal",
  12261. height: math.unit(7 + 5 / 12, "feet"),
  12262. default: true
  12263. },
  12264. {
  12265. name: "Macro",
  12266. height: math.unit(30, "feet")
  12267. },
  12268. {
  12269. name: "Megamacro",
  12270. height: math.unit(3500, "feet")
  12271. },
  12272. {
  12273. name: "Teramacro",
  12274. height: math.unit(500000, "miles")
  12275. },
  12276. {
  12277. name: "Petamacro",
  12278. height: math.unit(50000000000000000, "parsecs")
  12279. },
  12280. ]
  12281. ))
  12282. characterMakers.push(() => makeCharacter(
  12283. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12284. {
  12285. front: {
  12286. height: math.unit(6, "feet"),
  12287. weight: math.unit(150, "lb"),
  12288. name: "Front",
  12289. image: {
  12290. source: "./media/characters/ilisha-devya/front.svg",
  12291. extra: 1,
  12292. bottom: 0.175
  12293. }
  12294. },
  12295. back: {
  12296. height: math.unit(6, "feet"),
  12297. weight: math.unit(150, "lb"),
  12298. name: "Back",
  12299. image: {
  12300. source: "./media/characters/ilisha-devya/back.svg",
  12301. extra: 1,
  12302. bottom: 0.015
  12303. }
  12304. },
  12305. },
  12306. [
  12307. {
  12308. name: "Macro",
  12309. height: math.unit(500, "feet"),
  12310. default: true
  12311. },
  12312. {
  12313. name: "Megamacro",
  12314. height: math.unit(10, "miles")
  12315. },
  12316. {
  12317. name: "Gigamacro",
  12318. height: math.unit(100000, "miles")
  12319. },
  12320. {
  12321. name: "Examacro",
  12322. height: math.unit(1e9, "lightyears")
  12323. },
  12324. {
  12325. name: "Omniversal",
  12326. height: math.unit(1e33, "lightyears")
  12327. },
  12328. {
  12329. name: "Beyond Infinite",
  12330. height: math.unit(1e100, "lightyears")
  12331. },
  12332. ]
  12333. ))
  12334. characterMakers.push(() => makeCharacter(
  12335. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12336. {
  12337. Side: {
  12338. height: math.unit(6, "feet"),
  12339. weight: math.unit(150, "lb"),
  12340. name: "Side",
  12341. image: {
  12342. source: "./media/characters/mira/side.svg",
  12343. extra: 900 / 799,
  12344. bottom: 0.02
  12345. }
  12346. },
  12347. },
  12348. [
  12349. {
  12350. name: "Human Size",
  12351. height: math.unit(6, "feet")
  12352. },
  12353. {
  12354. name: "Macro",
  12355. height: math.unit(100, "feet"),
  12356. default: true
  12357. },
  12358. {
  12359. name: "Megamacro",
  12360. height: math.unit(10, "miles")
  12361. },
  12362. {
  12363. name: "Gigamacro",
  12364. height: math.unit(25000, "miles")
  12365. },
  12366. {
  12367. name: "Teramacro",
  12368. height: math.unit(300, "AU")
  12369. },
  12370. {
  12371. name: "Full Size",
  12372. height: math.unit(4.5e10, "lightyears")
  12373. },
  12374. ]
  12375. ))
  12376. characterMakers.push(() => makeCharacter(
  12377. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12378. {
  12379. front: {
  12380. height: math.unit(6, "feet"),
  12381. weight: math.unit(150, "lb"),
  12382. name: "Front",
  12383. image: {
  12384. source: "./media/characters/holly/front.svg",
  12385. extra: 639 / 606
  12386. }
  12387. },
  12388. back: {
  12389. height: math.unit(6, "feet"),
  12390. weight: math.unit(150, "lb"),
  12391. name: "Back",
  12392. image: {
  12393. source: "./media/characters/holly/back.svg",
  12394. extra: 623 / 598
  12395. }
  12396. },
  12397. frontWorking: {
  12398. height: math.unit(6, "feet"),
  12399. weight: math.unit(150, "lb"),
  12400. name: "Front (Working)",
  12401. image: {
  12402. source: "./media/characters/holly/front-working.svg",
  12403. extra: 607 / 577,
  12404. bottom: 0.048
  12405. }
  12406. },
  12407. },
  12408. [
  12409. {
  12410. name: "Normal",
  12411. height: math.unit(12 + 3 / 12, "feet"),
  12412. default: true
  12413. },
  12414. ]
  12415. ))
  12416. characterMakers.push(() => makeCharacter(
  12417. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12418. {
  12419. front: {
  12420. height: math.unit(6, "feet"),
  12421. weight: math.unit(150, "lb"),
  12422. name: "Front",
  12423. image: {
  12424. source: "./media/characters/porter/front.svg",
  12425. extra: 1,
  12426. bottom: 0.01
  12427. }
  12428. },
  12429. frontRobes: {
  12430. height: math.unit(6, "feet"),
  12431. weight: math.unit(150, "lb"),
  12432. name: "Front (Robes)",
  12433. image: {
  12434. source: "./media/characters/porter/front-robes.svg",
  12435. extra: 1.01,
  12436. bottom: 0.01
  12437. }
  12438. },
  12439. },
  12440. [
  12441. {
  12442. name: "Normal",
  12443. height: math.unit(11 + 9 / 12, "feet"),
  12444. default: true
  12445. },
  12446. ]
  12447. ))
  12448. characterMakers.push(() => makeCharacter(
  12449. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12450. {
  12451. legendary: {
  12452. height: math.unit(6, "feet"),
  12453. weight: math.unit(150, "lb"),
  12454. name: "Legendary",
  12455. image: {
  12456. source: "./media/characters/lucy/legendary.svg",
  12457. extra: 1355 / 1100,
  12458. bottom: 0.045
  12459. }
  12460. },
  12461. },
  12462. [
  12463. {
  12464. name: "Legendary",
  12465. height: math.unit(86882 * 2, "miles"),
  12466. default: true
  12467. },
  12468. ]
  12469. ))
  12470. characterMakers.push(() => makeCharacter(
  12471. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12472. {
  12473. front: {
  12474. height: math.unit(6, "feet"),
  12475. weight: math.unit(150, "lb"),
  12476. name: "Front",
  12477. image: {
  12478. source: "./media/characters/drusilla/front.svg",
  12479. extra: 678 / 635,
  12480. bottom: 0.03
  12481. }
  12482. },
  12483. back: {
  12484. height: math.unit(6, "feet"),
  12485. weight: math.unit(150, "lb"),
  12486. name: "Back",
  12487. image: {
  12488. source: "./media/characters/drusilla/back.svg",
  12489. extra: 678 / 635,
  12490. bottom: 0.005
  12491. }
  12492. },
  12493. },
  12494. [
  12495. {
  12496. name: "Macro",
  12497. height: math.unit(100, "feet")
  12498. },
  12499. {
  12500. name: "Canon Height",
  12501. height: math.unit(2000, "feet"),
  12502. default: true
  12503. },
  12504. ]
  12505. ))
  12506. characterMakers.push(() => makeCharacter(
  12507. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12508. {
  12509. front: {
  12510. height: math.unit(6, "feet"),
  12511. weight: math.unit(180, "lb"),
  12512. name: "Front",
  12513. image: {
  12514. source: "./media/characters/renard-thatch/front.svg",
  12515. extra: 2411 / 2275,
  12516. bottom: 0.01
  12517. }
  12518. },
  12519. frontPosing: {
  12520. height: math.unit(6, "feet"),
  12521. weight: math.unit(180, "lb"),
  12522. name: "Front (Posing)",
  12523. image: {
  12524. source: "./media/characters/renard-thatch/front-posing.svg",
  12525. extra: 2381 / 2261,
  12526. bottom: 0.01
  12527. }
  12528. },
  12529. back: {
  12530. height: math.unit(6, "feet"),
  12531. weight: math.unit(180, "lb"),
  12532. name: "Back",
  12533. image: {
  12534. source: "./media/characters/renard-thatch/back.svg",
  12535. extra: 2428 / 2288
  12536. }
  12537. },
  12538. },
  12539. [
  12540. {
  12541. name: "Micro",
  12542. height: math.unit(3, "inches")
  12543. },
  12544. {
  12545. name: "Default",
  12546. height: math.unit(6, "feet"),
  12547. default: true
  12548. },
  12549. {
  12550. name: "Macro",
  12551. height: math.unit(75, "feet")
  12552. },
  12553. ]
  12554. ))
  12555. characterMakers.push(() => makeCharacter(
  12556. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12557. {
  12558. front: {
  12559. height: math.unit(1450, "feet"),
  12560. weight: math.unit(1.21e6, "tons"),
  12561. name: "Front",
  12562. image: {
  12563. source: "./media/characters/sekvra/front.svg",
  12564. extra: 1,
  12565. bottom: 0.03
  12566. }
  12567. },
  12568. frontClothed: {
  12569. height: math.unit(1450, "feet"),
  12570. weight: math.unit(1.21e6, "tons"),
  12571. name: "Front (Clothed)",
  12572. image: {
  12573. source: "./media/characters/sekvra/front-clothed.svg",
  12574. extra: 1,
  12575. bottom: 0.03
  12576. }
  12577. },
  12578. side: {
  12579. height: math.unit(1450, "feet"),
  12580. weight: math.unit(1.21e6, "tons"),
  12581. name: "Side",
  12582. image: {
  12583. source: "./media/characters/sekvra/side.svg",
  12584. extra: 1,
  12585. bottom: 0.025
  12586. }
  12587. },
  12588. back: {
  12589. height: math.unit(1450, "feet"),
  12590. weight: math.unit(1.21e6, "tons"),
  12591. name: "Back",
  12592. image: {
  12593. source: "./media/characters/sekvra/back.svg",
  12594. extra: 1,
  12595. bottom: 0.005
  12596. }
  12597. },
  12598. },
  12599. [
  12600. {
  12601. name: "Macro",
  12602. height: math.unit(1450, "feet"),
  12603. default: true
  12604. },
  12605. {
  12606. name: "Megamacro",
  12607. height: math.unit(15000, "feet")
  12608. },
  12609. ]
  12610. ))
  12611. characterMakers.push(() => makeCharacter(
  12612. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12613. {
  12614. front: {
  12615. height: math.unit(6, "feet"),
  12616. weight: math.unit(150, "lb"),
  12617. name: "Front",
  12618. image: {
  12619. source: "./media/characters/carmine/front.svg",
  12620. extra: 1,
  12621. bottom: 0.035
  12622. }
  12623. },
  12624. frontArmor: {
  12625. height: math.unit(6, "feet"),
  12626. weight: math.unit(150, "lb"),
  12627. name: "Front (Armor)",
  12628. image: {
  12629. source: "./media/characters/carmine/front-armor.svg",
  12630. extra: 1,
  12631. bottom: 0.035
  12632. }
  12633. },
  12634. },
  12635. [
  12636. {
  12637. name: "Large",
  12638. height: math.unit(1, "mile")
  12639. },
  12640. {
  12641. name: "Huge",
  12642. height: math.unit(40, "miles"),
  12643. default: true
  12644. },
  12645. {
  12646. name: "Colossal",
  12647. height: math.unit(2500, "miles")
  12648. },
  12649. ]
  12650. ))
  12651. characterMakers.push(() => makeCharacter(
  12652. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12653. {
  12654. front: {
  12655. height: math.unit(6, "feet"),
  12656. weight: math.unit(150, "lb"),
  12657. name: "Front",
  12658. image: {
  12659. source: "./media/characters/elyssia/front.svg",
  12660. extra: 2201 / 2035,
  12661. bottom: 0.05
  12662. }
  12663. },
  12664. frontClothed: {
  12665. height: math.unit(6, "feet"),
  12666. weight: math.unit(150, "lb"),
  12667. name: "Front (Clothed)",
  12668. image: {
  12669. source: "./media/characters/elyssia/front-clothed.svg",
  12670. extra: 2201 / 2035,
  12671. bottom: 0.05
  12672. }
  12673. },
  12674. back: {
  12675. height: math.unit(6, "feet"),
  12676. weight: math.unit(150, "lb"),
  12677. name: "Back",
  12678. image: {
  12679. source: "./media/characters/elyssia/back.svg",
  12680. extra: 2201 / 2035,
  12681. bottom: 0.013
  12682. }
  12683. },
  12684. },
  12685. [
  12686. {
  12687. name: "Smaller",
  12688. height: math.unit(150, "feet")
  12689. },
  12690. {
  12691. name: "Standard",
  12692. height: math.unit(1400, "feet"),
  12693. default: true
  12694. },
  12695. {
  12696. name: "Distracted",
  12697. height: math.unit(15000, "feet")
  12698. },
  12699. ]
  12700. ))
  12701. characterMakers.push(() => makeCharacter(
  12702. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12703. {
  12704. front: {
  12705. height: math.unit(7 + 4 / 12, "feet"),
  12706. weight: math.unit(500, "lb"),
  12707. name: "Front",
  12708. image: {
  12709. source: "./media/characters/geno-maxwell/front.svg",
  12710. extra: 2207 / 2040,
  12711. bottom: 0.015
  12712. }
  12713. },
  12714. },
  12715. [
  12716. {
  12717. name: "Micro",
  12718. height: math.unit(3, "inches")
  12719. },
  12720. {
  12721. name: "Normal",
  12722. height: math.unit(7 + 4 / 12, "feet"),
  12723. default: true
  12724. },
  12725. {
  12726. name: "Macro",
  12727. height: math.unit(220, "feet")
  12728. },
  12729. {
  12730. name: "Megamacro",
  12731. height: math.unit(11, "miles")
  12732. },
  12733. ]
  12734. ))
  12735. characterMakers.push(() => makeCharacter(
  12736. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12737. {
  12738. front: {
  12739. height: math.unit(7 + 4 / 12, "feet"),
  12740. weight: math.unit(500, "lb"),
  12741. name: "Front",
  12742. image: {
  12743. source: "./media/characters/regena-maxwell/front.svg",
  12744. extra: 3115 / 2770,
  12745. bottom: 0.02
  12746. }
  12747. },
  12748. },
  12749. [
  12750. {
  12751. name: "Normal",
  12752. height: math.unit(7 + 4 / 12, "feet"),
  12753. default: true
  12754. },
  12755. {
  12756. name: "Macro",
  12757. height: math.unit(220, "feet")
  12758. },
  12759. {
  12760. name: "Megamacro",
  12761. height: math.unit(11, "miles")
  12762. },
  12763. ]
  12764. ))
  12765. characterMakers.push(() => makeCharacter(
  12766. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12767. {
  12768. front: {
  12769. height: math.unit(6, "feet"),
  12770. weight: math.unit(150, "lb"),
  12771. name: "Front",
  12772. image: {
  12773. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12774. extra: 860 / 690,
  12775. bottom: 0.03
  12776. }
  12777. },
  12778. },
  12779. [
  12780. {
  12781. name: "Normal",
  12782. height: math.unit(1.7, "meters"),
  12783. default: true
  12784. },
  12785. ]
  12786. ))
  12787. characterMakers.push(() => makeCharacter(
  12788. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12789. {
  12790. front: {
  12791. height: math.unit(6, "feet"),
  12792. weight: math.unit(150, "lb"),
  12793. name: "Front",
  12794. image: {
  12795. source: "./media/characters/quilly/front.svg",
  12796. extra: 890 / 776
  12797. }
  12798. },
  12799. },
  12800. [
  12801. {
  12802. name: "Gigamacro",
  12803. height: math.unit(404090, "miles"),
  12804. default: true
  12805. },
  12806. ]
  12807. ))
  12808. characterMakers.push(() => makeCharacter(
  12809. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12810. {
  12811. front: {
  12812. height: math.unit(7 + 8 / 12, "feet"),
  12813. weight: math.unit(350, "lb"),
  12814. name: "Front",
  12815. image: {
  12816. source: "./media/characters/tempest/front.svg",
  12817. extra: 1175 / 1086,
  12818. bottom: 0.02
  12819. }
  12820. },
  12821. },
  12822. [
  12823. {
  12824. name: "Normal",
  12825. height: math.unit(7 + 8 / 12, "feet"),
  12826. default: true
  12827. },
  12828. ]
  12829. ))
  12830. characterMakers.push(() => makeCharacter(
  12831. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12832. {
  12833. side: {
  12834. height: math.unit(4 + 5 / 12, "feet"),
  12835. weight: math.unit(80, "lb"),
  12836. name: "Side",
  12837. image: {
  12838. source: "./media/characters/rodger/side.svg",
  12839. extra: 1235 / 1118
  12840. }
  12841. },
  12842. },
  12843. [
  12844. {
  12845. name: "Micro",
  12846. height: math.unit(1, "inch")
  12847. },
  12848. {
  12849. name: "Normal",
  12850. height: math.unit(4 + 5 / 12, "feet"),
  12851. default: true
  12852. },
  12853. {
  12854. name: "Macro",
  12855. height: math.unit(120, "feet")
  12856. },
  12857. ]
  12858. ))
  12859. characterMakers.push(() => makeCharacter(
  12860. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12861. {
  12862. front: {
  12863. height: math.unit(6, "feet"),
  12864. weight: math.unit(150, "lb"),
  12865. name: "Front",
  12866. image: {
  12867. source: "./media/characters/danyel/front.svg",
  12868. extra: 1185 / 1123,
  12869. bottom: 0.05
  12870. }
  12871. },
  12872. },
  12873. [
  12874. {
  12875. name: "Shrunken",
  12876. height: math.unit(0.5, "mm")
  12877. },
  12878. {
  12879. name: "Micro",
  12880. height: math.unit(1, "mm"),
  12881. default: true
  12882. },
  12883. {
  12884. name: "Upsized",
  12885. height: math.unit(5 + 5 / 12, "feet")
  12886. },
  12887. ]
  12888. ))
  12889. characterMakers.push(() => makeCharacter(
  12890. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12891. {
  12892. front: {
  12893. height: math.unit(5 + 6 / 12, "feet"),
  12894. weight: math.unit(200, "lb"),
  12895. name: "Front",
  12896. image: {
  12897. source: "./media/characters/vivian-bijoux/front.svg",
  12898. extra: 1,
  12899. bottom: 0.072
  12900. }
  12901. },
  12902. },
  12903. [
  12904. {
  12905. name: "Normal",
  12906. height: math.unit(5 + 6 / 12, "feet"),
  12907. default: true
  12908. },
  12909. {
  12910. name: "Bad Dream",
  12911. height: math.unit(500, "feet")
  12912. },
  12913. {
  12914. name: "Nightmare",
  12915. height: math.unit(500, "miles")
  12916. },
  12917. ]
  12918. ))
  12919. characterMakers.push(() => makeCharacter(
  12920. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12921. {
  12922. front: {
  12923. height: math.unit(6 + 1 / 12, "feet"),
  12924. weight: math.unit(260, "lb"),
  12925. name: "Front",
  12926. image: {
  12927. source: "./media/characters/zeta/front.svg",
  12928. extra: 1968 / 1889,
  12929. bottom: 0.06
  12930. }
  12931. },
  12932. back: {
  12933. height: math.unit(6 + 1 / 12, "feet"),
  12934. weight: math.unit(260, "lb"),
  12935. name: "Back",
  12936. image: {
  12937. source: "./media/characters/zeta/back.svg",
  12938. extra: 1944 / 1858,
  12939. bottom: 0.03
  12940. }
  12941. },
  12942. hand: {
  12943. height: math.unit(1.112, "feet"),
  12944. name: "Hand",
  12945. image: {
  12946. source: "./media/characters/zeta/hand.svg"
  12947. }
  12948. },
  12949. foot: {
  12950. height: math.unit(1.48, "feet"),
  12951. name: "Foot",
  12952. image: {
  12953. source: "./media/characters/zeta/foot.svg"
  12954. }
  12955. },
  12956. },
  12957. [
  12958. {
  12959. name: "Micro",
  12960. height: math.unit(6, "inches")
  12961. },
  12962. {
  12963. name: "Normal",
  12964. height: math.unit(6 + 1 / 12, "feet"),
  12965. default: true
  12966. },
  12967. {
  12968. name: "Macro",
  12969. height: math.unit(20, "feet")
  12970. },
  12971. ]
  12972. ))
  12973. characterMakers.push(() => makeCharacter(
  12974. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12975. {
  12976. front: {
  12977. height: math.unit(6, "feet"),
  12978. weight: math.unit(150, "lb"),
  12979. name: "Front",
  12980. image: {
  12981. source: "./media/characters/jamie-larsen/front.svg",
  12982. extra: 962 / 933,
  12983. bottom: 0.02
  12984. }
  12985. },
  12986. back: {
  12987. height: math.unit(6, "feet"),
  12988. weight: math.unit(150, "lb"),
  12989. name: "Back",
  12990. image: {
  12991. source: "./media/characters/jamie-larsen/back.svg",
  12992. extra: 997 / 946
  12993. }
  12994. },
  12995. },
  12996. [
  12997. {
  12998. name: "Macro",
  12999. height: math.unit(28 + 7 / 12, "feet"),
  13000. default: true
  13001. },
  13002. {
  13003. name: "Macro+",
  13004. height: math.unit(180, "feet")
  13005. },
  13006. {
  13007. name: "Megamacro",
  13008. height: math.unit(10, "miles")
  13009. },
  13010. {
  13011. name: "Gigamacro",
  13012. height: math.unit(200000, "miles")
  13013. },
  13014. ]
  13015. ))
  13016. characterMakers.push(() => makeCharacter(
  13017. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13018. {
  13019. front: {
  13020. height: math.unit(6, "feet"),
  13021. weight: math.unit(120, "lb"),
  13022. name: "Front",
  13023. image: {
  13024. source: "./media/characters/vance/front.svg",
  13025. extra: 1980 / 1890,
  13026. bottom: 0.09
  13027. }
  13028. },
  13029. back: {
  13030. height: math.unit(6, "feet"),
  13031. weight: math.unit(120, "lb"),
  13032. name: "Back",
  13033. image: {
  13034. source: "./media/characters/vance/back.svg",
  13035. extra: 2081 / 1994,
  13036. bottom: 0.014
  13037. }
  13038. },
  13039. hand: {
  13040. height: math.unit(0.88, "feet"),
  13041. name: "Hand",
  13042. image: {
  13043. source: "./media/characters/vance/hand.svg"
  13044. }
  13045. },
  13046. foot: {
  13047. height: math.unit(0.64, "feet"),
  13048. name: "Foot",
  13049. image: {
  13050. source: "./media/characters/vance/foot.svg"
  13051. }
  13052. },
  13053. },
  13054. [
  13055. {
  13056. name: "Small",
  13057. height: math.unit(90, "feet"),
  13058. default: true
  13059. },
  13060. {
  13061. name: "Macro",
  13062. height: math.unit(100, "meters")
  13063. },
  13064. {
  13065. name: "Megamacro",
  13066. height: math.unit(15, "miles")
  13067. },
  13068. ]
  13069. ))
  13070. characterMakers.push(() => makeCharacter(
  13071. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13072. {
  13073. front: {
  13074. height: math.unit(6, "feet"),
  13075. weight: math.unit(180, "lb"),
  13076. name: "Front",
  13077. image: {
  13078. source: "./media/characters/xochitl/front.svg",
  13079. extra: 2297 / 2261,
  13080. bottom: 0.065
  13081. }
  13082. },
  13083. back: {
  13084. height: math.unit(6, "feet"),
  13085. weight: math.unit(180, "lb"),
  13086. name: "Back",
  13087. image: {
  13088. source: "./media/characters/xochitl/back.svg",
  13089. extra: 2386 / 2354,
  13090. bottom: 0.01
  13091. }
  13092. },
  13093. foot: {
  13094. height: math.unit(6 / 5 * 1.15, "feet"),
  13095. weight: math.unit(150, "lb"),
  13096. name: "Foot",
  13097. image: {
  13098. source: "./media/characters/xochitl/foot.svg"
  13099. }
  13100. },
  13101. },
  13102. [
  13103. {
  13104. name: "Macro",
  13105. height: math.unit(80, "feet")
  13106. },
  13107. {
  13108. name: "Macro+",
  13109. height: math.unit(400, "feet"),
  13110. default: true
  13111. },
  13112. {
  13113. name: "Gigamacro",
  13114. height: math.unit(80000, "miles")
  13115. },
  13116. {
  13117. name: "Gigamacro+",
  13118. height: math.unit(400000, "miles")
  13119. },
  13120. {
  13121. name: "Teramacro",
  13122. height: math.unit(300, "AU")
  13123. },
  13124. ]
  13125. ))
  13126. characterMakers.push(() => makeCharacter(
  13127. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13128. {
  13129. front: {
  13130. height: math.unit(6, "feet"),
  13131. weight: math.unit(150, "lb"),
  13132. name: "Front",
  13133. image: {
  13134. source: "./media/characters/vincent/front.svg",
  13135. extra: 1130 / 1080,
  13136. bottom: 0.055
  13137. }
  13138. },
  13139. beak: {
  13140. height: math.unit(6 * 0.1, "feet"),
  13141. name: "Beak",
  13142. image: {
  13143. source: "./media/characters/vincent/beak.svg"
  13144. }
  13145. },
  13146. hand: {
  13147. height: math.unit(6 * 0.85, "feet"),
  13148. weight: math.unit(150, "lb"),
  13149. name: "Hand",
  13150. image: {
  13151. source: "./media/characters/vincent/hand.svg"
  13152. }
  13153. },
  13154. foot: {
  13155. height: math.unit(6 * 0.19, "feet"),
  13156. weight: math.unit(150, "lb"),
  13157. name: "Foot",
  13158. image: {
  13159. source: "./media/characters/vincent/foot.svg"
  13160. }
  13161. },
  13162. },
  13163. [
  13164. {
  13165. name: "Base",
  13166. height: math.unit(6 + 5 / 12, "feet"),
  13167. default: true
  13168. },
  13169. {
  13170. name: "Macro",
  13171. height: math.unit(300, "feet")
  13172. },
  13173. {
  13174. name: "Megamacro",
  13175. height: math.unit(2, "miles")
  13176. },
  13177. {
  13178. name: "Gigamacro",
  13179. height: math.unit(1000, "miles")
  13180. },
  13181. ]
  13182. ))
  13183. characterMakers.push(() => makeCharacter(
  13184. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13185. {
  13186. front: {
  13187. height: math.unit(6 + 2 / 12, "feet"),
  13188. weight: math.unit(265, "lb"),
  13189. name: "Front",
  13190. image: {
  13191. source: "./media/characters/jay/front.svg",
  13192. extra: 1510 / 1430,
  13193. bottom: 0.042
  13194. }
  13195. },
  13196. back: {
  13197. height: math.unit(6 + 2 / 12, "feet"),
  13198. weight: math.unit(265, "lb"),
  13199. name: "Back",
  13200. image: {
  13201. source: "./media/characters/jay/back.svg",
  13202. extra: 1510 / 1430,
  13203. bottom: 0.025
  13204. }
  13205. },
  13206. clothed: {
  13207. height: math.unit(6 + 2 / 12, "feet"),
  13208. weight: math.unit(265, "lb"),
  13209. name: "Front (Clothed)",
  13210. image: {
  13211. source: "./media/characters/jay/clothed.svg",
  13212. extra: 744 / 699,
  13213. bottom: 0.043
  13214. }
  13215. },
  13216. head: {
  13217. height: math.unit(1.772, "feet"),
  13218. name: "Head",
  13219. image: {
  13220. source: "./media/characters/jay/head.svg"
  13221. }
  13222. },
  13223. sizeRay: {
  13224. height: math.unit(1.331, "feet"),
  13225. name: "Size Ray",
  13226. image: {
  13227. source: "./media/characters/jay/size-ray.svg"
  13228. }
  13229. },
  13230. },
  13231. [
  13232. {
  13233. name: "Micro",
  13234. height: math.unit(1, "inch")
  13235. },
  13236. {
  13237. name: "Normal",
  13238. height: math.unit(6 + 2 / 12, "feet"),
  13239. default: true
  13240. },
  13241. {
  13242. name: "Macro",
  13243. height: math.unit(1, "mile")
  13244. },
  13245. {
  13246. name: "Megamacro",
  13247. height: math.unit(100, "miles")
  13248. },
  13249. ]
  13250. ))
  13251. characterMakers.push(() => makeCharacter(
  13252. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13253. {
  13254. front: {
  13255. height: math.unit(2, "meters"),
  13256. weight: math.unit(500, "kg"),
  13257. name: "Front",
  13258. image: {
  13259. source: "./media/characters/coatl/front.svg",
  13260. extra: 3948 / 3500,
  13261. bottom: 0.082
  13262. }
  13263. },
  13264. },
  13265. [
  13266. {
  13267. name: "Normal",
  13268. height: math.unit(4, "meters")
  13269. },
  13270. {
  13271. name: "Macro",
  13272. height: math.unit(100, "meters"),
  13273. default: true
  13274. },
  13275. {
  13276. name: "Macro+",
  13277. height: math.unit(300, "meters")
  13278. },
  13279. {
  13280. name: "Megamacro",
  13281. height: math.unit(3, "gigameters")
  13282. },
  13283. {
  13284. name: "Megamacro+",
  13285. height: math.unit(300, "terameters")
  13286. },
  13287. {
  13288. name: "Megamacro++",
  13289. height: math.unit(3, "lightyears")
  13290. },
  13291. ]
  13292. ))
  13293. characterMakers.push(() => makeCharacter(
  13294. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13295. {
  13296. front: {
  13297. height: math.unit(6, "feet"),
  13298. weight: math.unit(50, "kg"),
  13299. name: "front",
  13300. image: {
  13301. source: "./media/characters/shiroryu/front.svg",
  13302. extra: 1990 / 1935
  13303. }
  13304. },
  13305. },
  13306. [
  13307. {
  13308. name: "Mortal Mingling",
  13309. height: math.unit(3, "meters")
  13310. },
  13311. {
  13312. name: "Kaiju-ish",
  13313. height: math.unit(250, "meters")
  13314. },
  13315. {
  13316. name: "Somewhat Godly",
  13317. height: math.unit(400, "km"),
  13318. default: true
  13319. },
  13320. {
  13321. name: "Planetary",
  13322. height: math.unit(300, "megameters")
  13323. },
  13324. {
  13325. name: "Galaxy-dwarfing",
  13326. height: math.unit(450, "kiloparsecs")
  13327. },
  13328. {
  13329. name: "Universe Eater",
  13330. height: math.unit(150, "gigaparsecs")
  13331. },
  13332. {
  13333. name: "Almost Immeasurable",
  13334. height: math.unit(1.3e266, "yottaparsecs")
  13335. },
  13336. ]
  13337. ))
  13338. characterMakers.push(() => makeCharacter(
  13339. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13340. {
  13341. front: {
  13342. height: math.unit(6, "feet"),
  13343. weight: math.unit(150, "lb"),
  13344. name: "Front",
  13345. image: {
  13346. source: "./media/characters/umeko/front.svg",
  13347. extra: 1,
  13348. bottom: 0.019
  13349. }
  13350. },
  13351. frontArmored: {
  13352. height: math.unit(6, "feet"),
  13353. weight: math.unit(150, "lb"),
  13354. name: "Front (Armored)",
  13355. image: {
  13356. source: "./media/characters/umeko/front-armored.svg",
  13357. extra: 1,
  13358. bottom: 0.021
  13359. }
  13360. },
  13361. },
  13362. [
  13363. {
  13364. name: "Macro",
  13365. height: math.unit(220, "feet"),
  13366. default: true
  13367. },
  13368. {
  13369. name: "Guardian Dragon",
  13370. height: math.unit(50, "miles")
  13371. },
  13372. {
  13373. name: "Cosmic",
  13374. height: math.unit(800000, "miles")
  13375. },
  13376. ]
  13377. ))
  13378. characterMakers.push(() => makeCharacter(
  13379. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13380. {
  13381. front: {
  13382. height: math.unit(6, "feet"),
  13383. weight: math.unit(150, "lb"),
  13384. name: "Front",
  13385. image: {
  13386. source: "./media/characters/cassidy/front.svg",
  13387. extra: 1,
  13388. bottom: 0.043
  13389. }
  13390. },
  13391. },
  13392. [
  13393. {
  13394. name: "Canon Height",
  13395. height: math.unit(120, "feet"),
  13396. default: true
  13397. },
  13398. {
  13399. name: "Macro+",
  13400. height: math.unit(400, "feet")
  13401. },
  13402. {
  13403. name: "Macro++",
  13404. height: math.unit(4000, "feet")
  13405. },
  13406. {
  13407. name: "Megamacro",
  13408. height: math.unit(3, "miles")
  13409. },
  13410. ]
  13411. ))
  13412. characterMakers.push(() => makeCharacter(
  13413. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13414. {
  13415. front: {
  13416. height: math.unit(6, "feet"),
  13417. weight: math.unit(150, "lb"),
  13418. name: "Front",
  13419. image: {
  13420. source: "./media/characters/isaac/front.svg",
  13421. extra: 896 / 815,
  13422. bottom: 0.11
  13423. }
  13424. },
  13425. },
  13426. [
  13427. {
  13428. name: "Human Size",
  13429. height: math.unit(8, "feet"),
  13430. default: true
  13431. },
  13432. {
  13433. name: "Macro",
  13434. height: math.unit(400, "feet")
  13435. },
  13436. {
  13437. name: "Megamacro",
  13438. height: math.unit(50, "miles")
  13439. },
  13440. {
  13441. name: "Canon Height",
  13442. height: math.unit(200, "AU")
  13443. },
  13444. ]
  13445. ))
  13446. characterMakers.push(() => makeCharacter(
  13447. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13448. {
  13449. front: {
  13450. height: math.unit(6, "feet"),
  13451. weight: math.unit(72, "kg"),
  13452. name: "Front",
  13453. image: {
  13454. source: "./media/characters/sleekit/front.svg",
  13455. extra: 4693 / 4487,
  13456. bottom: 0.012
  13457. }
  13458. },
  13459. },
  13460. [
  13461. {
  13462. name: "Minimum Height",
  13463. height: math.unit(10, "meters")
  13464. },
  13465. {
  13466. name: "Smaller",
  13467. height: math.unit(25, "meters")
  13468. },
  13469. {
  13470. name: "Larger",
  13471. height: math.unit(38, "meters"),
  13472. default: true
  13473. },
  13474. {
  13475. name: "Maximum height",
  13476. height: math.unit(100, "meters")
  13477. },
  13478. ]
  13479. ))
  13480. characterMakers.push(() => makeCharacter(
  13481. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13482. {
  13483. front: {
  13484. height: math.unit(6, "feet"),
  13485. weight: math.unit(150, "lb"),
  13486. name: "Front",
  13487. image: {
  13488. source: "./media/characters/nillia/front.svg",
  13489. extra: 2195 / 2037,
  13490. bottom: 0.005
  13491. }
  13492. },
  13493. back: {
  13494. height: math.unit(6, "feet"),
  13495. weight: math.unit(150, "lb"),
  13496. name: "Back",
  13497. image: {
  13498. source: "./media/characters/nillia/back.svg",
  13499. extra: 2195 / 2037,
  13500. bottom: 0.005
  13501. }
  13502. },
  13503. },
  13504. [
  13505. {
  13506. name: "Canon Height",
  13507. height: math.unit(489, "feet"),
  13508. default: true
  13509. }
  13510. ]
  13511. ))
  13512. characterMakers.push(() => makeCharacter(
  13513. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13514. {
  13515. front: {
  13516. height: math.unit(6, "feet"),
  13517. weight: math.unit(150, "lb"),
  13518. name: "Front",
  13519. image: {
  13520. source: "./media/characters/mesmyriza/front.svg",
  13521. extra: 2067 / 1784,
  13522. bottom: 0.035
  13523. }
  13524. },
  13525. foot: {
  13526. height: math.unit(6 / (250 / 35), "feet"),
  13527. name: "Foot",
  13528. image: {
  13529. source: "./media/characters/mesmyriza/foot.svg"
  13530. }
  13531. },
  13532. },
  13533. [
  13534. {
  13535. name: "Macro",
  13536. height: math.unit(457, "meters"),
  13537. default: true
  13538. },
  13539. {
  13540. name: "Megamacro",
  13541. height: math.unit(8, "megameters")
  13542. },
  13543. ]
  13544. ))
  13545. characterMakers.push(() => makeCharacter(
  13546. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13547. {
  13548. front: {
  13549. height: math.unit(6, "feet"),
  13550. weight: math.unit(250, "lb"),
  13551. name: "Front",
  13552. image: {
  13553. source: "./media/characters/saudade/front.svg",
  13554. extra: 1172 / 1139,
  13555. bottom: 0.035
  13556. }
  13557. },
  13558. },
  13559. [
  13560. {
  13561. name: "Micro",
  13562. height: math.unit(3, "inches")
  13563. },
  13564. {
  13565. name: "Normal",
  13566. height: math.unit(6, "feet"),
  13567. default: true
  13568. },
  13569. {
  13570. name: "Macro",
  13571. height: math.unit(50, "feet")
  13572. },
  13573. {
  13574. name: "Megamacro",
  13575. height: math.unit(2800, "feet")
  13576. },
  13577. ]
  13578. ))
  13579. characterMakers.push(() => makeCharacter(
  13580. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13581. {
  13582. front: {
  13583. height: math.unit(5 + 4 / 12, "feet"),
  13584. weight: math.unit(100, "lb"),
  13585. name: "Front",
  13586. image: {
  13587. source: "./media/characters/keireer/front.svg",
  13588. extra: 716 / 666,
  13589. bottom: 0.05
  13590. }
  13591. },
  13592. },
  13593. [
  13594. {
  13595. name: "Normal",
  13596. height: math.unit(5 + 4 / 12, "feet"),
  13597. default: true
  13598. },
  13599. ]
  13600. ))
  13601. characterMakers.push(() => makeCharacter(
  13602. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13603. {
  13604. front: {
  13605. height: math.unit(6, "feet"),
  13606. weight: math.unit(90, "kg"),
  13607. name: "Front",
  13608. image: {
  13609. source: "./media/characters/mirja/front.svg",
  13610. extra: 1789 / 1683,
  13611. bottom: 0.05
  13612. }
  13613. },
  13614. frontDressed: {
  13615. height: math.unit(6, "feet"),
  13616. weight: math.unit(90, "lb"),
  13617. name: "Front (Dressed)",
  13618. image: {
  13619. source: "./media/characters/mirja/front-dressed.svg",
  13620. extra: 1789 / 1683,
  13621. bottom: 0.05
  13622. }
  13623. },
  13624. back: {
  13625. height: math.unit(6, "feet"),
  13626. weight: math.unit(90, "lb"),
  13627. name: "Back",
  13628. image: {
  13629. source: "./media/characters/mirja/back.svg",
  13630. extra: 953 / 917,
  13631. bottom: 0.017
  13632. }
  13633. },
  13634. },
  13635. [
  13636. {
  13637. name: "\"Incognito\"",
  13638. height: math.unit(3, "meters")
  13639. },
  13640. {
  13641. name: "Strolling Size",
  13642. height: math.unit(15, "km")
  13643. },
  13644. {
  13645. name: "Larger Strolling Size",
  13646. height: math.unit(400, "km")
  13647. },
  13648. {
  13649. name: "Preferred Size",
  13650. height: math.unit(5000, "km")
  13651. },
  13652. {
  13653. name: "True Size",
  13654. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13655. default: true
  13656. },
  13657. ]
  13658. ))
  13659. characterMakers.push(() => makeCharacter(
  13660. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13661. {
  13662. front: {
  13663. height: math.unit(15, "feet"),
  13664. weight: math.unit(880, "kg"),
  13665. name: "Front",
  13666. image: {
  13667. source: "./media/characters/nightraver/front.svg",
  13668. extra: 2444 / 2160,
  13669. bottom: 0.027
  13670. }
  13671. },
  13672. back: {
  13673. height: math.unit(15, "feet"),
  13674. weight: math.unit(880, "kg"),
  13675. name: "Back",
  13676. image: {
  13677. source: "./media/characters/nightraver/back.svg",
  13678. extra: 2309 / 2180,
  13679. bottom: 0.005
  13680. }
  13681. },
  13682. sole: {
  13683. height: math.unit(2.878, "feet"),
  13684. name: "Sole",
  13685. image: {
  13686. source: "./media/characters/nightraver/sole.svg"
  13687. }
  13688. },
  13689. foot: {
  13690. height: math.unit(2.285, "feet"),
  13691. name: "Foot",
  13692. image: {
  13693. source: "./media/characters/nightraver/foot.svg"
  13694. }
  13695. },
  13696. maw: {
  13697. height: math.unit(2.67, "feet"),
  13698. name: "Maw",
  13699. image: {
  13700. source: "./media/characters/nightraver/maw.svg"
  13701. }
  13702. },
  13703. },
  13704. [
  13705. {
  13706. name: "Micro",
  13707. height: math.unit(1, "cm")
  13708. },
  13709. {
  13710. name: "Normal",
  13711. height: math.unit(15, "feet"),
  13712. default: true
  13713. },
  13714. {
  13715. name: "Macro",
  13716. height: math.unit(300, "feet")
  13717. },
  13718. {
  13719. name: "Megamacro",
  13720. height: math.unit(300, "miles")
  13721. },
  13722. {
  13723. name: "Gigamacro",
  13724. height: math.unit(10000, "miles")
  13725. },
  13726. ]
  13727. ))
  13728. characterMakers.push(() => makeCharacter(
  13729. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13730. {
  13731. side: {
  13732. height: math.unit(2, "inches"),
  13733. weight: math.unit(5, "grams"),
  13734. name: "Side",
  13735. image: {
  13736. source: "./media/characters/arc/side.svg"
  13737. }
  13738. },
  13739. },
  13740. [
  13741. {
  13742. name: "Micro",
  13743. height: math.unit(2, "inches"),
  13744. default: true
  13745. },
  13746. ]
  13747. ))
  13748. characterMakers.push(() => makeCharacter(
  13749. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13750. {
  13751. front: {
  13752. height: math.unit(1.1938, "meters"),
  13753. weight: math.unit(54, "kg"),
  13754. name: "Front",
  13755. image: {
  13756. source: "./media/characters/nebula-shahar/front.svg",
  13757. extra: 1642 / 1436,
  13758. bottom: 0.06
  13759. }
  13760. },
  13761. },
  13762. [
  13763. {
  13764. name: "Megamicro",
  13765. height: math.unit(0.3, "mm")
  13766. },
  13767. {
  13768. name: "Micro",
  13769. height: math.unit(3, "cm")
  13770. },
  13771. {
  13772. name: "Normal",
  13773. height: math.unit(138, "cm"),
  13774. default: true
  13775. },
  13776. {
  13777. name: "Macro",
  13778. height: math.unit(30, "m")
  13779. },
  13780. ]
  13781. ))
  13782. characterMakers.push(() => makeCharacter(
  13783. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13784. {
  13785. front: {
  13786. height: math.unit(5.24, "feet"),
  13787. weight: math.unit(150, "lb"),
  13788. name: "Front",
  13789. image: {
  13790. source: "./media/characters/shayla/front.svg",
  13791. extra: 1512 / 1414,
  13792. bottom: 0.01
  13793. }
  13794. },
  13795. back: {
  13796. height: math.unit(5.24, "feet"),
  13797. weight: math.unit(150, "lb"),
  13798. name: "Back",
  13799. image: {
  13800. source: "./media/characters/shayla/back.svg",
  13801. extra: 1512 / 1414
  13802. }
  13803. },
  13804. hand: {
  13805. height: math.unit(0.7781496062992126, "feet"),
  13806. name: "Hand",
  13807. image: {
  13808. source: "./media/characters/shayla/hand.svg"
  13809. }
  13810. },
  13811. foot: {
  13812. height: math.unit(1.4206036745406823, "feet"),
  13813. name: "Foot",
  13814. image: {
  13815. source: "./media/characters/shayla/foot.svg"
  13816. }
  13817. },
  13818. },
  13819. [
  13820. {
  13821. name: "Micro",
  13822. height: math.unit(0.32, "feet")
  13823. },
  13824. {
  13825. name: "Normal",
  13826. height: math.unit(5.24, "feet"),
  13827. default: true
  13828. },
  13829. {
  13830. name: "Macro",
  13831. height: math.unit(492.12, "feet")
  13832. },
  13833. {
  13834. name: "Megamacro",
  13835. height: math.unit(186.41, "miles")
  13836. },
  13837. ]
  13838. ))
  13839. characterMakers.push(() => makeCharacter(
  13840. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13841. {
  13842. front: {
  13843. height: math.unit(2.2, "m"),
  13844. weight: math.unit(120, "kg"),
  13845. name: "Front",
  13846. image: {
  13847. source: "./media/characters/pia-jr/front.svg",
  13848. extra: 1000 / 970,
  13849. bottom: 0.035
  13850. }
  13851. },
  13852. hand: {
  13853. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13854. name: "Hand",
  13855. image: {
  13856. source: "./media/characters/pia-jr/hand.svg"
  13857. }
  13858. },
  13859. paw: {
  13860. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13861. name: "Paw",
  13862. image: {
  13863. source: "./media/characters/pia-jr/paw.svg"
  13864. }
  13865. },
  13866. },
  13867. [
  13868. {
  13869. name: "Micro",
  13870. height: math.unit(1.2, "cm")
  13871. },
  13872. {
  13873. name: "Normal",
  13874. height: math.unit(2.2, "m"),
  13875. default: true
  13876. },
  13877. {
  13878. name: "Macro",
  13879. height: math.unit(180, "m")
  13880. },
  13881. {
  13882. name: "Megamacro",
  13883. height: math.unit(420, "km")
  13884. },
  13885. ]
  13886. ))
  13887. characterMakers.push(() => makeCharacter(
  13888. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13889. {
  13890. front: {
  13891. height: math.unit(2, "m"),
  13892. weight: math.unit(115, "kg"),
  13893. name: "Front",
  13894. image: {
  13895. source: "./media/characters/pia-sr/front.svg",
  13896. extra: 760 / 730,
  13897. bottom: 0.015
  13898. }
  13899. },
  13900. back: {
  13901. height: math.unit(2, "m"),
  13902. weight: math.unit(115, "kg"),
  13903. name: "Back",
  13904. image: {
  13905. source: "./media/characters/pia-sr/back.svg",
  13906. extra: 760 / 730,
  13907. bottom: 0.01
  13908. }
  13909. },
  13910. hand: {
  13911. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13912. name: "Hand",
  13913. image: {
  13914. source: "./media/characters/pia-sr/hand.svg"
  13915. }
  13916. },
  13917. foot: {
  13918. height: math.unit(1.83, "feet"),
  13919. name: "Foot",
  13920. image: {
  13921. source: "./media/characters/pia-sr/foot.svg"
  13922. }
  13923. },
  13924. },
  13925. [
  13926. {
  13927. name: "Micro",
  13928. height: math.unit(88, "mm")
  13929. },
  13930. {
  13931. name: "Normal",
  13932. height: math.unit(2, "m"),
  13933. default: true
  13934. },
  13935. {
  13936. name: "Macro",
  13937. height: math.unit(200, "m")
  13938. },
  13939. {
  13940. name: "Megamacro",
  13941. height: math.unit(420, "km")
  13942. },
  13943. ]
  13944. ))
  13945. characterMakers.push(() => makeCharacter(
  13946. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13947. {
  13948. front: {
  13949. height: math.unit(8 + 2 / 12, "feet"),
  13950. weight: math.unit(300, "lb"),
  13951. name: "Front",
  13952. image: {
  13953. source: "./media/characters/kibibyte/front.svg",
  13954. extra: 2221 / 2098,
  13955. bottom: 0.04
  13956. }
  13957. },
  13958. },
  13959. [
  13960. {
  13961. name: "Normal",
  13962. height: math.unit(8 + 2 / 12, "feet"),
  13963. default: true
  13964. },
  13965. {
  13966. name: "Socialable Macro",
  13967. height: math.unit(50, "feet")
  13968. },
  13969. {
  13970. name: "Macro",
  13971. height: math.unit(300, "feet")
  13972. },
  13973. {
  13974. name: "Megamacro",
  13975. height: math.unit(500, "miles")
  13976. },
  13977. ]
  13978. ))
  13979. characterMakers.push(() => makeCharacter(
  13980. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13981. {
  13982. front: {
  13983. height: math.unit(6, "feet"),
  13984. weight: math.unit(150, "lb"),
  13985. name: "Front",
  13986. image: {
  13987. source: "./media/characters/felix/front.svg",
  13988. extra: 762 / 722,
  13989. bottom: 0.02
  13990. }
  13991. },
  13992. frontClothed: {
  13993. height: math.unit(6, "feet"),
  13994. weight: math.unit(150, "lb"),
  13995. name: "Front (Clothed)",
  13996. image: {
  13997. source: "./media/characters/felix/front-clothed.svg",
  13998. extra: 762 / 722,
  13999. bottom: 0.02
  14000. }
  14001. },
  14002. },
  14003. [
  14004. {
  14005. name: "Normal",
  14006. height: math.unit(6 + 8 / 12, "feet"),
  14007. default: true
  14008. },
  14009. {
  14010. name: "Macro",
  14011. height: math.unit(2600, "feet")
  14012. },
  14013. {
  14014. name: "Megamacro",
  14015. height: math.unit(450, "miles")
  14016. },
  14017. ]
  14018. ))
  14019. characterMakers.push(() => makeCharacter(
  14020. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14021. {
  14022. front: {
  14023. height: math.unit(6 + 1 / 12, "feet"),
  14024. weight: math.unit(250, "lb"),
  14025. name: "Front",
  14026. image: {
  14027. source: "./media/characters/tobo/front.svg",
  14028. extra: 608 / 586,
  14029. bottom: 0.023
  14030. }
  14031. },
  14032. back: {
  14033. height: math.unit(6 + 1 / 12, "feet"),
  14034. weight: math.unit(250, "lb"),
  14035. name: "Back",
  14036. image: {
  14037. source: "./media/characters/tobo/back.svg",
  14038. extra: 608 / 586
  14039. }
  14040. },
  14041. },
  14042. [
  14043. {
  14044. name: "Nano",
  14045. height: math.unit(2, "nm")
  14046. },
  14047. {
  14048. name: "Megamicro",
  14049. height: math.unit(0.1, "mm")
  14050. },
  14051. {
  14052. name: "Micro",
  14053. height: math.unit(1, "inch"),
  14054. default: true
  14055. },
  14056. {
  14057. name: "Human-sized",
  14058. height: math.unit(6 + 1 / 12, "feet")
  14059. },
  14060. {
  14061. name: "Macro",
  14062. height: math.unit(250, "feet")
  14063. },
  14064. {
  14065. name: "Megamacro",
  14066. height: math.unit(75, "miles")
  14067. },
  14068. {
  14069. name: "Texas-sized",
  14070. height: math.unit(750, "miles")
  14071. },
  14072. {
  14073. name: "Teramacro",
  14074. height: math.unit(50000, "miles")
  14075. },
  14076. ]
  14077. ))
  14078. characterMakers.push(() => makeCharacter(
  14079. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14080. {
  14081. front: {
  14082. height: math.unit(6, "feet"),
  14083. weight: math.unit(269, "lb"),
  14084. name: "Front",
  14085. image: {
  14086. source: "./media/characters/danny-kapowsky/front.svg",
  14087. extra: 766 / 736,
  14088. bottom: 0.044
  14089. }
  14090. },
  14091. back: {
  14092. height: math.unit(6, "feet"),
  14093. weight: math.unit(269, "lb"),
  14094. name: "Back",
  14095. image: {
  14096. source: "./media/characters/danny-kapowsky/back.svg",
  14097. extra: 797 / 760,
  14098. bottom: 0.025
  14099. }
  14100. },
  14101. },
  14102. [
  14103. {
  14104. name: "Macro",
  14105. height: math.unit(150, "feet"),
  14106. default: true
  14107. },
  14108. {
  14109. name: "Macro+",
  14110. height: math.unit(200, "feet")
  14111. },
  14112. {
  14113. name: "Macro++",
  14114. height: math.unit(300, "feet")
  14115. },
  14116. {
  14117. name: "Macro+++",
  14118. height: math.unit(400, "feet")
  14119. },
  14120. ]
  14121. ))
  14122. characterMakers.push(() => makeCharacter(
  14123. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14124. {
  14125. side: {
  14126. height: math.unit(6, "feet"),
  14127. weight: math.unit(170, "lb"),
  14128. name: "Side",
  14129. image: {
  14130. source: "./media/characters/finn/side.svg",
  14131. extra: 1953 / 1807,
  14132. bottom: 0.057
  14133. }
  14134. },
  14135. },
  14136. [
  14137. {
  14138. name: "Megamacro",
  14139. height: math.unit(14445, "feet"),
  14140. default: true
  14141. },
  14142. ]
  14143. ))
  14144. characterMakers.push(() => makeCharacter(
  14145. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14146. {
  14147. front: {
  14148. height: math.unit(5 + 6 / 12, "feet"),
  14149. weight: math.unit(125, "lb"),
  14150. name: "Front",
  14151. image: {
  14152. source: "./media/characters/roy/front.svg",
  14153. extra: 1,
  14154. bottom: 0.11
  14155. }
  14156. },
  14157. },
  14158. [
  14159. {
  14160. name: "Micro",
  14161. height: math.unit(3, "inches"),
  14162. default: true
  14163. },
  14164. {
  14165. name: "Normal",
  14166. height: math.unit(5 + 6 / 12, "feet")
  14167. },
  14168. {
  14169. name: "Lesser Macro",
  14170. height: math.unit(60, "feet")
  14171. },
  14172. {
  14173. name: "Greater Macro",
  14174. height: math.unit(120, "feet")
  14175. },
  14176. ]
  14177. ))
  14178. characterMakers.push(() => makeCharacter(
  14179. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14180. {
  14181. front: {
  14182. height: math.unit(6, "feet"),
  14183. weight: math.unit(100, "lb"),
  14184. name: "Front",
  14185. image: {
  14186. source: "./media/characters/aevsivs/front.svg",
  14187. extra: 1,
  14188. bottom: 0.03
  14189. }
  14190. },
  14191. back: {
  14192. height: math.unit(6, "feet"),
  14193. weight: math.unit(100, "lb"),
  14194. name: "Back",
  14195. image: {
  14196. source: "./media/characters/aevsivs/back.svg"
  14197. }
  14198. },
  14199. },
  14200. [
  14201. {
  14202. name: "Micro",
  14203. height: math.unit(2, "inches"),
  14204. default: true
  14205. },
  14206. {
  14207. name: "Normal",
  14208. height: math.unit(5, "feet")
  14209. },
  14210. ]
  14211. ))
  14212. characterMakers.push(() => makeCharacter(
  14213. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14214. {
  14215. front: {
  14216. height: math.unit(5 + 7 / 12, "feet"),
  14217. weight: math.unit(159, "lb"),
  14218. name: "Front",
  14219. image: {
  14220. source: "./media/characters/hildegard/front.svg",
  14221. extra: 289 / 269,
  14222. bottom: 7.63 / 297.8
  14223. }
  14224. },
  14225. back: {
  14226. height: math.unit(5 + 7 / 12, "feet"),
  14227. weight: math.unit(159, "lb"),
  14228. name: "Back",
  14229. image: {
  14230. source: "./media/characters/hildegard/back.svg",
  14231. extra: 280 / 260,
  14232. bottom: 2.3 / 282
  14233. }
  14234. },
  14235. },
  14236. [
  14237. {
  14238. name: "Normal",
  14239. height: math.unit(5 + 7 / 12, "feet"),
  14240. default: true
  14241. },
  14242. ]
  14243. ))
  14244. characterMakers.push(() => makeCharacter(
  14245. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14246. {
  14247. bernard: {
  14248. height: math.unit(2 + 7 / 12, "feet"),
  14249. weight: math.unit(66, "lb"),
  14250. name: "Bernard",
  14251. rename: true,
  14252. image: {
  14253. source: "./media/characters/bernard-wilder/bernard.svg",
  14254. extra: 192 / 128,
  14255. bottom: 0.05
  14256. }
  14257. },
  14258. wilder: {
  14259. height: math.unit(5 + 8 / 12, "feet"),
  14260. weight: math.unit(143, "lb"),
  14261. name: "Wilder",
  14262. rename: true,
  14263. image: {
  14264. source: "./media/characters/bernard-wilder/wilder.svg",
  14265. extra: 361 / 312,
  14266. bottom: 0.02
  14267. }
  14268. },
  14269. },
  14270. [
  14271. {
  14272. name: "Normal",
  14273. height: math.unit(2 + 7 / 12, "feet"),
  14274. default: true
  14275. },
  14276. ]
  14277. ))
  14278. characterMakers.push(() => makeCharacter(
  14279. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14280. {
  14281. anthro: {
  14282. height: math.unit(6 + 1 / 12, "feet"),
  14283. weight: math.unit(155, "lb"),
  14284. name: "Anthro",
  14285. image: {
  14286. source: "./media/characters/hearth/anthro.svg",
  14287. extra: 260 / 250,
  14288. bottom: 0.02
  14289. }
  14290. },
  14291. feral: {
  14292. height: math.unit(3.78, "feet"),
  14293. weight: math.unit(35, "kg"),
  14294. name: "Feral",
  14295. image: {
  14296. source: "./media/characters/hearth/feral.svg",
  14297. extra: 153 / 135,
  14298. bottom: 0.03
  14299. }
  14300. },
  14301. },
  14302. [
  14303. {
  14304. name: "Normal",
  14305. height: math.unit(6 + 1 / 12, "feet"),
  14306. default: true
  14307. },
  14308. ]
  14309. ))
  14310. characterMakers.push(() => makeCharacter(
  14311. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14312. {
  14313. front: {
  14314. height: math.unit(6, "feet"),
  14315. weight: math.unit(182, "lb"),
  14316. name: "Front",
  14317. image: {
  14318. source: "./media/characters/ingrid/front.svg",
  14319. extra: 294 / 268,
  14320. bottom: 0.027
  14321. }
  14322. },
  14323. },
  14324. [
  14325. {
  14326. name: "Normal",
  14327. height: math.unit(6, "feet"),
  14328. default: true
  14329. },
  14330. ]
  14331. ))
  14332. characterMakers.push(() => makeCharacter(
  14333. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14334. {
  14335. eevee: {
  14336. height: math.unit(2 + 10 / 12, "feet"),
  14337. weight: math.unit(86, "lb"),
  14338. name: "Malgam",
  14339. image: {
  14340. source: "./media/characters/malgam/eevee.svg",
  14341. extra: 218 / 180,
  14342. bottom: 0.2
  14343. }
  14344. },
  14345. sylveon: {
  14346. height: math.unit(4, "feet"),
  14347. weight: math.unit(101, "lb"),
  14348. name: "Future Malgam",
  14349. rename: true,
  14350. image: {
  14351. source: "./media/characters/malgam/sylveon.svg",
  14352. extra: 371 / 325,
  14353. bottom: 0.015
  14354. }
  14355. },
  14356. gigantamax: {
  14357. height: math.unit(50, "feet"),
  14358. name: "Gigantamax Malgam",
  14359. rename: true,
  14360. image: {
  14361. source: "./media/characters/malgam/gigantamax.svg"
  14362. }
  14363. },
  14364. },
  14365. [
  14366. {
  14367. name: "Normal",
  14368. height: math.unit(2 + 10 / 12, "feet"),
  14369. default: true
  14370. },
  14371. ]
  14372. ))
  14373. characterMakers.push(() => makeCharacter(
  14374. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14375. {
  14376. front: {
  14377. height: math.unit(5 + 11 / 12, "feet"),
  14378. weight: math.unit(188, "lb"),
  14379. name: "Front",
  14380. image: {
  14381. source: "./media/characters/fleur/front.svg",
  14382. extra: 309 / 283,
  14383. bottom: 0.007
  14384. }
  14385. },
  14386. },
  14387. [
  14388. {
  14389. name: "Normal",
  14390. height: math.unit(5 + 11 / 12, "feet"),
  14391. default: true
  14392. },
  14393. ]
  14394. ))
  14395. characterMakers.push(() => makeCharacter(
  14396. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14397. {
  14398. front: {
  14399. height: math.unit(5 + 4 / 12, "feet"),
  14400. weight: math.unit(122, "lb"),
  14401. name: "Front",
  14402. image: {
  14403. source: "./media/characters/jude/front.svg",
  14404. extra: 288 / 273,
  14405. bottom: 0.03
  14406. }
  14407. },
  14408. },
  14409. [
  14410. {
  14411. name: "Normal",
  14412. height: math.unit(5 + 4 / 12, "feet"),
  14413. default: true
  14414. },
  14415. ]
  14416. ))
  14417. characterMakers.push(() => makeCharacter(
  14418. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14419. {
  14420. front: {
  14421. height: math.unit(5 + 11 / 12, "feet"),
  14422. weight: math.unit(190, "lb"),
  14423. name: "Front",
  14424. image: {
  14425. source: "./media/characters/seara/front.svg",
  14426. extra: 1,
  14427. bottom: 0.05
  14428. }
  14429. },
  14430. },
  14431. [
  14432. {
  14433. name: "Normal",
  14434. height: math.unit(5 + 11 / 12, "feet"),
  14435. default: true
  14436. },
  14437. ]
  14438. ))
  14439. characterMakers.push(() => makeCharacter(
  14440. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14441. {
  14442. front: {
  14443. height: math.unit(16 + 5 / 12, "feet"),
  14444. weight: math.unit(524, "lb"),
  14445. name: "Front",
  14446. image: {
  14447. source: "./media/characters/caspian/front.svg",
  14448. extra: 1,
  14449. bottom: 0.04
  14450. }
  14451. },
  14452. },
  14453. [
  14454. {
  14455. name: "Normal",
  14456. height: math.unit(16 + 5 / 12, "feet"),
  14457. default: true
  14458. },
  14459. ]
  14460. ))
  14461. characterMakers.push(() => makeCharacter(
  14462. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14463. {
  14464. front: {
  14465. height: math.unit(5 + 7 / 12, "feet"),
  14466. weight: math.unit(170, "lb"),
  14467. name: "Front",
  14468. image: {
  14469. source: "./media/characters/mika/front.svg",
  14470. extra: 1,
  14471. bottom: 0.016
  14472. }
  14473. },
  14474. },
  14475. [
  14476. {
  14477. name: "Normal",
  14478. height: math.unit(5 + 7 / 12, "feet"),
  14479. default: true
  14480. },
  14481. ]
  14482. ))
  14483. characterMakers.push(() => makeCharacter(
  14484. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14485. {
  14486. front: {
  14487. height: math.unit(6 + 2 / 12, "feet"),
  14488. weight: math.unit(268, "lb"),
  14489. name: "Front",
  14490. image: {
  14491. source: "./media/characters/sol/front.svg",
  14492. extra: 247 / 231,
  14493. bottom: 0.05
  14494. }
  14495. },
  14496. },
  14497. [
  14498. {
  14499. name: "Normal",
  14500. height: math.unit(6 + 2 / 12, "feet"),
  14501. default: true
  14502. },
  14503. ]
  14504. ))
  14505. characterMakers.push(() => makeCharacter(
  14506. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14507. {
  14508. buizel: {
  14509. height: math.unit(2 + 5 / 12, "feet"),
  14510. weight: math.unit(87, "lb"),
  14511. name: "Buizel",
  14512. image: {
  14513. source: "./media/characters/umiko/buizel.svg",
  14514. extra: 172 / 157,
  14515. bottom: 0.01
  14516. }
  14517. },
  14518. floatzel: {
  14519. height: math.unit(5 + 9 / 12, "feet"),
  14520. weight: math.unit(250, "lb"),
  14521. name: "Floatzel",
  14522. image: {
  14523. source: "./media/characters/umiko/floatzel.svg",
  14524. extra: 262 / 248
  14525. }
  14526. },
  14527. },
  14528. [
  14529. {
  14530. name: "Normal",
  14531. height: math.unit(2 + 5 / 12, "feet"),
  14532. default: true
  14533. },
  14534. ]
  14535. ))
  14536. characterMakers.push(() => makeCharacter(
  14537. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14538. {
  14539. front: {
  14540. height: math.unit(6 + 2 / 12, "feet"),
  14541. weight: math.unit(146, "lb"),
  14542. name: "Front",
  14543. image: {
  14544. source: "./media/characters/iliac/front.svg",
  14545. extra: 389 / 365,
  14546. bottom: 0.035
  14547. }
  14548. },
  14549. },
  14550. [
  14551. {
  14552. name: "Normal",
  14553. height: math.unit(6 + 2 / 12, "feet"),
  14554. default: true
  14555. },
  14556. ]
  14557. ))
  14558. characterMakers.push(() => makeCharacter(
  14559. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14560. {
  14561. front: {
  14562. height: math.unit(6, "feet"),
  14563. weight: math.unit(170, "lb"),
  14564. name: "Front",
  14565. image: {
  14566. source: "./media/characters/topaz/front.svg",
  14567. extra: 317 / 303,
  14568. bottom: 0.055
  14569. }
  14570. },
  14571. },
  14572. [
  14573. {
  14574. name: "Normal",
  14575. height: math.unit(6, "feet"),
  14576. default: true
  14577. },
  14578. ]
  14579. ))
  14580. characterMakers.push(() => makeCharacter(
  14581. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14582. {
  14583. front: {
  14584. height: math.unit(5 + 11 / 12, "feet"),
  14585. weight: math.unit(144, "lb"),
  14586. name: "Front",
  14587. image: {
  14588. source: "./media/characters/gabriel/front.svg",
  14589. extra: 285 / 262,
  14590. bottom: 0.004
  14591. }
  14592. },
  14593. },
  14594. [
  14595. {
  14596. name: "Normal",
  14597. height: math.unit(5 + 11 / 12, "feet"),
  14598. default: true
  14599. },
  14600. ]
  14601. ))
  14602. characterMakers.push(() => makeCharacter(
  14603. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14604. {
  14605. side: {
  14606. height: math.unit(6 + 5 / 12, "feet"),
  14607. weight: math.unit(300, "lb"),
  14608. name: "Side",
  14609. image: {
  14610. source: "./media/characters/tempest-suicune/side.svg",
  14611. extra: 195 / 154,
  14612. bottom: 0.04
  14613. }
  14614. },
  14615. },
  14616. [
  14617. {
  14618. name: "Normal",
  14619. height: math.unit(6 + 5 / 12, "feet"),
  14620. default: true
  14621. },
  14622. ]
  14623. ))
  14624. characterMakers.push(() => makeCharacter(
  14625. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14626. {
  14627. front: {
  14628. height: math.unit(7 + 2 / 12, "feet"),
  14629. weight: math.unit(322, "lb"),
  14630. name: "Front",
  14631. image: {
  14632. source: "./media/characters/vulcan/front.svg",
  14633. extra: 154 / 147,
  14634. bottom: 0.04
  14635. }
  14636. },
  14637. },
  14638. [
  14639. {
  14640. name: "Normal",
  14641. height: math.unit(7 + 2 / 12, "feet"),
  14642. default: true
  14643. },
  14644. ]
  14645. ))
  14646. characterMakers.push(() => makeCharacter(
  14647. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14648. {
  14649. front: {
  14650. height: math.unit(5 + 10 / 12, "feet"),
  14651. weight: math.unit(264, "lb"),
  14652. name: "Front",
  14653. image: {
  14654. source: "./media/characters/gault/front.svg",
  14655. extra: 161 / 140,
  14656. bottom: 0.028
  14657. }
  14658. },
  14659. },
  14660. [
  14661. {
  14662. name: "Normal",
  14663. height: math.unit(5 + 10 / 12, "feet"),
  14664. default: true
  14665. },
  14666. ]
  14667. ))
  14668. characterMakers.push(() => makeCharacter(
  14669. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14670. {
  14671. front: {
  14672. height: math.unit(6, "feet"),
  14673. weight: math.unit(150, "lb"),
  14674. name: "Front",
  14675. image: {
  14676. source: "./media/characters/shard/front.svg",
  14677. extra: 273 / 238,
  14678. bottom: 0.02
  14679. }
  14680. },
  14681. },
  14682. [
  14683. {
  14684. name: "Normal",
  14685. height: math.unit(3 + 6 / 12, "feet"),
  14686. default: true
  14687. },
  14688. ]
  14689. ))
  14690. characterMakers.push(() => makeCharacter(
  14691. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14692. {
  14693. front: {
  14694. height: math.unit(5 + 11 / 12, "feet"),
  14695. weight: math.unit(146, "lb"),
  14696. name: "Front",
  14697. image: {
  14698. source: "./media/characters/ashe/front.svg",
  14699. extra: 400 / 373,
  14700. bottom: 0.01
  14701. }
  14702. },
  14703. },
  14704. [
  14705. {
  14706. name: "Normal",
  14707. height: math.unit(5 + 11 / 12, "feet"),
  14708. default: true
  14709. },
  14710. ]
  14711. ))
  14712. characterMakers.push(() => makeCharacter(
  14713. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14714. {
  14715. front: {
  14716. height: math.unit(5 + 5 / 12, "feet"),
  14717. weight: math.unit(135, "lb"),
  14718. name: "Front",
  14719. image: {
  14720. source: "./media/characters/beatrix/front.svg",
  14721. extra: 392 / 379,
  14722. bottom: 0.01
  14723. }
  14724. },
  14725. },
  14726. [
  14727. {
  14728. name: "Normal",
  14729. height: math.unit(6, "feet"),
  14730. default: true
  14731. },
  14732. ]
  14733. ))
  14734. characterMakers.push(() => makeCharacter(
  14735. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14736. {
  14737. front: {
  14738. height: math.unit(6, "feet"),
  14739. weight: math.unit(150, "lb"),
  14740. name: "Front",
  14741. image: {
  14742. source: "./media/characters/ignatius/front.svg",
  14743. extra: 245 / 222,
  14744. bottom: 0.01
  14745. }
  14746. },
  14747. },
  14748. [
  14749. {
  14750. name: "Normal",
  14751. height: math.unit(5 + 5 / 12, "feet"),
  14752. default: true
  14753. },
  14754. ]
  14755. ))
  14756. characterMakers.push(() => makeCharacter(
  14757. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14758. {
  14759. front: {
  14760. height: math.unit(6 + 2 / 12, "feet"),
  14761. weight: math.unit(138, "lb"),
  14762. name: "Front",
  14763. image: {
  14764. source: "./media/characters/mei-li/front.svg",
  14765. extra: 237 / 229,
  14766. bottom: 0.03
  14767. }
  14768. },
  14769. },
  14770. [
  14771. {
  14772. name: "Normal",
  14773. height: math.unit(6 + 2 / 12, "feet"),
  14774. default: true
  14775. },
  14776. ]
  14777. ))
  14778. characterMakers.push(() => makeCharacter(
  14779. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14780. {
  14781. front: {
  14782. height: math.unit(2 + 4 / 12, "feet"),
  14783. weight: math.unit(62, "lb"),
  14784. name: "Front",
  14785. image: {
  14786. source: "./media/characters/puru/front.svg",
  14787. extra: 206 / 149,
  14788. bottom: 0.06
  14789. }
  14790. },
  14791. },
  14792. [
  14793. {
  14794. name: "Normal",
  14795. height: math.unit(2 + 4 / 12, "feet"),
  14796. default: true
  14797. },
  14798. ]
  14799. ))
  14800. characterMakers.push(() => makeCharacter(
  14801. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14802. {
  14803. taur: {
  14804. height: math.unit(11, "feet"),
  14805. weight: math.unit(500, "lb"),
  14806. name: "Taur",
  14807. image: {
  14808. source: "./media/characters/kee/taur.svg",
  14809. extra: 1,
  14810. bottom: 0.04
  14811. }
  14812. },
  14813. },
  14814. [
  14815. {
  14816. name: "Normal",
  14817. height: math.unit(11, "feet"),
  14818. default: true
  14819. },
  14820. ]
  14821. ))
  14822. characterMakers.push(() => makeCharacter(
  14823. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14824. {
  14825. anthro: {
  14826. height: math.unit(7, "feet"),
  14827. weight: math.unit(190, "lb"),
  14828. name: "Anthro",
  14829. image: {
  14830. source: "./media/characters/cobalt-dracha/anthro.svg",
  14831. extra: 231 / 225,
  14832. bottom: 0.04
  14833. }
  14834. },
  14835. feral: {
  14836. height: math.unit(9 + 7 / 12, "feet"),
  14837. weight: math.unit(294, "lb"),
  14838. name: "Feral",
  14839. image: {
  14840. source: "./media/characters/cobalt-dracha/feral.svg",
  14841. extra: 692 / 633,
  14842. bottom: 0.05
  14843. }
  14844. },
  14845. },
  14846. [
  14847. {
  14848. name: "Normal",
  14849. height: math.unit(7, "feet"),
  14850. default: true
  14851. },
  14852. ]
  14853. ))
  14854. characterMakers.push(() => makeCharacter(
  14855. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14856. {
  14857. fallen: {
  14858. height: math.unit(11 + 8 / 12, "feet"),
  14859. weight: math.unit(485, "lb"),
  14860. name: "Java (Fallen)",
  14861. rename: true,
  14862. image: {
  14863. source: "./media/characters/java/fallen.svg",
  14864. extra: 226 / 208,
  14865. bottom: 0.005
  14866. }
  14867. },
  14868. godkin: {
  14869. height: math.unit(10 + 6 / 12, "feet"),
  14870. weight: math.unit(328, "lb"),
  14871. name: "Java (Godkin)",
  14872. rename: true,
  14873. image: {
  14874. source: "./media/characters/java/godkin.svg",
  14875. extra: 270 / 262,
  14876. bottom: 0.02
  14877. }
  14878. },
  14879. },
  14880. [
  14881. {
  14882. name: "Normal",
  14883. height: math.unit(11 + 8 / 12, "feet"),
  14884. default: true
  14885. },
  14886. ]
  14887. ))
  14888. characterMakers.push(() => makeCharacter(
  14889. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14890. {
  14891. front: {
  14892. height: math.unit(7 + 8 / 12, "feet"),
  14893. weight: math.unit(320, "lb"),
  14894. name: "Front",
  14895. image: {
  14896. source: "./media/characters/skoll/front.svg",
  14897. extra: 232 / 220,
  14898. bottom: 0.02
  14899. }
  14900. },
  14901. },
  14902. [
  14903. {
  14904. name: "Normal",
  14905. height: math.unit(7 + 8 / 12, "feet"),
  14906. default: true
  14907. },
  14908. ]
  14909. ))
  14910. characterMakers.push(() => makeCharacter(
  14911. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14912. {
  14913. front: {
  14914. height: math.unit(5 + 9 / 12, "feet"),
  14915. weight: math.unit(170, "lb"),
  14916. name: "Front",
  14917. image: {
  14918. source: "./media/characters/purna/front.svg",
  14919. extra: 239 / 229,
  14920. bottom: 0.01
  14921. }
  14922. },
  14923. },
  14924. [
  14925. {
  14926. name: "Normal",
  14927. height: math.unit(5 + 9 / 12, "feet"),
  14928. default: true
  14929. },
  14930. ]
  14931. ))
  14932. characterMakers.push(() => makeCharacter(
  14933. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14934. {
  14935. front: {
  14936. height: math.unit(5 + 9 / 12, "feet"),
  14937. weight: math.unit(142, "lb"),
  14938. name: "Front",
  14939. image: {
  14940. source: "./media/characters/kuva/front.svg",
  14941. extra: 281 / 271,
  14942. bottom: 0.006
  14943. }
  14944. },
  14945. },
  14946. [
  14947. {
  14948. name: "Normal",
  14949. height: math.unit(5 + 9 / 12, "feet"),
  14950. default: true
  14951. },
  14952. ]
  14953. ))
  14954. characterMakers.push(() => makeCharacter(
  14955. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14956. {
  14957. anthro: {
  14958. height: math.unit(9 + 2 / 12, "feet"),
  14959. weight: math.unit(270, "lb"),
  14960. name: "Anthro",
  14961. image: {
  14962. source: "./media/characters/embra/anthro.svg",
  14963. extra: 200 / 187,
  14964. bottom: 0.02
  14965. }
  14966. },
  14967. feral: {
  14968. height: math.unit(18 + 8 / 12, "feet"),
  14969. weight: math.unit(576, "lb"),
  14970. name: "Feral",
  14971. image: {
  14972. source: "./media/characters/embra/feral.svg",
  14973. extra: 152 / 137,
  14974. bottom: 0.037
  14975. }
  14976. },
  14977. },
  14978. [
  14979. {
  14980. name: "Normal",
  14981. height: math.unit(9 + 2 / 12, "feet"),
  14982. default: true
  14983. },
  14984. ]
  14985. ))
  14986. characterMakers.push(() => makeCharacter(
  14987. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14988. {
  14989. anthro: {
  14990. height: math.unit(10 + 9 / 12, "feet"),
  14991. weight: math.unit(224, "lb"),
  14992. name: "Anthro",
  14993. image: {
  14994. source: "./media/characters/grottos/anthro.svg",
  14995. extra: 350 / 332,
  14996. bottom: 0.045
  14997. }
  14998. },
  14999. feral: {
  15000. height: math.unit(20 + 7 / 12, "feet"),
  15001. weight: math.unit(629, "lb"),
  15002. name: "Feral",
  15003. image: {
  15004. source: "./media/characters/grottos/feral.svg",
  15005. extra: 207 / 190,
  15006. bottom: 0.05
  15007. }
  15008. },
  15009. },
  15010. [
  15011. {
  15012. name: "Normal",
  15013. height: math.unit(10 + 9 / 12, "feet"),
  15014. default: true
  15015. },
  15016. ]
  15017. ))
  15018. characterMakers.push(() => makeCharacter(
  15019. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15020. {
  15021. anthro: {
  15022. height: math.unit(9 + 6 / 12, "feet"),
  15023. weight: math.unit(298, "lb"),
  15024. name: "Anthro",
  15025. image: {
  15026. source: "./media/characters/frifna/anthro.svg",
  15027. extra: 282 / 269,
  15028. bottom: 0.015
  15029. }
  15030. },
  15031. feral: {
  15032. height: math.unit(16 + 2 / 12, "feet"),
  15033. weight: math.unit(624, "lb"),
  15034. name: "Feral",
  15035. image: {
  15036. source: "./media/characters/frifna/feral.svg"
  15037. }
  15038. },
  15039. },
  15040. [
  15041. {
  15042. name: "Normal",
  15043. height: math.unit(9 + 6 / 12, "feet"),
  15044. default: true
  15045. },
  15046. ]
  15047. ))
  15048. characterMakers.push(() => makeCharacter(
  15049. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15050. {
  15051. front: {
  15052. height: math.unit(6 + 2 / 12, "feet"),
  15053. weight: math.unit(168, "lb"),
  15054. name: "Front",
  15055. image: {
  15056. source: "./media/characters/elise/front.svg",
  15057. extra: 276 / 271
  15058. }
  15059. },
  15060. },
  15061. [
  15062. {
  15063. name: "Normal",
  15064. height: math.unit(6 + 2 / 12, "feet"),
  15065. default: true
  15066. },
  15067. ]
  15068. ))
  15069. characterMakers.push(() => makeCharacter(
  15070. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15071. {
  15072. front: {
  15073. height: math.unit(5 + 10 / 12, "feet"),
  15074. weight: math.unit(210, "lb"),
  15075. name: "Front",
  15076. image: {
  15077. source: "./media/characters/glade/front.svg",
  15078. extra: 258 / 247,
  15079. bottom: 0.008
  15080. }
  15081. },
  15082. },
  15083. [
  15084. {
  15085. name: "Normal",
  15086. height: math.unit(5 + 10 / 12, "feet"),
  15087. default: true
  15088. },
  15089. ]
  15090. ))
  15091. characterMakers.push(() => makeCharacter(
  15092. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15093. {
  15094. front: {
  15095. height: math.unit(5 + 10 / 12, "feet"),
  15096. weight: math.unit(129, "lb"),
  15097. name: "Front",
  15098. image: {
  15099. source: "./media/characters/rina/front.svg",
  15100. extra: 266 / 255,
  15101. bottom: 0.005
  15102. }
  15103. },
  15104. },
  15105. [
  15106. {
  15107. name: "Normal",
  15108. height: math.unit(5 + 10 / 12, "feet"),
  15109. default: true
  15110. },
  15111. ]
  15112. ))
  15113. characterMakers.push(() => makeCharacter(
  15114. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15115. {
  15116. front: {
  15117. height: math.unit(6 + 1 / 12, "feet"),
  15118. weight: math.unit(192, "lb"),
  15119. name: "Front",
  15120. image: {
  15121. source: "./media/characters/veronica/front.svg",
  15122. extra: 319 / 309,
  15123. bottom: 0.005
  15124. }
  15125. },
  15126. },
  15127. [
  15128. {
  15129. name: "Normal",
  15130. height: math.unit(6 + 1 / 12, "feet"),
  15131. default: true
  15132. },
  15133. ]
  15134. ))
  15135. characterMakers.push(() => makeCharacter(
  15136. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15137. {
  15138. front: {
  15139. height: math.unit(9 + 3 / 12, "feet"),
  15140. weight: math.unit(1100, "lb"),
  15141. name: "Front",
  15142. image: {
  15143. source: "./media/characters/braxton/front.svg",
  15144. extra: 1057 / 984,
  15145. bottom: 0.05
  15146. }
  15147. },
  15148. },
  15149. [
  15150. {
  15151. name: "Normal",
  15152. height: math.unit(9 + 3 / 12, "feet")
  15153. },
  15154. {
  15155. name: "Giant",
  15156. height: math.unit(300, "feet"),
  15157. default: true
  15158. },
  15159. {
  15160. name: "Macro",
  15161. height: math.unit(700, "feet")
  15162. },
  15163. {
  15164. name: "Megamacro",
  15165. height: math.unit(6000, "feet")
  15166. },
  15167. ]
  15168. ))
  15169. characterMakers.push(() => makeCharacter(
  15170. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15171. {
  15172. front: {
  15173. height: math.unit(6 + 7 / 12, "feet"),
  15174. weight: math.unit(150, "lb"),
  15175. name: "Front",
  15176. image: {
  15177. source: "./media/characters/blue-feyonics/front.svg",
  15178. extra: 1403 / 1306,
  15179. bottom: 0.047
  15180. }
  15181. },
  15182. },
  15183. [
  15184. {
  15185. name: "Normal",
  15186. height: math.unit(6 + 7 / 12, "feet"),
  15187. default: true
  15188. },
  15189. ]
  15190. ))
  15191. characterMakers.push(() => makeCharacter(
  15192. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15193. {
  15194. front: {
  15195. height: math.unit(1.8, "meters"),
  15196. weight: math.unit(60, "kg"),
  15197. name: "Front",
  15198. image: {
  15199. source: "./media/characters/maxwell/front.svg",
  15200. extra: 2060 / 1873
  15201. }
  15202. },
  15203. },
  15204. [
  15205. {
  15206. name: "Micro",
  15207. height: math.unit(1, "mm")
  15208. },
  15209. {
  15210. name: "Normal",
  15211. height: math.unit(1.8, "meter"),
  15212. default: true
  15213. },
  15214. {
  15215. name: "Macro",
  15216. height: math.unit(30, "meters")
  15217. },
  15218. {
  15219. name: "Megamacro",
  15220. height: math.unit(10, "km")
  15221. },
  15222. ]
  15223. ))
  15224. characterMakers.push(() => makeCharacter(
  15225. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15226. {
  15227. front: {
  15228. height: math.unit(6, "feet"),
  15229. weight: math.unit(150, "lb"),
  15230. name: "Front",
  15231. image: {
  15232. source: "./media/characters/jack/front.svg",
  15233. extra: 1754 / 1640,
  15234. bottom: 0.01
  15235. }
  15236. },
  15237. },
  15238. [
  15239. {
  15240. name: "Normal",
  15241. height: math.unit(80000, "feet"),
  15242. default: true
  15243. },
  15244. {
  15245. name: "Max size",
  15246. height: math.unit(10, "lightyears")
  15247. },
  15248. ]
  15249. ))
  15250. characterMakers.push(() => makeCharacter(
  15251. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15252. {
  15253. upright: {
  15254. height: math.unit(7, "feet"),
  15255. weight: math.unit(170, "lb"),
  15256. name: "Upright",
  15257. image: {
  15258. source: "./media/characters/cafat/upright.svg",
  15259. bottom: 0.01
  15260. }
  15261. },
  15262. uprightFull: {
  15263. height: math.unit(7, "feet"),
  15264. weight: math.unit(170, "lb"),
  15265. name: "Upright (Full)",
  15266. image: {
  15267. source: "./media/characters/cafat/upright-full.svg",
  15268. bottom: 0.01
  15269. }
  15270. },
  15271. side: {
  15272. height: math.unit(5, "feet"),
  15273. weight: math.unit(150, "lb"),
  15274. name: "Side",
  15275. image: {
  15276. source: "./media/characters/cafat/side.svg"
  15277. }
  15278. },
  15279. },
  15280. [
  15281. {
  15282. name: "Small",
  15283. height: math.unit(7, "feet"),
  15284. default: true
  15285. },
  15286. {
  15287. name: "Large",
  15288. height: math.unit(15.5, "feet")
  15289. },
  15290. ]
  15291. ))
  15292. characterMakers.push(() => makeCharacter(
  15293. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15294. {
  15295. front: {
  15296. height: math.unit(6, "feet"),
  15297. weight: math.unit(150, "lb"),
  15298. name: "Front",
  15299. image: {
  15300. source: "./media/characters/verin-raharra/front.svg",
  15301. extra: 5019 / 4835,
  15302. bottom: 0.023
  15303. }
  15304. },
  15305. },
  15306. [
  15307. {
  15308. name: "Normal",
  15309. height: math.unit(7 + 5 / 12, "feet"),
  15310. default: true
  15311. },
  15312. {
  15313. name: "Upsized",
  15314. height: math.unit(20, "feet")
  15315. },
  15316. ]
  15317. ))
  15318. characterMakers.push(() => makeCharacter(
  15319. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15320. {
  15321. front: {
  15322. height: math.unit(7, "feet"),
  15323. weight: math.unit(230, "lb"),
  15324. name: "Front",
  15325. image: {
  15326. source: "./media/characters/nakata/front.svg",
  15327. extra: 1.005,
  15328. bottom: 0.01
  15329. }
  15330. },
  15331. },
  15332. [
  15333. {
  15334. name: "Normal",
  15335. height: math.unit(7, "feet"),
  15336. default: true
  15337. },
  15338. {
  15339. name: "Big",
  15340. height: math.unit(14, "feet")
  15341. },
  15342. {
  15343. name: "Macro",
  15344. height: math.unit(400, "feet")
  15345. },
  15346. ]
  15347. ))
  15348. characterMakers.push(() => makeCharacter(
  15349. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15350. {
  15351. front: {
  15352. height: math.unit(4.91, "feet"),
  15353. weight: math.unit(100, "lb"),
  15354. name: "Front",
  15355. image: {
  15356. source: "./media/characters/lily/front.svg",
  15357. extra: 1585 / 1415,
  15358. bottom: 0.02
  15359. }
  15360. },
  15361. },
  15362. [
  15363. {
  15364. name: "Normal",
  15365. height: math.unit(4.91, "feet"),
  15366. default: true
  15367. },
  15368. ]
  15369. ))
  15370. characterMakers.push(() => makeCharacter(
  15371. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15372. {
  15373. laying: {
  15374. height: math.unit(4 + 4 / 12, "feet"),
  15375. weight: math.unit(600, "lb"),
  15376. name: "Laying",
  15377. image: {
  15378. source: "./media/characters/sheila/laying.svg",
  15379. extra: 1333 / 1265,
  15380. bottom: 0.16
  15381. }
  15382. },
  15383. },
  15384. [
  15385. {
  15386. name: "Normal",
  15387. height: math.unit(4 + 4 / 12, "feet"),
  15388. default: true
  15389. },
  15390. ]
  15391. ))
  15392. characterMakers.push(() => makeCharacter(
  15393. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15394. {
  15395. front: {
  15396. height: math.unit(6, "feet"),
  15397. weight: math.unit(190, "lb"),
  15398. name: "Front",
  15399. image: {
  15400. source: "./media/characters/sax/front.svg",
  15401. extra: 1187 / 973,
  15402. bottom: 0.042
  15403. }
  15404. },
  15405. },
  15406. [
  15407. {
  15408. name: "Micro",
  15409. height: math.unit(4, "inches"),
  15410. default: true
  15411. },
  15412. ]
  15413. ))
  15414. characterMakers.push(() => makeCharacter(
  15415. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15416. {
  15417. front: {
  15418. height: math.unit(6, "feet"),
  15419. weight: math.unit(150, "lb"),
  15420. name: "Front",
  15421. image: {
  15422. source: "./media/characters/pandora/front.svg",
  15423. extra: 2720 / 2556,
  15424. bottom: 0.015
  15425. }
  15426. },
  15427. back: {
  15428. height: math.unit(6, "feet"),
  15429. weight: math.unit(150, "lb"),
  15430. name: "Back",
  15431. image: {
  15432. source: "./media/characters/pandora/back.svg",
  15433. extra: 2720 / 2556,
  15434. bottom: 0.01
  15435. }
  15436. },
  15437. beans: {
  15438. height: math.unit(6 / 8, "feet"),
  15439. name: "Beans",
  15440. image: {
  15441. source: "./media/characters/pandora/beans.svg"
  15442. }
  15443. },
  15444. skirt: {
  15445. height: math.unit(6, "feet"),
  15446. weight: math.unit(150, "lb"),
  15447. name: "Skirt",
  15448. image: {
  15449. source: "./media/characters/pandora/skirt.svg",
  15450. extra: 1622 / 1525,
  15451. bottom: 0.015
  15452. }
  15453. },
  15454. hoodie: {
  15455. height: math.unit(6, "feet"),
  15456. weight: math.unit(150, "lb"),
  15457. name: "Hoodie",
  15458. image: {
  15459. source: "./media/characters/pandora/hoodie.svg",
  15460. extra: 1622 / 1525,
  15461. bottom: 0.015
  15462. }
  15463. },
  15464. casual: {
  15465. height: math.unit(6, "feet"),
  15466. weight: math.unit(150, "lb"),
  15467. name: "Casual",
  15468. image: {
  15469. source: "./media/characters/pandora/casual.svg",
  15470. extra: 1622 / 1525,
  15471. bottom: 0.015
  15472. }
  15473. },
  15474. },
  15475. [
  15476. {
  15477. name: "Normal",
  15478. height: math.unit(6, "feet")
  15479. },
  15480. {
  15481. name: "Big Steppy",
  15482. height: math.unit(1, "km"),
  15483. default: true
  15484. },
  15485. ]
  15486. ))
  15487. characterMakers.push(() => makeCharacter(
  15488. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15489. {
  15490. side: {
  15491. height: math.unit(10, "feet"),
  15492. weight: math.unit(800, "kg"),
  15493. name: "Side",
  15494. image: {
  15495. source: "./media/characters/venio-darcony/side.svg",
  15496. extra: 1373 / 1003,
  15497. bottom: 0.037
  15498. }
  15499. },
  15500. front: {
  15501. height: math.unit(19, "feet"),
  15502. weight: math.unit(800, "kg"),
  15503. name: "Front",
  15504. image: {
  15505. source: "./media/characters/venio-darcony/front.svg"
  15506. }
  15507. },
  15508. back: {
  15509. height: math.unit(19, "feet"),
  15510. weight: math.unit(800, "kg"),
  15511. name: "Back",
  15512. image: {
  15513. source: "./media/characters/venio-darcony/back.svg"
  15514. }
  15515. },
  15516. sideNsfw: {
  15517. height: math.unit(10, "feet"),
  15518. weight: math.unit(800, "kg"),
  15519. name: "Side (NSFW)",
  15520. image: {
  15521. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15522. extra: 1373 / 1003,
  15523. bottom: 0.037
  15524. }
  15525. },
  15526. frontNsfw: {
  15527. height: math.unit(19, "feet"),
  15528. weight: math.unit(800, "kg"),
  15529. name: "Front (NSFW)",
  15530. image: {
  15531. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15532. }
  15533. },
  15534. backNsfw: {
  15535. height: math.unit(19, "feet"),
  15536. weight: math.unit(800, "kg"),
  15537. name: "Back (NSFW)",
  15538. image: {
  15539. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15540. }
  15541. },
  15542. sideArmored: {
  15543. height: math.unit(10, "feet"),
  15544. weight: math.unit(800, "kg"),
  15545. name: "Side (Armored)",
  15546. image: {
  15547. source: "./media/characters/venio-darcony/side-armored.svg",
  15548. extra: 1373 / 1003,
  15549. bottom: 0.037
  15550. }
  15551. },
  15552. frontArmored: {
  15553. height: math.unit(19, "feet"),
  15554. weight: math.unit(900, "kg"),
  15555. name: "Front (Armored)",
  15556. image: {
  15557. source: "./media/characters/venio-darcony/front-armored.svg"
  15558. }
  15559. },
  15560. backArmored: {
  15561. height: math.unit(19, "feet"),
  15562. weight: math.unit(900, "kg"),
  15563. name: "Back (Armored)",
  15564. image: {
  15565. source: "./media/characters/venio-darcony/back-armored.svg"
  15566. }
  15567. },
  15568. sword: {
  15569. height: math.unit(10, "feet"),
  15570. weight: math.unit(50, "lb"),
  15571. name: "Sword",
  15572. image: {
  15573. source: "./media/characters/venio-darcony/sword.svg"
  15574. }
  15575. },
  15576. },
  15577. [
  15578. {
  15579. name: "Normal",
  15580. height: math.unit(10, "feet")
  15581. },
  15582. {
  15583. name: "Macro",
  15584. height: math.unit(130, "feet"),
  15585. default: true
  15586. },
  15587. {
  15588. name: "Macro+",
  15589. height: math.unit(240, "feet")
  15590. },
  15591. ]
  15592. ))
  15593. characterMakers.push(() => makeCharacter(
  15594. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15595. {
  15596. front: {
  15597. height: math.unit(6, "feet"),
  15598. weight: math.unit(150, "lb"),
  15599. name: "Front",
  15600. image: {
  15601. source: "./media/characters/veski/front.svg",
  15602. extra: 1299 / 1225,
  15603. bottom: 0.04
  15604. }
  15605. },
  15606. back: {
  15607. height: math.unit(6, "feet"),
  15608. weight: math.unit(150, "lb"),
  15609. name: "Back",
  15610. image: {
  15611. source: "./media/characters/veski/back.svg",
  15612. extra: 1299 / 1225,
  15613. bottom: 0.008
  15614. }
  15615. },
  15616. maw: {
  15617. height: math.unit(1.5 * 1.21, "feet"),
  15618. name: "Maw",
  15619. image: {
  15620. source: "./media/characters/veski/maw.svg"
  15621. }
  15622. },
  15623. },
  15624. [
  15625. {
  15626. name: "Macro",
  15627. height: math.unit(2, "km"),
  15628. default: true
  15629. },
  15630. ]
  15631. ))
  15632. characterMakers.push(() => makeCharacter(
  15633. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15634. {
  15635. front: {
  15636. height: math.unit(5 + 7 / 12, "feet"),
  15637. name: "Front",
  15638. image: {
  15639. source: "./media/characters/isabelle/front.svg",
  15640. extra: 2130 / 1976,
  15641. bottom: 0.05
  15642. }
  15643. },
  15644. },
  15645. [
  15646. {
  15647. name: "Supermicro",
  15648. height: math.unit(10, "micrometers")
  15649. },
  15650. {
  15651. name: "Micro",
  15652. height: math.unit(1, "inch")
  15653. },
  15654. {
  15655. name: "Tiny",
  15656. height: math.unit(5, "inches")
  15657. },
  15658. {
  15659. name: "Standard",
  15660. height: math.unit(5 + 7 / 12, "inches")
  15661. },
  15662. {
  15663. name: "Macro",
  15664. height: math.unit(80, "meters"),
  15665. default: true
  15666. },
  15667. {
  15668. name: "Megamacro",
  15669. height: math.unit(250, "meters")
  15670. },
  15671. {
  15672. name: "Gigamacro",
  15673. height: math.unit(5, "km")
  15674. },
  15675. {
  15676. name: "Cosmic",
  15677. height: math.unit(2.5e6, "miles")
  15678. },
  15679. ]
  15680. ))
  15681. characterMakers.push(() => makeCharacter(
  15682. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15683. {
  15684. front: {
  15685. height: math.unit(6, "feet"),
  15686. weight: math.unit(150, "lb"),
  15687. name: "Front",
  15688. image: {
  15689. source: "./media/characters/hanzo/front.svg",
  15690. extra: 374 / 344,
  15691. bottom: 0.02
  15692. }
  15693. },
  15694. },
  15695. [
  15696. {
  15697. name: "Normal",
  15698. height: math.unit(8, "feet"),
  15699. default: true
  15700. },
  15701. ]
  15702. ))
  15703. characterMakers.push(() => makeCharacter(
  15704. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15705. {
  15706. front: {
  15707. height: math.unit(7, "feet"),
  15708. weight: math.unit(130, "lb"),
  15709. name: "Front",
  15710. image: {
  15711. source: "./media/characters/anna/front.svg",
  15712. extra: 169 / 145,
  15713. bottom: 0.06
  15714. }
  15715. },
  15716. full: {
  15717. height: math.unit(4.96, "feet"),
  15718. weight: math.unit(220, "lb"),
  15719. name: "Full",
  15720. image: {
  15721. source: "./media/characters/anna/full.svg",
  15722. extra: 138 / 114,
  15723. bottom: 0.15
  15724. }
  15725. },
  15726. tongue: {
  15727. height: math.unit(2.53, "feet"),
  15728. name: "Tongue",
  15729. image: {
  15730. source: "./media/characters/anna/tongue.svg"
  15731. }
  15732. },
  15733. },
  15734. [
  15735. {
  15736. name: "Normal",
  15737. height: math.unit(7, "feet"),
  15738. default: true
  15739. },
  15740. ]
  15741. ))
  15742. characterMakers.push(() => makeCharacter(
  15743. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15744. {
  15745. front: {
  15746. height: math.unit(7, "feet"),
  15747. weight: math.unit(150, "lb"),
  15748. name: "Front",
  15749. image: {
  15750. source: "./media/characters/ian-corvid/front.svg",
  15751. extra: 150 / 142,
  15752. bottom: 0.02
  15753. }
  15754. },
  15755. back: {
  15756. height: math.unit(7, "feet"),
  15757. weight: math.unit(150, "lb"),
  15758. name: "Back",
  15759. image: {
  15760. source: "./media/characters/ian-corvid/back.svg",
  15761. extra: 150 / 143,
  15762. bottom: 0.01
  15763. }
  15764. },
  15765. stomping: {
  15766. height: math.unit(7, "feet"),
  15767. weight: math.unit(150, "lb"),
  15768. name: "Stomping",
  15769. image: {
  15770. source: "./media/characters/ian-corvid/stomping.svg",
  15771. extra: 76 / 72
  15772. }
  15773. },
  15774. sitting: {
  15775. height: math.unit(7 / 1.8, "feet"),
  15776. weight: math.unit(150, "lb"),
  15777. name: "Sitting",
  15778. image: {
  15779. source: "./media/characters/ian-corvid/sitting.svg",
  15780. extra: 1400 / 1269,
  15781. bottom: 0.15
  15782. }
  15783. },
  15784. },
  15785. [
  15786. {
  15787. name: "Tiny Microw",
  15788. height: math.unit(1, "inch")
  15789. },
  15790. {
  15791. name: "Microw",
  15792. height: math.unit(6, "inches")
  15793. },
  15794. {
  15795. name: "Crow",
  15796. height: math.unit(7 + 1 / 12, "feet"),
  15797. default: true
  15798. },
  15799. {
  15800. name: "Macrow",
  15801. height: math.unit(176, "feet")
  15802. },
  15803. ]
  15804. ))
  15805. characterMakers.push(() => makeCharacter(
  15806. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15807. {
  15808. front: {
  15809. height: math.unit(5 + 7 / 12, "feet"),
  15810. weight: math.unit(147, "lb"),
  15811. name: "Front",
  15812. image: {
  15813. source: "./media/characters/natalie-kellon/front.svg",
  15814. extra: 1214 / 1141,
  15815. bottom: 0.02
  15816. }
  15817. },
  15818. },
  15819. [
  15820. {
  15821. name: "Micro",
  15822. height: math.unit(1 / 16, "inch")
  15823. },
  15824. {
  15825. name: "Tiny",
  15826. height: math.unit(4, "inches")
  15827. },
  15828. {
  15829. name: "Normal",
  15830. height: math.unit(5 + 7 / 12, "feet"),
  15831. default: true
  15832. },
  15833. {
  15834. name: "Amazon",
  15835. height: math.unit(12, "feet")
  15836. },
  15837. {
  15838. name: "Giantess",
  15839. height: math.unit(160, "meters")
  15840. },
  15841. {
  15842. name: "Titaness",
  15843. height: math.unit(800, "meters")
  15844. },
  15845. ]
  15846. ))
  15847. characterMakers.push(() => makeCharacter(
  15848. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15849. {
  15850. front: {
  15851. height: math.unit(6, "feet"),
  15852. weight: math.unit(150, "lb"),
  15853. name: "Front",
  15854. image: {
  15855. source: "./media/characters/alluria/front.svg",
  15856. extra: 806 / 738,
  15857. bottom: 0.01
  15858. }
  15859. },
  15860. side: {
  15861. height: math.unit(6, "feet"),
  15862. weight: math.unit(150, "lb"),
  15863. name: "Side",
  15864. image: {
  15865. source: "./media/characters/alluria/side.svg",
  15866. extra: 800 / 750,
  15867. }
  15868. },
  15869. back: {
  15870. height: math.unit(6, "feet"),
  15871. weight: math.unit(150, "lb"),
  15872. name: "Back",
  15873. image: {
  15874. source: "./media/characters/alluria/back.svg",
  15875. extra: 806 / 738,
  15876. }
  15877. },
  15878. frontMaid: {
  15879. height: math.unit(6, "feet"),
  15880. weight: math.unit(150, "lb"),
  15881. name: "Front (Maid)",
  15882. image: {
  15883. source: "./media/characters/alluria/front-maid.svg",
  15884. extra: 806 / 738,
  15885. bottom: 0.01
  15886. }
  15887. },
  15888. sideMaid: {
  15889. height: math.unit(6, "feet"),
  15890. weight: math.unit(150, "lb"),
  15891. name: "Side (Maid)",
  15892. image: {
  15893. source: "./media/characters/alluria/side-maid.svg",
  15894. extra: 800 / 750,
  15895. bottom: 0.005
  15896. }
  15897. },
  15898. backMaid: {
  15899. height: math.unit(6, "feet"),
  15900. weight: math.unit(150, "lb"),
  15901. name: "Back (Maid)",
  15902. image: {
  15903. source: "./media/characters/alluria/back-maid.svg",
  15904. extra: 806 / 738,
  15905. }
  15906. },
  15907. },
  15908. [
  15909. {
  15910. name: "Micro",
  15911. height: math.unit(6, "inches"),
  15912. default: true
  15913. },
  15914. ]
  15915. ))
  15916. characterMakers.push(() => makeCharacter(
  15917. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15918. {
  15919. front: {
  15920. height: math.unit(6, "feet"),
  15921. weight: math.unit(150, "lb"),
  15922. name: "Front",
  15923. image: {
  15924. source: "./media/characters/kyle/front.svg",
  15925. extra: 1069 / 962,
  15926. bottom: 77.228 / 1727.45
  15927. }
  15928. },
  15929. },
  15930. [
  15931. {
  15932. name: "Macro",
  15933. height: math.unit(150, "feet"),
  15934. default: true
  15935. },
  15936. ]
  15937. ))
  15938. characterMakers.push(() => makeCharacter(
  15939. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15940. {
  15941. front: {
  15942. height: math.unit(6, "feet"),
  15943. weight: math.unit(300, "lb"),
  15944. name: "Front",
  15945. image: {
  15946. source: "./media/characters/duncan/front.svg",
  15947. extra: 1650 / 1482,
  15948. bottom: 0.05
  15949. }
  15950. },
  15951. },
  15952. [
  15953. {
  15954. name: "Macro",
  15955. height: math.unit(100, "feet"),
  15956. default: true
  15957. },
  15958. ]
  15959. ))
  15960. characterMakers.push(() => makeCharacter(
  15961. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15962. {
  15963. front: {
  15964. height: math.unit(5 + 4 / 12, "feet"),
  15965. weight: math.unit(220, "lb"),
  15966. name: "Front",
  15967. image: {
  15968. source: "./media/characters/memory/front.svg",
  15969. extra: 3641 / 3545,
  15970. bottom: 0.03
  15971. }
  15972. },
  15973. back: {
  15974. height: math.unit(5 + 4 / 12, "feet"),
  15975. weight: math.unit(220, "lb"),
  15976. name: "Back",
  15977. image: {
  15978. source: "./media/characters/memory/back.svg",
  15979. extra: 3641 / 3545,
  15980. bottom: 0.025
  15981. }
  15982. },
  15983. frontSkirt: {
  15984. height: math.unit(5 + 4 / 12, "feet"),
  15985. weight: math.unit(220, "lb"),
  15986. name: "Front (Skirt)",
  15987. image: {
  15988. source: "./media/characters/memory/front-skirt.svg",
  15989. extra: 3641 / 3545,
  15990. bottom: 0.03
  15991. }
  15992. },
  15993. frontDress: {
  15994. height: math.unit(5 + 4 / 12, "feet"),
  15995. weight: math.unit(220, "lb"),
  15996. name: "Front (Dress)",
  15997. image: {
  15998. source: "./media/characters/memory/front-dress.svg",
  15999. extra: 3641 / 3545,
  16000. bottom: 0.03
  16001. }
  16002. },
  16003. },
  16004. [
  16005. {
  16006. name: "Micro",
  16007. height: math.unit(6, "inches"),
  16008. default: true
  16009. },
  16010. {
  16011. name: "Normal",
  16012. height: math.unit(5 + 4 / 12, "feet")
  16013. },
  16014. ]
  16015. ))
  16016. characterMakers.push(() => makeCharacter(
  16017. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16018. {
  16019. front: {
  16020. height: math.unit(4 + 11 / 12, "feet"),
  16021. weight: math.unit(100, "lb"),
  16022. name: "Front",
  16023. image: {
  16024. source: "./media/characters/luno/front.svg",
  16025. extra: 1535 / 1487,
  16026. bottom: 0.03
  16027. }
  16028. },
  16029. },
  16030. [
  16031. {
  16032. name: "Micro",
  16033. height: math.unit(3, "inches")
  16034. },
  16035. {
  16036. name: "Normal",
  16037. height: math.unit(4 + 11 / 12, "feet"),
  16038. default: true
  16039. },
  16040. {
  16041. name: "Macro",
  16042. height: math.unit(300, "feet")
  16043. },
  16044. {
  16045. name: "Megamacro",
  16046. height: math.unit(700, "miles")
  16047. },
  16048. ]
  16049. ))
  16050. characterMakers.push(() => makeCharacter(
  16051. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16052. {
  16053. front: {
  16054. height: math.unit(6 + 2 / 12, "feet"),
  16055. weight: math.unit(170, "lb"),
  16056. name: "Front",
  16057. image: {
  16058. source: "./media/characters/jamesy/front.svg",
  16059. extra: 440 / 382,
  16060. bottom: 0.005
  16061. }
  16062. },
  16063. },
  16064. [
  16065. {
  16066. name: "Micro",
  16067. height: math.unit(3, "inches")
  16068. },
  16069. {
  16070. name: "Normal",
  16071. height: math.unit(6 + 2 / 12, "feet"),
  16072. default: true
  16073. },
  16074. {
  16075. name: "Macro",
  16076. height: math.unit(300, "feet")
  16077. },
  16078. {
  16079. name: "Megamacro",
  16080. height: math.unit(700, "miles")
  16081. },
  16082. ]
  16083. ))
  16084. characterMakers.push(() => makeCharacter(
  16085. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16086. {
  16087. front: {
  16088. height: math.unit(6, "feet"),
  16089. weight: math.unit(160, "lb"),
  16090. name: "Front",
  16091. image: {
  16092. source: "./media/characters/mark/front.svg",
  16093. extra: 3300 / 3100,
  16094. bottom: 136.42 / 3440.47
  16095. }
  16096. },
  16097. },
  16098. [
  16099. {
  16100. name: "Macro",
  16101. height: math.unit(120, "meters")
  16102. },
  16103. {
  16104. name: "Bigger Macro",
  16105. height: math.unit(350, "meters")
  16106. },
  16107. {
  16108. name: "Megamacro",
  16109. height: math.unit(8, "km"),
  16110. default: true
  16111. },
  16112. {
  16113. name: "Continental",
  16114. height: math.unit(4550, "km")
  16115. },
  16116. {
  16117. name: "Planetary",
  16118. height: math.unit(65000, "km")
  16119. },
  16120. ]
  16121. ))
  16122. characterMakers.push(() => makeCharacter(
  16123. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16124. {
  16125. front: {
  16126. height: math.unit(6, "feet"),
  16127. weight: math.unit(400, "lb"),
  16128. name: "Front",
  16129. image: {
  16130. source: "./media/characters/mac/front.svg",
  16131. extra: 1048 / 987.7,
  16132. bottom: 60 / 1107.6,
  16133. }
  16134. },
  16135. },
  16136. [
  16137. {
  16138. name: "Macro",
  16139. height: math.unit(500, "feet"),
  16140. default: true
  16141. },
  16142. ]
  16143. ))
  16144. characterMakers.push(() => makeCharacter(
  16145. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16146. {
  16147. front: {
  16148. height: math.unit(5 + 2 / 12, "feet"),
  16149. weight: math.unit(190, "lb"),
  16150. name: "Front",
  16151. image: {
  16152. source: "./media/characters/bari/front.svg",
  16153. extra: 3156 / 2880,
  16154. bottom: 0.03
  16155. }
  16156. },
  16157. back: {
  16158. height: math.unit(5 + 2 / 12, "feet"),
  16159. weight: math.unit(190, "lb"),
  16160. name: "Back",
  16161. image: {
  16162. source: "./media/characters/bari/back.svg",
  16163. extra: 3260 / 2834,
  16164. bottom: 0.025
  16165. }
  16166. },
  16167. frontPlush: {
  16168. height: math.unit(5 + 2 / 12, "feet"),
  16169. weight: math.unit(190, "lb"),
  16170. name: "Front (Plush)",
  16171. image: {
  16172. source: "./media/characters/bari/front-plush.svg",
  16173. extra: 1112 / 1061,
  16174. bottom: 0.002
  16175. }
  16176. },
  16177. },
  16178. [
  16179. {
  16180. name: "Micro",
  16181. height: math.unit(3, "inches")
  16182. },
  16183. {
  16184. name: "Normal",
  16185. height: math.unit(5 + 2 / 12, "feet"),
  16186. default: true
  16187. },
  16188. {
  16189. name: "Macro",
  16190. height: math.unit(20, "feet")
  16191. },
  16192. ]
  16193. ))
  16194. characterMakers.push(() => makeCharacter(
  16195. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16196. {
  16197. front: {
  16198. height: math.unit(6 + 1 / 12, "feet"),
  16199. weight: math.unit(275, "lb"),
  16200. name: "Front",
  16201. image: {
  16202. source: "./media/characters/hunter-misha-raven/front.svg"
  16203. }
  16204. },
  16205. },
  16206. [
  16207. {
  16208. name: "Mortal",
  16209. height: math.unit(6 + 1 / 12, "feet")
  16210. },
  16211. {
  16212. name: "Divine",
  16213. height: math.unit(1.12134e34, "parsecs"),
  16214. default: true
  16215. },
  16216. ]
  16217. ))
  16218. characterMakers.push(() => makeCharacter(
  16219. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16220. {
  16221. front: {
  16222. height: math.unit(6 + 3 / 12, "feet"),
  16223. weight: math.unit(220, "lb"),
  16224. name: "Front",
  16225. image: {
  16226. source: "./media/characters/max-calore/front.svg",
  16227. extra: 1700 / 1648,
  16228. bottom: 0.01
  16229. }
  16230. },
  16231. back: {
  16232. height: math.unit(6 + 3 / 12, "feet"),
  16233. weight: math.unit(220, "lb"),
  16234. name: "Back",
  16235. image: {
  16236. source: "./media/characters/max-calore/back.svg",
  16237. extra: 1700 / 1648,
  16238. bottom: 0.01
  16239. }
  16240. },
  16241. },
  16242. [
  16243. {
  16244. name: "Normal",
  16245. height: math.unit(6 + 3 / 12, "feet"),
  16246. default: true
  16247. },
  16248. ]
  16249. ))
  16250. characterMakers.push(() => makeCharacter(
  16251. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16252. {
  16253. side: {
  16254. height: math.unit(2 + 8 / 12, "feet"),
  16255. weight: math.unit(99, "lb"),
  16256. name: "Side",
  16257. image: {
  16258. source: "./media/characters/aspen/side.svg",
  16259. extra: 152 / 138,
  16260. bottom: 0.032
  16261. }
  16262. },
  16263. },
  16264. [
  16265. {
  16266. name: "Normal",
  16267. height: math.unit(2 + 8 / 12, "feet"),
  16268. default: true
  16269. },
  16270. ]
  16271. ))
  16272. characterMakers.push(() => makeCharacter(
  16273. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16274. {
  16275. side: {
  16276. height: math.unit(3 + 2 / 12, "feet"),
  16277. weight: math.unit(224, "lb"),
  16278. name: "Side",
  16279. image: {
  16280. source: "./media/characters/sheila-feral-wolf/side.svg",
  16281. extra: 179 / 166,
  16282. bottom: 0.03
  16283. }
  16284. },
  16285. },
  16286. [
  16287. {
  16288. name: "Normal",
  16289. height: math.unit(3 + 2 / 12, "feet"),
  16290. default: true
  16291. },
  16292. ]
  16293. ))
  16294. characterMakers.push(() => makeCharacter(
  16295. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16296. {
  16297. side: {
  16298. height: math.unit(1 + 9 / 12, "feet"),
  16299. weight: math.unit(38, "lb"),
  16300. name: "Side",
  16301. image: {
  16302. source: "./media/characters/michelle/side.svg",
  16303. extra: 147 / 136.7,
  16304. bottom: 0.03
  16305. }
  16306. },
  16307. },
  16308. [
  16309. {
  16310. name: "Normal",
  16311. height: math.unit(1 + 9 / 12, "feet"),
  16312. default: true
  16313. },
  16314. ]
  16315. ))
  16316. characterMakers.push(() => makeCharacter(
  16317. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16318. {
  16319. front: {
  16320. height: math.unit(1 + 1 / 12, "feet"),
  16321. weight: math.unit(18, "lb"),
  16322. name: "Front",
  16323. image: {
  16324. source: "./media/characters/nino/front.svg"
  16325. }
  16326. },
  16327. },
  16328. [
  16329. {
  16330. name: "Normal",
  16331. height: math.unit(1 + 1 / 12, "feet"),
  16332. default: true
  16333. },
  16334. ]
  16335. ))
  16336. characterMakers.push(() => makeCharacter(
  16337. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16338. {
  16339. front: {
  16340. height: math.unit(1, "feet"),
  16341. weight: math.unit(16, "lb"),
  16342. name: "Front",
  16343. image: {
  16344. source: "./media/characters/viola/front.svg"
  16345. }
  16346. },
  16347. },
  16348. [
  16349. {
  16350. name: "Normal",
  16351. height: math.unit(1, "feet"),
  16352. default: true
  16353. },
  16354. ]
  16355. ))
  16356. characterMakers.push(() => makeCharacter(
  16357. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16358. {
  16359. front: {
  16360. height: math.unit(6 + 5 / 12, "feet"),
  16361. weight: math.unit(580, "lb"),
  16362. name: "Front",
  16363. image: {
  16364. source: "./media/characters/atlas/front.svg",
  16365. extra: 298.5 / 290,
  16366. bottom: 0.015
  16367. }
  16368. },
  16369. },
  16370. [
  16371. {
  16372. name: "Normal",
  16373. height: math.unit(6 + 5 / 12, "feet"),
  16374. default: true
  16375. },
  16376. ]
  16377. ))
  16378. characterMakers.push(() => makeCharacter(
  16379. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16380. {
  16381. side: {
  16382. height: math.unit(1 + 10 / 12, "feet"),
  16383. weight: math.unit(25, "lb"),
  16384. name: "Side",
  16385. image: {
  16386. source: "./media/characters/davy/side.svg",
  16387. extra: 200 / 170,
  16388. bottom: 0.01
  16389. }
  16390. },
  16391. },
  16392. [
  16393. {
  16394. name: "Normal",
  16395. height: math.unit(1 + 10 / 12, "feet"),
  16396. default: true
  16397. },
  16398. ]
  16399. ))
  16400. characterMakers.push(() => makeCharacter(
  16401. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16402. {
  16403. side: {
  16404. height: math.unit(4 + 8 / 12, "feet"),
  16405. weight: math.unit(166, "lb"),
  16406. name: "Side",
  16407. image: {
  16408. source: "./media/characters/fiona/side.svg",
  16409. extra: 232 / 220,
  16410. bottom: 0.03
  16411. }
  16412. },
  16413. },
  16414. [
  16415. {
  16416. name: "Normal",
  16417. height: math.unit(4 + 8 / 12, "feet"),
  16418. default: true
  16419. },
  16420. ]
  16421. ))
  16422. characterMakers.push(() => makeCharacter(
  16423. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16424. {
  16425. front: {
  16426. height: math.unit(2, "feet"),
  16427. weight: math.unit(62, "lb"),
  16428. name: "Front",
  16429. image: {
  16430. source: "./media/characters/lyla/front.svg",
  16431. bottom: 0.1
  16432. }
  16433. },
  16434. },
  16435. [
  16436. {
  16437. name: "Normal",
  16438. height: math.unit(2, "feet"),
  16439. default: true
  16440. },
  16441. ]
  16442. ))
  16443. characterMakers.push(() => makeCharacter(
  16444. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16445. {
  16446. side: {
  16447. height: math.unit(1.8, "feet"),
  16448. weight: math.unit(44, "lb"),
  16449. name: "Side",
  16450. image: {
  16451. source: "./media/characters/perseus/side.svg",
  16452. bottom: 0.21
  16453. }
  16454. },
  16455. },
  16456. [
  16457. {
  16458. name: "Normal",
  16459. height: math.unit(1.8, "feet"),
  16460. default: true
  16461. },
  16462. ]
  16463. ))
  16464. characterMakers.push(() => makeCharacter(
  16465. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16466. {
  16467. side: {
  16468. height: math.unit(4 + 2 / 12, "feet"),
  16469. weight: math.unit(20, "lb"),
  16470. name: "Side",
  16471. image: {
  16472. source: "./media/characters/remus/side.svg"
  16473. }
  16474. },
  16475. },
  16476. [
  16477. {
  16478. name: "Normal",
  16479. height: math.unit(4 + 2 / 12, "feet"),
  16480. default: true
  16481. },
  16482. ]
  16483. ))
  16484. characterMakers.push(() => makeCharacter(
  16485. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16486. {
  16487. front: {
  16488. height: math.unit(4 + 11 / 12, "feet"),
  16489. weight: math.unit(114, "lb"),
  16490. name: "Front",
  16491. image: {
  16492. source: "./media/characters/raf/front.svg",
  16493. bottom: 20.5 / 1863
  16494. }
  16495. },
  16496. side: {
  16497. height: math.unit(4 + 11 / 12, "feet"),
  16498. weight: math.unit(114, "lb"),
  16499. name: "Side",
  16500. image: {
  16501. source: "./media/characters/raf/side.svg",
  16502. bottom: 22 / 1822
  16503. }
  16504. },
  16505. },
  16506. [
  16507. {
  16508. name: "Micro",
  16509. height: math.unit(2, "inches")
  16510. },
  16511. {
  16512. name: "Normal",
  16513. height: math.unit(4 + 11 / 12, "feet"),
  16514. default: true
  16515. },
  16516. {
  16517. name: "Macro",
  16518. height: math.unit(70, "feet")
  16519. },
  16520. ]
  16521. ))
  16522. characterMakers.push(() => makeCharacter(
  16523. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16524. {
  16525. front: {
  16526. height: math.unit(1.5, "meters"),
  16527. weight: math.unit(68, "kg"),
  16528. name: "Front",
  16529. image: {
  16530. source: "./media/characters/liam-einarr/front.svg",
  16531. extra: 2822 / 2666
  16532. }
  16533. },
  16534. back: {
  16535. height: math.unit(1.5, "meters"),
  16536. weight: math.unit(68, "kg"),
  16537. name: "Back",
  16538. image: {
  16539. source: "./media/characters/liam-einarr/back.svg",
  16540. extra: 2822 / 2666,
  16541. bottom: 0.015
  16542. }
  16543. },
  16544. },
  16545. [
  16546. {
  16547. name: "Normal",
  16548. height: math.unit(1.5, "meters"),
  16549. default: true
  16550. },
  16551. {
  16552. name: "Macro",
  16553. height: math.unit(150, "meters")
  16554. },
  16555. {
  16556. name: "Megamacro",
  16557. height: math.unit(35, "km")
  16558. },
  16559. ]
  16560. ))
  16561. characterMakers.push(() => makeCharacter(
  16562. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16563. {
  16564. front: {
  16565. height: math.unit(6, "feet"),
  16566. weight: math.unit(75, "kg"),
  16567. name: "Front",
  16568. image: {
  16569. source: "./media/characters/linda/front.svg",
  16570. extra: 930 / 874,
  16571. bottom: 0.004
  16572. }
  16573. },
  16574. },
  16575. [
  16576. {
  16577. name: "Normal",
  16578. height: math.unit(6, "feet"),
  16579. default: true
  16580. },
  16581. ]
  16582. ))
  16583. characterMakers.push(() => makeCharacter(
  16584. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16585. {
  16586. front: {
  16587. height: math.unit(6 + 8 / 12, "feet"),
  16588. weight: math.unit(220, "lb"),
  16589. name: "Front",
  16590. image: {
  16591. source: "./media/characters/caylex/front.svg",
  16592. extra: 821 / 772,
  16593. bottom: 0.07
  16594. }
  16595. },
  16596. back: {
  16597. height: math.unit(6 + 8 / 12, "feet"),
  16598. weight: math.unit(220, "lb"),
  16599. name: "Back",
  16600. image: {
  16601. source: "./media/characters/caylex/back.svg",
  16602. extra: 821 / 772,
  16603. bottom: 0.022
  16604. }
  16605. },
  16606. hand: {
  16607. height: math.unit(1.25, "feet"),
  16608. name: "Hand",
  16609. image: {
  16610. source: "./media/characters/caylex/hand.svg"
  16611. }
  16612. },
  16613. foot: {
  16614. height: math.unit(1.6, "feet"),
  16615. name: "Foot",
  16616. image: {
  16617. source: "./media/characters/caylex/foot.svg"
  16618. }
  16619. },
  16620. armored: {
  16621. height: math.unit(6 + 8 / 12, "feet"),
  16622. weight: math.unit(250, "lb"),
  16623. name: "Armored",
  16624. image: {
  16625. source: "./media/characters/caylex/armored.svg",
  16626. extra: 1420 / 1310,
  16627. bottom: 0.045
  16628. }
  16629. },
  16630. },
  16631. [
  16632. {
  16633. name: "Normal",
  16634. height: math.unit(6 + 8 / 12, "feet"),
  16635. default: true
  16636. },
  16637. {
  16638. name: "Normal+",
  16639. height: math.unit(12, "feet")
  16640. },
  16641. ]
  16642. ))
  16643. characterMakers.push(() => makeCharacter(
  16644. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16645. {
  16646. front: {
  16647. height: math.unit(7 + 6 / 12, "feet"),
  16648. weight: math.unit(288, "lb"),
  16649. name: "Front",
  16650. image: {
  16651. source: "./media/characters/alana/front.svg",
  16652. extra: 679 / 653,
  16653. bottom: 22.5 / 701
  16654. }
  16655. },
  16656. },
  16657. [
  16658. {
  16659. name: "Normal",
  16660. height: math.unit(7 + 6 / 12, "feet")
  16661. },
  16662. {
  16663. name: "Large",
  16664. height: math.unit(50, "feet")
  16665. },
  16666. {
  16667. name: "Macro",
  16668. height: math.unit(100, "feet"),
  16669. default: true
  16670. },
  16671. {
  16672. name: "Macro+",
  16673. height: math.unit(200, "feet")
  16674. },
  16675. ]
  16676. ))
  16677. characterMakers.push(() => makeCharacter(
  16678. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16679. {
  16680. front: {
  16681. height: math.unit(6 + 1 / 12, "feet"),
  16682. weight: math.unit(210, "lb"),
  16683. name: "Front",
  16684. image: {
  16685. source: "./media/characters/hasani/front.svg",
  16686. extra: 244 / 232,
  16687. bottom: 0.01
  16688. }
  16689. },
  16690. back: {
  16691. height: math.unit(6 + 1 / 12, "feet"),
  16692. weight: math.unit(210, "lb"),
  16693. name: "Back",
  16694. image: {
  16695. source: "./media/characters/hasani/back.svg",
  16696. extra: 244 / 232,
  16697. bottom: 0.01
  16698. }
  16699. },
  16700. },
  16701. [
  16702. {
  16703. name: "Normal",
  16704. height: math.unit(6 + 1 / 12, "feet")
  16705. },
  16706. {
  16707. name: "Macro",
  16708. height: math.unit(175, "feet"),
  16709. default: true
  16710. },
  16711. ]
  16712. ))
  16713. characterMakers.push(() => makeCharacter(
  16714. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16715. {
  16716. front: {
  16717. height: math.unit(1.82, "meters"),
  16718. weight: math.unit(140, "lb"),
  16719. name: "Front",
  16720. image: {
  16721. source: "./media/characters/nita/front.svg",
  16722. extra: 2473 / 2363,
  16723. bottom: 0.01
  16724. }
  16725. },
  16726. },
  16727. [
  16728. {
  16729. name: "Normal",
  16730. height: math.unit(1.82, "m")
  16731. },
  16732. {
  16733. name: "Macro",
  16734. height: math.unit(300, "m")
  16735. },
  16736. {
  16737. name: "Mistake Canon",
  16738. height: math.unit(0.5, "miles"),
  16739. default: true
  16740. },
  16741. {
  16742. name: "Big Mistake",
  16743. height: math.unit(13, "miles")
  16744. },
  16745. {
  16746. name: "Playing God",
  16747. height: math.unit(2450, "miles")
  16748. },
  16749. ]
  16750. ))
  16751. characterMakers.push(() => makeCharacter(
  16752. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16753. {
  16754. front: {
  16755. height: math.unit(4, "feet"),
  16756. weight: math.unit(120, "lb"),
  16757. name: "Front",
  16758. image: {
  16759. source: "./media/characters/shiriko/front.svg",
  16760. extra: 195 / 188
  16761. }
  16762. },
  16763. },
  16764. [
  16765. {
  16766. name: "Normal",
  16767. height: math.unit(4, "feet"),
  16768. default: true
  16769. },
  16770. ]
  16771. ))
  16772. characterMakers.push(() => makeCharacter(
  16773. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16774. {
  16775. front: {
  16776. height: math.unit(6, "feet"),
  16777. name: "front",
  16778. image: {
  16779. source: "./media/characters/deja/front.svg",
  16780. extra: 926 / 840,
  16781. bottom: 0.07
  16782. }
  16783. },
  16784. },
  16785. [
  16786. {
  16787. name: "Planck Length",
  16788. height: math.unit(1.6e-35, "meters")
  16789. },
  16790. {
  16791. name: "Normal",
  16792. height: math.unit(30.48, "meters"),
  16793. default: true
  16794. },
  16795. {
  16796. name: "Universal",
  16797. height: math.unit(8.8e26, "meters")
  16798. },
  16799. ]
  16800. ))
  16801. characterMakers.push(() => makeCharacter(
  16802. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16803. {
  16804. side: {
  16805. height: math.unit(8, "feet"),
  16806. weight: math.unit(6300, "lb"),
  16807. name: "Side",
  16808. image: {
  16809. source: "./media/characters/anima/side.svg",
  16810. bottom: 0.035
  16811. }
  16812. },
  16813. },
  16814. [
  16815. {
  16816. name: "Normal",
  16817. height: math.unit(8, "feet"),
  16818. default: true
  16819. },
  16820. ]
  16821. ))
  16822. characterMakers.push(() => makeCharacter(
  16823. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16824. {
  16825. front: {
  16826. height: math.unit(8, "feet"),
  16827. weight: math.unit(350, "lb"),
  16828. name: "Front",
  16829. image: {
  16830. source: "./media/characters/bianca/front.svg",
  16831. extra: 234 / 225,
  16832. bottom: 0.03
  16833. }
  16834. },
  16835. },
  16836. [
  16837. {
  16838. name: "Normal",
  16839. height: math.unit(8, "feet"),
  16840. default: true
  16841. },
  16842. ]
  16843. ))
  16844. characterMakers.push(() => makeCharacter(
  16845. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16846. {
  16847. front: {
  16848. height: math.unit(6, "feet"),
  16849. weight: math.unit(150, "lb"),
  16850. name: "Front",
  16851. image: {
  16852. source: "./media/characters/adinia/front.svg",
  16853. extra: 1845 / 1672,
  16854. bottom: 0.02
  16855. }
  16856. },
  16857. back: {
  16858. height: math.unit(6, "feet"),
  16859. weight: math.unit(150, "lb"),
  16860. name: "Back",
  16861. image: {
  16862. source: "./media/characters/adinia/back.svg",
  16863. extra: 1845 / 1672,
  16864. bottom: 0.002
  16865. }
  16866. },
  16867. },
  16868. [
  16869. {
  16870. name: "Normal",
  16871. height: math.unit(11 + 5 / 12, "feet"),
  16872. default: true
  16873. },
  16874. ]
  16875. ))
  16876. characterMakers.push(() => makeCharacter(
  16877. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16878. {
  16879. front: {
  16880. height: math.unit(3, "meters"),
  16881. weight: math.unit(200, "kg"),
  16882. name: "Front",
  16883. image: {
  16884. source: "./media/characters/lykasa/front.svg",
  16885. extra: 1076 / 976,
  16886. bottom: 0.06
  16887. }
  16888. },
  16889. },
  16890. [
  16891. {
  16892. name: "Normal",
  16893. height: math.unit(3, "meters")
  16894. },
  16895. {
  16896. name: "Kaiju",
  16897. height: math.unit(120, "meters"),
  16898. default: true
  16899. },
  16900. {
  16901. name: "Mega Kaiju",
  16902. height: math.unit(240, "km")
  16903. },
  16904. {
  16905. name: "Giga Kaiju",
  16906. height: math.unit(400, "megameters")
  16907. },
  16908. {
  16909. name: "Tera Kaiju",
  16910. height: math.unit(800, "gigameters")
  16911. },
  16912. {
  16913. name: "Kaiju Dragon Goddess",
  16914. height: math.unit(26, "zettaparsecs")
  16915. },
  16916. ]
  16917. ))
  16918. characterMakers.push(() => makeCharacter(
  16919. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16920. {
  16921. side: {
  16922. height: math.unit(283 / 124 * 6, "feet"),
  16923. weight: math.unit(35000, "lb"),
  16924. name: "Side",
  16925. image: {
  16926. source: "./media/characters/malfaren/side.svg",
  16927. extra: 2500 / 1010,
  16928. bottom: 0.01
  16929. }
  16930. },
  16931. front: {
  16932. height: math.unit(22.36, "feet"),
  16933. weight: math.unit(35000, "lb"),
  16934. name: "Front",
  16935. image: {
  16936. source: "./media/characters/malfaren/front.svg",
  16937. extra: 1631 / 1476,
  16938. bottom: 0.01
  16939. }
  16940. },
  16941. maw: {
  16942. height: math.unit(6.9, "feet"),
  16943. name: "Maw",
  16944. image: {
  16945. source: "./media/characters/malfaren/maw.svg"
  16946. }
  16947. },
  16948. },
  16949. [
  16950. {
  16951. name: "Big",
  16952. height: math.unit(283 / 162 * 6, "feet"),
  16953. },
  16954. {
  16955. name: "Bigger",
  16956. height: math.unit(283 / 124 * 6, "feet")
  16957. },
  16958. {
  16959. name: "Massive",
  16960. height: math.unit(283 / 92 * 6, "feet"),
  16961. default: true
  16962. },
  16963. {
  16964. name: "👀💦",
  16965. height: math.unit(283 / 73 * 6, "feet"),
  16966. },
  16967. ]
  16968. ))
  16969. characterMakers.push(() => makeCharacter(
  16970. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16971. {
  16972. front: {
  16973. height: math.unit(1.7, "m"),
  16974. weight: math.unit(70, "kg"),
  16975. name: "Front",
  16976. image: {
  16977. source: "./media/characters/kernel/front.svg",
  16978. extra: 222 / 210,
  16979. bottom: 0.007
  16980. }
  16981. },
  16982. },
  16983. [
  16984. {
  16985. name: "Nano",
  16986. height: math.unit(17, "micrometers")
  16987. },
  16988. {
  16989. name: "Micro",
  16990. height: math.unit(1.7, "mm")
  16991. },
  16992. {
  16993. name: "Small",
  16994. height: math.unit(1.7, "cm")
  16995. },
  16996. {
  16997. name: "Normal",
  16998. height: math.unit(1.7, "m"),
  16999. default: true
  17000. },
  17001. ]
  17002. ))
  17003. characterMakers.push(() => makeCharacter(
  17004. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17005. {
  17006. front: {
  17007. height: math.unit(1.75, "meters"),
  17008. weight: math.unit(65, "kg"),
  17009. name: "Front",
  17010. image: {
  17011. source: "./media/characters/jayne-folest/front.svg",
  17012. extra: 2115 / 2007,
  17013. bottom: 0.02
  17014. }
  17015. },
  17016. back: {
  17017. height: math.unit(1.75, "meters"),
  17018. weight: math.unit(65, "kg"),
  17019. name: "Back",
  17020. image: {
  17021. source: "./media/characters/jayne-folest/back.svg",
  17022. extra: 2115 / 2007,
  17023. bottom: 0.005
  17024. }
  17025. },
  17026. frontClothed: {
  17027. height: math.unit(1.75, "meters"),
  17028. weight: math.unit(65, "kg"),
  17029. name: "Front (Clothed)",
  17030. image: {
  17031. source: "./media/characters/jayne-folest/front-clothed.svg",
  17032. extra: 2115 / 2007,
  17033. bottom: 0.035
  17034. }
  17035. },
  17036. hand: {
  17037. height: math.unit(1 / 1.260, "feet"),
  17038. name: "Hand",
  17039. image: {
  17040. source: "./media/characters/jayne-folest/hand.svg"
  17041. }
  17042. },
  17043. foot: {
  17044. height: math.unit(1 / 0.918, "feet"),
  17045. name: "Foot",
  17046. image: {
  17047. source: "./media/characters/jayne-folest/foot.svg"
  17048. }
  17049. },
  17050. },
  17051. [
  17052. {
  17053. name: "Micro",
  17054. height: math.unit(4, "cm")
  17055. },
  17056. {
  17057. name: "Normal",
  17058. height: math.unit(1.75, "meters")
  17059. },
  17060. {
  17061. name: "Macro",
  17062. height: math.unit(47.5, "meters"),
  17063. default: true
  17064. },
  17065. ]
  17066. ))
  17067. characterMakers.push(() => makeCharacter(
  17068. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17069. {
  17070. front: {
  17071. height: math.unit(180, "cm"),
  17072. weight: math.unit(70, "kg"),
  17073. name: "Front",
  17074. image: {
  17075. source: "./media/characters/algier/front.svg",
  17076. extra: 596 / 572,
  17077. bottom: 0.04
  17078. }
  17079. },
  17080. back: {
  17081. height: math.unit(180, "cm"),
  17082. weight: math.unit(70, "kg"),
  17083. name: "Back",
  17084. image: {
  17085. source: "./media/characters/algier/back.svg",
  17086. extra: 596 / 572,
  17087. bottom: 0.025
  17088. }
  17089. },
  17090. frontdressed: {
  17091. height: math.unit(180, "cm"),
  17092. weight: math.unit(150, "kg"),
  17093. name: "Front-dressed",
  17094. image: {
  17095. source: "./media/characters/algier/front-dressed.svg",
  17096. extra: 596 / 572,
  17097. bottom: 0.038
  17098. }
  17099. },
  17100. },
  17101. [
  17102. {
  17103. name: "Micro",
  17104. height: math.unit(5, "cm")
  17105. },
  17106. {
  17107. name: "Normal",
  17108. height: math.unit(180, "cm"),
  17109. default: true
  17110. },
  17111. {
  17112. name: "Macro",
  17113. height: math.unit(64, "m")
  17114. },
  17115. ]
  17116. ))
  17117. characterMakers.push(() => makeCharacter(
  17118. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17119. {
  17120. upright: {
  17121. height: math.unit(7, "feet"),
  17122. weight: math.unit(300, "lb"),
  17123. name: "Upright",
  17124. image: {
  17125. source: "./media/characters/pretzel/upright.svg",
  17126. extra: 534 / 522,
  17127. bottom: 0.065
  17128. }
  17129. },
  17130. sprawling: {
  17131. height: math.unit(3.75, "feet"),
  17132. weight: math.unit(300, "lb"),
  17133. name: "Sprawling",
  17134. image: {
  17135. source: "./media/characters/pretzel/sprawling.svg",
  17136. extra: 314 / 281,
  17137. bottom: 0.1
  17138. }
  17139. },
  17140. tongue: {
  17141. height: math.unit(2, "feet"),
  17142. name: "Tongue",
  17143. image: {
  17144. source: "./media/characters/pretzel/tongue.svg"
  17145. }
  17146. },
  17147. },
  17148. [
  17149. {
  17150. name: "Normal",
  17151. height: math.unit(7, "feet"),
  17152. default: true
  17153. },
  17154. {
  17155. name: "Oversized",
  17156. height: math.unit(15, "feet")
  17157. },
  17158. {
  17159. name: "Huge",
  17160. height: math.unit(30, "feet")
  17161. },
  17162. {
  17163. name: "Macro",
  17164. height: math.unit(250, "feet")
  17165. },
  17166. ]
  17167. ))
  17168. characterMakers.push(() => makeCharacter(
  17169. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17170. {
  17171. sideFront: {
  17172. height: math.unit(5 + 2 / 12, "feet"),
  17173. weight: math.unit(120, "lb"),
  17174. name: "Front Side",
  17175. image: {
  17176. source: "./media/characters/roxi/side-front.svg",
  17177. extra: 2924 / 2717,
  17178. bottom: 0.08
  17179. }
  17180. },
  17181. sideBack: {
  17182. height: math.unit(5 + 2 / 12, "feet"),
  17183. weight: math.unit(120, "lb"),
  17184. name: "Back Side",
  17185. image: {
  17186. source: "./media/characters/roxi/side-back.svg",
  17187. extra: 2904 / 2693,
  17188. bottom: 0.06
  17189. }
  17190. },
  17191. front: {
  17192. height: math.unit(5 + 2 / 12, "feet"),
  17193. weight: math.unit(120, "lb"),
  17194. name: "Front",
  17195. image: {
  17196. source: "./media/characters/roxi/front.svg",
  17197. extra: 2028 / 1907,
  17198. bottom: 0.01
  17199. }
  17200. },
  17201. frontAlt: {
  17202. height: math.unit(5 + 2 / 12, "feet"),
  17203. weight: math.unit(120, "lb"),
  17204. name: "Front (Alt)",
  17205. image: {
  17206. source: "./media/characters/roxi/front-alt.svg",
  17207. extra: 1828 / 1798,
  17208. bottom: 0.01
  17209. }
  17210. },
  17211. sitting: {
  17212. height: math.unit(2.8, "feet"),
  17213. weight: math.unit(120, "lb"),
  17214. name: "Sitting",
  17215. image: {
  17216. source: "./media/characters/roxi/sitting.svg",
  17217. extra: 2660 / 2462,
  17218. bottom: 0.1
  17219. }
  17220. },
  17221. },
  17222. [
  17223. {
  17224. name: "Normal",
  17225. height: math.unit(5 + 2 / 12, "feet"),
  17226. default: true
  17227. },
  17228. ]
  17229. ))
  17230. characterMakers.push(() => makeCharacter(
  17231. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17232. {
  17233. side: {
  17234. height: math.unit(55, "feet"),
  17235. weight: math.unit(153, "tons"),
  17236. name: "Side",
  17237. image: {
  17238. source: "./media/characters/shadow/side.svg",
  17239. extra: 701 / 628,
  17240. bottom: 0.02
  17241. }
  17242. },
  17243. flying: {
  17244. height: math.unit(145, "feet"),
  17245. weight: math.unit(153, "tons"),
  17246. name: "Flying",
  17247. image: {
  17248. source: "./media/characters/shadow/flying.svg"
  17249. }
  17250. },
  17251. },
  17252. [
  17253. {
  17254. name: "Normal",
  17255. height: math.unit(55, "feet"),
  17256. default: true
  17257. },
  17258. ]
  17259. ))
  17260. characterMakers.push(() => makeCharacter(
  17261. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17262. {
  17263. front: {
  17264. height: math.unit(6, "feet"),
  17265. weight: math.unit(200, "lb"),
  17266. name: "Front",
  17267. image: {
  17268. source: "./media/characters/marcie/front.svg",
  17269. extra: 960 / 876,
  17270. bottom: 58 / 1017.87
  17271. }
  17272. },
  17273. },
  17274. [
  17275. {
  17276. name: "Macro",
  17277. height: math.unit(1, "mile"),
  17278. default: true
  17279. },
  17280. ]
  17281. ))
  17282. characterMakers.push(() => makeCharacter(
  17283. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17284. {
  17285. front: {
  17286. height: math.unit(7, "feet"),
  17287. weight: math.unit(200, "lb"),
  17288. name: "Front",
  17289. image: {
  17290. source: "./media/characters/kachina/front.svg",
  17291. extra: 1290.68 / 1119,
  17292. bottom: 36.5 / 1327.18
  17293. }
  17294. },
  17295. },
  17296. [
  17297. {
  17298. name: "Normal",
  17299. height: math.unit(7, "feet"),
  17300. default: true
  17301. },
  17302. ]
  17303. ))
  17304. characterMakers.push(() => makeCharacter(
  17305. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17306. {
  17307. looking: {
  17308. height: math.unit(2, "meters"),
  17309. weight: math.unit(300, "kg"),
  17310. name: "Looking",
  17311. image: {
  17312. source: "./media/characters/kash/looking.svg",
  17313. extra: 474 / 344,
  17314. bottom: 0.03
  17315. }
  17316. },
  17317. side: {
  17318. height: math.unit(2, "meters"),
  17319. weight: math.unit(300, "kg"),
  17320. name: "Side",
  17321. image: {
  17322. source: "./media/characters/kash/side.svg",
  17323. extra: 302 / 251,
  17324. bottom: 0.03
  17325. }
  17326. },
  17327. front: {
  17328. height: math.unit(2, "meters"),
  17329. weight: math.unit(300, "kg"),
  17330. name: "Front",
  17331. image: {
  17332. source: "./media/characters/kash/front.svg",
  17333. extra: 495 / 360,
  17334. bottom: 0.015
  17335. }
  17336. },
  17337. },
  17338. [
  17339. {
  17340. name: "Normal",
  17341. height: math.unit(2, "meters"),
  17342. default: true
  17343. },
  17344. {
  17345. name: "Big",
  17346. height: math.unit(3, "meters")
  17347. },
  17348. {
  17349. name: "Large",
  17350. height: math.unit(5, "meters")
  17351. },
  17352. ]
  17353. ))
  17354. characterMakers.push(() => makeCharacter(
  17355. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17356. {
  17357. feeding: {
  17358. height: math.unit(6.7, "feet"),
  17359. weight: math.unit(350, "lb"),
  17360. name: "Feeding",
  17361. image: {
  17362. source: "./media/characters/lalim/feeding.svg",
  17363. }
  17364. },
  17365. },
  17366. [
  17367. {
  17368. name: "Normal",
  17369. height: math.unit(6.7, "feet"),
  17370. default: true
  17371. },
  17372. ]
  17373. ))
  17374. characterMakers.push(() => makeCharacter(
  17375. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17376. {
  17377. front: {
  17378. height: math.unit(9.5, "feet"),
  17379. weight: math.unit(600, "lb"),
  17380. name: "Front",
  17381. image: {
  17382. source: "./media/characters/de'vout/front.svg",
  17383. extra: 1443 / 1328,
  17384. bottom: 0.025
  17385. }
  17386. },
  17387. back: {
  17388. height: math.unit(9.5, "feet"),
  17389. weight: math.unit(600, "lb"),
  17390. name: "Back",
  17391. image: {
  17392. source: "./media/characters/de'vout/back.svg",
  17393. extra: 1443 / 1328
  17394. }
  17395. },
  17396. frontDressed: {
  17397. height: math.unit(9.5, "feet"),
  17398. weight: math.unit(600, "lb"),
  17399. name: "Front (Dressed",
  17400. image: {
  17401. source: "./media/characters/de'vout/front-dressed.svg",
  17402. extra: 1443 / 1328,
  17403. bottom: 0.025
  17404. }
  17405. },
  17406. backDressed: {
  17407. height: math.unit(9.5, "feet"),
  17408. weight: math.unit(600, "lb"),
  17409. name: "Back (Dressed",
  17410. image: {
  17411. source: "./media/characters/de'vout/back-dressed.svg",
  17412. extra: 1443 / 1328
  17413. }
  17414. },
  17415. },
  17416. [
  17417. {
  17418. name: "Normal",
  17419. height: math.unit(9.5, "feet"),
  17420. default: true
  17421. },
  17422. ]
  17423. ))
  17424. characterMakers.push(() => makeCharacter(
  17425. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17426. {
  17427. front: {
  17428. height: math.unit(8, "feet"),
  17429. weight: math.unit(225, "lb"),
  17430. name: "Front",
  17431. image: {
  17432. source: "./media/characters/talana/front.svg",
  17433. extra: 1410 / 1300,
  17434. bottom: 0.015
  17435. }
  17436. },
  17437. frontDressed: {
  17438. height: math.unit(8, "feet"),
  17439. weight: math.unit(225, "lb"),
  17440. name: "Front (Dressed",
  17441. image: {
  17442. source: "./media/characters/talana/front-dressed.svg",
  17443. extra: 1410 / 1300,
  17444. bottom: 0.015
  17445. }
  17446. },
  17447. },
  17448. [
  17449. {
  17450. name: "Normal",
  17451. height: math.unit(8, "feet"),
  17452. default: true
  17453. },
  17454. ]
  17455. ))
  17456. characterMakers.push(() => makeCharacter(
  17457. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17458. {
  17459. side: {
  17460. height: math.unit(7.2, "feet"),
  17461. weight: math.unit(150, "lb"),
  17462. name: "Side",
  17463. image: {
  17464. source: "./media/characters/xeauvok/side.svg",
  17465. extra: 1975 / 1523,
  17466. bottom: 0.07
  17467. }
  17468. },
  17469. },
  17470. [
  17471. {
  17472. name: "Normal",
  17473. height: math.unit(7.2, "feet"),
  17474. default: true
  17475. },
  17476. ]
  17477. ))
  17478. characterMakers.push(() => makeCharacter(
  17479. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17480. {
  17481. side: {
  17482. height: math.unit(10, "feet"),
  17483. weight: math.unit(900, "kg"),
  17484. name: "Side",
  17485. image: {
  17486. source: "./media/characters/zara/side.svg",
  17487. extra: 504 / 498
  17488. }
  17489. },
  17490. },
  17491. [
  17492. {
  17493. name: "Normal",
  17494. height: math.unit(10, "feet"),
  17495. default: true
  17496. },
  17497. ]
  17498. ))
  17499. characterMakers.push(() => makeCharacter(
  17500. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17501. {
  17502. side: {
  17503. height: math.unit(6, "feet"),
  17504. weight: math.unit(150, "lb"),
  17505. name: "Side",
  17506. image: {
  17507. source: "./media/characters/richard-dragon/side.svg",
  17508. extra: 845 / 340,
  17509. bottom: 0.017
  17510. }
  17511. },
  17512. maw: {
  17513. height: math.unit(2.97, "feet"),
  17514. name: "Maw",
  17515. image: {
  17516. source: "./media/characters/richard-dragon/maw.svg"
  17517. }
  17518. },
  17519. },
  17520. [
  17521. ]
  17522. ))
  17523. characterMakers.push(() => makeCharacter(
  17524. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17525. {
  17526. front: {
  17527. height: math.unit(4, "feet"),
  17528. weight: math.unit(100, "lb"),
  17529. name: "Front",
  17530. image: {
  17531. source: "./media/characters/richard-smeargle/front.svg",
  17532. extra: 2952 / 2820,
  17533. bottom: 0.028
  17534. }
  17535. },
  17536. },
  17537. [
  17538. {
  17539. name: "Normal",
  17540. height: math.unit(4, "feet"),
  17541. default: true
  17542. },
  17543. {
  17544. name: "Dynamax",
  17545. height: math.unit(20, "meters")
  17546. },
  17547. ]
  17548. ))
  17549. characterMakers.push(() => makeCharacter(
  17550. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17551. {
  17552. front: {
  17553. height: math.unit(6, "feet"),
  17554. weight: math.unit(110, "lb"),
  17555. name: "Front",
  17556. image: {
  17557. source: "./media/characters/klay/front.svg",
  17558. extra: 962 / 883,
  17559. bottom: 0.04
  17560. }
  17561. },
  17562. back: {
  17563. height: math.unit(6, "feet"),
  17564. weight: math.unit(110, "lb"),
  17565. name: "Back",
  17566. image: {
  17567. source: "./media/characters/klay/back.svg",
  17568. extra: 962 / 883
  17569. }
  17570. },
  17571. beans: {
  17572. height: math.unit(1.15, "feet"),
  17573. name: "Beans",
  17574. image: {
  17575. source: "./media/characters/klay/beans.svg"
  17576. }
  17577. },
  17578. },
  17579. [
  17580. {
  17581. name: "Micro",
  17582. height: math.unit(6, "inches")
  17583. },
  17584. {
  17585. name: "Mini",
  17586. height: math.unit(3, "feet")
  17587. },
  17588. {
  17589. name: "Normal",
  17590. height: math.unit(6, "feet"),
  17591. default: true
  17592. },
  17593. {
  17594. name: "Big",
  17595. height: math.unit(25, "feet")
  17596. },
  17597. {
  17598. name: "Macro",
  17599. height: math.unit(100, "feet")
  17600. },
  17601. {
  17602. name: "Megamacro",
  17603. height: math.unit(400, "feet")
  17604. },
  17605. ]
  17606. ))
  17607. characterMakers.push(() => makeCharacter(
  17608. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17609. {
  17610. front: {
  17611. height: math.unit(6, "feet"),
  17612. weight: math.unit(160, "lb"),
  17613. name: "Front",
  17614. image: {
  17615. source: "./media/characters/marcus/front.svg",
  17616. extra: 734 / 676,
  17617. bottom: 0.03
  17618. }
  17619. },
  17620. },
  17621. [
  17622. {
  17623. name: "Little",
  17624. height: math.unit(6, "feet")
  17625. },
  17626. {
  17627. name: "Normal",
  17628. height: math.unit(110, "feet"),
  17629. default: true
  17630. },
  17631. {
  17632. name: "Macro",
  17633. height: math.unit(250, "feet")
  17634. },
  17635. {
  17636. name: "Megamacro",
  17637. height: math.unit(1000, "feet")
  17638. },
  17639. ]
  17640. ))
  17641. characterMakers.push(() => makeCharacter(
  17642. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17643. {
  17644. front: {
  17645. height: math.unit(7, "feet"),
  17646. weight: math.unit(275, "lb"),
  17647. name: "Front",
  17648. image: {
  17649. source: "./media/characters/claude-delroute/front.svg",
  17650. extra: 230 / 214,
  17651. bottom: 0.007
  17652. }
  17653. },
  17654. side: {
  17655. height: math.unit(7, "feet"),
  17656. weight: math.unit(275, "lb"),
  17657. name: "Side",
  17658. image: {
  17659. source: "./media/characters/claude-delroute/side.svg",
  17660. extra: 222 / 214,
  17661. bottom: 0.01
  17662. }
  17663. },
  17664. back: {
  17665. height: math.unit(7, "feet"),
  17666. weight: math.unit(275, "lb"),
  17667. name: "Back",
  17668. image: {
  17669. source: "./media/characters/claude-delroute/back.svg",
  17670. extra: 230 / 214,
  17671. bottom: 0.015
  17672. }
  17673. },
  17674. maw: {
  17675. height: math.unit(0.6407, "meters"),
  17676. name: "Maw",
  17677. image: {
  17678. source: "./media/characters/claude-delroute/maw.svg"
  17679. }
  17680. },
  17681. },
  17682. [
  17683. {
  17684. name: "Normal",
  17685. height: math.unit(7, "feet"),
  17686. default: true
  17687. },
  17688. {
  17689. name: "Lorge",
  17690. height: math.unit(20, "feet")
  17691. },
  17692. ]
  17693. ))
  17694. characterMakers.push(() => makeCharacter(
  17695. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17696. {
  17697. front: {
  17698. height: math.unit(8 + 4 / 12, "feet"),
  17699. weight: math.unit(600, "lb"),
  17700. name: "Front",
  17701. image: {
  17702. source: "./media/characters/dragonien/front.svg",
  17703. extra: 100 / 94,
  17704. bottom: 3.3 / 103.3445
  17705. }
  17706. },
  17707. back: {
  17708. height: math.unit(8 + 4 / 12, "feet"),
  17709. weight: math.unit(600, "lb"),
  17710. name: "Back",
  17711. image: {
  17712. source: "./media/characters/dragonien/back.svg",
  17713. extra: 776 / 746,
  17714. bottom: 6.4 / 782.0616
  17715. }
  17716. },
  17717. foot: {
  17718. height: math.unit(1.54, "feet"),
  17719. name: "Foot",
  17720. image: {
  17721. source: "./media/characters/dragonien/foot.svg",
  17722. }
  17723. },
  17724. },
  17725. [
  17726. {
  17727. name: "Normal",
  17728. height: math.unit(8 + 4 / 12, "feet"),
  17729. default: true
  17730. },
  17731. {
  17732. name: "Macro",
  17733. height: math.unit(200, "feet")
  17734. },
  17735. {
  17736. name: "Megamacro",
  17737. height: math.unit(1, "mile")
  17738. },
  17739. {
  17740. name: "Gigamacro",
  17741. height: math.unit(1000, "miles")
  17742. },
  17743. ]
  17744. ))
  17745. characterMakers.push(() => makeCharacter(
  17746. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17747. {
  17748. front: {
  17749. height: math.unit(5 + 2 / 12, "feet"),
  17750. weight: math.unit(110, "lb"),
  17751. name: "Front",
  17752. image: {
  17753. source: "./media/characters/desta/front.svg",
  17754. extra: 767 / 726,
  17755. bottom: 11.7 / 779
  17756. }
  17757. },
  17758. back: {
  17759. height: math.unit(5 + 2 / 12, "feet"),
  17760. weight: math.unit(110, "lb"),
  17761. name: "Back",
  17762. image: {
  17763. source: "./media/characters/desta/back.svg",
  17764. extra: 777 / 728,
  17765. bottom: 6 / 784
  17766. }
  17767. },
  17768. frontAlt: {
  17769. height: math.unit(5 + 2 / 12, "feet"),
  17770. weight: math.unit(110, "lb"),
  17771. name: "Front",
  17772. image: {
  17773. source: "./media/characters/desta/front-alt.svg",
  17774. extra: 1482 / 1417
  17775. }
  17776. },
  17777. side: {
  17778. height: math.unit(5 + 2 / 12, "feet"),
  17779. weight: math.unit(110, "lb"),
  17780. name: "Side",
  17781. image: {
  17782. source: "./media/characters/desta/side.svg",
  17783. extra: 2579 / 2491,
  17784. bottom: 0.053
  17785. }
  17786. },
  17787. },
  17788. [
  17789. {
  17790. name: "Micro",
  17791. height: math.unit(6, "inches")
  17792. },
  17793. {
  17794. name: "Normal",
  17795. height: math.unit(5 + 2 / 12, "feet"),
  17796. default: true
  17797. },
  17798. {
  17799. name: "Macro",
  17800. height: math.unit(62, "feet")
  17801. },
  17802. {
  17803. name: "Megamacro",
  17804. height: math.unit(1800, "feet")
  17805. },
  17806. ]
  17807. ))
  17808. characterMakers.push(() => makeCharacter(
  17809. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17810. {
  17811. front: {
  17812. height: math.unit(10, "feet"),
  17813. weight: math.unit(700, "lb"),
  17814. name: "Front",
  17815. image: {
  17816. source: "./media/characters/storm-alystar/front.svg",
  17817. extra: 2112 / 1898,
  17818. bottom: 0.034
  17819. }
  17820. },
  17821. },
  17822. [
  17823. {
  17824. name: "Micro",
  17825. height: math.unit(3.5, "inches")
  17826. },
  17827. {
  17828. name: "Normal",
  17829. height: math.unit(10, "feet"),
  17830. default: true
  17831. },
  17832. {
  17833. name: "Macro",
  17834. height: math.unit(400, "feet")
  17835. },
  17836. {
  17837. name: "Deific",
  17838. height: math.unit(60, "miles")
  17839. },
  17840. ]
  17841. ))
  17842. characterMakers.push(() => makeCharacter(
  17843. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17844. {
  17845. front: {
  17846. height: math.unit(2.35, "meters"),
  17847. weight: math.unit(119, "kg"),
  17848. name: "Front",
  17849. image: {
  17850. source: "./media/characters/ilia/front.svg",
  17851. extra: 1285 / 1255,
  17852. bottom: 0.06
  17853. }
  17854. },
  17855. },
  17856. [
  17857. {
  17858. name: "Normal",
  17859. height: math.unit(2.35, "meters")
  17860. },
  17861. {
  17862. name: "Macro",
  17863. height: math.unit(140, "meters"),
  17864. default: true
  17865. },
  17866. {
  17867. name: "Megamacro",
  17868. height: math.unit(100, "miles")
  17869. },
  17870. ]
  17871. ))
  17872. characterMakers.push(() => makeCharacter(
  17873. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17874. {
  17875. front: {
  17876. height: math.unit(6 + 5 / 12, "feet"),
  17877. weight: math.unit(190, "lb"),
  17878. name: "Front",
  17879. image: {
  17880. source: "./media/characters/kingdead/front.svg",
  17881. extra: 1228 / 1177
  17882. }
  17883. },
  17884. },
  17885. [
  17886. {
  17887. name: "Micro",
  17888. height: math.unit(7, "inches")
  17889. },
  17890. {
  17891. name: "Normal",
  17892. height: math.unit(6 + 5 / 12, "feet")
  17893. },
  17894. {
  17895. name: "Macro",
  17896. height: math.unit(150, "feet"),
  17897. default: true
  17898. },
  17899. {
  17900. name: "Megamacro",
  17901. height: math.unit(200, "miles")
  17902. },
  17903. ]
  17904. ))
  17905. characterMakers.push(() => makeCharacter(
  17906. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17907. {
  17908. front: {
  17909. height: math.unit(8, "feet"),
  17910. weight: math.unit(600, "lb"),
  17911. name: "Front",
  17912. image: {
  17913. source: "./media/characters/kyrehx/front.svg",
  17914. extra: 1195 / 1095,
  17915. bottom: 0.034
  17916. }
  17917. },
  17918. },
  17919. [
  17920. {
  17921. name: "Micro",
  17922. height: math.unit(2, "inches")
  17923. },
  17924. {
  17925. name: "Normal",
  17926. height: math.unit(8, "feet"),
  17927. default: true
  17928. },
  17929. {
  17930. name: "Macro",
  17931. height: math.unit(255, "feet")
  17932. },
  17933. ]
  17934. ))
  17935. characterMakers.push(() => makeCharacter(
  17936. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17937. {
  17938. front: {
  17939. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17940. weight: math.unit(184, "lb"),
  17941. name: "Front",
  17942. image: {
  17943. source: "./media/characters/xang/front.svg",
  17944. extra: 845 / 755
  17945. }
  17946. },
  17947. },
  17948. [
  17949. {
  17950. name: "Normal",
  17951. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17952. default: true
  17953. },
  17954. {
  17955. name: "Macro",
  17956. height: math.unit(0.935 * 146, "feet")
  17957. },
  17958. {
  17959. name: "Megamacro",
  17960. height: math.unit(0.935 * 3, "miles")
  17961. },
  17962. ]
  17963. ))
  17964. characterMakers.push(() => makeCharacter(
  17965. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17966. {
  17967. frontDressed: {
  17968. height: math.unit(5 + 7 / 12, "feet"),
  17969. weight: math.unit(140, "lb"),
  17970. name: "Front (Dressed)",
  17971. image: {
  17972. source: "./media/characters/doc-weardno/front-dressed.svg",
  17973. extra: 263 / 234
  17974. }
  17975. },
  17976. backDressed: {
  17977. height: math.unit(5 + 7 / 12, "feet"),
  17978. weight: math.unit(140, "lb"),
  17979. name: "Back (Dressed)",
  17980. image: {
  17981. source: "./media/characters/doc-weardno/back-dressed.svg",
  17982. extra: 266 / 238
  17983. }
  17984. },
  17985. front: {
  17986. height: math.unit(5 + 7 / 12, "feet"),
  17987. weight: math.unit(140, "lb"),
  17988. name: "Front",
  17989. image: {
  17990. source: "./media/characters/doc-weardno/front.svg",
  17991. extra: 254 / 233
  17992. }
  17993. },
  17994. },
  17995. [
  17996. {
  17997. name: "Micro",
  17998. height: math.unit(3, "inches")
  17999. },
  18000. {
  18001. name: "Normal",
  18002. height: math.unit(5 + 7 / 12, "feet"),
  18003. default: true
  18004. },
  18005. {
  18006. name: "Macro",
  18007. height: math.unit(25, "feet")
  18008. },
  18009. {
  18010. name: "Megamacro",
  18011. height: math.unit(2, "miles")
  18012. },
  18013. ]
  18014. ))
  18015. characterMakers.push(() => makeCharacter(
  18016. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18017. {
  18018. front: {
  18019. height: math.unit(6 + 2 / 12, "feet"),
  18020. weight: math.unit(153, "lb"),
  18021. name: "Front",
  18022. image: {
  18023. source: "./media/characters/seth-whilst/front.svg",
  18024. bottom: 0.07
  18025. }
  18026. },
  18027. },
  18028. [
  18029. {
  18030. name: "Micro",
  18031. height: math.unit(5, "inches")
  18032. },
  18033. {
  18034. name: "Normal",
  18035. height: math.unit(6 + 2 / 12, "feet"),
  18036. default: true
  18037. },
  18038. ]
  18039. ))
  18040. characterMakers.push(() => makeCharacter(
  18041. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18042. {
  18043. front: {
  18044. height: math.unit(3, "inches"),
  18045. weight: math.unit(8, "grams"),
  18046. name: "Front",
  18047. image: {
  18048. source: "./media/characters/pocket-jabari/front.svg",
  18049. extra: 1024 / 974,
  18050. bottom: 0.039
  18051. }
  18052. },
  18053. },
  18054. [
  18055. {
  18056. name: "Minimicro",
  18057. height: math.unit(8, "mm")
  18058. },
  18059. {
  18060. name: "Micro",
  18061. height: math.unit(3, "inches"),
  18062. default: true
  18063. },
  18064. {
  18065. name: "Normal",
  18066. height: math.unit(3, "feet")
  18067. },
  18068. ]
  18069. ))
  18070. characterMakers.push(() => makeCharacter(
  18071. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18072. {
  18073. front: {
  18074. height: math.unit(15, "feet"),
  18075. weight: math.unit(3280, "lb"),
  18076. name: "Front",
  18077. image: {
  18078. source: "./media/characters/sapphy/front.svg",
  18079. extra: 671 / 577,
  18080. bottom: 0.085
  18081. }
  18082. },
  18083. back: {
  18084. height: math.unit(15, "feet"),
  18085. weight: math.unit(3280, "lb"),
  18086. name: "Back",
  18087. image: {
  18088. source: "./media/characters/sapphy/back.svg",
  18089. extra: 631 / 607,
  18090. bottom: 0.045
  18091. }
  18092. },
  18093. },
  18094. [
  18095. {
  18096. name: "Normal",
  18097. height: math.unit(15, "feet")
  18098. },
  18099. {
  18100. name: "Casual Macro",
  18101. height: math.unit(120, "feet")
  18102. },
  18103. {
  18104. name: "Macro",
  18105. height: math.unit(2150, "feet"),
  18106. default: true
  18107. },
  18108. {
  18109. name: "Megamacro",
  18110. height: math.unit(8, "miles")
  18111. },
  18112. {
  18113. name: "Galaxy Mom",
  18114. height: math.unit(6, "megalightyears")
  18115. },
  18116. ]
  18117. ))
  18118. characterMakers.push(() => makeCharacter(
  18119. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  18120. {
  18121. front: {
  18122. height: math.unit(6, "feet"),
  18123. weight: math.unit(170, "lb"),
  18124. name: "Front",
  18125. image: {
  18126. source: "./media/characters/kiro/front.svg",
  18127. extra: 1064 / 1012,
  18128. bottom: 0.052
  18129. }
  18130. },
  18131. },
  18132. [
  18133. {
  18134. name: "Micro",
  18135. height: math.unit(6, "inches")
  18136. },
  18137. {
  18138. name: "Normal",
  18139. height: math.unit(6, "feet"),
  18140. default: true
  18141. },
  18142. {
  18143. name: "Macro",
  18144. height: math.unit(72, "feet")
  18145. },
  18146. ]
  18147. ))
  18148. characterMakers.push(() => makeCharacter(
  18149. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18150. {
  18151. front: {
  18152. height: math.unit(5 + 9 / 12, "feet"),
  18153. weight: math.unit(175, "lb"),
  18154. name: "Front",
  18155. image: {
  18156. source: "./media/characters/irishfox/front.svg",
  18157. extra: 1912 / 1680,
  18158. bottom: 0.02
  18159. }
  18160. },
  18161. },
  18162. [
  18163. {
  18164. name: "Nano",
  18165. height: math.unit(1, "mm")
  18166. },
  18167. {
  18168. name: "Micro",
  18169. height: math.unit(2, "inches")
  18170. },
  18171. {
  18172. name: "Normal",
  18173. height: math.unit(5 + 9 / 12, "feet"),
  18174. default: true
  18175. },
  18176. {
  18177. name: "Macro",
  18178. height: math.unit(45, "feet")
  18179. },
  18180. ]
  18181. ))
  18182. characterMakers.push(() => makeCharacter(
  18183. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18184. {
  18185. front: {
  18186. height: math.unit(6 + 1 / 12, "feet"),
  18187. weight: math.unit(150, "lb"),
  18188. name: "Front",
  18189. image: {
  18190. source: "./media/characters/aronai-sieyes/front.svg",
  18191. extra: 1556 / 1480,
  18192. bottom: 0.015
  18193. }
  18194. },
  18195. side: {
  18196. height: math.unit(6 + 1 / 12, "feet"),
  18197. weight: math.unit(150, "lb"),
  18198. name: "Side",
  18199. image: {
  18200. source: "./media/characters/aronai-sieyes/side.svg",
  18201. extra: 1433 / 1390,
  18202. bottom: 0.0393
  18203. }
  18204. },
  18205. back: {
  18206. height: math.unit(6 + 1 / 12, "feet"),
  18207. weight: math.unit(150, "lb"),
  18208. name: "Back",
  18209. image: {
  18210. source: "./media/characters/aronai-sieyes/back.svg",
  18211. extra: 1544 / 1494,
  18212. bottom: 0.02
  18213. }
  18214. },
  18215. frontClothed: {
  18216. height: math.unit(6 + 1 / 12, "feet"),
  18217. weight: math.unit(150, "lb"),
  18218. name: "Front (Clothed)",
  18219. image: {
  18220. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18221. extra: 1582 / 1527
  18222. }
  18223. },
  18224. feral: {
  18225. height: math.unit(18, "feet"),
  18226. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  18227. name: "Feral",
  18228. image: {
  18229. source: "./media/characters/aronai-sieyes/feral.svg",
  18230. extra: 1530 / 1240,
  18231. bottom: 0.035
  18232. }
  18233. },
  18234. },
  18235. [
  18236. {
  18237. name: "Micro",
  18238. height: math.unit(2, "inches")
  18239. },
  18240. {
  18241. name: "Normal",
  18242. height: math.unit(6 + 1 / 12, "feet"),
  18243. default: true
  18244. }
  18245. ]
  18246. ))
  18247. characterMakers.push(() => makeCharacter(
  18248. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18249. {
  18250. front: {
  18251. height: math.unit(12, "feet"),
  18252. weight: math.unit(410, "kg"),
  18253. name: "Front",
  18254. image: {
  18255. source: "./media/characters/xuna/front.svg",
  18256. extra: 2184 / 1980
  18257. }
  18258. },
  18259. side: {
  18260. height: math.unit(12, "feet"),
  18261. weight: math.unit(410, "kg"),
  18262. name: "Side",
  18263. image: {
  18264. source: "./media/characters/xuna/side.svg",
  18265. extra: 2184 / 1980
  18266. }
  18267. },
  18268. back: {
  18269. height: math.unit(12, "feet"),
  18270. weight: math.unit(410, "kg"),
  18271. name: "Back",
  18272. image: {
  18273. source: "./media/characters/xuna/back.svg",
  18274. extra: 2184 / 1980
  18275. }
  18276. },
  18277. },
  18278. [
  18279. {
  18280. name: "Nano glow",
  18281. height: math.unit(10, "nm")
  18282. },
  18283. {
  18284. name: "Micro floof",
  18285. height: math.unit(0.3, "m")
  18286. },
  18287. {
  18288. name: "Huggable softy boi",
  18289. height: math.unit(3.6576, "m"),
  18290. default: true
  18291. },
  18292. {
  18293. name: "Admirable floof",
  18294. height: math.unit(80, "meters")
  18295. },
  18296. {
  18297. name: "Gentle macro",
  18298. height: math.unit(300, "meters")
  18299. },
  18300. {
  18301. name: "Very careful floof",
  18302. height: math.unit(3200, "meters")
  18303. },
  18304. {
  18305. name: "The mega floof",
  18306. height: math.unit(36000, "meters")
  18307. },
  18308. {
  18309. name: "Giga-fur-Wicker",
  18310. height: math.unit(4800000, "meters")
  18311. },
  18312. {
  18313. name: "Licky world",
  18314. height: math.unit(20000000, "meters")
  18315. },
  18316. {
  18317. name: "Floofy cyan sun",
  18318. height: math.unit(1500000000, "meters")
  18319. },
  18320. {
  18321. name: "Milky Wicker",
  18322. height: math.unit(1000000000000000000000, "meters")
  18323. },
  18324. {
  18325. name: "The observing Wicker",
  18326. height: math.unit(999999999999999999999999999, "meters")
  18327. },
  18328. ]
  18329. ))
  18330. characterMakers.push(() => makeCharacter(
  18331. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18332. {
  18333. front: {
  18334. height: math.unit(5 + 9 / 12, "feet"),
  18335. weight: math.unit(150, "lb"),
  18336. name: "Front",
  18337. image: {
  18338. source: "./media/characters/arokha-sieyes/front.svg",
  18339. extra: 1425 / 1284,
  18340. bottom: 0.05
  18341. }
  18342. },
  18343. },
  18344. [
  18345. {
  18346. name: "Normal",
  18347. height: math.unit(5 + 9 / 12, "feet")
  18348. },
  18349. {
  18350. name: "Macro",
  18351. height: math.unit(30, "meters"),
  18352. default: true
  18353. },
  18354. ]
  18355. ))
  18356. characterMakers.push(() => makeCharacter(
  18357. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18358. {
  18359. front: {
  18360. height: math.unit(6, "feet"),
  18361. weight: math.unit(180, "lb"),
  18362. name: "Front",
  18363. image: {
  18364. source: "./media/characters/arokh-sieyes/front.svg",
  18365. extra: 1830 / 1769,
  18366. bottom: 0.01
  18367. }
  18368. },
  18369. },
  18370. [
  18371. {
  18372. name: "Normal",
  18373. height: math.unit(6, "feet")
  18374. },
  18375. {
  18376. name: "Macro",
  18377. height: math.unit(30, "meters"),
  18378. default: true
  18379. },
  18380. ]
  18381. ))
  18382. characterMakers.push(() => makeCharacter(
  18383. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18384. {
  18385. side: {
  18386. height: math.unit(13 + 1 / 12, "feet"),
  18387. weight: math.unit(8.5, "tonnes"),
  18388. name: "Side",
  18389. image: {
  18390. source: "./media/characters/goldeneye/side.svg",
  18391. extra: 1182 / 778,
  18392. bottom: 0.067
  18393. }
  18394. },
  18395. paw: {
  18396. height: math.unit(3.4, "feet"),
  18397. name: "Paw",
  18398. image: {
  18399. source: "./media/characters/goldeneye/paw.svg"
  18400. }
  18401. },
  18402. },
  18403. [
  18404. {
  18405. name: "Normal",
  18406. height: math.unit(13 + 1 / 12, "feet"),
  18407. default: true
  18408. },
  18409. ]
  18410. ))
  18411. characterMakers.push(() => makeCharacter(
  18412. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18413. {
  18414. front: {
  18415. height: math.unit(6 + 1 / 12, "feet"),
  18416. weight: math.unit(210, "lb"),
  18417. name: "Front",
  18418. image: {
  18419. source: "./media/characters/leonardo-lycheborne/front.svg",
  18420. extra: 390 / 365,
  18421. bottom: 0.032
  18422. }
  18423. },
  18424. side: {
  18425. height: math.unit(6 + 1 / 12, "feet"),
  18426. weight: math.unit(210, "lb"),
  18427. name: "Side",
  18428. image: {
  18429. source: "./media/characters/leonardo-lycheborne/side.svg",
  18430. extra: 390 / 365,
  18431. bottom: 0.005
  18432. }
  18433. },
  18434. back: {
  18435. height: math.unit(6 + 1 / 12, "feet"),
  18436. weight: math.unit(210, "lb"),
  18437. name: "Back",
  18438. image: {
  18439. source: "./media/characters/leonardo-lycheborne/back.svg",
  18440. extra: 392 / 366,
  18441. bottom: 0.01
  18442. }
  18443. },
  18444. hand: {
  18445. height: math.unit(1.08, "feet"),
  18446. name: "Hand",
  18447. image: {
  18448. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18449. }
  18450. },
  18451. foot: {
  18452. height: math.unit(1.32, "feet"),
  18453. name: "Foot",
  18454. image: {
  18455. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18456. }
  18457. },
  18458. were: {
  18459. height: math.unit(20, "feet"),
  18460. weight: math.unit(7800, "lb"),
  18461. name: "Were",
  18462. image: {
  18463. source: "./media/characters/leonardo-lycheborne/were.svg",
  18464. extra: 308 / 294,
  18465. bottom: 0.048
  18466. }
  18467. },
  18468. feral: {
  18469. height: math.unit(7.5, "feet"),
  18470. weight: math.unit(600, "lb"),
  18471. name: "Feral",
  18472. image: {
  18473. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18474. extra: 210 / 186,
  18475. bottom: 0.108
  18476. }
  18477. },
  18478. taur: {
  18479. height: math.unit(11, "feet"),
  18480. weight: math.unit(3300, "lb"),
  18481. name: "Taur",
  18482. image: {
  18483. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18484. extra: 320 / 303,
  18485. bottom: 0.025
  18486. }
  18487. },
  18488. barghest: {
  18489. height: math.unit(11, "feet"),
  18490. weight: math.unit(1300, "lb"),
  18491. name: "Barghest",
  18492. image: {
  18493. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18494. extra: 323 / 302,
  18495. bottom: 0.027
  18496. }
  18497. },
  18498. dick: {
  18499. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18500. name: "Dick",
  18501. image: {
  18502. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18503. }
  18504. },
  18505. dickWere: {
  18506. height: math.unit((20) / 3.8, "feet"),
  18507. name: "Dick (Were)",
  18508. image: {
  18509. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18510. }
  18511. },
  18512. },
  18513. [
  18514. {
  18515. name: "Normal",
  18516. height: math.unit(6 + 1 / 12, "feet"),
  18517. default: true
  18518. },
  18519. ]
  18520. ))
  18521. characterMakers.push(() => makeCharacter(
  18522. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18523. {
  18524. front: {
  18525. height: math.unit(10, "feet"),
  18526. weight: math.unit(350, "lb"),
  18527. name: "Front",
  18528. image: {
  18529. source: "./media/characters/jet/front.svg",
  18530. extra: 2050 / 1980,
  18531. bottom: 0.013
  18532. }
  18533. },
  18534. back: {
  18535. height: math.unit(10, "feet"),
  18536. weight: math.unit(350, "lb"),
  18537. name: "Back",
  18538. image: {
  18539. source: "./media/characters/jet/back.svg",
  18540. extra: 2050 / 1980,
  18541. bottom: 0.013
  18542. }
  18543. },
  18544. },
  18545. [
  18546. {
  18547. name: "Micro",
  18548. height: math.unit(6, "inches")
  18549. },
  18550. {
  18551. name: "Normal",
  18552. height: math.unit(10, "feet"),
  18553. default: true
  18554. },
  18555. {
  18556. name: "Macro",
  18557. height: math.unit(100, "feet")
  18558. },
  18559. ]
  18560. ))
  18561. characterMakers.push(() => makeCharacter(
  18562. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18563. {
  18564. front: {
  18565. height: math.unit(15, "feet"),
  18566. weight: math.unit(2800, "lb"),
  18567. name: "Front",
  18568. image: {
  18569. source: "./media/characters/tanarath/front.svg",
  18570. extra: 2392 / 2220,
  18571. bottom: 0.03
  18572. }
  18573. },
  18574. back: {
  18575. height: math.unit(15, "feet"),
  18576. weight: math.unit(2800, "lb"),
  18577. name: "Back",
  18578. image: {
  18579. source: "./media/characters/tanarath/back.svg",
  18580. extra: 2392 / 2220,
  18581. bottom: 0.03
  18582. }
  18583. },
  18584. },
  18585. [
  18586. {
  18587. name: "Normal",
  18588. height: math.unit(15, "feet"),
  18589. default: true
  18590. },
  18591. ]
  18592. ))
  18593. characterMakers.push(() => makeCharacter(
  18594. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18595. {
  18596. front: {
  18597. height: math.unit(7 + 1 / 12, "feet"),
  18598. weight: math.unit(175, "lb"),
  18599. name: "Front",
  18600. image: {
  18601. source: "./media/characters/patty-cattybatty/front.svg",
  18602. extra: 908 / 874,
  18603. bottom: 0.025
  18604. }
  18605. },
  18606. },
  18607. [
  18608. {
  18609. name: "Micro",
  18610. height: math.unit(1, "inch")
  18611. },
  18612. {
  18613. name: "Normal",
  18614. height: math.unit(7 + 1 / 12, "feet")
  18615. },
  18616. {
  18617. name: "Mini Macro",
  18618. height: math.unit(155, "feet")
  18619. },
  18620. {
  18621. name: "Macro",
  18622. height: math.unit(1077, "feet")
  18623. },
  18624. {
  18625. name: "Mega Macro",
  18626. height: math.unit(47650, "feet"),
  18627. default: true
  18628. },
  18629. {
  18630. name: "Giga Macro",
  18631. height: math.unit(440, "miles")
  18632. },
  18633. {
  18634. name: "Tera Macro",
  18635. height: math.unit(8700, "miles")
  18636. },
  18637. {
  18638. name: "Planetary Macro",
  18639. height: math.unit(32700, "miles")
  18640. },
  18641. {
  18642. name: "Solar Macro",
  18643. height: math.unit(550000, "miles")
  18644. },
  18645. {
  18646. name: "Celestial Macro",
  18647. height: math.unit(2.5, "AU")
  18648. },
  18649. ]
  18650. ))
  18651. characterMakers.push(() => makeCharacter(
  18652. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18653. {
  18654. front: {
  18655. height: math.unit(4 + 5 / 12, "feet"),
  18656. weight: math.unit(90, "lb"),
  18657. name: "Front",
  18658. image: {
  18659. source: "./media/characters/cappu/front.svg",
  18660. extra: 1247 / 1152,
  18661. bottom: 0.012
  18662. }
  18663. },
  18664. },
  18665. [
  18666. {
  18667. name: "Normal",
  18668. height: math.unit(4 + 5 / 12, "feet"),
  18669. default: true
  18670. },
  18671. ]
  18672. ))
  18673. characterMakers.push(() => makeCharacter(
  18674. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18675. {
  18676. frontDressed: {
  18677. height: math.unit(70, "cm"),
  18678. weight: math.unit(6, "kg"),
  18679. name: "Front (Dressed)",
  18680. image: {
  18681. source: "./media/characters/sebi/front-dressed.svg",
  18682. extra: 713.5 / 686.5,
  18683. bottom: 0.003
  18684. }
  18685. },
  18686. front: {
  18687. height: math.unit(70, "cm"),
  18688. weight: math.unit(5, "kg"),
  18689. name: "Front",
  18690. image: {
  18691. source: "./media/characters/sebi/front.svg",
  18692. extra: 713.5 / 686.5,
  18693. bottom: 0.003
  18694. }
  18695. }
  18696. },
  18697. [
  18698. {
  18699. name: "Normal",
  18700. height: math.unit(70, "cm"),
  18701. default: true
  18702. },
  18703. {
  18704. name: "Macro",
  18705. height: math.unit(8, "meters")
  18706. },
  18707. ]
  18708. ))
  18709. characterMakers.push(() => makeCharacter(
  18710. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18711. {
  18712. front: {
  18713. height: math.unit(6, "feet"),
  18714. weight: math.unit(150, "lb"),
  18715. name: "Front",
  18716. image: {
  18717. source: "./media/characters/typhek/front.svg",
  18718. extra: 1948 / 1929,
  18719. bottom: 0.025
  18720. }
  18721. },
  18722. side: {
  18723. height: math.unit(6, "feet"),
  18724. weight: math.unit(150, "lb"),
  18725. name: "Side",
  18726. image: {
  18727. source: "./media/characters/typhek/side.svg",
  18728. extra: 2034 / 2010,
  18729. bottom: 0.003
  18730. }
  18731. },
  18732. back: {
  18733. height: math.unit(6, "feet"),
  18734. weight: math.unit(150, "lb"),
  18735. name: "Back",
  18736. image: {
  18737. source: "./media/characters/typhek/back.svg",
  18738. extra: 2005 / 1978,
  18739. bottom: 0.004
  18740. }
  18741. },
  18742. palm: {
  18743. height: math.unit(1.2, "feet"),
  18744. name: "Palm",
  18745. image: {
  18746. source: "./media/characters/typhek/palm.svg"
  18747. }
  18748. },
  18749. fist: {
  18750. height: math.unit(1.1, "feet"),
  18751. name: "Fist",
  18752. image: {
  18753. source: "./media/characters/typhek/fist.svg"
  18754. }
  18755. },
  18756. foot: {
  18757. height: math.unit(1.57, "feet"),
  18758. name: "Foot",
  18759. image: {
  18760. source: "./media/characters/typhek/foot.svg"
  18761. }
  18762. },
  18763. sole: {
  18764. height: math.unit(2.05, "feet"),
  18765. name: "Sole",
  18766. image: {
  18767. source: "./media/characters/typhek/sole.svg"
  18768. }
  18769. },
  18770. },
  18771. [
  18772. {
  18773. name: "Macro",
  18774. height: math.unit(40, "stories"),
  18775. default: true
  18776. },
  18777. {
  18778. name: "Megamacro",
  18779. height: math.unit(1, "mile")
  18780. },
  18781. {
  18782. name: "Gigamacro",
  18783. height: math.unit(4000, "solarradii")
  18784. },
  18785. {
  18786. name: "Universal",
  18787. height: math.unit(1.1, "universes")
  18788. }
  18789. ]
  18790. ))
  18791. characterMakers.push(() => makeCharacter(
  18792. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18793. {
  18794. side: {
  18795. height: math.unit(5 + 7 / 12, "feet"),
  18796. weight: math.unit(150, "lb"),
  18797. name: "Side",
  18798. image: {
  18799. source: "./media/characters/kassy/side.svg",
  18800. extra: 1280 / 1225,
  18801. bottom: 0.002
  18802. }
  18803. },
  18804. front: {
  18805. height: math.unit(5 + 7 / 12, "feet"),
  18806. weight: math.unit(150, "lb"),
  18807. name: "Front",
  18808. image: {
  18809. source: "./media/characters/kassy/front.svg",
  18810. extra: 1280 / 1225,
  18811. bottom: 0.025
  18812. }
  18813. },
  18814. back: {
  18815. height: math.unit(5 + 7 / 12, "feet"),
  18816. weight: math.unit(150, "lb"),
  18817. name: "Back",
  18818. image: {
  18819. source: "./media/characters/kassy/back.svg",
  18820. extra: 1280 / 1225,
  18821. bottom: 0.002
  18822. }
  18823. },
  18824. foot: {
  18825. height: math.unit(1.266, "feet"),
  18826. name: "Foot",
  18827. image: {
  18828. source: "./media/characters/kassy/foot.svg"
  18829. }
  18830. },
  18831. },
  18832. [
  18833. {
  18834. name: "Normal",
  18835. height: math.unit(5 + 7 / 12, "feet")
  18836. },
  18837. {
  18838. name: "Macro",
  18839. height: math.unit(137, "feet"),
  18840. default: true
  18841. },
  18842. {
  18843. name: "Megamacro",
  18844. height: math.unit(1, "mile")
  18845. },
  18846. ]
  18847. ))
  18848. characterMakers.push(() => makeCharacter(
  18849. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18850. {
  18851. front: {
  18852. height: math.unit(6 + 1 / 12, "feet"),
  18853. weight: math.unit(200, "lb"),
  18854. name: "Front",
  18855. image: {
  18856. source: "./media/characters/neil/front.svg",
  18857. extra: 1326 / 1250,
  18858. bottom: 0.023
  18859. }
  18860. },
  18861. },
  18862. [
  18863. {
  18864. name: "Normal",
  18865. height: math.unit(6 + 1 / 12, "feet"),
  18866. default: true
  18867. },
  18868. {
  18869. name: "Macro",
  18870. height: math.unit(200, "feet")
  18871. },
  18872. ]
  18873. ))
  18874. characterMakers.push(() => makeCharacter(
  18875. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18876. {
  18877. front: {
  18878. height: math.unit(5 + 9 / 12, "feet"),
  18879. weight: math.unit(190, "lb"),
  18880. name: "Front",
  18881. image: {
  18882. source: "./media/characters/atticus/front.svg",
  18883. extra: 2934 / 2785,
  18884. bottom: 0.025
  18885. }
  18886. },
  18887. },
  18888. [
  18889. {
  18890. name: "Normal",
  18891. height: math.unit(5 + 9 / 12, "feet"),
  18892. default: true
  18893. },
  18894. {
  18895. name: "Macro",
  18896. height: math.unit(180, "feet")
  18897. },
  18898. ]
  18899. ))
  18900. characterMakers.push(() => makeCharacter(
  18901. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18902. {
  18903. side: {
  18904. height: math.unit(9, "feet"),
  18905. weight: math.unit(650, "lb"),
  18906. name: "Side",
  18907. image: {
  18908. source: "./media/characters/milo/side.svg",
  18909. extra: 2644 / 2310,
  18910. bottom: 0.032
  18911. }
  18912. },
  18913. },
  18914. [
  18915. {
  18916. name: "Normal",
  18917. height: math.unit(9, "feet"),
  18918. default: true
  18919. },
  18920. {
  18921. name: "Macro",
  18922. height: math.unit(300, "feet")
  18923. },
  18924. ]
  18925. ))
  18926. characterMakers.push(() => makeCharacter(
  18927. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18928. {
  18929. side: {
  18930. height: math.unit(8, "meters"),
  18931. weight: math.unit(90000, "kg"),
  18932. name: "Side",
  18933. image: {
  18934. source: "./media/characters/ijzer/side.svg",
  18935. extra: 2756 / 1600,
  18936. bottom: 0.01
  18937. }
  18938. },
  18939. },
  18940. [
  18941. {
  18942. name: "Small",
  18943. height: math.unit(3, "meters")
  18944. },
  18945. {
  18946. name: "Normal",
  18947. height: math.unit(8, "meters"),
  18948. default: true
  18949. },
  18950. {
  18951. name: "Normal+",
  18952. height: math.unit(10, "meters")
  18953. },
  18954. {
  18955. name: "Bigger",
  18956. height: math.unit(24, "meters")
  18957. },
  18958. {
  18959. name: "Huge",
  18960. height: math.unit(80, "meters")
  18961. },
  18962. ]
  18963. ))
  18964. characterMakers.push(() => makeCharacter(
  18965. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18966. {
  18967. front: {
  18968. height: math.unit(6 + 2 / 12, "feet"),
  18969. weight: math.unit(153, "lb"),
  18970. name: "Front",
  18971. image: {
  18972. source: "./media/characters/luca-cervicum/front.svg",
  18973. extra: 370 / 327,
  18974. bottom: 0.015
  18975. }
  18976. },
  18977. back: {
  18978. height: math.unit(6 + 2 / 12, "feet"),
  18979. weight: math.unit(153, "lb"),
  18980. name: "Back",
  18981. image: {
  18982. source: "./media/characters/luca-cervicum/back.svg",
  18983. extra: 367 / 333,
  18984. bottom: 0.005
  18985. }
  18986. },
  18987. frontGear: {
  18988. height: math.unit(6 + 2 / 12, "feet"),
  18989. weight: math.unit(173, "lb"),
  18990. name: "Front (Gear)",
  18991. image: {
  18992. source: "./media/characters/luca-cervicum/front-gear.svg",
  18993. extra: 377 / 333,
  18994. bottom: 0.006
  18995. }
  18996. },
  18997. },
  18998. [
  18999. {
  19000. name: "Normal",
  19001. height: math.unit(6 + 2 / 12, "feet"),
  19002. default: true
  19003. },
  19004. ]
  19005. ))
  19006. characterMakers.push(() => makeCharacter(
  19007. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19008. {
  19009. front: {
  19010. height: math.unit(6 + 1 / 12, "feet"),
  19011. weight: math.unit(304, "lb"),
  19012. name: "Front",
  19013. image: {
  19014. source: "./media/characters/oliver/front.svg",
  19015. extra: 157 / 143,
  19016. bottom: 0.08
  19017. }
  19018. },
  19019. },
  19020. [
  19021. {
  19022. name: "Normal",
  19023. height: math.unit(6 + 1 / 12, "feet"),
  19024. default: true
  19025. },
  19026. ]
  19027. ))
  19028. characterMakers.push(() => makeCharacter(
  19029. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19030. {
  19031. front: {
  19032. height: math.unit(5 + 7 / 12, "feet"),
  19033. weight: math.unit(140, "lb"),
  19034. name: "Front",
  19035. image: {
  19036. source: "./media/characters/shane/front.svg",
  19037. extra: 304 / 289,
  19038. bottom: 0.005
  19039. }
  19040. },
  19041. },
  19042. [
  19043. {
  19044. name: "Normal",
  19045. height: math.unit(5 + 7 / 12, "feet"),
  19046. default: true
  19047. },
  19048. ]
  19049. ))
  19050. characterMakers.push(() => makeCharacter(
  19051. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19052. {
  19053. front: {
  19054. height: math.unit(5 + 9 / 12, "feet"),
  19055. weight: math.unit(178, "lb"),
  19056. name: "Front",
  19057. image: {
  19058. source: "./media/characters/shin/front.svg",
  19059. extra: 159 / 151,
  19060. bottom: 0.015
  19061. }
  19062. },
  19063. },
  19064. [
  19065. {
  19066. name: "Normal",
  19067. height: math.unit(5 + 9 / 12, "feet"),
  19068. default: true
  19069. },
  19070. ]
  19071. ))
  19072. characterMakers.push(() => makeCharacter(
  19073. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19074. {
  19075. front: {
  19076. height: math.unit(5 + 10 / 12, "feet"),
  19077. weight: math.unit(168, "lb"),
  19078. name: "Front",
  19079. image: {
  19080. source: "./media/characters/xerxes/front.svg",
  19081. extra: 282 / 260,
  19082. bottom: 0.045
  19083. }
  19084. },
  19085. },
  19086. [
  19087. {
  19088. name: "Normal",
  19089. height: math.unit(5 + 10 / 12, "feet"),
  19090. default: true
  19091. },
  19092. ]
  19093. ))
  19094. characterMakers.push(() => makeCharacter(
  19095. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19096. {
  19097. front: {
  19098. height: math.unit(6 + 7 / 12, "feet"),
  19099. weight: math.unit(208, "lb"),
  19100. name: "Front",
  19101. image: {
  19102. source: "./media/characters/chaska/front.svg",
  19103. extra: 332 / 319,
  19104. bottom: 0.015
  19105. }
  19106. },
  19107. },
  19108. [
  19109. {
  19110. name: "Normal",
  19111. height: math.unit(6 + 7 / 12, "feet"),
  19112. default: true
  19113. },
  19114. ]
  19115. ))
  19116. characterMakers.push(() => makeCharacter(
  19117. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19118. {
  19119. front: {
  19120. height: math.unit(5 + 8 / 12, "feet"),
  19121. weight: math.unit(208, "lb"),
  19122. name: "Front",
  19123. image: {
  19124. source: "./media/characters/enuk/front.svg",
  19125. extra: 437 / 406,
  19126. bottom: 0.02
  19127. }
  19128. },
  19129. },
  19130. [
  19131. {
  19132. name: "Normal",
  19133. height: math.unit(5 + 8 / 12, "feet"),
  19134. default: true
  19135. },
  19136. ]
  19137. ))
  19138. characterMakers.push(() => makeCharacter(
  19139. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19140. {
  19141. front: {
  19142. height: math.unit(5 + 10 / 12, "feet"),
  19143. weight: math.unit(252, "lb"),
  19144. name: "Front",
  19145. image: {
  19146. source: "./media/characters/bruun/front.svg",
  19147. extra: 197 / 187,
  19148. bottom: 0.012
  19149. }
  19150. },
  19151. },
  19152. [
  19153. {
  19154. name: "Normal",
  19155. height: math.unit(5 + 10 / 12, "feet"),
  19156. default: true
  19157. },
  19158. ]
  19159. ))
  19160. characterMakers.push(() => makeCharacter(
  19161. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19162. {
  19163. front: {
  19164. height: math.unit(6 + 10 / 12, "feet"),
  19165. weight: math.unit(255, "lb"),
  19166. name: "Front",
  19167. image: {
  19168. source: "./media/characters/alexeev/front.svg",
  19169. extra: 213 / 200,
  19170. bottom: 0.05
  19171. }
  19172. },
  19173. },
  19174. [
  19175. {
  19176. name: "Normal",
  19177. height: math.unit(6 + 10 / 12, "feet"),
  19178. default: true
  19179. },
  19180. ]
  19181. ))
  19182. characterMakers.push(() => makeCharacter(
  19183. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19184. {
  19185. front: {
  19186. height: math.unit(2 + 8 / 12, "feet"),
  19187. weight: math.unit(22, "lb"),
  19188. name: "Front",
  19189. image: {
  19190. source: "./media/characters/evelyn/front.svg",
  19191. extra: 208 / 180
  19192. }
  19193. },
  19194. },
  19195. [
  19196. {
  19197. name: "Normal",
  19198. height: math.unit(2 + 8 / 12, "feet"),
  19199. default: true
  19200. },
  19201. ]
  19202. ))
  19203. characterMakers.push(() => makeCharacter(
  19204. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19205. {
  19206. front: {
  19207. height: math.unit(5 + 9 / 12, "feet"),
  19208. weight: math.unit(139, "lb"),
  19209. name: "Front",
  19210. image: {
  19211. source: "./media/characters/inca/front.svg",
  19212. extra: 294 / 291,
  19213. bottom: 0.03
  19214. }
  19215. },
  19216. },
  19217. [
  19218. {
  19219. name: "Normal",
  19220. height: math.unit(5 + 9 / 12, "feet"),
  19221. default: true
  19222. },
  19223. ]
  19224. ))
  19225. characterMakers.push(() => makeCharacter(
  19226. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19227. {
  19228. front: {
  19229. height: math.unit(5 + 1 / 12, "feet"),
  19230. weight: math.unit(84, "lb"),
  19231. name: "Front",
  19232. image: {
  19233. source: "./media/characters/magdalene/front.svg",
  19234. extra: 293 / 273
  19235. }
  19236. },
  19237. },
  19238. [
  19239. {
  19240. name: "Normal",
  19241. height: math.unit(5 + 1 / 12, "feet"),
  19242. default: true
  19243. },
  19244. ]
  19245. ))
  19246. characterMakers.push(() => makeCharacter(
  19247. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19248. {
  19249. front: {
  19250. height: math.unit(6 + 3 / 12, "feet"),
  19251. weight: math.unit(185, "lb"),
  19252. name: "Front",
  19253. image: {
  19254. source: "./media/characters/mera/front.svg",
  19255. extra: 291 / 277,
  19256. bottom: 0.03
  19257. }
  19258. },
  19259. },
  19260. [
  19261. {
  19262. name: "Normal",
  19263. height: math.unit(6 + 3 / 12, "feet"),
  19264. default: true
  19265. },
  19266. ]
  19267. ))
  19268. characterMakers.push(() => makeCharacter(
  19269. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19270. {
  19271. front: {
  19272. height: math.unit(6 + 7 / 12, "feet"),
  19273. weight: math.unit(160, "lb"),
  19274. name: "Front",
  19275. image: {
  19276. source: "./media/characters/ceres/front.svg",
  19277. extra: 1023 / 950,
  19278. bottom: 0.027
  19279. }
  19280. },
  19281. back: {
  19282. height: math.unit(6 + 7 / 12, "feet"),
  19283. weight: math.unit(160, "lb"),
  19284. name: "Back",
  19285. image: {
  19286. source: "./media/characters/ceres/back.svg",
  19287. extra: 1023 / 950
  19288. }
  19289. },
  19290. },
  19291. [
  19292. {
  19293. name: "Normal",
  19294. height: math.unit(6 + 7 / 12, "feet"),
  19295. default: true
  19296. },
  19297. ]
  19298. ))
  19299. characterMakers.push(() => makeCharacter(
  19300. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19301. {
  19302. front: {
  19303. height: math.unit(5 + 10 / 12, "feet"),
  19304. weight: math.unit(150, "lb"),
  19305. name: "Front",
  19306. image: {
  19307. source: "./media/characters/kris/front.svg",
  19308. extra: 885 / 803,
  19309. bottom: 0.03
  19310. }
  19311. },
  19312. },
  19313. [
  19314. {
  19315. name: "Normal",
  19316. height: math.unit(5 + 10 / 12, "feet"),
  19317. default: true
  19318. },
  19319. ]
  19320. ))
  19321. characterMakers.push(() => makeCharacter(
  19322. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19323. {
  19324. front: {
  19325. height: math.unit(7, "feet"),
  19326. weight: math.unit(120, "kg"),
  19327. name: "Front",
  19328. image: {
  19329. source: "./media/characters/taluthus/front.svg",
  19330. extra: 903 / 833,
  19331. bottom: 0.015
  19332. }
  19333. },
  19334. },
  19335. [
  19336. {
  19337. name: "Normal",
  19338. height: math.unit(7, "feet"),
  19339. default: true
  19340. },
  19341. {
  19342. name: "Macro",
  19343. height: math.unit(300, "feet")
  19344. },
  19345. ]
  19346. ))
  19347. characterMakers.push(() => makeCharacter(
  19348. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19349. {
  19350. front: {
  19351. height: math.unit(5 + 9 / 12, "feet"),
  19352. weight: math.unit(145, "lb"),
  19353. name: "Front",
  19354. image: {
  19355. source: "./media/characters/dawn/front.svg",
  19356. extra: 2094 / 2016,
  19357. bottom: 0.025
  19358. }
  19359. },
  19360. back: {
  19361. height: math.unit(5 + 9 / 12, "feet"),
  19362. weight: math.unit(160, "lb"),
  19363. name: "Back",
  19364. image: {
  19365. source: "./media/characters/dawn/back.svg",
  19366. extra: 2112 / 2080,
  19367. bottom: 0.005
  19368. }
  19369. },
  19370. },
  19371. [
  19372. {
  19373. name: "Normal",
  19374. height: math.unit(6 + 7 / 12, "feet"),
  19375. default: true
  19376. },
  19377. ]
  19378. ))
  19379. characterMakers.push(() => makeCharacter(
  19380. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19381. {
  19382. anthro: {
  19383. height: math.unit(8 + 3 / 12, "feet"),
  19384. weight: math.unit(450, "lb"),
  19385. name: "Anthro",
  19386. image: {
  19387. source: "./media/characters/arador/anthro.svg",
  19388. extra: 1835 / 1718,
  19389. bottom: 0.025
  19390. }
  19391. },
  19392. feral: {
  19393. height: math.unit(4, "feet"),
  19394. weight: math.unit(200, "lb"),
  19395. name: "Feral",
  19396. image: {
  19397. source: "./media/characters/arador/feral.svg",
  19398. extra: 1683 / 1514,
  19399. bottom: 0.07
  19400. }
  19401. },
  19402. },
  19403. [
  19404. {
  19405. name: "Normal",
  19406. height: math.unit(8 + 3 / 12, "feet")
  19407. },
  19408. {
  19409. name: "Macro",
  19410. height: math.unit(82.5, "feet"),
  19411. default: true
  19412. },
  19413. ]
  19414. ))
  19415. characterMakers.push(() => makeCharacter(
  19416. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19417. {
  19418. front: {
  19419. height: math.unit(5 + 10 / 12, "feet"),
  19420. weight: math.unit(125, "lb"),
  19421. name: "Front",
  19422. image: {
  19423. source: "./media/characters/dharsi/front.svg",
  19424. extra: 716 / 630,
  19425. bottom: 0.035
  19426. }
  19427. },
  19428. },
  19429. [
  19430. {
  19431. name: "Nano",
  19432. height: math.unit(100, "nm")
  19433. },
  19434. {
  19435. name: "Micro",
  19436. height: math.unit(2, "inches")
  19437. },
  19438. {
  19439. name: "Normal",
  19440. height: math.unit(5 + 10 / 12, "feet"),
  19441. default: true
  19442. },
  19443. {
  19444. name: "Macro",
  19445. height: math.unit(1000, "feet")
  19446. },
  19447. {
  19448. name: "Megamacro",
  19449. height: math.unit(10, "miles")
  19450. },
  19451. {
  19452. name: "Gigamacro",
  19453. height: math.unit(3000, "miles")
  19454. },
  19455. {
  19456. name: "Teramacro",
  19457. height: math.unit(500000, "miles")
  19458. },
  19459. {
  19460. name: "Teramacro+",
  19461. height: math.unit(30, "galaxies")
  19462. },
  19463. ]
  19464. ))
  19465. characterMakers.push(() => makeCharacter(
  19466. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19467. {
  19468. front: {
  19469. height: math.unit(6, "feet"),
  19470. weight: math.unit(150, "lb"),
  19471. name: "Front",
  19472. image: {
  19473. source: "./media/characters/deathy/front.svg",
  19474. extra: 1552 / 1463,
  19475. bottom: 0.025
  19476. }
  19477. },
  19478. side: {
  19479. height: math.unit(6, "feet"),
  19480. weight: math.unit(150, "lb"),
  19481. name: "Side",
  19482. image: {
  19483. source: "./media/characters/deathy/side.svg",
  19484. extra: 1604 / 1455,
  19485. bottom: 0.025
  19486. }
  19487. },
  19488. back: {
  19489. height: math.unit(6, "feet"),
  19490. weight: math.unit(150, "lb"),
  19491. name: "Back",
  19492. image: {
  19493. source: "./media/characters/deathy/back.svg",
  19494. extra: 1580 / 1463,
  19495. bottom: 0.005
  19496. }
  19497. },
  19498. },
  19499. [
  19500. {
  19501. name: "Micro",
  19502. height: math.unit(5, "millimeters")
  19503. },
  19504. {
  19505. name: "Normal",
  19506. height: math.unit(6 + 5 / 12, "feet"),
  19507. default: true
  19508. },
  19509. ]
  19510. ))
  19511. characterMakers.push(() => makeCharacter(
  19512. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19513. {
  19514. front: {
  19515. height: math.unit(16, "feet"),
  19516. weight: math.unit(4000, "lb"),
  19517. name: "Front",
  19518. image: {
  19519. source: "./media/characters/juniper/front.svg",
  19520. bottom: 0.04
  19521. }
  19522. },
  19523. },
  19524. [
  19525. {
  19526. name: "Normal",
  19527. height: math.unit(16, "feet"),
  19528. default: true
  19529. },
  19530. ]
  19531. ))
  19532. characterMakers.push(() => makeCharacter(
  19533. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19534. {
  19535. front: {
  19536. height: math.unit(6, "feet"),
  19537. weight: math.unit(150, "lb"),
  19538. name: "Front",
  19539. image: {
  19540. source: "./media/characters/hipster/front.svg",
  19541. extra: 1312 / 1209,
  19542. bottom: 0.025
  19543. }
  19544. },
  19545. back: {
  19546. height: math.unit(6, "feet"),
  19547. weight: math.unit(150, "lb"),
  19548. name: "Back",
  19549. image: {
  19550. source: "./media/characters/hipster/back.svg",
  19551. extra: 1281 / 1196,
  19552. bottom: 0.01
  19553. }
  19554. },
  19555. },
  19556. [
  19557. {
  19558. name: "Micro",
  19559. height: math.unit(1, "mm")
  19560. },
  19561. {
  19562. name: "Normal",
  19563. height: math.unit(4, "inches"),
  19564. default: true
  19565. },
  19566. {
  19567. name: "Macro",
  19568. height: math.unit(500, "feet")
  19569. },
  19570. {
  19571. name: "Megamacro",
  19572. height: math.unit(1000, "miles")
  19573. },
  19574. ]
  19575. ))
  19576. characterMakers.push(() => makeCharacter(
  19577. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19578. {
  19579. front: {
  19580. height: math.unit(6, "feet"),
  19581. weight: math.unit(150, "lb"),
  19582. name: "Front",
  19583. image: {
  19584. source: "./media/characters/tendirmuldr/front.svg",
  19585. extra: 1878 / 1772,
  19586. bottom: 0.015
  19587. }
  19588. },
  19589. },
  19590. [
  19591. {
  19592. name: "Megamacro",
  19593. height: math.unit(1500, "miles"),
  19594. default: true
  19595. },
  19596. ]
  19597. ))
  19598. characterMakers.push(() => makeCharacter(
  19599. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19600. {
  19601. front: {
  19602. height: math.unit(14, "feet"),
  19603. weight: math.unit(12000, "lb"),
  19604. name: "Front",
  19605. image: {
  19606. source: "./media/characters/mort/front.svg",
  19607. extra: 365 / 318,
  19608. bottom: 0.01
  19609. }
  19610. },
  19611. side: {
  19612. height: math.unit(14, "feet"),
  19613. weight: math.unit(12000, "lb"),
  19614. name: "Side",
  19615. image: {
  19616. source: "./media/characters/mort/side.svg",
  19617. extra: 365 / 318,
  19618. bottom: 0.052
  19619. },
  19620. default: true
  19621. },
  19622. back: {
  19623. height: math.unit(14, "feet"),
  19624. weight: math.unit(12000, "lb"),
  19625. name: "Back",
  19626. image: {
  19627. source: "./media/characters/mort/back.svg",
  19628. extra: 371 / 332,
  19629. bottom: 0.18
  19630. }
  19631. },
  19632. },
  19633. [
  19634. {
  19635. name: "Normal",
  19636. height: math.unit(14, "feet"),
  19637. default: true
  19638. },
  19639. ]
  19640. ))
  19641. characterMakers.push(() => makeCharacter(
  19642. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19643. {
  19644. front: {
  19645. height: math.unit(8, "feet"),
  19646. weight: math.unit(1, "ton"),
  19647. name: "Front",
  19648. image: {
  19649. source: "./media/characters/lycoa/front.svg",
  19650. extra: 1875 / 1789,
  19651. bottom: 0.022
  19652. }
  19653. },
  19654. back: {
  19655. height: math.unit(8, "feet"),
  19656. weight: math.unit(1, "ton"),
  19657. name: "Back",
  19658. image: {
  19659. source: "./media/characters/lycoa/back.svg",
  19660. extra: 1835 / 1781,
  19661. bottom: 0.03
  19662. }
  19663. },
  19664. head: {
  19665. height: math.unit(2.1, "feet"),
  19666. name: "Head",
  19667. image: {
  19668. source: "./media/characters/lycoa/head.svg"
  19669. }
  19670. },
  19671. tailmaw: {
  19672. height: math.unit(1.9, "feet"),
  19673. name: "Tailmaw",
  19674. image: {
  19675. source: "./media/characters/lycoa/tailmaw.svg"
  19676. }
  19677. },
  19678. tentacles: {
  19679. height: math.unit(2.1, "feet"),
  19680. name: "Tentacles",
  19681. image: {
  19682. source: "./media/characters/lycoa/tentacles.svg"
  19683. }
  19684. },
  19685. dick: {
  19686. height: math.unit(1.73, "feet"),
  19687. name: "Dick",
  19688. image: {
  19689. source: "./media/characters/lycoa/dick.svg"
  19690. }
  19691. },
  19692. },
  19693. [
  19694. {
  19695. name: "Normal",
  19696. height: math.unit(8, "feet"),
  19697. default: true
  19698. },
  19699. {
  19700. name: "Macro",
  19701. height: math.unit(30, "feet")
  19702. },
  19703. ]
  19704. ))
  19705. characterMakers.push(() => makeCharacter(
  19706. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19707. {
  19708. front: {
  19709. height: math.unit(4 + 2 / 12, "feet"),
  19710. weight: math.unit(70, "lb"),
  19711. name: "Front",
  19712. image: {
  19713. source: "./media/characters/naldara/front.svg",
  19714. extra: 841 / 720,
  19715. bottom: 0.04
  19716. }
  19717. },
  19718. naga: {
  19719. height: math.unit(23, "feet"),
  19720. weight: math.unit(15000, "kg"),
  19721. name: "Naga",
  19722. image: {
  19723. source: "./media/characters/naldara/naga.svg",
  19724. extra: 3290 / 2959,
  19725. bottom: 124 / 3432
  19726. }
  19727. },
  19728. },
  19729. [
  19730. {
  19731. name: "Normal",
  19732. height: math.unit(4 + 2 / 12, "feet"),
  19733. default: true
  19734. },
  19735. ]
  19736. ))
  19737. characterMakers.push(() => makeCharacter(
  19738. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19739. {
  19740. front: {
  19741. height: math.unit(13 + 7 / 12, "feet"),
  19742. weight: math.unit(1500, "lb"),
  19743. name: "Front",
  19744. image: {
  19745. source: "./media/characters/briar/front.svg",
  19746. extra: 626 / 596,
  19747. bottom: 0.08
  19748. }
  19749. },
  19750. },
  19751. [
  19752. {
  19753. name: "Normal",
  19754. height: math.unit(13 + 7 / 12, "feet"),
  19755. default: true
  19756. },
  19757. ]
  19758. ))
  19759. characterMakers.push(() => makeCharacter(
  19760. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19761. {
  19762. side: {
  19763. height: math.unit(10, "feet"),
  19764. weight: math.unit(500, "lb"),
  19765. name: "Side",
  19766. image: {
  19767. source: "./media/characters/vanguard/side.svg",
  19768. extra: 502 / 425,
  19769. bottom: 0.087
  19770. }
  19771. },
  19772. },
  19773. [
  19774. {
  19775. name: "Normal",
  19776. height: math.unit(10, "feet"),
  19777. default: true
  19778. },
  19779. ]
  19780. ))
  19781. characterMakers.push(() => makeCharacter(
  19782. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19783. {
  19784. front: {
  19785. height: math.unit(7.5, "feet"),
  19786. weight: math.unit(2, "lb"),
  19787. name: "Front",
  19788. image: {
  19789. source: "./media/characters/artemis/front.svg",
  19790. extra: 1192 / 1075,
  19791. bottom: 0.07
  19792. }
  19793. },
  19794. frontNsfw: {
  19795. height: math.unit(7.5, "feet"),
  19796. weight: math.unit(2, "lb"),
  19797. name: "Front (NSFW)",
  19798. image: {
  19799. source: "./media/characters/artemis/front-nsfw.svg",
  19800. extra: 1192 / 1075,
  19801. bottom: 0.07
  19802. }
  19803. },
  19804. frontNsfwer: {
  19805. height: math.unit(7.5, "feet"),
  19806. weight: math.unit(2, "lb"),
  19807. name: "Front (NSFW-er)",
  19808. image: {
  19809. source: "./media/characters/artemis/front-nsfwer.svg",
  19810. extra: 1192 / 1075,
  19811. bottom: 0.07
  19812. }
  19813. },
  19814. side: {
  19815. height: math.unit(7.5, "feet"),
  19816. weight: math.unit(2, "lb"),
  19817. name: "Side",
  19818. image: {
  19819. source: "./media/characters/artemis/side.svg",
  19820. extra: 1192 / 1075,
  19821. bottom: 0.07
  19822. }
  19823. },
  19824. sideNsfw: {
  19825. height: math.unit(7.5, "feet"),
  19826. weight: math.unit(2, "lb"),
  19827. name: "Side (NSFW)",
  19828. image: {
  19829. source: "./media/characters/artemis/side-nsfw.svg",
  19830. extra: 1192 / 1075,
  19831. bottom: 0.07
  19832. }
  19833. },
  19834. sideNsfwer: {
  19835. height: math.unit(7.5, "feet"),
  19836. weight: math.unit(2, "lb"),
  19837. name: "Side (NSFW-er)",
  19838. image: {
  19839. source: "./media/characters/artemis/side-nsfwer.svg",
  19840. extra: 1192 / 1075,
  19841. bottom: 0.07
  19842. }
  19843. },
  19844. maw: {
  19845. height: math.unit(1.1, "feet"),
  19846. name: "Maw",
  19847. image: {
  19848. source: "./media/characters/artemis/maw.svg"
  19849. }
  19850. },
  19851. stomach: {
  19852. height: math.unit(0.95, "feet"),
  19853. name: "Stomach",
  19854. image: {
  19855. source: "./media/characters/artemis/stomach.svg"
  19856. }
  19857. },
  19858. dickCanine: {
  19859. height: math.unit(1, "feet"),
  19860. name: "Dick (Canine)",
  19861. image: {
  19862. source: "./media/characters/artemis/dick-canine.svg"
  19863. }
  19864. },
  19865. dickEquine: {
  19866. height: math.unit(0.85, "feet"),
  19867. name: "Dick (Equine)",
  19868. image: {
  19869. source: "./media/characters/artemis/dick-equine.svg"
  19870. }
  19871. },
  19872. dickExotic: {
  19873. height: math.unit(0.85, "feet"),
  19874. name: "Dick (Exotic)",
  19875. image: {
  19876. source: "./media/characters/artemis/dick-exotic.svg"
  19877. }
  19878. },
  19879. },
  19880. [
  19881. {
  19882. name: "Normal",
  19883. height: math.unit(7.5, "feet"),
  19884. default: true
  19885. },
  19886. {
  19887. name: "Enlarged",
  19888. height: math.unit(12, "feet")
  19889. },
  19890. ]
  19891. ))
  19892. characterMakers.push(() => makeCharacter(
  19893. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19894. {
  19895. front: {
  19896. height: math.unit(5 + 3 / 12, "feet"),
  19897. weight: math.unit(160, "lb"),
  19898. name: "Front",
  19899. image: {
  19900. source: "./media/characters/kira/front.svg",
  19901. extra: 906 / 786,
  19902. bottom: 0.01
  19903. }
  19904. },
  19905. back: {
  19906. height: math.unit(5 + 3 / 12, "feet"),
  19907. weight: math.unit(160, "lb"),
  19908. name: "Back",
  19909. image: {
  19910. source: "./media/characters/kira/back.svg",
  19911. extra: 882 / 757,
  19912. bottom: 0.005
  19913. }
  19914. },
  19915. frontDressed: {
  19916. height: math.unit(5 + 3 / 12, "feet"),
  19917. weight: math.unit(160, "lb"),
  19918. name: "Front (Dressed)",
  19919. image: {
  19920. source: "./media/characters/kira/front-dressed.svg",
  19921. extra: 906 / 786,
  19922. bottom: 0.01
  19923. }
  19924. },
  19925. beans: {
  19926. height: math.unit(0.92, "feet"),
  19927. name: "Beans",
  19928. image: {
  19929. source: "./media/characters/kira/beans.svg"
  19930. }
  19931. },
  19932. },
  19933. [
  19934. {
  19935. name: "Normal",
  19936. height: math.unit(5 + 3 / 12, "feet"),
  19937. default: true
  19938. },
  19939. ]
  19940. ))
  19941. characterMakers.push(() => makeCharacter(
  19942. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19943. {
  19944. front: {
  19945. height: math.unit(5 + 4 / 12, "feet"),
  19946. weight: math.unit(145, "lb"),
  19947. name: "Front",
  19948. image: {
  19949. source: "./media/characters/scramble/front.svg",
  19950. extra: 763 / 727,
  19951. bottom: 0.05
  19952. }
  19953. },
  19954. back: {
  19955. height: math.unit(5 + 4 / 12, "feet"),
  19956. weight: math.unit(145, "lb"),
  19957. name: "Back",
  19958. image: {
  19959. source: "./media/characters/scramble/back.svg",
  19960. extra: 826 / 737,
  19961. bottom: 0.002
  19962. }
  19963. },
  19964. },
  19965. [
  19966. {
  19967. name: "Normal",
  19968. height: math.unit(5 + 4 / 12, "feet"),
  19969. default: true
  19970. },
  19971. ]
  19972. ))
  19973. characterMakers.push(() => makeCharacter(
  19974. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19975. {
  19976. side: {
  19977. height: math.unit(6 + 2 / 12, "feet"),
  19978. weight: math.unit(190, "lb"),
  19979. name: "Side",
  19980. image: {
  19981. source: "./media/characters/biscuit/side.svg",
  19982. extra: 858 / 791,
  19983. bottom: 0.044
  19984. }
  19985. },
  19986. },
  19987. [
  19988. {
  19989. name: "Normal",
  19990. height: math.unit(6 + 2 / 12, "feet"),
  19991. default: true
  19992. },
  19993. ]
  19994. ))
  19995. characterMakers.push(() => makeCharacter(
  19996. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19997. {
  19998. front: {
  19999. height: math.unit(5 + 2 / 12, "feet"),
  20000. weight: math.unit(120, "lb"),
  20001. name: "Front",
  20002. image: {
  20003. source: "./media/characters/poffin/front.svg",
  20004. extra: 786 / 680,
  20005. bottom: 0.005
  20006. }
  20007. },
  20008. },
  20009. [
  20010. {
  20011. name: "Normal",
  20012. height: math.unit(5 + 2 / 12, "feet"),
  20013. default: true
  20014. },
  20015. ]
  20016. ))
  20017. characterMakers.push(() => makeCharacter(
  20018. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20019. {
  20020. front: {
  20021. height: math.unit(6 + 3 / 12, "feet"),
  20022. weight: math.unit(519, "lb"),
  20023. name: "Front",
  20024. image: {
  20025. source: "./media/characters/dhari/front.svg",
  20026. extra: 1048 / 946,
  20027. bottom: 0.015
  20028. }
  20029. },
  20030. back: {
  20031. height: math.unit(6 + 3 / 12, "feet"),
  20032. weight: math.unit(519, "lb"),
  20033. name: "Back",
  20034. image: {
  20035. source: "./media/characters/dhari/back.svg",
  20036. extra: 1048 / 931,
  20037. bottom: 0.005
  20038. }
  20039. },
  20040. frontDressed: {
  20041. height: math.unit(6 + 3 / 12, "feet"),
  20042. weight: math.unit(519, "lb"),
  20043. name: "Front (Dressed)",
  20044. image: {
  20045. source: "./media/characters/dhari/front-dressed.svg",
  20046. extra: 1713 / 1546,
  20047. bottom: 0.02
  20048. }
  20049. },
  20050. backDressed: {
  20051. height: math.unit(6 + 3 / 12, "feet"),
  20052. weight: math.unit(519, "lb"),
  20053. name: "Back (Dressed)",
  20054. image: {
  20055. source: "./media/characters/dhari/back-dressed.svg",
  20056. extra: 1699 / 1537,
  20057. bottom: 0.01
  20058. }
  20059. },
  20060. maw: {
  20061. height: math.unit(0.95, "feet"),
  20062. name: "Maw",
  20063. image: {
  20064. source: "./media/characters/dhari/maw.svg"
  20065. }
  20066. },
  20067. wereFront: {
  20068. height: math.unit(12 + 8 / 12, "feet"),
  20069. weight: math.unit(4000, "lb"),
  20070. name: "Front (Were)",
  20071. image: {
  20072. source: "./media/characters/dhari/were-front.svg",
  20073. extra: 1065 / 969,
  20074. bottom: 0.015
  20075. }
  20076. },
  20077. wereBack: {
  20078. height: math.unit(12 + 8 / 12, "feet"),
  20079. weight: math.unit(4000, "lb"),
  20080. name: "Back (Were)",
  20081. image: {
  20082. source: "./media/characters/dhari/were-back.svg",
  20083. extra: 1065 / 969,
  20084. bottom: 0.012
  20085. }
  20086. },
  20087. wereMaw: {
  20088. height: math.unit(0.625, "meters"),
  20089. name: "Maw (Were)",
  20090. image: {
  20091. source: "./media/characters/dhari/were-maw.svg"
  20092. }
  20093. },
  20094. },
  20095. [
  20096. {
  20097. name: "Normal",
  20098. height: math.unit(6 + 3 / 12, "feet"),
  20099. default: true
  20100. },
  20101. ]
  20102. ))
  20103. characterMakers.push(() => makeCharacter(
  20104. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20105. {
  20106. anthro: {
  20107. height: math.unit(5 + 7 / 12, "feet"),
  20108. weight: math.unit(175, "lb"),
  20109. name: "Anthro",
  20110. image: {
  20111. source: "./media/characters/rena-dyne/anthro.svg",
  20112. extra: 1849 / 1785,
  20113. bottom: 0.005
  20114. }
  20115. },
  20116. taur: {
  20117. height: math.unit(15 + 6 / 12, "feet"),
  20118. weight: math.unit(8000, "lb"),
  20119. name: "Taur",
  20120. image: {
  20121. source: "./media/characters/rena-dyne/taur.svg",
  20122. extra: 2315 / 2234,
  20123. bottom: 0.033
  20124. }
  20125. },
  20126. },
  20127. [
  20128. {
  20129. name: "Normal",
  20130. height: math.unit(5 + 7 / 12, "feet"),
  20131. default: true
  20132. },
  20133. ]
  20134. ))
  20135. characterMakers.push(() => makeCharacter(
  20136. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20137. {
  20138. front: {
  20139. height: math.unit(8, "feet"),
  20140. weight: math.unit(600, "lb"),
  20141. name: "Front",
  20142. image: {
  20143. source: "./media/characters/weremeep/front.svg",
  20144. extra: 967 / 862,
  20145. bottom: 0.01
  20146. }
  20147. },
  20148. },
  20149. [
  20150. {
  20151. name: "Normal",
  20152. height: math.unit(8, "feet"),
  20153. default: true
  20154. },
  20155. {
  20156. name: "Lorg",
  20157. height: math.unit(12, "feet")
  20158. },
  20159. {
  20160. name: "Oh Lawd She Comin'",
  20161. height: math.unit(20, "feet")
  20162. },
  20163. ]
  20164. ))
  20165. characterMakers.push(() => makeCharacter(
  20166. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20167. {
  20168. front: {
  20169. height: math.unit(4, "feet"),
  20170. weight: math.unit(90, "lb"),
  20171. name: "Front",
  20172. image: {
  20173. source: "./media/characters/reza/front.svg",
  20174. extra: 1183 / 1111,
  20175. bottom: 0.017
  20176. }
  20177. },
  20178. back: {
  20179. height: math.unit(4, "feet"),
  20180. weight: math.unit(90, "lb"),
  20181. name: "Back",
  20182. image: {
  20183. source: "./media/characters/reza/back.svg",
  20184. extra: 1183 / 1111,
  20185. bottom: 0.01
  20186. }
  20187. },
  20188. drake: {
  20189. height: math.unit(30, "feet"),
  20190. weight: math.unit(246960, "lb"),
  20191. name: "Drake",
  20192. image: {
  20193. source: "./media/characters/reza/drake.svg",
  20194. extra: 2350 / 2024,
  20195. bottom: 60.7 / 2403
  20196. }
  20197. },
  20198. },
  20199. [
  20200. {
  20201. name: "Normal",
  20202. height: math.unit(4, "feet"),
  20203. default: true
  20204. },
  20205. ]
  20206. ))
  20207. characterMakers.push(() => makeCharacter(
  20208. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20209. {
  20210. side: {
  20211. height: math.unit(15, "feet"),
  20212. weight: math.unit(14, "tons"),
  20213. name: "Side",
  20214. image: {
  20215. source: "./media/characters/athea/side.svg",
  20216. extra: 960 / 540,
  20217. bottom: 0.003
  20218. }
  20219. },
  20220. sitting: {
  20221. height: math.unit(6 * 2.85, "feet"),
  20222. weight: math.unit(14, "tons"),
  20223. name: "Sitting",
  20224. image: {
  20225. source: "./media/characters/athea/sitting.svg",
  20226. extra: 621 / 581,
  20227. bottom: 0.075
  20228. }
  20229. },
  20230. maw: {
  20231. height: math.unit(7.59498031496063, "feet"),
  20232. name: "Maw",
  20233. image: {
  20234. source: "./media/characters/athea/maw.svg"
  20235. }
  20236. },
  20237. },
  20238. [
  20239. {
  20240. name: "Lap Cat",
  20241. height: math.unit(2.5, "feet")
  20242. },
  20243. {
  20244. name: "Minimacro",
  20245. height: math.unit(15, "feet"),
  20246. default: true
  20247. },
  20248. {
  20249. name: "Macro",
  20250. height: math.unit(120, "feet")
  20251. },
  20252. {
  20253. name: "Macro+",
  20254. height: math.unit(640, "feet")
  20255. },
  20256. {
  20257. name: "Colossus",
  20258. height: math.unit(2.2, "miles")
  20259. },
  20260. ]
  20261. ))
  20262. characterMakers.push(() => makeCharacter(
  20263. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20264. {
  20265. front: {
  20266. height: math.unit(8 + 8 / 12, "feet"),
  20267. weight: math.unit(130, "kg"),
  20268. name: "Front",
  20269. image: {
  20270. source: "./media/characters/seroko/front.svg",
  20271. extra: 1385 / 1280,
  20272. bottom: 0.025
  20273. }
  20274. },
  20275. back: {
  20276. height: math.unit(8 + 8 / 12, "feet"),
  20277. weight: math.unit(130, "kg"),
  20278. name: "Back",
  20279. image: {
  20280. source: "./media/characters/seroko/back.svg",
  20281. extra: 1369 / 1238,
  20282. bottom: 0.018
  20283. }
  20284. },
  20285. frontDressed: {
  20286. height: math.unit(8 + 8 / 12, "feet"),
  20287. weight: math.unit(130, "kg"),
  20288. name: "Front (Dressed)",
  20289. image: {
  20290. source: "./media/characters/seroko/front-dressed.svg",
  20291. extra: 1366 / 1275,
  20292. bottom: 0.03
  20293. }
  20294. },
  20295. },
  20296. [
  20297. {
  20298. name: "Normal",
  20299. height: math.unit(8 + 8 / 12, "feet"),
  20300. default: true
  20301. },
  20302. ]
  20303. ))
  20304. characterMakers.push(() => makeCharacter(
  20305. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20306. {
  20307. front: {
  20308. height: math.unit(5.5, "feet"),
  20309. weight: math.unit(160, "lb"),
  20310. name: "Front",
  20311. image: {
  20312. source: "./media/characters/quatzi/front.svg",
  20313. extra: 2346 / 2242,
  20314. bottom: 0.015
  20315. }
  20316. },
  20317. },
  20318. [
  20319. {
  20320. name: "Normal",
  20321. height: math.unit(5.5, "feet"),
  20322. default: true
  20323. },
  20324. {
  20325. name: "Big",
  20326. height: math.unit(7.7, "feet")
  20327. },
  20328. ]
  20329. ))
  20330. characterMakers.push(() => makeCharacter(
  20331. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20332. {
  20333. front: {
  20334. height: math.unit(5 + 11 / 12, "feet"),
  20335. weight: math.unit(180, "lb"),
  20336. name: "Front",
  20337. image: {
  20338. source: "./media/characters/sen/front.svg",
  20339. extra: 1321 / 1254,
  20340. bottom: 0.015
  20341. }
  20342. },
  20343. side: {
  20344. height: math.unit(5 + 11 / 12, "feet"),
  20345. weight: math.unit(180, "lb"),
  20346. name: "Side",
  20347. image: {
  20348. source: "./media/characters/sen/side.svg",
  20349. extra: 1321 / 1254,
  20350. bottom: 0.007
  20351. }
  20352. },
  20353. back: {
  20354. height: math.unit(5 + 11 / 12, "feet"),
  20355. weight: math.unit(180, "lb"),
  20356. name: "Back",
  20357. image: {
  20358. source: "./media/characters/sen/back.svg",
  20359. extra: 1321 / 1254
  20360. }
  20361. },
  20362. },
  20363. [
  20364. {
  20365. name: "Normal",
  20366. height: math.unit(5 + 11 / 12, "feet"),
  20367. default: true
  20368. },
  20369. ]
  20370. ))
  20371. characterMakers.push(() => makeCharacter(
  20372. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20373. {
  20374. front: {
  20375. height: math.unit(166.6, "cm"),
  20376. weight: math.unit(66.6, "kg"),
  20377. name: "Front",
  20378. image: {
  20379. source: "./media/characters/fruity/front.svg",
  20380. extra: 1510 / 1386,
  20381. bottom: 0.04
  20382. }
  20383. },
  20384. back: {
  20385. height: math.unit(166.6, "cm"),
  20386. weight: math.unit(66.6, "lb"),
  20387. name: "Back",
  20388. image: {
  20389. source: "./media/characters/fruity/back.svg",
  20390. extra: 1563 / 1435,
  20391. bottom: 0.005
  20392. }
  20393. },
  20394. },
  20395. [
  20396. {
  20397. name: "Normal",
  20398. height: math.unit(166.6, "cm"),
  20399. default: true
  20400. },
  20401. {
  20402. name: "Demonic",
  20403. height: math.unit(166.6, "feet")
  20404. },
  20405. ]
  20406. ))
  20407. characterMakers.push(() => makeCharacter(
  20408. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20409. {
  20410. side: {
  20411. height: math.unit(10, "feet"),
  20412. weight: math.unit(500, "lb"),
  20413. name: "Side",
  20414. image: {
  20415. source: "./media/characters/zost/side.svg",
  20416. extra: 966 / 880,
  20417. bottom: 0.075
  20418. }
  20419. },
  20420. mawFront: {
  20421. height: math.unit(1.08, "meters"),
  20422. name: "Maw (Front)",
  20423. image: {
  20424. source: "./media/characters/zost/maw-front.svg"
  20425. }
  20426. },
  20427. mawSide: {
  20428. height: math.unit(2.66, "feet"),
  20429. name: "Maw (Side)",
  20430. image: {
  20431. source: "./media/characters/zost/maw-side.svg"
  20432. }
  20433. },
  20434. },
  20435. [
  20436. {
  20437. name: "Normal",
  20438. height: math.unit(10, "feet"),
  20439. default: true
  20440. },
  20441. ]
  20442. ))
  20443. characterMakers.push(() => makeCharacter(
  20444. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20445. {
  20446. front: {
  20447. height: math.unit(5 + 4 / 12, "feet"),
  20448. weight: math.unit(120, "lb"),
  20449. name: "Front",
  20450. image: {
  20451. source: "./media/characters/luci/front.svg",
  20452. extra: 1985 / 1884,
  20453. bottom: 0.04
  20454. }
  20455. },
  20456. back: {
  20457. height: math.unit(5 + 4 / 12, "feet"),
  20458. weight: math.unit(120, "lb"),
  20459. name: "Back",
  20460. image: {
  20461. source: "./media/characters/luci/back.svg",
  20462. extra: 1892 / 1791,
  20463. bottom: 0.002
  20464. }
  20465. },
  20466. },
  20467. [
  20468. {
  20469. name: "Normal",
  20470. height: math.unit(5 + 4 / 12, "feet"),
  20471. default: true
  20472. },
  20473. ]
  20474. ))
  20475. characterMakers.push(() => makeCharacter(
  20476. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20477. {
  20478. front: {
  20479. height: math.unit(1500, "feet"),
  20480. weight: math.unit(3.8e6, "tons"),
  20481. name: "Front",
  20482. image: {
  20483. source: "./media/characters/2th/front.svg",
  20484. extra: 3489 / 3350,
  20485. bottom: 0.1
  20486. }
  20487. },
  20488. foot: {
  20489. height: math.unit(461, "feet"),
  20490. name: "Foot",
  20491. image: {
  20492. source: "./media/characters/2th/foot.svg"
  20493. }
  20494. },
  20495. },
  20496. [
  20497. {
  20498. name: "\"Micro\"",
  20499. height: math.unit(15 + 7 / 12, "feet")
  20500. },
  20501. {
  20502. name: "Normal",
  20503. height: math.unit(1500, "feet"),
  20504. default: true
  20505. },
  20506. {
  20507. name: "Macro",
  20508. height: math.unit(5000, "feet")
  20509. },
  20510. {
  20511. name: "Megamacro",
  20512. height: math.unit(15, "miles")
  20513. },
  20514. {
  20515. name: "Gigamacro",
  20516. height: math.unit(4000, "miles")
  20517. },
  20518. {
  20519. name: "Galactic",
  20520. height: math.unit(50, "AU")
  20521. },
  20522. ]
  20523. ))
  20524. characterMakers.push(() => makeCharacter(
  20525. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20526. {
  20527. front: {
  20528. height: math.unit(5 + 6 / 12, "feet"),
  20529. weight: math.unit(220, "lb"),
  20530. name: "Front",
  20531. image: {
  20532. source: "./media/characters/amethyst/front.svg",
  20533. extra: 2078 / 2040,
  20534. bottom: 0.045
  20535. }
  20536. },
  20537. back: {
  20538. height: math.unit(5 + 6 / 12, "feet"),
  20539. weight: math.unit(220, "lb"),
  20540. name: "Back",
  20541. image: {
  20542. source: "./media/characters/amethyst/back.svg",
  20543. extra: 2021 / 1989,
  20544. bottom: 0.02
  20545. }
  20546. },
  20547. },
  20548. [
  20549. {
  20550. name: "Normal",
  20551. height: math.unit(5 + 6 / 12, "feet"),
  20552. default: true
  20553. },
  20554. ]
  20555. ))
  20556. characterMakers.push(() => makeCharacter(
  20557. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20558. {
  20559. front: {
  20560. height: math.unit(4 + 11 / 12, "feet"),
  20561. weight: math.unit(120, "lb"),
  20562. name: "Front",
  20563. image: {
  20564. source: "./media/characters/yumi-akiyama/front.svg",
  20565. extra: 1327 / 1235,
  20566. bottom: 0.02
  20567. }
  20568. },
  20569. back: {
  20570. height: math.unit(4 + 11 / 12, "feet"),
  20571. weight: math.unit(120, "lb"),
  20572. name: "Back",
  20573. image: {
  20574. source: "./media/characters/yumi-akiyama/back.svg",
  20575. extra: 1287 / 1245,
  20576. bottom: 0.002
  20577. }
  20578. },
  20579. },
  20580. [
  20581. {
  20582. name: "Galactic",
  20583. height: math.unit(50, "galaxies"),
  20584. default: true
  20585. },
  20586. {
  20587. name: "Universal",
  20588. height: math.unit(100, "universes")
  20589. },
  20590. ]
  20591. ))
  20592. characterMakers.push(() => makeCharacter(
  20593. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20594. {
  20595. front: {
  20596. height: math.unit(8, "feet"),
  20597. weight: math.unit(500, "lb"),
  20598. name: "Front",
  20599. image: {
  20600. source: "./media/characters/rifter-yrmori/front.svg",
  20601. extra: 1180 / 1125,
  20602. bottom: 0.02
  20603. }
  20604. },
  20605. back: {
  20606. height: math.unit(8, "feet"),
  20607. weight: math.unit(500, "lb"),
  20608. name: "Back",
  20609. image: {
  20610. source: "./media/characters/rifter-yrmori/back.svg",
  20611. extra: 1190 / 1145,
  20612. bottom: 0.001
  20613. }
  20614. },
  20615. wings: {
  20616. height: math.unit(7.75, "feet"),
  20617. weight: math.unit(500, "lb"),
  20618. name: "Wings",
  20619. image: {
  20620. source: "./media/characters/rifter-yrmori/wings.svg",
  20621. extra: 1357 / 1285
  20622. }
  20623. },
  20624. maw: {
  20625. height: math.unit(0.8, "feet"),
  20626. name: "Maw",
  20627. image: {
  20628. source: "./media/characters/rifter-yrmori/maw.svg"
  20629. }
  20630. },
  20631. mawfront: {
  20632. height: math.unit(1.45, "feet"),
  20633. name: "Maw (Front)",
  20634. image: {
  20635. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20636. }
  20637. },
  20638. },
  20639. [
  20640. {
  20641. name: "Normal",
  20642. height: math.unit(8, "feet"),
  20643. default: true
  20644. },
  20645. {
  20646. name: "Macro",
  20647. height: math.unit(42, "meters")
  20648. },
  20649. ]
  20650. ))
  20651. characterMakers.push(() => makeCharacter(
  20652. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20653. {
  20654. were: {
  20655. height: math.unit(25 + 6 / 12, "feet"),
  20656. weight: math.unit(10000, "lb"),
  20657. name: "Were",
  20658. image: {
  20659. source: "./media/characters/tahajin/were.svg",
  20660. extra: 801 / 770,
  20661. bottom: 0.042
  20662. }
  20663. },
  20664. aquatic: {
  20665. height: math.unit(6 + 4 / 12, "feet"),
  20666. weight: math.unit(160, "lb"),
  20667. name: "Aquatic",
  20668. image: {
  20669. source: "./media/characters/tahajin/aquatic.svg",
  20670. extra: 572 / 542,
  20671. bottom: 0.04
  20672. }
  20673. },
  20674. chow: {
  20675. height: math.unit(8 + 11 / 12, "feet"),
  20676. weight: math.unit(450, "lb"),
  20677. name: "Chow",
  20678. image: {
  20679. source: "./media/characters/tahajin/chow.svg",
  20680. extra: 660 / 640,
  20681. bottom: 0.015
  20682. }
  20683. },
  20684. demiNaga: {
  20685. height: math.unit(6 + 8 / 12, "feet"),
  20686. weight: math.unit(300, "lb"),
  20687. name: "Demi Naga",
  20688. image: {
  20689. source: "./media/characters/tahajin/demi-naga.svg",
  20690. extra: 643 / 615,
  20691. bottom: 0.1
  20692. }
  20693. },
  20694. data: {
  20695. height: math.unit(5, "inches"),
  20696. weight: math.unit(0.1, "lb"),
  20697. name: "Data",
  20698. image: {
  20699. source: "./media/characters/tahajin/data.svg"
  20700. }
  20701. },
  20702. fluu: {
  20703. height: math.unit(5 + 7 / 12, "feet"),
  20704. weight: math.unit(140, "lb"),
  20705. name: "Fluu",
  20706. image: {
  20707. source: "./media/characters/tahajin/fluu.svg",
  20708. extra: 628 / 592,
  20709. bottom: 0.02
  20710. }
  20711. },
  20712. starWarrior: {
  20713. height: math.unit(4 + 5 / 12, "feet"),
  20714. weight: math.unit(50, "lb"),
  20715. name: "Star Warrior",
  20716. image: {
  20717. source: "./media/characters/tahajin/star-warrior.svg"
  20718. }
  20719. },
  20720. },
  20721. [
  20722. {
  20723. name: "Normal",
  20724. height: math.unit(25 + 6 / 12, "feet"),
  20725. default: true
  20726. },
  20727. ]
  20728. ))
  20729. characterMakers.push(() => makeCharacter(
  20730. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20731. {
  20732. front: {
  20733. height: math.unit(8, "feet"),
  20734. weight: math.unit(350, "lb"),
  20735. name: "Front",
  20736. image: {
  20737. source: "./media/characters/gabira/front.svg",
  20738. extra: 608 / 580,
  20739. bottom: 0.03
  20740. }
  20741. },
  20742. back: {
  20743. height: math.unit(8, "feet"),
  20744. weight: math.unit(350, "lb"),
  20745. name: "Back",
  20746. image: {
  20747. source: "./media/characters/gabira/back.svg",
  20748. extra: 608 / 580,
  20749. bottom: 0.03
  20750. }
  20751. },
  20752. },
  20753. [
  20754. {
  20755. name: "Normal",
  20756. height: math.unit(8, "feet"),
  20757. default: true
  20758. },
  20759. ]
  20760. ))
  20761. characterMakers.push(() => makeCharacter(
  20762. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20763. {
  20764. front: {
  20765. height: math.unit(5 + 3 / 12, "feet"),
  20766. weight: math.unit(137, "lb"),
  20767. name: "Front",
  20768. image: {
  20769. source: "./media/characters/sasha-katraine/front.svg",
  20770. bottom: 0.045
  20771. }
  20772. },
  20773. },
  20774. [
  20775. {
  20776. name: "Micro",
  20777. height: math.unit(5, "inches")
  20778. },
  20779. {
  20780. name: "Normal",
  20781. height: math.unit(5 + 3 / 12, "feet"),
  20782. default: true
  20783. },
  20784. ]
  20785. ))
  20786. characterMakers.push(() => makeCharacter(
  20787. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20788. {
  20789. side: {
  20790. height: math.unit(4, "inches"),
  20791. weight: math.unit(200, "grams"),
  20792. name: "Side",
  20793. image: {
  20794. source: "./media/characters/der/side.svg",
  20795. extra: 719 / 400,
  20796. bottom: 30.6 / 749.9187
  20797. }
  20798. },
  20799. },
  20800. [
  20801. {
  20802. name: "Micro",
  20803. height: math.unit(4, "inches"),
  20804. default: true
  20805. },
  20806. ]
  20807. ))
  20808. characterMakers.push(() => makeCharacter(
  20809. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20810. {
  20811. side: {
  20812. height: math.unit(30, "meters"),
  20813. weight: math.unit(700, "tonnes"),
  20814. name: "Side",
  20815. image: {
  20816. source: "./media/characters/fixerdragon/side.svg",
  20817. extra: (1293.0514 - 116.03) / 1106.86,
  20818. bottom: 116.03 / 1293.0514
  20819. }
  20820. },
  20821. },
  20822. [
  20823. {
  20824. name: "Planck",
  20825. height: math.unit(1.6e-35, "meters")
  20826. },
  20827. {
  20828. name: "Micro",
  20829. height: math.unit(0.4, "meters")
  20830. },
  20831. {
  20832. name: "Normal",
  20833. height: math.unit(30, "meters"),
  20834. default: true
  20835. },
  20836. {
  20837. name: "Megamacro",
  20838. height: math.unit(1.2, "megameters")
  20839. },
  20840. {
  20841. name: "Teramacro",
  20842. height: math.unit(130, "terameters")
  20843. },
  20844. {
  20845. name: "Yottamacro",
  20846. height: math.unit(6200, "yottameters")
  20847. },
  20848. ]
  20849. ));
  20850. characterMakers.push(() => makeCharacter(
  20851. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20852. {
  20853. front: {
  20854. height: math.unit(8, "feet"),
  20855. weight: math.unit(250, "lb"),
  20856. name: "Front",
  20857. image: {
  20858. source: "./media/characters/kite/front.svg",
  20859. extra: 2796 / 2659,
  20860. bottom: 0.002
  20861. }
  20862. },
  20863. },
  20864. [
  20865. {
  20866. name: "Normal",
  20867. height: math.unit(8, "feet"),
  20868. default: true
  20869. },
  20870. {
  20871. name: "Macro",
  20872. height: math.unit(360, "feet")
  20873. },
  20874. {
  20875. name: "Megamacro",
  20876. height: math.unit(1500, "feet")
  20877. },
  20878. ]
  20879. ))
  20880. characterMakers.push(() => makeCharacter(
  20881. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20882. {
  20883. front: {
  20884. height: math.unit(5 + 10 / 12, "feet"),
  20885. weight: math.unit(150, "lb"),
  20886. name: "Front",
  20887. image: {
  20888. source: "./media/characters/poojawa-vynar/front.svg",
  20889. extra: (1506.1547 - 55) / 1356.6,
  20890. bottom: 55 / 1506.1547
  20891. }
  20892. },
  20893. frontTailless: {
  20894. height: math.unit(5 + 10 / 12, "feet"),
  20895. weight: math.unit(150, "lb"),
  20896. name: "Front (Tailless)",
  20897. image: {
  20898. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20899. extra: (1506.1547 - 55) / 1356.6,
  20900. bottom: 55 / 1506.1547
  20901. }
  20902. },
  20903. },
  20904. [
  20905. {
  20906. name: "Normal",
  20907. height: math.unit(5 + 10 / 12, "feet"),
  20908. default: true
  20909. },
  20910. ]
  20911. ))
  20912. characterMakers.push(() => makeCharacter(
  20913. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20914. {
  20915. front: {
  20916. height: math.unit(293, "meters"),
  20917. weight: math.unit(70400, "tons"),
  20918. name: "Front",
  20919. image: {
  20920. source: "./media/characters/violette/front.svg",
  20921. extra: 1227 / 1180,
  20922. bottom: 0.005
  20923. }
  20924. },
  20925. back: {
  20926. height: math.unit(293, "meters"),
  20927. weight: math.unit(70400, "tons"),
  20928. name: "Back",
  20929. image: {
  20930. source: "./media/characters/violette/back.svg",
  20931. extra: 1227 / 1180,
  20932. bottom: 0.005
  20933. }
  20934. },
  20935. },
  20936. [
  20937. {
  20938. name: "Macro",
  20939. height: math.unit(293, "meters"),
  20940. default: true
  20941. },
  20942. ]
  20943. ))
  20944. characterMakers.push(() => makeCharacter(
  20945. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20946. {
  20947. front: {
  20948. height: math.unit(1050, "feet"),
  20949. weight: math.unit(200000, "tons"),
  20950. name: "Front",
  20951. image: {
  20952. source: "./media/characters/alessandra/front.svg",
  20953. extra: 960 / 912,
  20954. bottom: 0.06
  20955. }
  20956. },
  20957. },
  20958. [
  20959. {
  20960. name: "Macro",
  20961. height: math.unit(1050, "feet")
  20962. },
  20963. {
  20964. name: "Macro+",
  20965. height: math.unit(900, "meters"),
  20966. default: true
  20967. },
  20968. ]
  20969. ))
  20970. characterMakers.push(() => makeCharacter(
  20971. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20972. {
  20973. front: {
  20974. height: math.unit(5, "feet"),
  20975. weight: math.unit(187, "lb"),
  20976. name: "Front",
  20977. image: {
  20978. source: "./media/characters/person/front.svg",
  20979. extra: 3087 / 2945,
  20980. bottom: 91 / 3181
  20981. }
  20982. },
  20983. },
  20984. [
  20985. {
  20986. name: "Micro",
  20987. height: math.unit(3, "inches")
  20988. },
  20989. {
  20990. name: "Normal",
  20991. height: math.unit(5, "feet"),
  20992. default: true
  20993. },
  20994. {
  20995. name: "Macro",
  20996. height: math.unit(90, "feet")
  20997. },
  20998. {
  20999. name: "Max Size",
  21000. height: math.unit(280, "feet")
  21001. },
  21002. ]
  21003. ))
  21004. characterMakers.push(() => makeCharacter(
  21005. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21006. {
  21007. front: {
  21008. height: math.unit(4.5, "meters"),
  21009. weight: math.unit(3200, "lb"),
  21010. name: "Front",
  21011. image: {
  21012. source: "./media/characters/ty/front.svg",
  21013. extra: 1038 / 960,
  21014. bottom: 31.156 / 1068
  21015. }
  21016. },
  21017. back: {
  21018. height: math.unit(4.5, "meters"),
  21019. weight: math.unit(3200, "lb"),
  21020. name: "Back",
  21021. image: {
  21022. source: "./media/characters/ty/back.svg",
  21023. extra: 1044 / 966,
  21024. bottom: 7.48 / 1049
  21025. }
  21026. },
  21027. },
  21028. [
  21029. {
  21030. name: "Normal",
  21031. height: math.unit(4.5, "meters"),
  21032. default: true
  21033. },
  21034. ]
  21035. ))
  21036. characterMakers.push(() => makeCharacter(
  21037. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21038. {
  21039. front: {
  21040. height: math.unit(5 + 4 / 12, "feet"),
  21041. weight: math.unit(115, "lb"),
  21042. name: "Front",
  21043. image: {
  21044. source: "./media/characters/rocky/front.svg",
  21045. extra: 1012 / 975,
  21046. bottom: 54 / 1066
  21047. }
  21048. },
  21049. },
  21050. [
  21051. {
  21052. name: "Normal",
  21053. height: math.unit(5 + 4 / 12, "feet"),
  21054. default: true
  21055. },
  21056. ]
  21057. ))
  21058. characterMakers.push(() => makeCharacter(
  21059. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21060. {
  21061. upright: {
  21062. height: math.unit(6, "meters"),
  21063. weight: math.unit(4000, "kg"),
  21064. name: "Upright",
  21065. image: {
  21066. source: "./media/characters/ruin/upright.svg",
  21067. extra: 668 / 661,
  21068. bottom: 42 / 799.8396
  21069. }
  21070. },
  21071. },
  21072. [
  21073. {
  21074. name: "Normal",
  21075. height: math.unit(6, "meters"),
  21076. default: true
  21077. },
  21078. ]
  21079. ))
  21080. characterMakers.push(() => makeCharacter(
  21081. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21082. {
  21083. front: {
  21084. height: math.unit(5, "feet"),
  21085. weight: math.unit(106, "lb"),
  21086. name: "Front",
  21087. image: {
  21088. source: "./media/characters/robin/front.svg",
  21089. extra: 862 / 799,
  21090. bottom: 42.4 / 914.8856
  21091. }
  21092. },
  21093. },
  21094. [
  21095. {
  21096. name: "Normal",
  21097. height: math.unit(5, "feet"),
  21098. default: true
  21099. },
  21100. ]
  21101. ))
  21102. characterMakers.push(() => makeCharacter(
  21103. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21104. {
  21105. side: {
  21106. height: math.unit(3, "feet"),
  21107. weight: math.unit(225, "lb"),
  21108. name: "Side",
  21109. image: {
  21110. source: "./media/characters/saian/side.svg",
  21111. extra: 566 / 356,
  21112. bottom: 79.7 / 643
  21113. }
  21114. },
  21115. maw: {
  21116. height: math.unit(2.85, "feet"),
  21117. name: "Maw",
  21118. image: {
  21119. source: "./media/characters/saian/maw.svg"
  21120. }
  21121. },
  21122. },
  21123. [
  21124. {
  21125. name: "Normal",
  21126. height: math.unit(3, "feet"),
  21127. default: true
  21128. },
  21129. ]
  21130. ))
  21131. characterMakers.push(() => makeCharacter(
  21132. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21133. {
  21134. side: {
  21135. height: math.unit(8, "feet"),
  21136. weight: math.unit(300, "lb"),
  21137. name: "Side",
  21138. image: {
  21139. source: "./media/characters/equus-silvermane/side.svg",
  21140. extra: 2176 / 2050,
  21141. bottom: 65.7 / 2245
  21142. }
  21143. },
  21144. front: {
  21145. height: math.unit(8, "feet"),
  21146. weight: math.unit(300, "lb"),
  21147. name: "Front",
  21148. image: {
  21149. source: "./media/characters/equus-silvermane/front.svg",
  21150. extra: 4633 / 4400,
  21151. bottom: 71.3 / 4706.915
  21152. }
  21153. },
  21154. sideStepping: {
  21155. height: math.unit(8, "feet"),
  21156. weight: math.unit(300, "lb"),
  21157. name: "Side (Stepping)",
  21158. image: {
  21159. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21160. extra: 1968 / 1860,
  21161. bottom: 16.4 / 1989
  21162. }
  21163. },
  21164. },
  21165. [
  21166. {
  21167. name: "Normal",
  21168. height: math.unit(8, "feet")
  21169. },
  21170. {
  21171. name: "Minimacro",
  21172. height: math.unit(75, "feet"),
  21173. default: true
  21174. },
  21175. {
  21176. name: "Macro",
  21177. height: math.unit(150, "feet")
  21178. },
  21179. {
  21180. name: "Macro+",
  21181. height: math.unit(1000, "feet")
  21182. },
  21183. {
  21184. name: "Megamacro",
  21185. height: math.unit(1, "mile")
  21186. },
  21187. ]
  21188. ))
  21189. characterMakers.push(() => makeCharacter(
  21190. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21191. {
  21192. side: {
  21193. height: math.unit(20, "feet"),
  21194. weight: math.unit(30000, "kg"),
  21195. name: "Side",
  21196. image: {
  21197. source: "./media/characters/windar/side.svg",
  21198. extra: 1491 / 1248,
  21199. bottom: 82.56 / 1568
  21200. }
  21201. },
  21202. },
  21203. [
  21204. {
  21205. name: "Normal",
  21206. height: math.unit(20, "feet"),
  21207. default: true
  21208. },
  21209. ]
  21210. ))
  21211. characterMakers.push(() => makeCharacter(
  21212. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21213. {
  21214. side: {
  21215. height: math.unit(15.66, "feet"),
  21216. weight: math.unit(150, "lb"),
  21217. name: "Side",
  21218. image: {
  21219. source: "./media/characters/melody/side.svg",
  21220. extra: 1097 / 944,
  21221. bottom: 11.8 / 1109
  21222. }
  21223. },
  21224. sideOutfit: {
  21225. height: math.unit(15.66, "feet"),
  21226. weight: math.unit(150, "lb"),
  21227. name: "Side (Outfit)",
  21228. image: {
  21229. source: "./media/characters/melody/side-outfit.svg",
  21230. extra: 1097 / 944,
  21231. bottom: 11.8 / 1109
  21232. }
  21233. },
  21234. },
  21235. [
  21236. {
  21237. name: "Normal",
  21238. height: math.unit(15.66, "feet"),
  21239. default: true
  21240. },
  21241. ]
  21242. ))
  21243. characterMakers.push(() => makeCharacter(
  21244. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21245. {
  21246. front: {
  21247. height: math.unit(8, "feet"),
  21248. weight: math.unit(325, "lb"),
  21249. name: "Front",
  21250. image: {
  21251. source: "./media/characters/windera/front.svg",
  21252. extra: 3180 / 2845,
  21253. bottom: 178 / 3365
  21254. }
  21255. },
  21256. },
  21257. [
  21258. {
  21259. name: "Normal",
  21260. height: math.unit(8, "feet"),
  21261. default: true
  21262. },
  21263. ]
  21264. ))
  21265. characterMakers.push(() => makeCharacter(
  21266. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21267. {
  21268. front: {
  21269. height: math.unit(28.75, "feet"),
  21270. weight: math.unit(2000, "kg"),
  21271. name: "Front",
  21272. image: {
  21273. source: "./media/characters/sonear/front.svg",
  21274. extra: 1041.1 / 964.9,
  21275. bottom: 53.7 / 1096.6
  21276. }
  21277. },
  21278. },
  21279. [
  21280. {
  21281. name: "Normal",
  21282. height: math.unit(28.75, "feet"),
  21283. default: true
  21284. },
  21285. ]
  21286. ))
  21287. characterMakers.push(() => makeCharacter(
  21288. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21289. {
  21290. side: {
  21291. height: math.unit(25.5, "feet"),
  21292. weight: math.unit(23000, "kg"),
  21293. name: "Side",
  21294. image: {
  21295. source: "./media/characters/kanara/side.svg"
  21296. }
  21297. },
  21298. },
  21299. [
  21300. {
  21301. name: "Normal",
  21302. height: math.unit(25.5, "feet"),
  21303. default: true
  21304. },
  21305. ]
  21306. ))
  21307. characterMakers.push(() => makeCharacter(
  21308. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21309. {
  21310. side: {
  21311. height: math.unit(10, "feet"),
  21312. weight: math.unit(1000, "kg"),
  21313. name: "Side",
  21314. image: {
  21315. source: "./media/characters/ereus/side.svg",
  21316. extra: 1157 / 959,
  21317. bottom: 153 / 1312.5
  21318. }
  21319. },
  21320. },
  21321. [
  21322. {
  21323. name: "Normal",
  21324. height: math.unit(10, "feet"),
  21325. default: true
  21326. },
  21327. ]
  21328. ))
  21329. characterMakers.push(() => makeCharacter(
  21330. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21331. {
  21332. side: {
  21333. height: math.unit(4.5, "feet"),
  21334. weight: math.unit(500, "lb"),
  21335. name: "Side",
  21336. image: {
  21337. source: "./media/characters/e-ter/side.svg",
  21338. extra: 1550 / 1248,
  21339. bottom: 146 / 1694
  21340. }
  21341. },
  21342. },
  21343. [
  21344. {
  21345. name: "Normal",
  21346. height: math.unit(4.5, "feet"),
  21347. default: true
  21348. },
  21349. ]
  21350. ))
  21351. characterMakers.push(() => makeCharacter(
  21352. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21353. {
  21354. side: {
  21355. height: math.unit(9.7, "feet"),
  21356. weight: math.unit(4000, "kg"),
  21357. name: "Side",
  21358. image: {
  21359. source: "./media/characters/yamie/side.svg"
  21360. }
  21361. },
  21362. },
  21363. [
  21364. {
  21365. name: "Normal",
  21366. height: math.unit(9.7, "feet"),
  21367. default: true
  21368. },
  21369. ]
  21370. ))
  21371. characterMakers.push(() => makeCharacter(
  21372. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21373. {
  21374. front: {
  21375. height: math.unit(50, "feet"),
  21376. weight: math.unit(50000, "kg"),
  21377. name: "Front",
  21378. image: {
  21379. source: "./media/characters/anders/front.svg",
  21380. extra: 570 / 539,
  21381. bottom: 14.7 / 586.7
  21382. }
  21383. },
  21384. },
  21385. [
  21386. {
  21387. name: "Large",
  21388. height: math.unit(50, "feet")
  21389. },
  21390. {
  21391. name: "Macro",
  21392. height: math.unit(2000, "feet"),
  21393. default: true
  21394. },
  21395. {
  21396. name: "Megamacro",
  21397. height: math.unit(12, "miles")
  21398. },
  21399. ]
  21400. ))
  21401. characterMakers.push(() => makeCharacter(
  21402. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21403. {
  21404. front: {
  21405. height: math.unit(7 + 2 / 12, "feet"),
  21406. weight: math.unit(300, "lb"),
  21407. name: "Front",
  21408. image: {
  21409. source: "./media/characters/reban/front.svg",
  21410. extra: 516 / 487,
  21411. bottom: 42.82 / 558.356
  21412. }
  21413. },
  21414. dick: {
  21415. height: math.unit(7 / 5, "feet"),
  21416. name: "Dick",
  21417. image: {
  21418. source: "./media/characters/reban/dick.svg"
  21419. }
  21420. },
  21421. },
  21422. [
  21423. {
  21424. name: "Natural Height",
  21425. height: math.unit(7 + 2 / 12, "feet")
  21426. },
  21427. {
  21428. name: "Macro",
  21429. height: math.unit(500, "feet"),
  21430. default: true
  21431. },
  21432. {
  21433. name: "Canon Height",
  21434. height: math.unit(50, "AU")
  21435. },
  21436. ]
  21437. ))
  21438. characterMakers.push(() => makeCharacter(
  21439. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21440. {
  21441. front: {
  21442. height: math.unit(6, "feet"),
  21443. weight: math.unit(150, "lb"),
  21444. name: "Front",
  21445. image: {
  21446. source: "./media/characters/terrance-keayes/front.svg",
  21447. extra: 1.005,
  21448. bottom: 151 / 1615
  21449. }
  21450. },
  21451. side: {
  21452. height: math.unit(6, "feet"),
  21453. weight: math.unit(150, "lb"),
  21454. name: "Side",
  21455. image: {
  21456. source: "./media/characters/terrance-keayes/side.svg",
  21457. extra: 1.005,
  21458. bottom: 129.4 / 1544
  21459. }
  21460. },
  21461. back: {
  21462. height: math.unit(6, "feet"),
  21463. weight: math.unit(150, "lb"),
  21464. name: "Back",
  21465. image: {
  21466. source: "./media/characters/terrance-keayes/back.svg",
  21467. extra: 1.005,
  21468. bottom: 58.4 / 1557.3
  21469. }
  21470. },
  21471. dick: {
  21472. height: math.unit(6 * 0.208, "feet"),
  21473. name: "Dick",
  21474. image: {
  21475. source: "./media/characters/terrance-keayes/dick.svg"
  21476. }
  21477. },
  21478. },
  21479. [
  21480. {
  21481. name: "Canon Height",
  21482. height: math.unit(35, "miles"),
  21483. default: true
  21484. },
  21485. ]
  21486. ))
  21487. characterMakers.push(() => makeCharacter(
  21488. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21489. {
  21490. front: {
  21491. height: math.unit(6, "feet"),
  21492. weight: math.unit(150, "lb"),
  21493. name: "Front",
  21494. image: {
  21495. source: "./media/characters/ofelia/front.svg",
  21496. extra: 546 / 541,
  21497. bottom: 39 / 583
  21498. }
  21499. },
  21500. back: {
  21501. height: math.unit(6, "feet"),
  21502. weight: math.unit(150, "lb"),
  21503. name: "Back",
  21504. image: {
  21505. source: "./media/characters/ofelia/back.svg",
  21506. extra: 564 / 559.5,
  21507. bottom: 8.69 / 573.02
  21508. }
  21509. },
  21510. maw: {
  21511. height: math.unit(1, "feet"),
  21512. name: "Maw",
  21513. image: {
  21514. source: "./media/characters/ofelia/maw.svg"
  21515. }
  21516. },
  21517. foot: {
  21518. height: math.unit(1.949, "feet"),
  21519. name: "Foot",
  21520. image: {
  21521. source: "./media/characters/ofelia/foot.svg"
  21522. }
  21523. },
  21524. },
  21525. [
  21526. {
  21527. name: "Canon Height",
  21528. height: math.unit(2000, "miles"),
  21529. default: true
  21530. },
  21531. ]
  21532. ))
  21533. characterMakers.push(() => makeCharacter(
  21534. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21535. {
  21536. front: {
  21537. height: math.unit(6, "feet"),
  21538. weight: math.unit(150, "lb"),
  21539. name: "Front",
  21540. image: {
  21541. source: "./media/characters/samuel/front.svg",
  21542. extra: 265 / 258,
  21543. bottom: 2 / 266.1566
  21544. }
  21545. },
  21546. },
  21547. [
  21548. {
  21549. name: "Macro",
  21550. height: math.unit(100, "feet"),
  21551. default: true
  21552. },
  21553. {
  21554. name: "Full Size",
  21555. height: math.unit(1000, "miles")
  21556. },
  21557. ]
  21558. ))
  21559. characterMakers.push(() => makeCharacter(
  21560. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21561. {
  21562. front: {
  21563. height: math.unit(6, "feet"),
  21564. weight: math.unit(300, "lb"),
  21565. name: "Front",
  21566. image: {
  21567. source: "./media/characters/beishir-kiel/front.svg",
  21568. extra: 569 / 547,
  21569. bottom: 41.9 / 609
  21570. }
  21571. },
  21572. maw: {
  21573. height: math.unit(6 * 0.202, "feet"),
  21574. name: "Maw",
  21575. image: {
  21576. source: "./media/characters/beishir-kiel/maw.svg"
  21577. }
  21578. },
  21579. },
  21580. [
  21581. {
  21582. name: "Macro",
  21583. height: math.unit(300, "feet"),
  21584. default: true
  21585. },
  21586. ]
  21587. ))
  21588. characterMakers.push(() => makeCharacter(
  21589. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21590. {
  21591. front: {
  21592. height: math.unit(5 + 8 / 12, "feet"),
  21593. weight: math.unit(120, "lb"),
  21594. name: "Front",
  21595. image: {
  21596. source: "./media/characters/logan-grey/front.svg",
  21597. extra: 2539 / 2393,
  21598. bottom: 97.6 / 2636.37
  21599. }
  21600. },
  21601. frontAlt: {
  21602. height: math.unit(5 + 8 / 12, "feet"),
  21603. weight: math.unit(120, "lb"),
  21604. name: "Front (Alt)",
  21605. image: {
  21606. source: "./media/characters/logan-grey/front-alt.svg",
  21607. extra: 958 / 893,
  21608. bottom: 15 / 970.768
  21609. }
  21610. },
  21611. back: {
  21612. height: math.unit(5 + 8 / 12, "feet"),
  21613. weight: math.unit(120, "lb"),
  21614. name: "Back",
  21615. image: {
  21616. source: "./media/characters/logan-grey/back.svg",
  21617. extra: 958 / 893,
  21618. bottom: 2.1881 / 970.9788
  21619. }
  21620. },
  21621. dick: {
  21622. height: math.unit(1.437, "feet"),
  21623. name: "Dick",
  21624. image: {
  21625. source: "./media/characters/logan-grey/dick.svg"
  21626. }
  21627. },
  21628. },
  21629. [
  21630. {
  21631. name: "Normal",
  21632. height: math.unit(5 + 8 / 12, "feet")
  21633. },
  21634. {
  21635. name: "The 500 Foot Femboy",
  21636. height: math.unit(500, "feet"),
  21637. default: true
  21638. },
  21639. {
  21640. name: "Megmacro",
  21641. height: math.unit(20, "miles")
  21642. },
  21643. ]
  21644. ))
  21645. characterMakers.push(() => makeCharacter(
  21646. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21647. {
  21648. front: {
  21649. height: math.unit(8 + 2 / 12, "feet"),
  21650. weight: math.unit(275, "lb"),
  21651. name: "Front",
  21652. image: {
  21653. source: "./media/characters/draganta/front.svg",
  21654. extra: 1177 / 1135,
  21655. bottom: 33.46 / 1212.1
  21656. }
  21657. },
  21658. },
  21659. [
  21660. {
  21661. name: "Normal",
  21662. height: math.unit(8 + 6 / 12, "feet"),
  21663. default: true
  21664. },
  21665. {
  21666. name: "Macro",
  21667. height: math.unit(150, "feet")
  21668. },
  21669. {
  21670. name: "Megamacro",
  21671. height: math.unit(1000, "miles")
  21672. },
  21673. ]
  21674. ))
  21675. characterMakers.push(() => makeCharacter(
  21676. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21677. {
  21678. front: {
  21679. height: math.unit(1.72, "m"),
  21680. weight: math.unit(80, "lb"),
  21681. name: "Front",
  21682. image: {
  21683. source: "./media/characters/voski/front.svg",
  21684. extra: 2076.22 / 2022.4,
  21685. bottom: 102.7 / 2177.3866
  21686. }
  21687. },
  21688. frontNsfw: {
  21689. height: math.unit(1.72, "m"),
  21690. weight: math.unit(80, "lb"),
  21691. name: "Front (NSFW)",
  21692. image: {
  21693. source: "./media/characters/voski/front-nsfw.svg",
  21694. extra: 2076.22 / 2022.4,
  21695. bottom: 102.7 / 2177.3866
  21696. }
  21697. },
  21698. back: {
  21699. height: math.unit(1.72, "m"),
  21700. weight: math.unit(80, "lb"),
  21701. name: "Back",
  21702. image: {
  21703. source: "./media/characters/voski/back.svg",
  21704. extra: 2104 / 2051,
  21705. bottom: 10.45 / 2113.63
  21706. }
  21707. },
  21708. },
  21709. [
  21710. {
  21711. name: "Normal",
  21712. height: math.unit(1.72, "m")
  21713. },
  21714. {
  21715. name: "Macro",
  21716. height: math.unit(55, "m"),
  21717. default: true
  21718. },
  21719. {
  21720. name: "Macro+",
  21721. height: math.unit(300, "m")
  21722. },
  21723. {
  21724. name: "Macro++",
  21725. height: math.unit(700, "m")
  21726. },
  21727. {
  21728. name: "Macro+++",
  21729. height: math.unit(4500, "m")
  21730. },
  21731. {
  21732. name: "Macro++++",
  21733. height: math.unit(45, "km")
  21734. },
  21735. {
  21736. name: "Macro+++++",
  21737. height: math.unit(1220, "km")
  21738. },
  21739. ]
  21740. ))
  21741. characterMakers.push(() => makeCharacter(
  21742. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21743. {
  21744. front: {
  21745. height: math.unit(2.3, "m"),
  21746. weight: math.unit(304, "kg"),
  21747. name: "Front",
  21748. image: {
  21749. source: "./media/characters/icowom-lee/front.svg",
  21750. extra: 985 / 955,
  21751. bottom: 25.4 / 1012
  21752. }
  21753. },
  21754. fronttentacles: {
  21755. height: math.unit(2.3, "m"),
  21756. weight: math.unit(304, "kg"),
  21757. name: "Front-tentacles",
  21758. image: {
  21759. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21760. extra: 985 / 955,
  21761. bottom: 25.4 / 1012
  21762. }
  21763. },
  21764. back: {
  21765. height: math.unit(2.3, "m"),
  21766. weight: math.unit(304, "kg"),
  21767. name: "Back",
  21768. image: {
  21769. source: "./media/characters/icowom-lee/back.svg",
  21770. extra: 975 / 954,
  21771. bottom: 9.5 / 985
  21772. }
  21773. },
  21774. backtentacles: {
  21775. height: math.unit(2.3, "m"),
  21776. weight: math.unit(304, "kg"),
  21777. name: "Back-tentacles",
  21778. image: {
  21779. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21780. extra: 975 / 954,
  21781. bottom: 9.5 / 985
  21782. }
  21783. },
  21784. frontDressed: {
  21785. height: math.unit(2.3, "m"),
  21786. weight: math.unit(304, "kg"),
  21787. name: "Front (Dressed)",
  21788. image: {
  21789. source: "./media/characters/icowom-lee/front-dressed.svg",
  21790. extra: 3076 / 2933,
  21791. bottom: 51.4 / 3125.1889
  21792. }
  21793. },
  21794. rump: {
  21795. height: math.unit(0.776, "meters"),
  21796. name: "Rump",
  21797. image: {
  21798. source: "./media/characters/icowom-lee/rump.svg"
  21799. }
  21800. },
  21801. genitals: {
  21802. height: math.unit(0.78, "meters"),
  21803. name: "Genitals",
  21804. image: {
  21805. source: "./media/characters/icowom-lee/genitals.svg"
  21806. }
  21807. },
  21808. },
  21809. [
  21810. {
  21811. name: "Normal",
  21812. height: math.unit(2.3, "meters"),
  21813. default: true
  21814. },
  21815. {
  21816. name: "Macro",
  21817. height: math.unit(94, "meters"),
  21818. default: true
  21819. },
  21820. ]
  21821. ))
  21822. characterMakers.push(() => makeCharacter(
  21823. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21824. {
  21825. front: {
  21826. height: math.unit(22, "meters"),
  21827. weight: math.unit(21000, "kg"),
  21828. name: "Front",
  21829. image: {
  21830. source: "./media/characters/shock-diamond/front.svg",
  21831. extra: 2204 / 2053,
  21832. bottom: 65 / 2239.47
  21833. }
  21834. },
  21835. frontNude: {
  21836. height: math.unit(22, "meters"),
  21837. weight: math.unit(21000, "kg"),
  21838. name: "Front (Nude)",
  21839. image: {
  21840. source: "./media/characters/shock-diamond/front-nude.svg",
  21841. extra: 2514 / 2285,
  21842. bottom: 13 / 2527.56
  21843. }
  21844. },
  21845. },
  21846. [
  21847. {
  21848. name: "Normal",
  21849. height: math.unit(3, "meters")
  21850. },
  21851. {
  21852. name: "Macro",
  21853. height: math.unit(22, "meters"),
  21854. default: true
  21855. },
  21856. ]
  21857. ))
  21858. characterMakers.push(() => makeCharacter(
  21859. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21860. {
  21861. front: {
  21862. height: math.unit(5 + 4 / 12, "feet"),
  21863. weight: math.unit(120, "lb"),
  21864. name: "Front",
  21865. image: {
  21866. source: "./media/characters/rory/front.svg",
  21867. extra: 589 / 556,
  21868. bottom: 45.7 / 635.76
  21869. }
  21870. },
  21871. frontNude: {
  21872. height: math.unit(5 + 4 / 12, "feet"),
  21873. weight: math.unit(120, "lb"),
  21874. name: "Front (Nude)",
  21875. image: {
  21876. source: "./media/characters/rory/front-nude.svg",
  21877. extra: 589 / 556,
  21878. bottom: 45.7 / 635.76
  21879. }
  21880. },
  21881. side: {
  21882. height: math.unit(5 + 4 / 12, "feet"),
  21883. weight: math.unit(120, "lb"),
  21884. name: "Side",
  21885. image: {
  21886. source: "./media/characters/rory/side.svg",
  21887. extra: 597 / 564,
  21888. bottom: 55 / 653
  21889. }
  21890. },
  21891. back: {
  21892. height: math.unit(5 + 4 / 12, "feet"),
  21893. weight: math.unit(120, "lb"),
  21894. name: "Back",
  21895. image: {
  21896. source: "./media/characters/rory/back.svg",
  21897. extra: 620 / 585,
  21898. bottom: 8.86 / 630.43
  21899. }
  21900. },
  21901. dick: {
  21902. height: math.unit(0.86, "feet"),
  21903. name: "Dick",
  21904. image: {
  21905. source: "./media/characters/rory/dick.svg"
  21906. }
  21907. },
  21908. },
  21909. [
  21910. {
  21911. name: "Normal",
  21912. height: math.unit(5 + 4 / 12, "feet"),
  21913. default: true
  21914. },
  21915. {
  21916. name: "Macro",
  21917. height: math.unit(100, "feet")
  21918. },
  21919. {
  21920. name: "Macro+",
  21921. height: math.unit(140, "feet")
  21922. },
  21923. {
  21924. name: "Macro++",
  21925. height: math.unit(300, "feet")
  21926. },
  21927. ]
  21928. ))
  21929. characterMakers.push(() => makeCharacter(
  21930. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21931. {
  21932. front: {
  21933. height: math.unit(5 + 9 / 12, "feet"),
  21934. weight: math.unit(190, "lb"),
  21935. name: "Front",
  21936. image: {
  21937. source: "./media/characters/sprisk/front.svg",
  21938. extra: 1225 / 1180,
  21939. bottom: 42.7 / 1266.4
  21940. }
  21941. },
  21942. frontNsfw: {
  21943. height: math.unit(5 + 9 / 12, "feet"),
  21944. weight: math.unit(190, "lb"),
  21945. name: "Front (NSFW)",
  21946. image: {
  21947. source: "./media/characters/sprisk/front-nsfw.svg",
  21948. extra: 1225 / 1180,
  21949. bottom: 42.7 / 1266.4
  21950. }
  21951. },
  21952. back: {
  21953. height: math.unit(5 + 9 / 12, "feet"),
  21954. weight: math.unit(190, "lb"),
  21955. name: "Back",
  21956. image: {
  21957. source: "./media/characters/sprisk/back.svg",
  21958. extra: 1247 / 1200,
  21959. bottom: 5.6 / 1253.04
  21960. }
  21961. },
  21962. },
  21963. [
  21964. {
  21965. name: "Tiny",
  21966. height: math.unit(2, "inches")
  21967. },
  21968. {
  21969. name: "Normal",
  21970. height: math.unit(5 + 9 / 12, "feet"),
  21971. default: true
  21972. },
  21973. {
  21974. name: "Mini Macro",
  21975. height: math.unit(18, "feet")
  21976. },
  21977. {
  21978. name: "Macro",
  21979. height: math.unit(100, "feet")
  21980. },
  21981. {
  21982. name: "MACRO",
  21983. height: math.unit(50, "miles")
  21984. },
  21985. {
  21986. name: "M A C R O",
  21987. height: math.unit(300, "miles")
  21988. },
  21989. ]
  21990. ))
  21991. characterMakers.push(() => makeCharacter(
  21992. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21993. {
  21994. side: {
  21995. height: math.unit(15.6, "meters"),
  21996. weight: math.unit(700000, "kg"),
  21997. name: "Side",
  21998. image: {
  21999. source: "./media/characters/bunsen/side.svg",
  22000. extra: 1644 / 358
  22001. }
  22002. },
  22003. foot: {
  22004. height: math.unit(1.611 * 1644 / 358, "meter"),
  22005. name: "Foot",
  22006. image: {
  22007. source: "./media/characters/bunsen/foot.svg"
  22008. }
  22009. },
  22010. },
  22011. [
  22012. {
  22013. name: "Small",
  22014. height: math.unit(10, "feet")
  22015. },
  22016. {
  22017. name: "Normal",
  22018. height: math.unit(15.6, "meters"),
  22019. default: true
  22020. },
  22021. ]
  22022. ))
  22023. characterMakers.push(() => makeCharacter(
  22024. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22025. {
  22026. front: {
  22027. height: math.unit(4 + 11 / 12, "feet"),
  22028. weight: math.unit(140, "lb"),
  22029. name: "Front",
  22030. image: {
  22031. source: "./media/characters/sesh/front.svg",
  22032. extra: 3420 / 3231,
  22033. bottom: 72 / 3949.5
  22034. }
  22035. },
  22036. },
  22037. [
  22038. {
  22039. name: "Normal",
  22040. height: math.unit(4 + 11 / 12, "feet")
  22041. },
  22042. {
  22043. name: "Grown",
  22044. height: math.unit(15, "feet"),
  22045. default: true
  22046. },
  22047. {
  22048. name: "Macro",
  22049. height: math.unit(1500, "feet")
  22050. },
  22051. {
  22052. name: "Megamacro",
  22053. height: math.unit(30, "miles")
  22054. },
  22055. {
  22056. name: "Continental",
  22057. height: math.unit(3000, "miles")
  22058. },
  22059. {
  22060. name: "Gravity Mass",
  22061. height: math.unit(300000, "miles")
  22062. },
  22063. {
  22064. name: "Planet Buster",
  22065. height: math.unit(30000000, "miles")
  22066. },
  22067. {
  22068. name: "Big",
  22069. height: math.unit(3000000000, "miles")
  22070. },
  22071. ]
  22072. ))
  22073. characterMakers.push(() => makeCharacter(
  22074. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22075. {
  22076. front: {
  22077. height: math.unit(9, "feet"),
  22078. weight: math.unit(350, "lb"),
  22079. name: "Front",
  22080. image: {
  22081. source: "./media/characters/pepper/front.svg",
  22082. extra: 1448 / 1312,
  22083. bottom: 9.4 / 1457.88
  22084. }
  22085. },
  22086. back: {
  22087. height: math.unit(9, "feet"),
  22088. weight: math.unit(350, "lb"),
  22089. name: "Back",
  22090. image: {
  22091. source: "./media/characters/pepper/back.svg",
  22092. extra: 1423 / 1300,
  22093. bottom: 4.6 / 1429
  22094. }
  22095. },
  22096. maw: {
  22097. height: math.unit(0.932, "feet"),
  22098. name: "Maw",
  22099. image: {
  22100. source: "./media/characters/pepper/maw.svg"
  22101. }
  22102. },
  22103. },
  22104. [
  22105. {
  22106. name: "Normal",
  22107. height: math.unit(9, "feet"),
  22108. default: true
  22109. },
  22110. ]
  22111. ))
  22112. characterMakers.push(() => makeCharacter(
  22113. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22114. {
  22115. front: {
  22116. height: math.unit(6, "feet"),
  22117. weight: math.unit(150, "lb"),
  22118. name: "Front",
  22119. image: {
  22120. source: "./media/characters/maelstrom/front.svg",
  22121. extra: 2100 / 1883,
  22122. bottom: 94 / 2196.7
  22123. }
  22124. },
  22125. },
  22126. [
  22127. {
  22128. name: "Less Kaiju",
  22129. height: math.unit(200, "feet")
  22130. },
  22131. {
  22132. name: "Kaiju",
  22133. height: math.unit(400, "feet"),
  22134. default: true
  22135. },
  22136. {
  22137. name: "Kaiju-er",
  22138. height: math.unit(600, "feet")
  22139. },
  22140. ]
  22141. ))
  22142. characterMakers.push(() => makeCharacter(
  22143. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22144. {
  22145. front: {
  22146. height: math.unit(6 + 5 / 12, "feet"),
  22147. weight: math.unit(180, "lb"),
  22148. name: "Front",
  22149. image: {
  22150. source: "./media/characters/lexir/front.svg",
  22151. extra: 180 / 172,
  22152. bottom: 12 / 192
  22153. }
  22154. },
  22155. back: {
  22156. height: math.unit(6 + 5 / 12, "feet"),
  22157. weight: math.unit(180, "lb"),
  22158. name: "Back",
  22159. image: {
  22160. source: "./media/characters/lexir/back.svg",
  22161. extra: 183.84 / 175.5,
  22162. bottom: 3.1 / 187
  22163. }
  22164. },
  22165. },
  22166. [
  22167. {
  22168. name: "Very Smal",
  22169. height: math.unit(1, "nm")
  22170. },
  22171. {
  22172. name: "Normal",
  22173. height: math.unit(6 + 5 / 12, "feet"),
  22174. default: true
  22175. },
  22176. {
  22177. name: "Macro",
  22178. height: math.unit(1, "mile")
  22179. },
  22180. {
  22181. name: "Megamacro",
  22182. height: math.unit(50, "miles")
  22183. },
  22184. ]
  22185. ))
  22186. characterMakers.push(() => makeCharacter(
  22187. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22188. {
  22189. front: {
  22190. height: math.unit(1.5, "meters"),
  22191. weight: math.unit(100, "lb"),
  22192. name: "Front",
  22193. image: {
  22194. source: "./media/characters/maksio/front.svg",
  22195. extra: 1549 / 1531,
  22196. bottom: 123.7 / 1674.5429
  22197. }
  22198. },
  22199. back: {
  22200. height: math.unit(1.5, "meters"),
  22201. weight: math.unit(100, "lb"),
  22202. name: "Back",
  22203. image: {
  22204. source: "./media/characters/maksio/back.svg",
  22205. extra: 1541 / 1509,
  22206. bottom: 97 / 1639
  22207. }
  22208. },
  22209. hand: {
  22210. height: math.unit(0.621, "feet"),
  22211. name: "Hand",
  22212. image: {
  22213. source: "./media/characters/maksio/hand.svg"
  22214. }
  22215. },
  22216. foot: {
  22217. height: math.unit(1.611, "feet"),
  22218. name: "Foot",
  22219. image: {
  22220. source: "./media/characters/maksio/foot.svg"
  22221. }
  22222. },
  22223. },
  22224. [
  22225. {
  22226. name: "Shrunken",
  22227. height: math.unit(10, "cm")
  22228. },
  22229. {
  22230. name: "Normal",
  22231. height: math.unit(150, "cm"),
  22232. default: true
  22233. },
  22234. ]
  22235. ))
  22236. characterMakers.push(() => makeCharacter(
  22237. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22238. {
  22239. front: {
  22240. height: math.unit(100, "feet"),
  22241. name: "Front",
  22242. image: {
  22243. source: "./media/characters/erza-bear/front.svg",
  22244. extra: 2449 / 2390,
  22245. bottom: 46 / 2494
  22246. }
  22247. },
  22248. back: {
  22249. height: math.unit(100, "feet"),
  22250. name: "Back",
  22251. image: {
  22252. source: "./media/characters/erza-bear/back.svg",
  22253. extra: 2489 / 2430,
  22254. bottom: 85.4 / 2480
  22255. }
  22256. },
  22257. tail: {
  22258. height: math.unit(42, "feet"),
  22259. name: "Tail",
  22260. image: {
  22261. source: "./media/characters/erza-bear/tail.svg"
  22262. }
  22263. },
  22264. tongue: {
  22265. height: math.unit(8, "feet"),
  22266. name: "Tongue",
  22267. image: {
  22268. source: "./media/characters/erza-bear/tongue.svg"
  22269. }
  22270. },
  22271. dick: {
  22272. height: math.unit(10.5, "feet"),
  22273. name: "Dick",
  22274. image: {
  22275. source: "./media/characters/erza-bear/dick.svg"
  22276. }
  22277. },
  22278. dickVertical: {
  22279. height: math.unit(16.9, "feet"),
  22280. name: "Dick (Vertical)",
  22281. image: {
  22282. source: "./media/characters/erza-bear/dick-vertical.svg"
  22283. }
  22284. },
  22285. },
  22286. [
  22287. {
  22288. name: "Macro",
  22289. height: math.unit(100, "feet"),
  22290. default: true
  22291. },
  22292. ]
  22293. ))
  22294. characterMakers.push(() => makeCharacter(
  22295. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22296. {
  22297. front: {
  22298. height: math.unit(172, "cm"),
  22299. weight: math.unit(73, "kg"),
  22300. name: "Front",
  22301. image: {
  22302. source: "./media/characters/violet-flor/front.svg",
  22303. extra: 1530 / 1442,
  22304. bottom: 61.9 / 1588.8
  22305. }
  22306. },
  22307. back: {
  22308. height: math.unit(180, "cm"),
  22309. weight: math.unit(73, "kg"),
  22310. name: "Back",
  22311. image: {
  22312. source: "./media/characters/violet-flor/back.svg",
  22313. extra: 1692 / 1630,
  22314. bottom: 20 / 1712
  22315. }
  22316. },
  22317. },
  22318. [
  22319. {
  22320. name: "Normal",
  22321. height: math.unit(172, "cm"),
  22322. default: true
  22323. },
  22324. ]
  22325. ))
  22326. characterMakers.push(() => makeCharacter(
  22327. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22328. {
  22329. front: {
  22330. height: math.unit(6, "feet"),
  22331. weight: math.unit(220, "lb"),
  22332. name: "Front",
  22333. image: {
  22334. source: "./media/characters/lynn-rhea/front.svg",
  22335. extra: 310 / 273
  22336. }
  22337. },
  22338. back: {
  22339. height: math.unit(6, "feet"),
  22340. weight: math.unit(220, "lb"),
  22341. name: "Back",
  22342. image: {
  22343. source: "./media/characters/lynn-rhea/back.svg",
  22344. extra: 310 / 273
  22345. }
  22346. },
  22347. dicks: {
  22348. height: math.unit(0.9, "feet"),
  22349. name: "Dicks",
  22350. image: {
  22351. source: "./media/characters/lynn-rhea/dicks.svg"
  22352. }
  22353. },
  22354. slit: {
  22355. height: math.unit(0.4, "feet"),
  22356. name: "Slit",
  22357. image: {
  22358. source: "./media/characters/lynn-rhea/slit.svg"
  22359. }
  22360. },
  22361. },
  22362. [
  22363. {
  22364. name: "Micro",
  22365. height: math.unit(1, "inch")
  22366. },
  22367. {
  22368. name: "Macro",
  22369. height: math.unit(60, "feet"),
  22370. default: true
  22371. },
  22372. {
  22373. name: "Megamacro",
  22374. height: math.unit(2, "miles")
  22375. },
  22376. {
  22377. name: "Gigamacro",
  22378. height: math.unit(3, "earths")
  22379. },
  22380. {
  22381. name: "Galactic",
  22382. height: math.unit(0.8, "galaxies")
  22383. },
  22384. ]
  22385. ))
  22386. characterMakers.push(() => makeCharacter(
  22387. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22388. {
  22389. front: {
  22390. height: math.unit(1600, "feet"),
  22391. weight: math.unit(85758785169, "kg"),
  22392. name: "Front",
  22393. image: {
  22394. source: "./media/characters/valathos/front.svg",
  22395. extra: 1451 / 1339
  22396. }
  22397. },
  22398. },
  22399. [
  22400. {
  22401. name: "Macro",
  22402. height: math.unit(1600, "feet"),
  22403. default: true
  22404. },
  22405. ]
  22406. ))
  22407. characterMakers.push(() => makeCharacter(
  22408. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22409. {
  22410. front: {
  22411. height: math.unit(7 + 5 / 12, "feet"),
  22412. weight: math.unit(300, "lb"),
  22413. name: "Front",
  22414. image: {
  22415. source: "./media/characters/azula/front.svg",
  22416. extra: 3208 / 2880,
  22417. bottom: 80.2 / 3277
  22418. }
  22419. },
  22420. back: {
  22421. height: math.unit(7 + 5 / 12, "feet"),
  22422. weight: math.unit(300, "lb"),
  22423. name: "Back",
  22424. image: {
  22425. source: "./media/characters/azula/back.svg",
  22426. extra: 3169 / 2822,
  22427. bottom: 150.6 / 3321
  22428. }
  22429. },
  22430. },
  22431. [
  22432. {
  22433. name: "Normal",
  22434. height: math.unit(7 + 5 / 12, "feet"),
  22435. default: true
  22436. },
  22437. {
  22438. name: "Big",
  22439. height: math.unit(20, "feet")
  22440. },
  22441. ]
  22442. ))
  22443. characterMakers.push(() => makeCharacter(
  22444. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22445. {
  22446. front: {
  22447. height: math.unit(5 + 1 / 12, "feet"),
  22448. weight: math.unit(110, "lb"),
  22449. name: "Front",
  22450. image: {
  22451. source: "./media/characters/rupert/front.svg",
  22452. extra: 1549 / 1495,
  22453. bottom: 54.2 / 1604.4
  22454. }
  22455. },
  22456. },
  22457. [
  22458. {
  22459. name: "Normal",
  22460. height: math.unit(5 + 1 / 12, "feet"),
  22461. default: true
  22462. },
  22463. ]
  22464. ))
  22465. characterMakers.push(() => makeCharacter(
  22466. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22467. {
  22468. front: {
  22469. height: math.unit(8 + 4 / 12, "feet"),
  22470. weight: math.unit(350, "lb"),
  22471. name: "Front",
  22472. image: {
  22473. source: "./media/characters/sheera-castellar/front.svg",
  22474. extra: 1957 / 1894,
  22475. bottom: 26.97 / 1975.017
  22476. }
  22477. },
  22478. side: {
  22479. height: math.unit(8 + 4 / 12, "feet"),
  22480. weight: math.unit(350, "lb"),
  22481. name: "Side",
  22482. image: {
  22483. source: "./media/characters/sheera-castellar/side.svg",
  22484. extra: 1957 / 1894
  22485. }
  22486. },
  22487. back: {
  22488. height: math.unit(8 + 4 / 12, "feet"),
  22489. weight: math.unit(350, "lb"),
  22490. name: "Back",
  22491. image: {
  22492. source: "./media/characters/sheera-castellar/back.svg",
  22493. extra: 1957 / 1894
  22494. }
  22495. },
  22496. angled: {
  22497. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22498. weight: math.unit(350, "lb"),
  22499. name: "Angled",
  22500. image: {
  22501. source: "./media/characters/sheera-castellar/angled.svg",
  22502. extra: 1807 / 1707,
  22503. bottom: 68 / 1875
  22504. }
  22505. },
  22506. genitals: {
  22507. height: math.unit(2.2, "feet"),
  22508. name: "Genitals",
  22509. image: {
  22510. source: "./media/characters/sheera-castellar/genitals.svg"
  22511. }
  22512. },
  22513. },
  22514. [
  22515. {
  22516. name: "Normal",
  22517. height: math.unit(8 + 4 / 12, "feet")
  22518. },
  22519. {
  22520. name: "Macro",
  22521. height: math.unit(150, "feet"),
  22522. default: true
  22523. },
  22524. {
  22525. name: "Macro+",
  22526. height: math.unit(800, "feet")
  22527. },
  22528. ]
  22529. ))
  22530. characterMakers.push(() => makeCharacter(
  22531. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22532. {
  22533. front: {
  22534. height: math.unit(6, "feet"),
  22535. weight: math.unit(150, "lb"),
  22536. name: "Front",
  22537. image: {
  22538. source: "./media/characters/jaipur/front.svg",
  22539. extra: 3860 / 3731,
  22540. bottom: 287 / 4140
  22541. }
  22542. },
  22543. back: {
  22544. height: math.unit(6, "feet"),
  22545. weight: math.unit(150, "lb"),
  22546. name: "Back",
  22547. image: {
  22548. source: "./media/characters/jaipur/back.svg",
  22549. extra: 4060 / 3930,
  22550. bottom: 151 / 4200
  22551. }
  22552. },
  22553. },
  22554. [
  22555. {
  22556. name: "Normal",
  22557. height: math.unit(1.85, "meters"),
  22558. default: true
  22559. },
  22560. {
  22561. name: "Macro",
  22562. height: math.unit(150, "meters")
  22563. },
  22564. {
  22565. name: "Macro+",
  22566. height: math.unit(0.5, "miles")
  22567. },
  22568. {
  22569. name: "Macro++",
  22570. height: math.unit(2.5, "miles")
  22571. },
  22572. {
  22573. name: "Macro+++",
  22574. height: math.unit(12, "miles")
  22575. },
  22576. {
  22577. name: "Macro++++",
  22578. height: math.unit(120, "miles")
  22579. },
  22580. {
  22581. name: "Macro+++++",
  22582. height: math.unit(1200, "miles")
  22583. },
  22584. ]
  22585. ))
  22586. characterMakers.push(() => makeCharacter(
  22587. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22588. {
  22589. front: {
  22590. height: math.unit(6, "feet"),
  22591. weight: math.unit(150, "lb"),
  22592. name: "Front",
  22593. image: {
  22594. source: "./media/characters/sheila-wolf/front.svg",
  22595. extra: 1931 / 1808,
  22596. bottom: 29.5 / 1960
  22597. }
  22598. },
  22599. dick: {
  22600. height: math.unit(1.464, "feet"),
  22601. name: "Dick",
  22602. image: {
  22603. source: "./media/characters/sheila-wolf/dick.svg"
  22604. }
  22605. },
  22606. muzzle: {
  22607. height: math.unit(0.513, "feet"),
  22608. name: "Muzzle",
  22609. image: {
  22610. source: "./media/characters/sheila-wolf/muzzle.svg"
  22611. }
  22612. },
  22613. },
  22614. [
  22615. {
  22616. name: "Macro",
  22617. height: math.unit(70, "feet"),
  22618. default: true
  22619. },
  22620. ]
  22621. ))
  22622. characterMakers.push(() => makeCharacter(
  22623. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22624. {
  22625. front: {
  22626. height: math.unit(32, "meters"),
  22627. weight: math.unit(300000, "kg"),
  22628. name: "Front",
  22629. image: {
  22630. source: "./media/characters/almor/front.svg",
  22631. extra: 1408 / 1322,
  22632. bottom: 94.6 / 1506.5
  22633. }
  22634. },
  22635. },
  22636. [
  22637. {
  22638. name: "Macro",
  22639. height: math.unit(32, "meters"),
  22640. default: true
  22641. },
  22642. ]
  22643. ))
  22644. characterMakers.push(() => makeCharacter(
  22645. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22646. {
  22647. front: {
  22648. height: math.unit(7, "feet"),
  22649. weight: math.unit(200, "lb"),
  22650. name: "Front",
  22651. image: {
  22652. source: "./media/characters/silver/front.svg",
  22653. extra: 472.1 / 450.5,
  22654. bottom: 26.5 / 499.424
  22655. }
  22656. },
  22657. },
  22658. [
  22659. {
  22660. name: "Normal",
  22661. height: math.unit(7, "feet"),
  22662. default: true
  22663. },
  22664. {
  22665. name: "Macro",
  22666. height: math.unit(800, "feet")
  22667. },
  22668. {
  22669. name: "Megamacro",
  22670. height: math.unit(250, "miles")
  22671. },
  22672. ]
  22673. ))
  22674. characterMakers.push(() => makeCharacter(
  22675. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22676. {
  22677. front: {
  22678. height: math.unit(6, "feet"),
  22679. weight: math.unit(150, "lb"),
  22680. name: "Front",
  22681. image: {
  22682. source: "./media/characters/pliskin/front.svg",
  22683. extra: 1469 / 1359,
  22684. bottom: 70 / 1540
  22685. }
  22686. },
  22687. },
  22688. [
  22689. {
  22690. name: "Micro",
  22691. height: math.unit(3, "inches")
  22692. },
  22693. {
  22694. name: "Normal",
  22695. height: math.unit(5 + 11 / 12, "feet"),
  22696. default: true
  22697. },
  22698. {
  22699. name: "Macro",
  22700. height: math.unit(120, "feet")
  22701. },
  22702. ]
  22703. ))
  22704. characterMakers.push(() => makeCharacter(
  22705. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22706. {
  22707. front: {
  22708. height: math.unit(6, "feet"),
  22709. weight: math.unit(150, "lb"),
  22710. name: "Front",
  22711. image: {
  22712. source: "./media/characters/sammy/front.svg",
  22713. extra: 1193 / 1089,
  22714. bottom: 30.5 / 1226
  22715. }
  22716. },
  22717. },
  22718. [
  22719. {
  22720. name: "Macro",
  22721. height: math.unit(1700, "feet"),
  22722. default: true
  22723. },
  22724. {
  22725. name: "Examacro",
  22726. height: math.unit(2.5e9, "lightyears")
  22727. },
  22728. ]
  22729. ))
  22730. characterMakers.push(() => makeCharacter(
  22731. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22732. {
  22733. front: {
  22734. height: math.unit(21, "meters"),
  22735. weight: math.unit(12, "tonnes"),
  22736. name: "Front",
  22737. image: {
  22738. source: "./media/characters/kuru/front.svg",
  22739. extra: 4301 / 3785,
  22740. bottom: 371.3 / 4691
  22741. }
  22742. },
  22743. },
  22744. [
  22745. {
  22746. name: "Macro",
  22747. height: math.unit(21, "meters"),
  22748. default: true
  22749. },
  22750. ]
  22751. ))
  22752. characterMakers.push(() => makeCharacter(
  22753. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22754. {
  22755. front: {
  22756. height: math.unit(23, "meters"),
  22757. weight: math.unit(12.2, "tonnes"),
  22758. name: "Front",
  22759. image: {
  22760. source: "./media/characters/rakka/front.svg",
  22761. extra: 4670 / 4169,
  22762. bottom: 301 / 4968.7
  22763. }
  22764. },
  22765. },
  22766. [
  22767. {
  22768. name: "Macro",
  22769. height: math.unit(23, "meters"),
  22770. default: true
  22771. },
  22772. ]
  22773. ))
  22774. characterMakers.push(() => makeCharacter(
  22775. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22776. {
  22777. front: {
  22778. height: math.unit(6, "feet"),
  22779. weight: math.unit(150, "lb"),
  22780. name: "Front",
  22781. image: {
  22782. source: "./media/characters/rhys-feline/front.svg",
  22783. extra: 2488 / 2308,
  22784. bottom: 35.67 / 2519.19
  22785. }
  22786. },
  22787. },
  22788. [
  22789. {
  22790. name: "Really Small",
  22791. height: math.unit(1, "nm")
  22792. },
  22793. {
  22794. name: "Micro",
  22795. height: math.unit(4, "inches")
  22796. },
  22797. {
  22798. name: "Normal",
  22799. height: math.unit(4 + 10 / 12, "feet"),
  22800. default: true
  22801. },
  22802. {
  22803. name: "Macro",
  22804. height: math.unit(100, "feet")
  22805. },
  22806. {
  22807. name: "Megamacto",
  22808. height: math.unit(50, "miles")
  22809. },
  22810. ]
  22811. ))
  22812. characterMakers.push(() => makeCharacter(
  22813. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22814. {
  22815. side: {
  22816. height: math.unit(30, "feet"),
  22817. weight: math.unit(35000, "kg"),
  22818. name: "Side",
  22819. image: {
  22820. source: "./media/characters/alydar/side.svg",
  22821. extra: 234 / 222,
  22822. bottom: 6.5 / 241
  22823. }
  22824. },
  22825. front: {
  22826. height: math.unit(30, "feet"),
  22827. weight: math.unit(35000, "kg"),
  22828. name: "Front",
  22829. image: {
  22830. source: "./media/characters/alydar/front.svg",
  22831. extra: 223.37 / 210.2,
  22832. bottom: 22.3 / 246.76
  22833. }
  22834. },
  22835. top: {
  22836. height: math.unit(64.54, "feet"),
  22837. weight: math.unit(35000, "kg"),
  22838. name: "Top",
  22839. image: {
  22840. source: "./media/characters/alydar/top.svg"
  22841. }
  22842. },
  22843. anthro: {
  22844. height: math.unit(30, "feet"),
  22845. weight: math.unit(9000, "kg"),
  22846. name: "Anthro",
  22847. image: {
  22848. source: "./media/characters/alydar/anthro.svg",
  22849. extra: 432 / 421,
  22850. bottom: 7.18 / 440
  22851. }
  22852. },
  22853. maw: {
  22854. height: math.unit(11.693, "feet"),
  22855. name: "Maw",
  22856. image: {
  22857. source: "./media/characters/alydar/maw.svg"
  22858. }
  22859. },
  22860. head: {
  22861. height: math.unit(11.693, "feet"),
  22862. name: "Head",
  22863. image: {
  22864. source: "./media/characters/alydar/head.svg"
  22865. }
  22866. },
  22867. headAlt: {
  22868. height: math.unit(12.861, "feet"),
  22869. name: "Head (Alt)",
  22870. image: {
  22871. source: "./media/characters/alydar/head-alt.svg"
  22872. }
  22873. },
  22874. wing: {
  22875. height: math.unit(20.712, "feet"),
  22876. name: "Wing",
  22877. image: {
  22878. source: "./media/characters/alydar/wing.svg"
  22879. }
  22880. },
  22881. wingFeather: {
  22882. height: math.unit(9.662, "feet"),
  22883. name: "Wing Feather",
  22884. image: {
  22885. source: "./media/characters/alydar/wing-feather.svg"
  22886. }
  22887. },
  22888. countourFeather: {
  22889. height: math.unit(4.154, "feet"),
  22890. name: "Contour Feather",
  22891. image: {
  22892. source: "./media/characters/alydar/contour-feather.svg"
  22893. }
  22894. },
  22895. },
  22896. [
  22897. {
  22898. name: "Diplomatic",
  22899. height: math.unit(13, "feet"),
  22900. default: true
  22901. },
  22902. {
  22903. name: "Small",
  22904. height: math.unit(30, "feet")
  22905. },
  22906. {
  22907. name: "Normal",
  22908. height: math.unit(95, "feet"),
  22909. default: true
  22910. },
  22911. {
  22912. name: "Large",
  22913. height: math.unit(285, "feet")
  22914. },
  22915. {
  22916. name: "Incomprehensible",
  22917. height: math.unit(450, "megameters")
  22918. },
  22919. ]
  22920. ))
  22921. characterMakers.push(() => makeCharacter(
  22922. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22923. {
  22924. side: {
  22925. height: math.unit(11, "feet"),
  22926. weight: math.unit(1750, "kg"),
  22927. name: "Side",
  22928. image: {
  22929. source: "./media/characters/selicia/side.svg",
  22930. extra: 440 / 396,
  22931. bottom: 24.8 / 465.979
  22932. }
  22933. },
  22934. maw: {
  22935. height: math.unit(4.665, "feet"),
  22936. name: "Maw",
  22937. image: {
  22938. source: "./media/characters/selicia/maw.svg"
  22939. }
  22940. },
  22941. },
  22942. [
  22943. {
  22944. name: "Normal",
  22945. height: math.unit(11, "feet"),
  22946. default: true
  22947. },
  22948. ]
  22949. ))
  22950. characterMakers.push(() => makeCharacter(
  22951. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22952. {
  22953. side: {
  22954. height: math.unit(2 + 6 / 12, "feet"),
  22955. weight: math.unit(30, "lb"),
  22956. name: "Side",
  22957. image: {
  22958. source: "./media/characters/layla/side.svg",
  22959. extra: 244 / 188,
  22960. bottom: 18.2 / 262.1
  22961. }
  22962. },
  22963. back: {
  22964. height: math.unit(2 + 6 / 12, "feet"),
  22965. weight: math.unit(30, "lb"),
  22966. name: "Back",
  22967. image: {
  22968. source: "./media/characters/layla/back.svg",
  22969. extra: 308 / 241.5,
  22970. bottom: 8.9 / 316.8
  22971. }
  22972. },
  22973. cumming: {
  22974. height: math.unit(2 + 6 / 12, "feet"),
  22975. weight: math.unit(30, "lb"),
  22976. name: "Cumming",
  22977. image: {
  22978. source: "./media/characters/layla/cumming.svg",
  22979. extra: 342 / 279,
  22980. bottom: 595 / 938
  22981. }
  22982. },
  22983. dickFlaccid: {
  22984. height: math.unit(2.595, "feet"),
  22985. name: "Flaccid Genitals",
  22986. image: {
  22987. source: "./media/characters/layla/dick-flaccid.svg"
  22988. }
  22989. },
  22990. dickErect: {
  22991. height: math.unit(2.359, "feet"),
  22992. name: "Erect Genitals",
  22993. image: {
  22994. source: "./media/characters/layla/dick-erect.svg"
  22995. }
  22996. },
  22997. },
  22998. [
  22999. {
  23000. name: "Micro",
  23001. height: math.unit(1, "inch")
  23002. },
  23003. {
  23004. name: "Small",
  23005. height: math.unit(1, "foot")
  23006. },
  23007. {
  23008. name: "Normal",
  23009. height: math.unit(2 + 6 / 12, "feet"),
  23010. default: true
  23011. },
  23012. {
  23013. name: "Macro",
  23014. height: math.unit(200, "feet")
  23015. },
  23016. {
  23017. name: "Megamacro",
  23018. height: math.unit(1000, "miles")
  23019. },
  23020. {
  23021. name: "Planetary",
  23022. height: math.unit(8000, "miles")
  23023. },
  23024. {
  23025. name: "True Layla",
  23026. height: math.unit(200000 * 7, "multiverses")
  23027. },
  23028. ]
  23029. ))
  23030. characterMakers.push(() => makeCharacter(
  23031. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23032. {
  23033. back: {
  23034. height: math.unit(10.5, "feet"),
  23035. weight: math.unit(800, "lb"),
  23036. name: "Back",
  23037. image: {
  23038. source: "./media/characters/knox/back.svg",
  23039. extra: 1486 / 1089,
  23040. bottom: 107 / 1601.4
  23041. }
  23042. },
  23043. side: {
  23044. height: math.unit(10.5, "feet"),
  23045. weight: math.unit(800, "lb"),
  23046. name: "Side",
  23047. image: {
  23048. source: "./media/characters/knox/side.svg",
  23049. extra: 244 / 218,
  23050. bottom: 14 / 260
  23051. }
  23052. },
  23053. },
  23054. [
  23055. {
  23056. name: "Compact",
  23057. height: math.unit(10.5, "feet"),
  23058. default: true
  23059. },
  23060. {
  23061. name: "Dynamax",
  23062. height: math.unit(210, "feet")
  23063. },
  23064. {
  23065. name: "Full Macro",
  23066. height: math.unit(850, "feet")
  23067. },
  23068. ]
  23069. ))
  23070. characterMakers.push(() => makeCharacter(
  23071. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23072. {
  23073. front: {
  23074. height: math.unit(6, "feet"),
  23075. weight: math.unit(152, "lb"),
  23076. name: "Front",
  23077. image: {
  23078. source: "./media/characters/shin-pikachu/front.svg",
  23079. extra: 1574 / 1480,
  23080. bottom: 53.3 / 1626
  23081. }
  23082. },
  23083. hand: {
  23084. height: math.unit(1.055, "feet"),
  23085. name: "Hand",
  23086. image: {
  23087. source: "./media/characters/shin-pikachu/hand.svg"
  23088. }
  23089. },
  23090. foot: {
  23091. height: math.unit(1.1, "feet"),
  23092. name: "Foot",
  23093. image: {
  23094. source: "./media/characters/shin-pikachu/foot.svg"
  23095. }
  23096. },
  23097. collar: {
  23098. height: math.unit(0.386, "feet"),
  23099. name: "Collar",
  23100. image: {
  23101. source: "./media/characters/shin-pikachu/collar.svg"
  23102. }
  23103. },
  23104. },
  23105. [
  23106. {
  23107. name: "Smallest",
  23108. height: math.unit(0.5, "inches")
  23109. },
  23110. {
  23111. name: "Micro",
  23112. height: math.unit(6, "inches")
  23113. },
  23114. {
  23115. name: "Normal",
  23116. height: math.unit(6, "feet"),
  23117. default: true
  23118. },
  23119. {
  23120. name: "Macro",
  23121. height: math.unit(150, "feet")
  23122. },
  23123. ]
  23124. ))
  23125. characterMakers.push(() => makeCharacter(
  23126. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23127. {
  23128. front: {
  23129. height: math.unit(28, "feet"),
  23130. weight: math.unit(10500, "lb"),
  23131. name: "Front",
  23132. image: {
  23133. source: "./media/characters/kayda/front.svg",
  23134. extra: 1536 / 1428,
  23135. bottom: 68.7 / 1603
  23136. }
  23137. },
  23138. back: {
  23139. height: math.unit(28, "feet"),
  23140. weight: math.unit(10500, "lb"),
  23141. name: "Back",
  23142. image: {
  23143. source: "./media/characters/kayda/back.svg",
  23144. extra: 1557 / 1464,
  23145. bottom: 39.5 / 1597.49
  23146. }
  23147. },
  23148. dick: {
  23149. height: math.unit(3.858, "feet"),
  23150. name: "Dick",
  23151. image: {
  23152. source: "./media/characters/kayda/dick.svg"
  23153. }
  23154. },
  23155. },
  23156. [
  23157. {
  23158. name: "Macro",
  23159. height: math.unit(28, "feet"),
  23160. default: true
  23161. },
  23162. ]
  23163. ))
  23164. characterMakers.push(() => makeCharacter(
  23165. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23166. {
  23167. front: {
  23168. height: math.unit(10 + 11 / 12, "feet"),
  23169. weight: math.unit(1400, "lb"),
  23170. name: "Front",
  23171. image: {
  23172. source: "./media/characters/brian/front.svg",
  23173. extra: 737 / 692,
  23174. bottom: 55.4 / 785
  23175. }
  23176. },
  23177. },
  23178. [
  23179. {
  23180. name: "Normal",
  23181. height: math.unit(10 + 11 / 12, "feet"),
  23182. default: true
  23183. },
  23184. ]
  23185. ))
  23186. characterMakers.push(() => makeCharacter(
  23187. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23188. {
  23189. front: {
  23190. height: math.unit(5 + 8 / 12, "feet"),
  23191. weight: math.unit(140, "lb"),
  23192. name: "Front",
  23193. image: {
  23194. source: "./media/characters/khemri/front.svg",
  23195. extra: 4780 / 4059,
  23196. bottom: 80.1 / 4859.25
  23197. }
  23198. },
  23199. },
  23200. [
  23201. {
  23202. name: "Micro",
  23203. height: math.unit(6, "inches")
  23204. },
  23205. {
  23206. name: "Normal",
  23207. height: math.unit(5 + 8 / 12, "feet"),
  23208. default: true
  23209. },
  23210. ]
  23211. ))
  23212. characterMakers.push(() => makeCharacter(
  23213. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23214. {
  23215. front: {
  23216. height: math.unit(13, "feet"),
  23217. weight: math.unit(1700, "lb"),
  23218. name: "Front",
  23219. image: {
  23220. source: "./media/characters/felix-braveheart/front.svg",
  23221. extra: 1222 / 1157,
  23222. bottom: 53.2 / 1280
  23223. }
  23224. },
  23225. back: {
  23226. height: math.unit(13, "feet"),
  23227. weight: math.unit(1700, "lb"),
  23228. name: "Back",
  23229. image: {
  23230. source: "./media/characters/felix-braveheart/back.svg",
  23231. extra: 1277 / 1203,
  23232. bottom: 50.2 / 1327
  23233. }
  23234. },
  23235. feral: {
  23236. height: math.unit(6, "feet"),
  23237. weight: math.unit(400, "lb"),
  23238. name: "Feral",
  23239. image: {
  23240. source: "./media/characters/felix-braveheart/feral.svg",
  23241. extra: 682 / 625,
  23242. bottom: 6.9 / 688
  23243. }
  23244. },
  23245. },
  23246. [
  23247. {
  23248. name: "Normal",
  23249. height: math.unit(13, "feet"),
  23250. default: true
  23251. },
  23252. ]
  23253. ))
  23254. characterMakers.push(() => makeCharacter(
  23255. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23256. {
  23257. side: {
  23258. height: math.unit(5 + 11 / 12, "feet"),
  23259. weight: math.unit(1400, "lb"),
  23260. name: "Side",
  23261. image: {
  23262. source: "./media/characters/shadow-blade/side.svg",
  23263. extra: 1726 / 1267,
  23264. bottom: 58.4 / 1785
  23265. }
  23266. },
  23267. },
  23268. [
  23269. {
  23270. name: "Normal",
  23271. height: math.unit(5 + 11 / 12, "feet"),
  23272. default: true
  23273. },
  23274. ]
  23275. ))
  23276. characterMakers.push(() => makeCharacter(
  23277. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23278. {
  23279. front: {
  23280. height: math.unit(1 + 6 / 12, "feet"),
  23281. weight: math.unit(25, "lb"),
  23282. name: "Front",
  23283. image: {
  23284. source: "./media/characters/karla-halldor/front.svg",
  23285. extra: 1459 / 1383,
  23286. bottom: 12 / 1472
  23287. }
  23288. },
  23289. },
  23290. [
  23291. {
  23292. name: "Normal",
  23293. height: math.unit(1 + 6 / 12, "feet"),
  23294. default: true
  23295. },
  23296. ]
  23297. ))
  23298. characterMakers.push(() => makeCharacter(
  23299. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23300. {
  23301. front: {
  23302. height: math.unit(6 + 2 / 12, "feet"),
  23303. weight: math.unit(160, "lb"),
  23304. name: "Front",
  23305. image: {
  23306. source: "./media/characters/ariam/front.svg",
  23307. extra: 714 / 617,
  23308. bottom: 23.4 / 737,
  23309. }
  23310. },
  23311. squatting: {
  23312. height: math.unit(4.1, "feet"),
  23313. weight: math.unit(160, "lb"),
  23314. name: "Squatting",
  23315. image: {
  23316. source: "./media/characters/ariam/squatting.svg",
  23317. extra: 2617 / 2112,
  23318. bottom: 61.2 / 2681,
  23319. }
  23320. },
  23321. },
  23322. [
  23323. {
  23324. name: "Normal",
  23325. height: math.unit(6 + 2 / 12, "feet"),
  23326. default: true
  23327. },
  23328. {
  23329. name: "Normal+",
  23330. height: math.unit(4, "meters")
  23331. },
  23332. {
  23333. name: "Macro",
  23334. height: math.unit(50, "meters")
  23335. },
  23336. {
  23337. name: "Macro+",
  23338. height: math.unit(100, "meters")
  23339. },
  23340. {
  23341. name: "Megamacro",
  23342. height: math.unit(20, "km")
  23343. },
  23344. ]
  23345. ))
  23346. characterMakers.push(() => makeCharacter(
  23347. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23348. {
  23349. front: {
  23350. height: math.unit(1.67, "meters"),
  23351. weight: math.unit(140, "lb"),
  23352. name: "Front",
  23353. image: {
  23354. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23355. extra: 438 / 410,
  23356. bottom: 0.75 / 439
  23357. }
  23358. },
  23359. },
  23360. [
  23361. {
  23362. name: "Shrunken",
  23363. height: math.unit(7.6, "cm")
  23364. },
  23365. {
  23366. name: "Human Scale",
  23367. height: math.unit(1.67, "meters")
  23368. },
  23369. {
  23370. name: "Wolxi Scale",
  23371. height: math.unit(36.7, "meters"),
  23372. default: true
  23373. },
  23374. ]
  23375. ))
  23376. characterMakers.push(() => makeCharacter(
  23377. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23378. {
  23379. front: {
  23380. height: math.unit(1.73, "meters"),
  23381. weight: math.unit(240, "lb"),
  23382. name: "Front",
  23383. image: {
  23384. source: "./media/characters/izue-two-mothers/front.svg",
  23385. extra: 469 / 437,
  23386. bottom: 1.24 / 470.6
  23387. }
  23388. },
  23389. },
  23390. [
  23391. {
  23392. name: "Shrunken",
  23393. height: math.unit(7.86, "cm")
  23394. },
  23395. {
  23396. name: "Human Scale",
  23397. height: math.unit(1.73, "meters")
  23398. },
  23399. {
  23400. name: "Wolxi Scale",
  23401. height: math.unit(38, "meters"),
  23402. default: true
  23403. },
  23404. ]
  23405. ))
  23406. characterMakers.push(() => makeCharacter(
  23407. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23408. {
  23409. front: {
  23410. height: math.unit(1.55, "meters"),
  23411. weight: math.unit(120, "lb"),
  23412. name: "Front",
  23413. image: {
  23414. source: "./media/characters/teeku-love-shack/front.svg",
  23415. extra: 387 / 362,
  23416. bottom: 1.51 / 388
  23417. }
  23418. },
  23419. },
  23420. [
  23421. {
  23422. name: "Shrunken",
  23423. height: math.unit(7, "cm")
  23424. },
  23425. {
  23426. name: "Human Scale",
  23427. height: math.unit(1.55, "meters")
  23428. },
  23429. {
  23430. name: "Wolxi Scale",
  23431. height: math.unit(34.1, "meters"),
  23432. default: true
  23433. },
  23434. ]
  23435. ))
  23436. characterMakers.push(() => makeCharacter(
  23437. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23438. {
  23439. front: {
  23440. height: math.unit(1.83, "meters"),
  23441. weight: math.unit(135, "lb"),
  23442. name: "Front",
  23443. image: {
  23444. source: "./media/characters/dejma-the-red/front.svg",
  23445. extra: 480 / 458,
  23446. bottom: 1.8 / 482
  23447. }
  23448. },
  23449. },
  23450. [
  23451. {
  23452. name: "Shrunken",
  23453. height: math.unit(8.3, "cm")
  23454. },
  23455. {
  23456. name: "Human Scale",
  23457. height: math.unit(1.83, "meters")
  23458. },
  23459. {
  23460. name: "Wolxi Scale",
  23461. height: math.unit(40, "meters"),
  23462. default: true
  23463. },
  23464. ]
  23465. ))
  23466. characterMakers.push(() => makeCharacter(
  23467. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23468. {
  23469. front: {
  23470. height: math.unit(1.78, "meters"),
  23471. weight: math.unit(65, "kg"),
  23472. name: "Front",
  23473. image: {
  23474. source: "./media/characters/aki/front.svg",
  23475. extra: 452 / 415
  23476. }
  23477. },
  23478. frontNsfw: {
  23479. height: math.unit(1.78, "meters"),
  23480. weight: math.unit(65, "kg"),
  23481. name: "Front (NSFW)",
  23482. image: {
  23483. source: "./media/characters/aki/front-nsfw.svg",
  23484. extra: 452 / 415
  23485. }
  23486. },
  23487. back: {
  23488. height: math.unit(1.78, "meters"),
  23489. weight: math.unit(65, "kg"),
  23490. name: "Back",
  23491. image: {
  23492. source: "./media/characters/aki/back.svg",
  23493. extra: 452 / 415
  23494. }
  23495. },
  23496. rump: {
  23497. height: math.unit(2.05, "feet"),
  23498. name: "Rump",
  23499. image: {
  23500. source: "./media/characters/aki/rump.svg"
  23501. }
  23502. },
  23503. dick: {
  23504. height: math.unit(0.95, "feet"),
  23505. name: "Dick",
  23506. image: {
  23507. source: "./media/characters/aki/dick.svg"
  23508. }
  23509. },
  23510. },
  23511. [
  23512. {
  23513. name: "Micro",
  23514. height: math.unit(15, "cm")
  23515. },
  23516. {
  23517. name: "Normal",
  23518. height: math.unit(178, "cm"),
  23519. default: true
  23520. },
  23521. {
  23522. name: "Macro",
  23523. height: math.unit(214, "m")
  23524. },
  23525. {
  23526. name: "Macro+",
  23527. height: math.unit(534, "m")
  23528. },
  23529. ]
  23530. ))
  23531. characterMakers.push(() => makeCharacter(
  23532. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23533. {
  23534. front: {
  23535. height: math.unit(5 + 5 / 12, "feet"),
  23536. weight: math.unit(120, "lb"),
  23537. name: "Front",
  23538. image: {
  23539. source: "./media/characters/ari/front.svg",
  23540. extra: 714.5 / 682,
  23541. bottom: 8 / 722.5
  23542. }
  23543. },
  23544. },
  23545. [
  23546. {
  23547. name: "Normal",
  23548. height: math.unit(5 + 5 / 12, "feet")
  23549. },
  23550. {
  23551. name: "Macro",
  23552. height: math.unit(100, "feet"),
  23553. default: true
  23554. },
  23555. {
  23556. name: "Megamacro",
  23557. height: math.unit(100, "miles")
  23558. },
  23559. {
  23560. name: "Gigamacro",
  23561. height: math.unit(80000, "miles")
  23562. },
  23563. ]
  23564. ))
  23565. characterMakers.push(() => makeCharacter(
  23566. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23567. {
  23568. side: {
  23569. height: math.unit(9, "feet"),
  23570. weight: math.unit(400, "kg"),
  23571. name: "Side",
  23572. image: {
  23573. source: "./media/characters/bolt/side.svg",
  23574. extra: 1126 / 896,
  23575. bottom: 60 / 1187.3,
  23576. }
  23577. },
  23578. },
  23579. [
  23580. {
  23581. name: "Micro",
  23582. height: math.unit(5, "inches")
  23583. },
  23584. {
  23585. name: "Normal",
  23586. height: math.unit(9, "feet"),
  23587. default: true
  23588. },
  23589. {
  23590. name: "Macro",
  23591. height: math.unit(700, "feet")
  23592. },
  23593. {
  23594. name: "Max Size",
  23595. height: math.unit(1.52e22, "yottameters")
  23596. },
  23597. ]
  23598. ))
  23599. characterMakers.push(() => makeCharacter(
  23600. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23601. {
  23602. front: {
  23603. height: math.unit(4.53, "meters"),
  23604. weight: math.unit(3, "tons"),
  23605. name: "Front",
  23606. image: {
  23607. source: "./media/characters/draekon-sylviar/front.svg",
  23608. extra: 1228 / 1068,
  23609. bottom: 41 / 1270
  23610. }
  23611. },
  23612. tail: {
  23613. height: math.unit(1.772, "meter"),
  23614. name: "Tail",
  23615. image: {
  23616. source: "./media/characters/draekon-sylviar/tail.svg"
  23617. }
  23618. },
  23619. head: {
  23620. height: math.unit(1.331, "meter"),
  23621. name: "Head",
  23622. image: {
  23623. source: "./media/characters/draekon-sylviar/head.svg"
  23624. }
  23625. },
  23626. hand: {
  23627. height: math.unit(0.564, "meter"),
  23628. name: "Hand",
  23629. image: {
  23630. source: "./media/characters/draekon-sylviar/hand.svg"
  23631. }
  23632. },
  23633. foot: {
  23634. height: math.unit(0.621, "meter"),
  23635. name: "Foot",
  23636. image: {
  23637. source: "./media/characters/draekon-sylviar/foot.svg",
  23638. bottom: 32 / 324
  23639. }
  23640. },
  23641. dick: {
  23642. height: math.unit(61, "cm"),
  23643. name: "Dick",
  23644. image: {
  23645. source: "./media/characters/draekon-sylviar/dick.svg"
  23646. }
  23647. },
  23648. dickseparated: {
  23649. height: math.unit(61, "cm"),
  23650. name: "Dick-separated",
  23651. image: {
  23652. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23653. }
  23654. },
  23655. },
  23656. [
  23657. {
  23658. name: "Small",
  23659. height: math.unit(4.53 / 2, "meters"),
  23660. default: true
  23661. },
  23662. {
  23663. name: "Normal",
  23664. height: math.unit(4.53, "meters"),
  23665. default: true
  23666. },
  23667. {
  23668. name: "Large",
  23669. height: math.unit(4.53 * 2, "meters"),
  23670. },
  23671. ]
  23672. ))
  23673. characterMakers.push(() => makeCharacter(
  23674. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23675. {
  23676. front: {
  23677. height: math.unit(6 + 2 / 12, "feet"),
  23678. weight: math.unit(180, "lb"),
  23679. name: "Front",
  23680. image: {
  23681. source: "./media/characters/brawler/front.svg",
  23682. extra: 3301 / 3027,
  23683. bottom: 138 / 3439
  23684. }
  23685. },
  23686. },
  23687. [
  23688. {
  23689. name: "Normal",
  23690. height: math.unit(6 + 2 / 12, "feet"),
  23691. default: true
  23692. },
  23693. ]
  23694. ))
  23695. characterMakers.push(() => makeCharacter(
  23696. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23697. {
  23698. front: {
  23699. height: math.unit(11, "feet"),
  23700. weight: math.unit(1000, "lb"),
  23701. name: "Front",
  23702. image: {
  23703. source: "./media/characters/alex/front.svg",
  23704. bottom: 44.5 / 620
  23705. }
  23706. },
  23707. },
  23708. [
  23709. {
  23710. name: "Micro",
  23711. height: math.unit(5, "inches")
  23712. },
  23713. {
  23714. name: "Normal",
  23715. height: math.unit(11, "feet"),
  23716. default: true
  23717. },
  23718. {
  23719. name: "Macro",
  23720. height: math.unit(9.5e9, "feet")
  23721. },
  23722. {
  23723. name: "Max Size",
  23724. height: math.unit(1.4e283, "yottameters")
  23725. },
  23726. ]
  23727. ))
  23728. characterMakers.push(() => makeCharacter(
  23729. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23730. {
  23731. female: {
  23732. height: math.unit(29.9, "m"),
  23733. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23734. name: "Female",
  23735. image: {
  23736. source: "./media/characters/zenari/female.svg",
  23737. extra: 3281.6 / 3217,
  23738. bottom: 72.2 / 3353
  23739. }
  23740. },
  23741. male: {
  23742. height: math.unit(27.7, "m"),
  23743. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23744. name: "Male",
  23745. image: {
  23746. source: "./media/characters/zenari/male.svg",
  23747. extra: 3008 / 2991,
  23748. bottom: 54.6 / 3069
  23749. }
  23750. },
  23751. },
  23752. [
  23753. {
  23754. name: "Macro",
  23755. height: math.unit(29.7, "meters"),
  23756. default: true
  23757. },
  23758. ]
  23759. ))
  23760. characterMakers.push(() => makeCharacter(
  23761. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23762. {
  23763. female: {
  23764. height: math.unit(23.8, "m"),
  23765. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23766. name: "Female",
  23767. image: {
  23768. source: "./media/characters/mactarian/female.svg",
  23769. extra: 2662 / 2569,
  23770. bottom: 73 / 2736
  23771. }
  23772. },
  23773. male: {
  23774. height: math.unit(23.8, "m"),
  23775. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23776. name: "Male",
  23777. image: {
  23778. source: "./media/characters/mactarian/male.svg",
  23779. extra: 2673 / 2600,
  23780. bottom: 76 / 2750
  23781. }
  23782. },
  23783. },
  23784. [
  23785. {
  23786. name: "Macro",
  23787. height: math.unit(23.8, "meters"),
  23788. default: true
  23789. },
  23790. ]
  23791. ))
  23792. characterMakers.push(() => makeCharacter(
  23793. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23794. {
  23795. female: {
  23796. height: math.unit(19.3, "m"),
  23797. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23798. name: "Female",
  23799. image: {
  23800. source: "./media/characters/umok/female.svg",
  23801. extra: 2186 / 2078,
  23802. bottom: 87 / 2277
  23803. }
  23804. },
  23805. male: {
  23806. height: math.unit(19.5, "m"),
  23807. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23808. name: "Male",
  23809. image: {
  23810. source: "./media/characters/umok/male.svg",
  23811. extra: 2233 / 2140,
  23812. bottom: 24.4 / 2258
  23813. }
  23814. },
  23815. },
  23816. [
  23817. {
  23818. name: "Macro",
  23819. height: math.unit(19.3, "meters"),
  23820. default: true
  23821. },
  23822. ]
  23823. ))
  23824. characterMakers.push(() => makeCharacter(
  23825. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23826. {
  23827. female: {
  23828. height: math.unit(26.15, "m"),
  23829. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23830. name: "Female",
  23831. image: {
  23832. source: "./media/characters/joraxian/female.svg",
  23833. extra: 2912 / 2824,
  23834. bottom: 36 / 2956
  23835. }
  23836. },
  23837. male: {
  23838. height: math.unit(25.4, "m"),
  23839. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23840. name: "Male",
  23841. image: {
  23842. source: "./media/characters/joraxian/male.svg",
  23843. extra: 2877 / 2721,
  23844. bottom: 82 / 2967
  23845. }
  23846. },
  23847. },
  23848. [
  23849. {
  23850. name: "Macro",
  23851. height: math.unit(26.15, "meters"),
  23852. default: true
  23853. },
  23854. ]
  23855. ))
  23856. characterMakers.push(() => makeCharacter(
  23857. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23858. {
  23859. female: {
  23860. height: math.unit(21.6, "m"),
  23861. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23862. name: "Female",
  23863. image: {
  23864. source: "./media/characters/sthara/female.svg",
  23865. extra: 2516 / 2347,
  23866. bottom: 21.5 / 2537
  23867. }
  23868. },
  23869. male: {
  23870. height: math.unit(24, "m"),
  23871. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23872. name: "Male",
  23873. image: {
  23874. source: "./media/characters/sthara/male.svg",
  23875. extra: 2732 / 2607,
  23876. bottom: 23 / 2732
  23877. }
  23878. },
  23879. },
  23880. [
  23881. {
  23882. name: "Macro",
  23883. height: math.unit(21.6, "meters"),
  23884. default: true
  23885. },
  23886. ]
  23887. ))
  23888. characterMakers.push(() => makeCharacter(
  23889. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23890. {
  23891. front: {
  23892. height: math.unit(6 + 4 / 12, "feet"),
  23893. weight: math.unit(175, "lb"),
  23894. name: "Front",
  23895. image: {
  23896. source: "./media/characters/luka-bryzant/front.svg",
  23897. extra: 311 / 289,
  23898. bottom: 4 / 315
  23899. }
  23900. },
  23901. back: {
  23902. height: math.unit(6 + 4 / 12, "feet"),
  23903. weight: math.unit(175, "lb"),
  23904. name: "Back",
  23905. image: {
  23906. source: "./media/characters/luka-bryzant/back.svg",
  23907. extra: 311 / 289,
  23908. bottom: 3.8 / 313.7
  23909. }
  23910. },
  23911. },
  23912. [
  23913. {
  23914. name: "Micro",
  23915. height: math.unit(10, "inches")
  23916. },
  23917. {
  23918. name: "Normal",
  23919. height: math.unit(6 + 4 / 12, "feet"),
  23920. default: true
  23921. },
  23922. {
  23923. name: "Large",
  23924. height: math.unit(12, "feet")
  23925. },
  23926. ]
  23927. ))
  23928. characterMakers.push(() => makeCharacter(
  23929. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23930. {
  23931. front: {
  23932. height: math.unit(5 + 7 / 12, "feet"),
  23933. weight: math.unit(185, "lb"),
  23934. name: "Front",
  23935. image: {
  23936. source: "./media/characters/aman-aquila/front.svg",
  23937. extra: 1013 / 976,
  23938. bottom: 45.6 / 1057
  23939. }
  23940. },
  23941. side: {
  23942. height: math.unit(5 + 7 / 12, "feet"),
  23943. weight: math.unit(185, "lb"),
  23944. name: "Side",
  23945. image: {
  23946. source: "./media/characters/aman-aquila/side.svg",
  23947. extra: 1054 / 1011,
  23948. bottom: 15 / 1070
  23949. }
  23950. },
  23951. back: {
  23952. height: math.unit(5 + 7 / 12, "feet"),
  23953. weight: math.unit(185, "lb"),
  23954. name: "Back",
  23955. image: {
  23956. source: "./media/characters/aman-aquila/back.svg",
  23957. extra: 1026 / 970,
  23958. bottom: 12 / 1039
  23959. }
  23960. },
  23961. head: {
  23962. height: math.unit(1.211, "feet"),
  23963. name: "Head",
  23964. image: {
  23965. source: "./media/characters/aman-aquila/head.svg",
  23966. }
  23967. },
  23968. },
  23969. [
  23970. {
  23971. name: "Minimicro",
  23972. height: math.unit(0.057, "inches")
  23973. },
  23974. {
  23975. name: "Micro",
  23976. height: math.unit(7, "inches")
  23977. },
  23978. {
  23979. name: "Mini",
  23980. height: math.unit(3 + 7 / 12, "feet")
  23981. },
  23982. {
  23983. name: "Normal",
  23984. height: math.unit(5 + 7 / 12, "feet"),
  23985. default: true
  23986. },
  23987. {
  23988. name: "Macro",
  23989. height: math.unit(157 + 7 / 12, "feet")
  23990. },
  23991. {
  23992. name: "Megamacro",
  23993. height: math.unit(1557 + 7 / 12, "feet")
  23994. },
  23995. {
  23996. name: "Gigamacro",
  23997. height: math.unit(15557 + 7 / 12, "feet")
  23998. },
  23999. ]
  24000. ))
  24001. characterMakers.push(() => makeCharacter(
  24002. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24003. {
  24004. front: {
  24005. height: math.unit(3 + 2 / 12, "inches"),
  24006. weight: math.unit(0.3, "ounces"),
  24007. name: "Front",
  24008. image: {
  24009. source: "./media/characters/hiphae/front.svg",
  24010. extra: 1931 / 1683,
  24011. bottom: 24 / 1955
  24012. }
  24013. },
  24014. },
  24015. [
  24016. {
  24017. name: "Normal",
  24018. height: math.unit(3 + 1 / 2, "inches"),
  24019. default: true
  24020. },
  24021. ]
  24022. ))
  24023. characterMakers.push(() => makeCharacter(
  24024. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24025. {
  24026. front: {
  24027. height: math.unit(5 + 10 / 12, "feet"),
  24028. weight: math.unit(165, "lb"),
  24029. name: "Front",
  24030. image: {
  24031. source: "./media/characters/nicky/front.svg",
  24032. extra: 3144 / 2886,
  24033. bottom: 45.6 / 3192
  24034. }
  24035. },
  24036. back: {
  24037. height: math.unit(5 + 10 / 12, "feet"),
  24038. weight: math.unit(165, "lb"),
  24039. name: "Back",
  24040. image: {
  24041. source: "./media/characters/nicky/back.svg",
  24042. extra: 3055 / 2804,
  24043. bottom: 28.4 / 3087
  24044. }
  24045. },
  24046. frontclothed: {
  24047. height: math.unit(5 + 10 / 12, "feet"),
  24048. weight: math.unit(165, "lb"),
  24049. name: "Front-clothed",
  24050. image: {
  24051. source: "./media/characters/nicky/front-clothed.svg",
  24052. extra: 3184.9 / 2926.9,
  24053. bottom: 86.5 / 3239.9
  24054. }
  24055. },
  24056. foot: {
  24057. height: math.unit(1.16, "feet"),
  24058. name: "Foot",
  24059. image: {
  24060. source: "./media/characters/nicky/foot.svg"
  24061. }
  24062. },
  24063. feet: {
  24064. height: math.unit(1.34, "feet"),
  24065. name: "Feet",
  24066. image: {
  24067. source: "./media/characters/nicky/feet.svg"
  24068. }
  24069. },
  24070. maw: {
  24071. height: math.unit(0.9, "feet"),
  24072. name: "Maw",
  24073. image: {
  24074. source: "./media/characters/nicky/maw.svg"
  24075. }
  24076. },
  24077. },
  24078. [
  24079. {
  24080. name: "Normal",
  24081. height: math.unit(5 + 10 / 12, "feet"),
  24082. default: true
  24083. },
  24084. {
  24085. name: "Macro",
  24086. height: math.unit(60, "feet")
  24087. },
  24088. {
  24089. name: "Megamacro",
  24090. height: math.unit(1, "mile")
  24091. },
  24092. ]
  24093. ))
  24094. characterMakers.push(() => makeCharacter(
  24095. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24096. {
  24097. side: {
  24098. height: math.unit(10, "feet"),
  24099. weight: math.unit(600, "lb"),
  24100. name: "Side",
  24101. image: {
  24102. source: "./media/characters/blair/side.svg",
  24103. bottom: 16.6 / 475,
  24104. extra: 458 / 431
  24105. }
  24106. },
  24107. },
  24108. [
  24109. {
  24110. name: "Micro",
  24111. height: math.unit(8, "inches")
  24112. },
  24113. {
  24114. name: "Normal",
  24115. height: math.unit(10, "feet"),
  24116. default: true
  24117. },
  24118. {
  24119. name: "Macro",
  24120. height: math.unit(180, "feet")
  24121. },
  24122. ]
  24123. ))
  24124. characterMakers.push(() => makeCharacter(
  24125. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24126. {
  24127. front: {
  24128. height: math.unit(5 + 4 / 12, "feet"),
  24129. weight: math.unit(125, "lb"),
  24130. name: "Front",
  24131. image: {
  24132. source: "./media/characters/fisher/front.svg",
  24133. extra: 444 / 390,
  24134. bottom: 2 / 444.8
  24135. }
  24136. },
  24137. },
  24138. [
  24139. {
  24140. name: "Micro",
  24141. height: math.unit(4, "inches")
  24142. },
  24143. {
  24144. name: "Normal",
  24145. height: math.unit(5 + 4 / 12, "feet"),
  24146. default: true
  24147. },
  24148. {
  24149. name: "Macro",
  24150. height: math.unit(100, "feet")
  24151. },
  24152. ]
  24153. ))
  24154. characterMakers.push(() => makeCharacter(
  24155. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24156. {
  24157. front: {
  24158. height: math.unit(6.71, "feet"),
  24159. weight: math.unit(200, "lb"),
  24160. capacity: math.unit(1000000, "people"),
  24161. name: "Front",
  24162. image: {
  24163. source: "./media/characters/gliss/front.svg",
  24164. extra: 2347 / 2231,
  24165. bottom: 113 / 2462
  24166. }
  24167. },
  24168. hammerspaceSize: {
  24169. height: math.unit(6.71 * 717, "feet"),
  24170. weight: math.unit(200, "lb"),
  24171. capacity: math.unit(1000000, "people"),
  24172. name: "Hammerspace Size",
  24173. image: {
  24174. source: "./media/characters/gliss/front.svg",
  24175. extra: 2347 / 2231,
  24176. bottom: 113 / 2462
  24177. }
  24178. },
  24179. },
  24180. [
  24181. {
  24182. name: "Normal",
  24183. height: math.unit(6.71, "feet"),
  24184. default: true
  24185. },
  24186. ]
  24187. ))
  24188. characterMakers.push(() => makeCharacter(
  24189. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24190. {
  24191. side: {
  24192. height: math.unit(1.44, "m"),
  24193. weight: math.unit(80, "kg"),
  24194. name: "Side",
  24195. image: {
  24196. source: "./media/characters/dune-anderson/side.svg",
  24197. bottom: 49 / 1426
  24198. }
  24199. },
  24200. },
  24201. [
  24202. {
  24203. name: "Wolf-sized",
  24204. height: math.unit(1.44, "meters")
  24205. },
  24206. {
  24207. name: "Normal",
  24208. height: math.unit(5.05, "meters"),
  24209. default: true
  24210. },
  24211. {
  24212. name: "Big",
  24213. height: math.unit(14.4, "meters")
  24214. },
  24215. {
  24216. name: "Huge",
  24217. height: math.unit(144, "meters")
  24218. },
  24219. ]
  24220. ))
  24221. characterMakers.push(() => makeCharacter(
  24222. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24223. {
  24224. front: {
  24225. height: math.unit(7, "feet"),
  24226. weight: math.unit(425, "lb"),
  24227. name: "Front",
  24228. image: {
  24229. source: "./media/characters/hind/front.svg",
  24230. extra: 2091 / 1860,
  24231. bottom: 129 / 2220
  24232. }
  24233. },
  24234. back: {
  24235. height: math.unit(7, "feet"),
  24236. weight: math.unit(425, "lb"),
  24237. name: "Back",
  24238. image: {
  24239. source: "./media/characters/hind/back.svg",
  24240. extra: 2091 / 1860,
  24241. bottom: 24.6 / 2309
  24242. }
  24243. },
  24244. tail: {
  24245. height: math.unit(2.8, "feet"),
  24246. name: "Tail",
  24247. image: {
  24248. source: "./media/characters/hind/tail.svg"
  24249. }
  24250. },
  24251. head: {
  24252. height: math.unit(2.55, "feet"),
  24253. name: "Head",
  24254. image: {
  24255. source: "./media/characters/hind/head.svg"
  24256. }
  24257. },
  24258. },
  24259. [
  24260. {
  24261. name: "XS",
  24262. height: math.unit(0.7, "feet")
  24263. },
  24264. {
  24265. name: "Normal",
  24266. height: math.unit(7, "feet"),
  24267. default: true
  24268. },
  24269. {
  24270. name: "XL",
  24271. height: math.unit(70, "feet")
  24272. },
  24273. ]
  24274. ))
  24275. characterMakers.push(() => makeCharacter(
  24276. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24277. {
  24278. front: {
  24279. height: math.unit(6, "feet"),
  24280. weight: math.unit(150, "lb"),
  24281. name: "Front",
  24282. image: {
  24283. source: "./media/characters/dylan-skaven/front.svg",
  24284. extra: 2318 / 2063,
  24285. bottom: 93.4 / 2410
  24286. }
  24287. },
  24288. },
  24289. [
  24290. {
  24291. name: "Nano",
  24292. height: math.unit(1, "mm")
  24293. },
  24294. {
  24295. name: "Micro",
  24296. height: math.unit(1, "cm")
  24297. },
  24298. {
  24299. name: "Normal",
  24300. height: math.unit(2.1, "meters"),
  24301. default: true
  24302. },
  24303. ]
  24304. ))
  24305. characterMakers.push(() => makeCharacter(
  24306. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24307. {
  24308. front: {
  24309. height: math.unit(7 + 5 / 12, "feet"),
  24310. weight: math.unit(357, "lb"),
  24311. name: "Front",
  24312. image: {
  24313. source: "./media/characters/solex-draconov/front.svg",
  24314. extra: 1993 / 1865,
  24315. bottom: 117 / 2111
  24316. }
  24317. },
  24318. },
  24319. [
  24320. {
  24321. name: "Natural Height",
  24322. height: math.unit(7 + 5 / 12, "feet"),
  24323. default: true
  24324. },
  24325. {
  24326. name: "Macro",
  24327. height: math.unit(350, "feet")
  24328. },
  24329. {
  24330. name: "Macro+",
  24331. height: math.unit(1000, "feet")
  24332. },
  24333. {
  24334. name: "Megamacro",
  24335. height: math.unit(20, "km")
  24336. },
  24337. {
  24338. name: "Megamacro+",
  24339. height: math.unit(1000, "km")
  24340. },
  24341. {
  24342. name: "Gigamacro",
  24343. height: math.unit(2.5, "Gm")
  24344. },
  24345. {
  24346. name: "Teramacro",
  24347. height: math.unit(15, "Tm")
  24348. },
  24349. {
  24350. name: "Galactic",
  24351. height: math.unit(30, "Zm")
  24352. },
  24353. {
  24354. name: "Universal",
  24355. height: math.unit(21000, "Ym")
  24356. },
  24357. {
  24358. name: "Omniversal",
  24359. height: math.unit(9.861e50, "Ym")
  24360. },
  24361. {
  24362. name: "Existential",
  24363. height: math.unit(1e300, "meters")
  24364. },
  24365. ]
  24366. ))
  24367. characterMakers.push(() => makeCharacter(
  24368. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24369. {
  24370. side: {
  24371. height: math.unit(25, "feet"),
  24372. weight: math.unit(90000, "lb"),
  24373. name: "Side",
  24374. image: {
  24375. source: "./media/characters/mandarax/side.svg",
  24376. extra: 614 / 332,
  24377. bottom: 55 / 630
  24378. }
  24379. },
  24380. head: {
  24381. height: math.unit(11.4, "feet"),
  24382. name: "Head",
  24383. image: {
  24384. source: "./media/characters/mandarax/head.svg"
  24385. }
  24386. },
  24387. belly: {
  24388. height: math.unit(33, "feet"),
  24389. name: "Belly",
  24390. capacity: math.unit(500, "people"),
  24391. image: {
  24392. source: "./media/characters/mandarax/belly.svg"
  24393. }
  24394. },
  24395. dick: {
  24396. height: math.unit(8.46, "feet"),
  24397. name: "Dick",
  24398. image: {
  24399. source: "./media/characters/mandarax/dick.svg"
  24400. }
  24401. },
  24402. top: {
  24403. height: math.unit(28, "meters"),
  24404. name: "Top",
  24405. image: {
  24406. source: "./media/characters/mandarax/top.svg"
  24407. }
  24408. },
  24409. },
  24410. [
  24411. {
  24412. name: "Normal",
  24413. height: math.unit(25, "feet"),
  24414. default: true
  24415. },
  24416. ]
  24417. ))
  24418. characterMakers.push(() => makeCharacter(
  24419. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24420. {
  24421. front: {
  24422. height: math.unit(5, "feet"),
  24423. weight: math.unit(90, "lb"),
  24424. name: "Front",
  24425. image: {
  24426. source: "./media/characters/pixil/front.svg",
  24427. extra: 2000 / 1618,
  24428. bottom: 12.3 / 2011
  24429. }
  24430. },
  24431. },
  24432. [
  24433. {
  24434. name: "Normal",
  24435. height: math.unit(5, "feet"),
  24436. default: true
  24437. },
  24438. {
  24439. name: "Megamacro",
  24440. height: math.unit(10, "miles"),
  24441. },
  24442. ]
  24443. ))
  24444. characterMakers.push(() => makeCharacter(
  24445. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24446. {
  24447. front: {
  24448. height: math.unit(7 + 2 / 12, "feet"),
  24449. weight: math.unit(200, "lb"),
  24450. name: "Front",
  24451. image: {
  24452. source: "./media/characters/angel/front.svg",
  24453. extra: 1830 / 1737,
  24454. bottom: 22.6 / 1854,
  24455. }
  24456. },
  24457. },
  24458. [
  24459. {
  24460. name: "Normal",
  24461. height: math.unit(7 + 2 / 12, "feet"),
  24462. default: true
  24463. },
  24464. {
  24465. name: "Macro",
  24466. height: math.unit(1000, "feet")
  24467. },
  24468. {
  24469. name: "Megamacro",
  24470. height: math.unit(2, "miles")
  24471. },
  24472. {
  24473. name: "Gigamacro",
  24474. height: math.unit(20, "earths")
  24475. },
  24476. ]
  24477. ))
  24478. characterMakers.push(() => makeCharacter(
  24479. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24480. {
  24481. front: {
  24482. height: math.unit(5, "feet"),
  24483. weight: math.unit(180, "lb"),
  24484. name: "Front",
  24485. image: {
  24486. source: "./media/characters/mekana/front.svg",
  24487. extra: 1671 / 1605,
  24488. bottom: 3.5 / 1691
  24489. }
  24490. },
  24491. side: {
  24492. height: math.unit(5, "feet"),
  24493. weight: math.unit(180, "lb"),
  24494. name: "Side",
  24495. image: {
  24496. source: "./media/characters/mekana/side.svg",
  24497. extra: 1671 / 1605,
  24498. bottom: 3.5 / 1691
  24499. }
  24500. },
  24501. back: {
  24502. height: math.unit(5, "feet"),
  24503. weight: math.unit(180, "lb"),
  24504. name: "Back",
  24505. image: {
  24506. source: "./media/characters/mekana/back.svg",
  24507. extra: 1671 / 1605,
  24508. bottom: 3.5 / 1691
  24509. }
  24510. },
  24511. },
  24512. [
  24513. {
  24514. name: "Normal",
  24515. height: math.unit(5, "feet"),
  24516. default: true
  24517. },
  24518. ]
  24519. ))
  24520. characterMakers.push(() => makeCharacter(
  24521. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24522. {
  24523. front: {
  24524. height: math.unit(4 + 6 / 12, "feet"),
  24525. weight: math.unit(80, "lb"),
  24526. name: "Front",
  24527. image: {
  24528. source: "./media/characters/pixie/front.svg",
  24529. extra: 1924 / 1825,
  24530. bottom: 22.4 / 1946
  24531. }
  24532. },
  24533. },
  24534. [
  24535. {
  24536. name: "Normal",
  24537. height: math.unit(4 + 6 / 12, "feet"),
  24538. default: true
  24539. },
  24540. {
  24541. name: "Macro",
  24542. height: math.unit(40, "feet")
  24543. },
  24544. ]
  24545. ))
  24546. characterMakers.push(() => makeCharacter(
  24547. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24548. {
  24549. front: {
  24550. height: math.unit(2.1, "meters"),
  24551. weight: math.unit(200, "lb"),
  24552. name: "Front",
  24553. image: {
  24554. source: "./media/characters/the-lascivious/front.svg",
  24555. extra: 1 / 0.893,
  24556. bottom: 3.5 / 573.7
  24557. }
  24558. },
  24559. },
  24560. [
  24561. {
  24562. name: "Human Scale",
  24563. height: math.unit(2.1, "meters")
  24564. },
  24565. {
  24566. name: "Wolxi Scale",
  24567. height: math.unit(46.2, "m"),
  24568. default: true
  24569. },
  24570. {
  24571. name: "Boinker of Buildings",
  24572. height: math.unit(10, "km")
  24573. },
  24574. {
  24575. name: "Shagger of Skyscrapers",
  24576. height: math.unit(40, "km")
  24577. },
  24578. {
  24579. name: "Banger of Boroughs",
  24580. height: math.unit(4000, "km")
  24581. },
  24582. {
  24583. name: "Screwer of States",
  24584. height: math.unit(100000, "km")
  24585. },
  24586. {
  24587. name: "Pounder of Planets",
  24588. height: math.unit(2000000, "km")
  24589. },
  24590. ]
  24591. ))
  24592. characterMakers.push(() => makeCharacter(
  24593. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24594. {
  24595. front: {
  24596. height: math.unit(6, "feet"),
  24597. weight: math.unit(150, "lb"),
  24598. name: "Front",
  24599. image: {
  24600. source: "./media/characters/aj/front.svg",
  24601. extra: 2039 / 1562,
  24602. bottom: 40 / 2079
  24603. }
  24604. },
  24605. },
  24606. [
  24607. {
  24608. name: "Normal",
  24609. height: math.unit(11 + 6 / 12, "feet"),
  24610. default: true
  24611. },
  24612. {
  24613. name: "Megamacro",
  24614. height: math.unit(60, "megameters")
  24615. },
  24616. ]
  24617. ))
  24618. characterMakers.push(() => makeCharacter(
  24619. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24620. {
  24621. side: {
  24622. height: math.unit(31 + 8 / 12, "feet"),
  24623. weight: math.unit(75000, "kg"),
  24624. name: "Side",
  24625. image: {
  24626. source: "./media/characters/koros/side.svg",
  24627. extra: 1442 / 1297,
  24628. bottom: 122.7 / 1562
  24629. }
  24630. },
  24631. dicksKingsCrown: {
  24632. height: math.unit(6, "feet"),
  24633. name: "Dicks (King's Crown)",
  24634. image: {
  24635. source: "./media/characters/koros/dicks-kings-crown.svg"
  24636. }
  24637. },
  24638. dicksTailSet: {
  24639. height: math.unit(3, "feet"),
  24640. name: "Dicks (Tail Set)",
  24641. image: {
  24642. source: "./media/characters/koros/dicks-tail-set.svg"
  24643. }
  24644. },
  24645. dickCumming: {
  24646. height: math.unit(7.98, "feet"),
  24647. name: "Dick (Cumming)",
  24648. image: {
  24649. source: "./media/characters/koros/dick-cumming.svg"
  24650. }
  24651. },
  24652. dicksBack: {
  24653. height: math.unit(5.9, "feet"),
  24654. name: "Dicks (Back)",
  24655. image: {
  24656. source: "./media/characters/koros/dicks-back.svg"
  24657. }
  24658. },
  24659. dicksFront: {
  24660. height: math.unit(3.72, "feet"),
  24661. name: "Dicks (Front)",
  24662. image: {
  24663. source: "./media/characters/koros/dicks-front.svg"
  24664. }
  24665. },
  24666. dicksPeeking: {
  24667. height: math.unit(3.0, "feet"),
  24668. name: "Dicks (Peeking)",
  24669. image: {
  24670. source: "./media/characters/koros/dicks-peeking.svg"
  24671. }
  24672. },
  24673. eye: {
  24674. height: math.unit(1.7, "feet"),
  24675. name: "Eye",
  24676. image: {
  24677. source: "./media/characters/koros/eye.svg"
  24678. }
  24679. },
  24680. headFront: {
  24681. height: math.unit(11.69, "feet"),
  24682. name: "Head (Front)",
  24683. image: {
  24684. source: "./media/characters/koros/head-front.svg"
  24685. }
  24686. },
  24687. headSide: {
  24688. height: math.unit(14, "feet"),
  24689. name: "Head (Side)",
  24690. image: {
  24691. source: "./media/characters/koros/head-side.svg"
  24692. }
  24693. },
  24694. leg: {
  24695. height: math.unit(17, "feet"),
  24696. name: "Leg",
  24697. image: {
  24698. source: "./media/characters/koros/leg.svg"
  24699. }
  24700. },
  24701. mawSide: {
  24702. height: math.unit(12.8, "feet"),
  24703. name: "Maw (Side)",
  24704. image: {
  24705. source: "./media/characters/koros/maw-side.svg"
  24706. }
  24707. },
  24708. mawSpitting: {
  24709. height: math.unit(17, "feet"),
  24710. name: "Maw (Spitting)",
  24711. image: {
  24712. source: "./media/characters/koros/maw-spitting.svg"
  24713. }
  24714. },
  24715. slit: {
  24716. height: math.unit(2.8, "feet"),
  24717. name: "Slit",
  24718. image: {
  24719. source: "./media/characters/koros/slit.svg"
  24720. }
  24721. },
  24722. stomach: {
  24723. height: math.unit(6.8, "feet"),
  24724. capacity: math.unit(20, "people"),
  24725. name: "Stomach",
  24726. image: {
  24727. source: "./media/characters/koros/stomach.svg"
  24728. }
  24729. },
  24730. wingspanBottom: {
  24731. height: math.unit(114, "feet"),
  24732. name: "Wingspan (Bottom)",
  24733. image: {
  24734. source: "./media/characters/koros/wingspan-bottom.svg"
  24735. }
  24736. },
  24737. wingspanTop: {
  24738. height: math.unit(104, "feet"),
  24739. name: "Wingspan (Top)",
  24740. image: {
  24741. source: "./media/characters/koros/wingspan-top.svg"
  24742. }
  24743. },
  24744. },
  24745. [
  24746. {
  24747. name: "Normal",
  24748. height: math.unit(31 + 8 / 12, "feet"),
  24749. default: true
  24750. },
  24751. ]
  24752. ))
  24753. characterMakers.push(() => makeCharacter(
  24754. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24755. {
  24756. front: {
  24757. height: math.unit(18 + 5 / 12, "feet"),
  24758. weight: math.unit(3750, "kg"),
  24759. name: "Front",
  24760. image: {
  24761. source: "./media/characters/vexx/front.svg",
  24762. extra: 426 / 396,
  24763. bottom: 31.5 / 458
  24764. }
  24765. },
  24766. maw: {
  24767. height: math.unit(6, "feet"),
  24768. name: "Maw",
  24769. image: {
  24770. source: "./media/characters/vexx/maw.svg"
  24771. }
  24772. },
  24773. },
  24774. [
  24775. {
  24776. name: "Normal",
  24777. height: math.unit(18 + 5 / 12, "feet"),
  24778. default: true
  24779. },
  24780. ]
  24781. ))
  24782. characterMakers.push(() => makeCharacter(
  24783. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24784. {
  24785. front: {
  24786. height: math.unit(17 + 6 / 12, "feet"),
  24787. weight: math.unit(150, "lb"),
  24788. name: "Front",
  24789. image: {
  24790. source: "./media/characters/baadra/front.svg",
  24791. extra: 3137 / 2890,
  24792. bottom: 168.4 / 3305
  24793. }
  24794. },
  24795. back: {
  24796. height: math.unit(17 + 6 / 12, "feet"),
  24797. weight: math.unit(150, "lb"),
  24798. name: "Back",
  24799. image: {
  24800. source: "./media/characters/baadra/back.svg",
  24801. extra: 3142 / 2890,
  24802. bottom: 220 / 3371
  24803. }
  24804. },
  24805. head: {
  24806. height: math.unit(5.45, "feet"),
  24807. name: "Head",
  24808. image: {
  24809. source: "./media/characters/baadra/head.svg"
  24810. }
  24811. },
  24812. headAngry: {
  24813. height: math.unit(4.95, "feet"),
  24814. name: "Head (Angry)",
  24815. image: {
  24816. source: "./media/characters/baadra/head-angry.svg"
  24817. }
  24818. },
  24819. headOpen: {
  24820. height: math.unit(6, "feet"),
  24821. name: "Head (Open)",
  24822. image: {
  24823. source: "./media/characters/baadra/head-open.svg"
  24824. }
  24825. },
  24826. },
  24827. [
  24828. {
  24829. name: "Normal",
  24830. height: math.unit(17 + 6 / 12, "feet"),
  24831. default: true
  24832. },
  24833. ]
  24834. ))
  24835. characterMakers.push(() => makeCharacter(
  24836. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24837. {
  24838. front: {
  24839. height: math.unit(7 + 3 / 12, "feet"),
  24840. weight: math.unit(180, "lb"),
  24841. name: "Front",
  24842. image: {
  24843. source: "./media/characters/juri/front.svg",
  24844. extra: 1401 / 1237,
  24845. bottom: 18.5 / 1418
  24846. }
  24847. },
  24848. side: {
  24849. height: math.unit(7 + 3 / 12, "feet"),
  24850. weight: math.unit(180, "lb"),
  24851. name: "Side",
  24852. image: {
  24853. source: "./media/characters/juri/side.svg",
  24854. extra: 1424 / 1242,
  24855. bottom: 18.5 / 1447
  24856. }
  24857. },
  24858. sitting: {
  24859. height: math.unit(6, "feet"),
  24860. weight: math.unit(180, "lb"),
  24861. name: "Sitting",
  24862. image: {
  24863. source: "./media/characters/juri/sitting.svg",
  24864. extra: 1270 / 1143,
  24865. bottom: 100 / 1343
  24866. }
  24867. },
  24868. back: {
  24869. height: math.unit(7 + 3 / 12, "feet"),
  24870. weight: math.unit(180, "lb"),
  24871. name: "Back",
  24872. image: {
  24873. source: "./media/characters/juri/back.svg",
  24874. extra: 1377 / 1240,
  24875. bottom: 23.7 / 1405
  24876. }
  24877. },
  24878. maw: {
  24879. height: math.unit(2.8, "feet"),
  24880. name: "Maw",
  24881. image: {
  24882. source: "./media/characters/juri/maw.svg"
  24883. }
  24884. },
  24885. stomach: {
  24886. height: math.unit(0.89, "feet"),
  24887. capacity: math.unit(4, "liters"),
  24888. name: "Stomach",
  24889. image: {
  24890. source: "./media/characters/juri/stomach.svg"
  24891. }
  24892. },
  24893. },
  24894. [
  24895. {
  24896. name: "Normal",
  24897. height: math.unit(7 + 3 / 12, "feet"),
  24898. default: true
  24899. },
  24900. ]
  24901. ))
  24902. characterMakers.push(() => makeCharacter(
  24903. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  24904. {
  24905. fox: {
  24906. height: math.unit(5 + 6 / 12, "feet"),
  24907. weight: math.unit(140, "lb"),
  24908. name: "Fox",
  24909. image: {
  24910. source: "./media/characters/maxene-sita/fox.svg",
  24911. extra: 146 / 138,
  24912. bottom: 2.1 / 148.19
  24913. }
  24914. },
  24915. foxLaying: {
  24916. height: math.unit(1.70, "feet"),
  24917. weight: math.unit(140, "lb"),
  24918. name: "Fox (Laying)",
  24919. image: {
  24920. source: "./media/characters/maxene-sita/fox-laying.svg",
  24921. extra: 910 / 572,
  24922. bottom: 71 / 981
  24923. }
  24924. },
  24925. kitsune: {
  24926. height: math.unit(10, "feet"),
  24927. weight: math.unit(800, "lb"),
  24928. name: "Kitsune",
  24929. image: {
  24930. source: "./media/characters/maxene-sita/kitsune.svg",
  24931. extra: 185 / 176,
  24932. bottom: 4.7 / 189.9
  24933. }
  24934. },
  24935. hellhound: {
  24936. height: math.unit(10, "feet"),
  24937. weight: math.unit(700, "lb"),
  24938. name: "Hellhound",
  24939. image: {
  24940. source: "./media/characters/maxene-sita/hellhound.svg",
  24941. extra: 1600 / 1545,
  24942. bottom: 81 / 1681
  24943. }
  24944. },
  24945. },
  24946. [
  24947. {
  24948. name: "Normal",
  24949. height: math.unit(5 + 6 / 12, "feet"),
  24950. default: true
  24951. },
  24952. ]
  24953. ))
  24954. characterMakers.push(() => makeCharacter(
  24955. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24956. {
  24957. front: {
  24958. height: math.unit(3 + 4 / 12, "feet"),
  24959. weight: math.unit(70, "lb"),
  24960. name: "Front",
  24961. image: {
  24962. source: "./media/characters/maia/front.svg",
  24963. extra: 227 / 219.5,
  24964. bottom: 40 / 267
  24965. }
  24966. },
  24967. back: {
  24968. height: math.unit(3 + 4 / 12, "feet"),
  24969. weight: math.unit(70, "lb"),
  24970. name: "Back",
  24971. image: {
  24972. source: "./media/characters/maia/back.svg",
  24973. extra: 237 / 225
  24974. }
  24975. },
  24976. },
  24977. [
  24978. {
  24979. name: "Normal",
  24980. height: math.unit(3 + 4 / 12, "feet"),
  24981. default: true
  24982. },
  24983. ]
  24984. ))
  24985. characterMakers.push(() => makeCharacter(
  24986. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24987. {
  24988. front: {
  24989. height: math.unit(5 + 10 / 12, "feet"),
  24990. weight: math.unit(197, "lb"),
  24991. name: "Front",
  24992. image: {
  24993. source: "./media/characters/jabaro/front.svg",
  24994. extra: 225 / 216,
  24995. bottom: 5.06 / 230
  24996. }
  24997. },
  24998. back: {
  24999. height: math.unit(5 + 10 / 12, "feet"),
  25000. weight: math.unit(197, "lb"),
  25001. name: "Back",
  25002. image: {
  25003. source: "./media/characters/jabaro/back.svg",
  25004. extra: 225 / 219,
  25005. bottom: 1.9 / 227
  25006. }
  25007. },
  25008. },
  25009. [
  25010. {
  25011. name: "Normal",
  25012. height: math.unit(5 + 10 / 12, "feet"),
  25013. default: true
  25014. },
  25015. ]
  25016. ))
  25017. characterMakers.push(() => makeCharacter(
  25018. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25019. {
  25020. front: {
  25021. height: math.unit(5 + 8 / 12, "feet"),
  25022. weight: math.unit(139, "lb"),
  25023. name: "Front",
  25024. image: {
  25025. source: "./media/characters/risa/front.svg",
  25026. extra: 270 / 260,
  25027. bottom: 11.2 / 282
  25028. }
  25029. },
  25030. back: {
  25031. height: math.unit(5 + 8 / 12, "feet"),
  25032. weight: math.unit(139, "lb"),
  25033. name: "Back",
  25034. image: {
  25035. source: "./media/characters/risa/back.svg",
  25036. extra: 264 / 255,
  25037. bottom: 4 / 268
  25038. }
  25039. },
  25040. },
  25041. [
  25042. {
  25043. name: "Normal",
  25044. height: math.unit(5 + 8 / 12, "feet"),
  25045. default: true
  25046. },
  25047. ]
  25048. ))
  25049. characterMakers.push(() => makeCharacter(
  25050. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25051. {
  25052. front: {
  25053. height: math.unit(2 + 11 / 12, "feet"),
  25054. weight: math.unit(30, "lb"),
  25055. name: "Front",
  25056. image: {
  25057. source: "./media/characters/weatley/front.svg",
  25058. bottom: 10.7 / 414,
  25059. extra: 403.5 / 362
  25060. }
  25061. },
  25062. back: {
  25063. height: math.unit(2 + 11 / 12, "feet"),
  25064. weight: math.unit(30, "lb"),
  25065. name: "Back",
  25066. image: {
  25067. source: "./media/characters/weatley/back.svg",
  25068. bottom: 10.7 / 414,
  25069. extra: 403.5 / 362
  25070. }
  25071. },
  25072. },
  25073. [
  25074. {
  25075. name: "Normal",
  25076. height: math.unit(2 + 11 / 12, "feet"),
  25077. default: true
  25078. },
  25079. ]
  25080. ))
  25081. characterMakers.push(() => makeCharacter(
  25082. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25083. {
  25084. front: {
  25085. height: math.unit(5 + 2 / 12, "feet"),
  25086. weight: math.unit(50, "kg"),
  25087. name: "Front",
  25088. image: {
  25089. source: "./media/characters/mercury-crescent/front.svg",
  25090. extra: 1088 / 1033,
  25091. bottom: 18.9 / 1109
  25092. }
  25093. },
  25094. },
  25095. [
  25096. {
  25097. name: "Normal",
  25098. height: math.unit(5 + 2 / 12, "feet"),
  25099. default: true
  25100. },
  25101. ]
  25102. ))
  25103. characterMakers.push(() => makeCharacter(
  25104. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25105. {
  25106. front: {
  25107. height: math.unit(2, "feet"),
  25108. weight: math.unit(15, "kg"),
  25109. name: "Front",
  25110. image: {
  25111. source: "./media/characters/diamond-jones/front.svg",
  25112. bottom: 16 / 568
  25113. }
  25114. },
  25115. },
  25116. [
  25117. {
  25118. name: "Normal",
  25119. height: math.unit(2, "feet"),
  25120. default: true
  25121. },
  25122. ]
  25123. ))
  25124. characterMakers.push(() => makeCharacter(
  25125. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25126. {
  25127. front: {
  25128. height: math.unit(3, "feet"),
  25129. weight: math.unit(30, "kg"),
  25130. name: "Front",
  25131. image: {
  25132. source: "./media/characters/sweet-bit/front.svg",
  25133. extra: 675 / 567,
  25134. bottom: 27.7 / 703
  25135. }
  25136. },
  25137. },
  25138. [
  25139. {
  25140. name: "Normal",
  25141. height: math.unit(3, "feet"),
  25142. default: true
  25143. },
  25144. ]
  25145. ))
  25146. characterMakers.push(() => makeCharacter(
  25147. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25148. {
  25149. side: {
  25150. height: math.unit(9.178, "feet"),
  25151. weight: math.unit(500, "lb"),
  25152. name: "Side",
  25153. image: {
  25154. source: "./media/characters/umbrazen/side.svg",
  25155. extra: 1730 / 1473,
  25156. bottom: 34.6 / 1765
  25157. }
  25158. },
  25159. },
  25160. [
  25161. {
  25162. name: "Normal",
  25163. height: math.unit(9.178, "feet"),
  25164. default: true
  25165. },
  25166. ]
  25167. ))
  25168. characterMakers.push(() => makeCharacter(
  25169. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25170. {
  25171. front: {
  25172. height: math.unit(10, "feet"),
  25173. weight: math.unit(750, "lb"),
  25174. name: "Front",
  25175. image: {
  25176. source: "./media/characters/arlist/front.svg",
  25177. extra: 961 / 778,
  25178. bottom: 6.2 / 986
  25179. }
  25180. },
  25181. },
  25182. [
  25183. {
  25184. name: "Normal",
  25185. height: math.unit(10, "feet"),
  25186. default: true
  25187. },
  25188. ]
  25189. ))
  25190. characterMakers.push(() => makeCharacter(
  25191. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25192. {
  25193. front: {
  25194. height: math.unit(5 + 1 / 12, "feet"),
  25195. weight: math.unit(110, "lb"),
  25196. name: "Front",
  25197. image: {
  25198. source: "./media/characters/aradel/front.svg",
  25199. extra: 324 / 303,
  25200. bottom: 3.6 / 329.4
  25201. }
  25202. },
  25203. },
  25204. [
  25205. {
  25206. name: "Normal",
  25207. height: math.unit(5 + 1 / 12, "feet"),
  25208. default: true
  25209. },
  25210. ]
  25211. ))
  25212. characterMakers.push(() => makeCharacter(
  25213. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25214. {
  25215. front: {
  25216. height: math.unit(3 + 8 / 12, "feet"),
  25217. weight: math.unit(50, "lb"),
  25218. name: "Front",
  25219. image: {
  25220. source: "./media/characters/serryn/front.svg",
  25221. extra: 1792 / 1656,
  25222. bottom: 43.5 / 1840
  25223. }
  25224. },
  25225. },
  25226. [
  25227. {
  25228. name: "Normal",
  25229. height: math.unit(3 + 8 / 12, "feet"),
  25230. default: true
  25231. },
  25232. ]
  25233. ))
  25234. characterMakers.push(() => makeCharacter(
  25235. { name: "Xavier Thyme" },
  25236. {
  25237. front: {
  25238. height: math.unit(7 + 10 / 12, "feet"),
  25239. weight: math.unit(255, "lb"),
  25240. name: "Front",
  25241. image: {
  25242. source: "./media/characters/xavier-thyme/front.svg",
  25243. extra: 3733 / 3642,
  25244. bottom: 131 / 3869
  25245. }
  25246. },
  25247. frontRaven: {
  25248. height: math.unit(7 + 10 / 12, "feet"),
  25249. weight: math.unit(255, "lb"),
  25250. name: "Front (Raven)",
  25251. image: {
  25252. source: "./media/characters/xavier-thyme/front-raven.svg",
  25253. extra: 4385 / 3642,
  25254. bottom: 131 / 4517
  25255. }
  25256. },
  25257. },
  25258. [
  25259. {
  25260. name: "Normal",
  25261. height: math.unit(7 + 10 / 12, "feet"),
  25262. default: true
  25263. },
  25264. ]
  25265. ))
  25266. characterMakers.push(() => makeCharacter(
  25267. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25268. {
  25269. front: {
  25270. height: math.unit(1.6, "m"),
  25271. weight: math.unit(50, "kg"),
  25272. name: "Front",
  25273. image: {
  25274. source: "./media/characters/kiki/front.svg",
  25275. extra: 4682 / 3610,
  25276. bottom: 115 / 4777
  25277. }
  25278. },
  25279. },
  25280. [
  25281. {
  25282. name: "Normal",
  25283. height: math.unit(1.6, "meters"),
  25284. default: true
  25285. },
  25286. ]
  25287. ))
  25288. characterMakers.push(() => makeCharacter(
  25289. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25290. {
  25291. front: {
  25292. height: math.unit(50, "m"),
  25293. weight: math.unit(500, "tonnes"),
  25294. name: "Front",
  25295. image: {
  25296. source: "./media/characters/ryoko/front.svg",
  25297. extra: 4632 / 3926,
  25298. bottom: 193 / 4823
  25299. }
  25300. },
  25301. },
  25302. [
  25303. {
  25304. name: "Normal",
  25305. height: math.unit(50, "meters"),
  25306. default: true
  25307. },
  25308. ]
  25309. ))
  25310. characterMakers.push(() => makeCharacter(
  25311. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25312. {
  25313. front: {
  25314. height: math.unit(30, "m"),
  25315. weight: math.unit(22, "tonnes"),
  25316. name: "Front",
  25317. image: {
  25318. source: "./media/characters/elio/front.svg",
  25319. extra: 4582 / 3720,
  25320. bottom: 236 / 4828
  25321. }
  25322. },
  25323. },
  25324. [
  25325. {
  25326. name: "Normal",
  25327. height: math.unit(30, "meters"),
  25328. default: true
  25329. },
  25330. ]
  25331. ))
  25332. characterMakers.push(() => makeCharacter(
  25333. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25334. {
  25335. front: {
  25336. height: math.unit(6 + 3 / 12, "feet"),
  25337. weight: math.unit(120, "lb"),
  25338. name: "Front",
  25339. image: {
  25340. source: "./media/characters/azura/front.svg",
  25341. extra: 1149 / 1135,
  25342. bottom: 45 / 1194
  25343. }
  25344. },
  25345. frontClothed: {
  25346. height: math.unit(6 + 3 / 12, "feet"),
  25347. weight: math.unit(120, "lb"),
  25348. name: "Front (Clothed)",
  25349. image: {
  25350. source: "./media/characters/azura/front-clothed.svg",
  25351. extra: 1149 / 1135,
  25352. bottom: 45 / 1194
  25353. }
  25354. },
  25355. },
  25356. [
  25357. {
  25358. name: "Normal",
  25359. height: math.unit(6 + 3 / 12, "feet"),
  25360. default: true
  25361. },
  25362. {
  25363. name: "Macro",
  25364. height: math.unit(20 + 6 / 12, "feet")
  25365. },
  25366. {
  25367. name: "Megamacro",
  25368. height: math.unit(12, "miles")
  25369. },
  25370. {
  25371. name: "Gigamacro",
  25372. height: math.unit(10000, "miles")
  25373. },
  25374. {
  25375. name: "Teramacro",
  25376. height: math.unit(900000, "miles")
  25377. },
  25378. ]
  25379. ))
  25380. characterMakers.push(() => makeCharacter(
  25381. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25382. {
  25383. front: {
  25384. height: math.unit(12, "feet"),
  25385. weight: math.unit(1, "ton"),
  25386. capacity: math.unit(660000, "gallons"),
  25387. name: "Front",
  25388. image: {
  25389. source: "./media/characters/zeus/front.svg",
  25390. extra: 5005 / 4717,
  25391. bottom: 363 / 5388
  25392. }
  25393. },
  25394. },
  25395. [
  25396. {
  25397. name: "Normal",
  25398. height: math.unit(12, "feet")
  25399. },
  25400. {
  25401. name: "Preferred Size",
  25402. height: math.unit(0.5, "miles"),
  25403. default: true
  25404. },
  25405. {
  25406. name: "Giga Horse",
  25407. height: math.unit(300, "miles")
  25408. },
  25409. {
  25410. name: "Riding Planets",
  25411. height: math.unit(30, "megameters")
  25412. },
  25413. {
  25414. name: "Cosmic Giant",
  25415. height: math.unit(3, "zettameters")
  25416. },
  25417. {
  25418. name: "Breeding God",
  25419. height: math.unit(9.92e22, "yottameters")
  25420. },
  25421. ]
  25422. ))
  25423. characterMakers.push(() => makeCharacter(
  25424. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25425. {
  25426. side: {
  25427. height: math.unit(9, "feet"),
  25428. weight: math.unit(1500, "kg"),
  25429. name: "Side",
  25430. image: {
  25431. source: "./media/characters/fang/side.svg",
  25432. extra: 924 / 866,
  25433. bottom: 47.5 / 972.3
  25434. }
  25435. },
  25436. },
  25437. [
  25438. {
  25439. name: "Normal",
  25440. height: math.unit(9, "feet"),
  25441. default: true
  25442. },
  25443. {
  25444. name: "Macro",
  25445. height: math.unit(75 + 6 / 12, "feet")
  25446. },
  25447. {
  25448. name: "Teramacro",
  25449. height: math.unit(50000, "miles")
  25450. },
  25451. ]
  25452. ))
  25453. characterMakers.push(() => makeCharacter(
  25454. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25455. {
  25456. front: {
  25457. height: math.unit(10, "feet"),
  25458. weight: math.unit(2, "tons"),
  25459. name: "Front",
  25460. image: {
  25461. source: "./media/characters/rekhit/front.svg",
  25462. extra: 2796 / 2590,
  25463. bottom: 225 / 3022
  25464. }
  25465. },
  25466. },
  25467. [
  25468. {
  25469. name: "Normal",
  25470. height: math.unit(10, "feet"),
  25471. default: true
  25472. },
  25473. {
  25474. name: "Macro",
  25475. height: math.unit(500, "feet")
  25476. },
  25477. ]
  25478. ))
  25479. characterMakers.push(() => makeCharacter(
  25480. { name: "Dahlia Verrick" },
  25481. {
  25482. front: {
  25483. height: math.unit(7 + 6.451 / 12, "feet"),
  25484. weight: math.unit(310, "lb"),
  25485. name: "Front",
  25486. image: {
  25487. source: "./media/characters/dahlia-verrick/front.svg",
  25488. extra: 1488 / 1365,
  25489. bottom: 6.2 / 1495
  25490. }
  25491. },
  25492. back: {
  25493. height: math.unit(7 + 6.451 / 12, "feet"),
  25494. weight: math.unit(310, "lb"),
  25495. name: "Back",
  25496. image: {
  25497. source: "./media/characters/dahlia-verrick/back.svg",
  25498. extra: 1472 / 1351,
  25499. bottom: 5.28 / 1477
  25500. }
  25501. },
  25502. frontBusiness: {
  25503. height: math.unit(7 + 6.451 / 12, "feet"),
  25504. weight: math.unit(200, "lb"),
  25505. name: "Front (Business)",
  25506. image: {
  25507. source: "./media/characters/dahlia-verrick/front-business.svg",
  25508. extra: 1478 / 1381,
  25509. bottom: 5.5 / 1484
  25510. }
  25511. },
  25512. frontCasual: {
  25513. height: math.unit(7 + 6.451 / 12, "feet"),
  25514. weight: math.unit(200, "lb"),
  25515. name: "Front (Casual)",
  25516. image: {
  25517. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25518. extra: 1478 / 1381,
  25519. bottom: 5.5 / 1484
  25520. }
  25521. },
  25522. },
  25523. [
  25524. {
  25525. name: "Travel-Sized",
  25526. height: math.unit(7.45, "inches")
  25527. },
  25528. {
  25529. name: "Normal",
  25530. height: math.unit(7 + 6.451 / 12, "feet"),
  25531. default: true
  25532. },
  25533. {
  25534. name: "Hitting the Town",
  25535. height: math.unit(37 + 8 / 12, "feet")
  25536. },
  25537. {
  25538. name: "Stomp in the Suburbs",
  25539. height: math.unit(964 + 9.728 / 12, "feet")
  25540. },
  25541. {
  25542. name: "Sit on the City",
  25543. height: math.unit(61747 + 10.592 / 12, "feet")
  25544. },
  25545. {
  25546. name: "Glomp the Globe",
  25547. height: math.unit(252919327 + 4.832 / 12, "feet")
  25548. },
  25549. ]
  25550. ))
  25551. characterMakers.push(() => makeCharacter(
  25552. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25553. {
  25554. front: {
  25555. height: math.unit(6 + 4 / 12, "feet"),
  25556. weight: math.unit(320, "lb"),
  25557. name: "Front",
  25558. image: {
  25559. source: "./media/characters/balina-mahigan/front.svg",
  25560. extra: 447 / 428,
  25561. bottom: 18 / 466
  25562. }
  25563. },
  25564. back: {
  25565. height: math.unit(6 + 4 / 12, "feet"),
  25566. weight: math.unit(320, "lb"),
  25567. name: "Back",
  25568. image: {
  25569. source: "./media/characters/balina-mahigan/back.svg",
  25570. extra: 445 / 428,
  25571. bottom: 4.07 / 448
  25572. }
  25573. },
  25574. arm: {
  25575. height: math.unit(1.88, "feet"),
  25576. name: "Arm",
  25577. image: {
  25578. source: "./media/characters/balina-mahigan/arm.svg"
  25579. }
  25580. },
  25581. backPort: {
  25582. height: math.unit(0.685, "feet"),
  25583. name: "Back Port",
  25584. image: {
  25585. source: "./media/characters/balina-mahigan/back-port.svg"
  25586. }
  25587. },
  25588. hoofpaw: {
  25589. height: math.unit(1.41, "feet"),
  25590. name: "Hoofpaw",
  25591. image: {
  25592. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25593. }
  25594. },
  25595. leftHandBack: {
  25596. height: math.unit(0.938, "feet"),
  25597. name: "Left Hand (Back)",
  25598. image: {
  25599. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25600. }
  25601. },
  25602. leftHandFront: {
  25603. height: math.unit(0.938, "feet"),
  25604. name: "Left Hand (Front)",
  25605. image: {
  25606. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25607. }
  25608. },
  25609. rightHandBack: {
  25610. height: math.unit(0.95, "feet"),
  25611. name: "Right Hand (Back)",
  25612. image: {
  25613. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25614. }
  25615. },
  25616. rightHandFront: {
  25617. height: math.unit(0.95, "feet"),
  25618. name: "Right Hand (Front)",
  25619. image: {
  25620. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25621. }
  25622. },
  25623. },
  25624. [
  25625. {
  25626. name: "Normal",
  25627. height: math.unit(6 + 4 / 12, "feet"),
  25628. default: true
  25629. },
  25630. ]
  25631. ))
  25632. characterMakers.push(() => makeCharacter(
  25633. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25634. {
  25635. front: {
  25636. height: math.unit(6, "feet"),
  25637. weight: math.unit(320, "lb"),
  25638. name: "Front",
  25639. image: {
  25640. source: "./media/characters/balina-mejeri/front.svg",
  25641. extra: 517 / 488,
  25642. bottom: 44.2 / 561
  25643. }
  25644. },
  25645. },
  25646. [
  25647. {
  25648. name: "Normal",
  25649. height: math.unit(6 + 4 / 12, "feet")
  25650. },
  25651. {
  25652. name: "Business",
  25653. height: math.unit(155, "feet"),
  25654. default: true
  25655. },
  25656. ]
  25657. ))
  25658. characterMakers.push(() => makeCharacter(
  25659. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25660. {
  25661. kneeling: {
  25662. height: math.unit(6 + 4 / 12, "feet"),
  25663. weight: math.unit(300 * 20, "lb"),
  25664. name: "Kneeling",
  25665. image: {
  25666. source: "./media/characters/balbarian/kneeling.svg",
  25667. extra: 922 / 862,
  25668. bottom: 42.4 / 965
  25669. }
  25670. },
  25671. },
  25672. [
  25673. {
  25674. name: "Normal",
  25675. height: math.unit(6 + 4 / 12, "feet")
  25676. },
  25677. {
  25678. name: "Treasured",
  25679. height: math.unit(18 + 9 / 12, "feet"),
  25680. default: true
  25681. },
  25682. {
  25683. name: "Macro",
  25684. height: math.unit(900, "feet")
  25685. },
  25686. ]
  25687. ))
  25688. characterMakers.push(() => makeCharacter(
  25689. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25690. {
  25691. front: {
  25692. height: math.unit(6 + 4 / 12, "feet"),
  25693. weight: math.unit(325, "lb"),
  25694. name: "Front",
  25695. image: {
  25696. source: "./media/characters/balina-amarini/front.svg",
  25697. extra: 415 / 403,
  25698. bottom: 19 / 433.4
  25699. }
  25700. },
  25701. back: {
  25702. height: math.unit(6 + 4 / 12, "feet"),
  25703. weight: math.unit(325, "lb"),
  25704. name: "Back",
  25705. image: {
  25706. source: "./media/characters/balina-amarini/back.svg",
  25707. extra: 415 / 403,
  25708. bottom: 13.5 / 432
  25709. }
  25710. },
  25711. overdrive: {
  25712. height: math.unit(6 + 4 / 12, "feet"),
  25713. weight: math.unit(400, "lb"),
  25714. name: "Overdrive",
  25715. image: {
  25716. source: "./media/characters/balina-amarini/overdrive.svg",
  25717. extra: 269 / 259,
  25718. bottom: 12 / 282
  25719. }
  25720. },
  25721. },
  25722. [
  25723. {
  25724. name: "Boom",
  25725. height: math.unit(9 + 10 / 12, "feet"),
  25726. default: true
  25727. },
  25728. {
  25729. name: "Macro",
  25730. height: math.unit(280, "feet")
  25731. },
  25732. ]
  25733. ))
  25734. characterMakers.push(() => makeCharacter(
  25735. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25736. {
  25737. goddess: {
  25738. height: math.unit(600, "feet"),
  25739. weight: math.unit(2000000, "tons"),
  25740. name: "Goddess",
  25741. image: {
  25742. source: "./media/characters/lady-kubwa/goddess.svg",
  25743. extra: 1240.5 / 1223,
  25744. bottom: 22 / 1263
  25745. }
  25746. },
  25747. goddesser: {
  25748. height: math.unit(900, "feet"),
  25749. weight: math.unit(20000000, "lb"),
  25750. name: "Goddess-er",
  25751. image: {
  25752. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25753. extra: 899 / 888,
  25754. bottom: 12.6 / 912
  25755. }
  25756. },
  25757. },
  25758. [
  25759. {
  25760. name: "Macro",
  25761. height: math.unit(600, "feet"),
  25762. default: true
  25763. },
  25764. {
  25765. name: "Megamacro",
  25766. height: math.unit(250, "miles")
  25767. },
  25768. ]
  25769. ))
  25770. characterMakers.push(() => makeCharacter(
  25771. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25772. {
  25773. front: {
  25774. height: math.unit(7 + 7 / 12, "feet"),
  25775. weight: math.unit(250, "lb"),
  25776. name: "Front",
  25777. image: {
  25778. source: "./media/characters/tala-grovehorn/front.svg",
  25779. extra: 2636 / 2525,
  25780. bottom: 147 / 2781
  25781. }
  25782. },
  25783. back: {
  25784. height: math.unit(7 + 7 / 12, "feet"),
  25785. weight: math.unit(250, "lb"),
  25786. name: "Back",
  25787. image: {
  25788. source: "./media/characters/tala-grovehorn/back.svg",
  25789. extra: 2635 / 2539,
  25790. bottom: 100 / 2732.8
  25791. }
  25792. },
  25793. mouth: {
  25794. height: math.unit(1.15, "feet"),
  25795. name: "Mouth",
  25796. image: {
  25797. source: "./media/characters/tala-grovehorn/mouth.svg"
  25798. }
  25799. },
  25800. dick: {
  25801. height: math.unit(2.36, "feet"),
  25802. name: "Dick",
  25803. image: {
  25804. source: "./media/characters/tala-grovehorn/dick.svg"
  25805. }
  25806. },
  25807. slit: {
  25808. height: math.unit(0.61, "feet"),
  25809. name: "Slit",
  25810. image: {
  25811. source: "./media/characters/tala-grovehorn/slit.svg"
  25812. }
  25813. },
  25814. },
  25815. [
  25816. ]
  25817. ))
  25818. characterMakers.push(() => makeCharacter(
  25819. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25820. {
  25821. front: {
  25822. height: math.unit(7 + 7 / 12, "feet"),
  25823. weight: math.unit(225, "lb"),
  25824. name: "Front",
  25825. image: {
  25826. source: "./media/characters/epona/front.svg",
  25827. extra: 2445 / 2290,
  25828. bottom: 251 / 2696
  25829. }
  25830. },
  25831. back: {
  25832. height: math.unit(7 + 7 / 12, "feet"),
  25833. weight: math.unit(225, "lb"),
  25834. name: "Back",
  25835. image: {
  25836. source: "./media/characters/epona/back.svg",
  25837. extra: 2546 / 2408,
  25838. bottom: 44 / 2589
  25839. }
  25840. },
  25841. genitals: {
  25842. height: math.unit(1.5, "feet"),
  25843. name: "Genitals",
  25844. image: {
  25845. source: "./media/characters/epona/genitals.svg"
  25846. }
  25847. },
  25848. },
  25849. [
  25850. {
  25851. name: "Normal",
  25852. height: math.unit(7 + 7 / 12, "feet")
  25853. },
  25854. ]
  25855. ))
  25856. characterMakers.push(() => makeCharacter(
  25857. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25858. {
  25859. front: {
  25860. height: math.unit(7, "feet"),
  25861. weight: math.unit(518, "lb"),
  25862. name: "Front",
  25863. image: {
  25864. source: "./media/characters/avia-bloodbourn/front.svg",
  25865. extra: 1466 / 1350,
  25866. bottom: 65 / 1527
  25867. }
  25868. },
  25869. },
  25870. [
  25871. ]
  25872. ))
  25873. characterMakers.push(() => makeCharacter(
  25874. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25875. {
  25876. front: {
  25877. height: math.unit(9.35, "feet"),
  25878. weight: math.unit(600, "lb"),
  25879. name: "Front",
  25880. image: {
  25881. source: "./media/characters/amera/front.svg",
  25882. extra: 891 / 818,
  25883. bottom: 30 / 922.7
  25884. }
  25885. },
  25886. back: {
  25887. height: math.unit(9.35, "feet"),
  25888. weight: math.unit(600, "lb"),
  25889. name: "Back",
  25890. image: {
  25891. source: "./media/characters/amera/back.svg",
  25892. extra: 876 / 824,
  25893. bottom: 6.8 / 884
  25894. }
  25895. },
  25896. dick: {
  25897. height: math.unit(2.14, "feet"),
  25898. name: "Dick",
  25899. image: {
  25900. source: "./media/characters/amera/dick.svg"
  25901. }
  25902. },
  25903. },
  25904. [
  25905. {
  25906. name: "Normal",
  25907. height: math.unit(9.35, "feet"),
  25908. default: true
  25909. },
  25910. ]
  25911. ))
  25912. characterMakers.push(() => makeCharacter(
  25913. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25914. {
  25915. kneeling: {
  25916. height: math.unit(3 + 4 / 12, "feet"),
  25917. weight: math.unit(90, "lb"),
  25918. name: "Kneeling",
  25919. image: {
  25920. source: "./media/characters/rosewen/kneeling.svg",
  25921. extra: 1835 / 1571,
  25922. bottom: 27.7 / 1862
  25923. }
  25924. },
  25925. },
  25926. [
  25927. {
  25928. name: "Normal",
  25929. height: math.unit(3 + 4 / 12, "feet"),
  25930. default: true
  25931. },
  25932. ]
  25933. ))
  25934. characterMakers.push(() => makeCharacter(
  25935. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25936. {
  25937. front: {
  25938. height: math.unit(5 + 10 / 12, "feet"),
  25939. weight: math.unit(200, "lb"),
  25940. name: "Front",
  25941. image: {
  25942. source: "./media/characters/sabah/front.svg",
  25943. extra: 849 / 763,
  25944. bottom: 33.9 / 881
  25945. }
  25946. },
  25947. },
  25948. [
  25949. {
  25950. name: "Normal",
  25951. height: math.unit(5 + 10 / 12, "feet"),
  25952. default: true
  25953. },
  25954. ]
  25955. ))
  25956. characterMakers.push(() => makeCharacter(
  25957. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25958. {
  25959. front: {
  25960. height: math.unit(3 + 5 / 12, "feet"),
  25961. weight: math.unit(40, "kg"),
  25962. name: "Front",
  25963. image: {
  25964. source: "./media/characters/purple-flame/front.svg",
  25965. extra: 1577 / 1412,
  25966. bottom: 97 / 1694
  25967. }
  25968. },
  25969. frontDressed: {
  25970. height: math.unit(3 + 5 / 12, "feet"),
  25971. weight: math.unit(40, "kg"),
  25972. name: "Front (Dressed)",
  25973. image: {
  25974. source: "./media/characters/purple-flame/front-dressed.svg",
  25975. extra: 1577 / 1412,
  25976. bottom: 97 / 1694
  25977. }
  25978. },
  25979. headphones: {
  25980. height: math.unit(0.85, "feet"),
  25981. name: "Headphones",
  25982. image: {
  25983. source: "./media/characters/purple-flame/headphones.svg"
  25984. }
  25985. },
  25986. },
  25987. [
  25988. {
  25989. name: "Really Small",
  25990. height: math.unit(5, "cm")
  25991. },
  25992. {
  25993. name: "Micro",
  25994. height: math.unit(1 + 5 / 12, "feet")
  25995. },
  25996. {
  25997. name: "Normal",
  25998. height: math.unit(3 + 5 / 12, "feet"),
  25999. default: true
  26000. },
  26001. {
  26002. name: "Minimacro",
  26003. height: math.unit(125, "feet")
  26004. },
  26005. {
  26006. name: "Macro",
  26007. height: math.unit(0.5, "miles")
  26008. },
  26009. {
  26010. name: "Megamacro",
  26011. height: math.unit(50, "miles")
  26012. },
  26013. {
  26014. name: "Gigantic",
  26015. height: math.unit(750, "miles")
  26016. },
  26017. {
  26018. name: "Planetary",
  26019. height: math.unit(15000, "miles")
  26020. },
  26021. ]
  26022. ))
  26023. characterMakers.push(() => makeCharacter(
  26024. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26025. {
  26026. front: {
  26027. height: math.unit(14, "feet"),
  26028. weight: math.unit(959, "lb"),
  26029. name: "Front",
  26030. image: {
  26031. source: "./media/characters/arsenal/front.svg",
  26032. extra: 2357 / 2157,
  26033. bottom: 93 / 2458
  26034. }
  26035. },
  26036. },
  26037. [
  26038. {
  26039. name: "Normal",
  26040. height: math.unit(14, "feet"),
  26041. default: true
  26042. },
  26043. ]
  26044. ))
  26045. characterMakers.push(() => makeCharacter(
  26046. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26047. {
  26048. front: {
  26049. height: math.unit(6, "feet"),
  26050. weight: math.unit(150, "lb"),
  26051. name: "Front",
  26052. image: {
  26053. source: "./media/characters/adira/front.svg",
  26054. extra: 1078 / 1029,
  26055. bottom: 87 / 1166
  26056. }
  26057. },
  26058. },
  26059. [
  26060. {
  26061. name: "Micro",
  26062. height: math.unit(4, "inches"),
  26063. default: true
  26064. },
  26065. {
  26066. name: "Macro",
  26067. height: math.unit(50, "feet")
  26068. },
  26069. ]
  26070. ))
  26071. characterMakers.push(() => makeCharacter(
  26072. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26073. {
  26074. front: {
  26075. height: math.unit(16, "feet"),
  26076. weight: math.unit(1000, "lb"),
  26077. name: "Front",
  26078. image: {
  26079. source: "./media/characters/grim/front.svg",
  26080. extra: 622 / 614,
  26081. bottom: 18.1 / 642
  26082. }
  26083. },
  26084. back: {
  26085. height: math.unit(16, "feet"),
  26086. weight: math.unit(1000, "lb"),
  26087. name: "Back",
  26088. image: {
  26089. source: "./media/characters/grim/back.svg",
  26090. extra: 610.6 / 602,
  26091. bottom: 40.8 / 652
  26092. }
  26093. },
  26094. hunched: {
  26095. height: math.unit(9.75, "feet"),
  26096. weight: math.unit(1000, "lb"),
  26097. name: "Hunched",
  26098. image: {
  26099. source: "./media/characters/grim/hunched.svg",
  26100. extra: 304 / 297,
  26101. bottom: 35.4 / 394
  26102. }
  26103. },
  26104. },
  26105. [
  26106. {
  26107. name: "Normal",
  26108. height: math.unit(16, "feet"),
  26109. default: true
  26110. },
  26111. ]
  26112. ))
  26113. characterMakers.push(() => makeCharacter(
  26114. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26115. {
  26116. front: {
  26117. height: math.unit(2.3, "meters"),
  26118. weight: math.unit(300, "lb"),
  26119. name: "Front",
  26120. image: {
  26121. source: "./media/characters/sinja/front-sfw.svg",
  26122. extra: 1393 / 1294,
  26123. bottom: 70 / 1463
  26124. }
  26125. },
  26126. frontNsfw: {
  26127. height: math.unit(2.3, "meters"),
  26128. weight: math.unit(300, "lb"),
  26129. name: "Front (NSFW)",
  26130. image: {
  26131. source: "./media/characters/sinja/front-nsfw.svg",
  26132. extra: 1393 / 1294,
  26133. bottom: 70 / 1463
  26134. }
  26135. },
  26136. back: {
  26137. height: math.unit(2.3, "meters"),
  26138. weight: math.unit(300, "lb"),
  26139. name: "Back",
  26140. image: {
  26141. source: "./media/characters/sinja/back.svg",
  26142. extra: 1393 / 1294,
  26143. bottom: 70 / 1463
  26144. }
  26145. },
  26146. head: {
  26147. height: math.unit(1.771, "feet"),
  26148. name: "Head",
  26149. image: {
  26150. source: "./media/characters/sinja/head.svg"
  26151. }
  26152. },
  26153. slit: {
  26154. height: math.unit(0.8, "feet"),
  26155. name: "Slit",
  26156. image: {
  26157. source: "./media/characters/sinja/slit.svg"
  26158. }
  26159. },
  26160. },
  26161. [
  26162. {
  26163. name: "Normal",
  26164. height: math.unit(2.3, "meters")
  26165. },
  26166. {
  26167. name: "Macro",
  26168. height: math.unit(91, "meters"),
  26169. default: true
  26170. },
  26171. {
  26172. name: "Megamacro",
  26173. height: math.unit(91440, "meters")
  26174. },
  26175. {
  26176. name: "Gigamacro",
  26177. height: math.unit(60960000, "meters")
  26178. },
  26179. {
  26180. name: "Teramacro",
  26181. height: math.unit(9144000000, "meters")
  26182. },
  26183. ]
  26184. ))
  26185. characterMakers.push(() => makeCharacter(
  26186. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26187. {
  26188. front: {
  26189. height: math.unit(1.7, "meters"),
  26190. weight: math.unit(130, "lb"),
  26191. name: "Front",
  26192. image: {
  26193. source: "./media/characters/kyu/front.svg",
  26194. extra: 415 / 395,
  26195. bottom: 5 / 420
  26196. }
  26197. },
  26198. head: {
  26199. height: math.unit(1.75, "feet"),
  26200. name: "Head",
  26201. image: {
  26202. source: "./media/characters/kyu/head.svg"
  26203. }
  26204. },
  26205. foot: {
  26206. height: math.unit(0.81, "feet"),
  26207. name: "Foot",
  26208. image: {
  26209. source: "./media/characters/kyu/foot.svg"
  26210. }
  26211. },
  26212. },
  26213. [
  26214. {
  26215. name: "Normal",
  26216. height: math.unit(1.7, "meters")
  26217. },
  26218. {
  26219. name: "Macro",
  26220. height: math.unit(131, "feet"),
  26221. default: true
  26222. },
  26223. {
  26224. name: "Megamacro",
  26225. height: math.unit(91440, "meters")
  26226. },
  26227. {
  26228. name: "Gigamacro",
  26229. height: math.unit(60960000, "meters")
  26230. },
  26231. {
  26232. name: "Teramacro",
  26233. height: math.unit(9144000000, "meters")
  26234. },
  26235. ]
  26236. ))
  26237. characterMakers.push(() => makeCharacter(
  26238. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26239. {
  26240. front: {
  26241. height: math.unit(7 + 1 / 12, "feet"),
  26242. weight: math.unit(250, "lb"),
  26243. name: "Front",
  26244. image: {
  26245. source: "./media/characters/joey/front.svg",
  26246. extra: 1791 / 1537,
  26247. bottom: 28 / 1816
  26248. }
  26249. },
  26250. },
  26251. [
  26252. {
  26253. name: "Micro",
  26254. height: math.unit(3, "inches")
  26255. },
  26256. {
  26257. name: "Normal",
  26258. height: math.unit(7 + 1 / 12, "feet"),
  26259. default: true
  26260. },
  26261. ]
  26262. ))
  26263. characterMakers.push(() => makeCharacter(
  26264. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26265. {
  26266. front: {
  26267. height: math.unit(165, "cm"),
  26268. weight: math.unit(140, "lb"),
  26269. name: "Front",
  26270. image: {
  26271. source: "./media/characters/sam-evans/front.svg",
  26272. extra: 3417 / 3230,
  26273. bottom: 41.3 / 3417
  26274. }
  26275. },
  26276. frontSixTails: {
  26277. height: math.unit(165, "cm"),
  26278. weight: math.unit(140, "lb"),
  26279. name: "Front-six-tails",
  26280. image: {
  26281. source: "./media/characters/sam-evans/front-six-tails.svg",
  26282. extra: 3417 / 3230,
  26283. bottom: 41.3 / 3417
  26284. }
  26285. },
  26286. back: {
  26287. height: math.unit(165, "cm"),
  26288. weight: math.unit(140, "lb"),
  26289. name: "Back",
  26290. image: {
  26291. source: "./media/characters/sam-evans/back.svg",
  26292. extra: 3227 / 3032,
  26293. bottom: 6.8 / 3234
  26294. }
  26295. },
  26296. face: {
  26297. height: math.unit(0.68, "feet"),
  26298. name: "Face",
  26299. image: {
  26300. source: "./media/characters/sam-evans/face.svg"
  26301. }
  26302. },
  26303. },
  26304. [
  26305. {
  26306. name: "Normal",
  26307. height: math.unit(165, "cm"),
  26308. default: true
  26309. },
  26310. {
  26311. name: "Macro",
  26312. height: math.unit(100, "meters")
  26313. },
  26314. {
  26315. name: "Macro+",
  26316. height: math.unit(800, "meters")
  26317. },
  26318. {
  26319. name: "Macro++",
  26320. height: math.unit(3, "km")
  26321. },
  26322. {
  26323. name: "Macro+++",
  26324. height: math.unit(30, "km")
  26325. },
  26326. ]
  26327. ))
  26328. characterMakers.push(() => makeCharacter(
  26329. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26330. {
  26331. front: {
  26332. height: math.unit(10, "feet"),
  26333. weight: math.unit(750, "lb"),
  26334. name: "Front",
  26335. image: {
  26336. source: "./media/characters/juliet-a/front.svg",
  26337. extra: 1766 / 1720,
  26338. bottom: 43 / 1809
  26339. }
  26340. },
  26341. back: {
  26342. height: math.unit(10, "feet"),
  26343. weight: math.unit(750, "lb"),
  26344. name: "Back",
  26345. image: {
  26346. source: "./media/characters/juliet-a/back.svg",
  26347. extra: 1781 / 1734,
  26348. bottom: 35 / 1810,
  26349. }
  26350. },
  26351. },
  26352. [
  26353. {
  26354. name: "Normal",
  26355. height: math.unit(10, "feet"),
  26356. default: true
  26357. },
  26358. {
  26359. name: "Dragon Form",
  26360. height: math.unit(250, "feet")
  26361. },
  26362. {
  26363. name: "Macro",
  26364. height: math.unit(1000, "feet")
  26365. },
  26366. {
  26367. name: "Megamacro",
  26368. height: math.unit(10000, "feet")
  26369. }
  26370. ]
  26371. ))
  26372. characterMakers.push(() => makeCharacter(
  26373. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26374. {
  26375. regular: {
  26376. height: math.unit(7 + 3 / 12, "feet"),
  26377. weight: math.unit(260, "lb"),
  26378. name: "Regular",
  26379. image: {
  26380. source: "./media/characters/wild/regular.svg",
  26381. extra: 97.45 / 92,
  26382. bottom: 6.8 / 104.3
  26383. }
  26384. },
  26385. biggums: {
  26386. height: math.unit(8 + 6 / 12, "feet"),
  26387. weight: math.unit(425, "lb"),
  26388. name: "Biggums",
  26389. image: {
  26390. source: "./media/characters/wild/biggums.svg",
  26391. extra: 97.45 / 92,
  26392. bottom: 7.5 / 132.34
  26393. }
  26394. },
  26395. mawRegular: {
  26396. height: math.unit(1.24, "feet"),
  26397. name: "Maw (Regular)",
  26398. image: {
  26399. source: "./media/characters/wild/maw.svg"
  26400. }
  26401. },
  26402. mawBiggums: {
  26403. height: math.unit(1.47, "feet"),
  26404. name: "Maw (Biggums)",
  26405. image: {
  26406. source: "./media/characters/wild/maw.svg"
  26407. }
  26408. },
  26409. },
  26410. [
  26411. {
  26412. name: "Normal",
  26413. height: math.unit(7 + 3 / 12, "feet"),
  26414. default: true
  26415. },
  26416. ]
  26417. ))
  26418. characterMakers.push(() => makeCharacter(
  26419. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26420. {
  26421. front: {
  26422. height: math.unit(2.5, "meters"),
  26423. weight: math.unit(200, "kg"),
  26424. name: "Front",
  26425. image: {
  26426. source: "./media/characters/vidar/front.svg",
  26427. extra: 2994 / 2795,
  26428. bottom: 56 / 3061
  26429. }
  26430. },
  26431. back: {
  26432. height: math.unit(2.5, "meters"),
  26433. weight: math.unit(200, "kg"),
  26434. name: "Back",
  26435. image: {
  26436. source: "./media/characters/vidar/back.svg",
  26437. extra: 3131 / 2928,
  26438. bottom: 13.5 / 3141.5
  26439. }
  26440. },
  26441. feral: {
  26442. height: math.unit(2.5, "meters"),
  26443. weight: math.unit(2000, "kg"),
  26444. name: "Feral",
  26445. image: {
  26446. source: "./media/characters/vidar/feral.svg",
  26447. extra: 2790 / 1765,
  26448. bottom: 6 / 2796
  26449. }
  26450. },
  26451. },
  26452. [
  26453. {
  26454. name: "Normal",
  26455. height: math.unit(2.5, "meters"),
  26456. default: true
  26457. },
  26458. {
  26459. name: "Macro",
  26460. height: math.unit(100, "meters")
  26461. },
  26462. ]
  26463. ))
  26464. characterMakers.push(() => makeCharacter(
  26465. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26466. {
  26467. front: {
  26468. height: math.unit(5 + 9 / 12, "feet"),
  26469. weight: math.unit(120, "lb"),
  26470. name: "Front",
  26471. image: {
  26472. source: "./media/characters/ash/front.svg",
  26473. extra: 2189 / 1961,
  26474. bottom: 5.2 / 2194
  26475. }
  26476. },
  26477. },
  26478. [
  26479. {
  26480. name: "Normal",
  26481. height: math.unit(5 + 9 / 12, "feet"),
  26482. default: true
  26483. },
  26484. ]
  26485. ))
  26486. characterMakers.push(() => makeCharacter(
  26487. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26488. {
  26489. front: {
  26490. height: math.unit(9, "feet"),
  26491. weight: math.unit(10000, "lb"),
  26492. name: "Front",
  26493. image: {
  26494. source: "./media/characters/gygabite/front.svg",
  26495. bottom: 31.7 / 537.8,
  26496. extra: 505 / 370
  26497. }
  26498. },
  26499. },
  26500. [
  26501. {
  26502. name: "Normal",
  26503. height: math.unit(9, "feet"),
  26504. default: true
  26505. },
  26506. ]
  26507. ))
  26508. characterMakers.push(() => makeCharacter(
  26509. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26510. {
  26511. front: {
  26512. height: math.unit(12, "feet"),
  26513. weight: math.unit(35000, "lb"),
  26514. name: "Front",
  26515. image: {
  26516. source: "./media/characters/p0tat0/front.svg",
  26517. extra: 1065 / 921,
  26518. bottom: 55.7 / 1121.25
  26519. }
  26520. },
  26521. },
  26522. [
  26523. {
  26524. name: "Normal",
  26525. height: math.unit(12, "feet"),
  26526. default: true
  26527. },
  26528. ]
  26529. ))
  26530. characterMakers.push(() => makeCharacter(
  26531. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26532. {
  26533. side: {
  26534. height: math.unit(6.5, "feet"),
  26535. weight: math.unit(800, "lb"),
  26536. name: "Side",
  26537. image: {
  26538. source: "./media/characters/dusk/side.svg",
  26539. extra: 615 / 373,
  26540. bottom: 53 / 664
  26541. }
  26542. },
  26543. sitting: {
  26544. height: math.unit(7, "feet"),
  26545. weight: math.unit(800, "lb"),
  26546. name: "Sitting",
  26547. image: {
  26548. source: "./media/characters/dusk/sitting.svg",
  26549. extra: 753 / 425,
  26550. bottom: 33 / 774
  26551. }
  26552. },
  26553. head: {
  26554. height: math.unit(6.1, "feet"),
  26555. name: "Head",
  26556. image: {
  26557. source: "./media/characters/dusk/head.svg"
  26558. }
  26559. },
  26560. },
  26561. [
  26562. {
  26563. name: "Normal",
  26564. height: math.unit(7, "feet"),
  26565. default: true
  26566. },
  26567. ]
  26568. ))
  26569. characterMakers.push(() => makeCharacter(
  26570. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26571. {
  26572. front: {
  26573. height: math.unit(15, "feet"),
  26574. weight: math.unit(7000, "lb"),
  26575. name: "Front",
  26576. image: {
  26577. source: "./media/characters/jay-direwolf/front.svg",
  26578. extra: 1810 / 1732,
  26579. bottom: 66 / 1892
  26580. }
  26581. },
  26582. },
  26583. [
  26584. {
  26585. name: "Normal",
  26586. height: math.unit(15, "feet"),
  26587. default: true
  26588. },
  26589. ]
  26590. ))
  26591. characterMakers.push(() => makeCharacter(
  26592. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26593. {
  26594. front: {
  26595. height: math.unit(4 + 9 / 12, "feet"),
  26596. weight: math.unit(130, "lb"),
  26597. name: "Front",
  26598. image: {
  26599. source: "./media/characters/anchovie/front.svg",
  26600. extra: 382 / 350,
  26601. bottom: 25 / 409
  26602. }
  26603. },
  26604. back: {
  26605. height: math.unit(4 + 9 / 12, "feet"),
  26606. weight: math.unit(130, "lb"),
  26607. name: "Back",
  26608. image: {
  26609. source: "./media/characters/anchovie/back.svg",
  26610. extra: 385 / 352,
  26611. bottom: 16.6 / 402
  26612. }
  26613. },
  26614. frontDressed: {
  26615. height: math.unit(4 + 9 / 12, "feet"),
  26616. weight: math.unit(130, "lb"),
  26617. name: "Front (Dressed)",
  26618. image: {
  26619. source: "./media/characters/anchovie/front-dressed.svg",
  26620. extra: 382 / 350,
  26621. bottom: 25 / 409
  26622. }
  26623. },
  26624. backDressed: {
  26625. height: math.unit(4 + 9 / 12, "feet"),
  26626. weight: math.unit(130, "lb"),
  26627. name: "Back (Dressed)",
  26628. image: {
  26629. source: "./media/characters/anchovie/back-dressed.svg",
  26630. extra: 385 / 352,
  26631. bottom: 16.6 / 402
  26632. }
  26633. },
  26634. },
  26635. [
  26636. {
  26637. name: "Micro",
  26638. height: math.unit(6.4, "inches")
  26639. },
  26640. {
  26641. name: "Normal",
  26642. height: math.unit(4 + 9 / 12, "feet"),
  26643. default: true
  26644. },
  26645. ]
  26646. ))
  26647. characterMakers.push(() => makeCharacter(
  26648. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26649. {
  26650. front: {
  26651. height: math.unit(2, "meters"),
  26652. weight: math.unit(180, "lb"),
  26653. name: "Front",
  26654. image: {
  26655. source: "./media/characters/acidrenamon/front.svg",
  26656. extra: 987 / 890,
  26657. bottom: 22.8 / 1009
  26658. }
  26659. },
  26660. back: {
  26661. height: math.unit(2, "meters"),
  26662. weight: math.unit(180, "lb"),
  26663. name: "Back",
  26664. image: {
  26665. source: "./media/characters/acidrenamon/back.svg",
  26666. extra: 983 / 891,
  26667. bottom: 8.4 / 992
  26668. }
  26669. },
  26670. head: {
  26671. height: math.unit(1.92, "feet"),
  26672. name: "Head",
  26673. image: {
  26674. source: "./media/characters/acidrenamon/head.svg"
  26675. }
  26676. },
  26677. rump: {
  26678. height: math.unit(1.72, "feet"),
  26679. name: "Rump",
  26680. image: {
  26681. source: "./media/characters/acidrenamon/rump.svg"
  26682. }
  26683. },
  26684. tail: {
  26685. height: math.unit(4.2, "feet"),
  26686. name: "Tail",
  26687. image: {
  26688. source: "./media/characters/acidrenamon/tail.svg"
  26689. }
  26690. },
  26691. },
  26692. [
  26693. {
  26694. name: "Normal",
  26695. height: math.unit(2, "meters"),
  26696. default: true
  26697. },
  26698. {
  26699. name: "Minimacro",
  26700. height: math.unit(7, "meters")
  26701. },
  26702. {
  26703. name: "Macro",
  26704. height: math.unit(200, "meters")
  26705. },
  26706. {
  26707. name: "Gigamacro",
  26708. height: math.unit(0.2, "earths")
  26709. },
  26710. ]
  26711. ))
  26712. characterMakers.push(() => makeCharacter(
  26713. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26714. {
  26715. front: {
  26716. height: math.unit(6, "feet"),
  26717. weight: math.unit(150, "lb"),
  26718. name: "Front",
  26719. image: {
  26720. source: "./media/characters/kenzie-lee/front.svg",
  26721. extra: 1525 / 1465,
  26722. bottom: 45 / 1570
  26723. }
  26724. },
  26725. side: {
  26726. height: math.unit(6, "feet"),
  26727. weight: math.unit(150, "lb"),
  26728. name: "Side",
  26729. image: {
  26730. source: "./media/characters/kenzie-lee/side.svg",
  26731. extra: 5505 / 5383,
  26732. bottom: 60 / 5573
  26733. }
  26734. },
  26735. },
  26736. [
  26737. {
  26738. name: "Normal",
  26739. height: math.unit(152, "feet"),
  26740. default: true
  26741. },
  26742. {
  26743. name: "Megamacro",
  26744. height: math.unit(7, "miles")
  26745. },
  26746. {
  26747. name: "Gigamacro",
  26748. height: math.unit(8000, "miles")
  26749. },
  26750. ]
  26751. ))
  26752. characterMakers.push(() => makeCharacter(
  26753. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26754. {
  26755. side: {
  26756. height: math.unit(6, "feet"),
  26757. weight: math.unit(150, "lb"),
  26758. name: "Side",
  26759. image: {
  26760. source: "./media/characters/withers/side.svg",
  26761. extra: 1830 / 1728,
  26762. bottom: 96 / 1927
  26763. }
  26764. },
  26765. front: {
  26766. height: math.unit(6, "feet"),
  26767. weight: math.unit(150, "lb"),
  26768. name: "Front",
  26769. image: {
  26770. source: "./media/characters/withers/front.svg",
  26771. extra: 1514 / 1438,
  26772. bottom: 118 / 1632
  26773. }
  26774. },
  26775. },
  26776. [
  26777. {
  26778. name: "Macro",
  26779. height: math.unit(168, "feet"),
  26780. default: true
  26781. },
  26782. {
  26783. name: "Megamacro",
  26784. height: math.unit(15, "miles")
  26785. }
  26786. ]
  26787. ))
  26788. characterMakers.push(() => makeCharacter(
  26789. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26790. {
  26791. front: {
  26792. height: math.unit(6 + 7 / 12, "feet"),
  26793. weight: math.unit(250, "lb"),
  26794. name: "Front",
  26795. image: {
  26796. source: "./media/characters/nemoskii/front.svg",
  26797. extra: 2270 / 1734,
  26798. bottom: 86 / 2354
  26799. }
  26800. },
  26801. back: {
  26802. height: math.unit(6 + 7 / 12, "feet"),
  26803. weight: math.unit(250, "lb"),
  26804. name: "Back",
  26805. image: {
  26806. source: "./media/characters/nemoskii/back.svg",
  26807. extra: 1845 / 1788,
  26808. bottom: 10.5 / 1852
  26809. }
  26810. },
  26811. head: {
  26812. height: math.unit(1.31, "feet"),
  26813. name: "Head",
  26814. image: {
  26815. source: "./media/characters/nemoskii/head.svg"
  26816. }
  26817. },
  26818. },
  26819. [
  26820. {
  26821. name: "Normal",
  26822. height: math.unit(6 + 7 / 12, "feet"),
  26823. default: true
  26824. },
  26825. ]
  26826. ))
  26827. characterMakers.push(() => makeCharacter(
  26828. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26829. {
  26830. front: {
  26831. height: math.unit(1, "mile"),
  26832. weight: math.unit(265261.9, "lb"),
  26833. name: "Front",
  26834. image: {
  26835. source: "./media/characters/shui/front.svg",
  26836. extra: 1633 / 1564,
  26837. bottom: 91.5 / 1726
  26838. }
  26839. },
  26840. },
  26841. [
  26842. {
  26843. name: "Macro",
  26844. height: math.unit(1, "mile"),
  26845. default: true
  26846. },
  26847. ]
  26848. ))
  26849. characterMakers.push(() => makeCharacter(
  26850. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26851. {
  26852. front: {
  26853. height: math.unit(12 + 6 / 12, "feet"),
  26854. weight: math.unit(1342, "lb"),
  26855. name: "Front",
  26856. image: {
  26857. source: "./media/characters/arokh-takakura/front.svg",
  26858. extra: 1089 / 1043,
  26859. bottom: 77.4 / 1176.7
  26860. }
  26861. },
  26862. back: {
  26863. height: math.unit(12 + 6 / 12, "feet"),
  26864. weight: math.unit(1342, "lb"),
  26865. name: "Back",
  26866. image: {
  26867. source: "./media/characters/arokh-takakura/back.svg",
  26868. extra: 1046 / 1019,
  26869. bottom: 102 / 1150
  26870. }
  26871. },
  26872. },
  26873. [
  26874. {
  26875. name: "Big",
  26876. height: math.unit(12 + 6 / 12, "feet"),
  26877. default: true
  26878. },
  26879. ]
  26880. ))
  26881. characterMakers.push(() => makeCharacter(
  26882. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  26883. {
  26884. front: {
  26885. height: math.unit(5 + 6 / 12, "feet"),
  26886. weight: math.unit(150, "lb"),
  26887. name: "Front",
  26888. image: {
  26889. source: "./media/characters/theo/front.svg",
  26890. extra: 1184 / 1131,
  26891. bottom: 7.4 / 1191
  26892. }
  26893. },
  26894. },
  26895. [
  26896. {
  26897. name: "Micro",
  26898. height: math.unit(5, "inches")
  26899. },
  26900. {
  26901. name: "Normal",
  26902. height: math.unit(5 + 6 / 12, "feet"),
  26903. default: true
  26904. },
  26905. ]
  26906. ))
  26907. characterMakers.push(() => makeCharacter(
  26908. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  26909. {
  26910. front: {
  26911. height: math.unit(5 + 9 / 12, "feet"),
  26912. weight: math.unit(130, "lb"),
  26913. name: "Front",
  26914. image: {
  26915. source: "./media/characters/cecelia-swift/front.svg",
  26916. extra: 502 / 484,
  26917. bottom: 23 / 523
  26918. }
  26919. },
  26920. back: {
  26921. height: math.unit(5 + 9 / 12, "feet"),
  26922. weight: math.unit(130, "lb"),
  26923. name: "Back",
  26924. image: {
  26925. source: "./media/characters/cecelia-swift/back.svg",
  26926. extra: 499 / 485,
  26927. bottom: 12 / 511
  26928. }
  26929. },
  26930. head: {
  26931. height: math.unit(0.90, "feet"),
  26932. name: "Head",
  26933. image: {
  26934. source: "./media/characters/cecelia-swift/head.svg"
  26935. }
  26936. },
  26937. rump: {
  26938. height: math.unit(1.75, "feet"),
  26939. name: "Rump",
  26940. image: {
  26941. source: "./media/characters/cecelia-swift/rump.svg"
  26942. }
  26943. },
  26944. },
  26945. [
  26946. {
  26947. name: "Normal",
  26948. height: math.unit(5 + 9 / 12, "feet"),
  26949. default: true
  26950. },
  26951. {
  26952. name: "Big",
  26953. height: math.unit(50, "feet")
  26954. },
  26955. {
  26956. name: "Macro",
  26957. height: math.unit(100, "feet")
  26958. },
  26959. {
  26960. name: "Macro+",
  26961. height: math.unit(500, "feet")
  26962. },
  26963. {
  26964. name: "Macro++",
  26965. height: math.unit(1000, "feet")
  26966. },
  26967. ]
  26968. ))
  26969. characterMakers.push(() => makeCharacter(
  26970. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  26971. {
  26972. front: {
  26973. height: math.unit(6, "feet"),
  26974. weight: math.unit(150, "lb"),
  26975. name: "Front",
  26976. image: {
  26977. source: "./media/characters/kaunan/front.svg",
  26978. extra: 2890 / 2523,
  26979. bottom: 49 / 2939
  26980. }
  26981. },
  26982. },
  26983. [
  26984. {
  26985. name: "Macro",
  26986. height: math.unit(150, "feet"),
  26987. default: true
  26988. },
  26989. ]
  26990. ))
  26991. characterMakers.push(() => makeCharacter(
  26992. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  26993. {
  26994. front: {
  26995. height: math.unit(175, "cm"),
  26996. weight: math.unit(60, "kg"),
  26997. name: "Front",
  26998. image: {
  26999. source: "./media/characters/fei/front.svg",
  27000. extra: 2581 / 2400,
  27001. bottom: 82.2 / 2663
  27002. }
  27003. },
  27004. },
  27005. [
  27006. {
  27007. name: "Mortal",
  27008. height: math.unit(175, "cm")
  27009. },
  27010. {
  27011. name: "Normal",
  27012. height: math.unit(3500, "m"),
  27013. default: true
  27014. },
  27015. {
  27016. name: "Stroll",
  27017. height: math.unit(17.5, "km")
  27018. },
  27019. {
  27020. name: "Showoff",
  27021. height: math.unit(175, "km")
  27022. },
  27023. ]
  27024. ))
  27025. characterMakers.push(() => makeCharacter(
  27026. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27027. {
  27028. front: {
  27029. height: math.unit(7, "feet"),
  27030. weight: math.unit(1000, "kg"),
  27031. name: "Front",
  27032. image: {
  27033. source: "./media/characters/edrax/front.svg",
  27034. extra: 2838 / 2550,
  27035. bottom: 130 / 2968
  27036. }
  27037. },
  27038. },
  27039. [
  27040. {
  27041. name: "Small",
  27042. height: math.unit(7, "feet")
  27043. },
  27044. {
  27045. name: "Normal",
  27046. height: math.unit(1500, "meters")
  27047. },
  27048. {
  27049. name: "Mega",
  27050. height: math.unit(12000000, "km"),
  27051. default: true
  27052. },
  27053. {
  27054. name: "Megamacro",
  27055. height: math.unit(10600000, "lightyears")
  27056. },
  27057. {
  27058. name: "Hypermacro",
  27059. height: math.unit(256, "yottameters")
  27060. },
  27061. ]
  27062. ))
  27063. characterMakers.push(() => makeCharacter(
  27064. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27065. {
  27066. front: {
  27067. height: math.unit(10, "feet"),
  27068. weight: math.unit(750, "lb"),
  27069. name: "Front",
  27070. image: {
  27071. source: "./media/characters/clove/front.svg",
  27072. extra: 2031 / 1860,
  27073. bottom: 47.8 / 2080
  27074. }
  27075. },
  27076. back: {
  27077. height: math.unit(10, "feet"),
  27078. weight: math.unit(750, "lb"),
  27079. name: "Back",
  27080. image: {
  27081. source: "./media/characters/clove/back.svg",
  27082. extra: 2025 / 1859,
  27083. bottom: 46 / 2071
  27084. }
  27085. },
  27086. },
  27087. [
  27088. {
  27089. name: "Normal",
  27090. height: math.unit(10, "feet")
  27091. },
  27092. ]
  27093. ))
  27094. characterMakers.push(() => makeCharacter(
  27095. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27096. {
  27097. front: {
  27098. height: math.unit(4, "feet"),
  27099. weight: math.unit(50, "lb"),
  27100. name: "Front",
  27101. image: {
  27102. source: "./media/characters/alex-rabbit/front.svg",
  27103. extra: 507 / 458,
  27104. bottom: 18.5 / 527
  27105. }
  27106. },
  27107. back: {
  27108. height: math.unit(4, "feet"),
  27109. weight: math.unit(50, "lb"),
  27110. name: "Back",
  27111. image: {
  27112. source: "./media/characters/alex-rabbit/back.svg",
  27113. extra: 502 / 460,
  27114. bottom: 18.9 / 521
  27115. }
  27116. },
  27117. },
  27118. [
  27119. {
  27120. name: "Normal",
  27121. height: math.unit(4, "feet"),
  27122. default: true
  27123. },
  27124. ]
  27125. ))
  27126. characterMakers.push(() => makeCharacter(
  27127. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27128. {
  27129. front: {
  27130. height: math.unit(1 + 3 / 12, "feet"),
  27131. weight: math.unit(80, "lb"),
  27132. name: "Front",
  27133. image: {
  27134. source: "./media/characters/zander-rose/front.svg",
  27135. extra: 916 / 797,
  27136. bottom: 17 / 933
  27137. }
  27138. },
  27139. back: {
  27140. height: math.unit(1 + 3 / 12, "feet"),
  27141. weight: math.unit(80, "lb"),
  27142. name: "Back",
  27143. image: {
  27144. source: "./media/characters/zander-rose/back.svg",
  27145. extra: 903 / 779,
  27146. bottom: 31 / 934
  27147. }
  27148. },
  27149. },
  27150. [
  27151. {
  27152. name: "Normal",
  27153. height: math.unit(1 + 3 / 12, "feet"),
  27154. default: true
  27155. },
  27156. ]
  27157. ))
  27158. characterMakers.push(() => makeCharacter(
  27159. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27160. {
  27161. anthro: {
  27162. height: math.unit(6, "feet"),
  27163. weight: math.unit(150, "lb"),
  27164. name: "Anthro",
  27165. image: {
  27166. source: "./media/characters/razz/anthro.svg",
  27167. extra: 1437 / 1343,
  27168. bottom: 48 / 1485
  27169. }
  27170. },
  27171. feral: {
  27172. height: math.unit(6, "feet"),
  27173. weight: math.unit(150, "lb"),
  27174. name: "Feral",
  27175. image: {
  27176. source: "./media/characters/razz/feral.svg",
  27177. extra: 2569 / 1385,
  27178. bottom: 95 / 2664
  27179. }
  27180. },
  27181. },
  27182. [
  27183. {
  27184. name: "Normal",
  27185. height: math.unit(6, "feet"),
  27186. default: true
  27187. },
  27188. ]
  27189. ))
  27190. characterMakers.push(() => makeCharacter(
  27191. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27192. {
  27193. front: {
  27194. height: math.unit(9 + 4 / 12, "feet"),
  27195. weight: math.unit(500, "lb"),
  27196. name: "Front",
  27197. image: {
  27198. source: "./media/characters/morrigan/front.svg",
  27199. extra: 2707 / 2579,
  27200. bottom: 156 / 2863
  27201. }
  27202. },
  27203. },
  27204. [
  27205. {
  27206. name: "Normal",
  27207. height: math.unit(9 + 4 / 12, "feet"),
  27208. default: true
  27209. },
  27210. ]
  27211. ))
  27212. characterMakers.push(() => makeCharacter(
  27213. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27214. {
  27215. front: {
  27216. height: math.unit(5, "stories"),
  27217. weight: math.unit(4000, "lb"),
  27218. name: "Front",
  27219. image: {
  27220. source: "./media/characters/jenene/front.svg",
  27221. extra: 1780 / 1710,
  27222. bottom: 57 / 1837
  27223. }
  27224. },
  27225. },
  27226. [
  27227. {
  27228. name: "Normal",
  27229. height: math.unit(5, "stories"),
  27230. default: true
  27231. },
  27232. ]
  27233. ))
  27234. characterMakers.push(() => makeCharacter(
  27235. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27236. {
  27237. front: {
  27238. height: math.unit(6, "feet"),
  27239. weight: math.unit(150, "lb"),
  27240. name: "Front",
  27241. image: {
  27242. source: "./media/characters/vix-archaser/front.svg",
  27243. extra: 2767 / 2562,
  27244. bottom: 36 / 2803
  27245. }
  27246. },
  27247. },
  27248. [
  27249. {
  27250. name: "Micro",
  27251. height: math.unit(1, "foot")
  27252. },
  27253. {
  27254. name: "Normal",
  27255. height: math.unit(6 + 5 / 12, "feet")
  27256. },
  27257. {
  27258. name: "Minimacro",
  27259. height: math.unit(500, "feet")
  27260. },
  27261. {
  27262. name: "Macro",
  27263. height: math.unit(4, "miles")
  27264. },
  27265. {
  27266. name: "Megamacro",
  27267. height: math.unit(250, "miles"),
  27268. default: true
  27269. },
  27270. {
  27271. name: "Gigamacro",
  27272. height: math.unit(1, "universe")
  27273. },
  27274. {
  27275. name: "Endgame",
  27276. height: math.unit(100, "multiverses")
  27277. }
  27278. ]
  27279. ))
  27280. characterMakers.push(() => makeCharacter(
  27281. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27282. {
  27283. taurSfw: {
  27284. height: math.unit(10, "meters"),
  27285. weight: math.unit(17500, "kg"),
  27286. name: "Taur",
  27287. image: {
  27288. source: "./media/characters/faey/taur-sfw.svg",
  27289. extra: 1200 / 968,
  27290. bottom: 41 / 1241
  27291. }
  27292. },
  27293. chestmaw: {
  27294. height: math.unit(2.01, "meters"),
  27295. name: "Chestmaw",
  27296. image: {
  27297. source: "./media/characters/faey/chestmaw.svg"
  27298. }
  27299. },
  27300. foot: {
  27301. height: math.unit(2.43, "meters"),
  27302. name: "Foot",
  27303. image: {
  27304. source: "./media/characters/faey/foot.svg"
  27305. }
  27306. },
  27307. jaws: {
  27308. height: math.unit(1.66, "meters"),
  27309. name: "Jaws",
  27310. image: {
  27311. source: "./media/characters/faey/jaws.svg"
  27312. }
  27313. },
  27314. tongues: {
  27315. height: math.unit(2.01, "meters"),
  27316. name: "Tongues",
  27317. image: {
  27318. source: "./media/characters/faey/tongues.svg"
  27319. }
  27320. },
  27321. },
  27322. [
  27323. {
  27324. name: "Small",
  27325. height: math.unit(10, "meters"),
  27326. default: true
  27327. },
  27328. {
  27329. name: "Big",
  27330. height: math.unit(500000, "km")
  27331. },
  27332. ]
  27333. ))
  27334. characterMakers.push(() => makeCharacter(
  27335. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27336. {
  27337. front: {
  27338. height: math.unit(7, "feet"),
  27339. weight: math.unit(275, "lb"),
  27340. name: "Front",
  27341. image: {
  27342. source: "./media/characters/roku/front.svg",
  27343. extra: 903 / 878,
  27344. bottom: 37 / 940
  27345. }
  27346. },
  27347. },
  27348. [
  27349. {
  27350. name: "Normal",
  27351. height: math.unit(7, "feet"),
  27352. default: true
  27353. },
  27354. {
  27355. name: "Macro",
  27356. height: math.unit(500, "feet")
  27357. },
  27358. {
  27359. name: "Megamacro",
  27360. height: math.unit(200, "miles")
  27361. },
  27362. ]
  27363. ))
  27364. characterMakers.push(() => makeCharacter(
  27365. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27366. {
  27367. front: {
  27368. height: math.unit(6 + 2 / 12, "feet"),
  27369. weight: math.unit(150, "lb"),
  27370. name: "Front",
  27371. image: {
  27372. source: "./media/characters/lira/front.svg",
  27373. extra: 1727 / 1605,
  27374. bottom: 26 / 1753
  27375. }
  27376. },
  27377. back: {
  27378. height: math.unit(6 + 2 / 12, "feet"),
  27379. weight: math.unit(150, "lb"),
  27380. name: "Back",
  27381. image: {
  27382. source: "./media/characters/lira/back.svg",
  27383. extra: 1713 / 159,
  27384. bottom: 20 / 1733
  27385. }
  27386. },
  27387. hand: {
  27388. height: math.unit(0.75, "feet"),
  27389. name: "Hand",
  27390. image: {
  27391. source: "./media/characters/lira/hand.svg"
  27392. }
  27393. },
  27394. maw: {
  27395. height: math.unit(0.65, "feet"),
  27396. name: "Maw",
  27397. image: {
  27398. source: "./media/characters/lira/maw.svg"
  27399. }
  27400. },
  27401. pawDigi: {
  27402. height: math.unit(1.6, "feet"),
  27403. name: "Paw Digi",
  27404. image: {
  27405. source: "./media/characters/lira/paw-digi.svg"
  27406. }
  27407. },
  27408. pawPlanti: {
  27409. height: math.unit(1.4, "feet"),
  27410. name: "Paw Planti",
  27411. image: {
  27412. source: "./media/characters/lira/paw-planti.svg"
  27413. }
  27414. },
  27415. },
  27416. [
  27417. {
  27418. name: "Normal",
  27419. height: math.unit(6 + 2 / 12, "feet"),
  27420. default: true
  27421. },
  27422. {
  27423. name: "Macro",
  27424. height: math.unit(100, "feet")
  27425. },
  27426. {
  27427. name: "Macro²",
  27428. height: math.unit(1600, "feet")
  27429. },
  27430. {
  27431. name: "Planetary",
  27432. height: math.unit(20, "earths")
  27433. },
  27434. ]
  27435. ))
  27436. characterMakers.push(() => makeCharacter(
  27437. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27438. {
  27439. front: {
  27440. height: math.unit(6, "feet"),
  27441. weight: math.unit(150, "lb"),
  27442. name: "Front",
  27443. image: {
  27444. source: "./media/characters/hadjet/front.svg",
  27445. extra: 1480 / 1346,
  27446. bottom: 26 / 1506
  27447. }
  27448. },
  27449. frontNsfw: {
  27450. height: math.unit(6, "feet"),
  27451. weight: math.unit(150, "lb"),
  27452. name: "Front (NSFW)",
  27453. image: {
  27454. source: "./media/characters/hadjet/front-nsfw.svg",
  27455. extra: 1440 / 1358,
  27456. bottom: 52 / 1492
  27457. }
  27458. },
  27459. },
  27460. [
  27461. {
  27462. name: "Macro",
  27463. height: math.unit(10, "stories"),
  27464. default: true
  27465. },
  27466. {
  27467. name: "Megamacro",
  27468. height: math.unit(1.5, "miles")
  27469. },
  27470. {
  27471. name: "Megamacro+",
  27472. height: math.unit(5, "miles")
  27473. },
  27474. ]
  27475. ))
  27476. characterMakers.push(() => makeCharacter(
  27477. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27478. {
  27479. side: {
  27480. height: math.unit(106, "feet"),
  27481. weight: math.unit(500, "tonnes"),
  27482. name: "Side",
  27483. image: {
  27484. source: "./media/characters/kodran/side.svg",
  27485. extra: 553 / 480,
  27486. bottom: 33 / 586
  27487. }
  27488. },
  27489. front: {
  27490. height: math.unit(132, "feet"),
  27491. weight: math.unit(500, "tonnes"),
  27492. name: "Front",
  27493. image: {
  27494. source: "./media/characters/kodran/front.svg",
  27495. extra: 667 / 643,
  27496. bottom: 42 / 709
  27497. }
  27498. },
  27499. flying: {
  27500. height: math.unit(350, "feet"),
  27501. weight: math.unit(500, "tonnes"),
  27502. name: "Flying",
  27503. image: {
  27504. source: "./media/characters/kodran/flying.svg"
  27505. }
  27506. },
  27507. foot: {
  27508. height: math.unit(33, "feet"),
  27509. name: "Foot",
  27510. image: {
  27511. source: "./media/characters/kodran/foot.svg"
  27512. }
  27513. },
  27514. footFront: {
  27515. height: math.unit(19, "feet"),
  27516. name: "Foot (Front)",
  27517. image: {
  27518. source: "./media/characters/kodran/foot-front.svg",
  27519. extra: 261 / 261,
  27520. bottom: 91 / 352
  27521. }
  27522. },
  27523. headFront: {
  27524. height: math.unit(53, "feet"),
  27525. name: "Head (Front)",
  27526. image: {
  27527. source: "./media/characters/kodran/head-front.svg"
  27528. }
  27529. },
  27530. headSide: {
  27531. height: math.unit(65, "feet"),
  27532. name: "Head (Side)",
  27533. image: {
  27534. source: "./media/characters/kodran/head-side.svg"
  27535. }
  27536. },
  27537. throat: {
  27538. height: math.unit(79, "feet"),
  27539. name: "Throat",
  27540. image: {
  27541. source: "./media/characters/kodran/throat.svg"
  27542. }
  27543. },
  27544. },
  27545. [
  27546. {
  27547. name: "Large",
  27548. height: math.unit(106, "feet"),
  27549. default: true
  27550. },
  27551. ]
  27552. ))
  27553. characterMakers.push(() => makeCharacter(
  27554. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27555. {
  27556. side: {
  27557. height: math.unit(11, "feet"),
  27558. weight: math.unit(150, "lb"),
  27559. name: "Side",
  27560. image: {
  27561. source: "./media/characters/pyxaron/side.svg",
  27562. extra: 305 / 195,
  27563. bottom: 17 / 322
  27564. }
  27565. },
  27566. },
  27567. [
  27568. {
  27569. name: "Normal",
  27570. height: math.unit(11, "feet")
  27571. },
  27572. ]
  27573. ))
  27574. characterMakers.push(() => makeCharacter(
  27575. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27576. {
  27577. front: {
  27578. height: math.unit(6, "feet"),
  27579. weight: math.unit(150, "lb"),
  27580. name: "Front",
  27581. image: {
  27582. source: "./media/characters/meep/front.svg",
  27583. extra: 88 / 80,
  27584. bottom: 6 / 94
  27585. }
  27586. },
  27587. },
  27588. [
  27589. {
  27590. name: "Fun Sized",
  27591. height: math.unit(2, "inches"),
  27592. default: true
  27593. },
  27594. {
  27595. name: "Friend Sized",
  27596. height: math.unit(8, "inches")
  27597. },
  27598. ]
  27599. ))
  27600. characterMakers.push(() => makeCharacter(
  27601. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27602. {
  27603. front: {
  27604. height: math.unit(15, "feet"),
  27605. weight: math.unit(2500, "lb"),
  27606. name: "Front",
  27607. image: {
  27608. source: "./media/characters/holly-rabbit/front.svg",
  27609. extra: 1433 / 1233,
  27610. bottom: 125 / 1558
  27611. }
  27612. },
  27613. dick: {
  27614. height: math.unit(4.6, "feet"),
  27615. name: "Dick",
  27616. image: {
  27617. source: "./media/characters/holly-rabbit/dick.svg"
  27618. }
  27619. },
  27620. },
  27621. [
  27622. {
  27623. name: "Normal",
  27624. height: math.unit(15, "feet"),
  27625. default: true
  27626. },
  27627. {
  27628. name: "Macro",
  27629. height: math.unit(250, "feet")
  27630. },
  27631. {
  27632. name: "Macro+",
  27633. height: math.unit(2500, "feet")
  27634. },
  27635. ]
  27636. ))
  27637. characterMakers.push(() => makeCharacter(
  27638. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27639. {
  27640. front: {
  27641. height: math.unit(3.02, "meters"),
  27642. weight: math.unit(500, "kg"),
  27643. name: "Front",
  27644. image: {
  27645. source: "./media/characters/drena/front.svg",
  27646. extra: 282 / 243,
  27647. bottom: 8 / 290
  27648. }
  27649. },
  27650. side: {
  27651. height: math.unit(3.02, "meters"),
  27652. weight: math.unit(500, "kg"),
  27653. name: "Side",
  27654. image: {
  27655. source: "./media/characters/drena/side.svg",
  27656. extra: 280 / 245,
  27657. bottom: 10 / 290
  27658. }
  27659. },
  27660. back: {
  27661. height: math.unit(3.02, "meters"),
  27662. weight: math.unit(500, "kg"),
  27663. name: "Back",
  27664. image: {
  27665. source: "./media/characters/drena/back.svg",
  27666. extra: 278 / 243,
  27667. bottom: 2 / 280
  27668. }
  27669. },
  27670. foot: {
  27671. height: math.unit(0.75, "meters"),
  27672. name: "Foot",
  27673. image: {
  27674. source: "./media/characters/drena/foot.svg"
  27675. }
  27676. },
  27677. maw: {
  27678. height: math.unit(0.82, "meters"),
  27679. name: "Maw",
  27680. image: {
  27681. source: "./media/characters/drena/maw.svg"
  27682. }
  27683. },
  27684. rump: {
  27685. height: math.unit(0.93, "meters"),
  27686. name: "Rump",
  27687. image: {
  27688. source: "./media/characters/drena/rump.svg"
  27689. }
  27690. },
  27691. },
  27692. [
  27693. {
  27694. name: "Normal",
  27695. height: math.unit(3.02, "meters"),
  27696. default: true
  27697. },
  27698. ]
  27699. ))
  27700. characterMakers.push(() => makeCharacter(
  27701. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27702. {
  27703. front: {
  27704. height: math.unit(6 + 4 / 12, "feet"),
  27705. weight: math.unit(250, "lb"),
  27706. name: "Front",
  27707. image: {
  27708. source: "./media/characters/remmyzilla/front.svg",
  27709. extra: 4033 / 3588,
  27710. bottom: 123 / 4156
  27711. }
  27712. },
  27713. back: {
  27714. height: math.unit(6 + 4 / 12, "feet"),
  27715. weight: math.unit(250, "lb"),
  27716. name: "Back",
  27717. image: {
  27718. source: "./media/characters/remmyzilla/back.svg",
  27719. extra: 2687 / 2555,
  27720. bottom: 48 / 2735
  27721. }
  27722. },
  27723. frontFancy: {
  27724. height: math.unit(6 + 4 / 12, "feet"),
  27725. weight: math.unit(250, "lb"),
  27726. name: "Front (Fancy)",
  27727. image: {
  27728. source: "./media/characters/remmyzilla/front-fancy.svg",
  27729. extra: 4119 / 3419,
  27730. bottom: 237 / 4356
  27731. }
  27732. },
  27733. paw: {
  27734. height: math.unit(1.73, "feet"),
  27735. name: "Paw",
  27736. image: {
  27737. source: "./media/characters/remmyzilla/paw.svg"
  27738. }
  27739. },
  27740. maw: {
  27741. height: math.unit(1.73, "feet"),
  27742. name: "Maw",
  27743. image: {
  27744. source: "./media/characters/remmyzilla/maw.svg"
  27745. }
  27746. },
  27747. },
  27748. [
  27749. {
  27750. name: "Normal",
  27751. height: math.unit(6 + 4 / 12, "feet")
  27752. },
  27753. {
  27754. name: "Minimacro",
  27755. height: math.unit(12 + 8 / 12, "feet")
  27756. },
  27757. {
  27758. name: "Normal",
  27759. height: math.unit(640, "feet"),
  27760. default: true
  27761. },
  27762. {
  27763. name: "Megamacro",
  27764. height: math.unit(6400, "feet")
  27765. },
  27766. {
  27767. name: "Gigamacro",
  27768. height: math.unit(64000, "miles")
  27769. },
  27770. ]
  27771. ))
  27772. characterMakers.push(() => makeCharacter(
  27773. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27774. {
  27775. front: {
  27776. height: math.unit(2.5, "meters"),
  27777. weight: math.unit(300, "lb"),
  27778. name: "Front",
  27779. image: {
  27780. source: "./media/characters/lawrence/front.svg",
  27781. extra: 357 / 335,
  27782. bottom: 30 / 387
  27783. }
  27784. },
  27785. back: {
  27786. height: math.unit(2.5, "meters"),
  27787. weight: math.unit(300, "lb"),
  27788. name: "Back",
  27789. image: {
  27790. source: "./media/characters/lawrence/back.svg",
  27791. extra: 357 / 338,
  27792. bottom: 16 / 373
  27793. }
  27794. },
  27795. head: {
  27796. height: math.unit(0.9, "meter"),
  27797. name: "Head",
  27798. image: {
  27799. source: "./media/characters/lawrence/head.svg"
  27800. }
  27801. },
  27802. maw: {
  27803. height: math.unit(0.7, "meter"),
  27804. name: "Maw",
  27805. image: {
  27806. source: "./media/characters/lawrence/maw.svg"
  27807. }
  27808. },
  27809. footBottom: {
  27810. height: math.unit(0.5, "meter"),
  27811. name: "Foot (Bottom)",
  27812. image: {
  27813. source: "./media/characters/lawrence/foot-bottom.svg"
  27814. }
  27815. },
  27816. footTop: {
  27817. height: math.unit(0.5, "meter"),
  27818. name: "Foot (Top)",
  27819. image: {
  27820. source: "./media/characters/lawrence/foot-top.svg"
  27821. }
  27822. },
  27823. },
  27824. [
  27825. {
  27826. name: "Normal",
  27827. height: math.unit(2.5, "meters"),
  27828. default: true
  27829. },
  27830. {
  27831. name: "Macro",
  27832. height: math.unit(95, "meters")
  27833. },
  27834. {
  27835. name: "Megamacro",
  27836. height: math.unit(150, "km")
  27837. },
  27838. ]
  27839. ))
  27840. characterMakers.push(() => makeCharacter(
  27841. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  27842. {
  27843. front: {
  27844. height: math.unit(4.2, "meters"),
  27845. name: "Front",
  27846. image: {
  27847. source: "./media/characters/sydney/front.svg",
  27848. extra: 1323 / 1277,
  27849. bottom: 111 / 1434
  27850. }
  27851. },
  27852. },
  27853. [
  27854. {
  27855. name: "Normal",
  27856. height: math.unit(4.2, "meters")
  27857. },
  27858. ]
  27859. ))
  27860. characterMakers.push(() => makeCharacter(
  27861. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  27862. {
  27863. back: {
  27864. height: math.unit(201, "feet"),
  27865. name: "Back",
  27866. image: {
  27867. source: "./media/characters/jessica/back.svg",
  27868. extra: 273 / 259,
  27869. bottom: 7 / 280
  27870. }
  27871. },
  27872. },
  27873. [
  27874. {
  27875. name: "Normal",
  27876. height: math.unit(201, "feet"),
  27877. default: true
  27878. },
  27879. {
  27880. name: "Megamacro",
  27881. height: math.unit(8, "miles")
  27882. },
  27883. ]
  27884. ))
  27885. characterMakers.push(() => makeCharacter(
  27886. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  27887. {
  27888. side: {
  27889. height: math.unit(320, "cm"),
  27890. name: "Side",
  27891. image: {
  27892. source: "./media/characters/victoria/side.svg",
  27893. extra: 778 / 346,
  27894. bottom: 56 / 834
  27895. }
  27896. },
  27897. maw: {
  27898. height: math.unit(5.9, "feet"),
  27899. name: "Maw",
  27900. image: {
  27901. source: "./media/characters/victoria/maw.svg"
  27902. }
  27903. },
  27904. },
  27905. [
  27906. {
  27907. name: "Normal",
  27908. height: math.unit(320, "cm"),
  27909. default: true
  27910. },
  27911. ]
  27912. ))
  27913. characterMakers.push(() => makeCharacter(
  27914. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  27915. {
  27916. front: {
  27917. height: math.unit(5 + 6 / 12, "feet"),
  27918. name: "Front",
  27919. image: {
  27920. source: "./media/characters/cat/front.svg",
  27921. extra: 1374 / 1257,
  27922. bottom: 59 / 1433
  27923. }
  27924. },
  27925. back: {
  27926. height: math.unit(5 + 6 / 12, "feet"),
  27927. name: "Back",
  27928. image: {
  27929. source: "./media/characters/cat/back.svg",
  27930. extra: 1337 / 1226,
  27931. bottom: 34 / 1371
  27932. }
  27933. },
  27934. taur: {
  27935. height: math.unit(7, "feet"),
  27936. name: "Taur",
  27937. image: {
  27938. source: "./media/characters/cat/taur.svg",
  27939. extra: 1345 / 1231,
  27940. bottom: 66 / 1411
  27941. }
  27942. },
  27943. lucario: {
  27944. height: math.unit(4, "feet"),
  27945. name: "Lucario",
  27946. image: {
  27947. source: "./media/characters/cat/lucario.svg",
  27948. extra: 1470 / 1318,
  27949. bottom: 65 / 1535
  27950. }
  27951. },
  27952. megaLucario: {
  27953. height: math.unit(4, "feet"),
  27954. name: "Mega Lucario",
  27955. image: {
  27956. source: "./media/characters/cat/mega-lucario.svg",
  27957. extra: 1515 / 1319,
  27958. bottom: 63 / 1578
  27959. }
  27960. },
  27961. nickit: {
  27962. height: math.unit(2, "feet"),
  27963. name: "Nickit",
  27964. image: {
  27965. source: "./media/characters/cat/nickit.svg",
  27966. extra: 1980 / 1585,
  27967. bottom: 102 / 2082
  27968. }
  27969. },
  27970. lopunnyFront: {
  27971. height: math.unit(5, "feet"),
  27972. name: "Lopunny (Front)",
  27973. image: {
  27974. source: "./media/characters/cat/lopunny-front.svg",
  27975. extra: 1782 / 1469,
  27976. bottom: 38 / 1820
  27977. }
  27978. },
  27979. lopunnyBack: {
  27980. height: math.unit(5, "feet"),
  27981. name: "Lopunny (Back)",
  27982. image: {
  27983. source: "./media/characters/cat/lopunny-back.svg",
  27984. extra: 1660 / 1490,
  27985. bottom: 25 / 1685
  27986. }
  27987. },
  27988. },
  27989. [
  27990. {
  27991. name: "Really small",
  27992. height: math.unit(1, "nm")
  27993. },
  27994. {
  27995. name: "Micro",
  27996. height: math.unit(5, "inches")
  27997. },
  27998. {
  27999. name: "Normal",
  28000. height: math.unit(5 + 6 / 12, "feet"),
  28001. default: true
  28002. },
  28003. {
  28004. name: "Macro",
  28005. height: math.unit(50, "feet")
  28006. },
  28007. {
  28008. name: "Macro+",
  28009. height: math.unit(150, "feet")
  28010. },
  28011. {
  28012. name: "Megamacro",
  28013. height: math.unit(100, "miles")
  28014. },
  28015. ]
  28016. ))
  28017. characterMakers.push(() => makeCharacter(
  28018. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28019. {
  28020. front: {
  28021. height: math.unit(63.4, "meters"),
  28022. weight: math.unit(3.28349e+6, "kilograms"),
  28023. name: "Front",
  28024. image: {
  28025. source: "./media/characters/kirina-violet/front.svg",
  28026. extra: 2812 / 2725,
  28027. bottom: 0 / 2812
  28028. }
  28029. },
  28030. back: {
  28031. height: math.unit(63.4, "meters"),
  28032. weight: math.unit(3.28349e+6, "kilograms"),
  28033. name: "Back",
  28034. image: {
  28035. source: "./media/characters/kirina-violet/back.svg",
  28036. extra: 2812 / 2725,
  28037. bottom: 0 / 2812
  28038. }
  28039. },
  28040. mouth: {
  28041. height: math.unit(4.35, "meters"),
  28042. name: "Mouth",
  28043. image: {
  28044. source: "./media/characters/kirina-violet/mouth.svg"
  28045. }
  28046. },
  28047. paw: {
  28048. height: math.unit(5.6, "meters"),
  28049. name: "Paw",
  28050. image: {
  28051. source: "./media/characters/kirina-violet/paw.svg"
  28052. }
  28053. },
  28054. tail: {
  28055. height: math.unit(18, "meters"),
  28056. name: "Tail",
  28057. image: {
  28058. source: "./media/characters/kirina-violet/tail.svg"
  28059. }
  28060. },
  28061. },
  28062. [
  28063. {
  28064. name: "Macro",
  28065. height: math.unit(63.4, "meters"),
  28066. default: true
  28067. },
  28068. ]
  28069. ))
  28070. characterMakers.push(() => makeCharacter(
  28071. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28072. {
  28073. front: {
  28074. height: math.unit(60, "feet"),
  28075. name: "Front",
  28076. image: {
  28077. source: "./media/characters/cat-gigachu/front.svg",
  28078. extra: 1024 / 780,
  28079. bottom: 23 / 1047
  28080. }
  28081. },
  28082. back: {
  28083. height: math.unit(60, "feet"),
  28084. name: "Back",
  28085. image: {
  28086. source: "./media/characters/cat-gigachu/back.svg",
  28087. extra: 1024 / 780,
  28088. bottom: 23 / 1047
  28089. }
  28090. },
  28091. },
  28092. [
  28093. {
  28094. name: "Dynamax",
  28095. height: math.unit(60, "feet"),
  28096. default: true
  28097. },
  28098. ]
  28099. ))
  28100. characterMakers.push(() => makeCharacter(
  28101. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28102. {
  28103. front: {
  28104. height: math.unit(6, "feet"),
  28105. weight: math.unit(150, "lb"),
  28106. name: "Front",
  28107. image: {
  28108. source: "./media/characters/sfaiyan/front.svg",
  28109. extra: 999 / 978,
  28110. bottom: 5 / 1004
  28111. }
  28112. },
  28113. },
  28114. [
  28115. {
  28116. name: "Normal",
  28117. height: math.unit(1.82, "meters")
  28118. },
  28119. {
  28120. name: "Giant",
  28121. height: math.unit(2.27, "km"),
  28122. default: true
  28123. },
  28124. ]
  28125. ))
  28126. characterMakers.push(() => makeCharacter(
  28127. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28128. {
  28129. front: {
  28130. height: math.unit(179, "cm"),
  28131. weight: math.unit(100, "kg"),
  28132. name: "Front",
  28133. image: {
  28134. source: "./media/characters/raunehkeli/front.svg",
  28135. extra: 1934 / 1926,
  28136. bottom: 0 / 1934
  28137. }
  28138. },
  28139. },
  28140. [
  28141. {
  28142. name: "Normal",
  28143. height: math.unit(179, "cm")
  28144. },
  28145. {
  28146. name: "Maximum",
  28147. height: math.unit(575, "meters"),
  28148. default: true
  28149. },
  28150. ]
  28151. ))
  28152. characterMakers.push(() => makeCharacter(
  28153. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28154. {
  28155. front: {
  28156. height: math.unit(6, "feet"),
  28157. weight: math.unit(150, "lb"),
  28158. name: "Front",
  28159. image: {
  28160. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28161. extra: 2625 / 2518,
  28162. bottom: 60 / 2685
  28163. }
  28164. },
  28165. },
  28166. [
  28167. {
  28168. name: "Normal",
  28169. height: math.unit(6 + 2 / 12, "feet"),
  28170. default: true
  28171. },
  28172. {
  28173. name: "Macro",
  28174. height: math.unit(1180, "feet")
  28175. },
  28176. ]
  28177. ))
  28178. characterMakers.push(() => makeCharacter(
  28179. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28180. {
  28181. front: {
  28182. height: math.unit(5 + 6 / 12, "feet"),
  28183. weight: math.unit(108, "lb"),
  28184. name: "Front",
  28185. image: {
  28186. source: "./media/characters/lilith-zott/front.svg",
  28187. extra: 2510 / 2238,
  28188. bottom: 100 / 2610
  28189. }
  28190. },
  28191. frontDressed: {
  28192. height: math.unit(5 + 6 / 12, "feet"),
  28193. weight: math.unit(108, "lb"),
  28194. name: "Front (Dressed)",
  28195. image: {
  28196. source: "./media/characters/lilith-zott/front-dressed.svg",
  28197. extra: 2510 / 2238,
  28198. bottom: 100 / 2610
  28199. }
  28200. },
  28201. },
  28202. [
  28203. {
  28204. name: "Normal",
  28205. height: math.unit(5 + 6 / 12, "feet")
  28206. },
  28207. {
  28208. name: "Macro",
  28209. height: math.unit(200, "feet"),
  28210. default: true
  28211. },
  28212. {
  28213. name: "Macro+",
  28214. height: math.unit(1030, "feet")
  28215. },
  28216. ]
  28217. ))
  28218. characterMakers.push(() => makeCharacter(
  28219. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28220. {
  28221. front: {
  28222. height: math.unit(6, "feet"),
  28223. weight: math.unit(150, "lb"),
  28224. name: "Front",
  28225. image: {
  28226. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28227. extra: 2567 / 2435,
  28228. bottom: 39 / 2606
  28229. }
  28230. },
  28231. frontSuper: {
  28232. height: math.unit(6, "feet"),
  28233. name: "Front (Super)",
  28234. image: {
  28235. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28236. extra: 2567 / 2435,
  28237. bottom: 39 / 2606
  28238. }
  28239. },
  28240. },
  28241. [
  28242. {
  28243. name: "Normal",
  28244. height: math.unit(5 + 10 / 12, "feet")
  28245. },
  28246. {
  28247. name: "Macro",
  28248. height: math.unit(220, "feet"),
  28249. default: true
  28250. },
  28251. {
  28252. name: "Macro+",
  28253. height: math.unit(1100, "feet")
  28254. },
  28255. ]
  28256. ))
  28257. characterMakers.push(() => makeCharacter(
  28258. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28259. {
  28260. front: {
  28261. height: math.unit(100, "miles"),
  28262. name: "Front",
  28263. image: {
  28264. source: "./media/characters/sona/front.svg",
  28265. extra: 2433 / 2201,
  28266. bottom: 53 / 2486
  28267. }
  28268. },
  28269. foot: {
  28270. height: math.unit(16.1, "miles"),
  28271. name: "Foot",
  28272. image: {
  28273. source: "./media/characters/sona/foot.svg"
  28274. }
  28275. },
  28276. },
  28277. [
  28278. {
  28279. name: "Macro",
  28280. height: math.unit(100, "miles"),
  28281. default: true
  28282. },
  28283. ]
  28284. ))
  28285. characterMakers.push(() => makeCharacter(
  28286. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28287. {
  28288. front: {
  28289. height: math.unit(6, "feet"),
  28290. weight: math.unit(150, "lb"),
  28291. name: "Front",
  28292. image: {
  28293. source: "./media/characters/bailey/front.svg",
  28294. extra: 1778 / 1724,
  28295. bottom: 30 / 1808
  28296. }
  28297. },
  28298. },
  28299. [
  28300. {
  28301. name: "Micro",
  28302. height: math.unit(4, "inches")
  28303. },
  28304. {
  28305. name: "Normal",
  28306. height: math.unit(5 + 5 / 12, "feet"),
  28307. default: true
  28308. },
  28309. {
  28310. name: "Macro",
  28311. height: math.unit(250, "feet")
  28312. },
  28313. {
  28314. name: "Megamacro",
  28315. height: math.unit(100, "miles")
  28316. },
  28317. ]
  28318. ))
  28319. characterMakers.push(() => makeCharacter(
  28320. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28321. {
  28322. front: {
  28323. height: math.unit(5 + 2 / 12, "feet"),
  28324. weight: math.unit(120, "lb"),
  28325. name: "Front",
  28326. image: {
  28327. source: "./media/characters/snaps/front.svg",
  28328. extra: 2370 / 2177,
  28329. bottom: 48 / 2418
  28330. }
  28331. },
  28332. back: {
  28333. height: math.unit(5 + 2 / 12, "feet"),
  28334. weight: math.unit(120, "lb"),
  28335. name: "Back",
  28336. image: {
  28337. source: "./media/characters/snaps/back.svg",
  28338. extra: 2408 / 2258,
  28339. bottom: 15 / 2423
  28340. }
  28341. },
  28342. },
  28343. [
  28344. {
  28345. name: "Micro",
  28346. height: math.unit(9, "inches")
  28347. },
  28348. {
  28349. name: "Normal",
  28350. height: math.unit(5 + 2 / 12, "feet"),
  28351. default: true
  28352. },
  28353. {
  28354. name: "Mini Macro",
  28355. height: math.unit(10, "feet")
  28356. },
  28357. ]
  28358. ))
  28359. characterMakers.push(() => makeCharacter(
  28360. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28361. {
  28362. front: {
  28363. height: math.unit(1.8, "meters"),
  28364. weight: math.unit(85, "kg"),
  28365. name: "Front",
  28366. image: {
  28367. source: "./media/characters/azteck/front.svg",
  28368. extra: 2815 / 2625,
  28369. bottom: 89 / 2904
  28370. }
  28371. },
  28372. back: {
  28373. height: math.unit(1.8, "meters"),
  28374. weight: math.unit(85, "kg"),
  28375. name: "Back",
  28376. image: {
  28377. source: "./media/characters/azteck/back.svg",
  28378. extra: 2856 / 2648,
  28379. bottom: 85 / 2941
  28380. }
  28381. },
  28382. frontDressed: {
  28383. height: math.unit(1.8, "meters"),
  28384. weight: math.unit(85, "kg"),
  28385. name: "Front (Dressed)",
  28386. image: {
  28387. source: "./media/characters/azteck/front-dressed.svg",
  28388. extra: 2147 / 2003,
  28389. bottom: 68 / 2215
  28390. }
  28391. },
  28392. head: {
  28393. height: math.unit(0.47, "meters"),
  28394. weight: math.unit(85, "kg"),
  28395. name: "Head",
  28396. image: {
  28397. source: "./media/characters/azteck/head.svg"
  28398. }
  28399. },
  28400. },
  28401. [
  28402. {
  28403. name: "Bite sized",
  28404. height: math.unit(16, "cm")
  28405. },
  28406. {
  28407. name: "Normal",
  28408. height: math.unit(1.8, "meters"),
  28409. default: true
  28410. },
  28411. ]
  28412. ))
  28413. characterMakers.push(() => makeCharacter(
  28414. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28415. {
  28416. front: {
  28417. height: math.unit(6, "feet"),
  28418. weight: math.unit(150, "lb"),
  28419. name: "Front",
  28420. image: {
  28421. source: "./media/characters/pidge/front.svg",
  28422. extra: 620 / 588,
  28423. bottom: 9 / 629
  28424. }
  28425. },
  28426. back: {
  28427. height: math.unit(6, "feet"),
  28428. weight: math.unit(150, "lb"),
  28429. name: "Back",
  28430. image: {
  28431. source: "./media/characters/pidge/back.svg",
  28432. extra: 620 / 588,
  28433. bottom: 9 / 629
  28434. }
  28435. },
  28436. },
  28437. [
  28438. {
  28439. name: "Macro",
  28440. height: math.unit(1, "mile"),
  28441. default: true
  28442. },
  28443. ]
  28444. ))
  28445. characterMakers.push(() => makeCharacter(
  28446. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28447. {
  28448. front: {
  28449. height: math.unit(6, "feet"),
  28450. weight: math.unit(150, "lb"),
  28451. name: "Front",
  28452. image: {
  28453. source: "./media/characters/en/front.svg",
  28454. extra: 1697 / 1563,
  28455. bottom: 103 / 1800
  28456. }
  28457. },
  28458. back: {
  28459. height: math.unit(6, "feet"),
  28460. weight: math.unit(150, "lb"),
  28461. name: "Back",
  28462. image: {
  28463. source: "./media/characters/en/back.svg",
  28464. extra: 1700 / 1570,
  28465. bottom: 51 / 1751
  28466. }
  28467. },
  28468. frontDressed: {
  28469. height: math.unit(6, "feet"),
  28470. weight: math.unit(150, "lb"),
  28471. name: "Front (Dressed)",
  28472. image: {
  28473. source: "./media/characters/en/front-dressed.svg",
  28474. extra: 1697 / 1563,
  28475. bottom: 103 / 1800
  28476. }
  28477. },
  28478. backDressed: {
  28479. height: math.unit(6, "feet"),
  28480. weight: math.unit(150, "lb"),
  28481. name: "Back (Dressed)",
  28482. image: {
  28483. source: "./media/characters/en/back-dressed.svg",
  28484. extra: 1700 / 1570,
  28485. bottom: 51 / 1751
  28486. }
  28487. },
  28488. },
  28489. [
  28490. {
  28491. name: "Macro",
  28492. height: math.unit(210, "feet"),
  28493. default: true
  28494. },
  28495. ]
  28496. ))
  28497. characterMakers.push(() => makeCharacter(
  28498. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28499. {
  28500. front: {
  28501. height: math.unit(6, "feet"),
  28502. weight: math.unit(150, "lb"),
  28503. name: "Front",
  28504. image: {
  28505. source: "./media/characters/haze-orris/front.svg",
  28506. extra: 3975 / 3525,
  28507. bottom: 137 / 4112
  28508. }
  28509. },
  28510. },
  28511. [
  28512. {
  28513. name: "Micro",
  28514. height: math.unit(150, "mm"),
  28515. default: true
  28516. },
  28517. ]
  28518. ))
  28519. characterMakers.push(() => makeCharacter(
  28520. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28521. {
  28522. front: {
  28523. height: math.unit(6, "feet"),
  28524. weight: math.unit(150, "lb"),
  28525. name: "Front",
  28526. image: {
  28527. source: "./media/characters/casselene-yaro/front.svg",
  28528. extra: 4721 / 4541,
  28529. bottom: 82 / 4803
  28530. }
  28531. },
  28532. back: {
  28533. height: math.unit(6, "feet"),
  28534. weight: math.unit(150, "lb"),
  28535. name: "Back",
  28536. image: {
  28537. source: "./media/characters/casselene-yaro/back.svg",
  28538. extra: 4569 / 4377,
  28539. bottom: 69 / 4638
  28540. }
  28541. },
  28542. frontDressed: {
  28543. height: math.unit(6, "feet"),
  28544. weight: math.unit(150, "lb"),
  28545. name: "Front-dressed",
  28546. image: {
  28547. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28548. extra: 4721 / 4541,
  28549. bottom: 82 / 4803
  28550. }
  28551. },
  28552. },
  28553. [
  28554. {
  28555. name: "Macro",
  28556. height: math.unit(190, "feet")
  28557. },
  28558. ]
  28559. ))
  28560. characterMakers.push(() => makeCharacter(
  28561. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28562. {
  28563. front: {
  28564. height: math.unit(6, "feet"),
  28565. weight: math.unit(150, "lb"),
  28566. name: "Front",
  28567. image: {
  28568. source: "./media/characters/myra-rue-delore/front.svg",
  28569. extra: 1340 / 1308,
  28570. bottom: 67 / 1407
  28571. }
  28572. },
  28573. back: {
  28574. height: math.unit(6, "feet"),
  28575. weight: math.unit(150, "lb"),
  28576. name: "Back",
  28577. image: {
  28578. source: "./media/characters/myra-rue-delore/back.svg",
  28579. extra: 1341 / 1310,
  28580. bottom: 40 / 1381
  28581. }
  28582. },
  28583. frontDressed: {
  28584. height: math.unit(6, "feet"),
  28585. weight: math.unit(150, "lb"),
  28586. name: "Front (Dressed)",
  28587. image: {
  28588. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28589. extra: 1340 / 1308,
  28590. bottom: 67 / 1407
  28591. }
  28592. },
  28593. },
  28594. [
  28595. {
  28596. name: "Macro",
  28597. height: math.unit(150, "feet")
  28598. },
  28599. ]
  28600. ))
  28601. characterMakers.push(() => makeCharacter(
  28602. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28603. {
  28604. front: {
  28605. height: math.unit(10, "feet"),
  28606. weight: math.unit(15015, "lb"),
  28607. name: "Front",
  28608. image: {
  28609. source: "./media/characters/fem!plat/front.svg",
  28610. extra: 2799 / 2604,
  28611. bottom: 149 / 2948
  28612. }
  28613. },
  28614. },
  28615. [
  28616. {
  28617. name: "Normal",
  28618. height: math.unit(10, "feet"),
  28619. default: true
  28620. },
  28621. {
  28622. name: "Macro",
  28623. height: math.unit(100, "feet")
  28624. },
  28625. {
  28626. name: "Megamacro",
  28627. height: math.unit(1000, "feet")
  28628. },
  28629. ]
  28630. ))
  28631. characterMakers.push(() => makeCharacter(
  28632. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28633. {
  28634. front: {
  28635. height: math.unit(15 + 5 / 12, "feet"),
  28636. weight: math.unit(4600, "lb"),
  28637. name: "Front",
  28638. image: {
  28639. source: "./media/characters/neapolitan-ananassa/front.svg",
  28640. extra: 2903 / 2736,
  28641. bottom: 0 / 2903
  28642. }
  28643. },
  28644. side: {
  28645. height: math.unit(15 + 5 / 12, "feet"),
  28646. weight: math.unit(4600, "lb"),
  28647. name: "Side",
  28648. image: {
  28649. source: "./media/characters/neapolitan-ananassa/side.svg",
  28650. extra: 2925 / 2719,
  28651. bottom: 0 / 2925
  28652. }
  28653. },
  28654. back: {
  28655. height: math.unit(15 + 5 / 12, "feet"),
  28656. weight: math.unit(4600, "lb"),
  28657. name: "Back",
  28658. image: {
  28659. source: "./media/characters/neapolitan-ananassa/back.svg",
  28660. extra: 2903 / 2736,
  28661. bottom: 0 / 2903
  28662. }
  28663. },
  28664. },
  28665. [
  28666. {
  28667. name: "Normal",
  28668. height: math.unit(15 + 5 / 12, "feet"),
  28669. default: true
  28670. },
  28671. {
  28672. name: "Post-Millenium",
  28673. height: math.unit(35 + 5 / 12, "feet")
  28674. },
  28675. {
  28676. name: "Post-Era",
  28677. height: math.unit(450 + 5 / 12, "feet")
  28678. },
  28679. ]
  28680. ))
  28681. characterMakers.push(() => makeCharacter(
  28682. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28683. {
  28684. front: {
  28685. height: math.unit(300, "meters"),
  28686. weight: math.unit(125000, "tonnes"),
  28687. name: "Front",
  28688. image: {
  28689. source: "./media/characters/pazuzu/front.svg",
  28690. extra: 877 / 794,
  28691. bottom: 47 / 924
  28692. }
  28693. },
  28694. },
  28695. [
  28696. {
  28697. name: "Macro",
  28698. height: math.unit(300, "meters"),
  28699. default: true
  28700. },
  28701. ]
  28702. ))
  28703. characterMakers.push(() => makeCharacter(
  28704. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28705. {
  28706. side: {
  28707. height: math.unit(10 + 7 / 12, "feet"),
  28708. weight: math.unit(2.5, "tons"),
  28709. name: "Side",
  28710. image: {
  28711. source: "./media/characters/aasha/side.svg",
  28712. extra: 1345 / 1245,
  28713. bottom: 111 / 1456
  28714. }
  28715. },
  28716. back: {
  28717. height: math.unit(10 + 7 / 12, "feet"),
  28718. weight: math.unit(2.5, "tons"),
  28719. name: "Back",
  28720. image: {
  28721. source: "./media/characters/aasha/back.svg",
  28722. extra: 1133 / 1057,
  28723. bottom: 257 / 1390
  28724. }
  28725. },
  28726. },
  28727. [
  28728. {
  28729. name: "Normal",
  28730. height: math.unit(10 + 7 / 12, "feet"),
  28731. default: true
  28732. },
  28733. ]
  28734. ))
  28735. characterMakers.push(() => makeCharacter(
  28736. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28737. {
  28738. front: {
  28739. height: math.unit(6 + 3 / 12, "feet"),
  28740. name: "Front",
  28741. image: {
  28742. source: "./media/characters/nevan/front.svg",
  28743. extra: 704 / 704,
  28744. bottom: 28 / 732
  28745. }
  28746. },
  28747. back: {
  28748. height: math.unit(6 + 3 / 12, "feet"),
  28749. name: "Back",
  28750. image: {
  28751. source: "./media/characters/nevan/back.svg",
  28752. extra: 714 / 714,
  28753. bottom: 21 / 735
  28754. }
  28755. },
  28756. frontFlaccid: {
  28757. height: math.unit(6 + 3 / 12, "feet"),
  28758. name: "Front (Flaccid)",
  28759. image: {
  28760. source: "./media/characters/nevan/front-flaccid.svg",
  28761. extra: 704 / 704,
  28762. bottom: 28 / 732
  28763. }
  28764. },
  28765. frontErect: {
  28766. height: math.unit(6 + 3 / 12, "feet"),
  28767. name: "Front (Erect)",
  28768. image: {
  28769. source: "./media/characters/nevan/front-erect.svg",
  28770. extra: 704 / 704,
  28771. bottom: 28 / 732
  28772. }
  28773. },
  28774. backFlaccid: {
  28775. height: math.unit(6 + 3 / 12, "feet"),
  28776. name: "Back (Flaccid)",
  28777. image: {
  28778. source: "./media/characters/nevan/back-flaccid.svg",
  28779. extra: 714 / 714,
  28780. bottom: 21 / 735
  28781. }
  28782. },
  28783. },
  28784. [
  28785. {
  28786. name: "Normal",
  28787. height: math.unit(6 + 3 / 12, "feet"),
  28788. default: true
  28789. },
  28790. ]
  28791. ))
  28792. characterMakers.push(() => makeCharacter(
  28793. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  28794. {
  28795. front: {
  28796. height: math.unit(4, "feet"),
  28797. name: "Front",
  28798. image: {
  28799. source: "./media/characters/arhan/front.svg",
  28800. extra: 3368 / 3133,
  28801. bottom: 0 / 3368
  28802. }
  28803. },
  28804. side: {
  28805. height: math.unit(4, "feet"),
  28806. name: "Side",
  28807. image: {
  28808. source: "./media/characters/arhan/side.svg",
  28809. extra: 3347 / 3105,
  28810. bottom: 0 / 3347
  28811. }
  28812. },
  28813. tongue: {
  28814. height: math.unit(1.42, "feet"),
  28815. name: "Tongue",
  28816. image: {
  28817. source: "./media/characters/arhan/tongue.svg"
  28818. }
  28819. },
  28820. head: {
  28821. height: math.unit(0.85, "feet"),
  28822. name: "Head",
  28823. image: {
  28824. source: "./media/characters/arhan/head.svg"
  28825. }
  28826. },
  28827. },
  28828. [
  28829. {
  28830. name: "Normal",
  28831. height: math.unit(4, "feet"),
  28832. default: true
  28833. },
  28834. ]
  28835. ))
  28836. characterMakers.push(() => makeCharacter(
  28837. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  28838. {
  28839. front: {
  28840. height: math.unit(5 + 7.5 / 12, "feet"),
  28841. weight: math.unit(120, "lb"),
  28842. name: "Front",
  28843. image: {
  28844. source: "./media/characters/digi-duncan/front.svg",
  28845. extra: 330 / 326,
  28846. bottom: 16 / 346
  28847. }
  28848. },
  28849. side: {
  28850. height: math.unit(5 + 7.5 / 12, "feet"),
  28851. weight: math.unit(120, "lb"),
  28852. name: "Side",
  28853. image: {
  28854. source: "./media/characters/digi-duncan/side.svg",
  28855. extra: 341 / 337,
  28856. bottom: 1 / 342
  28857. }
  28858. },
  28859. back: {
  28860. height: math.unit(5 + 7.5 / 12, "feet"),
  28861. weight: math.unit(120, "lb"),
  28862. name: "Back",
  28863. image: {
  28864. source: "./media/characters/digi-duncan/back.svg",
  28865. extra: 330 / 326,
  28866. bottom: 12 / 342
  28867. }
  28868. },
  28869. },
  28870. [
  28871. {
  28872. name: "Speck",
  28873. height: math.unit(0.25, "mm")
  28874. },
  28875. {
  28876. name: "Micro",
  28877. height: math.unit(5, "mm")
  28878. },
  28879. {
  28880. name: "Tiny",
  28881. height: math.unit(0.5, "inches"),
  28882. default: true
  28883. },
  28884. {
  28885. name: "Human",
  28886. height: math.unit(5 + 7.5 / 12, "feet")
  28887. },
  28888. {
  28889. name: "Minigiant",
  28890. height: math.unit(8 + 5.25, "feet")
  28891. },
  28892. {
  28893. name: "Giant",
  28894. height: math.unit(2000, "feet")
  28895. },
  28896. {
  28897. name: "Mega",
  28898. height: math.unit(371.1, "miles")
  28899. },
  28900. ]
  28901. ))
  28902. characterMakers.push(() => makeCharacter(
  28903. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  28904. {
  28905. front: {
  28906. height: math.unit(2, "meters"),
  28907. weight: math.unit(350, "kg"),
  28908. name: "Front",
  28909. image: {
  28910. source: "./media/characters/jagaz-soulbreaker/front.svg",
  28911. extra: 898 / 838,
  28912. bottom: 9 / 907
  28913. }
  28914. },
  28915. },
  28916. [
  28917. {
  28918. name: "Micro",
  28919. height: math.unit(8, "meters")
  28920. },
  28921. {
  28922. name: "Normal",
  28923. height: math.unit(50, "meters"),
  28924. default: true
  28925. },
  28926. {
  28927. name: "Macro",
  28928. height: math.unit(500, "meters")
  28929. },
  28930. ]
  28931. ))
  28932. characterMakers.push(() => makeCharacter(
  28933. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  28934. {
  28935. front: {
  28936. height: math.unit(6 + 6 / 12, "feet"),
  28937. name: "Front",
  28938. image: {
  28939. source: "./media/characters/khardesh/front.svg",
  28940. extra: 888 / 797,
  28941. bottom: 25 / 913
  28942. }
  28943. },
  28944. },
  28945. [
  28946. {
  28947. name: "Normal",
  28948. height: math.unit(6 + 6 / 12, "feet"),
  28949. default: true
  28950. },
  28951. {
  28952. name: "Normal+",
  28953. height: math.unit(4, "meters")
  28954. },
  28955. {
  28956. name: "Macro",
  28957. height: math.unit(50, "meters")
  28958. },
  28959. {
  28960. name: "Macro+",
  28961. height: math.unit(100, "meters")
  28962. },
  28963. {
  28964. name: "Megamacro",
  28965. height: math.unit(20, "km")
  28966. },
  28967. ]
  28968. ))
  28969. characterMakers.push(() => makeCharacter(
  28970. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  28971. {
  28972. front: {
  28973. height: math.unit(6, "feet"),
  28974. weight: math.unit(150, "lb"),
  28975. name: "Front",
  28976. image: {
  28977. source: "./media/characters/kosho/front.svg",
  28978. extra: 1847 / 1847,
  28979. bottom: 86 / 1933
  28980. }
  28981. },
  28982. },
  28983. [
  28984. {
  28985. name: "Second-stage micro",
  28986. height: math.unit(0.5, "inches")
  28987. },
  28988. {
  28989. name: "First-stage micro",
  28990. height: math.unit(6, "inches")
  28991. },
  28992. {
  28993. name: "Normal",
  28994. height: math.unit(6, "feet"),
  28995. default: true
  28996. },
  28997. {
  28998. name: "First-stage macro",
  28999. height: math.unit(72, "feet")
  29000. },
  29001. {
  29002. name: "Second-stage macro",
  29003. height: math.unit(864, "feet")
  29004. },
  29005. ]
  29006. ))
  29007. characterMakers.push(() => makeCharacter(
  29008. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29009. {
  29010. normal: {
  29011. height: math.unit(4 + 6 / 12, "feet"),
  29012. name: "Normal",
  29013. image: {
  29014. source: "./media/characters/hydra/normal.svg",
  29015. extra: 2833 / 2634,
  29016. bottom: 68 / 2901
  29017. }
  29018. },
  29019. smol: {
  29020. height: math.unit(0.705, "inches"),
  29021. name: "Smol",
  29022. image: {
  29023. source: "./media/characters/hydra/smol.svg",
  29024. extra: 2715 / 2540,
  29025. bottom: 0 / 2715
  29026. }
  29027. },
  29028. },
  29029. [
  29030. {
  29031. name: "Normal",
  29032. height: math.unit(4 + 6 / 12, "feet"),
  29033. default: true
  29034. }
  29035. ]
  29036. ))
  29037. characterMakers.push(() => makeCharacter(
  29038. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29039. {
  29040. front: {
  29041. height: math.unit(0.6, "cm"),
  29042. name: "Front",
  29043. image: {
  29044. source: "./media/characters/daz/front.svg",
  29045. extra: 1682 / 1164,
  29046. bottom: 42 / 1724
  29047. }
  29048. },
  29049. },
  29050. [
  29051. {
  29052. name: "Normal",
  29053. height: math.unit(0.6, "cm"),
  29054. default: true
  29055. },
  29056. ]
  29057. ))
  29058. characterMakers.push(() => makeCharacter(
  29059. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29060. {
  29061. front: {
  29062. height: math.unit(6, "feet"),
  29063. weight: math.unit(235, "lb"),
  29064. name: "Front",
  29065. image: {
  29066. source: "./media/characters/theo-pangolin/front.svg",
  29067. extra: 1996 / 1969,
  29068. bottom: 115 / 2111
  29069. }
  29070. },
  29071. back: {
  29072. height: math.unit(6, "feet"),
  29073. weight: math.unit(235, "lb"),
  29074. name: "Back",
  29075. image: {
  29076. source: "./media/characters/theo-pangolin/back.svg",
  29077. extra: 1979 / 1979,
  29078. bottom: 40 / 2019
  29079. }
  29080. },
  29081. feral: {
  29082. height: math.unit(2, "feet"),
  29083. weight: math.unit(30, "lb"),
  29084. name: "Feral",
  29085. image: {
  29086. source: "./media/characters/theo-pangolin/feral.svg",
  29087. extra: 803 / 791,
  29088. bottom: 181 / 984
  29089. }
  29090. },
  29091. footFive: {
  29092. height: math.unit(1.43, "feet"),
  29093. name: "Foot (Five Toes)",
  29094. image: {
  29095. source: "./media/characters/theo-pangolin/foot-five.svg"
  29096. }
  29097. },
  29098. footFour: {
  29099. height: math.unit(1.43, "feet"),
  29100. name: "Foot (Four Toes)",
  29101. image: {
  29102. source: "./media/characters/theo-pangolin/foot-four.svg"
  29103. }
  29104. },
  29105. handFour: {
  29106. height: math.unit(0.81, "feet"),
  29107. name: "Hand (Four Fingers)",
  29108. image: {
  29109. source: "./media/characters/theo-pangolin/hand-four.svg"
  29110. }
  29111. },
  29112. handThree: {
  29113. height: math.unit(0.81, "feet"),
  29114. name: "Hand (Three Fingers)",
  29115. image: {
  29116. source: "./media/characters/theo-pangolin/hand-three.svg"
  29117. }
  29118. },
  29119. headFront: {
  29120. height: math.unit(1.37, "feet"),
  29121. name: "Head (Front)",
  29122. image: {
  29123. source: "./media/characters/theo-pangolin/head-front.svg"
  29124. }
  29125. },
  29126. headSide: {
  29127. height: math.unit(1.43, "feet"),
  29128. name: "Head (Side)",
  29129. image: {
  29130. source: "./media/characters/theo-pangolin/head-side.svg"
  29131. }
  29132. },
  29133. tongue: {
  29134. height: math.unit(2.29, "feet"),
  29135. name: "Tongue",
  29136. image: {
  29137. source: "./media/characters/theo-pangolin/tongue.svg"
  29138. }
  29139. },
  29140. },
  29141. [
  29142. {
  29143. name: "Normal",
  29144. height: math.unit(6, "feet")
  29145. },
  29146. {
  29147. name: "Macro",
  29148. height: math.unit(400, "feet"),
  29149. default: true
  29150. },
  29151. ]
  29152. ))
  29153. characterMakers.push(() => makeCharacter(
  29154. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29155. {
  29156. front: {
  29157. height: math.unit(6, "inches"),
  29158. weight: math.unit(0.036, "kg"),
  29159. name: "Front",
  29160. image: {
  29161. source: "./media/characters/renée/front.svg",
  29162. extra: 900 / 886,
  29163. bottom: 8 / 908
  29164. }
  29165. },
  29166. },
  29167. [
  29168. {
  29169. name: "Nano",
  29170. height: math.unit(1, "nm")
  29171. },
  29172. {
  29173. name: "Micro",
  29174. height: math.unit(1, "mm")
  29175. },
  29176. {
  29177. name: "Normal",
  29178. height: math.unit(6, "inches")
  29179. },
  29180. {
  29181. name: "Macro",
  29182. height: math.unit(2000, "feet"),
  29183. default: true
  29184. },
  29185. {
  29186. name: "Megamacro",
  29187. height: math.unit(2, "km")
  29188. },
  29189. {
  29190. name: "Gigamacro",
  29191. height: math.unit(2000, "km")
  29192. },
  29193. {
  29194. name: "Teramacro",
  29195. height: math.unit(250000, "km")
  29196. },
  29197. ]
  29198. ))
  29199. characterMakers.push(() => makeCharacter(
  29200. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29201. {
  29202. front: {
  29203. height: math.unit(4, "meters"),
  29204. weight: math.unit(150, "kg"),
  29205. name: "Front",
  29206. image: {
  29207. source: "./media/characters/caledvwlch/front.svg",
  29208. extra: 1760 / 1551,
  29209. bottom: 28 / 1788
  29210. }
  29211. },
  29212. side: {
  29213. height: math.unit(4, "meters"),
  29214. weight: math.unit(150, "kg"),
  29215. name: "Side",
  29216. image: {
  29217. source: "./media/characters/caledvwlch/side.svg",
  29218. extra: 1605 / 1536,
  29219. bottom: 31 / 1636
  29220. }
  29221. },
  29222. back: {
  29223. height: math.unit(4, "meters"),
  29224. weight: math.unit(150, "kg"),
  29225. name: "Back",
  29226. image: {
  29227. source: "./media/characters/caledvwlch/back.svg",
  29228. extra: 1635 / 1565,
  29229. bottom: 27 / 1662
  29230. }
  29231. },
  29232. },
  29233. [
  29234. {
  29235. name: "\"Incognito\"",
  29236. height: math.unit(4, "meters")
  29237. },
  29238. {
  29239. name: "Small rampage",
  29240. height: math.unit(600, "meters")
  29241. },
  29242. {
  29243. name: "Mega",
  29244. height: math.unit(30, "km")
  29245. },
  29246. {
  29247. name: "Home-size",
  29248. height: math.unit(50, "km"),
  29249. default: true
  29250. },
  29251. {
  29252. name: "Giga",
  29253. height: math.unit(300, "km")
  29254. },
  29255. {
  29256. name: "Lounging",
  29257. height: math.unit(11000, "km")
  29258. },
  29259. {
  29260. name: "Planet snacking",
  29261. height: math.unit(2000000, "km")
  29262. },
  29263. ]
  29264. ))
  29265. characterMakers.push(() => makeCharacter(
  29266. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29267. {
  29268. front: {
  29269. height: math.unit(6, "feet"),
  29270. weight: math.unit(215, "lb"),
  29271. name: "Front",
  29272. image: {
  29273. source: "./media/characters/sapphire-svell/front.svg",
  29274. extra: 495 / 455,
  29275. bottom: 20 / 515
  29276. }
  29277. },
  29278. back: {
  29279. height: math.unit(6, "feet"),
  29280. weight: math.unit(216, "lb"),
  29281. name: "Back",
  29282. image: {
  29283. source: "./media/characters/sapphire-svell/back.svg",
  29284. extra: 497 / 477,
  29285. bottom: 7 / 504
  29286. }
  29287. },
  29288. maw: {
  29289. height: math.unit(1.57, "feet"),
  29290. name: "Maw",
  29291. image: {
  29292. source: "./media/characters/sapphire-svell/maw.svg"
  29293. }
  29294. },
  29295. foot: {
  29296. height: math.unit(1.07, "feet"),
  29297. name: "Foot",
  29298. image: {
  29299. source: "./media/characters/sapphire-svell/foot.svg"
  29300. }
  29301. },
  29302. toering: {
  29303. height: math.unit(1.7, "inch"),
  29304. name: "Toering",
  29305. image: {
  29306. source: "./media/characters/sapphire-svell/toering.svg"
  29307. }
  29308. },
  29309. },
  29310. [
  29311. {
  29312. name: "Normal",
  29313. height: math.unit(300, "feet"),
  29314. default: true
  29315. },
  29316. {
  29317. name: "Augmented",
  29318. height: math.unit(1250, "feet")
  29319. },
  29320. {
  29321. name: "Unleashed",
  29322. height: math.unit(3000, "feet")
  29323. },
  29324. ]
  29325. ))
  29326. characterMakers.push(() => makeCharacter(
  29327. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29328. {
  29329. side: {
  29330. height: math.unit(2 + 3 / 12, "feet"),
  29331. weight: math.unit(110, "lb"),
  29332. name: "Side",
  29333. image: {
  29334. source: "./media/characters/glitch-flux/side.svg",
  29335. extra: 997 / 805,
  29336. bottom: 20 / 1017
  29337. }
  29338. },
  29339. },
  29340. [
  29341. {
  29342. name: "Normal",
  29343. height: math.unit(2 + 3 / 12, "feet"),
  29344. default: true
  29345. },
  29346. ]
  29347. ))
  29348. characterMakers.push(() => makeCharacter(
  29349. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29350. {
  29351. front: {
  29352. height: math.unit(4, "meters"),
  29353. name: "Front",
  29354. image: {
  29355. source: "./media/characters/mid/front.svg",
  29356. extra: 507 / 476,
  29357. bottom: 17 / 524
  29358. }
  29359. },
  29360. back: {
  29361. height: math.unit(4, "meters"),
  29362. name: "Back",
  29363. image: {
  29364. source: "./media/characters/mid/back.svg",
  29365. extra: 519 / 487,
  29366. bottom: 7 / 526
  29367. }
  29368. },
  29369. stuck: {
  29370. height: math.unit(2.2, "meters"),
  29371. name: "Stuck",
  29372. image: {
  29373. source: "./media/characters/mid/stuck.svg",
  29374. extra: 1951 / 1869,
  29375. bottom: 88 / 2039
  29376. }
  29377. }
  29378. },
  29379. [
  29380. {
  29381. name: "Normal",
  29382. height: math.unit(4, "meters"),
  29383. default: true
  29384. },
  29385. {
  29386. name: "Big",
  29387. height: math.unit(10, "meters")
  29388. },
  29389. {
  29390. name: "Macro",
  29391. height: math.unit(800, "meters")
  29392. },
  29393. {
  29394. name: "Megamacro",
  29395. height: math.unit(100, "km")
  29396. },
  29397. {
  29398. name: "Overgrown",
  29399. height: math.unit(1, "parsec")
  29400. },
  29401. ]
  29402. ))
  29403. characterMakers.push(() => makeCharacter(
  29404. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29405. {
  29406. front: {
  29407. height: math.unit(2.5, "meters"),
  29408. weight: math.unit(225, "kg"),
  29409. name: "Front",
  29410. image: {
  29411. source: "./media/characters/iris/front.svg",
  29412. extra: 3348 / 3251,
  29413. bottom: 205 / 3553
  29414. }
  29415. },
  29416. maw: {
  29417. height: math.unit(0.56, "meter"),
  29418. name: "Maw",
  29419. image: {
  29420. source: "./media/characters/iris/maw.svg"
  29421. }
  29422. },
  29423. },
  29424. [
  29425. {
  29426. name: "Mewter cat",
  29427. height: math.unit(1.2, "meters")
  29428. },
  29429. {
  29430. name: "Minimacro",
  29431. height: math.unit(2.5, "meters"),
  29432. default: true
  29433. },
  29434. {
  29435. name: "Macro",
  29436. height: math.unit(180, "meters")
  29437. },
  29438. {
  29439. name: "Megamacro",
  29440. height: math.unit(2746, "meters")
  29441. },
  29442. ]
  29443. ))
  29444. characterMakers.push(() => makeCharacter(
  29445. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29446. {
  29447. front: {
  29448. height: math.unit(6, "feet"),
  29449. weight: math.unit(135, "lb"),
  29450. name: "Front",
  29451. image: {
  29452. source: "./media/characters/axel/front.svg",
  29453. extra: 908 / 908,
  29454. bottom: 58 / 966
  29455. }
  29456. },
  29457. side: {
  29458. height: math.unit(6, "feet"),
  29459. weight: math.unit(135, "lb"),
  29460. name: "Side",
  29461. image: {
  29462. source: "./media/characters/axel/side.svg",
  29463. extra: 958 / 958,
  29464. bottom: 11 / 969
  29465. }
  29466. },
  29467. back: {
  29468. height: math.unit(6, "feet"),
  29469. weight: math.unit(135, "lb"),
  29470. name: "Back",
  29471. image: {
  29472. source: "./media/characters/axel/back.svg",
  29473. extra: 887 / 887,
  29474. bottom: 34 / 921
  29475. }
  29476. },
  29477. head: {
  29478. height: math.unit(1.07, "feet"),
  29479. name: "Head",
  29480. image: {
  29481. source: "./media/characters/axel/head.svg"
  29482. }
  29483. },
  29484. beak: {
  29485. height: math.unit(1.4, "feet"),
  29486. name: "Beak",
  29487. image: {
  29488. source: "./media/characters/axel/beak.svg"
  29489. }
  29490. },
  29491. beakSide: {
  29492. height: math.unit(1.4, "feet"),
  29493. name: "Beak Side",
  29494. image: {
  29495. source: "./media/characters/axel/beak-side.svg"
  29496. }
  29497. },
  29498. sheath: {
  29499. height: math.unit(0.5, "feet"),
  29500. name: "Sheath",
  29501. image: {
  29502. source: "./media/characters/axel/sheath.svg"
  29503. }
  29504. },
  29505. dick: {
  29506. height: math.unit(0.98, "feet"),
  29507. name: "Dick",
  29508. image: {
  29509. source: "./media/characters/axel/dick.svg"
  29510. }
  29511. },
  29512. },
  29513. [
  29514. {
  29515. name: "Macro",
  29516. height: math.unit(68, "meters"),
  29517. default: true
  29518. },
  29519. ]
  29520. ))
  29521. characterMakers.push(() => makeCharacter(
  29522. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29523. {
  29524. front: {
  29525. height: math.unit(3.5, "meters"),
  29526. weight: math.unit(1200, "kg"),
  29527. name: "Front",
  29528. image: {
  29529. source: "./media/characters/joanna/front.svg",
  29530. extra: 1596 / 1488,
  29531. bottom: 29 / 1625
  29532. }
  29533. },
  29534. back: {
  29535. height: math.unit(3.5, "meters"),
  29536. weight: math.unit(1200, "kg"),
  29537. name: "Back",
  29538. image: {
  29539. source: "./media/characters/joanna/back.svg",
  29540. extra: 1594 / 1495,
  29541. bottom: 26 / 1620
  29542. }
  29543. },
  29544. frontShorts: {
  29545. height: math.unit(3.5, "meters"),
  29546. weight: math.unit(1200, "kg"),
  29547. name: "Front (Shorts)",
  29548. image: {
  29549. source: "./media/characters/joanna/front-shorts.svg",
  29550. extra: 1596 / 1488,
  29551. bottom: 29 / 1625
  29552. }
  29553. },
  29554. frontBiker: {
  29555. height: math.unit(3.5, "meters"),
  29556. weight: math.unit(1200, "kg"),
  29557. name: "Front (Biker)",
  29558. image: {
  29559. source: "./media/characters/joanna/front-biker.svg",
  29560. extra: 1596 / 1488,
  29561. bottom: 29 / 1625
  29562. }
  29563. },
  29564. backBiker: {
  29565. height: math.unit(3.5, "meters"),
  29566. weight: math.unit(1200, "kg"),
  29567. name: "Back (Biker)",
  29568. image: {
  29569. source: "./media/characters/joanna/back-biker.svg",
  29570. extra: 1594 / 1495,
  29571. bottom: 88 / 1682
  29572. }
  29573. },
  29574. bikeLeft: {
  29575. height: math.unit(2.4, "meters"),
  29576. weight: math.unit(1600, "kg"),
  29577. name: "Bike (Left)",
  29578. image: {
  29579. source: "./media/characters/joanna/bike-left.svg",
  29580. extra: 720 / 720,
  29581. bottom: 8 / 728
  29582. }
  29583. },
  29584. bikeRight: {
  29585. height: math.unit(2.4, "meters"),
  29586. weight: math.unit(1600, "kg"),
  29587. name: "Bike (Right)",
  29588. image: {
  29589. source: "./media/characters/joanna/bike-right.svg",
  29590. extra: 720 / 720,
  29591. bottom: 8 / 728
  29592. }
  29593. },
  29594. },
  29595. [
  29596. {
  29597. name: "Incognito",
  29598. height: math.unit(3.5, "meters")
  29599. },
  29600. {
  29601. name: "Casual Big",
  29602. height: math.unit(200, "meters")
  29603. },
  29604. {
  29605. name: "Macro",
  29606. height: math.unit(600, "meters")
  29607. },
  29608. {
  29609. name: "Original",
  29610. height: math.unit(20, "km"),
  29611. default: true
  29612. },
  29613. {
  29614. name: "Giga",
  29615. height: math.unit(400, "km")
  29616. },
  29617. {
  29618. name: "Lounging",
  29619. height: math.unit(1500, "km")
  29620. },
  29621. {
  29622. name: "Planetary",
  29623. height: math.unit(200000, "km")
  29624. },
  29625. ]
  29626. ))
  29627. characterMakers.push(() => makeCharacter(
  29628. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29629. {
  29630. front: {
  29631. height: math.unit(6, "feet"),
  29632. weight: math.unit(150, "lb"),
  29633. name: "Front",
  29634. image: {
  29635. source: "./media/characters/hugo-sigil/front.svg",
  29636. extra: 522 / 500,
  29637. bottom: 2 / 524
  29638. }
  29639. },
  29640. back: {
  29641. height: math.unit(6, "feet"),
  29642. weight: math.unit(150, "lb"),
  29643. name: "Back",
  29644. image: {
  29645. source: "./media/characters/hugo-sigil/back.svg",
  29646. extra: 519 / 495,
  29647. bottom: 5 / 524
  29648. }
  29649. },
  29650. maw: {
  29651. height: math.unit(1.4, "feet"),
  29652. weight: math.unit(150, "lb"),
  29653. name: "Maw",
  29654. image: {
  29655. source: "./media/characters/hugo-sigil/maw.svg"
  29656. }
  29657. },
  29658. feet: {
  29659. height: math.unit(1.56, "feet"),
  29660. weight: math.unit(150, "lb"),
  29661. name: "Feet",
  29662. image: {
  29663. source: "./media/characters/hugo-sigil/feet.svg",
  29664. extra: 177 / 177,
  29665. bottom: 12 / 189
  29666. }
  29667. },
  29668. },
  29669. [
  29670. {
  29671. name: "Normal",
  29672. height: math.unit(6, "feet")
  29673. },
  29674. {
  29675. name: "Macro",
  29676. height: math.unit(200, "feet"),
  29677. default: true
  29678. },
  29679. ]
  29680. ))
  29681. characterMakers.push(() => makeCharacter(
  29682. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29683. {
  29684. front: {
  29685. height: math.unit(6, "feet"),
  29686. weight: math.unit(150, "lb"),
  29687. name: "Front",
  29688. image: {
  29689. source: "./media/characters/peri/front.svg",
  29690. extra: 2354 / 2233,
  29691. bottom: 49 / 2403
  29692. }
  29693. },
  29694. },
  29695. [
  29696. {
  29697. name: "Really Small",
  29698. height: math.unit(1, "nm")
  29699. },
  29700. {
  29701. name: "Micro",
  29702. height: math.unit(4, "inches")
  29703. },
  29704. {
  29705. name: "Normal",
  29706. height: math.unit(7, "inches"),
  29707. default: true
  29708. },
  29709. {
  29710. name: "Macro",
  29711. height: math.unit(400, "feet")
  29712. },
  29713. {
  29714. name: "Megamacro",
  29715. height: math.unit(100, "miles")
  29716. },
  29717. ]
  29718. ))
  29719. characterMakers.push(() => makeCharacter(
  29720. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29721. {
  29722. frontSlim: {
  29723. height: math.unit(7, "feet"),
  29724. name: "Front (Slim)",
  29725. image: {
  29726. source: "./media/characters/issilora/front-slim.svg",
  29727. extra: 529 / 449,
  29728. bottom: 53 / 582
  29729. }
  29730. },
  29731. sideSlim: {
  29732. height: math.unit(7, "feet"),
  29733. name: "Side (Slim)",
  29734. image: {
  29735. source: "./media/characters/issilora/side-slim.svg",
  29736. extra: 570 / 480,
  29737. bottom: 30 / 600
  29738. }
  29739. },
  29740. backSlim: {
  29741. height: math.unit(7, "feet"),
  29742. name: "Back (Slim)",
  29743. image: {
  29744. source: "./media/characters/issilora/back-slim.svg",
  29745. extra: 537 / 455,
  29746. bottom: 46 / 583
  29747. }
  29748. },
  29749. frontBuff: {
  29750. height: math.unit(7, "feet"),
  29751. name: "Front (Buff)",
  29752. image: {
  29753. source: "./media/characters/issilora/front-buff.svg",
  29754. extra: 2310 / 2035,
  29755. bottom: 335 / 2645
  29756. }
  29757. },
  29758. head: {
  29759. height: math.unit(1.94, "feet"),
  29760. name: "Head",
  29761. image: {
  29762. source: "./media/characters/issilora/head.svg"
  29763. }
  29764. },
  29765. },
  29766. [
  29767. {
  29768. name: "Minimum",
  29769. height: math.unit(7, "feet")
  29770. },
  29771. {
  29772. name: "Comfortable",
  29773. height: math.unit(17, "feet")
  29774. },
  29775. {
  29776. name: "Fun Size",
  29777. height: math.unit(47, "feet")
  29778. },
  29779. {
  29780. name: "Natural Macro",
  29781. height: math.unit(137, "feet"),
  29782. default: true
  29783. },
  29784. {
  29785. name: "Maximum Kaiju",
  29786. height: math.unit(397, "feet")
  29787. },
  29788. ]
  29789. ))
  29790. characterMakers.push(() => makeCharacter(
  29791. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  29792. {
  29793. front: {
  29794. height: math.unit(50 + 9/12, "feet"),
  29795. weight: math.unit(32.8, "tons"),
  29796. name: "Front",
  29797. image: {
  29798. source: "./media/characters/irb'iiritaahn/front.svg",
  29799. extra: 1878/1826,
  29800. bottom: 326/2204
  29801. }
  29802. },
  29803. back: {
  29804. height: math.unit(50 + 9/12, "feet"),
  29805. weight: math.unit(32.8, "tons"),
  29806. name: "Back",
  29807. image: {
  29808. source: "./media/characters/irb'iiritaahn/back.svg",
  29809. extra: 2052/2018,
  29810. bottom: 152/2204
  29811. }
  29812. },
  29813. head: {
  29814. height: math.unit(12.86, "feet"),
  29815. name: "Head",
  29816. image: {
  29817. source: "./media/characters/irb'iiritaahn/head.svg"
  29818. }
  29819. },
  29820. maw: {
  29821. height: math.unit(9.66, "feet"),
  29822. name: "Maw",
  29823. image: {
  29824. source: "./media/characters/irb'iiritaahn/maw.svg"
  29825. }
  29826. },
  29827. frontDick: {
  29828. height: math.unit(8.78461, "feet"),
  29829. name: "Front Dick",
  29830. image: {
  29831. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  29832. }
  29833. },
  29834. rearDick: {
  29835. height: math.unit(8.78461, "feet"),
  29836. name: "Rear Dick",
  29837. image: {
  29838. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  29839. }
  29840. },
  29841. rearDickUnfolded: {
  29842. height: math.unit(8.78, "feet"),
  29843. name: "Rear Dick (Unfolded)",
  29844. image: {
  29845. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  29846. }
  29847. },
  29848. wings: {
  29849. height: math.unit(43, "feet"),
  29850. name: "Wings",
  29851. image: {
  29852. source: "./media/characters/irb'iiritaahn/wings.svg"
  29853. }
  29854. },
  29855. },
  29856. [
  29857. {
  29858. name: "Macro",
  29859. height: math.unit(50 + 9/12, "feet"),
  29860. default: true
  29861. },
  29862. ]
  29863. ))
  29864. characterMakers.push(() => makeCharacter(
  29865. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  29866. {
  29867. front: {
  29868. height: math.unit(205, "cm"),
  29869. weight: math.unit(102, "kg"),
  29870. name: "Front",
  29871. image: {
  29872. source: "./media/characters/irbisgreif/front.svg",
  29873. extra: 785/706,
  29874. bottom: 13/798
  29875. }
  29876. },
  29877. back: {
  29878. height: math.unit(205, "cm"),
  29879. weight: math.unit(102, "kg"),
  29880. name: "Back",
  29881. image: {
  29882. source: "./media/characters/irbisgreif/back.svg",
  29883. extra: 713/701,
  29884. bottom: 26/739
  29885. }
  29886. },
  29887. frontDressed: {
  29888. height: math.unit(216, "cm"),
  29889. weight: math.unit(102, "kg"),
  29890. name: "Front-dressed",
  29891. image: {
  29892. source: "./media/characters/irbisgreif/front-dressed.svg",
  29893. extra: 902/776,
  29894. bottom: 14/916
  29895. }
  29896. },
  29897. sideDressed: {
  29898. height: math.unit(195, "cm"),
  29899. weight: math.unit(102, "kg"),
  29900. name: "Side-dressed",
  29901. image: {
  29902. source: "./media/characters/irbisgreif/side-dressed.svg",
  29903. extra: 788/688,
  29904. bottom: 21/809
  29905. }
  29906. },
  29907. backDressed: {
  29908. height: math.unit(216, "cm"),
  29909. weight: math.unit(102, "kg"),
  29910. name: "Back-dressed",
  29911. image: {
  29912. source: "./media/characters/irbisgreif/back-dressed.svg",
  29913. extra: 901/783,
  29914. bottom: 10/911
  29915. }
  29916. },
  29917. dick: {
  29918. height: math.unit(0.49, "feet"),
  29919. name: "Dick",
  29920. image: {
  29921. source: "./media/characters/irbisgreif/dick.svg"
  29922. }
  29923. },
  29924. wingTop: {
  29925. height: math.unit(1.93 , "feet"),
  29926. name: "Wing-top",
  29927. image: {
  29928. source: "./media/characters/irbisgreif/wing-top.svg"
  29929. }
  29930. },
  29931. wingBottom: {
  29932. height: math.unit(1.93 , "feet"),
  29933. name: "Wing-bottom",
  29934. image: {
  29935. source: "./media/characters/irbisgreif/wing-bottom.svg"
  29936. }
  29937. },
  29938. },
  29939. [
  29940. {
  29941. name: "Normal",
  29942. height: math.unit(216, "cm"),
  29943. default: true
  29944. },
  29945. ]
  29946. ))
  29947. characterMakers.push(() => makeCharacter(
  29948. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  29949. {
  29950. front: {
  29951. height: math.unit(6, "feet"),
  29952. weight: math.unit(150, "lb"),
  29953. name: "Front",
  29954. image: {
  29955. source: "./media/characters/pride/front.svg",
  29956. extra: 1299/1230,
  29957. bottom: 18/1317
  29958. }
  29959. },
  29960. },
  29961. [
  29962. {
  29963. name: "Normal",
  29964. height: math.unit(7, "feet")
  29965. },
  29966. {
  29967. name: "Mini-macro",
  29968. height: math.unit(11, "feet")
  29969. },
  29970. {
  29971. name: "Macro",
  29972. height: math.unit(15, "meters"),
  29973. default: true
  29974. },
  29975. {
  29976. name: "Macro+",
  29977. height: math.unit(40, "meters")
  29978. },
  29979. ]
  29980. ))
  29981. characterMakers.push(() => makeCharacter(
  29982. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  29983. {
  29984. front: {
  29985. height: math.unit(4 + 2 / 12, "feet"),
  29986. weight: math.unit(95, "lb"),
  29987. name: "Front",
  29988. image: {
  29989. source: "./media/characters/vaelophis-nyx/front.svg",
  29990. extra: 2532/2330,
  29991. bottom: 0/2532
  29992. }
  29993. },
  29994. back: {
  29995. height: math.unit(4 + 2 / 12, "feet"),
  29996. weight: math.unit(95, "lb"),
  29997. name: "Back",
  29998. image: {
  29999. source: "./media/characters/vaelophis-nyx/back.svg",
  30000. extra: 2484/2361,
  30001. bottom: 0/2484
  30002. }
  30003. },
  30004. feralSide: {
  30005. height: math.unit(2 + 1/12, "feet"),
  30006. weight: math.unit(20, "lb"),
  30007. name: "Feral (Side)",
  30008. image: {
  30009. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30010. extra: 1721/1581,
  30011. bottom: 70/1791
  30012. }
  30013. },
  30014. feralLazing: {
  30015. height: math.unit(1.08, "feet"),
  30016. weight: math.unit(20, "lb"),
  30017. name: "Feral (Lazing)",
  30018. image: {
  30019. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30020. extra: 822/822,
  30021. bottom: 248/1070
  30022. }
  30023. },
  30024. ear: {
  30025. height: math.unit(0.416, "feet"),
  30026. name: "Ear",
  30027. image: {
  30028. source: "./media/characters/vaelophis-nyx/ear.svg"
  30029. }
  30030. },
  30031. eye: {
  30032. height: math.unit(0.0748, "feet"),
  30033. name: "Eye",
  30034. image: {
  30035. source: "./media/characters/vaelophis-nyx/eye.svg"
  30036. }
  30037. },
  30038. mouth: {
  30039. height: math.unit(0.378, "feet"),
  30040. name: "Mouth",
  30041. image: {
  30042. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30043. }
  30044. },
  30045. spade: {
  30046. height: math.unit(0.55, "feet"),
  30047. name: "Spade",
  30048. image: {
  30049. source: "./media/characters/vaelophis-nyx/spade.svg"
  30050. }
  30051. },
  30052. },
  30053. [
  30054. {
  30055. name: "Normal",
  30056. height: math.unit(4 + 2/12, "feet"),
  30057. default: true
  30058. },
  30059. ]
  30060. ))
  30061. characterMakers.push(() => makeCharacter(
  30062. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30063. {
  30064. front: {
  30065. height: math.unit(7, "feet"),
  30066. weight: math.unit(231, "lb"),
  30067. name: "Front",
  30068. image: {
  30069. source: "./media/characters/flux/front.svg",
  30070. extra: 919/871,
  30071. bottom: 0/919
  30072. }
  30073. },
  30074. back: {
  30075. height: math.unit(7, "feet"),
  30076. weight: math.unit(231, "lb"),
  30077. name: "Back",
  30078. image: {
  30079. source: "./media/characters/flux/back.svg",
  30080. extra: 1040/992,
  30081. bottom: 0/1040
  30082. }
  30083. },
  30084. frontDressed: {
  30085. height: math.unit(7, "feet"),
  30086. weight: math.unit(231, "lb"),
  30087. name: "Front (Dressed)",
  30088. image: {
  30089. source: "./media/characters/flux/front-dressed.svg",
  30090. extra: 919/871,
  30091. bottom: 0/919
  30092. }
  30093. },
  30094. feralSide: {
  30095. height: math.unit(5, "feet"),
  30096. weight: math.unit(150, "lb"),
  30097. name: "Feral (Side)",
  30098. image: {
  30099. source: "./media/characters/flux/feral-side.svg",
  30100. extra: 598/528,
  30101. bottom: 28/626
  30102. }
  30103. },
  30104. head: {
  30105. height: math.unit(1.585, "feet"),
  30106. name: "Head",
  30107. image: {
  30108. source: "./media/characters/flux/head.svg"
  30109. }
  30110. },
  30111. headSide: {
  30112. height: math.unit(1.74, "feet"),
  30113. name: "Head (Side)",
  30114. image: {
  30115. source: "./media/characters/flux/head-side.svg"
  30116. }
  30117. },
  30118. headSideFire: {
  30119. height: math.unit(1.76, "feet"),
  30120. name: "Head (Side, Fire)",
  30121. image: {
  30122. source: "./media/characters/flux/head-side-fire.svg"
  30123. }
  30124. },
  30125. },
  30126. [
  30127. {
  30128. name: "Normal",
  30129. height: math.unit(7, "feet"),
  30130. default: true
  30131. },
  30132. ]
  30133. ))
  30134. characterMakers.push(() => makeCharacter(
  30135. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30136. {
  30137. front: {
  30138. height: math.unit(9, "feet"),
  30139. weight: math.unit(1012, "lb"),
  30140. name: "Front",
  30141. image: {
  30142. source: "./media/characters/ulfra-lupae/front.svg",
  30143. extra: 1083/1011,
  30144. bottom: 67/1150
  30145. }
  30146. },
  30147. },
  30148. [
  30149. {
  30150. name: "Micro",
  30151. height: math.unit(6, "inches")
  30152. },
  30153. {
  30154. name: "Socializing",
  30155. height: math.unit(6 + 5/12, "feet")
  30156. },
  30157. {
  30158. name: "Normal",
  30159. height: math.unit(9, "feet"),
  30160. default: true
  30161. },
  30162. {
  30163. name: "Macro",
  30164. height: math.unit(150, "feet")
  30165. },
  30166. ]
  30167. ))
  30168. characterMakers.push(() => makeCharacter(
  30169. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30170. {
  30171. front: {
  30172. height: math.unit(5 + 2/12, "feet"),
  30173. weight: math.unit(120, "lb"),
  30174. name: "Front",
  30175. image: {
  30176. source: "./media/characters/timber/front.svg",
  30177. extra: 2814/2705,
  30178. bottom: 181/2995
  30179. }
  30180. },
  30181. },
  30182. [
  30183. {
  30184. name: "Normal",
  30185. height: math.unit(5 + 2/12, "feet"),
  30186. default: true
  30187. },
  30188. ]
  30189. ))
  30190. characterMakers.push(() => makeCharacter(
  30191. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30192. {
  30193. front: {
  30194. height: math.unit(5 + 7/12, "feet"),
  30195. weight: math.unit(220, "lb"),
  30196. name: "Front",
  30197. image: {
  30198. source: "./media/characters/nicki/front.svg",
  30199. extra: 453/419,
  30200. bottom: 7/460
  30201. }
  30202. },
  30203. frontAlt: {
  30204. height: math.unit(5 + 7/12, "feet"),
  30205. weight: math.unit(220, "lb"),
  30206. name: "Front-alt",
  30207. image: {
  30208. source: "./media/characters/nicki/front-alt.svg",
  30209. extra: 435/411,
  30210. bottom: 12/447
  30211. }
  30212. },
  30213. back: {
  30214. height: math.unit(5 + 7/12, "feet"),
  30215. weight: math.unit(220, "lb"),
  30216. name: "Back",
  30217. image: {
  30218. source: "./media/characters/nicki/back.svg",
  30219. extra: 440/413,
  30220. bottom: 19/459
  30221. }
  30222. },
  30223. frontNsfw: {
  30224. height: math.unit(5 + 7/12, "feet"),
  30225. weight: math.unit(220, "lb"),
  30226. name: "Front (NSFW)",
  30227. image: {
  30228. source: "./media/characters/nicki/front-nsfw.svg",
  30229. extra: 453/419,
  30230. bottom: 7/460
  30231. }
  30232. },
  30233. frontNsfwAlt: {
  30234. height: math.unit(5 + 7/12, "feet"),
  30235. weight: math.unit(220, "lb"),
  30236. name: "Front (Alt, NSFW)",
  30237. image: {
  30238. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30239. extra: 435/411,
  30240. bottom: 12/447
  30241. }
  30242. },
  30243. backNsfw: {
  30244. height: math.unit(5 + 7/12, "feet"),
  30245. weight: math.unit(220, "lb"),
  30246. name: "Back (NSFW)",
  30247. image: {
  30248. source: "./media/characters/nicki/back-nsfw.svg",
  30249. extra: 440/413,
  30250. bottom: 19/459
  30251. }
  30252. },
  30253. head: {
  30254. height: math.unit(2.1, "feet"),
  30255. name: "Head",
  30256. image: {
  30257. source: "./media/characters/nicki/head.svg"
  30258. }
  30259. },
  30260. paw: {
  30261. height: math.unit(1.88, "feet"),
  30262. name: "Paw",
  30263. image: {
  30264. source: "./media/characters/nicki/paw.svg"
  30265. }
  30266. },
  30267. },
  30268. [
  30269. {
  30270. name: "Normal",
  30271. height: math.unit(5 + 7/12, "feet"),
  30272. default: true
  30273. },
  30274. ]
  30275. ))
  30276. characterMakers.push(() => makeCharacter(
  30277. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30278. {
  30279. front: {
  30280. height: math.unit(7 + 10/12, "feet"),
  30281. weight: math.unit(3.5, "tons"),
  30282. name: "Front",
  30283. image: {
  30284. source: "./media/characters/lee/front.svg",
  30285. extra: 1773/1615,
  30286. bottom: 86/1859
  30287. }
  30288. },
  30289. hand: {
  30290. height: math.unit(1.78, "feet"),
  30291. name: "Hand",
  30292. image: {
  30293. source: "./media/characters/lee/hand.svg"
  30294. }
  30295. },
  30296. maw: {
  30297. height: math.unit(1.18, "feet"),
  30298. name: "Maw",
  30299. image: {
  30300. source: "./media/characters/lee/maw.svg"
  30301. }
  30302. },
  30303. },
  30304. [
  30305. {
  30306. name: "Normal",
  30307. height: math.unit(7 + 10/12, "feet"),
  30308. default: true
  30309. },
  30310. ]
  30311. ))
  30312. characterMakers.push(() => makeCharacter(
  30313. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30314. {
  30315. front: {
  30316. height: math.unit(9, "feet"),
  30317. name: "Front",
  30318. image: {
  30319. source: "./media/characters/guti/front.svg",
  30320. extra: 4551/4355,
  30321. bottom: 123/4674
  30322. }
  30323. },
  30324. tongue: {
  30325. height: math.unit(1, "feet"),
  30326. name: "Tongue",
  30327. image: {
  30328. source: "./media/characters/guti/tongue.svg"
  30329. }
  30330. },
  30331. paw: {
  30332. height: math.unit(1.18, "feet"),
  30333. name: "Paw",
  30334. image: {
  30335. source: "./media/characters/guti/paw.svg"
  30336. }
  30337. },
  30338. },
  30339. [
  30340. {
  30341. name: "Normal",
  30342. height: math.unit(9, "feet"),
  30343. default: true
  30344. },
  30345. ]
  30346. ))
  30347. characterMakers.push(() => makeCharacter(
  30348. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30349. {
  30350. side: {
  30351. height: math.unit(5, "meters"),
  30352. name: "Side",
  30353. image: {
  30354. source: "./media/characters/vesper/side.svg",
  30355. extra: 1605/1518,
  30356. bottom: 0/1605
  30357. }
  30358. },
  30359. },
  30360. [
  30361. {
  30362. name: "Small",
  30363. height: math.unit(5, "meters")
  30364. },
  30365. {
  30366. name: "Sage",
  30367. height: math.unit(100, "meters"),
  30368. default: true
  30369. },
  30370. {
  30371. name: "Fun Size",
  30372. height: math.unit(600, "meters")
  30373. },
  30374. {
  30375. name: "Goddess",
  30376. height: math.unit(20000, "km")
  30377. },
  30378. {
  30379. name: "Maximum",
  30380. height: math.unit(5, "galaxies")
  30381. },
  30382. ]
  30383. ))
  30384. characterMakers.push(() => makeCharacter(
  30385. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30386. {
  30387. front: {
  30388. height: math.unit(6 + 3/12, "feet"),
  30389. weight: math.unit(190, "lb"),
  30390. name: "Front",
  30391. image: {
  30392. source: "./media/characters/gawain/front.svg",
  30393. extra: 2222/2139,
  30394. bottom: 90/2312
  30395. }
  30396. },
  30397. back: {
  30398. height: math.unit(6 + 3/12, "feet"),
  30399. weight: math.unit(190, "lb"),
  30400. name: "Back",
  30401. image: {
  30402. source: "./media/characters/gawain/back.svg",
  30403. extra: 2199/2111,
  30404. bottom: 73/2272
  30405. }
  30406. },
  30407. },
  30408. [
  30409. {
  30410. name: "Normal",
  30411. height: math.unit(6 + 3/12, "feet"),
  30412. default: true
  30413. },
  30414. ]
  30415. ))
  30416. characterMakers.push(() => makeCharacter(
  30417. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30418. {
  30419. side: {
  30420. height: math.unit(3.5, "meters"),
  30421. weight: math.unit(16000, "lb"),
  30422. name: "Side",
  30423. image: {
  30424. source: "./media/characters/dascalti/side.svg",
  30425. extra: 392/273,
  30426. bottom: 47/439
  30427. }
  30428. },
  30429. breath: {
  30430. height: math.unit(7.4, "feet"),
  30431. name: "Breath",
  30432. image: {
  30433. source: "./media/characters/dascalti/breath.svg"
  30434. }
  30435. },
  30436. fed: {
  30437. height: math.unit(3.6, "meters"),
  30438. weight: math.unit(16000, "lb"),
  30439. name: "Fed",
  30440. image: {
  30441. source: "./media/characters/dascalti/fed.svg",
  30442. extra: 1419/820,
  30443. bottom: 95/1514
  30444. }
  30445. },
  30446. },
  30447. [
  30448. {
  30449. name: "Normal",
  30450. height: math.unit(3.5, "meters"),
  30451. default: true
  30452. },
  30453. ]
  30454. ))
  30455. characterMakers.push(() => makeCharacter(
  30456. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30457. {
  30458. front: {
  30459. height: math.unit(3 + 5/12, "feet"),
  30460. name: "Front",
  30461. image: {
  30462. source: "./media/characters/mauve/front.svg",
  30463. extra: 1126/1033,
  30464. bottom: 65/1191
  30465. }
  30466. },
  30467. side: {
  30468. height: math.unit(3 + 5/12, "feet"),
  30469. name: "Side",
  30470. image: {
  30471. source: "./media/characters/mauve/side.svg",
  30472. extra: 1089/1001,
  30473. bottom: 29/1118
  30474. }
  30475. },
  30476. back: {
  30477. height: math.unit(3 + 5/12, "feet"),
  30478. name: "Back",
  30479. image: {
  30480. source: "./media/characters/mauve/back.svg",
  30481. extra: 1173/1053,
  30482. bottom: 109/1282
  30483. }
  30484. },
  30485. },
  30486. [
  30487. {
  30488. name: "Normal",
  30489. height: math.unit(3 + 5/12, "feet"),
  30490. default: true
  30491. },
  30492. ]
  30493. ))
  30494. characterMakers.push(() => makeCharacter(
  30495. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30496. {
  30497. front: {
  30498. height: math.unit(6 + 3/12, "feet"),
  30499. weight: math.unit(430, "lb"),
  30500. name: "Front",
  30501. image: {
  30502. source: "./media/characters/carlos/front.svg",
  30503. extra: 1964/1913,
  30504. bottom: 70/2034
  30505. }
  30506. },
  30507. },
  30508. [
  30509. {
  30510. name: "Normal",
  30511. height: math.unit(6 + 3/12, "feet"),
  30512. default: true
  30513. },
  30514. ]
  30515. ))
  30516. characterMakers.push(() => makeCharacter(
  30517. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30518. {
  30519. back: {
  30520. height: math.unit(5 + 10/12, "feet"),
  30521. weight: math.unit(200, "lb"),
  30522. name: "Back",
  30523. image: {
  30524. source: "./media/characters/jax/back.svg",
  30525. extra: 764/739,
  30526. bottom: 25/789
  30527. }
  30528. },
  30529. },
  30530. [
  30531. {
  30532. name: "Normal",
  30533. height: math.unit(5 + 10/12, "feet"),
  30534. default: true
  30535. },
  30536. ]
  30537. ))
  30538. characterMakers.push(() => makeCharacter(
  30539. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30540. {
  30541. front: {
  30542. height: math.unit(8, "feet"),
  30543. weight: math.unit(250, "lb"),
  30544. name: "Front",
  30545. image: {
  30546. source: "./media/characters/eikthynir/front.svg",
  30547. extra: 1332/1166,
  30548. bottom: 82/1414
  30549. }
  30550. },
  30551. back: {
  30552. height: math.unit(8, "feet"),
  30553. weight: math.unit(250, "lb"),
  30554. name: "Back",
  30555. image: {
  30556. source: "./media/characters/eikthynir/back.svg",
  30557. extra: 1342/1190,
  30558. bottom: 19/1361
  30559. }
  30560. },
  30561. dick: {
  30562. height: math.unit(2.35, "feet"),
  30563. name: "Dick",
  30564. image: {
  30565. source: "./media/characters/eikthynir/dick.svg"
  30566. }
  30567. },
  30568. },
  30569. [
  30570. {
  30571. name: "Normal",
  30572. height: math.unit(8, "feet"),
  30573. default: true
  30574. },
  30575. ]
  30576. ))
  30577. characterMakers.push(() => makeCharacter(
  30578. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30579. {
  30580. front: {
  30581. height: math.unit(99, "meters"),
  30582. weight: math.unit(13000, "tons"),
  30583. name: "Front",
  30584. image: {
  30585. source: "./media/characters/zlmos/front.svg",
  30586. extra: 2202/1992,
  30587. bottom: 315/2517
  30588. }
  30589. },
  30590. },
  30591. [
  30592. {
  30593. name: "Macro",
  30594. height: math.unit(99, "meters"),
  30595. default: true
  30596. },
  30597. ]
  30598. ))
  30599. characterMakers.push(() => makeCharacter(
  30600. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30601. {
  30602. front: {
  30603. height: math.unit(6 + 5/12, "feet"),
  30604. name: "Front",
  30605. image: {
  30606. source: "./media/characters/purri/front.svg",
  30607. extra: 1698/1610,
  30608. bottom: 32/1730
  30609. }
  30610. },
  30611. frontAlt: {
  30612. height: math.unit(6 + 5/12, "feet"),
  30613. name: "Front (Alt)",
  30614. image: {
  30615. source: "./media/characters/purri/front-alt.svg",
  30616. extra: 450/420,
  30617. bottom: 26/476
  30618. }
  30619. },
  30620. boots: {
  30621. height: math.unit(5.5, "feet"),
  30622. name: "Boots",
  30623. image: {
  30624. source: "./media/characters/purri/boots.svg",
  30625. extra: 905/853,
  30626. bottom: 18/923
  30627. }
  30628. },
  30629. lying: {
  30630. height: math.unit(2, "feet"),
  30631. name: "Lying",
  30632. image: {
  30633. source: "./media/characters/purri/lying.svg",
  30634. extra: 940/843,
  30635. bottom: 146/1086
  30636. }
  30637. },
  30638. devious: {
  30639. height: math.unit(1.77, "feet"),
  30640. name: "Devious",
  30641. image: {
  30642. source: "./media/characters/purri/devious.svg",
  30643. extra: 1440/1155,
  30644. bottom: 147/1587
  30645. }
  30646. },
  30647. bean: {
  30648. height: math.unit(1.94, "feet"),
  30649. name: "Bean",
  30650. image: {
  30651. source: "./media/characters/purri/bean.svg"
  30652. }
  30653. },
  30654. },
  30655. [
  30656. {
  30657. name: "Micro",
  30658. height: math.unit(1, "mm")
  30659. },
  30660. {
  30661. name: "Normal",
  30662. height: math.unit(6 + 5/12, "feet"),
  30663. default: true
  30664. },
  30665. {
  30666. name: "Macro :3c",
  30667. height: math.unit(2, "miles")
  30668. },
  30669. ]
  30670. ))
  30671. characterMakers.push(() => makeCharacter(
  30672. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30673. {
  30674. front: {
  30675. height: math.unit(6 + 2/12, "feet"),
  30676. weight: math.unit(250, "lb"),
  30677. name: "Front",
  30678. image: {
  30679. source: "./media/characters/moonlight/front.svg",
  30680. extra: 1044/908,
  30681. bottom: 56/1100
  30682. }
  30683. },
  30684. paw: {
  30685. height: math.unit(1, "feet"),
  30686. name: "Paw",
  30687. image: {
  30688. source: "./media/characters/moonlight/paw.svg"
  30689. }
  30690. },
  30691. paws: {
  30692. height: math.unit(0.98, "feet"),
  30693. name: "Paws",
  30694. image: {
  30695. source: "./media/characters/moonlight/paws.svg",
  30696. extra: 939/939,
  30697. bottom: 50/989
  30698. }
  30699. },
  30700. mouth: {
  30701. height: math.unit(0.48, "feet"),
  30702. name: "Mouth",
  30703. image: {
  30704. source: "./media/characters/moonlight/mouth.svg"
  30705. }
  30706. },
  30707. },
  30708. [
  30709. {
  30710. name: "Normal",
  30711. height: math.unit(6 + 2/12, "feet"),
  30712. default: true
  30713. },
  30714. {
  30715. name: "Macro",
  30716. height: math.unit(300, "feet")
  30717. },
  30718. {
  30719. name: "Macro+",
  30720. height: math.unit(1, "mile")
  30721. },
  30722. {
  30723. name: "Mt. Moon",
  30724. height: math.unit(5, "miles")
  30725. },
  30726. {
  30727. name: "Megamacro",
  30728. height: math.unit(15, "miles")
  30729. },
  30730. ]
  30731. ))
  30732. characterMakers.push(() => makeCharacter(
  30733. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  30734. {
  30735. back: {
  30736. height: math.unit(6, "feet"),
  30737. weight: math.unit(150, "lb"),
  30738. name: "Back",
  30739. image: {
  30740. source: "./media/characters/sylen/back.svg",
  30741. extra: 1335/1273,
  30742. bottom: 107/1442
  30743. }
  30744. },
  30745. },
  30746. [
  30747. {
  30748. name: "Normal",
  30749. height: math.unit(5 + 5/12, "feet")
  30750. },
  30751. {
  30752. name: "Megamacro",
  30753. height: math.unit(3, "miles"),
  30754. default: true
  30755. },
  30756. ]
  30757. ))
  30758. characterMakers.push(() => makeCharacter(
  30759. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  30760. {
  30761. front: {
  30762. height: math.unit(6, "feet"),
  30763. weight: math.unit(190, "lb"),
  30764. name: "Front",
  30765. image: {
  30766. source: "./media/characters/huttser/front.svg",
  30767. extra: 1152/1058,
  30768. bottom: 23/1175
  30769. }
  30770. },
  30771. side: {
  30772. height: math.unit(6, "feet"),
  30773. weight: math.unit(190, "lb"),
  30774. name: "Side",
  30775. image: {
  30776. source: "./media/characters/huttser/side.svg",
  30777. extra: 1174/1065,
  30778. bottom: 18/1192
  30779. }
  30780. },
  30781. back: {
  30782. height: math.unit(6, "feet"),
  30783. weight: math.unit(190, "lb"),
  30784. name: "Back",
  30785. image: {
  30786. source: "./media/characters/huttser/back.svg",
  30787. extra: 1158/1056,
  30788. bottom: 12/1170
  30789. }
  30790. },
  30791. },
  30792. [
  30793. ]
  30794. ))
  30795. characterMakers.push(() => makeCharacter(
  30796. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  30797. {
  30798. side: {
  30799. height: math.unit(12 + 9/12, "feet"),
  30800. weight: math.unit(15000, "lb"),
  30801. name: "Side",
  30802. image: {
  30803. source: "./media/characters/faan/side.svg",
  30804. extra: 2747/2697,
  30805. bottom: 0/2747
  30806. }
  30807. },
  30808. front: {
  30809. height: math.unit(12 + 9/12, "feet"),
  30810. weight: math.unit(15000, "lb"),
  30811. name: "Front",
  30812. image: {
  30813. source: "./media/characters/faan/front.svg",
  30814. extra: 607/571,
  30815. bottom: 24/631
  30816. }
  30817. },
  30818. head: {
  30819. height: math.unit(2.85, "feet"),
  30820. name: "Head",
  30821. image: {
  30822. source: "./media/characters/faan/head.svg"
  30823. }
  30824. },
  30825. headAlt: {
  30826. height: math.unit(3.13, "feet"),
  30827. name: "Head-alt",
  30828. image: {
  30829. source: "./media/characters/faan/head-alt.svg"
  30830. }
  30831. },
  30832. },
  30833. [
  30834. {
  30835. name: "Normal",
  30836. height: math.unit(12 + 9/12, "feet"),
  30837. default: true
  30838. },
  30839. ]
  30840. ))
  30841. characterMakers.push(() => makeCharacter(
  30842. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  30843. {
  30844. front: {
  30845. height: math.unit(6, "feet"),
  30846. weight: math.unit(300, "lb"),
  30847. name: "Front",
  30848. image: {
  30849. source: "./media/characters/tanio/front.svg",
  30850. extra: 711/673,
  30851. bottom: 25/736
  30852. }
  30853. },
  30854. },
  30855. [
  30856. {
  30857. name: "Normal",
  30858. height: math.unit(6, "feet"),
  30859. default: true
  30860. },
  30861. ]
  30862. ))
  30863. characterMakers.push(() => makeCharacter(
  30864. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  30865. {
  30866. front: {
  30867. height: math.unit(3, "inches"),
  30868. name: "Front",
  30869. image: {
  30870. source: "./media/characters/noboru/front.svg",
  30871. extra: 1039/932,
  30872. bottom: 18/1057
  30873. }
  30874. },
  30875. },
  30876. [
  30877. {
  30878. name: "Micro",
  30879. height: math.unit(3, "inches"),
  30880. default: true
  30881. },
  30882. ]
  30883. ))
  30884. characterMakers.push(() => makeCharacter(
  30885. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  30886. {
  30887. front: {
  30888. height: math.unit(1.85, "meters"),
  30889. weight: math.unit(80, "kg"),
  30890. name: "Front",
  30891. image: {
  30892. source: "./media/characters/daniel-barrett/front.svg",
  30893. extra: 355/337,
  30894. bottom: 9/364
  30895. }
  30896. },
  30897. },
  30898. [
  30899. {
  30900. name: "Pico",
  30901. height: math.unit(0.0433, "mm")
  30902. },
  30903. {
  30904. name: "Nano",
  30905. height: math.unit(1.5, "mm")
  30906. },
  30907. {
  30908. name: "Micro",
  30909. height: math.unit(5.3, "cm"),
  30910. default: true
  30911. },
  30912. {
  30913. name: "Normal",
  30914. height: math.unit(1.85, "meters")
  30915. },
  30916. {
  30917. name: "Macro",
  30918. height: math.unit(64.7, "meters")
  30919. },
  30920. {
  30921. name: "Megamacro",
  30922. height: math.unit(2.26, "km")
  30923. },
  30924. {
  30925. name: "Gigamacro",
  30926. height: math.unit(79, "km")
  30927. },
  30928. {
  30929. name: "Teramacro",
  30930. height: math.unit(2765, "km")
  30931. },
  30932. {
  30933. name: "Petamacro",
  30934. height: math.unit(96678, "km")
  30935. },
  30936. ]
  30937. ))
  30938. characterMakers.push(() => makeCharacter(
  30939. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  30940. {
  30941. front: {
  30942. height: math.unit(30, "meters"),
  30943. weight: math.unit(400, "tons"),
  30944. name: "Front",
  30945. image: {
  30946. source: "./media/characters/zeel/front.svg",
  30947. extra: 2599/2599,
  30948. bottom: 226/2825
  30949. }
  30950. },
  30951. },
  30952. [
  30953. {
  30954. name: "Macro",
  30955. height: math.unit(30, "meters"),
  30956. default: true
  30957. },
  30958. ]
  30959. ))
  30960. characterMakers.push(() => makeCharacter(
  30961. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  30962. {
  30963. front: {
  30964. height: math.unit(6 + 7/12, "feet"),
  30965. weight: math.unit(210, "lb"),
  30966. name: "Front",
  30967. image: {
  30968. source: "./media/characters/tarn/front.svg",
  30969. extra: 3517/3220,
  30970. bottom: 91/3608
  30971. }
  30972. },
  30973. back: {
  30974. height: math.unit(6 + 7/12, "feet"),
  30975. weight: math.unit(210, "lb"),
  30976. name: "Back",
  30977. image: {
  30978. source: "./media/characters/tarn/back.svg",
  30979. extra: 3566/3241,
  30980. bottom: 34/3600
  30981. }
  30982. },
  30983. dick: {
  30984. height: math.unit(1.65, "feet"),
  30985. name: "Dick",
  30986. image: {
  30987. source: "./media/characters/tarn/dick.svg"
  30988. }
  30989. },
  30990. paw: {
  30991. height: math.unit(1.80, "feet"),
  30992. name: "Paw",
  30993. image: {
  30994. source: "./media/characters/tarn/paw.svg"
  30995. }
  30996. },
  30997. tongue: {
  30998. height: math.unit(0.97, "feet"),
  30999. name: "Tongue",
  31000. image: {
  31001. source: "./media/characters/tarn/tongue.svg"
  31002. }
  31003. },
  31004. },
  31005. [
  31006. {
  31007. name: "Micro",
  31008. height: math.unit(4, "inches")
  31009. },
  31010. {
  31011. name: "Normal",
  31012. height: math.unit(6 + 7/12, "feet"),
  31013. default: true
  31014. },
  31015. {
  31016. name: "Macro",
  31017. height: math.unit(300, "feet")
  31018. },
  31019. ]
  31020. ))
  31021. characterMakers.push(() => makeCharacter(
  31022. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31023. {
  31024. front: {
  31025. height: math.unit(5 + 7/12, "feet"),
  31026. weight: math.unit(80, "kg"),
  31027. name: "Front",
  31028. image: {
  31029. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31030. extra: 3023/2865,
  31031. bottom: 33/3056
  31032. }
  31033. },
  31034. back: {
  31035. height: math.unit(5 + 7/12, "feet"),
  31036. weight: math.unit(80, "kg"),
  31037. name: "Back",
  31038. image: {
  31039. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31040. extra: 3020/2886,
  31041. bottom: 30/3050
  31042. }
  31043. },
  31044. dick: {
  31045. height: math.unit(0.98, "feet"),
  31046. name: "Dick",
  31047. image: {
  31048. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31049. }
  31050. },
  31051. anatomy: {
  31052. height: math.unit(2.86, "feet"),
  31053. name: "Anatomy",
  31054. image: {
  31055. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31056. }
  31057. },
  31058. },
  31059. [
  31060. {
  31061. name: "Really Small",
  31062. height: math.unit(2, "inches")
  31063. },
  31064. {
  31065. name: "Micro",
  31066. height: math.unit(5.583, "inches")
  31067. },
  31068. {
  31069. name: "Normal",
  31070. height: math.unit(5 + 7/12, "feet"),
  31071. default: true
  31072. },
  31073. {
  31074. name: "Macro",
  31075. height: math.unit(67, "feet")
  31076. },
  31077. {
  31078. name: "Megamacro",
  31079. height: math.unit(134, "feet")
  31080. },
  31081. ]
  31082. ))
  31083. characterMakers.push(() => makeCharacter(
  31084. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31085. {
  31086. front: {
  31087. height: math.unit(9, "feet"),
  31088. weight: math.unit(120, "lb"),
  31089. name: "Front",
  31090. image: {
  31091. source: "./media/characters/sally/front.svg",
  31092. extra: 1506/1349,
  31093. bottom: 66/1572
  31094. }
  31095. },
  31096. },
  31097. [
  31098. {
  31099. name: "Normal",
  31100. height: math.unit(9, "feet"),
  31101. default: true
  31102. },
  31103. ]
  31104. ))
  31105. //characters
  31106. function makeCharacters() {
  31107. const results = [];
  31108. characterMakers.forEach(character => {
  31109. results.push(character());
  31110. });
  31111. return results;
  31112. }