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.
 
 
 

32063 lines
804 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. "gremlin": {
  1428. name: "Gremlin",
  1429. parents: ["monster"]
  1430. },
  1431. "dragonsune": {
  1432. name: "Dragonsune",
  1433. parents: ["dragon", "kitsune"]
  1434. },
  1435. }
  1436. //species
  1437. function getSpeciesInfo(speciesList) {
  1438. let result = new Set();
  1439. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1440. result.add(entry)
  1441. });
  1442. return Array.from(result);
  1443. };
  1444. function getSpeciesInfoHelper(species) {
  1445. if (!speciesData[species]) {
  1446. console.warn(species + " doesn't exist");
  1447. return [];
  1448. }
  1449. if (speciesData[species].parents) {
  1450. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1451. } else {
  1452. return [species];
  1453. }
  1454. }
  1455. characterMakers.push(() => makeCharacter(
  1456. {
  1457. name: "Fen",
  1458. species: ["crux"],
  1459. description: {
  1460. title: "Bio",
  1461. text: "Very furry. Sheds on everything."
  1462. },
  1463. tags: [
  1464. "anthro",
  1465. "goo"
  1466. ]
  1467. },
  1468. {
  1469. back: {
  1470. height: math.unit(2.2428, "meter"),
  1471. weight: math.unit(124.738, "kg"),
  1472. name: "Back",
  1473. image: {
  1474. source: "./media/characters/fen/back.svg",
  1475. extra: 2024 / 1867,
  1476. bottom: 13 / 2037
  1477. },
  1478. info: {
  1479. description: {
  1480. mode: "append",
  1481. text: "\n\nHe is not currently looking at you."
  1482. }
  1483. }
  1484. },
  1485. full: {
  1486. height: math.unit(1.34, "meter"),
  1487. weight: math.unit(225, "kg"),
  1488. name: "Full",
  1489. image: {
  1490. source: "./media/characters/fen/full.svg"
  1491. },
  1492. info: {
  1493. description: {
  1494. mode: "append",
  1495. text: "\n\nMunch."
  1496. }
  1497. }
  1498. },
  1499. kneeling: {
  1500. height: math.unit(5.4, "feet"),
  1501. weight: math.unit(124.738, "kg"),
  1502. name: "Kneeling",
  1503. image: {
  1504. source: "./media/characters/fen/kneeling.svg",
  1505. extra: 563 / 507
  1506. }
  1507. },
  1508. goo: {
  1509. height: math.unit(2.8, "feet"),
  1510. weight: math.unit(125, "kg"),
  1511. capacity: math.unit(1, "people"),
  1512. name: "Goo",
  1513. image: {
  1514. source: "./media/characters/fen/goo.svg",
  1515. bottom: 116 / 613
  1516. }
  1517. },
  1518. lounging: {
  1519. height: math.unit(6.5, "feet"),
  1520. weight: math.unit(125, "kg"),
  1521. name: "Lounging",
  1522. image: {
  1523. source: "./media/characters/fen/lounging.svg"
  1524. }
  1525. },
  1526. },
  1527. [
  1528. {
  1529. name: "Normal",
  1530. height: math.unit(2.2428, "meter")
  1531. },
  1532. {
  1533. name: "Big",
  1534. height: math.unit(12, "feet")
  1535. },
  1536. {
  1537. name: "Minimacro",
  1538. height: math.unit(40, "feet"),
  1539. default: true,
  1540. info: {
  1541. description: {
  1542. mode: "append",
  1543. text: "\n\nTOO DAMN BIG"
  1544. }
  1545. }
  1546. },
  1547. {
  1548. name: "Macro",
  1549. height: math.unit(100, "feet"),
  1550. info: {
  1551. description: {
  1552. mode: "append",
  1553. text: "\n\nTOO DAMN BIG"
  1554. }
  1555. }
  1556. },
  1557. {
  1558. name: "Macro+",
  1559. height: math.unit(300, "feet")
  1560. },
  1561. {
  1562. name: "Megamacro",
  1563. height: math.unit(2, "miles")
  1564. }
  1565. ]
  1566. ))
  1567. characterMakers.push(() => makeCharacter(
  1568. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1569. {
  1570. front: {
  1571. height: math.unit(183, "cm"),
  1572. weight: math.unit(80, "kg"),
  1573. name: "Front",
  1574. image: {
  1575. source: "./media/characters/sofia-fluttertail/front.svg",
  1576. bottom: 0.01,
  1577. extra: 2154 / 2081
  1578. }
  1579. },
  1580. frontAlt: {
  1581. height: math.unit(183, "cm"),
  1582. weight: math.unit(80, "kg"),
  1583. name: "Front (alt)",
  1584. image: {
  1585. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1586. }
  1587. },
  1588. back: {
  1589. height: math.unit(183, "cm"),
  1590. weight: math.unit(80, "kg"),
  1591. name: "Back",
  1592. image: {
  1593. source: "./media/characters/sofia-fluttertail/back.svg"
  1594. }
  1595. },
  1596. kneeling: {
  1597. height: math.unit(125, "cm"),
  1598. weight: math.unit(80, "kg"),
  1599. name: "Kneeling",
  1600. image: {
  1601. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1602. extra: 1033 / 977,
  1603. bottom: 23.7 / 1057
  1604. }
  1605. },
  1606. maw: {
  1607. height: math.unit(183 / 5, "cm"),
  1608. name: "Maw",
  1609. image: {
  1610. source: "./media/characters/sofia-fluttertail/maw.svg"
  1611. }
  1612. },
  1613. mawcloseup: {
  1614. height: math.unit(183 / 5 * 0.41, "cm"),
  1615. name: "Maw (Closeup)",
  1616. image: {
  1617. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1618. }
  1619. },
  1620. paws: {
  1621. height: math.unit(1.17, "feet"),
  1622. name: "Paws",
  1623. image: {
  1624. source: "./media/characters/sofia-fluttertail/paws.svg",
  1625. extra: 851 / 851,
  1626. bottom: 17 / 868
  1627. }
  1628. },
  1629. },
  1630. [
  1631. {
  1632. name: "Normal",
  1633. height: math.unit(1.83, "meter")
  1634. },
  1635. {
  1636. name: "Size Thief",
  1637. height: math.unit(18, "feet")
  1638. },
  1639. {
  1640. name: "50 Foot Collie",
  1641. height: math.unit(50, "feet")
  1642. },
  1643. {
  1644. name: "Macro",
  1645. height: math.unit(96, "feet"),
  1646. default: true
  1647. },
  1648. {
  1649. name: "Megamerger",
  1650. height: math.unit(650, "feet")
  1651. },
  1652. ]
  1653. ))
  1654. characterMakers.push(() => makeCharacter(
  1655. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1656. {
  1657. front: {
  1658. height: math.unit(7, "feet"),
  1659. weight: math.unit(100, "kg"),
  1660. name: "Front",
  1661. image: {
  1662. source: "./media/characters/march/front.svg",
  1663. extra: 1,
  1664. bottom: 0.015
  1665. }
  1666. },
  1667. foot: {
  1668. height: math.unit(0.9, "feet"),
  1669. name: "Foot",
  1670. image: {
  1671. source: "./media/characters/march/foot.svg"
  1672. }
  1673. },
  1674. },
  1675. [
  1676. {
  1677. name: "Normal",
  1678. height: math.unit(7.9, "feet")
  1679. },
  1680. {
  1681. name: "Macro",
  1682. height: math.unit(220, "meters")
  1683. },
  1684. {
  1685. name: "Megamacro",
  1686. height: math.unit(2.98, "km"),
  1687. default: true
  1688. },
  1689. {
  1690. name: "Gigamacro",
  1691. height: math.unit(15963, "km")
  1692. },
  1693. {
  1694. name: "Teramacro",
  1695. height: math.unit(2980000000, "km")
  1696. },
  1697. {
  1698. name: "Examacro",
  1699. height: math.unit(250, "parsecs")
  1700. },
  1701. ]
  1702. ))
  1703. characterMakers.push(() => makeCharacter(
  1704. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1705. {
  1706. front: {
  1707. height: math.unit(6, "feet"),
  1708. weight: math.unit(60, "kg"),
  1709. name: "Front",
  1710. image: {
  1711. source: "./media/characters/noir/front.svg",
  1712. extra: 1,
  1713. bottom: 0.032
  1714. }
  1715. },
  1716. },
  1717. [
  1718. {
  1719. name: "Normal",
  1720. height: math.unit(6.6, "feet")
  1721. },
  1722. {
  1723. name: "Macro",
  1724. height: math.unit(500, "feet")
  1725. },
  1726. {
  1727. name: "Megamacro",
  1728. height: math.unit(2.5, "km"),
  1729. default: true
  1730. },
  1731. {
  1732. name: "Gigamacro",
  1733. height: math.unit(22500, "km")
  1734. },
  1735. {
  1736. name: "Teramacro",
  1737. height: math.unit(2500000000, "km")
  1738. },
  1739. {
  1740. name: "Examacro",
  1741. height: math.unit(200, "parsecs")
  1742. },
  1743. ]
  1744. ))
  1745. characterMakers.push(() => makeCharacter(
  1746. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1747. {
  1748. front: {
  1749. height: math.unit(7, "feet"),
  1750. weight: math.unit(100, "kg"),
  1751. name: "Front",
  1752. image: {
  1753. source: "./media/characters/okuri/front.svg",
  1754. extra: 1,
  1755. bottom: 0.037
  1756. }
  1757. },
  1758. back: {
  1759. height: math.unit(7, "feet"),
  1760. weight: math.unit(100, "kg"),
  1761. name: "Back",
  1762. image: {
  1763. source: "./media/characters/okuri/back.svg",
  1764. extra: 1,
  1765. bottom: 0.007
  1766. }
  1767. },
  1768. },
  1769. [
  1770. {
  1771. name: "Megamacro",
  1772. height: math.unit(100, "miles"),
  1773. default: true
  1774. },
  1775. ]
  1776. ))
  1777. characterMakers.push(() => makeCharacter(
  1778. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1779. {
  1780. front: {
  1781. height: math.unit(7, "feet"),
  1782. weight: math.unit(100, "kg"),
  1783. name: "Front",
  1784. image: {
  1785. source: "./media/characters/manny/front.svg",
  1786. extra: 1,
  1787. bottom: 0.06
  1788. }
  1789. },
  1790. back: {
  1791. height: math.unit(7, "feet"),
  1792. weight: math.unit(100, "kg"),
  1793. name: "Back",
  1794. image: {
  1795. source: "./media/characters/manny/back.svg",
  1796. extra: 1,
  1797. bottom: 0.014
  1798. }
  1799. },
  1800. },
  1801. [
  1802. {
  1803. name: "Normal",
  1804. height: math.unit(7, "feet"),
  1805. },
  1806. {
  1807. name: "Macro",
  1808. height: math.unit(78, "feet"),
  1809. default: true
  1810. },
  1811. {
  1812. name: "Macro+",
  1813. height: math.unit(300, "meters")
  1814. },
  1815. {
  1816. name: "Macro++",
  1817. height: math.unit(2400, "meters")
  1818. },
  1819. {
  1820. name: "Megamacro",
  1821. height: math.unit(5167, "meters")
  1822. },
  1823. {
  1824. name: "Gigamacro",
  1825. height: math.unit(41769, "miles")
  1826. },
  1827. ]
  1828. ))
  1829. characterMakers.push(() => makeCharacter(
  1830. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1831. {
  1832. front: {
  1833. height: math.unit(7, "feet"),
  1834. weight: math.unit(100, "kg"),
  1835. name: "Front",
  1836. image: {
  1837. source: "./media/characters/adake/front-1.svg"
  1838. }
  1839. },
  1840. frontAlt: {
  1841. height: math.unit(7, "feet"),
  1842. weight: math.unit(100, "kg"),
  1843. name: "Front (Alt)",
  1844. image: {
  1845. source: "./media/characters/adake/front-2.svg",
  1846. extra: 1,
  1847. bottom: 0.01
  1848. }
  1849. },
  1850. back: {
  1851. height: math.unit(7, "feet"),
  1852. weight: math.unit(100, "kg"),
  1853. name: "Back",
  1854. image: {
  1855. source: "./media/characters/adake/back.svg",
  1856. }
  1857. },
  1858. kneel: {
  1859. height: math.unit(5.385, "feet"),
  1860. weight: math.unit(100, "kg"),
  1861. name: "Kneeling",
  1862. image: {
  1863. source: "./media/characters/adake/kneel.svg",
  1864. bottom: 0.052
  1865. }
  1866. },
  1867. },
  1868. [
  1869. {
  1870. name: "Normal",
  1871. height: math.unit(7, "feet"),
  1872. },
  1873. {
  1874. name: "Macro",
  1875. height: math.unit(78, "feet"),
  1876. default: true
  1877. },
  1878. {
  1879. name: "Macro+",
  1880. height: math.unit(300, "meters")
  1881. },
  1882. {
  1883. name: "Macro++",
  1884. height: math.unit(2400, "meters")
  1885. },
  1886. {
  1887. name: "Megamacro",
  1888. height: math.unit(5167, "meters")
  1889. },
  1890. {
  1891. name: "Gigamacro",
  1892. height: math.unit(41769, "miles")
  1893. },
  1894. ]
  1895. ))
  1896. characterMakers.push(() => makeCharacter(
  1897. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1898. {
  1899. front: {
  1900. height: math.unit(1.65, "meters"),
  1901. weight: math.unit(50, "kg"),
  1902. name: "Front",
  1903. image: {
  1904. source: "./media/characters/elijah/front.svg",
  1905. extra: 858 / 830,
  1906. bottom: 95.5 / 953.8559
  1907. }
  1908. },
  1909. back: {
  1910. height: math.unit(1.65, "meters"),
  1911. weight: math.unit(50, "kg"),
  1912. name: "Back",
  1913. image: {
  1914. source: "./media/characters/elijah/back.svg",
  1915. extra: 895 / 850,
  1916. bottom: 5.3 / 897.956
  1917. }
  1918. },
  1919. frontNsfw: {
  1920. height: math.unit(1.65, "meters"),
  1921. weight: math.unit(50, "kg"),
  1922. name: "Front (NSFW)",
  1923. image: {
  1924. source: "./media/characters/elijah/front-nsfw.svg",
  1925. extra: 858 / 830,
  1926. bottom: 95.5 / 953.8559
  1927. }
  1928. },
  1929. backNsfw: {
  1930. height: math.unit(1.65, "meters"),
  1931. weight: math.unit(50, "kg"),
  1932. name: "Back (NSFW)",
  1933. image: {
  1934. source: "./media/characters/elijah/back-nsfw.svg",
  1935. extra: 895 / 850,
  1936. bottom: 5.3 / 897.956
  1937. }
  1938. },
  1939. dick: {
  1940. height: math.unit(1, "feet"),
  1941. name: "Dick",
  1942. image: {
  1943. source: "./media/characters/elijah/dick.svg"
  1944. }
  1945. },
  1946. beakOpen: {
  1947. height: math.unit(1.25, "feet"),
  1948. name: "Beak (Open)",
  1949. image: {
  1950. source: "./media/characters/elijah/beak-open.svg"
  1951. }
  1952. },
  1953. beakShut: {
  1954. height: math.unit(1.25, "feet"),
  1955. name: "Beak (Shut)",
  1956. image: {
  1957. source: "./media/characters/elijah/beak-shut.svg"
  1958. }
  1959. },
  1960. footFlexing: {
  1961. height: math.unit(1.61, "feet"),
  1962. name: "Foot (Flexing)",
  1963. image: {
  1964. source: "./media/characters/elijah/foot-flexing.svg"
  1965. }
  1966. },
  1967. footStepping: {
  1968. height: math.unit(1.44, "feet"),
  1969. name: "Foot (Stepping)",
  1970. image: {
  1971. source: "./media/characters/elijah/foot-stepping.svg"
  1972. }
  1973. },
  1974. plantigradeLeg: {
  1975. height: math.unit(2.34, "feet"),
  1976. name: "Plantigrade Leg",
  1977. image: {
  1978. source: "./media/characters/elijah/plantigrade-leg.svg"
  1979. }
  1980. },
  1981. plantigradeFootLeft: {
  1982. height: math.unit(0.9, "feet"),
  1983. name: "Plantigrade Foot (Left)",
  1984. image: {
  1985. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1986. }
  1987. },
  1988. plantigradeFootRight: {
  1989. height: math.unit(0.9, "feet"),
  1990. name: "Plantigrade Foot (Right)",
  1991. image: {
  1992. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1993. }
  1994. },
  1995. },
  1996. [
  1997. {
  1998. name: "Normal",
  1999. height: math.unit(1.65, "meters")
  2000. },
  2001. {
  2002. name: "Macro",
  2003. height: math.unit(55, "meters"),
  2004. default: true
  2005. },
  2006. {
  2007. name: "Macro+",
  2008. height: math.unit(105, "meters")
  2009. },
  2010. ]
  2011. ))
  2012. characterMakers.push(() => makeCharacter(
  2013. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2014. {
  2015. front: {
  2016. height: math.unit(11, "feet"),
  2017. weight: math.unit(80, "kg"),
  2018. name: "Front",
  2019. image: {
  2020. source: "./media/characters/rai/front.svg",
  2021. extra: 1,
  2022. bottom: 0.03
  2023. }
  2024. },
  2025. side: {
  2026. height: math.unit(11, "feet"),
  2027. weight: math.unit(80, "kg"),
  2028. name: "Side",
  2029. image: {
  2030. source: "./media/characters/rai/side.svg"
  2031. }
  2032. },
  2033. back: {
  2034. height: math.unit(11, "feet"),
  2035. weight: math.unit(80, "lb"),
  2036. name: "Back",
  2037. image: {
  2038. source: "./media/characters/rai/back.svg",
  2039. extra: 1,
  2040. bottom: 0.01
  2041. }
  2042. },
  2043. feral: {
  2044. height: math.unit(11, "feet"),
  2045. weight: math.unit(800, "lb"),
  2046. name: "Feral",
  2047. image: {
  2048. source: "./media/characters/rai/feral.svg",
  2049. extra: 1050 / 659,
  2050. bottom: 0.07
  2051. }
  2052. },
  2053. dragon: {
  2054. height: math.unit(23, "feet"),
  2055. weight: math.unit(50000, "lb"),
  2056. name: "Dragon",
  2057. image: {
  2058. source: "./media/characters/rai/dragon.svg",
  2059. extra: 2498 / 2030,
  2060. bottom: 85.2 / 2584
  2061. }
  2062. },
  2063. maw: {
  2064. height: math.unit(6 / 3.81416, "feet"),
  2065. name: "Maw",
  2066. image: {
  2067. source: "./media/characters/rai/maw.svg"
  2068. }
  2069. },
  2070. },
  2071. [
  2072. {
  2073. name: "Normal",
  2074. height: math.unit(11, "feet")
  2075. },
  2076. {
  2077. name: "Macro",
  2078. height: math.unit(302, "feet"),
  2079. default: true
  2080. },
  2081. ]
  2082. ))
  2083. characterMakers.push(() => makeCharacter(
  2084. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2085. {
  2086. frontDressed: {
  2087. height: math.unit(216, "feet"),
  2088. weight: math.unit(7000000, "lb"),
  2089. name: "Front (Dressed)",
  2090. image: {
  2091. source: "./media/characters/jazzy/front-dressed.svg",
  2092. extra: 2738 / 2651,
  2093. bottom: 41.8 / 2786
  2094. }
  2095. },
  2096. backDressed: {
  2097. height: math.unit(216, "feet"),
  2098. weight: math.unit(7000000, "lb"),
  2099. name: "Back (Dressed)",
  2100. image: {
  2101. source: "./media/characters/jazzy/back-dressed.svg",
  2102. extra: 2775 / 2673,
  2103. bottom: 36.8 / 2817
  2104. }
  2105. },
  2106. front: {
  2107. height: math.unit(216, "feet"),
  2108. weight: math.unit(7000000, "lb"),
  2109. name: "Front",
  2110. image: {
  2111. source: "./media/characters/jazzy/front.svg",
  2112. extra: 2738 / 2651,
  2113. bottom: 41.8 / 2786
  2114. }
  2115. },
  2116. back: {
  2117. height: math.unit(216, "feet"),
  2118. weight: math.unit(7000000, "lb"),
  2119. name: "Back",
  2120. image: {
  2121. source: "./media/characters/jazzy/back.svg",
  2122. extra: 2775 / 2673,
  2123. bottom: 36.8 / 2817
  2124. }
  2125. },
  2126. maw: {
  2127. height: math.unit(20, "feet"),
  2128. name: "Maw",
  2129. image: {
  2130. source: "./media/characters/jazzy/maw.svg"
  2131. }
  2132. },
  2133. paws: {
  2134. height: math.unit(27.5, "feet"),
  2135. name: "Paws",
  2136. image: {
  2137. source: "./media/characters/jazzy/paws.svg"
  2138. }
  2139. },
  2140. eye: {
  2141. height: math.unit(4.4, "feet"),
  2142. name: "Eye",
  2143. image: {
  2144. source: "./media/characters/jazzy/eye.svg"
  2145. }
  2146. },
  2147. droneOffense: {
  2148. height: math.unit(9.5, "inches"),
  2149. name: "Drone (Offense)",
  2150. image: {
  2151. source: "./media/characters/jazzy/drone-offense.svg"
  2152. }
  2153. },
  2154. droneRecon: {
  2155. height: math.unit(9.5, "inches"),
  2156. name: "Drone (Recon)",
  2157. image: {
  2158. source: "./media/characters/jazzy/drone-recon.svg"
  2159. }
  2160. },
  2161. droneDefense: {
  2162. height: math.unit(9.5, "inches"),
  2163. name: "Drone (Defense)",
  2164. image: {
  2165. source: "./media/characters/jazzy/drone-defense.svg"
  2166. }
  2167. },
  2168. },
  2169. [
  2170. {
  2171. name: "Macro",
  2172. height: math.unit(216, "feet"),
  2173. default: true
  2174. },
  2175. ]
  2176. ))
  2177. characterMakers.push(() => makeCharacter(
  2178. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2179. {
  2180. front: {
  2181. height: math.unit(7, "feet"),
  2182. weight: math.unit(80, "kg"),
  2183. name: "Front",
  2184. image: {
  2185. source: "./media/characters/flamm/front.svg",
  2186. extra: 1794 / 1677,
  2187. bottom: 31.7 / 1828.5
  2188. }
  2189. },
  2190. },
  2191. [
  2192. {
  2193. name: "Normal",
  2194. height: math.unit(9.5, "feet")
  2195. },
  2196. {
  2197. name: "Macro",
  2198. height: math.unit(200, "feet"),
  2199. default: true
  2200. },
  2201. ]
  2202. ))
  2203. characterMakers.push(() => makeCharacter(
  2204. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2205. {
  2206. front: {
  2207. height: math.unit(7, "feet"),
  2208. weight: math.unit(80, "kg"),
  2209. name: "Front",
  2210. image: {
  2211. source: "./media/characters/zephiro/front.svg",
  2212. extra: 2309 / 2162,
  2213. bottom: 0.069
  2214. }
  2215. },
  2216. side: {
  2217. height: math.unit(7, "feet"),
  2218. weight: math.unit(80, "kg"),
  2219. name: "Side",
  2220. image: {
  2221. source: "./media/characters/zephiro/side.svg",
  2222. extra: 2403 / 2279,
  2223. bottom: 0.015
  2224. }
  2225. },
  2226. back: {
  2227. height: math.unit(7, "feet"),
  2228. weight: math.unit(80, "kg"),
  2229. name: "Back",
  2230. image: {
  2231. source: "./media/characters/zephiro/back.svg",
  2232. extra: 2373 / 2244,
  2233. bottom: 0.013
  2234. }
  2235. },
  2236. },
  2237. [
  2238. {
  2239. name: "Micro",
  2240. height: math.unit(3, "inches")
  2241. },
  2242. {
  2243. name: "Normal",
  2244. height: math.unit(5 + 3 / 12, "feet"),
  2245. default: true
  2246. },
  2247. {
  2248. name: "Macro",
  2249. height: math.unit(118, "feet")
  2250. },
  2251. ]
  2252. ))
  2253. characterMakers.push(() => makeCharacter(
  2254. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2255. {
  2256. front: {
  2257. height: math.unit(5, "feet"),
  2258. weight: math.unit(90, "kg"),
  2259. name: "Front",
  2260. image: {
  2261. source: "./media/characters/fory/front.svg",
  2262. extra: 2862 / 2674,
  2263. bottom: 180 / 3043.8
  2264. }
  2265. },
  2266. back: {
  2267. height: math.unit(5, "feet"),
  2268. weight: math.unit(90, "kg"),
  2269. name: "Back",
  2270. image: {
  2271. source: "./media/characters/fory/back.svg",
  2272. extra: 2962 / 2791,
  2273. bottom: 106 / 3071.8
  2274. }
  2275. },
  2276. foot: {
  2277. height: math.unit(2.14, "feet"),
  2278. name: "Foot",
  2279. image: {
  2280. source: "./media/characters/fory/foot.svg"
  2281. }
  2282. },
  2283. },
  2284. [
  2285. {
  2286. name: "Normal",
  2287. height: math.unit(5, "feet")
  2288. },
  2289. {
  2290. name: "Macro",
  2291. height: math.unit(50, "feet"),
  2292. default: true
  2293. },
  2294. {
  2295. name: "Megamacro",
  2296. height: math.unit(10, "miles")
  2297. },
  2298. {
  2299. name: "Gigamacro",
  2300. height: math.unit(5, "earths")
  2301. },
  2302. ]
  2303. ))
  2304. characterMakers.push(() => makeCharacter(
  2305. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2306. {
  2307. front: {
  2308. height: math.unit(7, "feet"),
  2309. weight: math.unit(90, "kg"),
  2310. name: "Front",
  2311. image: {
  2312. source: "./media/characters/kurrikage/front.svg",
  2313. extra: 1,
  2314. bottom: 0.035
  2315. }
  2316. },
  2317. back: {
  2318. height: math.unit(7, "feet"),
  2319. weight: math.unit(90, "lb"),
  2320. name: "Back",
  2321. image: {
  2322. source: "./media/characters/kurrikage/back.svg"
  2323. }
  2324. },
  2325. paw: {
  2326. height: math.unit(1.5, "feet"),
  2327. name: "Paw",
  2328. image: {
  2329. source: "./media/characters/kurrikage/paw.svg"
  2330. }
  2331. },
  2332. staff: {
  2333. height: math.unit(6.7, "feet"),
  2334. name: "Staff",
  2335. image: {
  2336. source: "./media/characters/kurrikage/staff.svg"
  2337. }
  2338. },
  2339. peek: {
  2340. height: math.unit(1.05, "feet"),
  2341. name: "Peeking",
  2342. image: {
  2343. source: "./media/characters/kurrikage/peek.svg",
  2344. bottom: 0.08
  2345. }
  2346. },
  2347. },
  2348. [
  2349. {
  2350. name: "Normal",
  2351. height: math.unit(12, "feet"),
  2352. default: true
  2353. },
  2354. {
  2355. name: "Big",
  2356. height: math.unit(20, "feet")
  2357. },
  2358. {
  2359. name: "Macro",
  2360. height: math.unit(500, "feet")
  2361. },
  2362. {
  2363. name: "Megamacro",
  2364. height: math.unit(20, "miles")
  2365. },
  2366. ]
  2367. ))
  2368. characterMakers.push(() => makeCharacter(
  2369. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2370. {
  2371. front: {
  2372. height: math.unit(6, "feet"),
  2373. weight: math.unit(75, "kg"),
  2374. name: "Front",
  2375. image: {
  2376. source: "./media/characters/shingo/front.svg",
  2377. extra: 3511 / 3338,
  2378. bottom: 0.005
  2379. }
  2380. },
  2381. paw: {
  2382. height: math.unit(1, "feet"),
  2383. name: "Paw",
  2384. image: {
  2385. source: "./media/characters/shingo/paw.svg"
  2386. }
  2387. },
  2388. },
  2389. [
  2390. {
  2391. name: "Micro",
  2392. height: math.unit(4, "inches")
  2393. },
  2394. {
  2395. name: "Normal",
  2396. height: math.unit(6, "feet"),
  2397. default: true
  2398. },
  2399. {
  2400. name: "Macro",
  2401. height: math.unit(108, "feet")
  2402. },
  2403. {
  2404. name: "Macro+",
  2405. height: math.unit(1500, "feet")
  2406. },
  2407. ]
  2408. ))
  2409. characterMakers.push(() => makeCharacter(
  2410. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2411. {
  2412. side: {
  2413. height: math.unit(6, "feet"),
  2414. weight: math.unit(75, "kg"),
  2415. name: "Side",
  2416. image: {
  2417. source: "./media/characters/aigey/side.svg"
  2418. }
  2419. },
  2420. },
  2421. [
  2422. {
  2423. name: "Macro",
  2424. height: math.unit(200, "feet"),
  2425. default: true
  2426. },
  2427. {
  2428. name: "Megamacro",
  2429. height: math.unit(100, "miles")
  2430. },
  2431. ]
  2432. )
  2433. )
  2434. characterMakers.push(() => makeCharacter(
  2435. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2436. {
  2437. front: {
  2438. height: math.unit(5 + 5 / 12, "feet"),
  2439. weight: math.unit(75, "kg"),
  2440. name: "Front",
  2441. image: {
  2442. source: "./media/characters/natasha/front.svg",
  2443. extra: 859 / 824,
  2444. bottom: 23 / 879.6
  2445. }
  2446. },
  2447. frontNsfw: {
  2448. height: math.unit(5 + 5 / 12, "feet"),
  2449. weight: math.unit(75, "kg"),
  2450. name: "Front (NSFW)",
  2451. image: {
  2452. source: "./media/characters/natasha/front-nsfw.svg",
  2453. extra: 859 / 824,
  2454. bottom: 23 / 879.6
  2455. }
  2456. },
  2457. frontErect: {
  2458. height: math.unit(5 + 5 / 12, "feet"),
  2459. weight: math.unit(75, "kg"),
  2460. name: "Front (Erect)",
  2461. image: {
  2462. source: "./media/characters/natasha/front-erect.svg",
  2463. extra: 859 / 824,
  2464. bottom: 23 / 879.6
  2465. }
  2466. },
  2467. back: {
  2468. height: math.unit(5 + 5 / 12, "feet"),
  2469. weight: math.unit(75, "kg"),
  2470. name: "Back",
  2471. image: {
  2472. source: "./media/characters/natasha/back.svg",
  2473. extra: 887.9 / 852.6,
  2474. bottom: 9.7 / 896.4
  2475. }
  2476. },
  2477. backAlt: {
  2478. height: math.unit(5 + 5 / 12, "feet"),
  2479. weight: math.unit(75, "kg"),
  2480. name: "Back (Alt)",
  2481. image: {
  2482. source: "./media/characters/natasha/back-alt.svg",
  2483. extra: 1236.7 / 1192,
  2484. bottom: 22.3 / 1258.2
  2485. }
  2486. },
  2487. dick: {
  2488. height: math.unit(1.772, "feet"),
  2489. name: "Dick",
  2490. image: {
  2491. source: "./media/characters/natasha/dick.svg"
  2492. }
  2493. },
  2494. paw: {
  2495. height: math.unit(0.250, "meters"),
  2496. name: "Paw",
  2497. image: {
  2498. source: "./media/characters/natasha/paw.svg"
  2499. }
  2500. },
  2501. },
  2502. [
  2503. {
  2504. name: "Normal",
  2505. height: math.unit(5 + 5 / 12, "feet")
  2506. },
  2507. {
  2508. name: "Large",
  2509. height: math.unit(12, "feet")
  2510. },
  2511. {
  2512. name: "Macro",
  2513. height: math.unit(100, "feet"),
  2514. default: true
  2515. },
  2516. {
  2517. name: "Macro+",
  2518. height: math.unit(260, "feet")
  2519. },
  2520. {
  2521. name: "Macro++",
  2522. height: math.unit(1, "mile")
  2523. },
  2524. ]
  2525. ))
  2526. characterMakers.push(() => makeCharacter(
  2527. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2528. {
  2529. front: {
  2530. height: math.unit(6, "feet"),
  2531. weight: math.unit(75, "kg"),
  2532. name: "Front",
  2533. image: {
  2534. source: "./media/characters/malik/front.svg"
  2535. }
  2536. },
  2537. side: {
  2538. height: math.unit(6, "feet"),
  2539. weight: math.unit(75, "kg"),
  2540. name: "Side",
  2541. image: {
  2542. source: "./media/characters/malik/side.svg",
  2543. extra: 1.1539
  2544. }
  2545. },
  2546. back: {
  2547. height: math.unit(6, "feet"),
  2548. weight: math.unit(75, "kg"),
  2549. name: "Back",
  2550. image: {
  2551. source: "./media/characters/malik/back.svg"
  2552. }
  2553. },
  2554. },
  2555. [
  2556. {
  2557. name: "Macro",
  2558. height: math.unit(156, "feet"),
  2559. default: true
  2560. },
  2561. {
  2562. name: "Macro+",
  2563. height: math.unit(1188, "feet")
  2564. },
  2565. ]
  2566. ))
  2567. characterMakers.push(() => makeCharacter(
  2568. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2569. {
  2570. front: {
  2571. height: math.unit(6, "feet"),
  2572. weight: math.unit(75, "kg"),
  2573. name: "Front",
  2574. image: {
  2575. source: "./media/characters/sefer/front.svg",
  2576. extra: 848 / 659,
  2577. bottom: 28.3 / 876.442
  2578. }
  2579. },
  2580. back: {
  2581. height: math.unit(6, "feet"),
  2582. weight: math.unit(75, "kg"),
  2583. name: "Back",
  2584. image: {
  2585. source: "./media/characters/sefer/back.svg",
  2586. extra: 864 / 695,
  2587. bottom: 10 / 871
  2588. }
  2589. },
  2590. frontDressed: {
  2591. height: math.unit(6, "feet"),
  2592. weight: math.unit(75, "kg"),
  2593. name: "Front (Dressed)",
  2594. image: {
  2595. source: "./media/characters/sefer/front-dressed.svg",
  2596. extra: 839 / 653,
  2597. bottom: 37.6 / 878
  2598. }
  2599. },
  2600. },
  2601. [
  2602. {
  2603. name: "Normal",
  2604. height: math.unit(6, "feet"),
  2605. default: true
  2606. },
  2607. ]
  2608. ))
  2609. characterMakers.push(() => makeCharacter(
  2610. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2611. {
  2612. body: {
  2613. height: math.unit(2.2428, "meter"),
  2614. weight: math.unit(124.738, "kg"),
  2615. name: "Body",
  2616. image: {
  2617. extra: 1225 / 1050,
  2618. source: "./media/characters/north/front.svg"
  2619. }
  2620. }
  2621. },
  2622. [
  2623. {
  2624. name: "Micro",
  2625. height: math.unit(4, "inches")
  2626. },
  2627. {
  2628. name: "Macro",
  2629. height: math.unit(63, "meters")
  2630. },
  2631. {
  2632. name: "Megamacro",
  2633. height: math.unit(101, "miles"),
  2634. default: true
  2635. }
  2636. ]
  2637. ))
  2638. characterMakers.push(() => makeCharacter(
  2639. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2640. {
  2641. angled: {
  2642. height: math.unit(4, "meter"),
  2643. weight: math.unit(150, "kg"),
  2644. name: "Angled",
  2645. image: {
  2646. source: "./media/characters/talan/angled-sfw.svg",
  2647. bottom: 29 / 3734
  2648. }
  2649. },
  2650. angledNsfw: {
  2651. height: math.unit(4, "meter"),
  2652. weight: math.unit(150, "kg"),
  2653. name: "Angled (NSFW)",
  2654. image: {
  2655. source: "./media/characters/talan/angled-nsfw.svg",
  2656. bottom: 29 / 3734
  2657. }
  2658. },
  2659. frontNsfw: {
  2660. height: math.unit(4, "meter"),
  2661. weight: math.unit(150, "kg"),
  2662. name: "Front (NSFW)",
  2663. image: {
  2664. source: "./media/characters/talan/front-nsfw.svg",
  2665. bottom: 29 / 3734
  2666. }
  2667. },
  2668. sideNsfw: {
  2669. height: math.unit(4, "meter"),
  2670. weight: math.unit(150, "kg"),
  2671. name: "Side (NSFW)",
  2672. image: {
  2673. source: "./media/characters/talan/side-nsfw.svg",
  2674. bottom: 29 / 3734
  2675. }
  2676. },
  2677. back: {
  2678. height: math.unit(4, "meter"),
  2679. weight: math.unit(150, "kg"),
  2680. name: "Back",
  2681. image: {
  2682. source: "./media/characters/talan/back.svg"
  2683. }
  2684. },
  2685. dickBottom: {
  2686. height: math.unit(0.621, "meter"),
  2687. name: "Dick (Bottom)",
  2688. image: {
  2689. source: "./media/characters/talan/dick-bottom.svg"
  2690. }
  2691. },
  2692. dickTop: {
  2693. height: math.unit(0.621, "meter"),
  2694. name: "Dick (Top)",
  2695. image: {
  2696. source: "./media/characters/talan/dick-top.svg"
  2697. }
  2698. },
  2699. dickSide: {
  2700. height: math.unit(0.305, "meter"),
  2701. name: "Dick (Side)",
  2702. image: {
  2703. source: "./media/characters/talan/dick-side.svg"
  2704. }
  2705. },
  2706. dickFront: {
  2707. height: math.unit(0.305, "meter"),
  2708. name: "Dick (Front)",
  2709. image: {
  2710. source: "./media/characters/talan/dick-front.svg"
  2711. }
  2712. },
  2713. },
  2714. [
  2715. {
  2716. name: "Normal",
  2717. height: math.unit(4, "meters")
  2718. },
  2719. {
  2720. name: "Macro",
  2721. height: math.unit(100, "meters")
  2722. },
  2723. {
  2724. name: "Megamacro",
  2725. height: math.unit(2, "miles"),
  2726. default: true
  2727. },
  2728. {
  2729. name: "Gigamacro",
  2730. height: math.unit(5000, "miles")
  2731. },
  2732. {
  2733. name: "Teramacro",
  2734. height: math.unit(100, "parsecs")
  2735. }
  2736. ]
  2737. ))
  2738. characterMakers.push(() => makeCharacter(
  2739. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2740. {
  2741. front: {
  2742. height: math.unit(2, "meter"),
  2743. weight: math.unit(90, "kg"),
  2744. name: "Front",
  2745. image: {
  2746. source: "./media/characters/gael'rathus/front.svg"
  2747. }
  2748. },
  2749. frontAlt: {
  2750. height: math.unit(2, "meter"),
  2751. weight: math.unit(90, "kg"),
  2752. name: "Front (alt)",
  2753. image: {
  2754. source: "./media/characters/gael'rathus/front-alt.svg"
  2755. }
  2756. },
  2757. frontAlt2: {
  2758. height: math.unit(2, "meter"),
  2759. weight: math.unit(90, "kg"),
  2760. name: "Front (alt 2)",
  2761. image: {
  2762. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2763. }
  2764. }
  2765. },
  2766. [
  2767. {
  2768. name: "Normal",
  2769. height: math.unit(9, "feet"),
  2770. default: true
  2771. },
  2772. {
  2773. name: "Large",
  2774. height: math.unit(25, "feet")
  2775. },
  2776. {
  2777. name: "Macro",
  2778. height: math.unit(0.25, "miles")
  2779. },
  2780. {
  2781. name: "Megamacro",
  2782. height: math.unit(10, "miles")
  2783. }
  2784. ]
  2785. ))
  2786. characterMakers.push(() => makeCharacter(
  2787. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2788. {
  2789. side: {
  2790. height: math.unit(2, "meter"),
  2791. weight: math.unit(140, "kg"),
  2792. name: "Side",
  2793. image: {
  2794. source: "./media/characters/sosha/side.svg",
  2795. bottom: 0.042
  2796. }
  2797. },
  2798. },
  2799. [
  2800. {
  2801. name: "Normal",
  2802. height: math.unit(12, "feet"),
  2803. default: true
  2804. }
  2805. ]
  2806. ))
  2807. characterMakers.push(() => makeCharacter(
  2808. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2809. {
  2810. side: {
  2811. height: math.unit(5 + 5 / 12, "feet"),
  2812. weight: math.unit(170, "kg"),
  2813. name: "Side",
  2814. image: {
  2815. source: "./media/characters/runnola/side.svg",
  2816. extra: 741 / 448,
  2817. bottom: 0.05
  2818. }
  2819. },
  2820. },
  2821. [
  2822. {
  2823. name: "Small",
  2824. height: math.unit(3, "feet")
  2825. },
  2826. {
  2827. name: "Normal",
  2828. height: math.unit(5 + 5 / 12, "feet"),
  2829. default: true
  2830. },
  2831. {
  2832. name: "Big",
  2833. height: math.unit(10, "feet")
  2834. },
  2835. ]
  2836. ))
  2837. characterMakers.push(() => makeCharacter(
  2838. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2839. {
  2840. front: {
  2841. height: math.unit(2, "meter"),
  2842. weight: math.unit(50, "kg"),
  2843. name: "Front",
  2844. image: {
  2845. source: "./media/characters/kurribird/front.svg",
  2846. bottom: 0.015
  2847. }
  2848. },
  2849. frontAlt: {
  2850. height: math.unit(1.5, "meter"),
  2851. weight: math.unit(50, "kg"),
  2852. name: "Front (Alt)",
  2853. image: {
  2854. source: "./media/characters/kurribird/front-alt.svg",
  2855. extra: 1.45
  2856. }
  2857. },
  2858. },
  2859. [
  2860. {
  2861. name: "Normal",
  2862. height: math.unit(7, "feet")
  2863. },
  2864. {
  2865. name: "Big",
  2866. height: math.unit(12, "feet"),
  2867. default: true
  2868. },
  2869. {
  2870. name: "Macro",
  2871. height: math.unit(1500, "feet")
  2872. },
  2873. {
  2874. name: "Megamacro",
  2875. height: math.unit(2, "miles")
  2876. }
  2877. ]
  2878. ))
  2879. characterMakers.push(() => makeCharacter(
  2880. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2881. {
  2882. front: {
  2883. height: math.unit(2, "meter"),
  2884. weight: math.unit(80, "kg"),
  2885. name: "Front",
  2886. image: {
  2887. source: "./media/characters/elbial/front.svg",
  2888. extra: 1643 / 1556,
  2889. bottom: 60.2 / 1696
  2890. }
  2891. },
  2892. side: {
  2893. height: math.unit(2, "meter"),
  2894. weight: math.unit(80, "kg"),
  2895. name: "Side",
  2896. image: {
  2897. source: "./media/characters/elbial/side.svg",
  2898. extra: 1630 / 1565,
  2899. bottom: 71.5 / 1697
  2900. }
  2901. },
  2902. back: {
  2903. height: math.unit(2, "meter"),
  2904. weight: math.unit(80, "kg"),
  2905. name: "Back",
  2906. image: {
  2907. source: "./media/characters/elbial/back.svg",
  2908. extra: 1668 / 1595,
  2909. bottom: 5.6 / 1672
  2910. }
  2911. },
  2912. frontDressed: {
  2913. height: math.unit(2, "meter"),
  2914. weight: math.unit(80, "kg"),
  2915. name: "Front (Dressed)",
  2916. image: {
  2917. source: "./media/characters/elbial/front-dressed.svg",
  2918. extra: 1653 / 1584,
  2919. bottom: 57 / 1708
  2920. }
  2921. },
  2922. genitals: {
  2923. height: math.unit(2 / 3.367, "meter"),
  2924. name: "Genitals",
  2925. image: {
  2926. source: "./media/characters/elbial/genitals.svg"
  2927. }
  2928. },
  2929. },
  2930. [
  2931. {
  2932. name: "Large",
  2933. height: math.unit(100, "feet")
  2934. },
  2935. {
  2936. name: "Macro",
  2937. height: math.unit(500, "feet"),
  2938. default: true
  2939. },
  2940. {
  2941. name: "Megamacro",
  2942. height: math.unit(10, "miles")
  2943. },
  2944. {
  2945. name: "Gigamacro",
  2946. height: math.unit(25000, "miles")
  2947. },
  2948. {
  2949. name: "Full-Size",
  2950. height: math.unit(8000000, "gigaparsecs")
  2951. }
  2952. ]
  2953. ))
  2954. characterMakers.push(() => makeCharacter(
  2955. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2956. {
  2957. front: {
  2958. height: math.unit(2, "meter"),
  2959. weight: math.unit(60, "kg"),
  2960. name: "Front",
  2961. image: {
  2962. source: "./media/characters/noah/front.svg"
  2963. }
  2964. },
  2965. talons: {
  2966. height: math.unit(0.315, "meter"),
  2967. name: "Talons",
  2968. image: {
  2969. source: "./media/characters/noah/talons.svg"
  2970. }
  2971. }
  2972. },
  2973. [
  2974. {
  2975. name: "Large",
  2976. height: math.unit(50, "feet")
  2977. },
  2978. {
  2979. name: "Macro",
  2980. height: math.unit(750, "feet"),
  2981. default: true
  2982. },
  2983. {
  2984. name: "Megamacro",
  2985. height: math.unit(50, "miles")
  2986. },
  2987. {
  2988. name: "Gigamacro",
  2989. height: math.unit(100000, "miles")
  2990. },
  2991. {
  2992. name: "Full-Size",
  2993. height: math.unit(3000000000, "miles")
  2994. }
  2995. ]
  2996. ))
  2997. characterMakers.push(() => makeCharacter(
  2998. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2999. {
  3000. front: {
  3001. height: math.unit(2, "meter"),
  3002. weight: math.unit(80, "kg"),
  3003. name: "Front",
  3004. image: {
  3005. source: "./media/characters/natalya/front.svg"
  3006. }
  3007. },
  3008. back: {
  3009. height: math.unit(2, "meter"),
  3010. weight: math.unit(80, "kg"),
  3011. name: "Back",
  3012. image: {
  3013. source: "./media/characters/natalya/back.svg"
  3014. }
  3015. }
  3016. },
  3017. [
  3018. {
  3019. name: "Normal",
  3020. height: math.unit(150, "feet"),
  3021. default: true
  3022. },
  3023. {
  3024. name: "Megamacro",
  3025. height: math.unit(5, "miles")
  3026. },
  3027. {
  3028. name: "Full-Size",
  3029. height: math.unit(600, "kiloparsecs")
  3030. }
  3031. ]
  3032. ))
  3033. characterMakers.push(() => makeCharacter(
  3034. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3035. {
  3036. front: {
  3037. height: math.unit(2, "meter"),
  3038. weight: math.unit(50, "kg"),
  3039. name: "Front",
  3040. image: {
  3041. source: "./media/characters/erestrebah/front.svg",
  3042. extra: 208 / 193,
  3043. bottom: 0.055
  3044. }
  3045. },
  3046. back: {
  3047. height: math.unit(2, "meter"),
  3048. weight: math.unit(50, "kg"),
  3049. name: "Back",
  3050. image: {
  3051. source: "./media/characters/erestrebah/back.svg",
  3052. extra: 1.3
  3053. }
  3054. }
  3055. },
  3056. [
  3057. {
  3058. name: "Normal",
  3059. height: math.unit(10, "feet")
  3060. },
  3061. {
  3062. name: "Large",
  3063. height: math.unit(50, "feet"),
  3064. default: true
  3065. },
  3066. {
  3067. name: "Macro",
  3068. height: math.unit(300, "feet")
  3069. },
  3070. {
  3071. name: "Macro+",
  3072. height: math.unit(750, "feet")
  3073. },
  3074. {
  3075. name: "Megamacro",
  3076. height: math.unit(3, "miles")
  3077. }
  3078. ]
  3079. ))
  3080. characterMakers.push(() => makeCharacter(
  3081. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3082. {
  3083. front: {
  3084. height: math.unit(2, "meter"),
  3085. weight: math.unit(80, "kg"),
  3086. name: "Front",
  3087. image: {
  3088. source: "./media/characters/jennifer/front.svg",
  3089. bottom: 0.11,
  3090. extra: 1.16
  3091. }
  3092. },
  3093. frontAlt: {
  3094. height: math.unit(2, "meter"),
  3095. weight: math.unit(80, "kg"),
  3096. name: "Front (Alt)",
  3097. image: {
  3098. source: "./media/characters/jennifer/front-alt.svg"
  3099. }
  3100. }
  3101. },
  3102. [
  3103. {
  3104. name: "Canon Height",
  3105. height: math.unit(120, "feet"),
  3106. default: true
  3107. },
  3108. {
  3109. name: "Macro+",
  3110. height: math.unit(300, "feet")
  3111. },
  3112. {
  3113. name: "Megamacro",
  3114. height: math.unit(20000, "feet")
  3115. }
  3116. ]
  3117. ))
  3118. characterMakers.push(() => makeCharacter(
  3119. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3120. {
  3121. front: {
  3122. height: math.unit(2, "meter"),
  3123. weight: math.unit(50, "kg"),
  3124. name: "Front",
  3125. image: {
  3126. source: "./media/characters/kalista/front.svg",
  3127. extra: 1947 / 1700,
  3128. bottom: 76.6 / 1412.98
  3129. }
  3130. },
  3131. back: {
  3132. height: math.unit(2, "meter"),
  3133. weight: math.unit(50, "kg"),
  3134. name: "Back",
  3135. image: {
  3136. source: "./media/characters/kalista/back.svg",
  3137. extra: 1366 / 1156,
  3138. bottom: 33.9 / 1362.78
  3139. }
  3140. }
  3141. },
  3142. [
  3143. {
  3144. name: "Uncomfortably Small",
  3145. height: math.unit(10, "feet")
  3146. },
  3147. {
  3148. name: "Small",
  3149. height: math.unit(30, "feet")
  3150. },
  3151. {
  3152. name: "Macro",
  3153. height: math.unit(100, "feet"),
  3154. default: true
  3155. },
  3156. {
  3157. name: "Macro+",
  3158. height: math.unit(2000, "feet")
  3159. },
  3160. {
  3161. name: "True Form",
  3162. height: math.unit(8924, "miles")
  3163. }
  3164. ]
  3165. ))
  3166. characterMakers.push(() => makeCharacter(
  3167. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3168. {
  3169. front: {
  3170. height: math.unit(2, "meter"),
  3171. weight: math.unit(120, "kg"),
  3172. name: "Front",
  3173. image: {
  3174. source: "./media/characters/ggv/front.svg"
  3175. }
  3176. },
  3177. side: {
  3178. height: math.unit(2, "meter"),
  3179. weight: math.unit(120, "kg"),
  3180. name: "Side",
  3181. image: {
  3182. source: "./media/characters/ggv/side.svg"
  3183. }
  3184. }
  3185. },
  3186. [
  3187. {
  3188. name: "Extremely Puny",
  3189. height: math.unit(9 + 5 / 12, "feet")
  3190. },
  3191. {
  3192. name: "Horribly Small",
  3193. height: math.unit(47.7, "miles"),
  3194. default: true
  3195. },
  3196. {
  3197. name: "Reasonably Sized",
  3198. height: math.unit(25000, "parsecs")
  3199. },
  3200. {
  3201. name: "Slightly Uncompressed",
  3202. height: math.unit(7.77e31, "parsecs")
  3203. },
  3204. {
  3205. name: "Omniversal",
  3206. height: math.unit(1e300, "meters")
  3207. },
  3208. ]
  3209. ))
  3210. characterMakers.push(() => makeCharacter(
  3211. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3212. {
  3213. front: {
  3214. height: math.unit(2, "meter"),
  3215. weight: math.unit(75, "lb"),
  3216. name: "Front",
  3217. image: {
  3218. source: "./media/characters/napalm/front.svg"
  3219. }
  3220. },
  3221. back: {
  3222. height: math.unit(2, "meter"),
  3223. weight: math.unit(75, "lb"),
  3224. name: "Back",
  3225. image: {
  3226. source: "./media/characters/napalm/back.svg"
  3227. }
  3228. }
  3229. },
  3230. [
  3231. {
  3232. name: "Standard",
  3233. height: math.unit(55, "feet"),
  3234. default: true
  3235. }
  3236. ]
  3237. ))
  3238. characterMakers.push(() => makeCharacter(
  3239. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3240. {
  3241. front: {
  3242. height: math.unit(7 + 5 / 6, "feet"),
  3243. weight: math.unit(325, "lb"),
  3244. name: "Front",
  3245. image: {
  3246. source: "./media/characters/asana/front.svg",
  3247. extra: 1133 / 1060,
  3248. bottom: 15.2 / 1148.6
  3249. }
  3250. },
  3251. back: {
  3252. height: math.unit(7 + 5 / 6, "feet"),
  3253. weight: math.unit(325, "lb"),
  3254. name: "Back",
  3255. image: {
  3256. source: "./media/characters/asana/back.svg",
  3257. extra: 1114 / 1043,
  3258. bottom: 5 / 1120
  3259. }
  3260. },
  3261. dressedDark: {
  3262. height: math.unit(7 + 5 / 6, "feet"),
  3263. weight: math.unit(325, "lb"),
  3264. name: "Dressed (Dark)",
  3265. image: {
  3266. source: "./media/characters/asana/dressed-dark.svg",
  3267. extra: 1133 / 1060,
  3268. bottom: 15.2 / 1148.6
  3269. }
  3270. },
  3271. dressedLight: {
  3272. height: math.unit(7 + 5 / 6, "feet"),
  3273. weight: math.unit(325, "lb"),
  3274. name: "Dressed (Light)",
  3275. image: {
  3276. source: "./media/characters/asana/dressed-light.svg",
  3277. extra: 1133 / 1060,
  3278. bottom: 15.2 / 1148.6
  3279. }
  3280. },
  3281. },
  3282. [
  3283. {
  3284. name: "Standard",
  3285. height: math.unit(7 + 5 / 6, "feet"),
  3286. default: true
  3287. },
  3288. {
  3289. name: "Large",
  3290. height: math.unit(10, "meters")
  3291. },
  3292. {
  3293. name: "Macro",
  3294. height: math.unit(2500, "meters")
  3295. },
  3296. {
  3297. name: "Megamacro",
  3298. height: math.unit(5e6, "meters")
  3299. },
  3300. {
  3301. name: "Examacro",
  3302. height: math.unit(5e12, "lightyears")
  3303. },
  3304. {
  3305. name: "Max Size",
  3306. height: math.unit(1e31, "lightyears")
  3307. }
  3308. ]
  3309. ))
  3310. characterMakers.push(() => makeCharacter(
  3311. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3312. {
  3313. front: {
  3314. height: math.unit(2, "meter"),
  3315. weight: math.unit(60, "kg"),
  3316. name: "Front",
  3317. image: {
  3318. source: "./media/characters/ebony/front.svg",
  3319. bottom: 0.03,
  3320. extra: 1045 / 810 + 0.03
  3321. }
  3322. },
  3323. side: {
  3324. height: math.unit(2, "meter"),
  3325. weight: math.unit(60, "kg"),
  3326. name: "Side",
  3327. image: {
  3328. source: "./media/characters/ebony/side.svg",
  3329. bottom: 0.03,
  3330. extra: 1045 / 810 + 0.03
  3331. }
  3332. },
  3333. back: {
  3334. height: math.unit(2, "meter"),
  3335. weight: math.unit(60, "kg"),
  3336. name: "Back",
  3337. image: {
  3338. source: "./media/characters/ebony/back.svg",
  3339. bottom: 0.01,
  3340. extra: 1045 / 810 + 0.01
  3341. }
  3342. },
  3343. },
  3344. [
  3345. // TODO check why I did this lol
  3346. {
  3347. name: "Standard",
  3348. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3349. default: true
  3350. },
  3351. {
  3352. name: "Macro",
  3353. height: math.unit(200, "feet")
  3354. },
  3355. {
  3356. name: "Gigamacro",
  3357. height: math.unit(13000, "km")
  3358. }
  3359. ]
  3360. ))
  3361. characterMakers.push(() => makeCharacter(
  3362. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3363. {
  3364. front: {
  3365. height: math.unit(6, "feet"),
  3366. weight: math.unit(175, "lb"),
  3367. name: "Front",
  3368. image: {
  3369. source: "./media/characters/mountain/front.svg",
  3370. extra: 972 / 955,
  3371. bottom: 64 / 1036.6
  3372. }
  3373. },
  3374. back: {
  3375. height: math.unit(6, "feet"),
  3376. weight: math.unit(175, "lb"),
  3377. name: "Back",
  3378. image: {
  3379. source: "./media/characters/mountain/back.svg",
  3380. extra: 970 / 950,
  3381. bottom: 28.25 / 999
  3382. }
  3383. },
  3384. },
  3385. [
  3386. {
  3387. name: "Large",
  3388. height: math.unit(20, "meters")
  3389. },
  3390. {
  3391. name: "Macro",
  3392. height: math.unit(300, "meters")
  3393. },
  3394. {
  3395. name: "Gigamacro",
  3396. height: math.unit(10000, "km"),
  3397. default: true
  3398. },
  3399. {
  3400. name: "Examacro",
  3401. height: math.unit(10e9, "lightyears")
  3402. }
  3403. ]
  3404. ))
  3405. characterMakers.push(() => makeCharacter(
  3406. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3407. {
  3408. front: {
  3409. height: math.unit(8, "feet"),
  3410. weight: math.unit(500, "lb"),
  3411. name: "Front",
  3412. image: {
  3413. source: "./media/characters/rick/front.svg"
  3414. }
  3415. }
  3416. },
  3417. [
  3418. {
  3419. name: "Normal",
  3420. height: math.unit(8, "feet"),
  3421. default: true
  3422. },
  3423. {
  3424. name: "Macro",
  3425. height: math.unit(5, "km")
  3426. }
  3427. ]
  3428. ))
  3429. characterMakers.push(() => makeCharacter(
  3430. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3431. {
  3432. front: {
  3433. height: math.unit(8, "feet"),
  3434. weight: math.unit(120, "lb"),
  3435. name: "Front",
  3436. image: {
  3437. source: "./media/characters/ona/front.svg"
  3438. }
  3439. },
  3440. frontAlt: {
  3441. height: math.unit(8, "feet"),
  3442. weight: math.unit(120, "lb"),
  3443. name: "Front (Alt)",
  3444. image: {
  3445. source: "./media/characters/ona/front-alt.svg"
  3446. }
  3447. },
  3448. back: {
  3449. height: math.unit(8, "feet"),
  3450. weight: math.unit(120, "lb"),
  3451. name: "Back",
  3452. image: {
  3453. source: "./media/characters/ona/back.svg"
  3454. }
  3455. },
  3456. foot: {
  3457. height: math.unit(1.1, "feet"),
  3458. name: "Foot",
  3459. image: {
  3460. source: "./media/characters/ona/foot.svg"
  3461. }
  3462. }
  3463. },
  3464. [
  3465. {
  3466. name: "Megamacro",
  3467. height: math.unit(70, "km"),
  3468. default: true
  3469. },
  3470. {
  3471. name: "Gigamacro",
  3472. height: math.unit(681818, "miles")
  3473. },
  3474. {
  3475. name: "Examacro",
  3476. height: math.unit(3800000, "lightyears")
  3477. },
  3478. ]
  3479. ))
  3480. characterMakers.push(() => makeCharacter(
  3481. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3482. {
  3483. front: {
  3484. height: math.unit(12, "feet"),
  3485. weight: math.unit(3000, "lb"),
  3486. name: "Front",
  3487. image: {
  3488. source: "./media/characters/mech/front.svg",
  3489. extra: 2900 / 2770,
  3490. bottom: 110 / 3010
  3491. }
  3492. },
  3493. back: {
  3494. height: math.unit(12, "feet"),
  3495. weight: math.unit(3000, "lb"),
  3496. name: "Back",
  3497. image: {
  3498. source: "./media/characters/mech/back.svg",
  3499. extra: 3011 / 2890,
  3500. bottom: 94 / 3105
  3501. }
  3502. },
  3503. maw: {
  3504. height: math.unit(3.07, "feet"),
  3505. name: "Maw",
  3506. image: {
  3507. source: "./media/characters/mech/maw.svg"
  3508. }
  3509. },
  3510. head: {
  3511. height: math.unit(2.82, "feet"),
  3512. name: "Head",
  3513. image: {
  3514. source: "./media/characters/mech/head.svg"
  3515. }
  3516. },
  3517. dick: {
  3518. height: math.unit(1.43, "feet"),
  3519. name: "Dick",
  3520. image: {
  3521. source: "./media/characters/mech/dick.svg"
  3522. }
  3523. },
  3524. },
  3525. [
  3526. {
  3527. name: "Normal",
  3528. height: math.unit(12, "feet")
  3529. },
  3530. {
  3531. name: "Macro",
  3532. height: math.unit(300, "feet"),
  3533. default: true
  3534. },
  3535. {
  3536. name: "Macro+",
  3537. height: math.unit(1500, "feet")
  3538. },
  3539. ]
  3540. ))
  3541. characterMakers.push(() => makeCharacter(
  3542. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3543. {
  3544. front: {
  3545. height: math.unit(1.3, "meter"),
  3546. weight: math.unit(30, "kg"),
  3547. name: "Front",
  3548. image: {
  3549. source: "./media/characters/gregory/front.svg",
  3550. }
  3551. }
  3552. },
  3553. [
  3554. {
  3555. name: "Normal",
  3556. height: math.unit(1.3, "meter"),
  3557. default: true
  3558. },
  3559. {
  3560. name: "Macro",
  3561. height: math.unit(20, "meter")
  3562. }
  3563. ]
  3564. ))
  3565. characterMakers.push(() => makeCharacter(
  3566. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3567. {
  3568. front: {
  3569. height: math.unit(2.8, "meter"),
  3570. weight: math.unit(200, "kg"),
  3571. name: "Front",
  3572. image: {
  3573. source: "./media/characters/elory/front.svg",
  3574. }
  3575. }
  3576. },
  3577. [
  3578. {
  3579. name: "Normal",
  3580. height: math.unit(2.8, "meter"),
  3581. default: true
  3582. },
  3583. {
  3584. name: "Macro",
  3585. height: math.unit(38, "meter")
  3586. }
  3587. ]
  3588. ))
  3589. characterMakers.push(() => makeCharacter(
  3590. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3591. {
  3592. front: {
  3593. height: math.unit(470, "feet"),
  3594. weight: math.unit(924, "tons"),
  3595. name: "Front",
  3596. image: {
  3597. source: "./media/characters/angelpatamon/front.svg",
  3598. }
  3599. }
  3600. },
  3601. [
  3602. {
  3603. name: "Normal",
  3604. height: math.unit(470, "feet"),
  3605. default: true
  3606. },
  3607. {
  3608. name: "Deity Size I",
  3609. height: math.unit(28651.2, "km")
  3610. },
  3611. {
  3612. name: "Deity Size II",
  3613. height: math.unit(171907.2, "km")
  3614. }
  3615. ]
  3616. ))
  3617. characterMakers.push(() => makeCharacter(
  3618. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3619. {
  3620. side: {
  3621. height: math.unit(7.2, "meter"),
  3622. weight: math.unit(8.2, "tons"),
  3623. name: "Side",
  3624. image: {
  3625. source: "./media/characters/cryae/side.svg",
  3626. extra: 3500 / 1500
  3627. }
  3628. }
  3629. },
  3630. [
  3631. {
  3632. name: "Normal",
  3633. height: math.unit(7.2, "meter"),
  3634. default: true
  3635. }
  3636. ]
  3637. ))
  3638. characterMakers.push(() => makeCharacter(
  3639. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3640. {
  3641. front: {
  3642. height: math.unit(6, "feet"),
  3643. weight: math.unit(175, "lb"),
  3644. name: "Front",
  3645. image: {
  3646. source: "./media/characters/xera/front.svg",
  3647. extra: 2377 / 1972,
  3648. bottom: 75.5 / 2452
  3649. }
  3650. },
  3651. side: {
  3652. height: math.unit(6, "feet"),
  3653. weight: math.unit(175, "lb"),
  3654. name: "Side",
  3655. image: {
  3656. source: "./media/characters/xera/side.svg",
  3657. extra: 2345 / 2019,
  3658. bottom: 39.7 / 2384
  3659. }
  3660. },
  3661. back: {
  3662. height: math.unit(6, "feet"),
  3663. weight: math.unit(175, "lb"),
  3664. name: "Back",
  3665. image: {
  3666. source: "./media/characters/xera/back.svg",
  3667. extra: 2095 / 1984,
  3668. bottom: 67 / 2166
  3669. }
  3670. },
  3671. },
  3672. [
  3673. {
  3674. name: "Small",
  3675. height: math.unit(10, "feet")
  3676. },
  3677. {
  3678. name: "Macro",
  3679. height: math.unit(500, "meters"),
  3680. default: true
  3681. },
  3682. {
  3683. name: "Macro+",
  3684. height: math.unit(10, "km")
  3685. },
  3686. {
  3687. name: "Gigamacro",
  3688. height: math.unit(25000, "km")
  3689. },
  3690. {
  3691. name: "Teramacro",
  3692. height: math.unit(3e6, "km")
  3693. }
  3694. ]
  3695. ))
  3696. characterMakers.push(() => makeCharacter(
  3697. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3698. {
  3699. front: {
  3700. height: math.unit(6, "feet"),
  3701. weight: math.unit(175, "lb"),
  3702. name: "Front",
  3703. image: {
  3704. source: "./media/characters/nebula/front.svg",
  3705. extra: 2566 / 2362,
  3706. bottom: 81 / 2644
  3707. }
  3708. }
  3709. },
  3710. [
  3711. {
  3712. name: "Small",
  3713. height: math.unit(4.5, "meters")
  3714. },
  3715. {
  3716. name: "Macro",
  3717. height: math.unit(1500, "meters"),
  3718. default: true
  3719. },
  3720. {
  3721. name: "Megamacro",
  3722. height: math.unit(150, "km")
  3723. },
  3724. {
  3725. name: "Gigamacro",
  3726. height: math.unit(27000, "km")
  3727. }
  3728. ]
  3729. ))
  3730. characterMakers.push(() => makeCharacter(
  3731. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3732. {
  3733. front: {
  3734. height: math.unit(6, "feet"),
  3735. weight: math.unit(225, "lb"),
  3736. name: "Front",
  3737. image: {
  3738. source: "./media/characters/abysgar/front.svg"
  3739. }
  3740. }
  3741. },
  3742. [
  3743. {
  3744. name: "Small",
  3745. height: math.unit(4.5, "meters")
  3746. },
  3747. {
  3748. name: "Macro",
  3749. height: math.unit(1250, "meters"),
  3750. default: true
  3751. },
  3752. {
  3753. name: "Megamacro",
  3754. height: math.unit(125, "km")
  3755. },
  3756. {
  3757. name: "Gigamacro",
  3758. height: math.unit(26000, "km")
  3759. }
  3760. ]
  3761. ))
  3762. characterMakers.push(() => makeCharacter(
  3763. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3764. {
  3765. front: {
  3766. height: math.unit(6, "feet"),
  3767. weight: math.unit(180, "lb"),
  3768. name: "Front",
  3769. image: {
  3770. source: "./media/characters/yakuz/front.svg"
  3771. }
  3772. }
  3773. },
  3774. [
  3775. {
  3776. name: "Small",
  3777. height: math.unit(5, "meters")
  3778. },
  3779. {
  3780. name: "Macro",
  3781. height: math.unit(1500, "meters"),
  3782. default: true
  3783. },
  3784. {
  3785. name: "Megamacro",
  3786. height: math.unit(200, "km")
  3787. },
  3788. {
  3789. name: "Gigamacro",
  3790. height: math.unit(100000, "km")
  3791. }
  3792. ]
  3793. ))
  3794. characterMakers.push(() => makeCharacter(
  3795. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3796. {
  3797. front: {
  3798. height: math.unit(6, "feet"),
  3799. weight: math.unit(175, "lb"),
  3800. name: "Front",
  3801. image: {
  3802. source: "./media/characters/mirova/front.svg",
  3803. extra: 3334 / 3071,
  3804. bottom: 42 / 3375.6
  3805. }
  3806. }
  3807. },
  3808. [
  3809. {
  3810. name: "Small",
  3811. height: math.unit(5, "meters")
  3812. },
  3813. {
  3814. name: "Macro",
  3815. height: math.unit(900, "meters"),
  3816. default: true
  3817. },
  3818. {
  3819. name: "Megamacro",
  3820. height: math.unit(135, "km")
  3821. },
  3822. {
  3823. name: "Gigamacro",
  3824. height: math.unit(20000, "km")
  3825. }
  3826. ]
  3827. ))
  3828. characterMakers.push(() => makeCharacter(
  3829. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3830. {
  3831. side: {
  3832. height: math.unit(28.35, "feet"),
  3833. weight: math.unit(99.75, "tons"),
  3834. name: "Side",
  3835. image: {
  3836. source: "./media/characters/asana-mech/side.svg",
  3837. extra: 923 / 699,
  3838. bottom: 50 / 975
  3839. }
  3840. },
  3841. chaingun: {
  3842. height: math.unit(7, "feet"),
  3843. weight: math.unit(2400, "lb"),
  3844. name: "Chaingun",
  3845. image: {
  3846. source: "./media/characters/asana-mech/chaingun.svg"
  3847. }
  3848. },
  3849. laser: {
  3850. height: math.unit(7.12, "feet"),
  3851. weight: math.unit(2000, "lb"),
  3852. name: "Laser",
  3853. image: {
  3854. source: "./media/characters/asana-mech/laser.svg"
  3855. }
  3856. },
  3857. },
  3858. [
  3859. {
  3860. name: "Normal",
  3861. height: math.unit(28.35, "feet"),
  3862. default: true
  3863. },
  3864. {
  3865. name: "Macro",
  3866. height: math.unit(2500, "feet")
  3867. },
  3868. {
  3869. name: "Megamacro",
  3870. height: math.unit(25, "miles")
  3871. },
  3872. {
  3873. name: "Examacro",
  3874. height: math.unit(6e8, "lightyears")
  3875. },
  3876. ]
  3877. ))
  3878. characterMakers.push(() => makeCharacter(
  3879. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3880. {
  3881. front: {
  3882. height: math.unit(5, "meters"),
  3883. weight: math.unit(1000, "kg"),
  3884. name: "Front",
  3885. image: {
  3886. source: "./media/characters/asche/front.svg",
  3887. extra: 1258 / 1190,
  3888. bottom: 47 / 1305
  3889. }
  3890. },
  3891. frontUnderwear: {
  3892. height: math.unit(5, "meters"),
  3893. weight: math.unit(1000, "kg"),
  3894. name: "Front (Underwear)",
  3895. image: {
  3896. source: "./media/characters/asche/front-underwear.svg",
  3897. extra: 1258 / 1190,
  3898. bottom: 47 / 1305
  3899. }
  3900. },
  3901. frontDressed: {
  3902. height: math.unit(5, "meters"),
  3903. weight: math.unit(1000, "kg"),
  3904. name: "Front (Dressed)",
  3905. image: {
  3906. source: "./media/characters/asche/front-dressed.svg",
  3907. extra: 1258 / 1190,
  3908. bottom: 47 / 1305
  3909. }
  3910. },
  3911. frontArmor: {
  3912. height: math.unit(5, "meters"),
  3913. weight: math.unit(1000, "kg"),
  3914. name: "Front (Armored)",
  3915. image: {
  3916. source: "./media/characters/asche/front-armored.svg",
  3917. extra: 1374 / 1308,
  3918. bottom: 23 / 1397
  3919. }
  3920. },
  3921. mp724: {
  3922. height: math.unit(0.96, "meters"),
  3923. weight: math.unit(38, "kg"),
  3924. name: "H&K MP724",
  3925. image: {
  3926. source: "./media/characters/asche/h&k-mp724.svg"
  3927. }
  3928. },
  3929. side: {
  3930. height: math.unit(5, "meters"),
  3931. weight: math.unit(1000, "kg"),
  3932. name: "Side",
  3933. image: {
  3934. source: "./media/characters/asche/side.svg",
  3935. extra: 1717 / 1609,
  3936. bottom: 0.005
  3937. }
  3938. },
  3939. back: {
  3940. height: math.unit(5, "meters"),
  3941. weight: math.unit(1000, "kg"),
  3942. name: "Back",
  3943. image: {
  3944. source: "./media/characters/asche/back.svg",
  3945. extra: 1570 / 1501
  3946. }
  3947. },
  3948. },
  3949. [
  3950. {
  3951. name: "DEFCON 5",
  3952. height: math.unit(5, "meters")
  3953. },
  3954. {
  3955. name: "DEFCON 4",
  3956. height: math.unit(500, "meters"),
  3957. default: true
  3958. },
  3959. {
  3960. name: "DEFCON 3",
  3961. height: math.unit(5, "km")
  3962. },
  3963. {
  3964. name: "DEFCON 2",
  3965. height: math.unit(500, "km")
  3966. },
  3967. {
  3968. name: "DEFCON 1",
  3969. height: math.unit(500000, "km")
  3970. },
  3971. {
  3972. name: "DEFCON 0",
  3973. height: math.unit(3, "gigaparsecs")
  3974. },
  3975. ]
  3976. ))
  3977. characterMakers.push(() => makeCharacter(
  3978. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3979. {
  3980. front: {
  3981. height: math.unit(2, "meters"),
  3982. weight: math.unit(76, "kg"),
  3983. name: "Front",
  3984. image: {
  3985. source: "./media/characters/gale/front.svg"
  3986. }
  3987. },
  3988. frontAlt1: {
  3989. height: math.unit(2, "meters"),
  3990. weight: math.unit(76, "kg"),
  3991. name: "Front (Alt 1)",
  3992. image: {
  3993. source: "./media/characters/gale/front-alt-1.svg"
  3994. }
  3995. },
  3996. frontAlt2: {
  3997. height: math.unit(2, "meters"),
  3998. weight: math.unit(76, "kg"),
  3999. name: "Front (Alt 2)",
  4000. image: {
  4001. source: "./media/characters/gale/front-alt-2.svg"
  4002. }
  4003. },
  4004. },
  4005. [
  4006. {
  4007. name: "Normal",
  4008. height: math.unit(7, "feet")
  4009. },
  4010. {
  4011. name: "Macro",
  4012. height: math.unit(150, "feet"),
  4013. default: true
  4014. },
  4015. {
  4016. name: "Macro+",
  4017. height: math.unit(300, "feet")
  4018. },
  4019. ]
  4020. ))
  4021. characterMakers.push(() => makeCharacter(
  4022. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4023. {
  4024. front: {
  4025. height: math.unit(2, "meters"),
  4026. weight: math.unit(76, "kg"),
  4027. name: "Front",
  4028. image: {
  4029. source: "./media/characters/draylen/front.svg"
  4030. }
  4031. }
  4032. },
  4033. [
  4034. {
  4035. name: "Macro",
  4036. height: math.unit(150, "feet"),
  4037. default: true
  4038. }
  4039. ]
  4040. ))
  4041. characterMakers.push(() => makeCharacter(
  4042. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4043. {
  4044. front: {
  4045. height: math.unit(7 + 9 / 12, "feet"),
  4046. weight: math.unit(379, "lbs"),
  4047. name: "Front",
  4048. image: {
  4049. source: "./media/characters/chez/front.svg"
  4050. }
  4051. },
  4052. side: {
  4053. height: math.unit(7 + 9 / 12, "feet"),
  4054. weight: math.unit(379, "lbs"),
  4055. name: "Side",
  4056. image: {
  4057. source: "./media/characters/chez/side.svg"
  4058. }
  4059. }
  4060. },
  4061. [
  4062. {
  4063. name: "Normal",
  4064. height: math.unit(7 + 9 / 12, "feet"),
  4065. default: true
  4066. },
  4067. {
  4068. name: "God King",
  4069. height: math.unit(9750000, "meters")
  4070. }
  4071. ]
  4072. ))
  4073. characterMakers.push(() => makeCharacter(
  4074. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4075. {
  4076. front: {
  4077. height: math.unit(6, "feet"),
  4078. weight: math.unit(275, "lbs"),
  4079. name: "Front",
  4080. image: {
  4081. source: "./media/characters/kaylum/front.svg",
  4082. bottom: 0.01,
  4083. extra: 1166 / 1031
  4084. }
  4085. },
  4086. frontWingless: {
  4087. height: math.unit(6, "feet"),
  4088. weight: math.unit(275, "lbs"),
  4089. name: "Front (Wingless)",
  4090. image: {
  4091. source: "./media/characters/kaylum/front-wingless.svg",
  4092. bottom: 0.01,
  4093. extra: 1117 / 1031
  4094. }
  4095. }
  4096. },
  4097. [
  4098. {
  4099. name: "Normal",
  4100. height: math.unit(3.05, "meters")
  4101. },
  4102. {
  4103. name: "Master",
  4104. height: math.unit(5.5, "meters")
  4105. },
  4106. {
  4107. name: "Rampage",
  4108. height: math.unit(19, "meters")
  4109. },
  4110. {
  4111. name: "Macro Lite",
  4112. height: math.unit(37, "meters")
  4113. },
  4114. {
  4115. name: "Hyper Predator",
  4116. height: math.unit(61, "meters")
  4117. },
  4118. {
  4119. name: "Macro",
  4120. height: math.unit(138, "meters"),
  4121. default: true
  4122. }
  4123. ]
  4124. ))
  4125. characterMakers.push(() => makeCharacter(
  4126. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4127. {
  4128. front: {
  4129. height: math.unit(6, "feet"),
  4130. weight: math.unit(150, "lbs"),
  4131. name: "Front",
  4132. image: {
  4133. source: "./media/characters/geta/front.svg"
  4134. }
  4135. }
  4136. },
  4137. [
  4138. {
  4139. name: "Micro",
  4140. height: math.unit(3, "inches"),
  4141. default: true
  4142. },
  4143. {
  4144. name: "Normal",
  4145. height: math.unit(5 + 5 / 12, "feet")
  4146. }
  4147. ]
  4148. ))
  4149. characterMakers.push(() => makeCharacter(
  4150. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4151. {
  4152. front: {
  4153. height: math.unit(6, "feet"),
  4154. weight: math.unit(300, "lbs"),
  4155. name: "Front",
  4156. image: {
  4157. source: "./media/characters/tyrnn/front.svg"
  4158. }
  4159. }
  4160. },
  4161. [
  4162. {
  4163. name: "Main Height",
  4164. height: math.unit(355, "feet"),
  4165. default: true
  4166. },
  4167. {
  4168. name: "Fave. Height",
  4169. height: math.unit(2400, "feet")
  4170. }
  4171. ]
  4172. ))
  4173. characterMakers.push(() => makeCharacter(
  4174. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4175. {
  4176. front: {
  4177. height: math.unit(6, "feet"),
  4178. weight: math.unit(300, "lbs"),
  4179. name: "Front",
  4180. image: {
  4181. source: "./media/characters/appledectomy/front.svg"
  4182. }
  4183. }
  4184. },
  4185. [
  4186. {
  4187. name: "Macro",
  4188. height: math.unit(2500, "feet")
  4189. },
  4190. {
  4191. name: "Megamacro",
  4192. height: math.unit(50, "miles"),
  4193. default: true
  4194. },
  4195. {
  4196. name: "Gigamacro",
  4197. height: math.unit(5000, "miles")
  4198. },
  4199. {
  4200. name: "Teramacro",
  4201. height: math.unit(250000, "miles")
  4202. },
  4203. ]
  4204. ))
  4205. characterMakers.push(() => makeCharacter(
  4206. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4207. {
  4208. front: {
  4209. height: math.unit(6, "feet"),
  4210. weight: math.unit(200, "lbs"),
  4211. name: "Front",
  4212. image: {
  4213. source: "./media/characters/vulpes/front.svg",
  4214. extra: 573 / 543,
  4215. bottom: 0.033
  4216. }
  4217. },
  4218. side: {
  4219. height: math.unit(6, "feet"),
  4220. weight: math.unit(200, "lbs"),
  4221. name: "Side",
  4222. image: {
  4223. source: "./media/characters/vulpes/side.svg",
  4224. extra: 577 / 549,
  4225. bottom: 11 / 588
  4226. }
  4227. },
  4228. back: {
  4229. height: math.unit(6, "feet"),
  4230. weight: math.unit(200, "lbs"),
  4231. name: "Back",
  4232. image: {
  4233. source: "./media/characters/vulpes/back.svg",
  4234. extra: 573 / 549,
  4235. bottom: 20 / 593
  4236. }
  4237. },
  4238. feet: {
  4239. height: math.unit(1.276, "feet"),
  4240. name: "Feet",
  4241. image: {
  4242. source: "./media/characters/vulpes/feet.svg"
  4243. }
  4244. },
  4245. maw: {
  4246. height: math.unit(1.18, "feet"),
  4247. name: "Maw",
  4248. image: {
  4249. source: "./media/characters/vulpes/maw.svg"
  4250. }
  4251. },
  4252. },
  4253. [
  4254. {
  4255. name: "Micro",
  4256. height: math.unit(2, "inches")
  4257. },
  4258. {
  4259. name: "Normal",
  4260. height: math.unit(6.3, "feet")
  4261. },
  4262. {
  4263. name: "Macro",
  4264. height: math.unit(850, "feet")
  4265. },
  4266. {
  4267. name: "Megamacro",
  4268. height: math.unit(7500, "feet"),
  4269. default: true
  4270. },
  4271. {
  4272. name: "Gigamacro",
  4273. height: math.unit(570000, "miles")
  4274. }
  4275. ]
  4276. ))
  4277. characterMakers.push(() => makeCharacter(
  4278. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4279. {
  4280. front: {
  4281. height: math.unit(6, "feet"),
  4282. weight: math.unit(210, "lbs"),
  4283. name: "Front",
  4284. image: {
  4285. source: "./media/characters/rain-fallen/front.svg"
  4286. }
  4287. },
  4288. side: {
  4289. height: math.unit(6, "feet"),
  4290. weight: math.unit(210, "lbs"),
  4291. name: "Side",
  4292. image: {
  4293. source: "./media/characters/rain-fallen/side.svg"
  4294. }
  4295. },
  4296. back: {
  4297. height: math.unit(6, "feet"),
  4298. weight: math.unit(210, "lbs"),
  4299. name: "Back",
  4300. image: {
  4301. source: "./media/characters/rain-fallen/back.svg"
  4302. }
  4303. },
  4304. feral: {
  4305. height: math.unit(9, "feet"),
  4306. weight: math.unit(700, "lbs"),
  4307. name: "Feral",
  4308. image: {
  4309. source: "./media/characters/rain-fallen/feral.svg"
  4310. }
  4311. },
  4312. },
  4313. [
  4314. {
  4315. name: "Meddling with Mortals",
  4316. height: math.unit(8 + 8/12, "feet")
  4317. },
  4318. {
  4319. name: "Normal",
  4320. height: math.unit(5, "meter")
  4321. },
  4322. {
  4323. name: "Macro",
  4324. height: math.unit(150, "meter"),
  4325. default: true
  4326. },
  4327. {
  4328. name: "Megamacro",
  4329. height: math.unit(278e6, "meter")
  4330. },
  4331. {
  4332. name: "Gigamacro",
  4333. height: math.unit(2e9, "meter")
  4334. },
  4335. {
  4336. name: "Teramacro",
  4337. height: math.unit(8e12, "meter")
  4338. },
  4339. {
  4340. name: "Devourer",
  4341. height: math.unit(14, "zettameters")
  4342. },
  4343. {
  4344. name: "Scarlet King",
  4345. height: math.unit(18, "yottameters")
  4346. },
  4347. {
  4348. name: "Void",
  4349. height: math.unit(6.66e66, "yottameters")
  4350. }
  4351. ]
  4352. ))
  4353. characterMakers.push(() => makeCharacter(
  4354. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4355. {
  4356. standing: {
  4357. height: math.unit(6, "feet"),
  4358. weight: math.unit(180, "lbs"),
  4359. name: "Standing",
  4360. image: {
  4361. source: "./media/characters/zaakira/standing.svg"
  4362. }
  4363. },
  4364. laying: {
  4365. height: math.unit(3, "feet"),
  4366. weight: math.unit(180, "lbs"),
  4367. name: "Laying",
  4368. image: {
  4369. source: "./media/characters/zaakira/laying.svg"
  4370. }
  4371. },
  4372. },
  4373. [
  4374. {
  4375. name: "Normal",
  4376. height: math.unit(12, "feet")
  4377. },
  4378. {
  4379. name: "Macro",
  4380. height: math.unit(279, "feet"),
  4381. default: true
  4382. }
  4383. ]
  4384. ))
  4385. characterMakers.push(() => makeCharacter(
  4386. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4387. {
  4388. femSfw: {
  4389. height: math.unit(8, "feet"),
  4390. weight: math.unit(350, "lb"),
  4391. name: "Fem",
  4392. image: {
  4393. source: "./media/characters/sigvald/fem-sfw.svg",
  4394. extra: 182 / 164,
  4395. bottom: 8.7 / 190.5
  4396. }
  4397. },
  4398. femNsfw: {
  4399. height: math.unit(8, "feet"),
  4400. weight: math.unit(350, "lb"),
  4401. name: "Fem (NSFW)",
  4402. image: {
  4403. source: "./media/characters/sigvald/fem-nsfw.svg",
  4404. extra: 182 / 164,
  4405. bottom: 8.7 / 190.5
  4406. }
  4407. },
  4408. maleNsfw: {
  4409. height: math.unit(8, "feet"),
  4410. weight: math.unit(350, "lb"),
  4411. name: "Male (NSFW)",
  4412. image: {
  4413. source: "./media/characters/sigvald/male-nsfw.svg",
  4414. extra: 182 / 164,
  4415. bottom: 8.7 / 190.5
  4416. }
  4417. },
  4418. hermNsfw: {
  4419. height: math.unit(8, "feet"),
  4420. weight: math.unit(350, "lb"),
  4421. name: "Herm (NSFW)",
  4422. image: {
  4423. source: "./media/characters/sigvald/herm-nsfw.svg",
  4424. extra: 182 / 164,
  4425. bottom: 8.7 / 190.5
  4426. }
  4427. },
  4428. dick: {
  4429. height: math.unit(2.36, "feet"),
  4430. name: "Dick",
  4431. image: {
  4432. source: "./media/characters/sigvald/dick.svg"
  4433. }
  4434. },
  4435. eye: {
  4436. height: math.unit(0.31, "feet"),
  4437. name: "Eye",
  4438. image: {
  4439. source: "./media/characters/sigvald/eye.svg"
  4440. }
  4441. },
  4442. mouth: {
  4443. height: math.unit(0.92, "feet"),
  4444. name: "Mouth",
  4445. image: {
  4446. source: "./media/characters/sigvald/mouth.svg"
  4447. }
  4448. },
  4449. paws: {
  4450. height: math.unit(2.2, "feet"),
  4451. name: "Paws",
  4452. image: {
  4453. source: "./media/characters/sigvald/paws.svg"
  4454. }
  4455. }
  4456. },
  4457. [
  4458. {
  4459. name: "Normal",
  4460. height: math.unit(8, "feet")
  4461. },
  4462. {
  4463. name: "Large",
  4464. height: math.unit(12, "feet")
  4465. },
  4466. {
  4467. name: "Larger",
  4468. height: math.unit(20, "feet")
  4469. },
  4470. {
  4471. name: "Macro",
  4472. height: math.unit(150, "feet")
  4473. },
  4474. {
  4475. name: "Macro+",
  4476. height: math.unit(200, "feet"),
  4477. default: true
  4478. },
  4479. ]
  4480. ))
  4481. characterMakers.push(() => makeCharacter(
  4482. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4483. {
  4484. side: {
  4485. height: math.unit(12, "feet"),
  4486. weight: math.unit(2000, "kg"),
  4487. name: "Side",
  4488. image: {
  4489. source: "./media/characters/scott/side.svg",
  4490. extra: 754 / 724,
  4491. bottom: 0.069
  4492. }
  4493. },
  4494. upright: {
  4495. height: math.unit(12, "feet"),
  4496. weight: math.unit(2000, "kg"),
  4497. name: "Upright",
  4498. image: {
  4499. source: "./media/characters/scott/upright.svg",
  4500. extra: 3881 / 3722,
  4501. bottom: 0.05
  4502. }
  4503. },
  4504. },
  4505. [
  4506. {
  4507. name: "Normal",
  4508. height: math.unit(12, "feet"),
  4509. default: true
  4510. },
  4511. ]
  4512. ))
  4513. characterMakers.push(() => makeCharacter(
  4514. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4515. {
  4516. side: {
  4517. height: math.unit(8, "meters"),
  4518. weight: math.unit(84755, "lbs"),
  4519. name: "Side",
  4520. image: {
  4521. source: "./media/characters/tobias/side.svg",
  4522. extra: 1474 / 1096,
  4523. bottom: 38.9 / 1513.1235
  4524. }
  4525. },
  4526. },
  4527. [
  4528. {
  4529. name: "Normal",
  4530. height: math.unit(8, "meters"),
  4531. default: true
  4532. },
  4533. ]
  4534. ))
  4535. characterMakers.push(() => makeCharacter(
  4536. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4537. {
  4538. front: {
  4539. height: math.unit(5.5, "feet"),
  4540. weight: math.unit(400, "lbs"),
  4541. name: "Front",
  4542. image: {
  4543. source: "./media/characters/kieran/front.svg",
  4544. extra: 2694 / 2364,
  4545. bottom: 217 / 2908
  4546. }
  4547. },
  4548. side: {
  4549. height: math.unit(5.5, "feet"),
  4550. weight: math.unit(400, "lbs"),
  4551. name: "Side",
  4552. image: {
  4553. source: "./media/characters/kieran/side.svg",
  4554. extra: 875 / 777,
  4555. bottom: 84.6 / 959
  4556. }
  4557. },
  4558. },
  4559. [
  4560. {
  4561. name: "Normal",
  4562. height: math.unit(5.5, "feet"),
  4563. default: true
  4564. },
  4565. ]
  4566. ))
  4567. characterMakers.push(() => makeCharacter(
  4568. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4569. {
  4570. side: {
  4571. height: math.unit(2, "meters"),
  4572. weight: math.unit(70, "kg"),
  4573. name: "Side",
  4574. image: {
  4575. source: "./media/characters/sanya/side.svg",
  4576. bottom: 0.02,
  4577. extra: 1.02
  4578. }
  4579. },
  4580. },
  4581. [
  4582. {
  4583. name: "Small",
  4584. height: math.unit(2, "meters")
  4585. },
  4586. {
  4587. name: "Normal",
  4588. height: math.unit(3, "meters")
  4589. },
  4590. {
  4591. name: "Macro",
  4592. height: math.unit(16, "meters"),
  4593. default: true
  4594. },
  4595. ]
  4596. ))
  4597. characterMakers.push(() => makeCharacter(
  4598. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4599. {
  4600. front: {
  4601. height: math.unit(2, "meters"),
  4602. weight: math.unit(120, "kg"),
  4603. name: "Front",
  4604. image: {
  4605. source: "./media/characters/miranda/front.svg",
  4606. extra: 195 / 185,
  4607. bottom: 10.9 / 206.5
  4608. }
  4609. },
  4610. back: {
  4611. height: math.unit(2, "meters"),
  4612. weight: math.unit(120, "kg"),
  4613. name: "Back",
  4614. image: {
  4615. source: "./media/characters/miranda/back.svg",
  4616. extra: 201 / 193,
  4617. bottom: 2.3 / 203.7
  4618. }
  4619. },
  4620. },
  4621. [
  4622. {
  4623. name: "Normal",
  4624. height: math.unit(10, "feet"),
  4625. default: true
  4626. }
  4627. ]
  4628. ))
  4629. characterMakers.push(() => makeCharacter(
  4630. { name: "James", species: ["deer"], tags: ["anthro"] },
  4631. {
  4632. side: {
  4633. height: math.unit(2, "meters"),
  4634. weight: math.unit(100, "kg"),
  4635. name: "Front",
  4636. image: {
  4637. source: "./media/characters/james/front.svg",
  4638. extra: 10 / 8.5
  4639. }
  4640. },
  4641. },
  4642. [
  4643. {
  4644. name: "Normal",
  4645. height: math.unit(8.5, "feet"),
  4646. default: true
  4647. }
  4648. ]
  4649. ))
  4650. characterMakers.push(() => makeCharacter(
  4651. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4652. {
  4653. side: {
  4654. height: math.unit(9.5, "feet"),
  4655. weight: math.unit(2500, "lbs"),
  4656. name: "Side",
  4657. image: {
  4658. source: "./media/characters/heather/side.svg"
  4659. }
  4660. },
  4661. },
  4662. [
  4663. {
  4664. name: "Normal",
  4665. height: math.unit(9.5, "feet"),
  4666. default: true
  4667. }
  4668. ]
  4669. ))
  4670. characterMakers.push(() => makeCharacter(
  4671. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4672. {
  4673. side: {
  4674. height: math.unit(6.5, "feet"),
  4675. weight: math.unit(400, "lbs"),
  4676. name: "Side",
  4677. image: {
  4678. source: "./media/characters/lukas/side.svg",
  4679. extra: 7.25 / 6.5
  4680. }
  4681. },
  4682. },
  4683. [
  4684. {
  4685. name: "Normal",
  4686. height: math.unit(6.5, "feet"),
  4687. default: true
  4688. }
  4689. ]
  4690. ))
  4691. characterMakers.push(() => makeCharacter(
  4692. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4693. {
  4694. side: {
  4695. height: math.unit(5, "feet"),
  4696. weight: math.unit(3000, "lbs"),
  4697. name: "Side",
  4698. image: {
  4699. source: "./media/characters/louise/side.svg"
  4700. }
  4701. },
  4702. },
  4703. [
  4704. {
  4705. name: "Normal",
  4706. height: math.unit(5, "feet"),
  4707. default: true
  4708. }
  4709. ]
  4710. ))
  4711. characterMakers.push(() => makeCharacter(
  4712. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4713. {
  4714. side: {
  4715. height: math.unit(6, "feet"),
  4716. weight: math.unit(150, "lbs"),
  4717. name: "Side",
  4718. image: {
  4719. source: "./media/characters/ramona/side.svg"
  4720. }
  4721. },
  4722. },
  4723. [
  4724. {
  4725. name: "Normal",
  4726. height: math.unit(5.3, "meters"),
  4727. default: true
  4728. },
  4729. {
  4730. name: "Macro",
  4731. height: math.unit(20, "stories")
  4732. },
  4733. {
  4734. name: "Macro+",
  4735. height: math.unit(50, "stories")
  4736. },
  4737. ]
  4738. ))
  4739. characterMakers.push(() => makeCharacter(
  4740. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4741. {
  4742. standing: {
  4743. height: math.unit(5.75, "feet"),
  4744. weight: math.unit(160, "lbs"),
  4745. name: "Standing",
  4746. image: {
  4747. source: "./media/characters/deerpuff/standing.svg",
  4748. extra: 682 / 624
  4749. }
  4750. },
  4751. sitting: {
  4752. height: math.unit(5.75 / 1.79, "feet"),
  4753. weight: math.unit(160, "lbs"),
  4754. name: "Sitting",
  4755. image: {
  4756. source: "./media/characters/deerpuff/sitting.svg",
  4757. bottom: 44 / 400,
  4758. extra: 1
  4759. }
  4760. },
  4761. taurLaying: {
  4762. height: math.unit(6, "feet"),
  4763. weight: math.unit(400, "lbs"),
  4764. name: "Taur (Laying)",
  4765. image: {
  4766. source: "./media/characters/deerpuff/taur-laying.svg"
  4767. }
  4768. },
  4769. },
  4770. [
  4771. {
  4772. name: "Puffball",
  4773. height: math.unit(6, "inches")
  4774. },
  4775. {
  4776. name: "Normalpuff",
  4777. height: math.unit(5.75, "feet")
  4778. },
  4779. {
  4780. name: "Macropuff",
  4781. height: math.unit(1500, "feet"),
  4782. default: true
  4783. },
  4784. {
  4785. name: "Megapuff",
  4786. height: math.unit(500, "miles")
  4787. },
  4788. {
  4789. name: "Gigapuff",
  4790. height: math.unit(250000, "miles")
  4791. },
  4792. {
  4793. name: "Omegapuff",
  4794. height: math.unit(1000, "lightyears")
  4795. },
  4796. ]
  4797. ))
  4798. characterMakers.push(() => makeCharacter(
  4799. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4800. {
  4801. stomping: {
  4802. height: math.unit(6, "feet"),
  4803. weight: math.unit(170, "lbs"),
  4804. name: "Stomping",
  4805. image: {
  4806. source: "./media/characters/vivian/stomping.svg"
  4807. }
  4808. },
  4809. sitting: {
  4810. height: math.unit(6 / 1.75, "feet"),
  4811. weight: math.unit(170, "lbs"),
  4812. name: "Sitting",
  4813. image: {
  4814. source: "./media/characters/vivian/sitting.svg",
  4815. bottom: 1 / 6.4,
  4816. extra: 1,
  4817. }
  4818. },
  4819. },
  4820. [
  4821. {
  4822. name: "Normal",
  4823. height: math.unit(7, "feet"),
  4824. default: true
  4825. },
  4826. {
  4827. name: "Macro",
  4828. height: math.unit(10, "stories")
  4829. },
  4830. {
  4831. name: "Macro+",
  4832. height: math.unit(30, "stories")
  4833. },
  4834. {
  4835. name: "Megamacro",
  4836. height: math.unit(10, "miles")
  4837. },
  4838. {
  4839. name: "Megamacro+",
  4840. height: math.unit(2750000, "meters")
  4841. },
  4842. ]
  4843. ))
  4844. characterMakers.push(() => makeCharacter(
  4845. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4846. {
  4847. front: {
  4848. height: math.unit(6, "feet"),
  4849. weight: math.unit(160, "lbs"),
  4850. name: "Front",
  4851. image: {
  4852. source: "./media/characters/prince/front.svg",
  4853. extra: 3400 / 3000
  4854. }
  4855. },
  4856. jumping: {
  4857. height: math.unit(6, "feet"),
  4858. weight: math.unit(160, "lbs"),
  4859. name: "Jumping",
  4860. image: {
  4861. source: "./media/characters/prince/jump.svg",
  4862. extra: 2555 / 2134
  4863. }
  4864. },
  4865. },
  4866. [
  4867. {
  4868. name: "Normal",
  4869. height: math.unit(7.75, "feet"),
  4870. default: true
  4871. },
  4872. {
  4873. name: "Not cute",
  4874. height: math.unit(17, "feet")
  4875. },
  4876. {
  4877. name: "I said NOT",
  4878. height: math.unit(91, "feet")
  4879. },
  4880. {
  4881. name: "Please stop",
  4882. height: math.unit(560, "feet")
  4883. },
  4884. {
  4885. name: "What have you done",
  4886. height: math.unit(2200, "feet")
  4887. },
  4888. {
  4889. name: "Deer God",
  4890. height: math.unit(3.6, "miles")
  4891. },
  4892. ]
  4893. ))
  4894. characterMakers.push(() => makeCharacter(
  4895. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4896. {
  4897. standing: {
  4898. height: math.unit(6, "feet"),
  4899. weight: math.unit(300, "lbs"),
  4900. name: "Standing",
  4901. image: {
  4902. source: "./media/characters/psymon/standing.svg",
  4903. extra: 1888 / 1810,
  4904. bottom: 0.05
  4905. }
  4906. },
  4907. slithering: {
  4908. height: math.unit(6, "feet"),
  4909. weight: math.unit(300, "lbs"),
  4910. name: "Slithering",
  4911. image: {
  4912. source: "./media/characters/psymon/slithering.svg",
  4913. extra: 1330 / 1224
  4914. }
  4915. },
  4916. slitheringAlt: {
  4917. height: math.unit(6, "feet"),
  4918. weight: math.unit(300, "lbs"),
  4919. name: "Slithering (Alt)",
  4920. image: {
  4921. source: "./media/characters/psymon/slithering-alt.svg",
  4922. extra: 1330 / 1224
  4923. }
  4924. },
  4925. },
  4926. [
  4927. {
  4928. name: "Normal",
  4929. height: math.unit(11.25, "feet"),
  4930. default: true
  4931. },
  4932. {
  4933. name: "Large",
  4934. height: math.unit(27, "feet")
  4935. },
  4936. {
  4937. name: "Giant",
  4938. height: math.unit(87, "feet")
  4939. },
  4940. {
  4941. name: "Macro",
  4942. height: math.unit(365, "feet")
  4943. },
  4944. {
  4945. name: "Megamacro",
  4946. height: math.unit(3, "miles")
  4947. },
  4948. {
  4949. name: "World Serpent",
  4950. height: math.unit(8000, "miles")
  4951. },
  4952. ]
  4953. ))
  4954. characterMakers.push(() => makeCharacter(
  4955. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4956. {
  4957. front: {
  4958. height: math.unit(6, "feet"),
  4959. weight: math.unit(180, "lbs"),
  4960. name: "Front",
  4961. image: {
  4962. source: "./media/characters/daimos/front.svg",
  4963. extra: 4160 / 3897,
  4964. bottom: 0.021
  4965. }
  4966. }
  4967. },
  4968. [
  4969. {
  4970. name: "Normal",
  4971. height: math.unit(8, "feet"),
  4972. default: true
  4973. },
  4974. {
  4975. name: "Big Dog",
  4976. height: math.unit(22, "feet")
  4977. },
  4978. {
  4979. name: "Macro",
  4980. height: math.unit(127, "feet")
  4981. },
  4982. {
  4983. name: "Megamacro",
  4984. height: math.unit(3600, "feet")
  4985. },
  4986. ]
  4987. ))
  4988. characterMakers.push(() => makeCharacter(
  4989. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4990. {
  4991. side: {
  4992. height: math.unit(6, "feet"),
  4993. weight: math.unit(180, "lbs"),
  4994. name: "Side",
  4995. image: {
  4996. source: "./media/characters/blake/side.svg",
  4997. extra: 1212 / 1120,
  4998. bottom: 0.05
  4999. }
  5000. },
  5001. crouched: {
  5002. height: math.unit(6 * 0.57, "feet"),
  5003. weight: math.unit(180, "lbs"),
  5004. name: "Crouched",
  5005. image: {
  5006. source: "./media/characters/blake/crouched.svg",
  5007. extra: 840 / 587,
  5008. bottom: 0.04
  5009. }
  5010. },
  5011. bent: {
  5012. height: math.unit(6 * 0.75, "feet"),
  5013. weight: math.unit(180, "lbs"),
  5014. name: "Bent",
  5015. image: {
  5016. source: "./media/characters/blake/bent.svg",
  5017. extra: 592 / 544,
  5018. bottom: 0.035
  5019. }
  5020. },
  5021. },
  5022. [
  5023. {
  5024. name: "Normal",
  5025. height: math.unit(8 + 1 / 6, "feet"),
  5026. default: true
  5027. },
  5028. {
  5029. name: "Big Backside",
  5030. height: math.unit(37, "feet")
  5031. },
  5032. {
  5033. name: "Subway Shredder",
  5034. height: math.unit(72, "feet")
  5035. },
  5036. {
  5037. name: "City Carver",
  5038. height: math.unit(1675, "feet")
  5039. },
  5040. {
  5041. name: "Tectonic Tweaker",
  5042. height: math.unit(2300, "miles")
  5043. },
  5044. ]
  5045. ))
  5046. characterMakers.push(() => makeCharacter(
  5047. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5048. {
  5049. front: {
  5050. height: math.unit(6, "feet"),
  5051. weight: math.unit(180, "lbs"),
  5052. name: "Front",
  5053. image: {
  5054. source: "./media/characters/guisetto/front.svg",
  5055. extra: 856 / 817,
  5056. bottom: 0.06
  5057. }
  5058. },
  5059. airborne: {
  5060. height: math.unit(6, "feet"),
  5061. weight: math.unit(180, "lbs"),
  5062. name: "Airborne",
  5063. image: {
  5064. source: "./media/characters/guisetto/airborne.svg",
  5065. extra: 584 / 525
  5066. }
  5067. },
  5068. },
  5069. [
  5070. {
  5071. name: "Normal",
  5072. height: math.unit(10 + 11 / 12, "feet"),
  5073. default: true
  5074. },
  5075. {
  5076. name: "Large",
  5077. height: math.unit(35, "feet")
  5078. },
  5079. {
  5080. name: "Macro",
  5081. height: math.unit(475, "feet")
  5082. },
  5083. ]
  5084. ))
  5085. characterMakers.push(() => makeCharacter(
  5086. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5087. {
  5088. front: {
  5089. height: math.unit(6, "feet"),
  5090. weight: math.unit(180, "lbs"),
  5091. name: "Front",
  5092. image: {
  5093. source: "./media/characters/luxor/front.svg",
  5094. extra: 2940 / 2152
  5095. }
  5096. },
  5097. back: {
  5098. height: math.unit(6, "feet"),
  5099. weight: math.unit(180, "lbs"),
  5100. name: "Back",
  5101. image: {
  5102. source: "./media/characters/luxor/back.svg",
  5103. extra: 1083 / 960
  5104. }
  5105. },
  5106. },
  5107. [
  5108. {
  5109. name: "Normal",
  5110. height: math.unit(5 + 5 / 6, "feet"),
  5111. default: true
  5112. },
  5113. {
  5114. name: "Lamp",
  5115. height: math.unit(50, "feet")
  5116. },
  5117. {
  5118. name: "Lämp",
  5119. height: math.unit(300, "feet")
  5120. },
  5121. {
  5122. name: "The sun is a lamp",
  5123. height: math.unit(250000, "miles")
  5124. },
  5125. ]
  5126. ))
  5127. characterMakers.push(() => makeCharacter(
  5128. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5129. {
  5130. front: {
  5131. height: math.unit(6, "feet"),
  5132. weight: math.unit(50, "lbs"),
  5133. name: "Front",
  5134. image: {
  5135. source: "./media/characters/huoyan/front.svg"
  5136. }
  5137. },
  5138. side: {
  5139. height: math.unit(6, "feet"),
  5140. weight: math.unit(180, "lbs"),
  5141. name: "Side",
  5142. image: {
  5143. source: "./media/characters/huoyan/side.svg"
  5144. }
  5145. },
  5146. },
  5147. [
  5148. {
  5149. name: "Chef",
  5150. height: math.unit(9, "feet")
  5151. },
  5152. {
  5153. name: "Normal",
  5154. height: math.unit(65, "feet"),
  5155. default: true
  5156. },
  5157. {
  5158. name: "Macro",
  5159. height: math.unit(780, "feet")
  5160. },
  5161. {
  5162. name: "Flaming Mountain",
  5163. height: math.unit(4.8, "miles")
  5164. },
  5165. {
  5166. name: "Celestial",
  5167. height: math.unit(765000, "miles")
  5168. },
  5169. ]
  5170. ))
  5171. characterMakers.push(() => makeCharacter(
  5172. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5173. {
  5174. front: {
  5175. height: math.unit(5 + 3 / 4, "feet"),
  5176. weight: math.unit(120, "lbs"),
  5177. name: "Front",
  5178. image: {
  5179. source: "./media/characters/tails/front.svg"
  5180. }
  5181. }
  5182. },
  5183. [
  5184. {
  5185. name: "Normal",
  5186. height: math.unit(5 + 3 / 4, "feet"),
  5187. default: true
  5188. }
  5189. ]
  5190. ))
  5191. characterMakers.push(() => makeCharacter(
  5192. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5193. {
  5194. front: {
  5195. height: math.unit(4, "feet"),
  5196. weight: math.unit(50, "lbs"),
  5197. name: "Front",
  5198. image: {
  5199. source: "./media/characters/rainy/front.svg"
  5200. }
  5201. }
  5202. },
  5203. [
  5204. {
  5205. name: "Macro",
  5206. height: math.unit(800, "feet"),
  5207. default: true
  5208. }
  5209. ]
  5210. ))
  5211. characterMakers.push(() => makeCharacter(
  5212. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5213. {
  5214. front: {
  5215. height: math.unit(6, "feet"),
  5216. weight: math.unit(150, "lbs"),
  5217. name: "Front",
  5218. image: {
  5219. source: "./media/characters/rainier/front.svg"
  5220. }
  5221. }
  5222. },
  5223. [
  5224. {
  5225. name: "Micro",
  5226. height: math.unit(2, "mm"),
  5227. default: true
  5228. }
  5229. ]
  5230. ))
  5231. characterMakers.push(() => makeCharacter(
  5232. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5233. {
  5234. front: {
  5235. height: math.unit(6, "feet"),
  5236. weight: math.unit(180, "lbs"),
  5237. name: "Front",
  5238. image: {
  5239. source: "./media/characters/andy/front.svg"
  5240. }
  5241. }
  5242. },
  5243. [
  5244. {
  5245. name: "Normal",
  5246. height: math.unit(8, "feet"),
  5247. default: true
  5248. },
  5249. {
  5250. name: "Macro",
  5251. height: math.unit(1000, "feet")
  5252. },
  5253. {
  5254. name: "Megamacro",
  5255. height: math.unit(5, "miles")
  5256. },
  5257. {
  5258. name: "Gigamacro",
  5259. height: math.unit(5000, "miles")
  5260. },
  5261. ]
  5262. ))
  5263. characterMakers.push(() => makeCharacter(
  5264. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5265. {
  5266. front: {
  5267. height: math.unit(6, "feet"),
  5268. weight: math.unit(210, "lbs"),
  5269. name: "Front",
  5270. image: {
  5271. source: "./media/characters/cimmaron/front-sfw.svg",
  5272. extra: 701 / 676,
  5273. bottom: 0.046
  5274. }
  5275. },
  5276. back: {
  5277. height: math.unit(6, "feet"),
  5278. weight: math.unit(210, "lbs"),
  5279. name: "Back",
  5280. image: {
  5281. source: "./media/characters/cimmaron/back-sfw.svg",
  5282. extra: 701 / 676,
  5283. bottom: 0.046
  5284. }
  5285. },
  5286. frontNsfw: {
  5287. height: math.unit(6, "feet"),
  5288. weight: math.unit(210, "lbs"),
  5289. name: "Front (NSFW)",
  5290. image: {
  5291. source: "./media/characters/cimmaron/front-nsfw.svg",
  5292. extra: 701 / 676,
  5293. bottom: 0.046
  5294. }
  5295. },
  5296. backNsfw: {
  5297. height: math.unit(6, "feet"),
  5298. weight: math.unit(210, "lbs"),
  5299. name: "Back (NSFW)",
  5300. image: {
  5301. source: "./media/characters/cimmaron/back-nsfw.svg",
  5302. extra: 701 / 676,
  5303. bottom: 0.046
  5304. }
  5305. },
  5306. dick: {
  5307. height: math.unit(1.714, "feet"),
  5308. name: "Dick",
  5309. image: {
  5310. source: "./media/characters/cimmaron/dick.svg"
  5311. }
  5312. },
  5313. },
  5314. [
  5315. {
  5316. name: "Normal",
  5317. height: math.unit(6, "feet"),
  5318. default: true
  5319. },
  5320. {
  5321. name: "Macro Mayor",
  5322. height: math.unit(350, "meters")
  5323. },
  5324. ]
  5325. ))
  5326. characterMakers.push(() => makeCharacter(
  5327. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5328. {
  5329. front: {
  5330. height: math.unit(6, "feet"),
  5331. weight: math.unit(200, "lbs"),
  5332. name: "Front",
  5333. image: {
  5334. source: "./media/characters/akari/front.svg",
  5335. extra: 962 / 901,
  5336. bottom: 0.04
  5337. }
  5338. }
  5339. },
  5340. [
  5341. {
  5342. name: "Micro",
  5343. height: math.unit(5, "inches"),
  5344. default: true
  5345. },
  5346. {
  5347. name: "Normal",
  5348. height: math.unit(7, "feet")
  5349. },
  5350. ]
  5351. ))
  5352. characterMakers.push(() => makeCharacter(
  5353. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5354. {
  5355. front: {
  5356. height: math.unit(6, "feet"),
  5357. weight: math.unit(140, "lbs"),
  5358. name: "Front",
  5359. image: {
  5360. source: "./media/characters/cynosura/front.svg",
  5361. extra: 896 / 847
  5362. }
  5363. },
  5364. back: {
  5365. height: math.unit(6, "feet"),
  5366. weight: math.unit(140, "lbs"),
  5367. name: "Back",
  5368. image: {
  5369. source: "./media/characters/cynosura/back.svg",
  5370. extra: 1365 / 1250
  5371. }
  5372. },
  5373. },
  5374. [
  5375. {
  5376. name: "Micro",
  5377. height: math.unit(4, "inches")
  5378. },
  5379. {
  5380. name: "Normal",
  5381. height: math.unit(5.75, "feet"),
  5382. default: true
  5383. },
  5384. {
  5385. name: "Tall",
  5386. height: math.unit(10, "feet")
  5387. },
  5388. {
  5389. name: "Big",
  5390. height: math.unit(20, "feet")
  5391. },
  5392. {
  5393. name: "Macro",
  5394. height: math.unit(50, "feet")
  5395. },
  5396. ]
  5397. ))
  5398. characterMakers.push(() => makeCharacter(
  5399. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5400. {
  5401. front: {
  5402. height: math.unit(6, "feet"),
  5403. weight: math.unit(170, "lbs"),
  5404. name: "Front",
  5405. image: {
  5406. source: "./media/characters/gin/front.svg",
  5407. extra: 1.053,
  5408. bottom: 0.025
  5409. }
  5410. },
  5411. foot: {
  5412. height: math.unit(6 / 4.25, "feet"),
  5413. name: "Foot",
  5414. image: {
  5415. source: "./media/characters/gin/foot.svg"
  5416. }
  5417. },
  5418. sole: {
  5419. height: math.unit(6 / 4.40, "feet"),
  5420. name: "Sole",
  5421. image: {
  5422. source: "./media/characters/gin/sole.svg"
  5423. }
  5424. },
  5425. },
  5426. [
  5427. {
  5428. name: "Normal",
  5429. height: math.unit(13 + 2 / 12, "feet")
  5430. },
  5431. {
  5432. name: "Macro",
  5433. height: math.unit(1500, "feet")
  5434. },
  5435. {
  5436. name: "Megamacro",
  5437. height: math.unit(200, "miles"),
  5438. default: true
  5439. },
  5440. {
  5441. name: "Gigamacro",
  5442. height: math.unit(500, "megameters")
  5443. },
  5444. {
  5445. name: "Teramacro",
  5446. height: math.unit(15, "lightyears")
  5447. }
  5448. ]
  5449. ))
  5450. characterMakers.push(() => makeCharacter(
  5451. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5452. {
  5453. front: {
  5454. height: math.unit(6 + 1 / 6, "feet"),
  5455. weight: math.unit(178, "lbs"),
  5456. name: "Front",
  5457. image: {
  5458. source: "./media/characters/guy/front.svg"
  5459. }
  5460. }
  5461. },
  5462. [
  5463. {
  5464. name: "Normal",
  5465. height: math.unit(6 + 1 / 6, "feet"),
  5466. default: true
  5467. },
  5468. {
  5469. name: "Large",
  5470. height: math.unit(25 + 7 / 12, "feet")
  5471. },
  5472. {
  5473. name: "Macro",
  5474. height: math.unit(60 + 9 / 12, "feet")
  5475. },
  5476. {
  5477. name: "Macro+",
  5478. height: math.unit(246, "feet")
  5479. },
  5480. {
  5481. name: "Macro++",
  5482. height: math.unit(878, "feet")
  5483. }
  5484. ]
  5485. ))
  5486. characterMakers.push(() => makeCharacter(
  5487. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5488. {
  5489. front: {
  5490. height: math.unit(9, "feet"),
  5491. weight: math.unit(800, "lbs"),
  5492. name: "Front",
  5493. image: {
  5494. source: "./media/characters/tiberius/front.svg",
  5495. extra: 2295 / 2071
  5496. }
  5497. },
  5498. back: {
  5499. height: math.unit(9, "feet"),
  5500. weight: math.unit(800, "lbs"),
  5501. name: "Back",
  5502. image: {
  5503. source: "./media/characters/tiberius/back.svg",
  5504. extra: 2373 / 2160
  5505. }
  5506. },
  5507. },
  5508. [
  5509. {
  5510. name: "Normal",
  5511. height: math.unit(9, "feet"),
  5512. default: true
  5513. }
  5514. ]
  5515. ))
  5516. characterMakers.push(() => makeCharacter(
  5517. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5518. {
  5519. front: {
  5520. height: math.unit(6, "feet"),
  5521. weight: math.unit(600, "lbs"),
  5522. name: "Front",
  5523. image: {
  5524. source: "./media/characters/surgo/front.svg",
  5525. extra: 3591 / 2227
  5526. }
  5527. },
  5528. back: {
  5529. height: math.unit(6, "feet"),
  5530. weight: math.unit(600, "lbs"),
  5531. name: "Back",
  5532. image: {
  5533. source: "./media/characters/surgo/back.svg",
  5534. extra: 3557 / 2228
  5535. }
  5536. },
  5537. laying: {
  5538. height: math.unit(6 * 0.85, "feet"),
  5539. weight: math.unit(600, "lbs"),
  5540. name: "Laying",
  5541. image: {
  5542. source: "./media/characters/surgo/laying.svg"
  5543. }
  5544. },
  5545. },
  5546. [
  5547. {
  5548. name: "Normal",
  5549. height: math.unit(6, "feet"),
  5550. default: true
  5551. }
  5552. ]
  5553. ))
  5554. characterMakers.push(() => makeCharacter(
  5555. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5556. {
  5557. side: {
  5558. height: math.unit(6, "feet"),
  5559. weight: math.unit(150, "lbs"),
  5560. name: "Side",
  5561. image: {
  5562. source: "./media/characters/cibus/side.svg",
  5563. extra: 800 / 400
  5564. }
  5565. },
  5566. },
  5567. [
  5568. {
  5569. name: "Normal",
  5570. height: math.unit(6, "feet"),
  5571. default: true
  5572. }
  5573. ]
  5574. ))
  5575. characterMakers.push(() => makeCharacter(
  5576. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5577. {
  5578. front: {
  5579. height: math.unit(6, "feet"),
  5580. weight: math.unit(240, "lbs"),
  5581. name: "Front",
  5582. image: {
  5583. source: "./media/characters/nibbles/front.svg"
  5584. }
  5585. },
  5586. side: {
  5587. height: math.unit(6, "feet"),
  5588. weight: math.unit(240, "lbs"),
  5589. name: "Side",
  5590. image: {
  5591. source: "./media/characters/nibbles/side.svg"
  5592. }
  5593. },
  5594. },
  5595. [
  5596. {
  5597. name: "Normal",
  5598. height: math.unit(9, "feet"),
  5599. default: true
  5600. }
  5601. ]
  5602. ))
  5603. characterMakers.push(() => makeCharacter(
  5604. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5605. {
  5606. side: {
  5607. height: math.unit(5 + 1 / 6, "feet"),
  5608. weight: math.unit(130, "lbs"),
  5609. name: "Side",
  5610. image: {
  5611. source: "./media/characters/rikky/side.svg",
  5612. extra: 851 / 801
  5613. }
  5614. },
  5615. },
  5616. [
  5617. {
  5618. name: "Normal",
  5619. height: math.unit(5 + 1 / 6, "feet")
  5620. },
  5621. {
  5622. name: "Macro",
  5623. height: math.unit(152, "feet"),
  5624. default: true
  5625. },
  5626. {
  5627. name: "Megamacro",
  5628. height: math.unit(7, "miles")
  5629. }
  5630. ]
  5631. ))
  5632. characterMakers.push(() => makeCharacter(
  5633. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5634. {
  5635. side: {
  5636. height: math.unit(370, "cm"),
  5637. weight: math.unit(350, "lbs"),
  5638. name: "Side",
  5639. image: {
  5640. source: "./media/characters/malfressa/side.svg"
  5641. }
  5642. },
  5643. walking: {
  5644. height: math.unit(370, "cm"),
  5645. weight: math.unit(350, "lbs"),
  5646. name: "Walking",
  5647. image: {
  5648. source: "./media/characters/malfressa/walking.svg"
  5649. }
  5650. },
  5651. feral: {
  5652. height: math.unit(2500, "cm"),
  5653. weight: math.unit(100000, "lbs"),
  5654. name: "Feral",
  5655. image: {
  5656. source: "./media/characters/malfressa/feral.svg",
  5657. extra: 2108 / 837,
  5658. bottom: 0.02
  5659. }
  5660. },
  5661. },
  5662. [
  5663. {
  5664. name: "Normal",
  5665. height: math.unit(370, "cm")
  5666. },
  5667. {
  5668. name: "Macro",
  5669. height: math.unit(300, "meters"),
  5670. default: true
  5671. }
  5672. ]
  5673. ))
  5674. characterMakers.push(() => makeCharacter(
  5675. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5676. {
  5677. front: {
  5678. height: math.unit(6, "feet"),
  5679. weight: math.unit(60, "kg"),
  5680. name: "Front",
  5681. image: {
  5682. source: "./media/characters/jaro/front.svg"
  5683. }
  5684. },
  5685. back: {
  5686. height: math.unit(6, "feet"),
  5687. weight: math.unit(60, "kg"),
  5688. name: "Back",
  5689. image: {
  5690. source: "./media/characters/jaro/back.svg"
  5691. }
  5692. },
  5693. },
  5694. [
  5695. {
  5696. name: "Micro",
  5697. height: math.unit(7, "inches")
  5698. },
  5699. {
  5700. name: "Normal",
  5701. height: math.unit(5.5, "feet"),
  5702. default: true
  5703. },
  5704. {
  5705. name: "Minimacro",
  5706. height: math.unit(20, "feet")
  5707. },
  5708. {
  5709. name: "Macro",
  5710. height: math.unit(200, "meters")
  5711. }
  5712. ]
  5713. ))
  5714. characterMakers.push(() => makeCharacter(
  5715. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5716. {
  5717. front: {
  5718. height: math.unit(6, "feet"),
  5719. weight: math.unit(195, "lb"),
  5720. name: "Front",
  5721. image: {
  5722. source: "./media/characters/rogue/front.svg"
  5723. }
  5724. },
  5725. },
  5726. [
  5727. {
  5728. name: "Macro",
  5729. height: math.unit(90, "feet"),
  5730. default: true
  5731. },
  5732. ]
  5733. ))
  5734. characterMakers.push(() => makeCharacter(
  5735. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5736. {
  5737. front: {
  5738. height: math.unit(5 + 8 / 12, "feet"),
  5739. weight: math.unit(140, "lb"),
  5740. name: "Front",
  5741. image: {
  5742. source: "./media/characters/piper/front.svg",
  5743. extra: 3928 / 3681
  5744. }
  5745. },
  5746. },
  5747. [
  5748. {
  5749. name: "Micro",
  5750. height: math.unit(2, "inches")
  5751. },
  5752. {
  5753. name: "Normal",
  5754. height: math.unit(5 + 8 / 12, "feet")
  5755. },
  5756. {
  5757. name: "Macro",
  5758. height: math.unit(250, "feet"),
  5759. default: true
  5760. },
  5761. {
  5762. name: "Megamacro",
  5763. height: math.unit(7, "miles")
  5764. },
  5765. ]
  5766. ))
  5767. characterMakers.push(() => makeCharacter(
  5768. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5769. {
  5770. front: {
  5771. height: math.unit(6, "feet"),
  5772. weight: math.unit(220, "lb"),
  5773. name: "Front",
  5774. image: {
  5775. source: "./media/characters/gemini/front.svg"
  5776. }
  5777. },
  5778. back: {
  5779. height: math.unit(6, "feet"),
  5780. weight: math.unit(220, "lb"),
  5781. name: "Back",
  5782. image: {
  5783. source: "./media/characters/gemini/back.svg"
  5784. }
  5785. },
  5786. kneeling: {
  5787. height: math.unit(6 / 1.5, "feet"),
  5788. weight: math.unit(220, "lb"),
  5789. name: "Kneeling",
  5790. image: {
  5791. source: "./media/characters/gemini/kneeling.svg",
  5792. bottom: 0.02
  5793. }
  5794. },
  5795. },
  5796. [
  5797. {
  5798. name: "Macro",
  5799. height: math.unit(300, "meters"),
  5800. default: true
  5801. },
  5802. {
  5803. name: "Megamacro",
  5804. height: math.unit(6900, "meters")
  5805. },
  5806. ]
  5807. ))
  5808. characterMakers.push(() => makeCharacter(
  5809. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5810. {
  5811. anthro: {
  5812. height: math.unit(2.35, "meters"),
  5813. weight: math.unit(73, "kg"),
  5814. name: "Anthro",
  5815. image: {
  5816. source: "./media/characters/alicia/anthro.svg",
  5817. extra: 2571 / 2385,
  5818. bottom: 75 / 2648
  5819. }
  5820. },
  5821. paw: {
  5822. height: math.unit(1.32, "feet"),
  5823. name: "Paw",
  5824. image: {
  5825. source: "./media/characters/alicia/paw.svg"
  5826. }
  5827. },
  5828. feral: {
  5829. height: math.unit(1.69, "meters"),
  5830. weight: math.unit(73, "kg"),
  5831. name: "Feral",
  5832. image: {
  5833. source: "./media/characters/alicia/feral.svg",
  5834. extra: 2123 / 1715,
  5835. bottom: 222 / 2349
  5836. }
  5837. },
  5838. },
  5839. [
  5840. {
  5841. name: "Normal",
  5842. height: math.unit(2.35, "meters")
  5843. },
  5844. {
  5845. name: "Macro",
  5846. height: math.unit(60, "meters"),
  5847. default: true
  5848. },
  5849. {
  5850. name: "Megamacro",
  5851. height: math.unit(10000, "kilometers")
  5852. },
  5853. ]
  5854. ))
  5855. characterMakers.push(() => makeCharacter(
  5856. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5857. {
  5858. front: {
  5859. height: math.unit(7, "feet"),
  5860. weight: math.unit(250, "lbs"),
  5861. name: "Front",
  5862. image: {
  5863. source: "./media/characters/archy/front.svg"
  5864. }
  5865. }
  5866. },
  5867. [
  5868. {
  5869. name: "Micro",
  5870. height: math.unit(1, "inch")
  5871. },
  5872. {
  5873. name: "Shorty",
  5874. height: math.unit(5, "feet")
  5875. },
  5876. {
  5877. name: "Normal",
  5878. height: math.unit(7, "feet")
  5879. },
  5880. {
  5881. name: "Macro",
  5882. height: math.unit(600, "meters"),
  5883. default: true
  5884. },
  5885. {
  5886. name: "Megamacro",
  5887. height: math.unit(1, "mile")
  5888. },
  5889. ]
  5890. ))
  5891. characterMakers.push(() => makeCharacter(
  5892. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5893. {
  5894. front: {
  5895. height: math.unit(1.65, "meters"),
  5896. weight: math.unit(74, "kg"),
  5897. name: "Front",
  5898. image: {
  5899. source: "./media/characters/berri/front.svg",
  5900. extra: 857 / 837,
  5901. bottom: 18 / 877
  5902. }
  5903. },
  5904. bum: {
  5905. height: math.unit(1.46, "feet"),
  5906. name: "Bum",
  5907. image: {
  5908. source: "./media/characters/berri/bum.svg"
  5909. }
  5910. },
  5911. mouth: {
  5912. height: math.unit(0.44, "feet"),
  5913. name: "Mouth",
  5914. image: {
  5915. source: "./media/characters/berri/mouth.svg"
  5916. }
  5917. },
  5918. paw: {
  5919. height: math.unit(0.826, "feet"),
  5920. name: "Paw",
  5921. image: {
  5922. source: "./media/characters/berri/paw.svg"
  5923. }
  5924. },
  5925. },
  5926. [
  5927. {
  5928. name: "Normal",
  5929. height: math.unit(1.65, "meters")
  5930. },
  5931. {
  5932. name: "Macro",
  5933. height: math.unit(60, "m"),
  5934. default: true
  5935. },
  5936. {
  5937. name: "Megamacro",
  5938. height: math.unit(9.213, "km")
  5939. },
  5940. {
  5941. name: "Planet Eater",
  5942. height: math.unit(489, "megameters")
  5943. },
  5944. {
  5945. name: "Teramacro",
  5946. height: math.unit(2471635000000, "meters")
  5947. },
  5948. {
  5949. name: "Examacro",
  5950. height: math.unit(8.0624e+26, "meters")
  5951. }
  5952. ]
  5953. ))
  5954. characterMakers.push(() => makeCharacter(
  5955. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5956. {
  5957. front: {
  5958. height: math.unit(1.72, "meters"),
  5959. weight: math.unit(68, "kg"),
  5960. name: "Front",
  5961. image: {
  5962. source: "./media/characters/lexi/front.svg"
  5963. }
  5964. }
  5965. },
  5966. [
  5967. {
  5968. name: "Very Smol",
  5969. height: math.unit(10, "mm")
  5970. },
  5971. {
  5972. name: "Micro",
  5973. height: math.unit(6.8, "cm"),
  5974. default: true
  5975. },
  5976. {
  5977. name: "Normal",
  5978. height: math.unit(1.72, "m")
  5979. }
  5980. ]
  5981. ))
  5982. characterMakers.push(() => makeCharacter(
  5983. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5984. {
  5985. front: {
  5986. height: math.unit(1.69, "meters"),
  5987. weight: math.unit(68, "kg"),
  5988. name: "Front",
  5989. image: {
  5990. source: "./media/characters/martin/front.svg",
  5991. extra: 596 / 581
  5992. }
  5993. }
  5994. },
  5995. [
  5996. {
  5997. name: "Micro",
  5998. height: math.unit(6.85, "cm"),
  5999. default: true
  6000. },
  6001. {
  6002. name: "Normal",
  6003. height: math.unit(1.69, "m")
  6004. }
  6005. ]
  6006. ))
  6007. characterMakers.push(() => makeCharacter(
  6008. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6009. {
  6010. front: {
  6011. height: math.unit(1.69, "meters"),
  6012. weight: math.unit(68, "kg"),
  6013. name: "Front",
  6014. image: {
  6015. source: "./media/characters/juno/front.svg"
  6016. }
  6017. }
  6018. },
  6019. [
  6020. {
  6021. name: "Micro",
  6022. height: math.unit(7, "cm")
  6023. },
  6024. {
  6025. name: "Normal",
  6026. height: math.unit(1.89, "m")
  6027. },
  6028. {
  6029. name: "Macro",
  6030. height: math.unit(353, "meters"),
  6031. default: true
  6032. }
  6033. ]
  6034. ))
  6035. characterMakers.push(() => makeCharacter(
  6036. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6037. {
  6038. front: {
  6039. height: math.unit(1.93, "meters"),
  6040. weight: math.unit(83, "kg"),
  6041. name: "Front",
  6042. image: {
  6043. source: "./media/characters/samantha/front.svg"
  6044. }
  6045. },
  6046. frontClothed: {
  6047. height: math.unit(1.93, "meters"),
  6048. weight: math.unit(83, "kg"),
  6049. name: "Front (Clothed)",
  6050. image: {
  6051. source: "./media/characters/samantha/front-clothed.svg"
  6052. }
  6053. },
  6054. back: {
  6055. height: math.unit(1.93, "meters"),
  6056. weight: math.unit(83, "kg"),
  6057. name: "Back",
  6058. image: {
  6059. source: "./media/characters/samantha/back.svg"
  6060. }
  6061. },
  6062. },
  6063. [
  6064. {
  6065. name: "Normal",
  6066. height: math.unit(1.93, "m")
  6067. },
  6068. {
  6069. name: "Macro",
  6070. height: math.unit(74, "meters"),
  6071. default: true
  6072. },
  6073. {
  6074. name: "Macro+",
  6075. height: math.unit(223, "meters"),
  6076. },
  6077. {
  6078. name: "Megamacro",
  6079. height: math.unit(8381, "meters"),
  6080. },
  6081. {
  6082. name: "Megamacro+",
  6083. height: math.unit(12000, "kilometers")
  6084. },
  6085. ]
  6086. ))
  6087. characterMakers.push(() => makeCharacter(
  6088. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6089. {
  6090. front: {
  6091. height: math.unit(1.92, "meters"),
  6092. weight: math.unit(80, "kg"),
  6093. name: "Front",
  6094. image: {
  6095. source: "./media/characters/dr-clay/front.svg"
  6096. }
  6097. },
  6098. frontClothed: {
  6099. height: math.unit(1.92, "meters"),
  6100. weight: math.unit(80, "kg"),
  6101. name: "Front (Clothed)",
  6102. image: {
  6103. source: "./media/characters/dr-clay/front-clothed.svg"
  6104. }
  6105. }
  6106. },
  6107. [
  6108. {
  6109. name: "Normal",
  6110. height: math.unit(1.92, "m")
  6111. },
  6112. {
  6113. name: "Macro",
  6114. height: math.unit(214, "meters"),
  6115. default: true
  6116. },
  6117. {
  6118. name: "Macro+",
  6119. height: math.unit(12.237, "meters"),
  6120. },
  6121. {
  6122. name: "Megamacro",
  6123. height: math.unit(557, "megameters"),
  6124. },
  6125. {
  6126. name: "Unimaginable",
  6127. height: math.unit(120e9, "lightyears")
  6128. },
  6129. ]
  6130. ))
  6131. characterMakers.push(() => makeCharacter(
  6132. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6133. {
  6134. front: {
  6135. height: math.unit(2, "meters"),
  6136. weight: math.unit(80, "kg"),
  6137. name: "Front",
  6138. image: {
  6139. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6140. }
  6141. }
  6142. },
  6143. [
  6144. {
  6145. name: "Teramacro",
  6146. height: math.unit(500000, "lightyears"),
  6147. default: true
  6148. },
  6149. ]
  6150. ))
  6151. characterMakers.push(() => makeCharacter(
  6152. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6153. {
  6154. front: {
  6155. height: math.unit(2, "meters"),
  6156. weight: math.unit(150, "kg"),
  6157. name: "Front",
  6158. image: {
  6159. source: "./media/characters/vemus/front.svg",
  6160. extra: 2384 / 2084,
  6161. bottom: 0.0123
  6162. }
  6163. }
  6164. },
  6165. [
  6166. {
  6167. name: "Normal",
  6168. height: math.unit(3.75, "meters"),
  6169. default: true
  6170. },
  6171. {
  6172. name: "Big",
  6173. height: math.unit(8, "meters")
  6174. },
  6175. {
  6176. name: "Macro",
  6177. height: math.unit(100, "meters")
  6178. },
  6179. {
  6180. name: "Macro+",
  6181. height: math.unit(1500, "meters")
  6182. },
  6183. {
  6184. name: "Stellar",
  6185. height: math.unit(14e8, "meters")
  6186. },
  6187. ]
  6188. ))
  6189. characterMakers.push(() => makeCharacter(
  6190. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6191. {
  6192. front: {
  6193. height: math.unit(2, "meters"),
  6194. weight: math.unit(70, "kg"),
  6195. name: "Front",
  6196. image: {
  6197. source: "./media/characters/beherit/front.svg",
  6198. extra: 1408 / 1242
  6199. }
  6200. }
  6201. },
  6202. [
  6203. {
  6204. name: "Normal",
  6205. height: math.unit(6, "feet")
  6206. },
  6207. {
  6208. name: "Lorg",
  6209. height: math.unit(25, "feet"),
  6210. default: true
  6211. },
  6212. {
  6213. name: "Lorger",
  6214. height: math.unit(75, "feet")
  6215. },
  6216. {
  6217. name: "Macro",
  6218. height: math.unit(200, "meters")
  6219. },
  6220. ]
  6221. ))
  6222. characterMakers.push(() => makeCharacter(
  6223. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6224. {
  6225. front: {
  6226. height: math.unit(2, "meters"),
  6227. weight: math.unit(150, "kg"),
  6228. name: "Front",
  6229. image: {
  6230. source: "./media/characters/everett/front.svg",
  6231. extra: 2038 / 1737,
  6232. bottom: 0.03
  6233. }
  6234. },
  6235. paw: {
  6236. height: math.unit(2 / 3.6, "meters"),
  6237. name: "Paw",
  6238. image: {
  6239. source: "./media/characters/everett/paw.svg"
  6240. }
  6241. },
  6242. },
  6243. [
  6244. {
  6245. name: "Normal",
  6246. height: math.unit(15, "feet"),
  6247. default: true
  6248. },
  6249. {
  6250. name: "Lorg",
  6251. height: math.unit(70, "feet"),
  6252. default: true
  6253. },
  6254. {
  6255. name: "Lorger",
  6256. height: math.unit(250, "feet")
  6257. },
  6258. {
  6259. name: "Macro",
  6260. height: math.unit(500, "meters")
  6261. },
  6262. ]
  6263. ))
  6264. characterMakers.push(() => makeCharacter(
  6265. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6266. {
  6267. front: {
  6268. height: math.unit(2, "meters"),
  6269. weight: math.unit(86, "kg"),
  6270. name: "Front",
  6271. image: {
  6272. source: "./media/characters/rose/front.svg",
  6273. extra: 350/335,
  6274. bottom: 10/360
  6275. }
  6276. },
  6277. frontAlt: {
  6278. height: math.unit(1.6, "meters"),
  6279. weight: math.unit(86, "kg"),
  6280. name: "Front (Alt)",
  6281. image: {
  6282. source: "./media/characters/rose/front-alt.svg",
  6283. extra: 299/283,
  6284. bottom: 3/302
  6285. }
  6286. },
  6287. plush: {
  6288. height: math.unit(2, "meters"),
  6289. weight: math.unit(86/3, "kg"),
  6290. name: "Plush",
  6291. image: {
  6292. source: "./media/characters/rose/plush.svg",
  6293. extra: 361/337,
  6294. bottom: 11/372
  6295. }
  6296. },
  6297. },
  6298. [
  6299. {
  6300. name: "Mini-Micro",
  6301. height: math.unit(1, "cm")
  6302. },
  6303. {
  6304. name: "Micro",
  6305. height: math.unit(3.5, "inches"),
  6306. default: true
  6307. },
  6308. {
  6309. name: "Normal",
  6310. height: math.unit(6 + 1 / 6, "feet")
  6311. },
  6312. {
  6313. name: "Mini-Macro",
  6314. height: math.unit(9 + 10 / 12, "feet")
  6315. },
  6316. ]
  6317. ))
  6318. characterMakers.push(() => makeCharacter(
  6319. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6320. {
  6321. front: {
  6322. height: math.unit(2, "meters"),
  6323. weight: math.unit(350, "lbs"),
  6324. name: "Front",
  6325. image: {
  6326. source: "./media/characters/regal/front.svg"
  6327. }
  6328. },
  6329. back: {
  6330. height: math.unit(2, "meters"),
  6331. weight: math.unit(350, "lbs"),
  6332. name: "Back",
  6333. image: {
  6334. source: "./media/characters/regal/back.svg"
  6335. }
  6336. },
  6337. },
  6338. [
  6339. {
  6340. name: "Macro",
  6341. height: math.unit(350, "feet"),
  6342. default: true
  6343. }
  6344. ]
  6345. ))
  6346. characterMakers.push(() => makeCharacter(
  6347. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6348. {
  6349. front: {
  6350. height: math.unit(4 + 11 / 12, "feet"),
  6351. weight: math.unit(100, "lbs"),
  6352. name: "Front",
  6353. image: {
  6354. source: "./media/characters/opal/front.svg"
  6355. }
  6356. },
  6357. frontAlt: {
  6358. height: math.unit(4 + 11 / 12, "feet"),
  6359. weight: math.unit(100, "lbs"),
  6360. name: "Front (Alt)",
  6361. image: {
  6362. source: "./media/characters/opal/front-alt.svg"
  6363. }
  6364. },
  6365. },
  6366. [
  6367. {
  6368. name: "Small",
  6369. height: math.unit(4 + 11 / 12, "feet")
  6370. },
  6371. {
  6372. name: "Normal",
  6373. height: math.unit(20, "feet"),
  6374. default: true
  6375. },
  6376. {
  6377. name: "Macro",
  6378. height: math.unit(120, "feet")
  6379. },
  6380. {
  6381. name: "Megamacro",
  6382. height: math.unit(80, "miles")
  6383. },
  6384. {
  6385. name: "True Size",
  6386. height: math.unit(100000, "lightyears")
  6387. },
  6388. ]
  6389. ))
  6390. characterMakers.push(() => makeCharacter(
  6391. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6392. {
  6393. front: {
  6394. height: math.unit(6, "feet"),
  6395. weight: math.unit(200, "lbs"),
  6396. name: "Front",
  6397. image: {
  6398. source: "./media/characters/vector-wuff/front.svg"
  6399. }
  6400. }
  6401. },
  6402. [
  6403. {
  6404. name: "Normal",
  6405. height: math.unit(2.8, "meters")
  6406. },
  6407. {
  6408. name: "Macro",
  6409. height: math.unit(450, "meters"),
  6410. default: true
  6411. },
  6412. {
  6413. name: "Megamacro",
  6414. height: math.unit(15, "kilometers")
  6415. }
  6416. ]
  6417. ))
  6418. characterMakers.push(() => makeCharacter(
  6419. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6420. {
  6421. front: {
  6422. height: math.unit(6, "feet"),
  6423. weight: math.unit(256, "lbs"),
  6424. name: "Front",
  6425. image: {
  6426. source: "./media/characters/dannik/front.svg"
  6427. }
  6428. }
  6429. },
  6430. [
  6431. {
  6432. name: "Macro",
  6433. height: math.unit(69.57, "meters"),
  6434. default: true
  6435. },
  6436. ]
  6437. ))
  6438. characterMakers.push(() => makeCharacter(
  6439. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6440. {
  6441. front: {
  6442. height: math.unit(6, "feet"),
  6443. weight: math.unit(120, "lbs"),
  6444. name: "Front",
  6445. image: {
  6446. source: "./media/characters/azura-saharah/front.svg"
  6447. }
  6448. },
  6449. back: {
  6450. height: math.unit(6, "feet"),
  6451. weight: math.unit(120, "lbs"),
  6452. name: "Back",
  6453. image: {
  6454. source: "./media/characters/azura-saharah/back.svg"
  6455. }
  6456. },
  6457. },
  6458. [
  6459. {
  6460. name: "Macro",
  6461. height: math.unit(100, "feet"),
  6462. default: true
  6463. },
  6464. ]
  6465. ))
  6466. characterMakers.push(() => makeCharacter(
  6467. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6468. {
  6469. side: {
  6470. height: math.unit(5 + 4 / 12, "feet"),
  6471. weight: math.unit(163, "lbs"),
  6472. name: "Side",
  6473. image: {
  6474. source: "./media/characters/kennedy/side.svg"
  6475. }
  6476. }
  6477. },
  6478. [
  6479. {
  6480. name: "Standard Doggo",
  6481. height: math.unit(5 + 4 / 12, "feet")
  6482. },
  6483. {
  6484. name: "Big Doggo",
  6485. height: math.unit(25 + 3 / 12, "feet"),
  6486. default: true
  6487. },
  6488. ]
  6489. ))
  6490. characterMakers.push(() => makeCharacter(
  6491. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6492. {
  6493. front: {
  6494. height: math.unit(6, "feet"),
  6495. weight: math.unit(90, "lbs"),
  6496. name: "Front",
  6497. image: {
  6498. source: "./media/characters/odi-lunar/front.svg"
  6499. }
  6500. }
  6501. },
  6502. [
  6503. {
  6504. name: "Micro",
  6505. height: math.unit(3, "inches"),
  6506. default: true
  6507. },
  6508. {
  6509. name: "Normal",
  6510. height: math.unit(5.5, "feet")
  6511. }
  6512. ]
  6513. ))
  6514. characterMakers.push(() => makeCharacter(
  6515. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6516. {
  6517. back: {
  6518. height: math.unit(6, "feet"),
  6519. weight: math.unit(220, "lbs"),
  6520. name: "Back",
  6521. image: {
  6522. source: "./media/characters/mandake/back.svg"
  6523. }
  6524. }
  6525. },
  6526. [
  6527. {
  6528. name: "Normal",
  6529. height: math.unit(7, "feet"),
  6530. default: true
  6531. },
  6532. {
  6533. name: "Macro",
  6534. height: math.unit(78, "feet")
  6535. },
  6536. {
  6537. name: "Macro+",
  6538. height: math.unit(300, "meters")
  6539. },
  6540. {
  6541. name: "Macro++",
  6542. height: math.unit(2400, "feet")
  6543. },
  6544. {
  6545. name: "Megamacro",
  6546. height: math.unit(5167, "meters")
  6547. },
  6548. {
  6549. name: "Gigamacro",
  6550. height: math.unit(41769, "miles")
  6551. },
  6552. ]
  6553. ))
  6554. characterMakers.push(() => makeCharacter(
  6555. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6556. {
  6557. front: {
  6558. height: math.unit(6, "feet"),
  6559. weight: math.unit(120, "lbs"),
  6560. name: "Front",
  6561. image: {
  6562. source: "./media/characters/yozey/front.svg"
  6563. }
  6564. },
  6565. frontAlt: {
  6566. height: math.unit(6, "feet"),
  6567. weight: math.unit(120, "lbs"),
  6568. name: "Front (Alt)",
  6569. image: {
  6570. source: "./media/characters/yozey/front-alt.svg"
  6571. }
  6572. },
  6573. side: {
  6574. height: math.unit(6, "feet"),
  6575. weight: math.unit(120, "lbs"),
  6576. name: "Side",
  6577. image: {
  6578. source: "./media/characters/yozey/side.svg"
  6579. }
  6580. },
  6581. },
  6582. [
  6583. {
  6584. name: "Micro",
  6585. height: math.unit(3, "inches"),
  6586. default: true
  6587. },
  6588. {
  6589. name: "Normal",
  6590. height: math.unit(6, "feet")
  6591. }
  6592. ]
  6593. ))
  6594. characterMakers.push(() => makeCharacter(
  6595. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6596. {
  6597. front: {
  6598. height: math.unit(6, "feet"),
  6599. weight: math.unit(103, "lbs"),
  6600. name: "Front",
  6601. image: {
  6602. source: "./media/characters/valeska-voss/front.svg"
  6603. }
  6604. }
  6605. },
  6606. [
  6607. {
  6608. name: "Mini-Sized Sub",
  6609. height: math.unit(3.1, "inches")
  6610. },
  6611. {
  6612. name: "Mid-Sized Sub",
  6613. height: math.unit(6.2, "inches")
  6614. },
  6615. {
  6616. name: "Full-Sized Sub",
  6617. height: math.unit(9.3, "inches")
  6618. },
  6619. {
  6620. name: "Normal",
  6621. height: math.unit(5 + 2 / 12, "foot"),
  6622. default: true
  6623. },
  6624. ]
  6625. ))
  6626. characterMakers.push(() => makeCharacter(
  6627. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6628. {
  6629. front: {
  6630. height: math.unit(6, "feet"),
  6631. weight: math.unit(160, "lbs"),
  6632. name: "Front",
  6633. image: {
  6634. source: "./media/characters/gene-zeta/front.svg",
  6635. extra: 3006 / 2826,
  6636. bottom: 182 / 3188
  6637. }
  6638. }
  6639. },
  6640. [
  6641. {
  6642. name: "Micro",
  6643. height: math.unit(6, "inches")
  6644. },
  6645. {
  6646. name: "Normal",
  6647. height: math.unit(5 + 11 / 12, "foot"),
  6648. default: true
  6649. },
  6650. {
  6651. name: "Macro",
  6652. height: math.unit(140, "feet")
  6653. },
  6654. {
  6655. name: "Supercharged",
  6656. height: math.unit(2500, "feet")
  6657. },
  6658. ]
  6659. ))
  6660. characterMakers.push(() => makeCharacter(
  6661. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6662. {
  6663. front: {
  6664. height: math.unit(6, "feet"),
  6665. weight: math.unit(350, "lbs"),
  6666. name: "Front",
  6667. image: {
  6668. source: "./media/characters/razinox/front.svg",
  6669. extra: 1686 / 1548,
  6670. bottom: 28.2 / 1868
  6671. }
  6672. },
  6673. back: {
  6674. height: math.unit(6, "feet"),
  6675. weight: math.unit(350, "lbs"),
  6676. name: "Back",
  6677. image: {
  6678. source: "./media/characters/razinox/back.svg",
  6679. extra: 1660 / 1590,
  6680. bottom: 15 / 1665
  6681. }
  6682. },
  6683. },
  6684. [
  6685. {
  6686. name: "Normal",
  6687. height: math.unit(10 + 8 / 12, "foot")
  6688. },
  6689. {
  6690. name: "Minimacro",
  6691. height: math.unit(15, "foot")
  6692. },
  6693. {
  6694. name: "Macro",
  6695. height: math.unit(60, "foot"),
  6696. default: true
  6697. },
  6698. {
  6699. name: "Megamacro",
  6700. height: math.unit(5, "miles")
  6701. },
  6702. {
  6703. name: "Gigamacro",
  6704. height: math.unit(6000, "miles")
  6705. },
  6706. ]
  6707. ))
  6708. characterMakers.push(() => makeCharacter(
  6709. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6710. {
  6711. front: {
  6712. height: math.unit(6, "feet"),
  6713. weight: math.unit(150, "lbs"),
  6714. name: "Front",
  6715. image: {
  6716. source: "./media/characters/cobalt/front.svg"
  6717. }
  6718. }
  6719. },
  6720. [
  6721. {
  6722. name: "Normal",
  6723. height: math.unit(8 + 1 / 12, "foot")
  6724. },
  6725. {
  6726. name: "Macro",
  6727. height: math.unit(111, "foot"),
  6728. default: true
  6729. },
  6730. {
  6731. name: "Supracosmic",
  6732. height: math.unit(1e42, "feet")
  6733. },
  6734. ]
  6735. ))
  6736. characterMakers.push(() => makeCharacter(
  6737. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6738. {
  6739. front: {
  6740. height: math.unit(6, "feet"),
  6741. weight: math.unit(140, "lbs"),
  6742. name: "Front",
  6743. image: {
  6744. source: "./media/characters/amanda/front.svg"
  6745. }
  6746. }
  6747. },
  6748. [
  6749. {
  6750. name: "Micro",
  6751. height: math.unit(5, "inches"),
  6752. default: true
  6753. },
  6754. ]
  6755. ))
  6756. characterMakers.push(() => makeCharacter(
  6757. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6758. {
  6759. front: {
  6760. height: math.unit(2.75, "meters"),
  6761. weight: math.unit(1200, "lb"),
  6762. name: "Front",
  6763. image: {
  6764. source: "./media/characters/teal/front.svg",
  6765. extra: 2463 / 2320,
  6766. bottom: 166 / 2629
  6767. }
  6768. },
  6769. back: {
  6770. height: math.unit(2.75, "meters"),
  6771. weight: math.unit(1200, "lb"),
  6772. name: "Back",
  6773. image: {
  6774. source: "./media/characters/teal/back.svg",
  6775. extra: 2580 / 2489,
  6776. bottom: 151 / 2731
  6777. }
  6778. },
  6779. sitting: {
  6780. height: math.unit(1.9, "meters"),
  6781. weight: math.unit(1200, "lb"),
  6782. name: "Sitting",
  6783. image: {
  6784. source: "./media/characters/teal/sitting.svg",
  6785. extra: 623 / 590,
  6786. bottom: 121 / 744
  6787. }
  6788. },
  6789. standing: {
  6790. height: math.unit(2.75, "meters"),
  6791. weight: math.unit(1200, "lb"),
  6792. name: "Standing",
  6793. image: {
  6794. source: "./media/characters/teal/standing.svg",
  6795. extra: 923 / 893,
  6796. bottom: 60 / 983
  6797. }
  6798. },
  6799. stretching: {
  6800. height: math.unit(3.65, "meters"),
  6801. weight: math.unit(1200, "lb"),
  6802. name: "Stretching",
  6803. image: {
  6804. source: "./media/characters/teal/stretching.svg",
  6805. extra: 1276 / 1244,
  6806. bottom: 0 / 1276
  6807. }
  6808. },
  6809. legged: {
  6810. height: math.unit(1.3, "meters"),
  6811. weight: math.unit(100, "lb"),
  6812. name: "Legged",
  6813. image: {
  6814. source: "./media/characters/teal/legged.svg",
  6815. extra: 462 / 437,
  6816. bottom: 24 / 486
  6817. }
  6818. },
  6819. naga: {
  6820. height: math.unit(5.4, "meters"),
  6821. weight: math.unit(4000, "lb"),
  6822. name: "Naga",
  6823. image: {
  6824. source: "./media/characters/teal/naga.svg",
  6825. extra: 1902 / 1858,
  6826. bottom: 0 / 1902
  6827. }
  6828. },
  6829. hand: {
  6830. height: math.unit(0.52, "meters"),
  6831. name: "Hand",
  6832. image: {
  6833. source: "./media/characters/teal/hand.svg"
  6834. }
  6835. },
  6836. maw: {
  6837. height: math.unit(0.43, "meters"),
  6838. name: "Maw",
  6839. image: {
  6840. source: "./media/characters/teal/maw.svg"
  6841. }
  6842. },
  6843. slit: {
  6844. height: math.unit(0.25, "meters"),
  6845. name: "Slit",
  6846. image: {
  6847. source: "./media/characters/teal/slit.svg"
  6848. }
  6849. },
  6850. },
  6851. [
  6852. {
  6853. name: "Normal",
  6854. height: math.unit(2.75, "meters"),
  6855. default: true
  6856. },
  6857. {
  6858. name: "Macro",
  6859. height: math.unit(300, "feet")
  6860. },
  6861. {
  6862. name: "Macro+",
  6863. height: math.unit(2000, "feet")
  6864. },
  6865. ]
  6866. ))
  6867. characterMakers.push(() => makeCharacter(
  6868. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6869. {
  6870. frontCat: {
  6871. height: math.unit(6, "feet"),
  6872. weight: math.unit(180, "lbs"),
  6873. name: "Front (Cat)",
  6874. image: {
  6875. source: "./media/characters/ravin-amulet/front-cat.svg"
  6876. }
  6877. },
  6878. frontCatAlt: {
  6879. height: math.unit(6, "feet"),
  6880. weight: math.unit(180, "lbs"),
  6881. name: "Front (Alt, Cat)",
  6882. image: {
  6883. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6884. }
  6885. },
  6886. frontWerewolf: {
  6887. height: math.unit(6 * 1.2, "feet"),
  6888. weight: math.unit(225, "lbs"),
  6889. name: "Front (Werewolf)",
  6890. image: {
  6891. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6892. }
  6893. },
  6894. backWerewolf: {
  6895. height: math.unit(6 * 1.2, "feet"),
  6896. weight: math.unit(225, "lbs"),
  6897. name: "Back (Werewolf)",
  6898. image: {
  6899. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6900. }
  6901. },
  6902. },
  6903. [
  6904. {
  6905. name: "Nano",
  6906. height: math.unit(1, "micrometer")
  6907. },
  6908. {
  6909. name: "Micro",
  6910. height: math.unit(1, "inch")
  6911. },
  6912. {
  6913. name: "Normal",
  6914. height: math.unit(6, "feet"),
  6915. default: true
  6916. },
  6917. {
  6918. name: "Macro",
  6919. height: math.unit(60, "feet")
  6920. }
  6921. ]
  6922. ))
  6923. characterMakers.push(() => makeCharacter(
  6924. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6925. {
  6926. front: {
  6927. height: math.unit(6, "feet"),
  6928. weight: math.unit(165, "lbs"),
  6929. name: "Front",
  6930. image: {
  6931. source: "./media/characters/fluoresce/front.svg"
  6932. }
  6933. }
  6934. },
  6935. [
  6936. {
  6937. name: "Micro",
  6938. height: math.unit(6, "cm")
  6939. },
  6940. {
  6941. name: "Normal",
  6942. height: math.unit(5 + 7 / 12, "feet"),
  6943. default: true
  6944. },
  6945. {
  6946. name: "Macro",
  6947. height: math.unit(56, "feet")
  6948. },
  6949. {
  6950. name: "Megamacro",
  6951. height: math.unit(1.9, "miles")
  6952. },
  6953. ]
  6954. ))
  6955. characterMakers.push(() => makeCharacter(
  6956. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6957. {
  6958. front: {
  6959. height: math.unit(9 + 6 / 12, "feet"),
  6960. weight: math.unit(523, "lbs"),
  6961. name: "Side",
  6962. image: {
  6963. source: "./media/characters/aurora/side.svg"
  6964. }
  6965. }
  6966. },
  6967. [
  6968. {
  6969. name: "Normal",
  6970. height: math.unit(9 + 6 / 12, "feet")
  6971. },
  6972. {
  6973. name: "Macro",
  6974. height: math.unit(96, "feet"),
  6975. default: true
  6976. },
  6977. {
  6978. name: "Macro+",
  6979. height: math.unit(243, "feet")
  6980. },
  6981. ]
  6982. ))
  6983. characterMakers.push(() => makeCharacter(
  6984. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6985. {
  6986. front: {
  6987. height: math.unit(194, "cm"),
  6988. weight: math.unit(90, "kg"),
  6989. name: "Front",
  6990. image: {
  6991. source: "./media/characters/ranek/front.svg"
  6992. }
  6993. },
  6994. side: {
  6995. height: math.unit(194, "cm"),
  6996. weight: math.unit(90, "kg"),
  6997. name: "Side",
  6998. image: {
  6999. source: "./media/characters/ranek/side.svg"
  7000. }
  7001. },
  7002. back: {
  7003. height: math.unit(194, "cm"),
  7004. weight: math.unit(90, "kg"),
  7005. name: "Back",
  7006. image: {
  7007. source: "./media/characters/ranek/back.svg"
  7008. }
  7009. },
  7010. feral: {
  7011. height: math.unit(30, "cm"),
  7012. weight: math.unit(1.6, "lbs"),
  7013. name: "Feral",
  7014. image: {
  7015. source: "./media/characters/ranek/feral.svg"
  7016. }
  7017. },
  7018. },
  7019. [
  7020. {
  7021. name: "Normal",
  7022. height: math.unit(194, "cm"),
  7023. default: true
  7024. },
  7025. {
  7026. name: "Macro",
  7027. height: math.unit(100, "meters")
  7028. },
  7029. ]
  7030. ))
  7031. characterMakers.push(() => makeCharacter(
  7032. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7033. {
  7034. front: {
  7035. height: math.unit(5 + 6 / 12, "feet"),
  7036. weight: math.unit(153, "lbs"),
  7037. name: "Front",
  7038. image: {
  7039. source: "./media/characters/andrew-cooper/front.svg"
  7040. }
  7041. },
  7042. },
  7043. [
  7044. {
  7045. name: "Nano",
  7046. height: math.unit(1, "mm")
  7047. },
  7048. {
  7049. name: "Micro",
  7050. height: math.unit(2, "inches")
  7051. },
  7052. {
  7053. name: "Normal",
  7054. height: math.unit(5 + 6 / 12, "feet"),
  7055. default: true
  7056. }
  7057. ]
  7058. ))
  7059. characterMakers.push(() => makeCharacter(
  7060. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7061. {
  7062. front: {
  7063. height: math.unit(6, "feet"),
  7064. weight: math.unit(180, "lbs"),
  7065. name: "Front",
  7066. image: {
  7067. source: "./media/characters/akane-sato/front.svg",
  7068. extra: 1219 / 1140
  7069. }
  7070. },
  7071. back: {
  7072. height: math.unit(6, "feet"),
  7073. weight: math.unit(180, "lbs"),
  7074. name: "Back",
  7075. image: {
  7076. source: "./media/characters/akane-sato/back.svg",
  7077. extra: 1219 / 1170
  7078. }
  7079. },
  7080. },
  7081. [
  7082. {
  7083. name: "Normal",
  7084. height: math.unit(2.5, "meters")
  7085. },
  7086. {
  7087. name: "Macro",
  7088. height: math.unit(250, "meters"),
  7089. default: true
  7090. },
  7091. {
  7092. name: "Megamacro",
  7093. height: math.unit(25, "km")
  7094. },
  7095. ]
  7096. ))
  7097. characterMakers.push(() => makeCharacter(
  7098. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7099. {
  7100. front: {
  7101. height: math.unit(6, "feet"),
  7102. weight: math.unit(65, "kg"),
  7103. name: "Front",
  7104. image: {
  7105. source: "./media/characters/rook/front.svg",
  7106. extra: 960 / 950
  7107. }
  7108. }
  7109. },
  7110. [
  7111. {
  7112. name: "Normal",
  7113. height: math.unit(8.8, "feet")
  7114. },
  7115. {
  7116. name: "Macro",
  7117. height: math.unit(88, "feet"),
  7118. default: true
  7119. },
  7120. {
  7121. name: "Megamacro",
  7122. height: math.unit(8, "miles")
  7123. },
  7124. ]
  7125. ))
  7126. characterMakers.push(() => makeCharacter(
  7127. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7128. {
  7129. front: {
  7130. height: math.unit(12 + 2 / 12, "feet"),
  7131. weight: math.unit(808, "lbs"),
  7132. name: "Front",
  7133. image: {
  7134. source: "./media/characters/prodigy/front.svg"
  7135. }
  7136. }
  7137. },
  7138. [
  7139. {
  7140. name: "Normal",
  7141. height: math.unit(12 + 2 / 12, "feet"),
  7142. default: true
  7143. },
  7144. {
  7145. name: "Macro",
  7146. height: math.unit(143, "feet")
  7147. },
  7148. {
  7149. name: "Macro+",
  7150. height: math.unit(400, "feet")
  7151. },
  7152. ]
  7153. ))
  7154. characterMakers.push(() => makeCharacter(
  7155. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7156. {
  7157. front: {
  7158. height: math.unit(6, "feet"),
  7159. weight: math.unit(225, "lbs"),
  7160. name: "Front",
  7161. image: {
  7162. source: "./media/characters/daniel/front.svg"
  7163. }
  7164. },
  7165. leaning: {
  7166. height: math.unit(6, "feet"),
  7167. weight: math.unit(225, "lbs"),
  7168. name: "Leaning",
  7169. image: {
  7170. source: "./media/characters/daniel/leaning.svg"
  7171. }
  7172. },
  7173. },
  7174. [
  7175. {
  7176. name: "Macro",
  7177. height: math.unit(1000, "feet"),
  7178. default: true
  7179. },
  7180. ]
  7181. ))
  7182. characterMakers.push(() => makeCharacter(
  7183. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7184. {
  7185. front: {
  7186. height: math.unit(6, "feet"),
  7187. weight: math.unit(88, "lbs"),
  7188. name: "Front",
  7189. image: {
  7190. source: "./media/characters/chiros/front.svg",
  7191. extra: 306 / 226
  7192. }
  7193. },
  7194. side: {
  7195. height: math.unit(6, "feet"),
  7196. weight: math.unit(88, "lbs"),
  7197. name: "Side",
  7198. image: {
  7199. source: "./media/characters/chiros/side.svg",
  7200. extra: 306 / 226
  7201. }
  7202. },
  7203. },
  7204. [
  7205. {
  7206. name: "Normal",
  7207. height: math.unit(6, "cm"),
  7208. default: true
  7209. },
  7210. ]
  7211. ))
  7212. characterMakers.push(() => makeCharacter(
  7213. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7214. {
  7215. front: {
  7216. height: math.unit(6, "feet"),
  7217. weight: math.unit(100, "lbs"),
  7218. name: "Front",
  7219. image: {
  7220. source: "./media/characters/selka/front.svg",
  7221. extra: 947 / 887
  7222. }
  7223. }
  7224. },
  7225. [
  7226. {
  7227. name: "Normal",
  7228. height: math.unit(5, "cm"),
  7229. default: true
  7230. },
  7231. ]
  7232. ))
  7233. characterMakers.push(() => makeCharacter(
  7234. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7235. {
  7236. front: {
  7237. height: math.unit(8 + 3 / 12, "feet"),
  7238. weight: math.unit(424, "lbs"),
  7239. name: "Front",
  7240. image: {
  7241. source: "./media/characters/verin/front.svg",
  7242. extra: 1845 / 1550
  7243. }
  7244. },
  7245. frontArmored: {
  7246. height: math.unit(8 + 3 / 12, "feet"),
  7247. weight: math.unit(424, "lbs"),
  7248. name: "Front (Armored)",
  7249. image: {
  7250. source: "./media/characters/verin/front-armor.svg",
  7251. extra: 1845 / 1550,
  7252. bottom: 0.01
  7253. }
  7254. },
  7255. back: {
  7256. height: math.unit(8 + 3 / 12, "feet"),
  7257. weight: math.unit(424, "lbs"),
  7258. name: "Back",
  7259. image: {
  7260. source: "./media/characters/verin/back.svg",
  7261. bottom: 0.1,
  7262. extra: 1
  7263. }
  7264. },
  7265. foot: {
  7266. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7267. name: "Foot",
  7268. image: {
  7269. source: "./media/characters/verin/foot.svg"
  7270. }
  7271. },
  7272. },
  7273. [
  7274. {
  7275. name: "Normal",
  7276. height: math.unit(8 + 3 / 12, "feet")
  7277. },
  7278. {
  7279. name: "Minimacro",
  7280. height: math.unit(21, "feet"),
  7281. default: true
  7282. },
  7283. {
  7284. name: "Macro",
  7285. height: math.unit(626, "feet")
  7286. },
  7287. ]
  7288. ))
  7289. characterMakers.push(() => makeCharacter(
  7290. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7291. {
  7292. front: {
  7293. height: math.unit(2.718, "meters"),
  7294. weight: math.unit(150, "lbs"),
  7295. name: "Front",
  7296. image: {
  7297. source: "./media/characters/sovrim-terraquian/front.svg"
  7298. }
  7299. },
  7300. back: {
  7301. height: math.unit(2.718, "meters"),
  7302. weight: math.unit(150, "lbs"),
  7303. name: "Back",
  7304. image: {
  7305. source: "./media/characters/sovrim-terraquian/back.svg"
  7306. }
  7307. }
  7308. },
  7309. [
  7310. {
  7311. name: "Micro",
  7312. height: math.unit(2, "inches")
  7313. },
  7314. {
  7315. name: "Small",
  7316. height: math.unit(1, "meter")
  7317. },
  7318. {
  7319. name: "Normal",
  7320. height: math.unit(Math.E, "meters"),
  7321. default: true
  7322. },
  7323. {
  7324. name: "Macro",
  7325. height: math.unit(20, "meters")
  7326. },
  7327. {
  7328. name: "Macro+",
  7329. height: math.unit(400, "meters")
  7330. },
  7331. ]
  7332. ))
  7333. characterMakers.push(() => makeCharacter(
  7334. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7335. {
  7336. front: {
  7337. height: math.unit(7, "feet"),
  7338. weight: math.unit(489, "lbs"),
  7339. name: "Front",
  7340. image: {
  7341. source: "./media/characters/reece-silvermane/front.svg",
  7342. bottom: 0.02,
  7343. extra: 1
  7344. }
  7345. },
  7346. },
  7347. [
  7348. {
  7349. name: "Macro",
  7350. height: math.unit(1.5, "miles"),
  7351. default: true
  7352. },
  7353. ]
  7354. ))
  7355. characterMakers.push(() => makeCharacter(
  7356. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7357. {
  7358. front: {
  7359. height: math.unit(6, "feet"),
  7360. weight: math.unit(78, "kg"),
  7361. name: "Front",
  7362. image: {
  7363. source: "./media/characters/kane/front.svg",
  7364. extra: 978 / 899
  7365. }
  7366. },
  7367. },
  7368. [
  7369. {
  7370. name: "Normal",
  7371. height: math.unit(2.1, "m"),
  7372. },
  7373. {
  7374. name: "Macro",
  7375. height: math.unit(1, "km"),
  7376. default: true
  7377. },
  7378. ]
  7379. ))
  7380. characterMakers.push(() => makeCharacter(
  7381. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7382. {
  7383. front: {
  7384. height: math.unit(6, "feet"),
  7385. weight: math.unit(200, "kg"),
  7386. name: "Front",
  7387. image: {
  7388. source: "./media/characters/tegon/front.svg",
  7389. bottom: 0.01,
  7390. extra: 1
  7391. }
  7392. },
  7393. },
  7394. [
  7395. {
  7396. name: "Micro",
  7397. height: math.unit(1, "inch")
  7398. },
  7399. {
  7400. name: "Normal",
  7401. height: math.unit(6 + 3 / 12, "feet"),
  7402. default: true
  7403. },
  7404. {
  7405. name: "Macro",
  7406. height: math.unit(300, "feet")
  7407. },
  7408. {
  7409. name: "Megamacro",
  7410. height: math.unit(69, "miles")
  7411. },
  7412. ]
  7413. ))
  7414. characterMakers.push(() => makeCharacter(
  7415. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7416. {
  7417. side: {
  7418. height: math.unit(6, "feet"),
  7419. weight: math.unit(2304, "lbs"),
  7420. name: "Side",
  7421. image: {
  7422. source: "./media/characters/arcturax/side.svg",
  7423. extra: 790 / 376,
  7424. bottom: 0.01
  7425. }
  7426. },
  7427. },
  7428. [
  7429. {
  7430. name: "Micro",
  7431. height: math.unit(2, "inch")
  7432. },
  7433. {
  7434. name: "Normal",
  7435. height: math.unit(6, "feet")
  7436. },
  7437. {
  7438. name: "Macro",
  7439. height: math.unit(39, "feet"),
  7440. default: true
  7441. },
  7442. {
  7443. name: "Megamacro",
  7444. height: math.unit(7, "miles")
  7445. },
  7446. ]
  7447. ))
  7448. characterMakers.push(() => makeCharacter(
  7449. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7450. {
  7451. front: {
  7452. height: math.unit(6, "feet"),
  7453. weight: math.unit(50, "lbs"),
  7454. name: "Front",
  7455. image: {
  7456. source: "./media/characters/sentri/front.svg",
  7457. extra: 1750 / 1570,
  7458. bottom: 0.025
  7459. }
  7460. },
  7461. frontAlt: {
  7462. height: math.unit(6, "feet"),
  7463. weight: math.unit(50, "lbs"),
  7464. name: "Front (Alt)",
  7465. image: {
  7466. source: "./media/characters/sentri/front-alt.svg",
  7467. extra: 1750 / 1570,
  7468. bottom: 0.025
  7469. }
  7470. },
  7471. },
  7472. [
  7473. {
  7474. name: "Normal",
  7475. height: math.unit(15, "feet"),
  7476. default: true
  7477. },
  7478. {
  7479. name: "Macro",
  7480. height: math.unit(2500, "feet")
  7481. }
  7482. ]
  7483. ))
  7484. characterMakers.push(() => makeCharacter(
  7485. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7486. {
  7487. front: {
  7488. height: math.unit(5 + 8 / 12, "feet"),
  7489. weight: math.unit(130, "lbs"),
  7490. name: "Front",
  7491. image: {
  7492. source: "./media/characters/corvin/front.svg",
  7493. extra: 1803 / 1629
  7494. }
  7495. },
  7496. frontShirt: {
  7497. height: math.unit(5 + 8 / 12, "feet"),
  7498. weight: math.unit(130, "lbs"),
  7499. name: "Front (Shirt)",
  7500. image: {
  7501. source: "./media/characters/corvin/front-shirt.svg",
  7502. extra: 1803 / 1629
  7503. }
  7504. },
  7505. frontPoncho: {
  7506. height: math.unit(5 + 8 / 12, "feet"),
  7507. weight: math.unit(130, "lbs"),
  7508. name: "Front (Poncho)",
  7509. image: {
  7510. source: "./media/characters/corvin/front-poncho.svg",
  7511. extra: 1803 / 1629
  7512. }
  7513. },
  7514. side: {
  7515. height: math.unit(5 + 8 / 12, "feet"),
  7516. weight: math.unit(130, "lbs"),
  7517. name: "Side",
  7518. image: {
  7519. source: "./media/characters/corvin/side.svg",
  7520. extra: 1012 / 945
  7521. }
  7522. },
  7523. back: {
  7524. height: math.unit(5 + 8 / 12, "feet"),
  7525. weight: math.unit(130, "lbs"),
  7526. name: "Back",
  7527. image: {
  7528. source: "./media/characters/corvin/back.svg",
  7529. extra: 1803 / 1629
  7530. }
  7531. },
  7532. },
  7533. [
  7534. {
  7535. name: "Micro",
  7536. height: math.unit(3, "inches")
  7537. },
  7538. {
  7539. name: "Normal",
  7540. height: math.unit(5 + 8 / 12, "feet")
  7541. },
  7542. {
  7543. name: "Macro",
  7544. height: math.unit(300, "feet"),
  7545. default: true
  7546. },
  7547. {
  7548. name: "Megamacro",
  7549. height: math.unit(500, "miles")
  7550. }
  7551. ]
  7552. ))
  7553. characterMakers.push(() => makeCharacter(
  7554. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7555. {
  7556. front: {
  7557. height: math.unit(6, "feet"),
  7558. weight: math.unit(135, "lbs"),
  7559. name: "Front",
  7560. image: {
  7561. source: "./media/characters/q/front.svg",
  7562. extra: 854 / 752,
  7563. bottom: 0.005
  7564. }
  7565. },
  7566. back: {
  7567. height: math.unit(6, "feet"),
  7568. weight: math.unit(130, "lbs"),
  7569. name: "Back",
  7570. image: {
  7571. source: "./media/characters/q/back.svg",
  7572. extra: 854 / 752
  7573. }
  7574. },
  7575. },
  7576. [
  7577. {
  7578. name: "Macro",
  7579. height: math.unit(90, "feet"),
  7580. default: true
  7581. },
  7582. {
  7583. name: "Extra Macro",
  7584. height: math.unit(300, "feet"),
  7585. },
  7586. {
  7587. name: "BIG WALF",
  7588. height: math.unit(750, "feet"),
  7589. },
  7590. ]
  7591. ))
  7592. characterMakers.push(() => makeCharacter(
  7593. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7594. {
  7595. front: {
  7596. height: math.unit(6, "feet"),
  7597. weight: math.unit(150, "lbs"),
  7598. name: "Front",
  7599. image: {
  7600. source: "./media/characters/carley/front.svg",
  7601. extra: 3927 / 3540,
  7602. bottom: 29.2 / 735
  7603. }
  7604. }
  7605. },
  7606. [
  7607. {
  7608. name: "Normal",
  7609. height: math.unit(6 + 3 / 12, "feet")
  7610. },
  7611. {
  7612. name: "Macro",
  7613. height: math.unit(185, "feet"),
  7614. default: true
  7615. },
  7616. {
  7617. name: "Megamacro",
  7618. height: math.unit(8, "miles"),
  7619. },
  7620. ]
  7621. ))
  7622. characterMakers.push(() => makeCharacter(
  7623. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7624. {
  7625. front: {
  7626. height: math.unit(3, "feet"),
  7627. weight: math.unit(28, "lbs"),
  7628. name: "Front",
  7629. image: {
  7630. source: "./media/characters/citrine/front.svg"
  7631. }
  7632. }
  7633. },
  7634. [
  7635. {
  7636. name: "Normal",
  7637. height: math.unit(3, "feet"),
  7638. default: true
  7639. }
  7640. ]
  7641. ))
  7642. characterMakers.push(() => makeCharacter(
  7643. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7644. {
  7645. front: {
  7646. height: math.unit(14, "feet"),
  7647. weight: math.unit(1450, "kg"),
  7648. capacity: math.unit(15, "people"),
  7649. name: "Front",
  7650. image: {
  7651. source: "./media/characters/aura-starwind/front.svg",
  7652. extra: 1455 / 1335
  7653. }
  7654. },
  7655. side: {
  7656. height: math.unit(14, "feet"),
  7657. weight: math.unit(1450, "kg"),
  7658. capacity: math.unit(15, "people"),
  7659. name: "Side",
  7660. image: {
  7661. source: "./media/characters/aura-starwind/side.svg",
  7662. extra: 1654 / 1497
  7663. }
  7664. },
  7665. taur: {
  7666. height: math.unit(18, "feet"),
  7667. weight: math.unit(5500, "kg"),
  7668. capacity: math.unit(50, "people"),
  7669. name: "Taur",
  7670. image: {
  7671. source: "./media/characters/aura-starwind/taur.svg",
  7672. extra: 1760 / 1650
  7673. }
  7674. },
  7675. feral: {
  7676. height: math.unit(46, "feet"),
  7677. weight: math.unit(25000, "kg"),
  7678. capacity: math.unit(120, "people"),
  7679. name: "Feral",
  7680. image: {
  7681. source: "./media/characters/aura-starwind/feral.svg"
  7682. }
  7683. },
  7684. },
  7685. [
  7686. {
  7687. name: "Normal",
  7688. height: math.unit(14, "feet"),
  7689. default: true
  7690. },
  7691. {
  7692. name: "Macro",
  7693. height: math.unit(50, "meters")
  7694. },
  7695. {
  7696. name: "Megamacro",
  7697. height: math.unit(5000, "meters")
  7698. },
  7699. {
  7700. name: "Gigamacro",
  7701. height: math.unit(100000, "kilometers")
  7702. },
  7703. ]
  7704. ))
  7705. characterMakers.push(() => makeCharacter(
  7706. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7707. {
  7708. front: {
  7709. height: math.unit(2 + 7 / 12, "feet"),
  7710. weight: math.unit(32, "lbs"),
  7711. name: "Front",
  7712. image: {
  7713. source: "./media/characters/rivet/front.svg",
  7714. extra: 1716 / 1658,
  7715. bottom: 0.03
  7716. }
  7717. },
  7718. foot: {
  7719. height: math.unit(0.551, "feet"),
  7720. name: "Rivet's Foot",
  7721. image: {
  7722. source: "./media/characters/rivet/foot.svg"
  7723. },
  7724. rename: true
  7725. }
  7726. },
  7727. [
  7728. {
  7729. name: "Micro",
  7730. height: math.unit(1.5, "inches"),
  7731. },
  7732. {
  7733. name: "Normal",
  7734. height: math.unit(2 + 7 / 12, "feet"),
  7735. default: true
  7736. },
  7737. {
  7738. name: "Macro",
  7739. height: math.unit(85, "feet")
  7740. },
  7741. {
  7742. name: "Megamacro",
  7743. height: math.unit(2.2, "km")
  7744. }
  7745. ]
  7746. ))
  7747. characterMakers.push(() => makeCharacter(
  7748. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7749. {
  7750. front: {
  7751. height: math.unit(5 + 9 / 12, "feet"),
  7752. weight: math.unit(150, "lbs"),
  7753. name: "Front",
  7754. image: {
  7755. source: "./media/characters/coffee/front.svg",
  7756. extra: 3666 / 3032,
  7757. bottom: 0.04
  7758. }
  7759. },
  7760. foot: {
  7761. height: math.unit(1.29, "feet"),
  7762. name: "Foot",
  7763. image: {
  7764. source: "./media/characters/coffee/foot.svg"
  7765. }
  7766. },
  7767. },
  7768. [
  7769. {
  7770. name: "Micro",
  7771. height: math.unit(2, "inches"),
  7772. },
  7773. {
  7774. name: "Normal",
  7775. height: math.unit(5 + 9 / 12, "feet"),
  7776. default: true
  7777. },
  7778. {
  7779. name: "Macro",
  7780. height: math.unit(800, "feet")
  7781. },
  7782. {
  7783. name: "Megamacro",
  7784. height: math.unit(25, "miles")
  7785. }
  7786. ]
  7787. ))
  7788. characterMakers.push(() => makeCharacter(
  7789. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7790. {
  7791. front: {
  7792. height: math.unit(6, "feet"),
  7793. weight: math.unit(200, "lbs"),
  7794. name: "Front",
  7795. image: {
  7796. source: "./media/characters/chari-gal/front.svg",
  7797. extra: 1568 / 1385,
  7798. bottom: 0.047
  7799. }
  7800. },
  7801. gigantamax: {
  7802. height: math.unit(6 * 16, "feet"),
  7803. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7804. name: "Gigantamax",
  7805. image: {
  7806. source: "./media/characters/chari-gal/gigantamax.svg",
  7807. extra: 1124 / 888,
  7808. bottom: 0.03
  7809. }
  7810. },
  7811. },
  7812. [
  7813. {
  7814. name: "Normal",
  7815. height: math.unit(5 + 7 / 12, "feet")
  7816. },
  7817. {
  7818. name: "Macro",
  7819. height: math.unit(200, "feet"),
  7820. default: true
  7821. }
  7822. ]
  7823. ))
  7824. characterMakers.push(() => makeCharacter(
  7825. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7826. {
  7827. front: {
  7828. height: math.unit(6, "feet"),
  7829. weight: math.unit(150, "lbs"),
  7830. name: "Front",
  7831. image: {
  7832. source: "./media/characters/nova/front.svg",
  7833. extra: 5000 / 4722,
  7834. bottom: 0.02
  7835. }
  7836. }
  7837. },
  7838. [
  7839. {
  7840. name: "Micro-",
  7841. height: math.unit(0.8, "inches")
  7842. },
  7843. {
  7844. name: "Micro",
  7845. height: math.unit(2, "inches"),
  7846. default: true
  7847. },
  7848. ]
  7849. ))
  7850. characterMakers.push(() => makeCharacter(
  7851. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7852. {
  7853. front: {
  7854. height: math.unit(3 + 1 / 12, "feet"),
  7855. weight: math.unit(21.7, "lbs"),
  7856. name: "Front",
  7857. image: {
  7858. source: "./media/characters/argent/front.svg",
  7859. extra: 1471 / 1331,
  7860. bottom: 100.8 / 1575.5
  7861. }
  7862. }
  7863. },
  7864. [
  7865. {
  7866. name: "Micro",
  7867. height: math.unit(2, "inches")
  7868. },
  7869. {
  7870. name: "Normal",
  7871. height: math.unit(3 + 1 / 12, "feet"),
  7872. default: true
  7873. },
  7874. {
  7875. name: "Macro",
  7876. height: math.unit(120, "feet")
  7877. },
  7878. ]
  7879. ))
  7880. characterMakers.push(() => makeCharacter(
  7881. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7882. {
  7883. lamp: {
  7884. height: math.unit(7 * 1559 / 989, "feet"),
  7885. name: "Magic Lamp",
  7886. image: {
  7887. source: "./media/characters/mira-al-cul/lamp.svg",
  7888. extra: 1617 / 1559
  7889. }
  7890. },
  7891. front: {
  7892. height: math.unit(7, "feet"),
  7893. name: "Front",
  7894. image: {
  7895. source: "./media/characters/mira-al-cul/front.svg",
  7896. extra: 1044 / 990
  7897. }
  7898. },
  7899. },
  7900. [
  7901. {
  7902. name: "Heavily Restricted",
  7903. height: math.unit(7 * 1559 / 989, "feet")
  7904. },
  7905. {
  7906. name: "Freshly Freed",
  7907. height: math.unit(50 * 1559 / 989, "feet")
  7908. },
  7909. {
  7910. name: "World Encompassing",
  7911. height: math.unit(10000 * 1559 / 989, "miles")
  7912. },
  7913. {
  7914. name: "Galactic",
  7915. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7916. },
  7917. {
  7918. name: "Palmed Universe",
  7919. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7920. default: true
  7921. },
  7922. {
  7923. name: "Multiversal Matriarch",
  7924. height: math.unit(8.87e10, "yottameters")
  7925. },
  7926. {
  7927. name: "Void Mother",
  7928. height: math.unit(3.14e110, "yottaparsecs")
  7929. },
  7930. {
  7931. name: "Toying with Transcendence",
  7932. height: math.unit(1e307, "meters")
  7933. },
  7934. ]
  7935. ))
  7936. characterMakers.push(() => makeCharacter(
  7937. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7938. {
  7939. front: {
  7940. height: math.unit(17 + 1 / 12, "feet"),
  7941. weight: math.unit(476.2 * 5, "lbs"),
  7942. name: "Front",
  7943. image: {
  7944. source: "./media/characters/kuro-shi-uchū/front.svg",
  7945. extra: 2329 / 1835,
  7946. bottom: 0.02
  7947. }
  7948. },
  7949. },
  7950. [
  7951. {
  7952. name: "Micro",
  7953. height: math.unit(2, "inches")
  7954. },
  7955. {
  7956. name: "Normal",
  7957. height: math.unit(12, "meters")
  7958. },
  7959. {
  7960. name: "Planetary",
  7961. height: math.unit(0.00929, "AU"),
  7962. default: true
  7963. },
  7964. {
  7965. name: "Universal",
  7966. height: math.unit(20, "gigaparsecs")
  7967. },
  7968. ]
  7969. ))
  7970. characterMakers.push(() => makeCharacter(
  7971. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7972. {
  7973. front: {
  7974. height: math.unit(5 + 2 / 12, "feet"),
  7975. weight: math.unit(120, "lbs"),
  7976. name: "Front",
  7977. image: {
  7978. source: "./media/characters/katherine/front.svg",
  7979. extra: 2075 / 1969
  7980. }
  7981. },
  7982. dress: {
  7983. height: math.unit(5 + 2 / 12, "feet"),
  7984. weight: math.unit(120, "lbs"),
  7985. name: "Dress",
  7986. image: {
  7987. source: "./media/characters/katherine/dress.svg",
  7988. extra: 2258 / 2064
  7989. }
  7990. },
  7991. },
  7992. [
  7993. {
  7994. name: "Micro",
  7995. height: math.unit(1, "inches"),
  7996. default: true
  7997. },
  7998. {
  7999. name: "Normal",
  8000. height: math.unit(5 + 2 / 12, "feet")
  8001. },
  8002. {
  8003. name: "Macro",
  8004. height: math.unit(100, "meters")
  8005. },
  8006. {
  8007. name: "Megamacro",
  8008. height: math.unit(80, "miles")
  8009. },
  8010. ]
  8011. ))
  8012. characterMakers.push(() => makeCharacter(
  8013. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8014. {
  8015. front: {
  8016. height: math.unit(7 + 8 / 12, "feet"),
  8017. weight: math.unit(250, "lbs"),
  8018. name: "Front",
  8019. image: {
  8020. source: "./media/characters/yevis/front.svg",
  8021. extra: 1938 / 1755
  8022. }
  8023. }
  8024. },
  8025. [
  8026. {
  8027. name: "Mortal",
  8028. height: math.unit(7 + 8 / 12, "feet")
  8029. },
  8030. {
  8031. name: "Battle",
  8032. height: math.unit(25 + 11 / 12, "feet")
  8033. },
  8034. {
  8035. name: "Wrath",
  8036. height: math.unit(1654 + 11 / 12, "feet")
  8037. },
  8038. {
  8039. name: "Planet Destroyer",
  8040. height: math.unit(12000, "miles")
  8041. },
  8042. {
  8043. name: "Galaxy Conqueror",
  8044. height: math.unit(1.45, "zettameters"),
  8045. default: true
  8046. },
  8047. {
  8048. name: "Universal War",
  8049. height: math.unit(184, "gigaparsecs")
  8050. },
  8051. {
  8052. name: "Eternity War",
  8053. height: math.unit(1.98e55, "yottaparsecs")
  8054. },
  8055. ]
  8056. ))
  8057. characterMakers.push(() => makeCharacter(
  8058. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8059. {
  8060. front: {
  8061. height: math.unit(5 + 8 / 12, "feet"),
  8062. weight: math.unit(63, "kg"),
  8063. name: "Front",
  8064. image: {
  8065. source: "./media/characters/xavier/front.svg",
  8066. extra: 944 / 883
  8067. }
  8068. },
  8069. frontStretch: {
  8070. height: math.unit(5 + 8 / 12, "feet"),
  8071. weight: math.unit(63, "kg"),
  8072. name: "Stretching",
  8073. image: {
  8074. source: "./media/characters/xavier/front-stretch.svg",
  8075. extra: 962 / 820
  8076. }
  8077. },
  8078. },
  8079. [
  8080. {
  8081. name: "Normal",
  8082. height: math.unit(5 + 8 / 12, "feet")
  8083. },
  8084. {
  8085. name: "Macro",
  8086. height: math.unit(100, "meters"),
  8087. default: true
  8088. },
  8089. {
  8090. name: "McLargeHuge",
  8091. height: math.unit(10, "miles")
  8092. },
  8093. ]
  8094. ))
  8095. characterMakers.push(() => makeCharacter(
  8096. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8097. {
  8098. front: {
  8099. height: math.unit(5 + 5 / 12, "feet"),
  8100. weight: math.unit(150, "lb"),
  8101. name: "Front",
  8102. image: {
  8103. source: "./media/characters/joshii/front.svg",
  8104. extra: 765 / 653,
  8105. bottom: 51 / 816
  8106. }
  8107. },
  8108. foot: {
  8109. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8110. name: "Foot",
  8111. image: {
  8112. source: "./media/characters/joshii/foot.svg"
  8113. }
  8114. },
  8115. },
  8116. [
  8117. {
  8118. name: "Micro",
  8119. height: math.unit(2, "inches"),
  8120. default: true
  8121. },
  8122. {
  8123. name: "Normal",
  8124. height: math.unit(5 + 5 / 12, "feet")
  8125. },
  8126. {
  8127. name: "Macro",
  8128. height: math.unit(785, "feet")
  8129. },
  8130. {
  8131. name: "Megamacro",
  8132. height: math.unit(24.5, "miles")
  8133. },
  8134. ]
  8135. ))
  8136. characterMakers.push(() => makeCharacter(
  8137. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8138. {
  8139. front: {
  8140. height: math.unit(6, "feet"),
  8141. weight: math.unit(150, "lb"),
  8142. name: "Front",
  8143. image: {
  8144. source: "./media/characters/goddess-elizabeth/front.svg",
  8145. extra: 1800 / 1525,
  8146. bottom: 0.005
  8147. }
  8148. },
  8149. foot: {
  8150. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8151. name: "Foot",
  8152. image: {
  8153. source: "./media/characters/goddess-elizabeth/foot.svg"
  8154. }
  8155. },
  8156. mouth: {
  8157. height: math.unit(6, "feet"),
  8158. name: "Mouth",
  8159. image: {
  8160. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8161. }
  8162. },
  8163. },
  8164. [
  8165. {
  8166. name: "Micro",
  8167. height: math.unit(12, "feet")
  8168. },
  8169. {
  8170. name: "Normal",
  8171. height: math.unit(80, "miles"),
  8172. default: true
  8173. },
  8174. {
  8175. name: "Macro",
  8176. height: math.unit(15000, "parsecs")
  8177. },
  8178. ]
  8179. ))
  8180. characterMakers.push(() => makeCharacter(
  8181. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8182. {
  8183. front: {
  8184. height: math.unit(5 + 9 / 12, "feet"),
  8185. weight: math.unit(144, "lb"),
  8186. name: "Front",
  8187. image: {
  8188. source: "./media/characters/kara/front.svg"
  8189. }
  8190. },
  8191. feet: {
  8192. height: math.unit(6 / 6.765, "feet"),
  8193. name: "Kara's Feet",
  8194. rename: true,
  8195. image: {
  8196. source: "./media/characters/kara/feet.svg"
  8197. }
  8198. },
  8199. },
  8200. [
  8201. {
  8202. name: "Normal",
  8203. height: math.unit(5 + 9 / 12, "feet")
  8204. },
  8205. {
  8206. name: "Macro",
  8207. height: math.unit(174, "feet"),
  8208. default: true
  8209. },
  8210. ]
  8211. ))
  8212. characterMakers.push(() => makeCharacter(
  8213. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8214. {
  8215. front: {
  8216. height: math.unit(18, "feet"),
  8217. weight: math.unit(4050, "lb"),
  8218. name: "Front",
  8219. image: {
  8220. source: "./media/characters/tyrone/front.svg",
  8221. extra: 2405 / 2270,
  8222. bottom: 182 / 2587
  8223. }
  8224. },
  8225. },
  8226. [
  8227. {
  8228. name: "Normal",
  8229. height: math.unit(18, "feet"),
  8230. default: true
  8231. },
  8232. {
  8233. name: "Macro",
  8234. height: math.unit(300, "feet")
  8235. },
  8236. {
  8237. name: "Megamacro",
  8238. height: math.unit(15, "km")
  8239. },
  8240. {
  8241. name: "Gigamacro",
  8242. height: math.unit(500, "km")
  8243. },
  8244. {
  8245. name: "Teramacro",
  8246. height: math.unit(0.5, "gigameters")
  8247. },
  8248. {
  8249. name: "Omnimacro",
  8250. height: math.unit(1e252, "yottauniverse")
  8251. },
  8252. ]
  8253. ))
  8254. characterMakers.push(() => makeCharacter(
  8255. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8256. {
  8257. front: {
  8258. height: math.unit(7 + 8 / 12, "feet"),
  8259. weight: math.unit(120, "lb"),
  8260. name: "Front",
  8261. image: {
  8262. source: "./media/characters/danny/front.svg",
  8263. extra: 1490 / 1350
  8264. }
  8265. },
  8266. back: {
  8267. height: math.unit(7 + 8 / 12, "feet"),
  8268. weight: math.unit(120, "lb"),
  8269. name: "Back",
  8270. image: {
  8271. source: "./media/characters/danny/back.svg",
  8272. extra: 1490 / 1350
  8273. }
  8274. },
  8275. },
  8276. [
  8277. {
  8278. name: "Normal",
  8279. height: math.unit(7 + 8 / 12, "feet"),
  8280. default: true
  8281. },
  8282. ]
  8283. ))
  8284. characterMakers.push(() => makeCharacter(
  8285. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8286. {
  8287. front: {
  8288. height: math.unit(3.5, "inches"),
  8289. weight: math.unit(19, "grams"),
  8290. name: "Front",
  8291. image: {
  8292. source: "./media/characters/mallow/front.svg",
  8293. extra: 471 / 431
  8294. }
  8295. },
  8296. back: {
  8297. height: math.unit(3.5, "inches"),
  8298. weight: math.unit(19, "grams"),
  8299. name: "Back",
  8300. image: {
  8301. source: "./media/characters/mallow/back.svg",
  8302. extra: 471 / 431
  8303. }
  8304. },
  8305. },
  8306. [
  8307. {
  8308. name: "Normal",
  8309. height: math.unit(3.5, "inches"),
  8310. default: true
  8311. },
  8312. ]
  8313. ))
  8314. characterMakers.push(() => makeCharacter(
  8315. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8316. {
  8317. front: {
  8318. height: math.unit(9, "feet"),
  8319. weight: math.unit(230, "kg"),
  8320. name: "Front",
  8321. image: {
  8322. source: "./media/characters/starry-aqua/front.svg"
  8323. }
  8324. },
  8325. back: {
  8326. height: math.unit(9, "feet"),
  8327. weight: math.unit(230, "kg"),
  8328. name: "Back",
  8329. image: {
  8330. source: "./media/characters/starry-aqua/back.svg"
  8331. }
  8332. },
  8333. hand: {
  8334. height: math.unit(9 * 0.1168, "feet"),
  8335. name: "Hand",
  8336. image: {
  8337. source: "./media/characters/starry-aqua/hand.svg"
  8338. }
  8339. },
  8340. foot: {
  8341. height: math.unit(9 * 0.18, "feet"),
  8342. name: "Foot",
  8343. image: {
  8344. source: "./media/characters/starry-aqua/foot.svg"
  8345. }
  8346. }
  8347. },
  8348. [
  8349. {
  8350. name: "Micro",
  8351. height: math.unit(3, "inches")
  8352. },
  8353. {
  8354. name: "Normal",
  8355. height: math.unit(9, "feet")
  8356. },
  8357. {
  8358. name: "Macro",
  8359. height: math.unit(300, "feet"),
  8360. default: true
  8361. },
  8362. {
  8363. name: "Megamacro",
  8364. height: math.unit(3200, "feet")
  8365. }
  8366. ]
  8367. ))
  8368. characterMakers.push(() => makeCharacter(
  8369. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8370. {
  8371. front: {
  8372. height: math.unit(6, "feet"),
  8373. weight: math.unit(230, "lb"),
  8374. name: "Front",
  8375. image: {
  8376. source: "./media/characters/luka/front.svg",
  8377. extra: 1,
  8378. bottom: 0.025
  8379. }
  8380. },
  8381. },
  8382. [
  8383. {
  8384. name: "Normal",
  8385. height: math.unit(12 + 8 / 12, "feet"),
  8386. default: true
  8387. },
  8388. {
  8389. name: "Minimacro",
  8390. height: math.unit(20, "feet")
  8391. },
  8392. {
  8393. name: "Macro",
  8394. height: math.unit(250, "feet")
  8395. },
  8396. {
  8397. name: "Megamacro",
  8398. height: math.unit(5, "miles")
  8399. },
  8400. {
  8401. name: "Gigamacro",
  8402. height: math.unit(8000, "miles")
  8403. },
  8404. ]
  8405. ))
  8406. characterMakers.push(() => makeCharacter(
  8407. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8408. {
  8409. front: {
  8410. height: math.unit(6, "feet"),
  8411. weight: math.unit(150, "lb"),
  8412. name: "Front",
  8413. image: {
  8414. source: "./media/characters/natalie-nightring/front.svg",
  8415. extra: 1,
  8416. bottom: 0.06
  8417. }
  8418. },
  8419. },
  8420. [
  8421. {
  8422. name: "Uh Oh",
  8423. height: math.unit(0.1, "mm")
  8424. },
  8425. {
  8426. name: "Small",
  8427. height: math.unit(3, "inches")
  8428. },
  8429. {
  8430. name: "Human Scale",
  8431. height: math.unit(6, "feet")
  8432. },
  8433. {
  8434. name: "Librarian",
  8435. height: math.unit(50, "feet"),
  8436. default: true
  8437. },
  8438. {
  8439. name: "Immense",
  8440. height: math.unit(200, "miles")
  8441. },
  8442. ]
  8443. ))
  8444. characterMakers.push(() => makeCharacter(
  8445. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8446. {
  8447. front: {
  8448. height: math.unit(6, "feet"),
  8449. weight: math.unit(180, "lbs"),
  8450. name: "Front",
  8451. image: {
  8452. source: "./media/characters/danni-rosie/front.svg",
  8453. extra: 1260 / 1128,
  8454. bottom: 0.022
  8455. }
  8456. },
  8457. },
  8458. [
  8459. {
  8460. name: "Micro",
  8461. height: math.unit(2, "inches"),
  8462. default: true
  8463. },
  8464. ]
  8465. ))
  8466. characterMakers.push(() => makeCharacter(
  8467. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8468. {
  8469. front: {
  8470. height: math.unit(5 + 9 / 12, "feet"),
  8471. weight: math.unit(220, "lb"),
  8472. name: "Front",
  8473. image: {
  8474. source: "./media/characters/samantha-kruse/front.svg",
  8475. extra: (985 / 935),
  8476. bottom: 0.03
  8477. }
  8478. },
  8479. frontUndressed: {
  8480. height: math.unit(5 + 9 / 12, "feet"),
  8481. weight: math.unit(220, "lb"),
  8482. name: "Front (Undressed)",
  8483. image: {
  8484. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8485. extra: (973 / 923),
  8486. bottom: 0.025
  8487. }
  8488. },
  8489. fat: {
  8490. height: math.unit(5 + 9 / 12, "feet"),
  8491. weight: math.unit(900, "lb"),
  8492. name: "Front (Fat)",
  8493. image: {
  8494. source: "./media/characters/samantha-kruse/fat.svg",
  8495. extra: 2688 / 2561
  8496. }
  8497. },
  8498. },
  8499. [
  8500. {
  8501. name: "Normal",
  8502. height: math.unit(5 + 9 / 12, "feet"),
  8503. default: true
  8504. }
  8505. ]
  8506. ))
  8507. characterMakers.push(() => makeCharacter(
  8508. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8509. {
  8510. back: {
  8511. height: math.unit(5 + 4 / 12, "feet"),
  8512. weight: math.unit(4963, "lb"),
  8513. name: "Back",
  8514. image: {
  8515. source: "./media/characters/amelia-rosie/back.svg",
  8516. extra: 1113 / 963,
  8517. bottom: 0.01
  8518. }
  8519. },
  8520. },
  8521. [
  8522. {
  8523. name: "Level 0",
  8524. height: math.unit(5 + 4 / 12, "feet")
  8525. },
  8526. {
  8527. name: "Level 1",
  8528. height: math.unit(164597, "feet"),
  8529. default: true
  8530. },
  8531. {
  8532. name: "Level 2",
  8533. height: math.unit(956243, "miles")
  8534. },
  8535. {
  8536. name: "Level 3",
  8537. height: math.unit(29421709423, "miles")
  8538. },
  8539. {
  8540. name: "Level 4",
  8541. height: math.unit(154, "lightyears")
  8542. },
  8543. {
  8544. name: "Level 5",
  8545. height: math.unit(4738272, "lightyears")
  8546. },
  8547. {
  8548. name: "Level 6",
  8549. height: math.unit(145787152896, "lightyears")
  8550. },
  8551. ]
  8552. ))
  8553. characterMakers.push(() => makeCharacter(
  8554. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8555. {
  8556. front: {
  8557. height: math.unit(5 + 11 / 12, "feet"),
  8558. weight: math.unit(65, "kg"),
  8559. name: "Front",
  8560. image: {
  8561. source: "./media/characters/rook-kitara/front.svg",
  8562. extra: 1347 / 1274,
  8563. bottom: 0.005
  8564. }
  8565. },
  8566. },
  8567. [
  8568. {
  8569. name: "Totally Unfair",
  8570. height: math.unit(1.8, "mm")
  8571. },
  8572. {
  8573. name: "Lap Rookie",
  8574. height: math.unit(1.4, "feet")
  8575. },
  8576. {
  8577. name: "Normal",
  8578. height: math.unit(5 + 11 / 12, "feet"),
  8579. default: true
  8580. },
  8581. {
  8582. name: "How Did This Happen",
  8583. height: math.unit(80, "miles")
  8584. }
  8585. ]
  8586. ))
  8587. characterMakers.push(() => makeCharacter(
  8588. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8589. {
  8590. front: {
  8591. height: math.unit(7, "feet"),
  8592. weight: math.unit(300, "lb"),
  8593. name: "Front",
  8594. image: {
  8595. source: "./media/characters/pisces/front.svg",
  8596. extra: 2255 / 2115,
  8597. bottom: 0.03
  8598. }
  8599. },
  8600. back: {
  8601. height: math.unit(7, "feet"),
  8602. weight: math.unit(300, "lb"),
  8603. name: "Back",
  8604. image: {
  8605. source: "./media/characters/pisces/back.svg",
  8606. extra: 2146 / 2055,
  8607. bottom: 0.04
  8608. }
  8609. },
  8610. },
  8611. [
  8612. {
  8613. name: "Normal",
  8614. height: math.unit(7, "feet"),
  8615. default: true
  8616. },
  8617. {
  8618. name: "Swimming Pool",
  8619. height: math.unit(12.2, "meters")
  8620. },
  8621. {
  8622. name: "Olympic Swimming Pool",
  8623. height: math.unit(56.3, "meters")
  8624. },
  8625. {
  8626. name: "Lake Superior",
  8627. height: math.unit(93900, "meters")
  8628. },
  8629. {
  8630. name: "Mediterranean Sea",
  8631. height: math.unit(644457, "meters")
  8632. },
  8633. {
  8634. name: "World's Oceans",
  8635. height: math.unit(4567491, "meters")
  8636. },
  8637. ]
  8638. ))
  8639. characterMakers.push(() => makeCharacter(
  8640. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8641. {
  8642. front: {
  8643. height: math.unit(2.3, "meters"),
  8644. weight: math.unit(120, "kg"),
  8645. name: "Front",
  8646. image: {
  8647. source: "./media/characters/zelas/front.svg"
  8648. }
  8649. },
  8650. side: {
  8651. height: math.unit(2.3, "meters"),
  8652. weight: math.unit(120, "kg"),
  8653. name: "Side",
  8654. image: {
  8655. source: "./media/characters/zelas/side.svg"
  8656. }
  8657. },
  8658. back: {
  8659. height: math.unit(2.3, "meters"),
  8660. weight: math.unit(120, "kg"),
  8661. name: "Back",
  8662. image: {
  8663. source: "./media/characters/zelas/back.svg"
  8664. }
  8665. },
  8666. foot: {
  8667. height: math.unit(1.116, "feet"),
  8668. name: "Foot",
  8669. image: {
  8670. source: "./media/characters/zelas/foot.svg"
  8671. }
  8672. },
  8673. },
  8674. [
  8675. {
  8676. name: "Normal",
  8677. height: math.unit(2.3, "meters")
  8678. },
  8679. {
  8680. name: "Macro",
  8681. height: math.unit(30, "meters"),
  8682. default: true
  8683. },
  8684. ]
  8685. ))
  8686. characterMakers.push(() => makeCharacter(
  8687. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8688. {
  8689. front: {
  8690. height: math.unit(1, "inch"),
  8691. weight: math.unit(0.21, "grams"),
  8692. name: "Front",
  8693. image: {
  8694. source: "./media/characters/talbot/front.svg",
  8695. extra: 594 / 544
  8696. }
  8697. },
  8698. },
  8699. [
  8700. {
  8701. name: "Micro",
  8702. height: math.unit(1, "inch"),
  8703. default: true
  8704. },
  8705. ]
  8706. ))
  8707. characterMakers.push(() => makeCharacter(
  8708. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8709. {
  8710. front: {
  8711. height: math.unit(3 + 3 / 12, "feet"),
  8712. weight: math.unit(51.8, "lb"),
  8713. name: "Front",
  8714. image: {
  8715. source: "./media/characters/fliss/front.svg",
  8716. extra: 840 / 640
  8717. }
  8718. },
  8719. },
  8720. [
  8721. {
  8722. name: "Teeny Tiny",
  8723. height: math.unit(1, "mm")
  8724. },
  8725. {
  8726. name: "Small",
  8727. height: math.unit(1, "inch"),
  8728. default: true
  8729. },
  8730. {
  8731. name: "Standard Sylveon",
  8732. height: math.unit(3 + 3 / 12, "feet")
  8733. },
  8734. {
  8735. name: "Large Nuisance",
  8736. height: math.unit(33, "feet")
  8737. },
  8738. {
  8739. name: "City Filler",
  8740. height: math.unit(3000, "feet")
  8741. },
  8742. {
  8743. name: "New Horizon",
  8744. height: math.unit(6000, "miles")
  8745. },
  8746. ]
  8747. ))
  8748. characterMakers.push(() => makeCharacter(
  8749. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8750. {
  8751. front: {
  8752. height: math.unit(5, "cm"),
  8753. weight: math.unit(1.94, "g"),
  8754. name: "Front",
  8755. image: {
  8756. source: "./media/characters/fleta/front.svg",
  8757. extra: 835 / 803
  8758. }
  8759. },
  8760. back: {
  8761. height: math.unit(5, "cm"),
  8762. weight: math.unit(1.94, "g"),
  8763. name: "Back",
  8764. image: {
  8765. source: "./media/characters/fleta/back.svg",
  8766. extra: 835 / 803
  8767. }
  8768. },
  8769. },
  8770. [
  8771. {
  8772. name: "Micro",
  8773. height: math.unit(5, "cm"),
  8774. default: true
  8775. },
  8776. ]
  8777. ))
  8778. characterMakers.push(() => makeCharacter(
  8779. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8780. {
  8781. front: {
  8782. height: math.unit(6, "feet"),
  8783. weight: math.unit(225, "lb"),
  8784. name: "Front",
  8785. image: {
  8786. source: "./media/characters/dominic/front.svg",
  8787. extra: 1770 / 1620,
  8788. bottom: 0.025
  8789. }
  8790. },
  8791. back: {
  8792. height: math.unit(6, "feet"),
  8793. weight: math.unit(225, "lb"),
  8794. name: "Back",
  8795. image: {
  8796. source: "./media/characters/dominic/back.svg",
  8797. extra: 1745 / 1620,
  8798. bottom: 0.065
  8799. }
  8800. },
  8801. },
  8802. [
  8803. {
  8804. name: "Nano",
  8805. height: math.unit(0.1, "mm")
  8806. },
  8807. {
  8808. name: "Micro-",
  8809. height: math.unit(1, "mm")
  8810. },
  8811. {
  8812. name: "Micro",
  8813. height: math.unit(4, "inches")
  8814. },
  8815. {
  8816. name: "Normal",
  8817. height: math.unit(6 + 4 / 12, "feet"),
  8818. default: true
  8819. },
  8820. {
  8821. name: "Macro",
  8822. height: math.unit(115, "feet")
  8823. },
  8824. {
  8825. name: "Macro+",
  8826. height: math.unit(955, "feet")
  8827. },
  8828. {
  8829. name: "Megamacro",
  8830. height: math.unit(8990, "feet")
  8831. },
  8832. {
  8833. name: "Gigmacro",
  8834. height: math.unit(9310, "miles")
  8835. },
  8836. {
  8837. name: "Teramacro",
  8838. height: math.unit(1567005010, "miles")
  8839. },
  8840. {
  8841. name: "Examacro",
  8842. height: math.unit(1425, "parsecs")
  8843. },
  8844. ]
  8845. ))
  8846. characterMakers.push(() => makeCharacter(
  8847. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8848. {
  8849. front: {
  8850. height: math.unit(400, "feet"),
  8851. weight: math.unit(44444444, "lb"),
  8852. name: "Front",
  8853. image: {
  8854. source: "./media/characters/major-colonel/front.svg"
  8855. }
  8856. },
  8857. back: {
  8858. height: math.unit(400, "feet"),
  8859. weight: math.unit(44444444, "lb"),
  8860. name: "Back",
  8861. image: {
  8862. source: "./media/characters/major-colonel/back.svg"
  8863. }
  8864. },
  8865. },
  8866. [
  8867. {
  8868. name: "Macro",
  8869. height: math.unit(400, "feet"),
  8870. default: true
  8871. },
  8872. ]
  8873. ))
  8874. characterMakers.push(() => makeCharacter(
  8875. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8876. {
  8877. catFront: {
  8878. height: math.unit(6, "feet"),
  8879. weight: math.unit(120, "lb"),
  8880. name: "Front (Cat Side)",
  8881. image: {
  8882. source: "./media/characters/axel-lycan/cat-front.svg",
  8883. extra: 430 / 402,
  8884. bottom: 43 / 472.35
  8885. }
  8886. },
  8887. catBack: {
  8888. height: math.unit(6, "feet"),
  8889. weight: math.unit(120, "lb"),
  8890. name: "Back (Cat Side)",
  8891. image: {
  8892. source: "./media/characters/axel-lycan/cat-back.svg",
  8893. extra: 447 / 419,
  8894. bottom: 23.3 / 469
  8895. }
  8896. },
  8897. wolfFront: {
  8898. height: math.unit(6, "feet"),
  8899. weight: math.unit(120, "lb"),
  8900. name: "Front (Wolf Side)",
  8901. image: {
  8902. source: "./media/characters/axel-lycan/wolf-front.svg",
  8903. extra: 485 / 456,
  8904. bottom: 19 / 504
  8905. }
  8906. },
  8907. wolfBack: {
  8908. height: math.unit(6, "feet"),
  8909. weight: math.unit(120, "lb"),
  8910. name: "Back (Wolf Side)",
  8911. image: {
  8912. source: "./media/characters/axel-lycan/wolf-back.svg",
  8913. extra: 475 / 438,
  8914. bottom: 39.2 / 514
  8915. }
  8916. },
  8917. },
  8918. [
  8919. {
  8920. name: "Macro",
  8921. height: math.unit(1, "km"),
  8922. default: true
  8923. },
  8924. ]
  8925. ))
  8926. characterMakers.push(() => makeCharacter(
  8927. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8928. {
  8929. front: {
  8930. height: math.unit(5 + 9 / 12, "feet"),
  8931. weight: math.unit(175, "lb"),
  8932. name: "Front",
  8933. image: {
  8934. source: "./media/characters/vanrel-hyena/front.svg",
  8935. extra: 1086 / 1010,
  8936. bottom: 0.04
  8937. }
  8938. },
  8939. },
  8940. [
  8941. {
  8942. name: "Normal",
  8943. height: math.unit(5 + 9 / 12, "feet"),
  8944. default: true
  8945. },
  8946. ]
  8947. ))
  8948. characterMakers.push(() => makeCharacter(
  8949. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8950. {
  8951. front: {
  8952. height: math.unit(6, "feet"),
  8953. weight: math.unit(103, "lb"),
  8954. name: "Front",
  8955. image: {
  8956. source: "./media/characters/abbott-absol/front.svg",
  8957. extra: 2010 / 1842
  8958. }
  8959. },
  8960. },
  8961. [
  8962. {
  8963. name: "Megamicro",
  8964. height: math.unit(0.1, "mm")
  8965. },
  8966. {
  8967. name: "Micro",
  8968. height: math.unit(1, "inch")
  8969. },
  8970. {
  8971. name: "Normal",
  8972. height: math.unit(6, "feet"),
  8973. default: true
  8974. },
  8975. ]
  8976. ))
  8977. characterMakers.push(() => makeCharacter(
  8978. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8979. {
  8980. front: {
  8981. height: math.unit(6, "feet"),
  8982. weight: math.unit(264, "lb"),
  8983. name: "Front",
  8984. image: {
  8985. source: "./media/characters/hector/front.svg",
  8986. extra: 2280 / 2130,
  8987. bottom: 0.07
  8988. }
  8989. },
  8990. },
  8991. [
  8992. {
  8993. name: "Normal",
  8994. height: math.unit(12.25, "foot"),
  8995. default: true
  8996. },
  8997. {
  8998. name: "Macro",
  8999. height: math.unit(160, "feet")
  9000. },
  9001. ]
  9002. ))
  9003. characterMakers.push(() => makeCharacter(
  9004. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9005. {
  9006. front: {
  9007. height: math.unit(6, "feet"),
  9008. weight: math.unit(150, "lb"),
  9009. name: "Front",
  9010. image: {
  9011. source: "./media/characters/sal/front.svg",
  9012. extra: 1846 / 1699,
  9013. bottom: 0.04
  9014. }
  9015. },
  9016. },
  9017. [
  9018. {
  9019. name: "Megamacro",
  9020. height: math.unit(10, "miles"),
  9021. default: true
  9022. },
  9023. ]
  9024. ))
  9025. characterMakers.push(() => makeCharacter(
  9026. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9027. {
  9028. front: {
  9029. height: math.unit(3, "meters"),
  9030. weight: math.unit(450, "kg"),
  9031. name: "front",
  9032. image: {
  9033. source: "./media/characters/ranger/front.svg",
  9034. extra: 2401 / 2243,
  9035. bottom: 0.05
  9036. }
  9037. },
  9038. },
  9039. [
  9040. {
  9041. name: "Normal",
  9042. height: math.unit(3, "meters"),
  9043. default: true
  9044. },
  9045. ]
  9046. ))
  9047. characterMakers.push(() => makeCharacter(
  9048. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9049. {
  9050. front: {
  9051. height: math.unit(14, "feet"),
  9052. weight: math.unit(800, "kg"),
  9053. name: "Front",
  9054. image: {
  9055. source: "./media/characters/theresa/front.svg",
  9056. extra: 3575 / 3346,
  9057. bottom: 0.03
  9058. }
  9059. },
  9060. },
  9061. [
  9062. {
  9063. name: "Normal",
  9064. height: math.unit(14, "feet"),
  9065. default: true
  9066. },
  9067. ]
  9068. ))
  9069. characterMakers.push(() => makeCharacter(
  9070. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9071. {
  9072. front: {
  9073. height: math.unit(6, "feet"),
  9074. weight: math.unit(3, "kg"),
  9075. name: "Front",
  9076. image: {
  9077. source: "./media/characters/ine/front.svg",
  9078. extra: 678 / 539,
  9079. bottom: 0.023
  9080. }
  9081. },
  9082. },
  9083. [
  9084. {
  9085. name: "Normal",
  9086. height: math.unit(2.265, "feet"),
  9087. default: true
  9088. },
  9089. ]
  9090. ))
  9091. characterMakers.push(() => makeCharacter(
  9092. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9093. {
  9094. front: {
  9095. height: math.unit(5, "feet"),
  9096. weight: math.unit(30, "kg"),
  9097. name: "Front",
  9098. image: {
  9099. source: "./media/characters/vial/front.svg",
  9100. extra: 1365 / 1277,
  9101. bottom: 0.04
  9102. }
  9103. },
  9104. },
  9105. [
  9106. {
  9107. name: "Normal",
  9108. height: math.unit(5, "feet"),
  9109. default: true
  9110. },
  9111. ]
  9112. ))
  9113. characterMakers.push(() => makeCharacter(
  9114. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9115. {
  9116. side: {
  9117. height: math.unit(3.4, "meters"),
  9118. weight: math.unit(1000, "lb"),
  9119. name: "Side",
  9120. image: {
  9121. source: "./media/characters/rovoska/side.svg",
  9122. extra: 4403 / 1515
  9123. }
  9124. },
  9125. },
  9126. [
  9127. {
  9128. name: "Normal",
  9129. height: math.unit(3.4, "meters"),
  9130. default: true
  9131. },
  9132. ]
  9133. ))
  9134. characterMakers.push(() => makeCharacter(
  9135. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9136. {
  9137. front: {
  9138. height: math.unit(8, "feet"),
  9139. weight: math.unit(315, "lb"),
  9140. name: "Front",
  9141. image: {
  9142. source: "./media/characters/gunner-rotthbauer/front.svg"
  9143. }
  9144. },
  9145. back: {
  9146. height: math.unit(8, "feet"),
  9147. weight: math.unit(315, "lb"),
  9148. name: "Back",
  9149. image: {
  9150. source: "./media/characters/gunner-rotthbauer/back.svg"
  9151. }
  9152. },
  9153. },
  9154. [
  9155. {
  9156. name: "Micro",
  9157. height: math.unit(3.5, "inches")
  9158. },
  9159. {
  9160. name: "Normal",
  9161. height: math.unit(8, "feet"),
  9162. default: true
  9163. },
  9164. {
  9165. name: "Macro",
  9166. height: math.unit(250, "feet")
  9167. },
  9168. {
  9169. name: "Megamacro",
  9170. height: math.unit(1, "AU")
  9171. },
  9172. ]
  9173. ))
  9174. characterMakers.push(() => makeCharacter(
  9175. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9176. {
  9177. front: {
  9178. height: math.unit(5 + 5 / 12, "feet"),
  9179. weight: math.unit(140, "lb"),
  9180. name: "Front",
  9181. image: {
  9182. source: "./media/characters/allatia/front.svg",
  9183. extra: 1227 / 1180,
  9184. bottom: 0.027
  9185. }
  9186. },
  9187. },
  9188. [
  9189. {
  9190. name: "Normal",
  9191. height: math.unit(5 + 5 / 12, "feet")
  9192. },
  9193. {
  9194. name: "Macro",
  9195. height: math.unit(250, "feet"),
  9196. default: true
  9197. },
  9198. {
  9199. name: "Megamacro",
  9200. height: math.unit(8, "miles")
  9201. }
  9202. ]
  9203. ))
  9204. characterMakers.push(() => makeCharacter(
  9205. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9206. {
  9207. front: {
  9208. height: math.unit(6, "feet"),
  9209. weight: math.unit(120, "lb"),
  9210. name: "Front",
  9211. image: {
  9212. source: "./media/characters/tene/front.svg",
  9213. extra: 1728 / 1578,
  9214. bottom: 0.022
  9215. }
  9216. },
  9217. stomping: {
  9218. height: math.unit(2.025, "meters"),
  9219. weight: math.unit(120, "lb"),
  9220. name: "Stomping",
  9221. image: {
  9222. source: "./media/characters/tene/stomping.svg",
  9223. extra: 938 / 873,
  9224. bottom: 0.01
  9225. }
  9226. },
  9227. sitting: {
  9228. height: math.unit(1, "meter"),
  9229. weight: math.unit(120, "lb"),
  9230. name: "Sitting",
  9231. image: {
  9232. source: "./media/characters/tene/sitting.svg",
  9233. extra: 437 / 415,
  9234. bottom: 0.1
  9235. }
  9236. },
  9237. feral: {
  9238. height: math.unit(3.9, "feet"),
  9239. weight: math.unit(250, "lb"),
  9240. name: "Feral",
  9241. image: {
  9242. source: "./media/characters/tene/feral.svg",
  9243. extra: 717 / 458,
  9244. bottom: 0.179
  9245. }
  9246. },
  9247. },
  9248. [
  9249. {
  9250. name: "Normal",
  9251. height: math.unit(6, "feet")
  9252. },
  9253. {
  9254. name: "Macro",
  9255. height: math.unit(300, "feet"),
  9256. default: true
  9257. },
  9258. {
  9259. name: "Megamacro",
  9260. height: math.unit(5, "miles")
  9261. },
  9262. ]
  9263. ))
  9264. characterMakers.push(() => makeCharacter(
  9265. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9266. {
  9267. side: {
  9268. height: math.unit(6, "feet"),
  9269. name: "Side",
  9270. image: {
  9271. source: "./media/characters/evander/side.svg",
  9272. extra: 877 / 477
  9273. }
  9274. },
  9275. },
  9276. [
  9277. {
  9278. name: "Normal",
  9279. height: math.unit(0.83, "meters"),
  9280. default: true
  9281. },
  9282. ]
  9283. ))
  9284. characterMakers.push(() => makeCharacter(
  9285. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9286. {
  9287. front: {
  9288. height: math.unit(12, "feet"),
  9289. weight: math.unit(1000, "lb"),
  9290. name: "Front",
  9291. image: {
  9292. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9293. extra: 1762 / 1611
  9294. }
  9295. },
  9296. back: {
  9297. height: math.unit(12, "feet"),
  9298. weight: math.unit(1000, "lb"),
  9299. name: "Back",
  9300. image: {
  9301. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9302. extra: 1762 / 1611
  9303. }
  9304. },
  9305. },
  9306. [
  9307. {
  9308. name: "Normal",
  9309. height: math.unit(12, "feet"),
  9310. default: true
  9311. },
  9312. {
  9313. name: "Kaiju",
  9314. height: math.unit(150, "feet")
  9315. },
  9316. ]
  9317. ))
  9318. characterMakers.push(() => makeCharacter(
  9319. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9320. {
  9321. front: {
  9322. height: math.unit(6, "feet"),
  9323. weight: math.unit(150, "lb"),
  9324. name: "Front",
  9325. image: {
  9326. source: "./media/characters/zero-alurus/front.svg"
  9327. }
  9328. },
  9329. back: {
  9330. height: math.unit(6, "feet"),
  9331. weight: math.unit(150, "lb"),
  9332. name: "Back",
  9333. image: {
  9334. source: "./media/characters/zero-alurus/back.svg"
  9335. }
  9336. },
  9337. },
  9338. [
  9339. {
  9340. name: "Normal",
  9341. height: math.unit(5 + 10 / 12, "feet")
  9342. },
  9343. {
  9344. name: "Macro",
  9345. height: math.unit(60, "feet"),
  9346. default: true
  9347. },
  9348. {
  9349. name: "Macro+",
  9350. height: math.unit(450, "feet")
  9351. },
  9352. ]
  9353. ))
  9354. characterMakers.push(() => makeCharacter(
  9355. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9356. {
  9357. front: {
  9358. height: math.unit(6, "feet"),
  9359. weight: math.unit(200, "lb"),
  9360. name: "Front",
  9361. image: {
  9362. source: "./media/characters/mega-shi/front.svg",
  9363. extra: 1279 / 1250,
  9364. bottom: 0.02
  9365. }
  9366. },
  9367. back: {
  9368. height: math.unit(6, "feet"),
  9369. weight: math.unit(200, "lb"),
  9370. name: "Back",
  9371. image: {
  9372. source: "./media/characters/mega-shi/back.svg",
  9373. extra: 1279 / 1250,
  9374. bottom: 0.02
  9375. }
  9376. },
  9377. },
  9378. [
  9379. {
  9380. name: "Micro",
  9381. height: math.unit(16 + 6 / 12, "feet")
  9382. },
  9383. {
  9384. name: "Third Dimension",
  9385. height: math.unit(40, "meters")
  9386. },
  9387. {
  9388. name: "Normal",
  9389. height: math.unit(660, "feet"),
  9390. default: true
  9391. },
  9392. {
  9393. name: "Megamacro",
  9394. height: math.unit(10, "miles")
  9395. },
  9396. {
  9397. name: "Planetary Launch",
  9398. height: math.unit(500, "miles")
  9399. },
  9400. {
  9401. name: "Interstellar",
  9402. height: math.unit(1e9, "miles")
  9403. },
  9404. {
  9405. name: "Leaving the Universe",
  9406. height: math.unit(1, "gigaparsec")
  9407. },
  9408. {
  9409. name: "Travelling Universes",
  9410. height: math.unit(30e15, "parsecs")
  9411. },
  9412. ]
  9413. ))
  9414. characterMakers.push(() => makeCharacter(
  9415. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9416. {
  9417. front: {
  9418. height: math.unit(6, "feet"),
  9419. weight: math.unit(150, "lb"),
  9420. name: "Front",
  9421. image: {
  9422. source: "./media/characters/odyssey/front.svg",
  9423. extra: 1782 / 1582,
  9424. bottom: 0.01
  9425. }
  9426. },
  9427. side: {
  9428. height: math.unit(5.7, "feet"),
  9429. weight: math.unit(140, "lb"),
  9430. name: "Side",
  9431. image: {
  9432. source: "./media/characters/odyssey/side.svg",
  9433. extra: 6462 / 5700
  9434. }
  9435. },
  9436. },
  9437. [
  9438. {
  9439. name: "Normal",
  9440. height: math.unit(5 + 4 / 12, "feet")
  9441. },
  9442. {
  9443. name: "Macro",
  9444. height: math.unit(1, "km")
  9445. },
  9446. {
  9447. name: "Megamacro",
  9448. height: math.unit(3000, "km")
  9449. },
  9450. {
  9451. name: "Gigamacro",
  9452. height: math.unit(1, "AU"),
  9453. default: true
  9454. },
  9455. {
  9456. name: "Omniversal",
  9457. height: math.unit(100e14, "lightyears")
  9458. },
  9459. ]
  9460. ))
  9461. characterMakers.push(() => makeCharacter(
  9462. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9463. {
  9464. front: {
  9465. height: math.unit(6, "feet"),
  9466. weight: math.unit(300, "lb"),
  9467. name: "Front",
  9468. image: {
  9469. source: "./media/characters/mekuto/front.svg",
  9470. extra: 921 / 832,
  9471. bottom: 0.03
  9472. }
  9473. },
  9474. hand: {
  9475. height: math.unit(6 / 10.24, "feet"),
  9476. name: "Hand",
  9477. image: {
  9478. source: "./media/characters/mekuto/hand.svg"
  9479. }
  9480. },
  9481. foot: {
  9482. height: math.unit(6 / 5.05, "feet"),
  9483. name: "Foot",
  9484. image: {
  9485. source: "./media/characters/mekuto/foot.svg"
  9486. }
  9487. },
  9488. },
  9489. [
  9490. {
  9491. name: "Minimicro",
  9492. height: math.unit(0.2, "inches")
  9493. },
  9494. {
  9495. name: "Micro",
  9496. height: math.unit(1.5, "inches")
  9497. },
  9498. {
  9499. name: "Normal",
  9500. height: math.unit(5 + 11 / 12, "feet"),
  9501. default: true
  9502. },
  9503. {
  9504. name: "Minimacro",
  9505. height: math.unit(17 + 9 / 12, "feet")
  9506. },
  9507. {
  9508. name: "Macro",
  9509. height: math.unit(177.5, "feet")
  9510. },
  9511. {
  9512. name: "Megamacro",
  9513. height: math.unit(152, "miles")
  9514. },
  9515. ]
  9516. ))
  9517. characterMakers.push(() => makeCharacter(
  9518. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9519. {
  9520. front: {
  9521. height: math.unit(6.5, "inches"),
  9522. weight: math.unit(13, "oz"),
  9523. name: "Front",
  9524. image: {
  9525. source: "./media/characters/dafydd-tomos/front.svg",
  9526. extra: 2990 / 2603,
  9527. bottom: 0.03
  9528. }
  9529. },
  9530. },
  9531. [
  9532. {
  9533. name: "Micro",
  9534. height: math.unit(6.5, "inches"),
  9535. default: true
  9536. },
  9537. ]
  9538. ))
  9539. characterMakers.push(() => makeCharacter(
  9540. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9541. {
  9542. front: {
  9543. height: math.unit(6, "feet"),
  9544. weight: math.unit(150, "lb"),
  9545. name: "Front",
  9546. image: {
  9547. source: "./media/characters/splinter/front.svg",
  9548. extra: 2990 / 2882,
  9549. bottom: 0.04
  9550. }
  9551. },
  9552. back: {
  9553. height: math.unit(6, "feet"),
  9554. weight: math.unit(150, "lb"),
  9555. name: "Back",
  9556. image: {
  9557. source: "./media/characters/splinter/back.svg",
  9558. extra: 2990 / 2882,
  9559. bottom: 0.04
  9560. }
  9561. },
  9562. },
  9563. [
  9564. {
  9565. name: "Normal",
  9566. height: math.unit(6, "feet")
  9567. },
  9568. {
  9569. name: "Macro",
  9570. height: math.unit(230, "meters"),
  9571. default: true
  9572. },
  9573. ]
  9574. ))
  9575. characterMakers.push(() => makeCharacter(
  9576. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9577. {
  9578. front: {
  9579. height: math.unit(4 + 10 / 12, "feet"),
  9580. weight: math.unit(480, "lb"),
  9581. name: "Front",
  9582. image: {
  9583. source: "./media/characters/snow-gabumon/front.svg",
  9584. extra: 1140 / 963,
  9585. bottom: 0.058
  9586. }
  9587. },
  9588. back: {
  9589. height: math.unit(4 + 10 / 12, "feet"),
  9590. weight: math.unit(480, "lb"),
  9591. name: "Back",
  9592. image: {
  9593. source: "./media/characters/snow-gabumon/back.svg",
  9594. extra: 1115 / 962,
  9595. bottom: 0.041
  9596. }
  9597. },
  9598. frontUndresed: {
  9599. height: math.unit(4 + 10 / 12, "feet"),
  9600. weight: math.unit(480, "lb"),
  9601. name: "Front (Undressed)",
  9602. image: {
  9603. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9604. extra: 1061 / 960,
  9605. bottom: 0.045
  9606. }
  9607. },
  9608. },
  9609. [
  9610. {
  9611. name: "Micro",
  9612. height: math.unit(1, "inch")
  9613. },
  9614. {
  9615. name: "Normal",
  9616. height: math.unit(4 + 10 / 12, "feet"),
  9617. default: true
  9618. },
  9619. {
  9620. name: "Macro",
  9621. height: math.unit(200, "feet")
  9622. },
  9623. {
  9624. name: "Megamacro",
  9625. height: math.unit(120, "miles")
  9626. },
  9627. {
  9628. name: "Gigamacro",
  9629. height: math.unit(9800, "miles")
  9630. },
  9631. ]
  9632. ))
  9633. characterMakers.push(() => makeCharacter(
  9634. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9635. {
  9636. front: {
  9637. height: math.unit(1.7, "meters"),
  9638. weight: math.unit(140, "lb"),
  9639. name: "Front",
  9640. image: {
  9641. source: "./media/characters/moody/front.svg",
  9642. extra: 3226 / 3007,
  9643. bottom: 0.087
  9644. }
  9645. },
  9646. },
  9647. [
  9648. {
  9649. name: "Micro",
  9650. height: math.unit(1, "mm")
  9651. },
  9652. {
  9653. name: "Normal",
  9654. height: math.unit(1.7, "meters"),
  9655. default: true
  9656. },
  9657. {
  9658. name: "Macro",
  9659. height: math.unit(80, "meters")
  9660. },
  9661. {
  9662. name: "Macro+",
  9663. height: math.unit(500, "meters")
  9664. },
  9665. ]
  9666. ))
  9667. characterMakers.push(() => makeCharacter(
  9668. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9669. {
  9670. front: {
  9671. height: math.unit(6, "feet"),
  9672. weight: math.unit(150, "lb"),
  9673. name: "Front",
  9674. image: {
  9675. source: "./media/characters/zyas/front.svg",
  9676. extra: 1180 / 1120,
  9677. bottom: 0.045
  9678. }
  9679. },
  9680. },
  9681. [
  9682. {
  9683. name: "Normal",
  9684. height: math.unit(10, "feet"),
  9685. default: true
  9686. },
  9687. {
  9688. name: "Macro",
  9689. height: math.unit(500, "feet")
  9690. },
  9691. {
  9692. name: "Megamacro",
  9693. height: math.unit(5, "miles")
  9694. },
  9695. {
  9696. name: "Teramacro",
  9697. height: math.unit(150000, "miles")
  9698. },
  9699. ]
  9700. ))
  9701. characterMakers.push(() => makeCharacter(
  9702. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9703. {
  9704. front: {
  9705. height: math.unit(6, "feet"),
  9706. weight: math.unit(150, "lb"),
  9707. name: "Front",
  9708. image: {
  9709. source: "./media/characters/cuon/front.svg",
  9710. extra: 1390 / 1320,
  9711. bottom: 0.008
  9712. }
  9713. },
  9714. },
  9715. [
  9716. {
  9717. name: "Micro",
  9718. height: math.unit(3, "inches")
  9719. },
  9720. {
  9721. name: "Normal",
  9722. height: math.unit(18 + 9 / 12, "feet"),
  9723. default: true
  9724. },
  9725. {
  9726. name: "Macro",
  9727. height: math.unit(360, "feet")
  9728. },
  9729. {
  9730. name: "Megamacro",
  9731. height: math.unit(360, "miles")
  9732. },
  9733. ]
  9734. ))
  9735. characterMakers.push(() => makeCharacter(
  9736. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9737. {
  9738. front: {
  9739. height: math.unit(2.4, "meters"),
  9740. weight: math.unit(70, "kg"),
  9741. name: "Front",
  9742. image: {
  9743. source: "./media/characters/nyanuxk/front.svg",
  9744. extra: 1172 / 1084,
  9745. bottom: 0.065
  9746. }
  9747. },
  9748. side: {
  9749. height: math.unit(2.4, "meters"),
  9750. weight: math.unit(70, "kg"),
  9751. name: "Side",
  9752. image: {
  9753. source: "./media/characters/nyanuxk/side.svg",
  9754. extra: 1190 / 1132,
  9755. bottom: 0.007
  9756. }
  9757. },
  9758. back: {
  9759. height: math.unit(2.4, "meters"),
  9760. weight: math.unit(70, "kg"),
  9761. name: "Back",
  9762. image: {
  9763. source: "./media/characters/nyanuxk/back.svg",
  9764. extra: 1200 / 1141,
  9765. bottom: 0.015
  9766. }
  9767. },
  9768. foot: {
  9769. height: math.unit(0.52, "meters"),
  9770. name: "Foot",
  9771. image: {
  9772. source: "./media/characters/nyanuxk/foot.svg"
  9773. }
  9774. },
  9775. },
  9776. [
  9777. {
  9778. name: "Micro",
  9779. height: math.unit(2, "cm")
  9780. },
  9781. {
  9782. name: "Normal",
  9783. height: math.unit(2.4, "meters"),
  9784. default: true
  9785. },
  9786. {
  9787. name: "Smaller Macro",
  9788. height: math.unit(120, "meters")
  9789. },
  9790. {
  9791. name: "Bigger Macro",
  9792. height: math.unit(1.2, "km")
  9793. },
  9794. {
  9795. name: "Megamacro",
  9796. height: math.unit(15, "kilometers")
  9797. },
  9798. {
  9799. name: "Gigamacro",
  9800. height: math.unit(2000, "km")
  9801. },
  9802. {
  9803. name: "Teramacro",
  9804. height: math.unit(500000, "km")
  9805. },
  9806. ]
  9807. ))
  9808. characterMakers.push(() => makeCharacter(
  9809. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9810. {
  9811. side: {
  9812. height: math.unit(6, "feet"),
  9813. name: "Side",
  9814. image: {
  9815. source: "./media/characters/ailbhe/side.svg",
  9816. extra: 757 / 464,
  9817. bottom: 0.041
  9818. }
  9819. },
  9820. },
  9821. [
  9822. {
  9823. name: "Normal",
  9824. height: math.unit(1.07, "meters"),
  9825. default: true
  9826. },
  9827. ]
  9828. ))
  9829. characterMakers.push(() => makeCharacter(
  9830. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9831. {
  9832. front: {
  9833. height: math.unit(6, "feet"),
  9834. weight: math.unit(120, "kg"),
  9835. name: "Front",
  9836. image: {
  9837. source: "./media/characters/zevulfius/front.svg",
  9838. extra: 965 / 903
  9839. }
  9840. },
  9841. side: {
  9842. height: math.unit(6, "feet"),
  9843. weight: math.unit(120, "kg"),
  9844. name: "Side",
  9845. image: {
  9846. source: "./media/characters/zevulfius/side.svg",
  9847. extra: 939 / 900
  9848. }
  9849. },
  9850. back: {
  9851. height: math.unit(6, "feet"),
  9852. weight: math.unit(120, "kg"),
  9853. name: "Back",
  9854. image: {
  9855. source: "./media/characters/zevulfius/back.svg",
  9856. extra: 918 / 854,
  9857. bottom: 0.005
  9858. }
  9859. },
  9860. foot: {
  9861. height: math.unit(6 / 3.72, "feet"),
  9862. name: "Foot",
  9863. image: {
  9864. source: "./media/characters/zevulfius/foot.svg"
  9865. }
  9866. },
  9867. },
  9868. [
  9869. {
  9870. name: "Macro",
  9871. height: math.unit(750, "meters")
  9872. },
  9873. {
  9874. name: "Megamacro",
  9875. height: math.unit(20, "km"),
  9876. default: true
  9877. },
  9878. {
  9879. name: "Gigamacro",
  9880. height: math.unit(2000, "km")
  9881. },
  9882. {
  9883. name: "Teramacro",
  9884. height: math.unit(250000, "km")
  9885. },
  9886. ]
  9887. ))
  9888. characterMakers.push(() => makeCharacter(
  9889. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9890. {
  9891. front: {
  9892. height: math.unit(100, "feet"),
  9893. weight: math.unit(350, "kg"),
  9894. name: "Front",
  9895. image: {
  9896. source: "./media/characters/rikes/front.svg",
  9897. extra: 1565 / 1483,
  9898. bottom: 0.017
  9899. }
  9900. },
  9901. },
  9902. [
  9903. {
  9904. name: "Macro",
  9905. height: math.unit(100, "feet"),
  9906. default: true
  9907. },
  9908. ]
  9909. ))
  9910. characterMakers.push(() => makeCharacter(
  9911. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9912. {
  9913. anthro: {
  9914. height: math.unit(8, "feet"),
  9915. weight: math.unit(120, "kg"),
  9916. name: "Anthro",
  9917. image: {
  9918. source: "./media/characters/adam-silver-mane/anthro.svg",
  9919. extra: 5743 / 5339,
  9920. bottom: 0.07
  9921. }
  9922. },
  9923. taur: {
  9924. height: math.unit(16, "feet"),
  9925. weight: math.unit(1500, "kg"),
  9926. name: "Taur",
  9927. image: {
  9928. source: "./media/characters/adam-silver-mane/taur.svg",
  9929. extra: 1713 / 1571,
  9930. bottom: 0.01
  9931. }
  9932. },
  9933. },
  9934. [
  9935. {
  9936. name: "Normal",
  9937. height: math.unit(8, "feet")
  9938. },
  9939. {
  9940. name: "Minimacro",
  9941. height: math.unit(80, "feet")
  9942. },
  9943. {
  9944. name: "Macro",
  9945. height: math.unit(800, "feet"),
  9946. default: true
  9947. },
  9948. {
  9949. name: "Megamacro",
  9950. height: math.unit(8000, "feet")
  9951. },
  9952. {
  9953. name: "Gigamacro",
  9954. height: math.unit(800, "miles")
  9955. },
  9956. {
  9957. name: "Teramacro",
  9958. height: math.unit(80000, "miles")
  9959. },
  9960. {
  9961. name: "Celestial",
  9962. height: math.unit(8e6, "miles")
  9963. },
  9964. {
  9965. name: "Star Dragon",
  9966. height: math.unit(800000, "parsecs")
  9967. },
  9968. {
  9969. name: "Godly",
  9970. height: math.unit(800, "teraparsecs")
  9971. },
  9972. ]
  9973. ))
  9974. characterMakers.push(() => makeCharacter(
  9975. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9976. {
  9977. front: {
  9978. height: math.unit(6, "feet"),
  9979. weight: math.unit(150, "lb"),
  9980. name: "Front",
  9981. image: {
  9982. source: "./media/characters/ky'owin/front.svg",
  9983. extra: 3888 / 3068,
  9984. bottom: 0.015
  9985. }
  9986. },
  9987. },
  9988. [
  9989. {
  9990. name: "Normal",
  9991. height: math.unit(6 + 8 / 12, "feet")
  9992. },
  9993. {
  9994. name: "Large",
  9995. height: math.unit(68, "feet")
  9996. },
  9997. {
  9998. name: "Macro",
  9999. height: math.unit(132, "feet")
  10000. },
  10001. {
  10002. name: "Macro+",
  10003. height: math.unit(340, "feet")
  10004. },
  10005. {
  10006. name: "Macro++",
  10007. height: math.unit(680, "feet"),
  10008. default: true
  10009. },
  10010. {
  10011. name: "Megamacro",
  10012. height: math.unit(1, "mile")
  10013. },
  10014. {
  10015. name: "Megamacro+",
  10016. height: math.unit(10, "miles")
  10017. },
  10018. ]
  10019. ))
  10020. characterMakers.push(() => makeCharacter(
  10021. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10022. {
  10023. front: {
  10024. height: math.unit(4, "feet"),
  10025. weight: math.unit(50, "lb"),
  10026. name: "Front",
  10027. image: {
  10028. source: "./media/characters/mal/front.svg",
  10029. extra: 785 / 724,
  10030. bottom: 0.07
  10031. }
  10032. },
  10033. },
  10034. [
  10035. {
  10036. name: "Micro",
  10037. height: math.unit(4, "inches")
  10038. },
  10039. {
  10040. name: "Normal",
  10041. height: math.unit(4, "feet"),
  10042. default: true
  10043. },
  10044. {
  10045. name: "Macro",
  10046. height: math.unit(200, "feet")
  10047. },
  10048. ]
  10049. ))
  10050. characterMakers.push(() => makeCharacter(
  10051. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10052. {
  10053. front: {
  10054. height: math.unit(6, "feet"),
  10055. weight: math.unit(150, "lb"),
  10056. name: "Front",
  10057. image: {
  10058. source: "./media/characters/jordan-deware/front.svg",
  10059. extra: 1191 / 1012
  10060. }
  10061. },
  10062. },
  10063. [
  10064. {
  10065. name: "Nano",
  10066. height: math.unit(0.01, "mm")
  10067. },
  10068. {
  10069. name: "Minimicro",
  10070. height: math.unit(1, "mm")
  10071. },
  10072. {
  10073. name: "Micro",
  10074. height: math.unit(0.5, "inches")
  10075. },
  10076. {
  10077. name: "Normal",
  10078. height: math.unit(4, "feet"),
  10079. default: true
  10080. },
  10081. {
  10082. name: "Minimacro",
  10083. height: math.unit(40, "meters")
  10084. },
  10085. {
  10086. name: "Small Macro",
  10087. height: math.unit(400, "meters")
  10088. },
  10089. {
  10090. name: "Macro",
  10091. height: math.unit(4, "miles")
  10092. },
  10093. {
  10094. name: "Megamacro",
  10095. height: math.unit(40, "miles")
  10096. },
  10097. {
  10098. name: "Megamacro+",
  10099. height: math.unit(400, "miles")
  10100. },
  10101. {
  10102. name: "Gigamacro",
  10103. height: math.unit(400000, "miles")
  10104. },
  10105. ]
  10106. ))
  10107. characterMakers.push(() => makeCharacter(
  10108. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10109. {
  10110. side: {
  10111. height: math.unit(6, "feet"),
  10112. weight: math.unit(150, "lb"),
  10113. name: "Side",
  10114. image: {
  10115. source: "./media/characters/kimiko/side.svg",
  10116. extra: 600 / 358
  10117. }
  10118. },
  10119. },
  10120. [
  10121. {
  10122. name: "Normal",
  10123. height: math.unit(15, "feet"),
  10124. default: true
  10125. },
  10126. {
  10127. name: "Macro",
  10128. height: math.unit(220, "feet")
  10129. },
  10130. {
  10131. name: "Macro+",
  10132. height: math.unit(1450, "feet")
  10133. },
  10134. {
  10135. name: "Megamacro",
  10136. height: math.unit(11500, "feet")
  10137. },
  10138. {
  10139. name: "Gigamacro",
  10140. height: math.unit(9500, "miles")
  10141. },
  10142. {
  10143. name: "Teramacro",
  10144. height: math.unit(2208005005, "miles")
  10145. },
  10146. {
  10147. name: "Examacro",
  10148. height: math.unit(2750, "parsecs")
  10149. },
  10150. {
  10151. name: "Zettamacro",
  10152. height: math.unit(101500, "parsecs")
  10153. },
  10154. ]
  10155. ))
  10156. characterMakers.push(() => makeCharacter(
  10157. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10158. {
  10159. front: {
  10160. height: math.unit(6, "feet"),
  10161. weight: math.unit(70, "kg"),
  10162. name: "Front",
  10163. image: {
  10164. source: "./media/characters/andrew-sleepy/front.svg"
  10165. }
  10166. },
  10167. side: {
  10168. height: math.unit(6, "feet"),
  10169. weight: math.unit(70, "kg"),
  10170. name: "Side",
  10171. image: {
  10172. source: "./media/characters/andrew-sleepy/side.svg"
  10173. }
  10174. },
  10175. },
  10176. [
  10177. {
  10178. name: "Micro",
  10179. height: math.unit(1, "mm"),
  10180. default: true
  10181. },
  10182. ]
  10183. ))
  10184. characterMakers.push(() => makeCharacter(
  10185. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10186. {
  10187. front: {
  10188. height: math.unit(6, "feet"),
  10189. weight: math.unit(150, "lb"),
  10190. name: "Front",
  10191. image: {
  10192. source: "./media/characters/judio/front.svg",
  10193. extra: 1258 / 1110
  10194. }
  10195. },
  10196. },
  10197. [
  10198. {
  10199. name: "Normal",
  10200. height: math.unit(5 + 6 / 12, "feet")
  10201. },
  10202. {
  10203. name: "Macro",
  10204. height: math.unit(1000, "feet"),
  10205. default: true
  10206. },
  10207. {
  10208. name: "Megamacro",
  10209. height: math.unit(10, "miles")
  10210. },
  10211. ]
  10212. ))
  10213. characterMakers.push(() => makeCharacter(
  10214. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10215. {
  10216. front: {
  10217. height: math.unit(6, "feet"),
  10218. weight: math.unit(68, "kg"),
  10219. name: "Front",
  10220. image: {
  10221. source: "./media/characters/nomaxice/front.svg",
  10222. extra: 1498 / 1073,
  10223. bottom: 0.075
  10224. }
  10225. },
  10226. foot: {
  10227. height: math.unit(1.1, "feet"),
  10228. name: "Foot",
  10229. image: {
  10230. source: "./media/characters/nomaxice/foot.svg"
  10231. }
  10232. },
  10233. },
  10234. [
  10235. {
  10236. name: "Micro",
  10237. height: math.unit(8, "cm")
  10238. },
  10239. {
  10240. name: "Norm",
  10241. height: math.unit(1.82, "m")
  10242. },
  10243. {
  10244. name: "Norm+",
  10245. height: math.unit(8.8, "feet")
  10246. },
  10247. {
  10248. name: "Big",
  10249. height: math.unit(8, "meters"),
  10250. default: true
  10251. },
  10252. {
  10253. name: "Macro",
  10254. height: math.unit(18, "meters")
  10255. },
  10256. {
  10257. name: "Macro+",
  10258. height: math.unit(88, "meters")
  10259. },
  10260. ]
  10261. ))
  10262. characterMakers.push(() => makeCharacter(
  10263. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10264. {
  10265. front: {
  10266. height: math.unit(12, "feet"),
  10267. weight: math.unit(1.5, "tons"),
  10268. name: "Front",
  10269. image: {
  10270. source: "./media/characters/dydros/front.svg",
  10271. extra: 863 / 800,
  10272. bottom: 0.015
  10273. }
  10274. },
  10275. back: {
  10276. height: math.unit(12, "feet"),
  10277. weight: math.unit(1.5, "tons"),
  10278. name: "Back",
  10279. image: {
  10280. source: "./media/characters/dydros/back.svg",
  10281. extra: 900 / 843,
  10282. bottom: 0.005
  10283. }
  10284. },
  10285. },
  10286. [
  10287. {
  10288. name: "Normal",
  10289. height: math.unit(12, "feet"),
  10290. default: true
  10291. },
  10292. ]
  10293. ))
  10294. characterMakers.push(() => makeCharacter(
  10295. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10296. {
  10297. front: {
  10298. height: math.unit(6, "feet"),
  10299. weight: math.unit(100, "kg"),
  10300. name: "Front",
  10301. image: {
  10302. source: "./media/characters/riggi/front.svg",
  10303. extra: 5787 / 5303
  10304. }
  10305. },
  10306. hyper: {
  10307. height: math.unit(6 * 5 / 3, "feet"),
  10308. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10309. name: "Hyper",
  10310. image: {
  10311. source: "./media/characters/riggi/hyper.svg",
  10312. extra: 3595 / 3485
  10313. }
  10314. },
  10315. },
  10316. [
  10317. {
  10318. name: "Small Macro",
  10319. height: math.unit(50, "feet")
  10320. },
  10321. {
  10322. name: "Default",
  10323. height: math.unit(200, "feet"),
  10324. default: true
  10325. },
  10326. {
  10327. name: "Loom",
  10328. height: math.unit(10000, "feet")
  10329. },
  10330. {
  10331. name: "Cruising Altitude",
  10332. height: math.unit(30000, "feet")
  10333. },
  10334. {
  10335. name: "Megamacro",
  10336. height: math.unit(100, "miles")
  10337. },
  10338. {
  10339. name: "Continent Sized",
  10340. height: math.unit(2800, "miles")
  10341. },
  10342. {
  10343. name: "Earth Sized",
  10344. height: math.unit(8000, "miles")
  10345. },
  10346. ]
  10347. ))
  10348. characterMakers.push(() => makeCharacter(
  10349. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10350. {
  10351. front: {
  10352. height: math.unit(6, "feet"),
  10353. weight: math.unit(250, "lb"),
  10354. name: "Front",
  10355. image: {
  10356. source: "./media/characters/alexi/front.svg",
  10357. extra: 3483 / 3291,
  10358. bottom: 0.04
  10359. }
  10360. },
  10361. back: {
  10362. height: math.unit(6, "feet"),
  10363. weight: math.unit(250, "lb"),
  10364. name: "Back",
  10365. image: {
  10366. source: "./media/characters/alexi/back.svg",
  10367. extra: 3533 / 3356,
  10368. bottom: 0.021
  10369. }
  10370. },
  10371. frontTransforming: {
  10372. height: math.unit(8.58, "feet"),
  10373. weight: math.unit(1300, "lb"),
  10374. name: "Transforming",
  10375. image: {
  10376. source: "./media/characters/alexi/front-transforming.svg",
  10377. extra: 437 / 409,
  10378. bottom: 19 / 458.66
  10379. }
  10380. },
  10381. frontTransformed: {
  10382. height: math.unit(12.5, "feet"),
  10383. weight: math.unit(4000, "lb"),
  10384. name: "Transformed",
  10385. image: {
  10386. source: "./media/characters/alexi/front-transformed.svg",
  10387. extra: 639 / 614,
  10388. bottom: 30.55 / 671
  10389. }
  10390. },
  10391. },
  10392. [
  10393. {
  10394. name: "Normal",
  10395. height: math.unit(14, "feet"),
  10396. default: true
  10397. },
  10398. {
  10399. name: "Minimacro",
  10400. height: math.unit(30, "meters")
  10401. },
  10402. {
  10403. name: "Macro",
  10404. height: math.unit(500, "meters")
  10405. },
  10406. {
  10407. name: "Megamacro",
  10408. height: math.unit(9000, "km")
  10409. },
  10410. {
  10411. name: "Teramacro",
  10412. height: math.unit(384000, "km")
  10413. },
  10414. ]
  10415. ))
  10416. characterMakers.push(() => makeCharacter(
  10417. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10418. {
  10419. front: {
  10420. height: math.unit(6, "feet"),
  10421. weight: math.unit(150, "lb"),
  10422. name: "Front",
  10423. image: {
  10424. source: "./media/characters/kayroo/front.svg",
  10425. extra: 1153 / 1038,
  10426. bottom: 0.06
  10427. }
  10428. },
  10429. foot: {
  10430. height: math.unit(6, "feet"),
  10431. weight: math.unit(150, "lb"),
  10432. name: "Foot",
  10433. image: {
  10434. source: "./media/characters/kayroo/foot.svg"
  10435. }
  10436. },
  10437. },
  10438. [
  10439. {
  10440. name: "Normal",
  10441. height: math.unit(8, "feet"),
  10442. default: true
  10443. },
  10444. {
  10445. name: "Minimacro",
  10446. height: math.unit(250, "feet")
  10447. },
  10448. {
  10449. name: "Macro",
  10450. height: math.unit(2800, "feet")
  10451. },
  10452. {
  10453. name: "Megamacro",
  10454. height: math.unit(5200, "feet")
  10455. },
  10456. {
  10457. name: "Gigamacro",
  10458. height: math.unit(27000, "feet")
  10459. },
  10460. {
  10461. name: "Omega",
  10462. height: math.unit(45000, "feet")
  10463. },
  10464. ]
  10465. ))
  10466. characterMakers.push(() => makeCharacter(
  10467. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10468. {
  10469. front: {
  10470. height: math.unit(18, "feet"),
  10471. weight: math.unit(5800, "lb"),
  10472. name: "Front",
  10473. image: {
  10474. source: "./media/characters/rhys/front.svg",
  10475. extra: 3386 / 3090,
  10476. bottom: 0.07
  10477. }
  10478. },
  10479. },
  10480. [
  10481. {
  10482. name: "Normal",
  10483. height: math.unit(18, "feet"),
  10484. default: true
  10485. },
  10486. {
  10487. name: "Working Size",
  10488. height: math.unit(200, "feet")
  10489. },
  10490. {
  10491. name: "Demolition Size",
  10492. height: math.unit(2000, "feet")
  10493. },
  10494. {
  10495. name: "Maximum Licensed Size",
  10496. height: math.unit(5, "miles")
  10497. },
  10498. {
  10499. name: "Maximum Observed Size",
  10500. height: math.unit(10, "yottameters")
  10501. },
  10502. ]
  10503. ))
  10504. characterMakers.push(() => makeCharacter(
  10505. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10506. {
  10507. front: {
  10508. height: math.unit(6, "feet"),
  10509. weight: math.unit(250, "lb"),
  10510. name: "Front",
  10511. image: {
  10512. source: "./media/characters/toto/front.svg",
  10513. extra: 527 / 479,
  10514. bottom: 0.05
  10515. }
  10516. },
  10517. },
  10518. [
  10519. {
  10520. name: "Micro",
  10521. height: math.unit(3, "feet")
  10522. },
  10523. {
  10524. name: "Normal",
  10525. height: math.unit(10, "feet")
  10526. },
  10527. {
  10528. name: "Macro",
  10529. height: math.unit(150, "feet"),
  10530. default: true
  10531. },
  10532. {
  10533. name: "Megamacro",
  10534. height: math.unit(1200, "feet")
  10535. },
  10536. ]
  10537. ))
  10538. characterMakers.push(() => makeCharacter(
  10539. { name: "King", species: ["lion"], tags: ["anthro"] },
  10540. {
  10541. back: {
  10542. height: math.unit(6, "feet"),
  10543. weight: math.unit(150, "lb"),
  10544. name: "Back",
  10545. image: {
  10546. source: "./media/characters/king/back.svg"
  10547. }
  10548. },
  10549. },
  10550. [
  10551. {
  10552. name: "Micro",
  10553. height: math.unit(2, "inches")
  10554. },
  10555. {
  10556. name: "Normal",
  10557. height: math.unit(8, "feet")
  10558. },
  10559. {
  10560. name: "Macro",
  10561. height: math.unit(200, "feet"),
  10562. default: true
  10563. },
  10564. {
  10565. name: "Megamacro",
  10566. height: math.unit(50, "miles")
  10567. },
  10568. ]
  10569. ))
  10570. characterMakers.push(() => makeCharacter(
  10571. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10572. {
  10573. anthro: {
  10574. height: math.unit(6 + 5 / 12, "feet"),
  10575. weight: math.unit(280, "lb"),
  10576. name: "Anthro",
  10577. image: {
  10578. source: "./media/characters/cordite/anthro.svg",
  10579. extra: 1986 / 1905,
  10580. bottom: 0.025
  10581. }
  10582. },
  10583. feral: {
  10584. height: math.unit(2, "feet"),
  10585. weight: math.unit(90, "lb"),
  10586. name: "Feral",
  10587. image: {
  10588. source: "./media/characters/cordite/feral.svg",
  10589. extra: 1260 / 755,
  10590. bottom: 0.05
  10591. }
  10592. },
  10593. },
  10594. [
  10595. {
  10596. name: "Normal",
  10597. height: math.unit(6 + 5 / 12, "feet"),
  10598. default: true
  10599. },
  10600. ]
  10601. ))
  10602. characterMakers.push(() => makeCharacter(
  10603. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10604. {
  10605. front: {
  10606. height: math.unit(6, "feet"),
  10607. weight: math.unit(150, "lb"),
  10608. name: "Front",
  10609. image: {
  10610. source: "./media/characters/pianostrong/front.svg",
  10611. extra: 6577 / 6254,
  10612. bottom: 0.02
  10613. }
  10614. },
  10615. side: {
  10616. height: math.unit(6, "feet"),
  10617. weight: math.unit(150, "lb"),
  10618. name: "Side",
  10619. image: {
  10620. source: "./media/characters/pianostrong/side.svg",
  10621. extra: 6106 / 5730
  10622. }
  10623. },
  10624. back: {
  10625. height: math.unit(6, "feet"),
  10626. weight: math.unit(150, "lb"),
  10627. name: "Back",
  10628. image: {
  10629. source: "./media/characters/pianostrong/back.svg",
  10630. extra: 6085 / 5733,
  10631. bottom: 0.01
  10632. }
  10633. },
  10634. },
  10635. [
  10636. {
  10637. name: "Macro",
  10638. height: math.unit(100, "feet")
  10639. },
  10640. {
  10641. name: "Macro+",
  10642. height: math.unit(300, "feet"),
  10643. default: true
  10644. },
  10645. {
  10646. name: "Macro++",
  10647. height: math.unit(1000, "feet")
  10648. },
  10649. ]
  10650. ))
  10651. characterMakers.push(() => makeCharacter(
  10652. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10653. {
  10654. front: {
  10655. height: math.unit(6, "feet"),
  10656. weight: math.unit(150, "lb"),
  10657. name: "Front",
  10658. image: {
  10659. source: "./media/characters/kona/front.svg",
  10660. extra: 2960 / 2629,
  10661. bottom: 0.005
  10662. }
  10663. },
  10664. },
  10665. [
  10666. {
  10667. name: "Normal",
  10668. height: math.unit(11 + 8 / 12, "feet")
  10669. },
  10670. {
  10671. name: "Macro",
  10672. height: math.unit(850, "feet"),
  10673. default: true
  10674. },
  10675. {
  10676. name: "Macro+",
  10677. height: math.unit(1.5, "km"),
  10678. default: true
  10679. },
  10680. {
  10681. name: "Megamacro",
  10682. height: math.unit(80, "miles")
  10683. },
  10684. {
  10685. name: "Gigamacro",
  10686. height: math.unit(3500, "miles")
  10687. },
  10688. ]
  10689. ))
  10690. characterMakers.push(() => makeCharacter(
  10691. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10692. {
  10693. side: {
  10694. height: math.unit(1.9, "meters"),
  10695. weight: math.unit(326, "kg"),
  10696. name: "Side",
  10697. image: {
  10698. source: "./media/characters/levi/side.svg",
  10699. extra: 1704 / 1334,
  10700. bottom: 0.02
  10701. }
  10702. },
  10703. },
  10704. [
  10705. {
  10706. name: "Normal",
  10707. height: math.unit(1.9, "meters"),
  10708. default: true
  10709. },
  10710. {
  10711. name: "Macro",
  10712. height: math.unit(20, "meters")
  10713. },
  10714. {
  10715. name: "Macro+",
  10716. height: math.unit(200, "meters")
  10717. },
  10718. {
  10719. name: "Megamacro",
  10720. height: math.unit(2, "km")
  10721. },
  10722. {
  10723. name: "Megamacro+",
  10724. height: math.unit(20, "km")
  10725. },
  10726. {
  10727. name: "Gigamacro",
  10728. height: math.unit(2500, "km")
  10729. },
  10730. {
  10731. name: "Gigamacro+",
  10732. height: math.unit(120000, "km")
  10733. },
  10734. {
  10735. name: "Teramacro",
  10736. height: math.unit(7.77e6, "km")
  10737. },
  10738. ]
  10739. ))
  10740. characterMakers.push(() => makeCharacter(
  10741. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10742. {
  10743. front: {
  10744. height: math.unit(6 + 4 / 12, "feet"),
  10745. weight: math.unit(188, "lb"),
  10746. name: "Front",
  10747. image: {
  10748. source: "./media/characters/bmc/front.svg",
  10749. extra: 1067 / 1022,
  10750. bottom: 0.047
  10751. }
  10752. },
  10753. },
  10754. [
  10755. {
  10756. name: "Human-sized",
  10757. height: math.unit(6 + 4 / 12, "feet")
  10758. },
  10759. {
  10760. name: "Small",
  10761. height: math.unit(250, "feet")
  10762. },
  10763. {
  10764. name: "Normal",
  10765. height: math.unit(1250, "feet"),
  10766. default: true
  10767. },
  10768. {
  10769. name: "Good Day",
  10770. height: math.unit(88, "miles")
  10771. },
  10772. {
  10773. name: "Largest Measured Size",
  10774. height: math.unit(11.2e6, "lightyears")
  10775. },
  10776. ]
  10777. ))
  10778. characterMakers.push(() => makeCharacter(
  10779. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10780. {
  10781. front: {
  10782. height: math.unit(20, "feet"),
  10783. weight: math.unit(2016, "kg"),
  10784. name: "Front",
  10785. image: {
  10786. source: "./media/characters/sven-the-kaiju/front.svg",
  10787. extra: 1479 / 1449,
  10788. bottom: 0.05
  10789. }
  10790. },
  10791. },
  10792. [
  10793. {
  10794. name: "Fairy",
  10795. height: math.unit(6, "inches")
  10796. },
  10797. {
  10798. name: "Normal",
  10799. height: math.unit(20, "feet"),
  10800. default: true
  10801. },
  10802. {
  10803. name: "Rampage",
  10804. height: math.unit(200, "feet")
  10805. },
  10806. {
  10807. name: "Archfey Forest Guardian",
  10808. height: math.unit(1, "mile")
  10809. },
  10810. ]
  10811. ))
  10812. characterMakers.push(() => makeCharacter(
  10813. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10814. {
  10815. front: {
  10816. height: math.unit(4, "meters"),
  10817. weight: math.unit(2, "tons"),
  10818. name: "Front",
  10819. image: {
  10820. source: "./media/characters/marik/front.svg",
  10821. extra: 1057 / 1003,
  10822. bottom: 0.08
  10823. }
  10824. },
  10825. },
  10826. [
  10827. {
  10828. name: "Normal",
  10829. height: math.unit(4, "meters"),
  10830. default: true
  10831. },
  10832. {
  10833. name: "Macro",
  10834. height: math.unit(20, "meters")
  10835. },
  10836. {
  10837. name: "Megamacro",
  10838. height: math.unit(50, "km")
  10839. },
  10840. {
  10841. name: "Gigamacro",
  10842. height: math.unit(100, "km")
  10843. },
  10844. {
  10845. name: "Alpha Macro",
  10846. height: math.unit(7.88e7, "yottameters")
  10847. },
  10848. ]
  10849. ))
  10850. characterMakers.push(() => makeCharacter(
  10851. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10852. {
  10853. front: {
  10854. height: math.unit(6, "feet"),
  10855. weight: math.unit(110, "lb"),
  10856. name: "Front",
  10857. image: {
  10858. source: "./media/characters/mel/front.svg",
  10859. extra: 736 / 617,
  10860. bottom: 0.017
  10861. }
  10862. },
  10863. },
  10864. [
  10865. {
  10866. name: "Pico",
  10867. height: math.unit(3, "pm")
  10868. },
  10869. {
  10870. name: "Nano",
  10871. height: math.unit(3, "nm")
  10872. },
  10873. {
  10874. name: "Micro",
  10875. height: math.unit(0.3, "mm"),
  10876. default: true
  10877. },
  10878. {
  10879. name: "Micro+",
  10880. height: math.unit(3, "mm")
  10881. },
  10882. {
  10883. name: "Normal",
  10884. height: math.unit(5 + 10.5 / 12, "feet")
  10885. },
  10886. ]
  10887. ))
  10888. characterMakers.push(() => makeCharacter(
  10889. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10890. {
  10891. kaiju: {
  10892. height: math.unit(1.75, "meters"),
  10893. weight: math.unit(55, "kg"),
  10894. name: "Kaiju",
  10895. image: {
  10896. source: "./media/characters/lykonous/kaiju.svg",
  10897. extra: 1055 / 946,
  10898. bottom: 0.135
  10899. }
  10900. },
  10901. },
  10902. [
  10903. {
  10904. name: "Normal",
  10905. height: math.unit(2.5, "meters"),
  10906. default: true
  10907. },
  10908. {
  10909. name: "Kaiju Dragon",
  10910. height: math.unit(60, "meters")
  10911. },
  10912. {
  10913. name: "Mega Kaiju",
  10914. height: math.unit(120, "km")
  10915. },
  10916. {
  10917. name: "Giga Kaiju",
  10918. height: math.unit(200, "megameters")
  10919. },
  10920. {
  10921. name: "Terra Kaiju",
  10922. height: math.unit(400, "gigameters")
  10923. },
  10924. {
  10925. name: "Kaiju Dragon God",
  10926. height: math.unit(13000, "exaparsecs")
  10927. },
  10928. ]
  10929. ))
  10930. characterMakers.push(() => makeCharacter(
  10931. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10932. {
  10933. front: {
  10934. height: math.unit(6, "feet"),
  10935. weight: math.unit(150, "lb"),
  10936. name: "Front",
  10937. image: {
  10938. source: "./media/characters/blü/front.svg",
  10939. extra: 1883 / 1564,
  10940. bottom: 0.031
  10941. }
  10942. },
  10943. },
  10944. [
  10945. {
  10946. name: "Normal",
  10947. height: math.unit(13, "feet"),
  10948. default: true
  10949. },
  10950. {
  10951. name: "Big Boi",
  10952. height: math.unit(150, "meters")
  10953. },
  10954. {
  10955. name: "Mini Stomper",
  10956. height: math.unit(300, "meters")
  10957. },
  10958. {
  10959. name: "Macro",
  10960. height: math.unit(1000, "meters")
  10961. },
  10962. {
  10963. name: "Megamacro",
  10964. height: math.unit(11000, "meters")
  10965. },
  10966. {
  10967. name: "Gigamacro",
  10968. height: math.unit(11000, "km")
  10969. },
  10970. {
  10971. name: "Teramacro",
  10972. height: math.unit(420000, "km")
  10973. },
  10974. {
  10975. name: "Examacro",
  10976. height: math.unit(120, "parsecs")
  10977. },
  10978. {
  10979. name: "God Tho",
  10980. height: math.unit(98000000000, "parsecs")
  10981. },
  10982. ]
  10983. ))
  10984. characterMakers.push(() => makeCharacter(
  10985. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10986. {
  10987. taurFront: {
  10988. height: math.unit(6, "feet"),
  10989. weight: math.unit(200, "lb"),
  10990. name: "Taur (Front)",
  10991. image: {
  10992. source: "./media/characters/scales/taur-front.svg",
  10993. extra: 1,
  10994. bottom: 0.05
  10995. }
  10996. },
  10997. taurBack: {
  10998. height: math.unit(6, "feet"),
  10999. weight: math.unit(200, "lb"),
  11000. name: "Taur (Back)",
  11001. image: {
  11002. source: "./media/characters/scales/taur-back.svg",
  11003. extra: 1,
  11004. bottom: 0.08
  11005. }
  11006. },
  11007. anthro: {
  11008. height: math.unit(6 * 7 / 12, "feet"),
  11009. weight: math.unit(100, "lb"),
  11010. name: "Anthro",
  11011. image: {
  11012. source: "./media/characters/scales/anthro.svg",
  11013. extra: 1,
  11014. bottom: 0.06
  11015. }
  11016. },
  11017. },
  11018. [
  11019. {
  11020. name: "Normal",
  11021. height: math.unit(12, "feet"),
  11022. default: true
  11023. },
  11024. ]
  11025. ))
  11026. characterMakers.push(() => makeCharacter(
  11027. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11028. {
  11029. front: {
  11030. height: math.unit(6, "feet"),
  11031. weight: math.unit(150, "lb"),
  11032. name: "Front",
  11033. image: {
  11034. source: "./media/characters/koragos/front.svg",
  11035. extra: 841 / 794,
  11036. bottom: 0.035
  11037. }
  11038. },
  11039. back: {
  11040. height: math.unit(6, "feet"),
  11041. weight: math.unit(150, "lb"),
  11042. name: "Back",
  11043. image: {
  11044. source: "./media/characters/koragos/back.svg",
  11045. extra: 841 / 810,
  11046. bottom: 0.022
  11047. }
  11048. },
  11049. },
  11050. [
  11051. {
  11052. name: "Normal",
  11053. height: math.unit(6 + 11 / 12, "feet"),
  11054. default: true
  11055. },
  11056. {
  11057. name: "Macro",
  11058. height: math.unit(490, "feet")
  11059. },
  11060. {
  11061. name: "Megamacro",
  11062. height: math.unit(10, "miles")
  11063. },
  11064. {
  11065. name: "Gigamacro",
  11066. height: math.unit(50, "miles")
  11067. },
  11068. ]
  11069. ))
  11070. characterMakers.push(() => makeCharacter(
  11071. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11072. {
  11073. front: {
  11074. height: math.unit(6, "feet"),
  11075. weight: math.unit(250, "lb"),
  11076. name: "Front",
  11077. image: {
  11078. source: "./media/characters/xylrem/front.svg",
  11079. extra: 3323 / 3050,
  11080. bottom: 0.065
  11081. }
  11082. },
  11083. },
  11084. [
  11085. {
  11086. name: "Micro",
  11087. height: math.unit(4, "feet")
  11088. },
  11089. {
  11090. name: "Normal",
  11091. height: math.unit(16, "feet"),
  11092. default: true
  11093. },
  11094. {
  11095. name: "Macro",
  11096. height: math.unit(2720, "feet")
  11097. },
  11098. {
  11099. name: "Megamacro",
  11100. height: math.unit(25000, "miles")
  11101. },
  11102. ]
  11103. ))
  11104. characterMakers.push(() => makeCharacter(
  11105. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11106. {
  11107. front: {
  11108. height: math.unit(8, "feet"),
  11109. weight: math.unit(250, "kg"),
  11110. name: "Front",
  11111. image: {
  11112. source: "./media/characters/ikideru/front.svg",
  11113. extra: 930 / 870,
  11114. bottom: 0.087
  11115. }
  11116. },
  11117. back: {
  11118. height: math.unit(8, "feet"),
  11119. weight: math.unit(250, "kg"),
  11120. name: "Back",
  11121. image: {
  11122. source: "./media/characters/ikideru/back.svg",
  11123. extra: 919 / 852,
  11124. bottom: 0.055
  11125. }
  11126. },
  11127. },
  11128. [
  11129. {
  11130. name: "Rare",
  11131. height: math.unit(8, "feet"),
  11132. default: true
  11133. },
  11134. {
  11135. name: "Playful Loom",
  11136. height: math.unit(80, "feet")
  11137. },
  11138. {
  11139. name: "City Leaner",
  11140. height: math.unit(230, "feet")
  11141. },
  11142. {
  11143. name: "Megamacro",
  11144. height: math.unit(2500, "feet")
  11145. },
  11146. {
  11147. name: "Gigamacro",
  11148. height: math.unit(26400, "feet")
  11149. },
  11150. {
  11151. name: "Tectonic Shifter",
  11152. height: math.unit(1.7, "megameters")
  11153. },
  11154. {
  11155. name: "Planet Carer",
  11156. height: math.unit(21, "megameters")
  11157. },
  11158. {
  11159. name: "God",
  11160. height: math.unit(11157.22, "parsecs")
  11161. },
  11162. ]
  11163. ))
  11164. characterMakers.push(() => makeCharacter(
  11165. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11166. {
  11167. front: {
  11168. height: math.unit(6, "feet"),
  11169. weight: math.unit(120, "lb"),
  11170. name: "Front",
  11171. image: {
  11172. source: "./media/characters/neo/front.svg"
  11173. }
  11174. },
  11175. },
  11176. [
  11177. {
  11178. name: "Micro",
  11179. height: math.unit(2, "inches"),
  11180. default: true
  11181. },
  11182. {
  11183. name: "Human Size",
  11184. height: math.unit(5 + 8 / 12, "feet")
  11185. },
  11186. ]
  11187. ))
  11188. characterMakers.push(() => makeCharacter(
  11189. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11190. {
  11191. front: {
  11192. height: math.unit(13 + 10 / 12, "feet"),
  11193. weight: math.unit(5320, "lb"),
  11194. name: "Front",
  11195. image: {
  11196. source: "./media/characters/chauncey-chantz/front.svg",
  11197. extra: 1587 / 1435,
  11198. bottom: 0.02
  11199. }
  11200. },
  11201. },
  11202. [
  11203. {
  11204. name: "Normal",
  11205. height: math.unit(13 + 10 / 12, "feet"),
  11206. default: true
  11207. },
  11208. {
  11209. name: "Macro",
  11210. height: math.unit(45, "feet")
  11211. },
  11212. {
  11213. name: "Megamacro",
  11214. height: math.unit(250, "miles")
  11215. },
  11216. {
  11217. name: "Planetary",
  11218. height: math.unit(10000, "miles")
  11219. },
  11220. {
  11221. name: "Galactic",
  11222. height: math.unit(40000, "parsecs")
  11223. },
  11224. {
  11225. name: "Universal",
  11226. height: math.unit(1, "yottameter")
  11227. },
  11228. ]
  11229. ))
  11230. characterMakers.push(() => makeCharacter(
  11231. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11232. {
  11233. front: {
  11234. height: math.unit(6, "feet"),
  11235. weight: math.unit(150, "lb"),
  11236. name: "Front",
  11237. image: {
  11238. source: "./media/characters/epifox/front.svg",
  11239. extra: 1,
  11240. bottom: 0.075
  11241. }
  11242. },
  11243. },
  11244. [
  11245. {
  11246. name: "Micro",
  11247. height: math.unit(6, "inches")
  11248. },
  11249. {
  11250. name: "Normal",
  11251. height: math.unit(12, "feet"),
  11252. default: true
  11253. },
  11254. {
  11255. name: "Macro",
  11256. height: math.unit(3810, "feet")
  11257. },
  11258. {
  11259. name: "Megamacro",
  11260. height: math.unit(500, "miles")
  11261. },
  11262. ]
  11263. ))
  11264. characterMakers.push(() => makeCharacter(
  11265. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11266. {
  11267. front: {
  11268. height: math.unit(1.8796, "m"),
  11269. weight: math.unit(230, "lb"),
  11270. name: "Front",
  11271. image: {
  11272. source: "./media/characters/colin-t/front.svg",
  11273. extra: 1272 / 1193,
  11274. bottom: 0.07
  11275. }
  11276. },
  11277. },
  11278. [
  11279. {
  11280. name: "Micro",
  11281. height: math.unit(0.571, "meters")
  11282. },
  11283. {
  11284. name: "Normal",
  11285. height: math.unit(1.8796, "meters"),
  11286. default: true
  11287. },
  11288. {
  11289. name: "Tall",
  11290. height: math.unit(4, "meters")
  11291. },
  11292. {
  11293. name: "Macro",
  11294. height: math.unit(67.241, "meters")
  11295. },
  11296. {
  11297. name: "Megamacro",
  11298. height: math.unit(371.856, "meters")
  11299. },
  11300. {
  11301. name: "Planetary",
  11302. height: math.unit(12631.5689, "km")
  11303. },
  11304. ]
  11305. ))
  11306. characterMakers.push(() => makeCharacter(
  11307. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11308. {
  11309. front: {
  11310. height: math.unit(1.85, "meters"),
  11311. weight: math.unit(80, "kg"),
  11312. name: "Front",
  11313. image: {
  11314. source: "./media/characters/matvei/front.svg",
  11315. extra: 614 / 594,
  11316. bottom: 0.01
  11317. }
  11318. },
  11319. },
  11320. [
  11321. {
  11322. name: "Normal",
  11323. height: math.unit(1.85, "meters"),
  11324. default: true
  11325. },
  11326. ]
  11327. ))
  11328. characterMakers.push(() => makeCharacter(
  11329. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11330. {
  11331. front: {
  11332. height: math.unit(5 + 9 / 12, "feet"),
  11333. weight: math.unit(70, "lb"),
  11334. name: "Front",
  11335. image: {
  11336. source: "./media/characters/quincy/front.svg",
  11337. extra: 3041 / 2751
  11338. }
  11339. },
  11340. back: {
  11341. height: math.unit(5 + 9 / 12, "feet"),
  11342. weight: math.unit(70, "lb"),
  11343. name: "Back",
  11344. image: {
  11345. source: "./media/characters/quincy/back.svg",
  11346. extra: 3041 / 2751
  11347. }
  11348. },
  11349. flying: {
  11350. height: math.unit(5 + 4 / 12, "feet"),
  11351. weight: math.unit(70, "lb"),
  11352. name: "Flying",
  11353. image: {
  11354. source: "./media/characters/quincy/flying.svg",
  11355. extra: 1044 / 930
  11356. }
  11357. },
  11358. },
  11359. [
  11360. {
  11361. name: "Micro",
  11362. height: math.unit(3, "cm")
  11363. },
  11364. {
  11365. name: "Normal",
  11366. height: math.unit(5 + 9 / 12, "feet")
  11367. },
  11368. {
  11369. name: "Macro",
  11370. height: math.unit(200, "meters"),
  11371. default: true
  11372. },
  11373. {
  11374. name: "Megamacro",
  11375. height: math.unit(1000, "meters")
  11376. },
  11377. ]
  11378. ))
  11379. characterMakers.push(() => makeCharacter(
  11380. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11381. {
  11382. front: {
  11383. height: math.unit(4 + 7 / 12, "feet"),
  11384. weight: math.unit(50, "lb"),
  11385. name: "Front",
  11386. image: {
  11387. source: "./media/characters/vanrel/front.svg",
  11388. extra: 1,
  11389. bottom: 0.02
  11390. }
  11391. },
  11392. frontAlt: {
  11393. height: math.unit(4 + 7 / 12, "feet"),
  11394. weight: math.unit(50, "lb"),
  11395. name: "Front-alt",
  11396. image: {
  11397. source: "./media/characters/vanrel/front-alt.svg",
  11398. extra: 1,
  11399. bottom: 15 / 1511
  11400. }
  11401. },
  11402. elemental: {
  11403. height: math.unit(3, "feet"),
  11404. weight: math.unit(50, "lb"),
  11405. name: "Elemental",
  11406. image: {
  11407. source: "./media/characters/vanrel/elemental.svg",
  11408. extra: 192.3 / 162.8,
  11409. bottom: 1.79 / 194.17
  11410. }
  11411. },
  11412. side: {
  11413. height: math.unit(4 + 7 / 12, "feet"),
  11414. weight: math.unit(50, "lb"),
  11415. name: "Side",
  11416. image: {
  11417. source: "./media/characters/vanrel/side.svg",
  11418. extra: 1,
  11419. bottom: 0.025
  11420. }
  11421. },
  11422. tome: {
  11423. height: math.unit(1.35, "feet"),
  11424. weight: math.unit(10, "lb"),
  11425. name: "Vanrel's Tome",
  11426. rename: true,
  11427. image: {
  11428. source: "./media/characters/vanrel/tome.svg"
  11429. }
  11430. },
  11431. beans: {
  11432. height: math.unit(0.89, "feet"),
  11433. name: "Beans",
  11434. image: {
  11435. source: "./media/characters/vanrel/beans.svg"
  11436. }
  11437. },
  11438. },
  11439. [
  11440. {
  11441. name: "Normal",
  11442. height: math.unit(4 + 7 / 12, "feet"),
  11443. default: true
  11444. },
  11445. ]
  11446. ))
  11447. characterMakers.push(() => makeCharacter(
  11448. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11449. {
  11450. front: {
  11451. height: math.unit(7 + 5 / 12, "feet"),
  11452. weight: math.unit(150, "lb"),
  11453. name: "Front",
  11454. image: {
  11455. source: "./media/characters/kuiper-vanrel/front.svg",
  11456. extra: 1118 / 1068,
  11457. bottom: 0.09
  11458. }
  11459. },
  11460. foot: {
  11461. height: math.unit(0.55, "meters"),
  11462. name: "Foot",
  11463. image: {
  11464. source: "./media/characters/kuiper-vanrel/foot.svg",
  11465. }
  11466. },
  11467. battle: {
  11468. height: math.unit(6.824, "feet"),
  11469. weight: math.unit(150, "lb"),
  11470. name: "Battle",
  11471. image: {
  11472. source: "./media/characters/kuiper-vanrel/battle.svg",
  11473. extra: 1466 / 1327,
  11474. bottom: 29 / 1492.5
  11475. }
  11476. },
  11477. battleAlt: {
  11478. height: math.unit(6.824, "feet"),
  11479. weight: math.unit(150, "lb"),
  11480. name: "Battle (Alt)",
  11481. image: {
  11482. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11483. extra: 2081 / 1965,
  11484. bottom: 40 / 2121
  11485. }
  11486. },
  11487. },
  11488. [
  11489. {
  11490. name: "Normal",
  11491. height: math.unit(7 + 5 / 12, "feet"),
  11492. default: true
  11493. },
  11494. ]
  11495. ))
  11496. characterMakers.push(() => makeCharacter(
  11497. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11498. {
  11499. front: {
  11500. height: math.unit(8 + 5 / 12, "feet"),
  11501. weight: math.unit(150, "lb"),
  11502. name: "Front",
  11503. image: {
  11504. source: "./media/characters/keset-vanrel/front.svg",
  11505. extra: 1150 / 1084,
  11506. bottom: 0.05
  11507. }
  11508. },
  11509. hand: {
  11510. height: math.unit(0.6, "meters"),
  11511. name: "Hand",
  11512. image: {
  11513. source: "./media/characters/keset-vanrel/hand.svg"
  11514. }
  11515. },
  11516. foot: {
  11517. height: math.unit(0.94978, "meters"),
  11518. name: "Foot",
  11519. image: {
  11520. source: "./media/characters/keset-vanrel/foot.svg"
  11521. }
  11522. },
  11523. battle: {
  11524. height: math.unit(7.408, "feet"),
  11525. weight: math.unit(150, "lb"),
  11526. name: "Battle",
  11527. image: {
  11528. source: "./media/characters/keset-vanrel/battle.svg",
  11529. extra: 1890 / 1386,
  11530. bottom: 73.28 / 1970
  11531. }
  11532. },
  11533. },
  11534. [
  11535. {
  11536. name: "Normal",
  11537. height: math.unit(8 + 5 / 12, "feet"),
  11538. default: true
  11539. },
  11540. ]
  11541. ))
  11542. characterMakers.push(() => makeCharacter(
  11543. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11544. {
  11545. front: {
  11546. height: math.unit(6, "feet"),
  11547. weight: math.unit(150, "lb"),
  11548. name: "Front",
  11549. image: {
  11550. source: "./media/characters/neos/front.svg",
  11551. extra: 1696 / 992,
  11552. bottom: 0.14
  11553. }
  11554. },
  11555. },
  11556. [
  11557. {
  11558. name: "Normal",
  11559. height: math.unit(54, "cm"),
  11560. default: true
  11561. },
  11562. {
  11563. name: "Macro",
  11564. height: math.unit(100, "m")
  11565. },
  11566. {
  11567. name: "Megamacro",
  11568. height: math.unit(10, "km")
  11569. },
  11570. {
  11571. name: "Megamacro+",
  11572. height: math.unit(100, "km")
  11573. },
  11574. {
  11575. name: "Gigamacro",
  11576. height: math.unit(100, "Mm")
  11577. },
  11578. {
  11579. name: "Teramacro",
  11580. height: math.unit(100, "Gm")
  11581. },
  11582. {
  11583. name: "Examacro",
  11584. height: math.unit(100, "Em")
  11585. },
  11586. {
  11587. name: "Godly",
  11588. height: math.unit(10000, "Ym")
  11589. },
  11590. {
  11591. name: "Beyond Godly",
  11592. height: math.unit(25, "multiverses")
  11593. },
  11594. ]
  11595. ))
  11596. characterMakers.push(() => makeCharacter(
  11597. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11598. {
  11599. feminine: {
  11600. height: math.unit(5, "feet"),
  11601. weight: math.unit(100, "lb"),
  11602. name: "Feminine",
  11603. image: {
  11604. source: "./media/characters/sammy-mouse/feminine.svg",
  11605. extra: 2526 / 2425,
  11606. bottom: 0.123
  11607. }
  11608. },
  11609. masculine: {
  11610. height: math.unit(5, "feet"),
  11611. weight: math.unit(100, "lb"),
  11612. name: "Masculine",
  11613. image: {
  11614. source: "./media/characters/sammy-mouse/masculine.svg",
  11615. extra: 2526 / 2425,
  11616. bottom: 0.123
  11617. }
  11618. },
  11619. },
  11620. [
  11621. {
  11622. name: "Micro",
  11623. height: math.unit(5, "inches")
  11624. },
  11625. {
  11626. name: "Normal",
  11627. height: math.unit(5, "feet"),
  11628. default: true
  11629. },
  11630. {
  11631. name: "Macro",
  11632. height: math.unit(60, "feet")
  11633. },
  11634. ]
  11635. ))
  11636. characterMakers.push(() => makeCharacter(
  11637. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11638. {
  11639. front: {
  11640. height: math.unit(4, "feet"),
  11641. weight: math.unit(50, "lb"),
  11642. name: "Front",
  11643. image: {
  11644. source: "./media/characters/kole/front.svg",
  11645. extra: 1423 / 1303,
  11646. bottom: 0.025
  11647. }
  11648. },
  11649. back: {
  11650. height: math.unit(4, "feet"),
  11651. weight: math.unit(50, "lb"),
  11652. name: "Back",
  11653. image: {
  11654. source: "./media/characters/kole/back.svg",
  11655. extra: 1426 / 1280,
  11656. bottom: 0.02
  11657. }
  11658. },
  11659. },
  11660. [
  11661. {
  11662. name: "Normal",
  11663. height: math.unit(4, "feet"),
  11664. default: true
  11665. },
  11666. ]
  11667. ))
  11668. characterMakers.push(() => makeCharacter(
  11669. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11670. {
  11671. front: {
  11672. height: math.unit(2 + 6 / 12, "feet"),
  11673. weight: math.unit(20, "lb"),
  11674. name: "Front",
  11675. image: {
  11676. source: "./media/characters/rufran/front.svg",
  11677. extra: 2041 / 1839,
  11678. bottom: 0.055
  11679. }
  11680. },
  11681. back: {
  11682. height: math.unit(2 + 6 / 12, "feet"),
  11683. weight: math.unit(20, "lb"),
  11684. name: "Back",
  11685. image: {
  11686. source: "./media/characters/rufran/back.svg",
  11687. extra: 2054 / 1839,
  11688. bottom: 0.01
  11689. }
  11690. },
  11691. hand: {
  11692. height: math.unit(0.2166, "meters"),
  11693. name: "Hand",
  11694. image: {
  11695. source: "./media/characters/rufran/hand.svg"
  11696. }
  11697. },
  11698. foot: {
  11699. height: math.unit(0.185, "meters"),
  11700. name: "Foot",
  11701. image: {
  11702. source: "./media/characters/rufran/foot.svg"
  11703. }
  11704. },
  11705. },
  11706. [
  11707. {
  11708. name: "Micro",
  11709. height: math.unit(1, "inch")
  11710. },
  11711. {
  11712. name: "Normal",
  11713. height: math.unit(2 + 6 / 12, "feet"),
  11714. default: true
  11715. },
  11716. {
  11717. name: "Big",
  11718. height: math.unit(60, "feet")
  11719. },
  11720. {
  11721. name: "Macro",
  11722. height: math.unit(325, "feet")
  11723. },
  11724. ]
  11725. ))
  11726. characterMakers.push(() => makeCharacter(
  11727. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11728. {
  11729. front: {
  11730. height: math.unit(0.3, "meters"),
  11731. weight: math.unit(3.5, "kg"),
  11732. name: "Front",
  11733. image: {
  11734. source: "./media/characters/chip/front.svg",
  11735. extra: 748 / 674
  11736. }
  11737. },
  11738. },
  11739. [
  11740. {
  11741. name: "Micro",
  11742. height: math.unit(1, "inch"),
  11743. default: true
  11744. },
  11745. ]
  11746. ))
  11747. characterMakers.push(() => makeCharacter(
  11748. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11749. {
  11750. side: {
  11751. height: math.unit(2.3, "meters"),
  11752. weight: math.unit(3500, "lb"),
  11753. name: "Side",
  11754. image: {
  11755. source: "./media/characters/torvid/side.svg",
  11756. extra: 1972 / 722,
  11757. bottom: 0.035
  11758. }
  11759. },
  11760. },
  11761. [
  11762. {
  11763. name: "Normal",
  11764. height: math.unit(2.3, "meters"),
  11765. default: true
  11766. },
  11767. ]
  11768. ))
  11769. characterMakers.push(() => makeCharacter(
  11770. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11771. {
  11772. front: {
  11773. height: math.unit(2, "meters"),
  11774. weight: math.unit(150.5, "kg"),
  11775. name: "Front",
  11776. image: {
  11777. source: "./media/characters/susan/front.svg",
  11778. extra: 693 / 635,
  11779. bottom: 0.05
  11780. }
  11781. },
  11782. },
  11783. [
  11784. {
  11785. name: "Megamacro",
  11786. height: math.unit(505, "miles"),
  11787. default: true
  11788. },
  11789. ]
  11790. ))
  11791. characterMakers.push(() => makeCharacter(
  11792. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11793. {
  11794. front: {
  11795. height: math.unit(6, "feet"),
  11796. weight: math.unit(150, "lb"),
  11797. name: "Front",
  11798. image: {
  11799. source: "./media/characters/raindrops/front.svg",
  11800. extra: 2655 / 2461,
  11801. bottom: 49 / 2705
  11802. }
  11803. },
  11804. back: {
  11805. height: math.unit(6, "feet"),
  11806. weight: math.unit(150, "lb"),
  11807. name: "Back",
  11808. image: {
  11809. source: "./media/characters/raindrops/back.svg",
  11810. extra: 2574 / 2400,
  11811. bottom: 65 / 2634
  11812. }
  11813. },
  11814. },
  11815. [
  11816. {
  11817. name: "Micro",
  11818. height: math.unit(6, "inches")
  11819. },
  11820. {
  11821. name: "Normal",
  11822. height: math.unit(6 + 2 / 12, "feet")
  11823. },
  11824. {
  11825. name: "Macro",
  11826. height: math.unit(131, "feet"),
  11827. default: true
  11828. },
  11829. {
  11830. name: "Megamacro",
  11831. height: math.unit(15, "miles")
  11832. },
  11833. {
  11834. name: "Gigamacro",
  11835. height: math.unit(4000, "miles")
  11836. },
  11837. {
  11838. name: "Teramacro",
  11839. height: math.unit(315000, "miles")
  11840. },
  11841. ]
  11842. ))
  11843. characterMakers.push(() => makeCharacter(
  11844. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11845. {
  11846. front: {
  11847. height: math.unit(2.794, "meters"),
  11848. weight: math.unit(325, "kg"),
  11849. name: "Front",
  11850. image: {
  11851. source: "./media/characters/tezwa/front.svg",
  11852. extra: 2083 / 1906,
  11853. bottom: 0.031
  11854. }
  11855. },
  11856. foot: {
  11857. height: math.unit(0.687, "meters"),
  11858. name: "Foot",
  11859. image: {
  11860. source: "./media/characters/tezwa/foot.svg"
  11861. }
  11862. },
  11863. },
  11864. [
  11865. {
  11866. name: "Normal",
  11867. height: math.unit(9 + 2 / 12, "feet"),
  11868. default: true
  11869. },
  11870. ]
  11871. ))
  11872. characterMakers.push(() => makeCharacter(
  11873. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11874. {
  11875. front: {
  11876. height: math.unit(58, "feet"),
  11877. weight: math.unit(89000, "lb"),
  11878. name: "Front",
  11879. image: {
  11880. source: "./media/characters/typhus/front.svg",
  11881. extra: 816 / 800,
  11882. bottom: 0.065
  11883. }
  11884. },
  11885. },
  11886. [
  11887. {
  11888. name: "Macro",
  11889. height: math.unit(58, "feet"),
  11890. default: true
  11891. },
  11892. ]
  11893. ))
  11894. characterMakers.push(() => makeCharacter(
  11895. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11896. {
  11897. front: {
  11898. height: math.unit(12, "feet"),
  11899. weight: math.unit(6, "tonnes"),
  11900. name: "Front",
  11901. image: {
  11902. source: "./media/characters/lyra-von-wulf/front.svg",
  11903. extra: 1,
  11904. bottom: 0.10
  11905. }
  11906. },
  11907. frontMecha: {
  11908. height: math.unit(12, "feet"),
  11909. weight: math.unit(12, "tonnes"),
  11910. name: "Front (Mecha)",
  11911. image: {
  11912. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11913. extra: 1,
  11914. bottom: 0.042
  11915. }
  11916. },
  11917. maw: {
  11918. height: math.unit(2.2, "feet"),
  11919. name: "Maw",
  11920. image: {
  11921. source: "./media/characters/lyra-von-wulf/maw.svg"
  11922. }
  11923. },
  11924. },
  11925. [
  11926. {
  11927. name: "Normal",
  11928. height: math.unit(12, "feet"),
  11929. default: true
  11930. },
  11931. {
  11932. name: "Classic",
  11933. height: math.unit(50, "feet")
  11934. },
  11935. {
  11936. name: "Macro",
  11937. height: math.unit(500, "feet")
  11938. },
  11939. {
  11940. name: "Megamacro",
  11941. height: math.unit(1, "mile")
  11942. },
  11943. {
  11944. name: "Gigamacro",
  11945. height: math.unit(400, "miles")
  11946. },
  11947. {
  11948. name: "Teramacro",
  11949. height: math.unit(22000, "miles")
  11950. },
  11951. {
  11952. name: "Solarmacro",
  11953. height: math.unit(8600000, "miles")
  11954. },
  11955. {
  11956. name: "Galactic",
  11957. height: math.unit(1057000, "lightyears")
  11958. },
  11959. ]
  11960. ))
  11961. characterMakers.push(() => makeCharacter(
  11962. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11963. {
  11964. front: {
  11965. height: math.unit(6 + 10 / 12, "feet"),
  11966. weight: math.unit(150, "lb"),
  11967. name: "Front",
  11968. image: {
  11969. source: "./media/characters/dixon/front.svg",
  11970. extra: 3361 / 3209,
  11971. bottom: 0.01
  11972. }
  11973. },
  11974. },
  11975. [
  11976. {
  11977. name: "Normal",
  11978. height: math.unit(6 + 10 / 12, "feet"),
  11979. default: true
  11980. },
  11981. {
  11982. name: "Big",
  11983. height: math.unit(12, "meters")
  11984. },
  11985. {
  11986. name: "Macro",
  11987. height: math.unit(500, "meters")
  11988. },
  11989. {
  11990. name: "Megamacro",
  11991. height: math.unit(2, "km")
  11992. },
  11993. ]
  11994. ))
  11995. characterMakers.push(() => makeCharacter(
  11996. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11997. {
  11998. front: {
  11999. height: math.unit(185, "cm"),
  12000. weight: math.unit(68, "kg"),
  12001. name: "Front",
  12002. image: {
  12003. source: "./media/characters/kauko/front.svg",
  12004. extra: 1455 / 1421,
  12005. bottom: 0.03
  12006. }
  12007. },
  12008. back: {
  12009. height: math.unit(185, "cm"),
  12010. weight: math.unit(68, "kg"),
  12011. name: "Back",
  12012. image: {
  12013. source: "./media/characters/kauko/back.svg",
  12014. extra: 1455 / 1421,
  12015. bottom: 0.004
  12016. }
  12017. },
  12018. },
  12019. [
  12020. {
  12021. name: "Normal",
  12022. height: math.unit(185, "cm"),
  12023. default: true
  12024. },
  12025. ]
  12026. ))
  12027. characterMakers.push(() => makeCharacter(
  12028. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12029. {
  12030. front: {
  12031. height: math.unit(6, "feet"),
  12032. weight: math.unit(150, "kg"),
  12033. name: "Front",
  12034. image: {
  12035. source: "./media/characters/varg/front.svg",
  12036. extra: 1108 / 1018,
  12037. bottom: 0.0375
  12038. }
  12039. },
  12040. },
  12041. [
  12042. {
  12043. name: "Normal",
  12044. height: math.unit(5, "meters")
  12045. },
  12046. {
  12047. name: "Macro",
  12048. height: math.unit(200, "meters")
  12049. },
  12050. {
  12051. name: "Megamacro",
  12052. height: math.unit(20, "kilometers")
  12053. },
  12054. {
  12055. name: "True Size",
  12056. height: math.unit(211, "km"),
  12057. default: true
  12058. },
  12059. {
  12060. name: "Gigamacro",
  12061. height: math.unit(1000, "km")
  12062. },
  12063. {
  12064. name: "Gigamacro+",
  12065. height: math.unit(8000, "km")
  12066. },
  12067. {
  12068. name: "Teramacro",
  12069. height: math.unit(1000000, "km")
  12070. },
  12071. ]
  12072. ))
  12073. characterMakers.push(() => makeCharacter(
  12074. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12075. {
  12076. front: {
  12077. height: math.unit(7 + 7 / 12, "feet"),
  12078. weight: math.unit(267, "lb"),
  12079. name: "Front",
  12080. image: {
  12081. source: "./media/characters/dayza/front.svg",
  12082. extra: 1262 / 1200,
  12083. bottom: 0.035
  12084. }
  12085. },
  12086. side: {
  12087. height: math.unit(7 + 7 / 12, "feet"),
  12088. weight: math.unit(267, "lb"),
  12089. name: "Side",
  12090. image: {
  12091. source: "./media/characters/dayza/side.svg",
  12092. extra: 1295 / 1245,
  12093. bottom: 0.05
  12094. }
  12095. },
  12096. back: {
  12097. height: math.unit(7 + 7 / 12, "feet"),
  12098. weight: math.unit(267, "lb"),
  12099. name: "Back",
  12100. image: {
  12101. source: "./media/characters/dayza/back.svg",
  12102. extra: 1241 / 1170
  12103. }
  12104. },
  12105. },
  12106. [
  12107. {
  12108. name: "Normal",
  12109. height: math.unit(7 + 7 / 12, "feet"),
  12110. default: true
  12111. },
  12112. {
  12113. name: "Macro",
  12114. height: math.unit(155, "feet")
  12115. },
  12116. ]
  12117. ))
  12118. characterMakers.push(() => makeCharacter(
  12119. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12120. {
  12121. front: {
  12122. height: math.unit(6 + 5 / 12, "feet"),
  12123. weight: math.unit(160, "lb"),
  12124. name: "Front",
  12125. image: {
  12126. source: "./media/characters/xanthos/front.svg",
  12127. extra: 1,
  12128. bottom: 0.04
  12129. }
  12130. },
  12131. back: {
  12132. height: math.unit(6 + 5 / 12, "feet"),
  12133. weight: math.unit(160, "lb"),
  12134. name: "Back",
  12135. image: {
  12136. source: "./media/characters/xanthos/back.svg",
  12137. extra: 1,
  12138. bottom: 0.03
  12139. }
  12140. },
  12141. hand: {
  12142. height: math.unit(0.928, "feet"),
  12143. name: "Hand",
  12144. image: {
  12145. source: "./media/characters/xanthos/hand.svg"
  12146. }
  12147. },
  12148. foot: {
  12149. height: math.unit(1.286, "feet"),
  12150. name: "Foot",
  12151. image: {
  12152. source: "./media/characters/xanthos/foot.svg"
  12153. }
  12154. },
  12155. },
  12156. [
  12157. {
  12158. name: "Normal",
  12159. height: math.unit(6 + 5 / 12, "feet"),
  12160. default: true
  12161. },
  12162. {
  12163. name: "Normal+",
  12164. height: math.unit(6, "meters")
  12165. },
  12166. {
  12167. name: "Macro",
  12168. height: math.unit(40, "feet")
  12169. },
  12170. {
  12171. name: "Macro+",
  12172. height: math.unit(200, "meters")
  12173. },
  12174. {
  12175. name: "Megamacro",
  12176. height: math.unit(20, "km")
  12177. },
  12178. {
  12179. name: "Megamacro+",
  12180. height: math.unit(100, "km")
  12181. },
  12182. ]
  12183. ))
  12184. characterMakers.push(() => makeCharacter(
  12185. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12186. {
  12187. front: {
  12188. height: math.unit(6 + 3 / 12, "feet"),
  12189. weight: math.unit(215, "lb"),
  12190. name: "Front",
  12191. image: {
  12192. source: "./media/characters/grynn/front.svg",
  12193. extra: 4627 / 4209,
  12194. bottom: 0.047
  12195. }
  12196. },
  12197. },
  12198. [
  12199. {
  12200. name: "Micro",
  12201. height: math.unit(6, "inches")
  12202. },
  12203. {
  12204. name: "Normal",
  12205. height: math.unit(6 + 3 / 12, "feet"),
  12206. default: true
  12207. },
  12208. {
  12209. name: "Big",
  12210. height: math.unit(104, "feet")
  12211. },
  12212. {
  12213. name: "Macro",
  12214. height: math.unit(944, "feet")
  12215. },
  12216. {
  12217. name: "Macro+",
  12218. height: math.unit(9480, "feet")
  12219. },
  12220. {
  12221. name: "Megamacro",
  12222. height: math.unit(78752, "feet")
  12223. },
  12224. {
  12225. name: "Megamacro+",
  12226. height: math.unit(630128, "feet")
  12227. },
  12228. {
  12229. name: "Megamacro++",
  12230. height: math.unit(3150695, "feet")
  12231. },
  12232. ]
  12233. ))
  12234. characterMakers.push(() => makeCharacter(
  12235. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12236. {
  12237. front: {
  12238. height: math.unit(7 + 5 / 12, "feet"),
  12239. weight: math.unit(450, "lb"),
  12240. name: "Front",
  12241. image: {
  12242. source: "./media/characters/mocha-aura/front.svg",
  12243. extra: 1907 / 1817,
  12244. bottom: 0.04
  12245. }
  12246. },
  12247. back: {
  12248. height: math.unit(7 + 5 / 12, "feet"),
  12249. weight: math.unit(450, "lb"),
  12250. name: "Back",
  12251. image: {
  12252. source: "./media/characters/mocha-aura/back.svg",
  12253. extra: 1900 / 1825,
  12254. bottom: 0.045
  12255. }
  12256. },
  12257. },
  12258. [
  12259. {
  12260. name: "Nano",
  12261. height: math.unit(1, "nm")
  12262. },
  12263. {
  12264. name: "Megamicro",
  12265. height: math.unit(1, "mm")
  12266. },
  12267. {
  12268. name: "Micro",
  12269. height: math.unit(3, "inches")
  12270. },
  12271. {
  12272. name: "Normal",
  12273. height: math.unit(7 + 5 / 12, "feet"),
  12274. default: true
  12275. },
  12276. {
  12277. name: "Macro",
  12278. height: math.unit(30, "feet")
  12279. },
  12280. {
  12281. name: "Megamacro",
  12282. height: math.unit(3500, "feet")
  12283. },
  12284. {
  12285. name: "Teramacro",
  12286. height: math.unit(500000, "miles")
  12287. },
  12288. {
  12289. name: "Petamacro",
  12290. height: math.unit(50000000000000000, "parsecs")
  12291. },
  12292. ]
  12293. ))
  12294. characterMakers.push(() => makeCharacter(
  12295. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12296. {
  12297. front: {
  12298. height: math.unit(6, "feet"),
  12299. weight: math.unit(150, "lb"),
  12300. name: "Front",
  12301. image: {
  12302. source: "./media/characters/ilisha-devya/front.svg",
  12303. extra: 1,
  12304. bottom: 0.175
  12305. }
  12306. },
  12307. back: {
  12308. height: math.unit(6, "feet"),
  12309. weight: math.unit(150, "lb"),
  12310. name: "Back",
  12311. image: {
  12312. source: "./media/characters/ilisha-devya/back.svg",
  12313. extra: 1,
  12314. bottom: 0.015
  12315. }
  12316. },
  12317. },
  12318. [
  12319. {
  12320. name: "Macro",
  12321. height: math.unit(500, "feet"),
  12322. default: true
  12323. },
  12324. {
  12325. name: "Megamacro",
  12326. height: math.unit(10, "miles")
  12327. },
  12328. {
  12329. name: "Gigamacro",
  12330. height: math.unit(100000, "miles")
  12331. },
  12332. {
  12333. name: "Examacro",
  12334. height: math.unit(1e9, "lightyears")
  12335. },
  12336. {
  12337. name: "Omniversal",
  12338. height: math.unit(1e33, "lightyears")
  12339. },
  12340. {
  12341. name: "Beyond Infinite",
  12342. height: math.unit(1e100, "lightyears")
  12343. },
  12344. ]
  12345. ))
  12346. characterMakers.push(() => makeCharacter(
  12347. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12348. {
  12349. Side: {
  12350. height: math.unit(6, "feet"),
  12351. weight: math.unit(150, "lb"),
  12352. name: "Side",
  12353. image: {
  12354. source: "./media/characters/mira/side.svg",
  12355. extra: 900 / 799,
  12356. bottom: 0.02
  12357. }
  12358. },
  12359. },
  12360. [
  12361. {
  12362. name: "Human Size",
  12363. height: math.unit(6, "feet")
  12364. },
  12365. {
  12366. name: "Macro",
  12367. height: math.unit(100, "feet"),
  12368. default: true
  12369. },
  12370. {
  12371. name: "Megamacro",
  12372. height: math.unit(10, "miles")
  12373. },
  12374. {
  12375. name: "Gigamacro",
  12376. height: math.unit(25000, "miles")
  12377. },
  12378. {
  12379. name: "Teramacro",
  12380. height: math.unit(300, "AU")
  12381. },
  12382. {
  12383. name: "Full Size",
  12384. height: math.unit(4.5e10, "lightyears")
  12385. },
  12386. ]
  12387. ))
  12388. characterMakers.push(() => makeCharacter(
  12389. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12390. {
  12391. front: {
  12392. height: math.unit(6, "feet"),
  12393. weight: math.unit(150, "lb"),
  12394. name: "Front",
  12395. image: {
  12396. source: "./media/characters/holly/front.svg",
  12397. extra: 639 / 606
  12398. }
  12399. },
  12400. back: {
  12401. height: math.unit(6, "feet"),
  12402. weight: math.unit(150, "lb"),
  12403. name: "Back",
  12404. image: {
  12405. source: "./media/characters/holly/back.svg",
  12406. extra: 623 / 598
  12407. }
  12408. },
  12409. frontWorking: {
  12410. height: math.unit(6, "feet"),
  12411. weight: math.unit(150, "lb"),
  12412. name: "Front (Working)",
  12413. image: {
  12414. source: "./media/characters/holly/front-working.svg",
  12415. extra: 607 / 577,
  12416. bottom: 0.048
  12417. }
  12418. },
  12419. },
  12420. [
  12421. {
  12422. name: "Normal",
  12423. height: math.unit(12 + 3 / 12, "feet"),
  12424. default: true
  12425. },
  12426. ]
  12427. ))
  12428. characterMakers.push(() => makeCharacter(
  12429. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12430. {
  12431. front: {
  12432. height: math.unit(6, "feet"),
  12433. weight: math.unit(150, "lb"),
  12434. name: "Front",
  12435. image: {
  12436. source: "./media/characters/porter/front.svg",
  12437. extra: 1,
  12438. bottom: 0.01
  12439. }
  12440. },
  12441. frontRobes: {
  12442. height: math.unit(6, "feet"),
  12443. weight: math.unit(150, "lb"),
  12444. name: "Front (Robes)",
  12445. image: {
  12446. source: "./media/characters/porter/front-robes.svg",
  12447. extra: 1.01,
  12448. bottom: 0.01
  12449. }
  12450. },
  12451. },
  12452. [
  12453. {
  12454. name: "Normal",
  12455. height: math.unit(11 + 9 / 12, "feet"),
  12456. default: true
  12457. },
  12458. ]
  12459. ))
  12460. characterMakers.push(() => makeCharacter(
  12461. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12462. {
  12463. legendary: {
  12464. height: math.unit(6, "feet"),
  12465. weight: math.unit(150, "lb"),
  12466. name: "Legendary",
  12467. image: {
  12468. source: "./media/characters/lucy/legendary.svg",
  12469. extra: 1355 / 1100,
  12470. bottom: 0.045
  12471. }
  12472. },
  12473. },
  12474. [
  12475. {
  12476. name: "Legendary",
  12477. height: math.unit(86882 * 2, "miles"),
  12478. default: true
  12479. },
  12480. ]
  12481. ))
  12482. characterMakers.push(() => makeCharacter(
  12483. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12484. {
  12485. front: {
  12486. height: math.unit(6, "feet"),
  12487. weight: math.unit(150, "lb"),
  12488. name: "Front",
  12489. image: {
  12490. source: "./media/characters/drusilla/front.svg",
  12491. extra: 678 / 635,
  12492. bottom: 0.03
  12493. }
  12494. },
  12495. back: {
  12496. height: math.unit(6, "feet"),
  12497. weight: math.unit(150, "lb"),
  12498. name: "Back",
  12499. image: {
  12500. source: "./media/characters/drusilla/back.svg",
  12501. extra: 678 / 635,
  12502. bottom: 0.005
  12503. }
  12504. },
  12505. },
  12506. [
  12507. {
  12508. name: "Macro",
  12509. height: math.unit(100, "feet")
  12510. },
  12511. {
  12512. name: "Canon Height",
  12513. height: math.unit(2000, "feet"),
  12514. default: true
  12515. },
  12516. ]
  12517. ))
  12518. characterMakers.push(() => makeCharacter(
  12519. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12520. {
  12521. front: {
  12522. height: math.unit(6, "feet"),
  12523. weight: math.unit(180, "lb"),
  12524. name: "Front",
  12525. image: {
  12526. source: "./media/characters/renard-thatch/front.svg",
  12527. extra: 2411 / 2275,
  12528. bottom: 0.01
  12529. }
  12530. },
  12531. frontPosing: {
  12532. height: math.unit(6, "feet"),
  12533. weight: math.unit(180, "lb"),
  12534. name: "Front (Posing)",
  12535. image: {
  12536. source: "./media/characters/renard-thatch/front-posing.svg",
  12537. extra: 2381 / 2261,
  12538. bottom: 0.01
  12539. }
  12540. },
  12541. back: {
  12542. height: math.unit(6, "feet"),
  12543. weight: math.unit(180, "lb"),
  12544. name: "Back",
  12545. image: {
  12546. source: "./media/characters/renard-thatch/back.svg",
  12547. extra: 2428 / 2288
  12548. }
  12549. },
  12550. },
  12551. [
  12552. {
  12553. name: "Micro",
  12554. height: math.unit(3, "inches")
  12555. },
  12556. {
  12557. name: "Default",
  12558. height: math.unit(6, "feet"),
  12559. default: true
  12560. },
  12561. {
  12562. name: "Macro",
  12563. height: math.unit(75, "feet")
  12564. },
  12565. ]
  12566. ))
  12567. characterMakers.push(() => makeCharacter(
  12568. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12569. {
  12570. front: {
  12571. height: math.unit(1450, "feet"),
  12572. weight: math.unit(1.21e6, "tons"),
  12573. name: "Front",
  12574. image: {
  12575. source: "./media/characters/sekvra/front.svg",
  12576. extra: 1,
  12577. bottom: 0.03
  12578. }
  12579. },
  12580. frontClothed: {
  12581. height: math.unit(1450, "feet"),
  12582. weight: math.unit(1.21e6, "tons"),
  12583. name: "Front (Clothed)",
  12584. image: {
  12585. source: "./media/characters/sekvra/front-clothed.svg",
  12586. extra: 1,
  12587. bottom: 0.03
  12588. }
  12589. },
  12590. side: {
  12591. height: math.unit(1450, "feet"),
  12592. weight: math.unit(1.21e6, "tons"),
  12593. name: "Side",
  12594. image: {
  12595. source: "./media/characters/sekvra/side.svg",
  12596. extra: 1,
  12597. bottom: 0.025
  12598. }
  12599. },
  12600. back: {
  12601. height: math.unit(1450, "feet"),
  12602. weight: math.unit(1.21e6, "tons"),
  12603. name: "Back",
  12604. image: {
  12605. source: "./media/characters/sekvra/back.svg",
  12606. extra: 1,
  12607. bottom: 0.005
  12608. }
  12609. },
  12610. },
  12611. [
  12612. {
  12613. name: "Macro",
  12614. height: math.unit(1450, "feet"),
  12615. default: true
  12616. },
  12617. {
  12618. name: "Megamacro",
  12619. height: math.unit(15000, "feet")
  12620. },
  12621. ]
  12622. ))
  12623. characterMakers.push(() => makeCharacter(
  12624. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12625. {
  12626. front: {
  12627. height: math.unit(6, "feet"),
  12628. weight: math.unit(150, "lb"),
  12629. name: "Front",
  12630. image: {
  12631. source: "./media/characters/carmine/front.svg",
  12632. extra: 1,
  12633. bottom: 0.035
  12634. }
  12635. },
  12636. frontArmor: {
  12637. height: math.unit(6, "feet"),
  12638. weight: math.unit(150, "lb"),
  12639. name: "Front (Armor)",
  12640. image: {
  12641. source: "./media/characters/carmine/front-armor.svg",
  12642. extra: 1,
  12643. bottom: 0.035
  12644. }
  12645. },
  12646. },
  12647. [
  12648. {
  12649. name: "Large",
  12650. height: math.unit(1, "mile")
  12651. },
  12652. {
  12653. name: "Huge",
  12654. height: math.unit(40, "miles"),
  12655. default: true
  12656. },
  12657. {
  12658. name: "Colossal",
  12659. height: math.unit(2500, "miles")
  12660. },
  12661. ]
  12662. ))
  12663. characterMakers.push(() => makeCharacter(
  12664. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12665. {
  12666. front: {
  12667. height: math.unit(6, "feet"),
  12668. weight: math.unit(150, "lb"),
  12669. name: "Front",
  12670. image: {
  12671. source: "./media/characters/elyssia/front.svg",
  12672. extra: 2201 / 2035,
  12673. bottom: 0.05
  12674. }
  12675. },
  12676. frontClothed: {
  12677. height: math.unit(6, "feet"),
  12678. weight: math.unit(150, "lb"),
  12679. name: "Front (Clothed)",
  12680. image: {
  12681. source: "./media/characters/elyssia/front-clothed.svg",
  12682. extra: 2201 / 2035,
  12683. bottom: 0.05
  12684. }
  12685. },
  12686. back: {
  12687. height: math.unit(6, "feet"),
  12688. weight: math.unit(150, "lb"),
  12689. name: "Back",
  12690. image: {
  12691. source: "./media/characters/elyssia/back.svg",
  12692. extra: 2201 / 2035,
  12693. bottom: 0.013
  12694. }
  12695. },
  12696. },
  12697. [
  12698. {
  12699. name: "Smaller",
  12700. height: math.unit(150, "feet")
  12701. },
  12702. {
  12703. name: "Standard",
  12704. height: math.unit(1400, "feet"),
  12705. default: true
  12706. },
  12707. {
  12708. name: "Distracted",
  12709. height: math.unit(15000, "feet")
  12710. },
  12711. ]
  12712. ))
  12713. characterMakers.push(() => makeCharacter(
  12714. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12715. {
  12716. front: {
  12717. height: math.unit(7 + 4 / 12, "feet"),
  12718. weight: math.unit(500, "lb"),
  12719. name: "Front",
  12720. image: {
  12721. source: "./media/characters/geno-maxwell/front.svg",
  12722. extra: 2207 / 2040,
  12723. bottom: 0.015
  12724. }
  12725. },
  12726. },
  12727. [
  12728. {
  12729. name: "Micro",
  12730. height: math.unit(3, "inches")
  12731. },
  12732. {
  12733. name: "Normal",
  12734. height: math.unit(7 + 4 / 12, "feet"),
  12735. default: true
  12736. },
  12737. {
  12738. name: "Macro",
  12739. height: math.unit(220, "feet")
  12740. },
  12741. {
  12742. name: "Megamacro",
  12743. height: math.unit(11, "miles")
  12744. },
  12745. ]
  12746. ))
  12747. characterMakers.push(() => makeCharacter(
  12748. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12749. {
  12750. front: {
  12751. height: math.unit(7 + 4 / 12, "feet"),
  12752. weight: math.unit(500, "lb"),
  12753. name: "Front",
  12754. image: {
  12755. source: "./media/characters/regena-maxwell/front.svg",
  12756. extra: 3115 / 2770,
  12757. bottom: 0.02
  12758. }
  12759. },
  12760. },
  12761. [
  12762. {
  12763. name: "Normal",
  12764. height: math.unit(7 + 4 / 12, "feet"),
  12765. default: true
  12766. },
  12767. {
  12768. name: "Macro",
  12769. height: math.unit(220, "feet")
  12770. },
  12771. {
  12772. name: "Megamacro",
  12773. height: math.unit(11, "miles")
  12774. },
  12775. ]
  12776. ))
  12777. characterMakers.push(() => makeCharacter(
  12778. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12779. {
  12780. front: {
  12781. height: math.unit(6, "feet"),
  12782. weight: math.unit(150, "lb"),
  12783. name: "Front",
  12784. image: {
  12785. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12786. extra: 860 / 690,
  12787. bottom: 0.03
  12788. }
  12789. },
  12790. },
  12791. [
  12792. {
  12793. name: "Normal",
  12794. height: math.unit(1.7, "meters"),
  12795. default: true
  12796. },
  12797. ]
  12798. ))
  12799. characterMakers.push(() => makeCharacter(
  12800. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12801. {
  12802. front: {
  12803. height: math.unit(6, "feet"),
  12804. weight: math.unit(150, "lb"),
  12805. name: "Front",
  12806. image: {
  12807. source: "./media/characters/quilly/front.svg",
  12808. extra: 890 / 776
  12809. }
  12810. },
  12811. },
  12812. [
  12813. {
  12814. name: "Gigamacro",
  12815. height: math.unit(404090, "miles"),
  12816. default: true
  12817. },
  12818. ]
  12819. ))
  12820. characterMakers.push(() => makeCharacter(
  12821. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12822. {
  12823. front: {
  12824. height: math.unit(7 + 8 / 12, "feet"),
  12825. weight: math.unit(350, "lb"),
  12826. name: "Front",
  12827. image: {
  12828. source: "./media/characters/tempest/front.svg",
  12829. extra: 1175 / 1086,
  12830. bottom: 0.02
  12831. }
  12832. },
  12833. },
  12834. [
  12835. {
  12836. name: "Normal",
  12837. height: math.unit(7 + 8 / 12, "feet"),
  12838. default: true
  12839. },
  12840. ]
  12841. ))
  12842. characterMakers.push(() => makeCharacter(
  12843. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12844. {
  12845. side: {
  12846. height: math.unit(4 + 5 / 12, "feet"),
  12847. weight: math.unit(80, "lb"),
  12848. name: "Side",
  12849. image: {
  12850. source: "./media/characters/rodger/side.svg",
  12851. extra: 1235 / 1118
  12852. }
  12853. },
  12854. },
  12855. [
  12856. {
  12857. name: "Micro",
  12858. height: math.unit(1, "inch")
  12859. },
  12860. {
  12861. name: "Normal",
  12862. height: math.unit(4 + 5 / 12, "feet"),
  12863. default: true
  12864. },
  12865. {
  12866. name: "Macro",
  12867. height: math.unit(120, "feet")
  12868. },
  12869. ]
  12870. ))
  12871. characterMakers.push(() => makeCharacter(
  12872. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12873. {
  12874. front: {
  12875. height: math.unit(6, "feet"),
  12876. weight: math.unit(150, "lb"),
  12877. name: "Front",
  12878. image: {
  12879. source: "./media/characters/danyel/front.svg",
  12880. extra: 1185 / 1123,
  12881. bottom: 0.05
  12882. }
  12883. },
  12884. },
  12885. [
  12886. {
  12887. name: "Shrunken",
  12888. height: math.unit(0.5, "mm")
  12889. },
  12890. {
  12891. name: "Micro",
  12892. height: math.unit(1, "mm"),
  12893. default: true
  12894. },
  12895. {
  12896. name: "Upsized",
  12897. height: math.unit(5 + 5 / 12, "feet")
  12898. },
  12899. ]
  12900. ))
  12901. characterMakers.push(() => makeCharacter(
  12902. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12903. {
  12904. front: {
  12905. height: math.unit(5 + 6 / 12, "feet"),
  12906. weight: math.unit(200, "lb"),
  12907. name: "Front",
  12908. image: {
  12909. source: "./media/characters/vivian-bijoux/front.svg",
  12910. extra: 1,
  12911. bottom: 0.072
  12912. }
  12913. },
  12914. },
  12915. [
  12916. {
  12917. name: "Normal",
  12918. height: math.unit(5 + 6 / 12, "feet"),
  12919. default: true
  12920. },
  12921. {
  12922. name: "Bad Dream",
  12923. height: math.unit(500, "feet")
  12924. },
  12925. {
  12926. name: "Nightmare",
  12927. height: math.unit(500, "miles")
  12928. },
  12929. ]
  12930. ))
  12931. characterMakers.push(() => makeCharacter(
  12932. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12933. {
  12934. front: {
  12935. height: math.unit(6 + 1 / 12, "feet"),
  12936. weight: math.unit(260, "lb"),
  12937. name: "Front",
  12938. image: {
  12939. source: "./media/characters/zeta/front.svg",
  12940. extra: 1968 / 1889,
  12941. bottom: 0.06
  12942. }
  12943. },
  12944. back: {
  12945. height: math.unit(6 + 1 / 12, "feet"),
  12946. weight: math.unit(260, "lb"),
  12947. name: "Back",
  12948. image: {
  12949. source: "./media/characters/zeta/back.svg",
  12950. extra: 1944 / 1858,
  12951. bottom: 0.03
  12952. }
  12953. },
  12954. hand: {
  12955. height: math.unit(1.112, "feet"),
  12956. name: "Hand",
  12957. image: {
  12958. source: "./media/characters/zeta/hand.svg"
  12959. }
  12960. },
  12961. foot: {
  12962. height: math.unit(1.48, "feet"),
  12963. name: "Foot",
  12964. image: {
  12965. source: "./media/characters/zeta/foot.svg"
  12966. }
  12967. },
  12968. },
  12969. [
  12970. {
  12971. name: "Micro",
  12972. height: math.unit(6, "inches")
  12973. },
  12974. {
  12975. name: "Normal",
  12976. height: math.unit(6 + 1 / 12, "feet"),
  12977. default: true
  12978. },
  12979. {
  12980. name: "Macro",
  12981. height: math.unit(20, "feet")
  12982. },
  12983. ]
  12984. ))
  12985. characterMakers.push(() => makeCharacter(
  12986. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12987. {
  12988. front: {
  12989. height: math.unit(6, "feet"),
  12990. weight: math.unit(150, "lb"),
  12991. name: "Front",
  12992. image: {
  12993. source: "./media/characters/jamie-larsen/front.svg",
  12994. extra: 962 / 933,
  12995. bottom: 0.02
  12996. }
  12997. },
  12998. back: {
  12999. height: math.unit(6, "feet"),
  13000. weight: math.unit(150, "lb"),
  13001. name: "Back",
  13002. image: {
  13003. source: "./media/characters/jamie-larsen/back.svg",
  13004. extra: 997 / 946
  13005. }
  13006. },
  13007. },
  13008. [
  13009. {
  13010. name: "Macro",
  13011. height: math.unit(28 + 7 / 12, "feet"),
  13012. default: true
  13013. },
  13014. {
  13015. name: "Macro+",
  13016. height: math.unit(180, "feet")
  13017. },
  13018. {
  13019. name: "Megamacro",
  13020. height: math.unit(10, "miles")
  13021. },
  13022. {
  13023. name: "Gigamacro",
  13024. height: math.unit(200000, "miles")
  13025. },
  13026. ]
  13027. ))
  13028. characterMakers.push(() => makeCharacter(
  13029. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13030. {
  13031. front: {
  13032. height: math.unit(6, "feet"),
  13033. weight: math.unit(120, "lb"),
  13034. name: "Front",
  13035. image: {
  13036. source: "./media/characters/vance/front.svg",
  13037. extra: 1980 / 1890,
  13038. bottom: 0.09
  13039. }
  13040. },
  13041. back: {
  13042. height: math.unit(6, "feet"),
  13043. weight: math.unit(120, "lb"),
  13044. name: "Back",
  13045. image: {
  13046. source: "./media/characters/vance/back.svg",
  13047. extra: 2081 / 1994,
  13048. bottom: 0.014
  13049. }
  13050. },
  13051. hand: {
  13052. height: math.unit(0.88, "feet"),
  13053. name: "Hand",
  13054. image: {
  13055. source: "./media/characters/vance/hand.svg"
  13056. }
  13057. },
  13058. foot: {
  13059. height: math.unit(0.64, "feet"),
  13060. name: "Foot",
  13061. image: {
  13062. source: "./media/characters/vance/foot.svg"
  13063. }
  13064. },
  13065. },
  13066. [
  13067. {
  13068. name: "Small",
  13069. height: math.unit(90, "feet"),
  13070. default: true
  13071. },
  13072. {
  13073. name: "Macro",
  13074. height: math.unit(100, "meters")
  13075. },
  13076. {
  13077. name: "Megamacro",
  13078. height: math.unit(15, "miles")
  13079. },
  13080. ]
  13081. ))
  13082. characterMakers.push(() => makeCharacter(
  13083. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13084. {
  13085. front: {
  13086. height: math.unit(6, "feet"),
  13087. weight: math.unit(180, "lb"),
  13088. name: "Front",
  13089. image: {
  13090. source: "./media/characters/xochitl/front.svg",
  13091. extra: 2297 / 2261,
  13092. bottom: 0.065
  13093. }
  13094. },
  13095. back: {
  13096. height: math.unit(6, "feet"),
  13097. weight: math.unit(180, "lb"),
  13098. name: "Back",
  13099. image: {
  13100. source: "./media/characters/xochitl/back.svg",
  13101. extra: 2386 / 2354,
  13102. bottom: 0.01
  13103. }
  13104. },
  13105. foot: {
  13106. height: math.unit(6 / 5 * 1.15, "feet"),
  13107. weight: math.unit(150, "lb"),
  13108. name: "Foot",
  13109. image: {
  13110. source: "./media/characters/xochitl/foot.svg"
  13111. }
  13112. },
  13113. },
  13114. [
  13115. {
  13116. name: "Macro",
  13117. height: math.unit(80, "feet")
  13118. },
  13119. {
  13120. name: "Macro+",
  13121. height: math.unit(400, "feet"),
  13122. default: true
  13123. },
  13124. {
  13125. name: "Gigamacro",
  13126. height: math.unit(80000, "miles")
  13127. },
  13128. {
  13129. name: "Gigamacro+",
  13130. height: math.unit(400000, "miles")
  13131. },
  13132. {
  13133. name: "Teramacro",
  13134. height: math.unit(300, "AU")
  13135. },
  13136. ]
  13137. ))
  13138. characterMakers.push(() => makeCharacter(
  13139. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13140. {
  13141. front: {
  13142. height: math.unit(6, "feet"),
  13143. weight: math.unit(150, "lb"),
  13144. name: "Front",
  13145. image: {
  13146. source: "./media/characters/vincent/front.svg",
  13147. extra: 1130 / 1080,
  13148. bottom: 0.055
  13149. }
  13150. },
  13151. beak: {
  13152. height: math.unit(6 * 0.1, "feet"),
  13153. name: "Beak",
  13154. image: {
  13155. source: "./media/characters/vincent/beak.svg"
  13156. }
  13157. },
  13158. hand: {
  13159. height: math.unit(6 * 0.85, "feet"),
  13160. weight: math.unit(150, "lb"),
  13161. name: "Hand",
  13162. image: {
  13163. source: "./media/characters/vincent/hand.svg"
  13164. }
  13165. },
  13166. foot: {
  13167. height: math.unit(6 * 0.19, "feet"),
  13168. weight: math.unit(150, "lb"),
  13169. name: "Foot",
  13170. image: {
  13171. source: "./media/characters/vincent/foot.svg"
  13172. }
  13173. },
  13174. },
  13175. [
  13176. {
  13177. name: "Base",
  13178. height: math.unit(6 + 5 / 12, "feet"),
  13179. default: true
  13180. },
  13181. {
  13182. name: "Macro",
  13183. height: math.unit(300, "feet")
  13184. },
  13185. {
  13186. name: "Megamacro",
  13187. height: math.unit(2, "miles")
  13188. },
  13189. {
  13190. name: "Gigamacro",
  13191. height: math.unit(1000, "miles")
  13192. },
  13193. ]
  13194. ))
  13195. characterMakers.push(() => makeCharacter(
  13196. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13197. {
  13198. front: {
  13199. height: math.unit(6 + 2 / 12, "feet"),
  13200. weight: math.unit(265, "lb"),
  13201. name: "Front",
  13202. image: {
  13203. source: "./media/characters/jay/front.svg",
  13204. extra: 1510 / 1430,
  13205. bottom: 0.042
  13206. }
  13207. },
  13208. back: {
  13209. height: math.unit(6 + 2 / 12, "feet"),
  13210. weight: math.unit(265, "lb"),
  13211. name: "Back",
  13212. image: {
  13213. source: "./media/characters/jay/back.svg",
  13214. extra: 1510 / 1430,
  13215. bottom: 0.025
  13216. }
  13217. },
  13218. clothed: {
  13219. height: math.unit(6 + 2 / 12, "feet"),
  13220. weight: math.unit(265, "lb"),
  13221. name: "Front (Clothed)",
  13222. image: {
  13223. source: "./media/characters/jay/clothed.svg",
  13224. extra: 744 / 699,
  13225. bottom: 0.043
  13226. }
  13227. },
  13228. head: {
  13229. height: math.unit(1.772, "feet"),
  13230. name: "Head",
  13231. image: {
  13232. source: "./media/characters/jay/head.svg"
  13233. }
  13234. },
  13235. sizeRay: {
  13236. height: math.unit(1.331, "feet"),
  13237. name: "Size Ray",
  13238. image: {
  13239. source: "./media/characters/jay/size-ray.svg"
  13240. }
  13241. },
  13242. },
  13243. [
  13244. {
  13245. name: "Micro",
  13246. height: math.unit(1, "inch")
  13247. },
  13248. {
  13249. name: "Normal",
  13250. height: math.unit(6 + 2 / 12, "feet"),
  13251. default: true
  13252. },
  13253. {
  13254. name: "Macro",
  13255. height: math.unit(1, "mile")
  13256. },
  13257. {
  13258. name: "Megamacro",
  13259. height: math.unit(100, "miles")
  13260. },
  13261. ]
  13262. ))
  13263. characterMakers.push(() => makeCharacter(
  13264. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13265. {
  13266. front: {
  13267. height: math.unit(2, "meters"),
  13268. weight: math.unit(500, "kg"),
  13269. name: "Front",
  13270. image: {
  13271. source: "./media/characters/coatl/front.svg",
  13272. extra: 3948 / 3500,
  13273. bottom: 0.082
  13274. }
  13275. },
  13276. },
  13277. [
  13278. {
  13279. name: "Normal",
  13280. height: math.unit(4, "meters")
  13281. },
  13282. {
  13283. name: "Macro",
  13284. height: math.unit(100, "meters"),
  13285. default: true
  13286. },
  13287. {
  13288. name: "Macro+",
  13289. height: math.unit(300, "meters")
  13290. },
  13291. {
  13292. name: "Megamacro",
  13293. height: math.unit(3, "gigameters")
  13294. },
  13295. {
  13296. name: "Megamacro+",
  13297. height: math.unit(300, "terameters")
  13298. },
  13299. {
  13300. name: "Megamacro++",
  13301. height: math.unit(3, "lightyears")
  13302. },
  13303. ]
  13304. ))
  13305. characterMakers.push(() => makeCharacter(
  13306. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13307. {
  13308. front: {
  13309. height: math.unit(6, "feet"),
  13310. weight: math.unit(50, "kg"),
  13311. name: "front",
  13312. image: {
  13313. source: "./media/characters/shiroryu/front.svg",
  13314. extra: 1990 / 1935
  13315. }
  13316. },
  13317. },
  13318. [
  13319. {
  13320. name: "Mortal Mingling",
  13321. height: math.unit(3, "meters")
  13322. },
  13323. {
  13324. name: "Kaiju-ish",
  13325. height: math.unit(250, "meters")
  13326. },
  13327. {
  13328. name: "Somewhat Godly",
  13329. height: math.unit(400, "km"),
  13330. default: true
  13331. },
  13332. {
  13333. name: "Planetary",
  13334. height: math.unit(300, "megameters")
  13335. },
  13336. {
  13337. name: "Galaxy-dwarfing",
  13338. height: math.unit(450, "kiloparsecs")
  13339. },
  13340. {
  13341. name: "Universe Eater",
  13342. height: math.unit(150, "gigaparsecs")
  13343. },
  13344. {
  13345. name: "Almost Immeasurable",
  13346. height: math.unit(1.3e266, "yottaparsecs")
  13347. },
  13348. ]
  13349. ))
  13350. characterMakers.push(() => makeCharacter(
  13351. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13352. {
  13353. front: {
  13354. height: math.unit(6, "feet"),
  13355. weight: math.unit(150, "lb"),
  13356. name: "Front",
  13357. image: {
  13358. source: "./media/characters/umeko/front.svg",
  13359. extra: 1,
  13360. bottom: 0.019
  13361. }
  13362. },
  13363. frontArmored: {
  13364. height: math.unit(6, "feet"),
  13365. weight: math.unit(150, "lb"),
  13366. name: "Front (Armored)",
  13367. image: {
  13368. source: "./media/characters/umeko/front-armored.svg",
  13369. extra: 1,
  13370. bottom: 0.021
  13371. }
  13372. },
  13373. },
  13374. [
  13375. {
  13376. name: "Macro",
  13377. height: math.unit(220, "feet"),
  13378. default: true
  13379. },
  13380. {
  13381. name: "Guardian Dragon",
  13382. height: math.unit(50, "miles")
  13383. },
  13384. {
  13385. name: "Cosmic",
  13386. height: math.unit(800000, "miles")
  13387. },
  13388. ]
  13389. ))
  13390. characterMakers.push(() => makeCharacter(
  13391. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13392. {
  13393. front: {
  13394. height: math.unit(6, "feet"),
  13395. weight: math.unit(150, "lb"),
  13396. name: "Front",
  13397. image: {
  13398. source: "./media/characters/cassidy/front.svg",
  13399. extra: 1,
  13400. bottom: 0.043
  13401. }
  13402. },
  13403. },
  13404. [
  13405. {
  13406. name: "Canon Height",
  13407. height: math.unit(120, "feet"),
  13408. default: true
  13409. },
  13410. {
  13411. name: "Macro+",
  13412. height: math.unit(400, "feet")
  13413. },
  13414. {
  13415. name: "Macro++",
  13416. height: math.unit(4000, "feet")
  13417. },
  13418. {
  13419. name: "Megamacro",
  13420. height: math.unit(3, "miles")
  13421. },
  13422. ]
  13423. ))
  13424. characterMakers.push(() => makeCharacter(
  13425. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13426. {
  13427. front: {
  13428. height: math.unit(6, "feet"),
  13429. weight: math.unit(150, "lb"),
  13430. name: "Front",
  13431. image: {
  13432. source: "./media/characters/isaac/front.svg",
  13433. extra: 896 / 815,
  13434. bottom: 0.11
  13435. }
  13436. },
  13437. },
  13438. [
  13439. {
  13440. name: "Human Size",
  13441. height: math.unit(8, "feet"),
  13442. default: true
  13443. },
  13444. {
  13445. name: "Macro",
  13446. height: math.unit(400, "feet")
  13447. },
  13448. {
  13449. name: "Megamacro",
  13450. height: math.unit(50, "miles")
  13451. },
  13452. {
  13453. name: "Canon Height",
  13454. height: math.unit(200, "AU")
  13455. },
  13456. ]
  13457. ))
  13458. characterMakers.push(() => makeCharacter(
  13459. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13460. {
  13461. front: {
  13462. height: math.unit(6, "feet"),
  13463. weight: math.unit(72, "kg"),
  13464. name: "Front",
  13465. image: {
  13466. source: "./media/characters/sleekit/front.svg",
  13467. extra: 4693 / 4487,
  13468. bottom: 0.012
  13469. }
  13470. },
  13471. },
  13472. [
  13473. {
  13474. name: "Minimum Height",
  13475. height: math.unit(10, "meters")
  13476. },
  13477. {
  13478. name: "Smaller",
  13479. height: math.unit(25, "meters")
  13480. },
  13481. {
  13482. name: "Larger",
  13483. height: math.unit(38, "meters"),
  13484. default: true
  13485. },
  13486. {
  13487. name: "Maximum height",
  13488. height: math.unit(100, "meters")
  13489. },
  13490. ]
  13491. ))
  13492. characterMakers.push(() => makeCharacter(
  13493. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13494. {
  13495. front: {
  13496. height: math.unit(6, "feet"),
  13497. weight: math.unit(150, "lb"),
  13498. name: "Front",
  13499. image: {
  13500. source: "./media/characters/nillia/front.svg",
  13501. extra: 2195 / 2037,
  13502. bottom: 0.005
  13503. }
  13504. },
  13505. back: {
  13506. height: math.unit(6, "feet"),
  13507. weight: math.unit(150, "lb"),
  13508. name: "Back",
  13509. image: {
  13510. source: "./media/characters/nillia/back.svg",
  13511. extra: 2195 / 2037,
  13512. bottom: 0.005
  13513. }
  13514. },
  13515. },
  13516. [
  13517. {
  13518. name: "Canon Height",
  13519. height: math.unit(489, "feet"),
  13520. default: true
  13521. }
  13522. ]
  13523. ))
  13524. characterMakers.push(() => makeCharacter(
  13525. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13526. {
  13527. front: {
  13528. height: math.unit(6, "feet"),
  13529. weight: math.unit(150, "lb"),
  13530. name: "Front",
  13531. image: {
  13532. source: "./media/characters/mesmyriza/front.svg",
  13533. extra: 2067 / 1784,
  13534. bottom: 0.035
  13535. }
  13536. },
  13537. foot: {
  13538. height: math.unit(6 / (250 / 35), "feet"),
  13539. name: "Foot",
  13540. image: {
  13541. source: "./media/characters/mesmyriza/foot.svg"
  13542. }
  13543. },
  13544. },
  13545. [
  13546. {
  13547. name: "Macro",
  13548. height: math.unit(457, "meters"),
  13549. default: true
  13550. },
  13551. {
  13552. name: "Megamacro",
  13553. height: math.unit(8, "megameters")
  13554. },
  13555. ]
  13556. ))
  13557. characterMakers.push(() => makeCharacter(
  13558. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13559. {
  13560. front: {
  13561. height: math.unit(6, "feet"),
  13562. weight: math.unit(250, "lb"),
  13563. name: "Front",
  13564. image: {
  13565. source: "./media/characters/saudade/front.svg",
  13566. extra: 1172 / 1139,
  13567. bottom: 0.035
  13568. }
  13569. },
  13570. },
  13571. [
  13572. {
  13573. name: "Micro",
  13574. height: math.unit(3, "inches")
  13575. },
  13576. {
  13577. name: "Normal",
  13578. height: math.unit(6, "feet"),
  13579. default: true
  13580. },
  13581. {
  13582. name: "Macro",
  13583. height: math.unit(50, "feet")
  13584. },
  13585. {
  13586. name: "Megamacro",
  13587. height: math.unit(2800, "feet")
  13588. },
  13589. ]
  13590. ))
  13591. characterMakers.push(() => makeCharacter(
  13592. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13593. {
  13594. front: {
  13595. height: math.unit(5 + 4 / 12, "feet"),
  13596. weight: math.unit(100, "lb"),
  13597. name: "Front",
  13598. image: {
  13599. source: "./media/characters/keireer/front.svg",
  13600. extra: 716 / 666,
  13601. bottom: 0.05
  13602. }
  13603. },
  13604. },
  13605. [
  13606. {
  13607. name: "Normal",
  13608. height: math.unit(5 + 4 / 12, "feet"),
  13609. default: true
  13610. },
  13611. ]
  13612. ))
  13613. characterMakers.push(() => makeCharacter(
  13614. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13615. {
  13616. front: {
  13617. height: math.unit(6, "feet"),
  13618. weight: math.unit(90, "kg"),
  13619. name: "Front",
  13620. image: {
  13621. source: "./media/characters/mirja/front.svg",
  13622. extra: 1789 / 1683,
  13623. bottom: 0.05
  13624. }
  13625. },
  13626. frontDressed: {
  13627. height: math.unit(6, "feet"),
  13628. weight: math.unit(90, "lb"),
  13629. name: "Front (Dressed)",
  13630. image: {
  13631. source: "./media/characters/mirja/front-dressed.svg",
  13632. extra: 1789 / 1683,
  13633. bottom: 0.05
  13634. }
  13635. },
  13636. back: {
  13637. height: math.unit(6, "feet"),
  13638. weight: math.unit(90, "lb"),
  13639. name: "Back",
  13640. image: {
  13641. source: "./media/characters/mirja/back.svg",
  13642. extra: 953 / 917,
  13643. bottom: 0.017
  13644. }
  13645. },
  13646. },
  13647. [
  13648. {
  13649. name: "\"Incognito\"",
  13650. height: math.unit(3, "meters")
  13651. },
  13652. {
  13653. name: "Strolling Size",
  13654. height: math.unit(15, "km")
  13655. },
  13656. {
  13657. name: "Larger Strolling Size",
  13658. height: math.unit(400, "km")
  13659. },
  13660. {
  13661. name: "Preferred Size",
  13662. height: math.unit(5000, "km")
  13663. },
  13664. {
  13665. name: "True Size",
  13666. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13667. default: true
  13668. },
  13669. ]
  13670. ))
  13671. characterMakers.push(() => makeCharacter(
  13672. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13673. {
  13674. front: {
  13675. height: math.unit(15, "feet"),
  13676. weight: math.unit(880, "kg"),
  13677. name: "Front",
  13678. image: {
  13679. source: "./media/characters/nightraver/front.svg",
  13680. extra: 2444 / 2160,
  13681. bottom: 0.027
  13682. }
  13683. },
  13684. back: {
  13685. height: math.unit(15, "feet"),
  13686. weight: math.unit(880, "kg"),
  13687. name: "Back",
  13688. image: {
  13689. source: "./media/characters/nightraver/back.svg",
  13690. extra: 2309 / 2180,
  13691. bottom: 0.005
  13692. }
  13693. },
  13694. sole: {
  13695. height: math.unit(2.878, "feet"),
  13696. name: "Sole",
  13697. image: {
  13698. source: "./media/characters/nightraver/sole.svg"
  13699. }
  13700. },
  13701. foot: {
  13702. height: math.unit(2.285, "feet"),
  13703. name: "Foot",
  13704. image: {
  13705. source: "./media/characters/nightraver/foot.svg"
  13706. }
  13707. },
  13708. maw: {
  13709. height: math.unit(2.67, "feet"),
  13710. name: "Maw",
  13711. image: {
  13712. source: "./media/characters/nightraver/maw.svg"
  13713. }
  13714. },
  13715. },
  13716. [
  13717. {
  13718. name: "Micro",
  13719. height: math.unit(1, "cm")
  13720. },
  13721. {
  13722. name: "Normal",
  13723. height: math.unit(15, "feet"),
  13724. default: true
  13725. },
  13726. {
  13727. name: "Macro",
  13728. height: math.unit(300, "feet")
  13729. },
  13730. {
  13731. name: "Megamacro",
  13732. height: math.unit(300, "miles")
  13733. },
  13734. {
  13735. name: "Gigamacro",
  13736. height: math.unit(10000, "miles")
  13737. },
  13738. ]
  13739. ))
  13740. characterMakers.push(() => makeCharacter(
  13741. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13742. {
  13743. side: {
  13744. height: math.unit(2, "inches"),
  13745. weight: math.unit(5, "grams"),
  13746. name: "Side",
  13747. image: {
  13748. source: "./media/characters/arc/side.svg"
  13749. }
  13750. },
  13751. },
  13752. [
  13753. {
  13754. name: "Micro",
  13755. height: math.unit(2, "inches"),
  13756. default: true
  13757. },
  13758. ]
  13759. ))
  13760. characterMakers.push(() => makeCharacter(
  13761. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13762. {
  13763. front: {
  13764. height: math.unit(1.1938, "meters"),
  13765. weight: math.unit(54, "kg"),
  13766. name: "Front",
  13767. image: {
  13768. source: "./media/characters/nebula-shahar/front.svg",
  13769. extra: 1642 / 1436,
  13770. bottom: 0.06
  13771. }
  13772. },
  13773. },
  13774. [
  13775. {
  13776. name: "Megamicro",
  13777. height: math.unit(0.3, "mm")
  13778. },
  13779. {
  13780. name: "Micro",
  13781. height: math.unit(3, "cm")
  13782. },
  13783. {
  13784. name: "Normal",
  13785. height: math.unit(138, "cm"),
  13786. default: true
  13787. },
  13788. {
  13789. name: "Macro",
  13790. height: math.unit(30, "m")
  13791. },
  13792. ]
  13793. ))
  13794. characterMakers.push(() => makeCharacter(
  13795. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13796. {
  13797. front: {
  13798. height: math.unit(5.24, "feet"),
  13799. weight: math.unit(150, "lb"),
  13800. name: "Front",
  13801. image: {
  13802. source: "./media/characters/shayla/front.svg",
  13803. extra: 1512 / 1414,
  13804. bottom: 0.01
  13805. }
  13806. },
  13807. back: {
  13808. height: math.unit(5.24, "feet"),
  13809. weight: math.unit(150, "lb"),
  13810. name: "Back",
  13811. image: {
  13812. source: "./media/characters/shayla/back.svg",
  13813. extra: 1512 / 1414
  13814. }
  13815. },
  13816. hand: {
  13817. height: math.unit(0.7781496062992126, "feet"),
  13818. name: "Hand",
  13819. image: {
  13820. source: "./media/characters/shayla/hand.svg"
  13821. }
  13822. },
  13823. foot: {
  13824. height: math.unit(1.4206036745406823, "feet"),
  13825. name: "Foot",
  13826. image: {
  13827. source: "./media/characters/shayla/foot.svg"
  13828. }
  13829. },
  13830. },
  13831. [
  13832. {
  13833. name: "Micro",
  13834. height: math.unit(0.32, "feet")
  13835. },
  13836. {
  13837. name: "Normal",
  13838. height: math.unit(5.24, "feet"),
  13839. default: true
  13840. },
  13841. {
  13842. name: "Macro",
  13843. height: math.unit(492.12, "feet")
  13844. },
  13845. {
  13846. name: "Megamacro",
  13847. height: math.unit(186.41, "miles")
  13848. },
  13849. ]
  13850. ))
  13851. characterMakers.push(() => makeCharacter(
  13852. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13853. {
  13854. front: {
  13855. height: math.unit(2.2, "m"),
  13856. weight: math.unit(120, "kg"),
  13857. name: "Front",
  13858. image: {
  13859. source: "./media/characters/pia-jr/front.svg",
  13860. extra: 1000 / 970,
  13861. bottom: 0.035
  13862. }
  13863. },
  13864. hand: {
  13865. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13866. name: "Hand",
  13867. image: {
  13868. source: "./media/characters/pia-jr/hand.svg"
  13869. }
  13870. },
  13871. paw: {
  13872. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13873. name: "Paw",
  13874. image: {
  13875. source: "./media/characters/pia-jr/paw.svg"
  13876. }
  13877. },
  13878. },
  13879. [
  13880. {
  13881. name: "Micro",
  13882. height: math.unit(1.2, "cm")
  13883. },
  13884. {
  13885. name: "Normal",
  13886. height: math.unit(2.2, "m"),
  13887. default: true
  13888. },
  13889. {
  13890. name: "Macro",
  13891. height: math.unit(180, "m")
  13892. },
  13893. {
  13894. name: "Megamacro",
  13895. height: math.unit(420, "km")
  13896. },
  13897. ]
  13898. ))
  13899. characterMakers.push(() => makeCharacter(
  13900. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13901. {
  13902. front: {
  13903. height: math.unit(2, "m"),
  13904. weight: math.unit(115, "kg"),
  13905. name: "Front",
  13906. image: {
  13907. source: "./media/characters/pia-sr/front.svg",
  13908. extra: 760 / 730,
  13909. bottom: 0.015
  13910. }
  13911. },
  13912. back: {
  13913. height: math.unit(2, "m"),
  13914. weight: math.unit(115, "kg"),
  13915. name: "Back",
  13916. image: {
  13917. source: "./media/characters/pia-sr/back.svg",
  13918. extra: 760 / 730,
  13919. bottom: 0.01
  13920. }
  13921. },
  13922. hand: {
  13923. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13924. name: "Hand",
  13925. image: {
  13926. source: "./media/characters/pia-sr/hand.svg"
  13927. }
  13928. },
  13929. foot: {
  13930. height: math.unit(1.83, "feet"),
  13931. name: "Foot",
  13932. image: {
  13933. source: "./media/characters/pia-sr/foot.svg"
  13934. }
  13935. },
  13936. },
  13937. [
  13938. {
  13939. name: "Micro",
  13940. height: math.unit(88, "mm")
  13941. },
  13942. {
  13943. name: "Normal",
  13944. height: math.unit(2, "m"),
  13945. default: true
  13946. },
  13947. {
  13948. name: "Macro",
  13949. height: math.unit(200, "m")
  13950. },
  13951. {
  13952. name: "Megamacro",
  13953. height: math.unit(420, "km")
  13954. },
  13955. ]
  13956. ))
  13957. characterMakers.push(() => makeCharacter(
  13958. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13959. {
  13960. front: {
  13961. height: math.unit(8 + 2 / 12, "feet"),
  13962. weight: math.unit(300, "lb"),
  13963. name: "Front",
  13964. image: {
  13965. source: "./media/characters/kibibyte/front.svg",
  13966. extra: 2221 / 2098,
  13967. bottom: 0.04
  13968. }
  13969. },
  13970. },
  13971. [
  13972. {
  13973. name: "Normal",
  13974. height: math.unit(8 + 2 / 12, "feet"),
  13975. default: true
  13976. },
  13977. {
  13978. name: "Socialable Macro",
  13979. height: math.unit(50, "feet")
  13980. },
  13981. {
  13982. name: "Macro",
  13983. height: math.unit(300, "feet")
  13984. },
  13985. {
  13986. name: "Megamacro",
  13987. height: math.unit(500, "miles")
  13988. },
  13989. ]
  13990. ))
  13991. characterMakers.push(() => makeCharacter(
  13992. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13993. {
  13994. front: {
  13995. height: math.unit(6, "feet"),
  13996. weight: math.unit(150, "lb"),
  13997. name: "Front",
  13998. image: {
  13999. source: "./media/characters/felix/front.svg",
  14000. extra: 762 / 722,
  14001. bottom: 0.02
  14002. }
  14003. },
  14004. frontClothed: {
  14005. height: math.unit(6, "feet"),
  14006. weight: math.unit(150, "lb"),
  14007. name: "Front (Clothed)",
  14008. image: {
  14009. source: "./media/characters/felix/front-clothed.svg",
  14010. extra: 762 / 722,
  14011. bottom: 0.02
  14012. }
  14013. },
  14014. },
  14015. [
  14016. {
  14017. name: "Normal",
  14018. height: math.unit(6 + 8 / 12, "feet"),
  14019. default: true
  14020. },
  14021. {
  14022. name: "Macro",
  14023. height: math.unit(2600, "feet")
  14024. },
  14025. {
  14026. name: "Megamacro",
  14027. height: math.unit(450, "miles")
  14028. },
  14029. ]
  14030. ))
  14031. characterMakers.push(() => makeCharacter(
  14032. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14033. {
  14034. front: {
  14035. height: math.unit(6 + 1 / 12, "feet"),
  14036. weight: math.unit(250, "lb"),
  14037. name: "Front",
  14038. image: {
  14039. source: "./media/characters/tobo/front.svg",
  14040. extra: 608 / 586,
  14041. bottom: 0.023
  14042. }
  14043. },
  14044. back: {
  14045. height: math.unit(6 + 1 / 12, "feet"),
  14046. weight: math.unit(250, "lb"),
  14047. name: "Back",
  14048. image: {
  14049. source: "./media/characters/tobo/back.svg",
  14050. extra: 608 / 586
  14051. }
  14052. },
  14053. },
  14054. [
  14055. {
  14056. name: "Nano",
  14057. height: math.unit(2, "nm")
  14058. },
  14059. {
  14060. name: "Megamicro",
  14061. height: math.unit(0.1, "mm")
  14062. },
  14063. {
  14064. name: "Micro",
  14065. height: math.unit(1, "inch"),
  14066. default: true
  14067. },
  14068. {
  14069. name: "Human-sized",
  14070. height: math.unit(6 + 1 / 12, "feet")
  14071. },
  14072. {
  14073. name: "Macro",
  14074. height: math.unit(250, "feet")
  14075. },
  14076. {
  14077. name: "Megamacro",
  14078. height: math.unit(75, "miles")
  14079. },
  14080. {
  14081. name: "Texas-sized",
  14082. height: math.unit(750, "miles")
  14083. },
  14084. {
  14085. name: "Teramacro",
  14086. height: math.unit(50000, "miles")
  14087. },
  14088. ]
  14089. ))
  14090. characterMakers.push(() => makeCharacter(
  14091. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14092. {
  14093. front: {
  14094. height: math.unit(6, "feet"),
  14095. weight: math.unit(269, "lb"),
  14096. name: "Front",
  14097. image: {
  14098. source: "./media/characters/danny-kapowsky/front.svg",
  14099. extra: 766 / 736,
  14100. bottom: 0.044
  14101. }
  14102. },
  14103. back: {
  14104. height: math.unit(6, "feet"),
  14105. weight: math.unit(269, "lb"),
  14106. name: "Back",
  14107. image: {
  14108. source: "./media/characters/danny-kapowsky/back.svg",
  14109. extra: 797 / 760,
  14110. bottom: 0.025
  14111. }
  14112. },
  14113. },
  14114. [
  14115. {
  14116. name: "Macro",
  14117. height: math.unit(150, "feet"),
  14118. default: true
  14119. },
  14120. {
  14121. name: "Macro+",
  14122. height: math.unit(200, "feet")
  14123. },
  14124. {
  14125. name: "Macro++",
  14126. height: math.unit(300, "feet")
  14127. },
  14128. {
  14129. name: "Macro+++",
  14130. height: math.unit(400, "feet")
  14131. },
  14132. ]
  14133. ))
  14134. characterMakers.push(() => makeCharacter(
  14135. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14136. {
  14137. side: {
  14138. height: math.unit(6, "feet"),
  14139. weight: math.unit(170, "lb"),
  14140. name: "Side",
  14141. image: {
  14142. source: "./media/characters/finn/side.svg",
  14143. extra: 1953 / 1807,
  14144. bottom: 0.057
  14145. }
  14146. },
  14147. },
  14148. [
  14149. {
  14150. name: "Megamacro",
  14151. height: math.unit(14445, "feet"),
  14152. default: true
  14153. },
  14154. ]
  14155. ))
  14156. characterMakers.push(() => makeCharacter(
  14157. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14158. {
  14159. front: {
  14160. height: math.unit(5 + 6 / 12, "feet"),
  14161. weight: math.unit(125, "lb"),
  14162. name: "Front",
  14163. image: {
  14164. source: "./media/characters/roy/front.svg",
  14165. extra: 1,
  14166. bottom: 0.11
  14167. }
  14168. },
  14169. },
  14170. [
  14171. {
  14172. name: "Micro",
  14173. height: math.unit(3, "inches"),
  14174. default: true
  14175. },
  14176. {
  14177. name: "Normal",
  14178. height: math.unit(5 + 6 / 12, "feet")
  14179. },
  14180. {
  14181. name: "Lesser Macro",
  14182. height: math.unit(60, "feet")
  14183. },
  14184. {
  14185. name: "Greater Macro",
  14186. height: math.unit(120, "feet")
  14187. },
  14188. ]
  14189. ))
  14190. characterMakers.push(() => makeCharacter(
  14191. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14192. {
  14193. front: {
  14194. height: math.unit(6, "feet"),
  14195. weight: math.unit(100, "lb"),
  14196. name: "Front",
  14197. image: {
  14198. source: "./media/characters/aevsivs/front.svg",
  14199. extra: 1,
  14200. bottom: 0.03
  14201. }
  14202. },
  14203. back: {
  14204. height: math.unit(6, "feet"),
  14205. weight: math.unit(100, "lb"),
  14206. name: "Back",
  14207. image: {
  14208. source: "./media/characters/aevsivs/back.svg"
  14209. }
  14210. },
  14211. },
  14212. [
  14213. {
  14214. name: "Micro",
  14215. height: math.unit(2, "inches"),
  14216. default: true
  14217. },
  14218. {
  14219. name: "Normal",
  14220. height: math.unit(5, "feet")
  14221. },
  14222. ]
  14223. ))
  14224. characterMakers.push(() => makeCharacter(
  14225. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14226. {
  14227. front: {
  14228. height: math.unit(5 + 7 / 12, "feet"),
  14229. weight: math.unit(159, "lb"),
  14230. name: "Front",
  14231. image: {
  14232. source: "./media/characters/hildegard/front.svg",
  14233. extra: 289 / 269,
  14234. bottom: 7.63 / 297.8
  14235. }
  14236. },
  14237. back: {
  14238. height: math.unit(5 + 7 / 12, "feet"),
  14239. weight: math.unit(159, "lb"),
  14240. name: "Back",
  14241. image: {
  14242. source: "./media/characters/hildegard/back.svg",
  14243. extra: 280 / 260,
  14244. bottom: 2.3 / 282
  14245. }
  14246. },
  14247. },
  14248. [
  14249. {
  14250. name: "Normal",
  14251. height: math.unit(5 + 7 / 12, "feet"),
  14252. default: true
  14253. },
  14254. ]
  14255. ))
  14256. characterMakers.push(() => makeCharacter(
  14257. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14258. {
  14259. bernard: {
  14260. height: math.unit(2 + 7 / 12, "feet"),
  14261. weight: math.unit(66, "lb"),
  14262. name: "Bernard",
  14263. rename: true,
  14264. image: {
  14265. source: "./media/characters/bernard-wilder/bernard.svg",
  14266. extra: 192 / 128,
  14267. bottom: 0.05
  14268. }
  14269. },
  14270. wilder: {
  14271. height: math.unit(5 + 8 / 12, "feet"),
  14272. weight: math.unit(143, "lb"),
  14273. name: "Wilder",
  14274. rename: true,
  14275. image: {
  14276. source: "./media/characters/bernard-wilder/wilder.svg",
  14277. extra: 361 / 312,
  14278. bottom: 0.02
  14279. }
  14280. },
  14281. },
  14282. [
  14283. {
  14284. name: "Normal",
  14285. height: math.unit(2 + 7 / 12, "feet"),
  14286. default: true
  14287. },
  14288. ]
  14289. ))
  14290. characterMakers.push(() => makeCharacter(
  14291. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14292. {
  14293. anthro: {
  14294. height: math.unit(6 + 1 / 12, "feet"),
  14295. weight: math.unit(155, "lb"),
  14296. name: "Anthro",
  14297. image: {
  14298. source: "./media/characters/hearth/anthro.svg",
  14299. extra: 260 / 250,
  14300. bottom: 0.02
  14301. }
  14302. },
  14303. feral: {
  14304. height: math.unit(3.78, "feet"),
  14305. weight: math.unit(35, "kg"),
  14306. name: "Feral",
  14307. image: {
  14308. source: "./media/characters/hearth/feral.svg",
  14309. extra: 153 / 135,
  14310. bottom: 0.03
  14311. }
  14312. },
  14313. },
  14314. [
  14315. {
  14316. name: "Normal",
  14317. height: math.unit(6 + 1 / 12, "feet"),
  14318. default: true
  14319. },
  14320. ]
  14321. ))
  14322. characterMakers.push(() => makeCharacter(
  14323. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14324. {
  14325. front: {
  14326. height: math.unit(6, "feet"),
  14327. weight: math.unit(182, "lb"),
  14328. name: "Front",
  14329. image: {
  14330. source: "./media/characters/ingrid/front.svg",
  14331. extra: 294 / 268,
  14332. bottom: 0.027
  14333. }
  14334. },
  14335. },
  14336. [
  14337. {
  14338. name: "Normal",
  14339. height: math.unit(6, "feet"),
  14340. default: true
  14341. },
  14342. ]
  14343. ))
  14344. characterMakers.push(() => makeCharacter(
  14345. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14346. {
  14347. eevee: {
  14348. height: math.unit(2 + 10 / 12, "feet"),
  14349. weight: math.unit(86, "lb"),
  14350. name: "Malgam",
  14351. image: {
  14352. source: "./media/characters/malgam/eevee.svg",
  14353. extra: 218 / 180,
  14354. bottom: 0.2
  14355. }
  14356. },
  14357. sylveon: {
  14358. height: math.unit(4, "feet"),
  14359. weight: math.unit(101, "lb"),
  14360. name: "Future Malgam",
  14361. rename: true,
  14362. image: {
  14363. source: "./media/characters/malgam/sylveon.svg",
  14364. extra: 371 / 325,
  14365. bottom: 0.015
  14366. }
  14367. },
  14368. gigantamax: {
  14369. height: math.unit(50, "feet"),
  14370. name: "Gigantamax Malgam",
  14371. rename: true,
  14372. image: {
  14373. source: "./media/characters/malgam/gigantamax.svg"
  14374. }
  14375. },
  14376. },
  14377. [
  14378. {
  14379. name: "Normal",
  14380. height: math.unit(2 + 10 / 12, "feet"),
  14381. default: true
  14382. },
  14383. ]
  14384. ))
  14385. characterMakers.push(() => makeCharacter(
  14386. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14387. {
  14388. front: {
  14389. height: math.unit(5 + 11 / 12, "feet"),
  14390. weight: math.unit(188, "lb"),
  14391. name: "Front",
  14392. image: {
  14393. source: "./media/characters/fleur/front.svg",
  14394. extra: 309 / 283,
  14395. bottom: 0.007
  14396. }
  14397. },
  14398. },
  14399. [
  14400. {
  14401. name: "Normal",
  14402. height: math.unit(5 + 11 / 12, "feet"),
  14403. default: true
  14404. },
  14405. ]
  14406. ))
  14407. characterMakers.push(() => makeCharacter(
  14408. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14409. {
  14410. front: {
  14411. height: math.unit(5 + 4 / 12, "feet"),
  14412. weight: math.unit(122, "lb"),
  14413. name: "Front",
  14414. image: {
  14415. source: "./media/characters/jude/front.svg",
  14416. extra: 288 / 273,
  14417. bottom: 0.03
  14418. }
  14419. },
  14420. },
  14421. [
  14422. {
  14423. name: "Normal",
  14424. height: math.unit(5 + 4 / 12, "feet"),
  14425. default: true
  14426. },
  14427. ]
  14428. ))
  14429. characterMakers.push(() => makeCharacter(
  14430. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14431. {
  14432. front: {
  14433. height: math.unit(5 + 11 / 12, "feet"),
  14434. weight: math.unit(190, "lb"),
  14435. name: "Front",
  14436. image: {
  14437. source: "./media/characters/seara/front.svg",
  14438. extra: 1,
  14439. bottom: 0.05
  14440. }
  14441. },
  14442. },
  14443. [
  14444. {
  14445. name: "Normal",
  14446. height: math.unit(5 + 11 / 12, "feet"),
  14447. default: true
  14448. },
  14449. ]
  14450. ))
  14451. characterMakers.push(() => makeCharacter(
  14452. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14453. {
  14454. front: {
  14455. height: math.unit(16 + 5 / 12, "feet"),
  14456. weight: math.unit(524, "lb"),
  14457. name: "Front",
  14458. image: {
  14459. source: "./media/characters/caspian/front.svg",
  14460. extra: 1,
  14461. bottom: 0.04
  14462. }
  14463. },
  14464. },
  14465. [
  14466. {
  14467. name: "Normal",
  14468. height: math.unit(16 + 5 / 12, "feet"),
  14469. default: true
  14470. },
  14471. ]
  14472. ))
  14473. characterMakers.push(() => makeCharacter(
  14474. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14475. {
  14476. front: {
  14477. height: math.unit(5 + 7 / 12, "feet"),
  14478. weight: math.unit(170, "lb"),
  14479. name: "Front",
  14480. image: {
  14481. source: "./media/characters/mika/front.svg",
  14482. extra: 1,
  14483. bottom: 0.016
  14484. }
  14485. },
  14486. },
  14487. [
  14488. {
  14489. name: "Normal",
  14490. height: math.unit(5 + 7 / 12, "feet"),
  14491. default: true
  14492. },
  14493. ]
  14494. ))
  14495. characterMakers.push(() => makeCharacter(
  14496. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14497. {
  14498. front: {
  14499. height: math.unit(6 + 2 / 12, "feet"),
  14500. weight: math.unit(268, "lb"),
  14501. name: "Front",
  14502. image: {
  14503. source: "./media/characters/sol/front.svg",
  14504. extra: 247 / 231,
  14505. bottom: 0.05
  14506. }
  14507. },
  14508. },
  14509. [
  14510. {
  14511. name: "Normal",
  14512. height: math.unit(6 + 2 / 12, "feet"),
  14513. default: true
  14514. },
  14515. ]
  14516. ))
  14517. characterMakers.push(() => makeCharacter(
  14518. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14519. {
  14520. buizel: {
  14521. height: math.unit(2 + 5 / 12, "feet"),
  14522. weight: math.unit(87, "lb"),
  14523. name: "Buizel",
  14524. image: {
  14525. source: "./media/characters/umiko/buizel.svg",
  14526. extra: 172 / 157,
  14527. bottom: 0.01
  14528. }
  14529. },
  14530. floatzel: {
  14531. height: math.unit(5 + 9 / 12, "feet"),
  14532. weight: math.unit(250, "lb"),
  14533. name: "Floatzel",
  14534. image: {
  14535. source: "./media/characters/umiko/floatzel.svg",
  14536. extra: 262 / 248
  14537. }
  14538. },
  14539. },
  14540. [
  14541. {
  14542. name: "Normal",
  14543. height: math.unit(2 + 5 / 12, "feet"),
  14544. default: true
  14545. },
  14546. ]
  14547. ))
  14548. characterMakers.push(() => makeCharacter(
  14549. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14550. {
  14551. front: {
  14552. height: math.unit(6 + 2 / 12, "feet"),
  14553. weight: math.unit(146, "lb"),
  14554. name: "Front",
  14555. image: {
  14556. source: "./media/characters/iliac/front.svg",
  14557. extra: 389 / 365,
  14558. bottom: 0.035
  14559. }
  14560. },
  14561. },
  14562. [
  14563. {
  14564. name: "Normal",
  14565. height: math.unit(6 + 2 / 12, "feet"),
  14566. default: true
  14567. },
  14568. ]
  14569. ))
  14570. characterMakers.push(() => makeCharacter(
  14571. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14572. {
  14573. front: {
  14574. height: math.unit(6, "feet"),
  14575. weight: math.unit(170, "lb"),
  14576. name: "Front",
  14577. image: {
  14578. source: "./media/characters/topaz/front.svg",
  14579. extra: 317 / 303,
  14580. bottom: 0.055
  14581. }
  14582. },
  14583. },
  14584. [
  14585. {
  14586. name: "Normal",
  14587. height: math.unit(6, "feet"),
  14588. default: true
  14589. },
  14590. ]
  14591. ))
  14592. characterMakers.push(() => makeCharacter(
  14593. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14594. {
  14595. front: {
  14596. height: math.unit(5 + 11 / 12, "feet"),
  14597. weight: math.unit(144, "lb"),
  14598. name: "Front",
  14599. image: {
  14600. source: "./media/characters/gabriel/front.svg",
  14601. extra: 285 / 262,
  14602. bottom: 0.004
  14603. }
  14604. },
  14605. },
  14606. [
  14607. {
  14608. name: "Normal",
  14609. height: math.unit(5 + 11 / 12, "feet"),
  14610. default: true
  14611. },
  14612. ]
  14613. ))
  14614. characterMakers.push(() => makeCharacter(
  14615. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14616. {
  14617. side: {
  14618. height: math.unit(6 + 5 / 12, "feet"),
  14619. weight: math.unit(300, "lb"),
  14620. name: "Side",
  14621. image: {
  14622. source: "./media/characters/tempest-suicune/side.svg",
  14623. extra: 195 / 154,
  14624. bottom: 0.04
  14625. }
  14626. },
  14627. },
  14628. [
  14629. {
  14630. name: "Normal",
  14631. height: math.unit(6 + 5 / 12, "feet"),
  14632. default: true
  14633. },
  14634. ]
  14635. ))
  14636. characterMakers.push(() => makeCharacter(
  14637. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14638. {
  14639. front: {
  14640. height: math.unit(7 + 2 / 12, "feet"),
  14641. weight: math.unit(322, "lb"),
  14642. name: "Front",
  14643. image: {
  14644. source: "./media/characters/vulcan/front.svg",
  14645. extra: 154 / 147,
  14646. bottom: 0.04
  14647. }
  14648. },
  14649. },
  14650. [
  14651. {
  14652. name: "Normal",
  14653. height: math.unit(7 + 2 / 12, "feet"),
  14654. default: true
  14655. },
  14656. ]
  14657. ))
  14658. characterMakers.push(() => makeCharacter(
  14659. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14660. {
  14661. front: {
  14662. height: math.unit(5 + 10 / 12, "feet"),
  14663. weight: math.unit(264, "lb"),
  14664. name: "Front",
  14665. image: {
  14666. source: "./media/characters/gault/front.svg",
  14667. extra: 161 / 140,
  14668. bottom: 0.028
  14669. }
  14670. },
  14671. },
  14672. [
  14673. {
  14674. name: "Normal",
  14675. height: math.unit(5 + 10 / 12, "feet"),
  14676. default: true
  14677. },
  14678. ]
  14679. ))
  14680. characterMakers.push(() => makeCharacter(
  14681. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14682. {
  14683. front: {
  14684. height: math.unit(6, "feet"),
  14685. weight: math.unit(150, "lb"),
  14686. name: "Front",
  14687. image: {
  14688. source: "./media/characters/shard/front.svg",
  14689. extra: 273 / 238,
  14690. bottom: 0.02
  14691. }
  14692. },
  14693. },
  14694. [
  14695. {
  14696. name: "Normal",
  14697. height: math.unit(3 + 6 / 12, "feet"),
  14698. default: true
  14699. },
  14700. ]
  14701. ))
  14702. characterMakers.push(() => makeCharacter(
  14703. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14704. {
  14705. front: {
  14706. height: math.unit(5 + 11 / 12, "feet"),
  14707. weight: math.unit(146, "lb"),
  14708. name: "Front",
  14709. image: {
  14710. source: "./media/characters/ashe/front.svg",
  14711. extra: 400 / 373,
  14712. bottom: 0.01
  14713. }
  14714. },
  14715. },
  14716. [
  14717. {
  14718. name: "Normal",
  14719. height: math.unit(5 + 11 / 12, "feet"),
  14720. default: true
  14721. },
  14722. ]
  14723. ))
  14724. characterMakers.push(() => makeCharacter(
  14725. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14726. {
  14727. front: {
  14728. height: math.unit(5 + 5 / 12, "feet"),
  14729. weight: math.unit(135, "lb"),
  14730. name: "Front",
  14731. image: {
  14732. source: "./media/characters/beatrix/front.svg",
  14733. extra: 392 / 379,
  14734. bottom: 0.01
  14735. }
  14736. },
  14737. },
  14738. [
  14739. {
  14740. name: "Normal",
  14741. height: math.unit(6, "feet"),
  14742. default: true
  14743. },
  14744. ]
  14745. ))
  14746. characterMakers.push(() => makeCharacter(
  14747. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14748. {
  14749. front: {
  14750. height: math.unit(6, "feet"),
  14751. weight: math.unit(150, "lb"),
  14752. name: "Front",
  14753. image: {
  14754. source: "./media/characters/ignatius/front.svg",
  14755. extra: 245 / 222,
  14756. bottom: 0.01
  14757. }
  14758. },
  14759. },
  14760. [
  14761. {
  14762. name: "Normal",
  14763. height: math.unit(5 + 5 / 12, "feet"),
  14764. default: true
  14765. },
  14766. ]
  14767. ))
  14768. characterMakers.push(() => makeCharacter(
  14769. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14770. {
  14771. front: {
  14772. height: math.unit(6 + 2 / 12, "feet"),
  14773. weight: math.unit(138, "lb"),
  14774. name: "Front",
  14775. image: {
  14776. source: "./media/characters/mei-li/front.svg",
  14777. extra: 237 / 229,
  14778. bottom: 0.03
  14779. }
  14780. },
  14781. },
  14782. [
  14783. {
  14784. name: "Normal",
  14785. height: math.unit(6 + 2 / 12, "feet"),
  14786. default: true
  14787. },
  14788. ]
  14789. ))
  14790. characterMakers.push(() => makeCharacter(
  14791. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14792. {
  14793. front: {
  14794. height: math.unit(2 + 4 / 12, "feet"),
  14795. weight: math.unit(62, "lb"),
  14796. name: "Front",
  14797. image: {
  14798. source: "./media/characters/puru/front.svg",
  14799. extra: 206 / 149,
  14800. bottom: 0.06
  14801. }
  14802. },
  14803. },
  14804. [
  14805. {
  14806. name: "Normal",
  14807. height: math.unit(2 + 4 / 12, "feet"),
  14808. default: true
  14809. },
  14810. ]
  14811. ))
  14812. characterMakers.push(() => makeCharacter(
  14813. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14814. {
  14815. taur: {
  14816. height: math.unit(11, "feet"),
  14817. weight: math.unit(500, "lb"),
  14818. name: "Taur",
  14819. image: {
  14820. source: "./media/characters/kee/taur.svg",
  14821. extra: 1,
  14822. bottom: 0.04
  14823. }
  14824. },
  14825. },
  14826. [
  14827. {
  14828. name: "Normal",
  14829. height: math.unit(11, "feet"),
  14830. default: true
  14831. },
  14832. ]
  14833. ))
  14834. characterMakers.push(() => makeCharacter(
  14835. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14836. {
  14837. anthro: {
  14838. height: math.unit(7, "feet"),
  14839. weight: math.unit(190, "lb"),
  14840. name: "Anthro",
  14841. image: {
  14842. source: "./media/characters/cobalt-dracha/anthro.svg",
  14843. extra: 231 / 225,
  14844. bottom: 0.04
  14845. }
  14846. },
  14847. feral: {
  14848. height: math.unit(9 + 7 / 12, "feet"),
  14849. weight: math.unit(294, "lb"),
  14850. name: "Feral",
  14851. image: {
  14852. source: "./media/characters/cobalt-dracha/feral.svg",
  14853. extra: 692 / 633,
  14854. bottom: 0.05
  14855. }
  14856. },
  14857. },
  14858. [
  14859. {
  14860. name: "Normal",
  14861. height: math.unit(7, "feet"),
  14862. default: true
  14863. },
  14864. ]
  14865. ))
  14866. characterMakers.push(() => makeCharacter(
  14867. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14868. {
  14869. fallen: {
  14870. height: math.unit(11 + 8 / 12, "feet"),
  14871. weight: math.unit(485, "lb"),
  14872. name: "Java (Fallen)",
  14873. rename: true,
  14874. image: {
  14875. source: "./media/characters/java/fallen.svg",
  14876. extra: 226 / 208,
  14877. bottom: 0.005
  14878. }
  14879. },
  14880. godkin: {
  14881. height: math.unit(10 + 6 / 12, "feet"),
  14882. weight: math.unit(328, "lb"),
  14883. name: "Java (Godkin)",
  14884. rename: true,
  14885. image: {
  14886. source: "./media/characters/java/godkin.svg",
  14887. extra: 270 / 262,
  14888. bottom: 0.02
  14889. }
  14890. },
  14891. },
  14892. [
  14893. {
  14894. name: "Normal",
  14895. height: math.unit(11 + 8 / 12, "feet"),
  14896. default: true
  14897. },
  14898. ]
  14899. ))
  14900. characterMakers.push(() => makeCharacter(
  14901. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14902. {
  14903. front: {
  14904. height: math.unit(7 + 8 / 12, "feet"),
  14905. weight: math.unit(320, "lb"),
  14906. name: "Front",
  14907. image: {
  14908. source: "./media/characters/skoll/front.svg",
  14909. extra: 232 / 220,
  14910. bottom: 0.02
  14911. }
  14912. },
  14913. },
  14914. [
  14915. {
  14916. name: "Normal",
  14917. height: math.unit(7 + 8 / 12, "feet"),
  14918. default: true
  14919. },
  14920. ]
  14921. ))
  14922. characterMakers.push(() => makeCharacter(
  14923. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14924. {
  14925. front: {
  14926. height: math.unit(5 + 9 / 12, "feet"),
  14927. weight: math.unit(170, "lb"),
  14928. name: "Front",
  14929. image: {
  14930. source: "./media/characters/purna/front.svg",
  14931. extra: 239 / 229,
  14932. bottom: 0.01
  14933. }
  14934. },
  14935. },
  14936. [
  14937. {
  14938. name: "Normal",
  14939. height: math.unit(5 + 9 / 12, "feet"),
  14940. default: true
  14941. },
  14942. ]
  14943. ))
  14944. characterMakers.push(() => makeCharacter(
  14945. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14946. {
  14947. front: {
  14948. height: math.unit(5 + 9 / 12, "feet"),
  14949. weight: math.unit(142, "lb"),
  14950. name: "Front",
  14951. image: {
  14952. source: "./media/characters/kuva/front.svg",
  14953. extra: 281 / 271,
  14954. bottom: 0.006
  14955. }
  14956. },
  14957. },
  14958. [
  14959. {
  14960. name: "Normal",
  14961. height: math.unit(5 + 9 / 12, "feet"),
  14962. default: true
  14963. },
  14964. ]
  14965. ))
  14966. characterMakers.push(() => makeCharacter(
  14967. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14968. {
  14969. anthro: {
  14970. height: math.unit(9 + 2 / 12, "feet"),
  14971. weight: math.unit(270, "lb"),
  14972. name: "Anthro",
  14973. image: {
  14974. source: "./media/characters/embra/anthro.svg",
  14975. extra: 200 / 187,
  14976. bottom: 0.02
  14977. }
  14978. },
  14979. feral: {
  14980. height: math.unit(18 + 8 / 12, "feet"),
  14981. weight: math.unit(576, "lb"),
  14982. name: "Feral",
  14983. image: {
  14984. source: "./media/characters/embra/feral.svg",
  14985. extra: 152 / 137,
  14986. bottom: 0.037
  14987. }
  14988. },
  14989. },
  14990. [
  14991. {
  14992. name: "Normal",
  14993. height: math.unit(9 + 2 / 12, "feet"),
  14994. default: true
  14995. },
  14996. ]
  14997. ))
  14998. characterMakers.push(() => makeCharacter(
  14999. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15000. {
  15001. anthro: {
  15002. height: math.unit(10 + 9 / 12, "feet"),
  15003. weight: math.unit(224, "lb"),
  15004. name: "Anthro",
  15005. image: {
  15006. source: "./media/characters/grottos/anthro.svg",
  15007. extra: 350 / 332,
  15008. bottom: 0.045
  15009. }
  15010. },
  15011. feral: {
  15012. height: math.unit(20 + 7 / 12, "feet"),
  15013. weight: math.unit(629, "lb"),
  15014. name: "Feral",
  15015. image: {
  15016. source: "./media/characters/grottos/feral.svg",
  15017. extra: 207 / 190,
  15018. bottom: 0.05
  15019. }
  15020. },
  15021. },
  15022. [
  15023. {
  15024. name: "Normal",
  15025. height: math.unit(10 + 9 / 12, "feet"),
  15026. default: true
  15027. },
  15028. ]
  15029. ))
  15030. characterMakers.push(() => makeCharacter(
  15031. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15032. {
  15033. anthro: {
  15034. height: math.unit(9 + 6 / 12, "feet"),
  15035. weight: math.unit(298, "lb"),
  15036. name: "Anthro",
  15037. image: {
  15038. source: "./media/characters/frifna/anthro.svg",
  15039. extra: 282 / 269,
  15040. bottom: 0.015
  15041. }
  15042. },
  15043. feral: {
  15044. height: math.unit(16 + 2 / 12, "feet"),
  15045. weight: math.unit(624, "lb"),
  15046. name: "Feral",
  15047. image: {
  15048. source: "./media/characters/frifna/feral.svg"
  15049. }
  15050. },
  15051. },
  15052. [
  15053. {
  15054. name: "Normal",
  15055. height: math.unit(9 + 6 / 12, "feet"),
  15056. default: true
  15057. },
  15058. ]
  15059. ))
  15060. characterMakers.push(() => makeCharacter(
  15061. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15062. {
  15063. front: {
  15064. height: math.unit(6 + 2 / 12, "feet"),
  15065. weight: math.unit(168, "lb"),
  15066. name: "Front",
  15067. image: {
  15068. source: "./media/characters/elise/front.svg",
  15069. extra: 276 / 271
  15070. }
  15071. },
  15072. },
  15073. [
  15074. {
  15075. name: "Normal",
  15076. height: math.unit(6 + 2 / 12, "feet"),
  15077. default: true
  15078. },
  15079. ]
  15080. ))
  15081. characterMakers.push(() => makeCharacter(
  15082. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15083. {
  15084. front: {
  15085. height: math.unit(5 + 10 / 12, "feet"),
  15086. weight: math.unit(210, "lb"),
  15087. name: "Front",
  15088. image: {
  15089. source: "./media/characters/glade/front.svg",
  15090. extra: 258 / 247,
  15091. bottom: 0.008
  15092. }
  15093. },
  15094. },
  15095. [
  15096. {
  15097. name: "Normal",
  15098. height: math.unit(5 + 10 / 12, "feet"),
  15099. default: true
  15100. },
  15101. ]
  15102. ))
  15103. characterMakers.push(() => makeCharacter(
  15104. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15105. {
  15106. front: {
  15107. height: math.unit(5 + 10 / 12, "feet"),
  15108. weight: math.unit(129, "lb"),
  15109. name: "Front",
  15110. image: {
  15111. source: "./media/characters/rina/front.svg",
  15112. extra: 266 / 255,
  15113. bottom: 0.005
  15114. }
  15115. },
  15116. },
  15117. [
  15118. {
  15119. name: "Normal",
  15120. height: math.unit(5 + 10 / 12, "feet"),
  15121. default: true
  15122. },
  15123. ]
  15124. ))
  15125. characterMakers.push(() => makeCharacter(
  15126. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15127. {
  15128. front: {
  15129. height: math.unit(6 + 1 / 12, "feet"),
  15130. weight: math.unit(192, "lb"),
  15131. name: "Front",
  15132. image: {
  15133. source: "./media/characters/veronica/front.svg",
  15134. extra: 319 / 309,
  15135. bottom: 0.005
  15136. }
  15137. },
  15138. },
  15139. [
  15140. {
  15141. name: "Normal",
  15142. height: math.unit(6 + 1 / 12, "feet"),
  15143. default: true
  15144. },
  15145. ]
  15146. ))
  15147. characterMakers.push(() => makeCharacter(
  15148. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15149. {
  15150. front: {
  15151. height: math.unit(9 + 3 / 12, "feet"),
  15152. weight: math.unit(1100, "lb"),
  15153. name: "Front",
  15154. image: {
  15155. source: "./media/characters/braxton/front.svg",
  15156. extra: 1057 / 984,
  15157. bottom: 0.05
  15158. }
  15159. },
  15160. },
  15161. [
  15162. {
  15163. name: "Normal",
  15164. height: math.unit(9 + 3 / 12, "feet")
  15165. },
  15166. {
  15167. name: "Giant",
  15168. height: math.unit(300, "feet"),
  15169. default: true
  15170. },
  15171. {
  15172. name: "Macro",
  15173. height: math.unit(700, "feet")
  15174. },
  15175. {
  15176. name: "Megamacro",
  15177. height: math.unit(6000, "feet")
  15178. },
  15179. ]
  15180. ))
  15181. characterMakers.push(() => makeCharacter(
  15182. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15183. {
  15184. front: {
  15185. height: math.unit(6 + 7 / 12, "feet"),
  15186. weight: math.unit(150, "lb"),
  15187. name: "Front",
  15188. image: {
  15189. source: "./media/characters/blue-feyonics/front.svg",
  15190. extra: 1403 / 1306,
  15191. bottom: 0.047
  15192. }
  15193. },
  15194. },
  15195. [
  15196. {
  15197. name: "Normal",
  15198. height: math.unit(6 + 7 / 12, "feet"),
  15199. default: true
  15200. },
  15201. ]
  15202. ))
  15203. characterMakers.push(() => makeCharacter(
  15204. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15205. {
  15206. front: {
  15207. height: math.unit(1.8, "meters"),
  15208. weight: math.unit(60, "kg"),
  15209. name: "Front",
  15210. image: {
  15211. source: "./media/characters/maxwell/front.svg",
  15212. extra: 2060 / 1873
  15213. }
  15214. },
  15215. },
  15216. [
  15217. {
  15218. name: "Micro",
  15219. height: math.unit(1, "mm")
  15220. },
  15221. {
  15222. name: "Normal",
  15223. height: math.unit(1.8, "meter"),
  15224. default: true
  15225. },
  15226. {
  15227. name: "Macro",
  15228. height: math.unit(30, "meters")
  15229. },
  15230. {
  15231. name: "Megamacro",
  15232. height: math.unit(10, "km")
  15233. },
  15234. ]
  15235. ))
  15236. characterMakers.push(() => makeCharacter(
  15237. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15238. {
  15239. front: {
  15240. height: math.unit(6, "feet"),
  15241. weight: math.unit(150, "lb"),
  15242. name: "Front",
  15243. image: {
  15244. source: "./media/characters/jack/front.svg",
  15245. extra: 1754 / 1640,
  15246. bottom: 0.01
  15247. }
  15248. },
  15249. },
  15250. [
  15251. {
  15252. name: "Normal",
  15253. height: math.unit(80000, "feet"),
  15254. default: true
  15255. },
  15256. {
  15257. name: "Max size",
  15258. height: math.unit(10, "lightyears")
  15259. },
  15260. ]
  15261. ))
  15262. characterMakers.push(() => makeCharacter(
  15263. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15264. {
  15265. upright: {
  15266. height: math.unit(7, "feet"),
  15267. weight: math.unit(170, "lb"),
  15268. name: "Upright",
  15269. image: {
  15270. source: "./media/characters/cafat/upright.svg",
  15271. bottom: 0.01
  15272. }
  15273. },
  15274. uprightFull: {
  15275. height: math.unit(7, "feet"),
  15276. weight: math.unit(170, "lb"),
  15277. name: "Upright (Full)",
  15278. image: {
  15279. source: "./media/characters/cafat/upright-full.svg",
  15280. bottom: 0.01
  15281. }
  15282. },
  15283. side: {
  15284. height: math.unit(5, "feet"),
  15285. weight: math.unit(150, "lb"),
  15286. name: "Side",
  15287. image: {
  15288. source: "./media/characters/cafat/side.svg"
  15289. }
  15290. },
  15291. },
  15292. [
  15293. {
  15294. name: "Small",
  15295. height: math.unit(7, "feet"),
  15296. default: true
  15297. },
  15298. {
  15299. name: "Large",
  15300. height: math.unit(15.5, "feet")
  15301. },
  15302. ]
  15303. ))
  15304. characterMakers.push(() => makeCharacter(
  15305. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15306. {
  15307. front: {
  15308. height: math.unit(6, "feet"),
  15309. weight: math.unit(150, "lb"),
  15310. name: "Front",
  15311. image: {
  15312. source: "./media/characters/verin-raharra/front.svg",
  15313. extra: 5019 / 4835,
  15314. bottom: 0.023
  15315. }
  15316. },
  15317. },
  15318. [
  15319. {
  15320. name: "Normal",
  15321. height: math.unit(7 + 5 / 12, "feet"),
  15322. default: true
  15323. },
  15324. {
  15325. name: "Upsized",
  15326. height: math.unit(20, "feet")
  15327. },
  15328. ]
  15329. ))
  15330. characterMakers.push(() => makeCharacter(
  15331. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15332. {
  15333. front: {
  15334. height: math.unit(7, "feet"),
  15335. weight: math.unit(230, "lb"),
  15336. name: "Front",
  15337. image: {
  15338. source: "./media/characters/nakata/front.svg",
  15339. extra: 1.005,
  15340. bottom: 0.01
  15341. }
  15342. },
  15343. },
  15344. [
  15345. {
  15346. name: "Normal",
  15347. height: math.unit(7, "feet"),
  15348. default: true
  15349. },
  15350. {
  15351. name: "Big",
  15352. height: math.unit(14, "feet")
  15353. },
  15354. {
  15355. name: "Macro",
  15356. height: math.unit(400, "feet")
  15357. },
  15358. ]
  15359. ))
  15360. characterMakers.push(() => makeCharacter(
  15361. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15362. {
  15363. front: {
  15364. height: math.unit(4.91, "feet"),
  15365. weight: math.unit(100, "lb"),
  15366. name: "Front",
  15367. image: {
  15368. source: "./media/characters/lily/front.svg",
  15369. extra: 1585 / 1415,
  15370. bottom: 0.02
  15371. }
  15372. },
  15373. },
  15374. [
  15375. {
  15376. name: "Normal",
  15377. height: math.unit(4.91, "feet"),
  15378. default: true
  15379. },
  15380. ]
  15381. ))
  15382. characterMakers.push(() => makeCharacter(
  15383. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15384. {
  15385. laying: {
  15386. height: math.unit(4 + 4 / 12, "feet"),
  15387. weight: math.unit(600, "lb"),
  15388. name: "Laying",
  15389. image: {
  15390. source: "./media/characters/sheila/laying.svg",
  15391. extra: 1333 / 1265,
  15392. bottom: 0.16
  15393. }
  15394. },
  15395. },
  15396. [
  15397. {
  15398. name: "Normal",
  15399. height: math.unit(4 + 4 / 12, "feet"),
  15400. default: true
  15401. },
  15402. ]
  15403. ))
  15404. characterMakers.push(() => makeCharacter(
  15405. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15406. {
  15407. front: {
  15408. height: math.unit(6, "feet"),
  15409. weight: math.unit(190, "lb"),
  15410. name: "Front",
  15411. image: {
  15412. source: "./media/characters/sax/front.svg",
  15413. extra: 1187 / 973,
  15414. bottom: 0.042
  15415. }
  15416. },
  15417. },
  15418. [
  15419. {
  15420. name: "Micro",
  15421. height: math.unit(4, "inches"),
  15422. default: true
  15423. },
  15424. ]
  15425. ))
  15426. characterMakers.push(() => makeCharacter(
  15427. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15428. {
  15429. front: {
  15430. height: math.unit(6, "feet"),
  15431. weight: math.unit(150, "lb"),
  15432. name: "Front",
  15433. image: {
  15434. source: "./media/characters/pandora/front.svg",
  15435. extra: 2720 / 2556,
  15436. bottom: 0.015
  15437. }
  15438. },
  15439. back: {
  15440. height: math.unit(6, "feet"),
  15441. weight: math.unit(150, "lb"),
  15442. name: "Back",
  15443. image: {
  15444. source: "./media/characters/pandora/back.svg",
  15445. extra: 2720 / 2556,
  15446. bottom: 0.01
  15447. }
  15448. },
  15449. beans: {
  15450. height: math.unit(6 / 8, "feet"),
  15451. name: "Beans",
  15452. image: {
  15453. source: "./media/characters/pandora/beans.svg"
  15454. }
  15455. },
  15456. skirt: {
  15457. height: math.unit(6, "feet"),
  15458. weight: math.unit(150, "lb"),
  15459. name: "Skirt",
  15460. image: {
  15461. source: "./media/characters/pandora/skirt.svg",
  15462. extra: 1622 / 1525,
  15463. bottom: 0.015
  15464. }
  15465. },
  15466. hoodie: {
  15467. height: math.unit(6, "feet"),
  15468. weight: math.unit(150, "lb"),
  15469. name: "Hoodie",
  15470. image: {
  15471. source: "./media/characters/pandora/hoodie.svg",
  15472. extra: 1622 / 1525,
  15473. bottom: 0.015
  15474. }
  15475. },
  15476. casual: {
  15477. height: math.unit(6, "feet"),
  15478. weight: math.unit(150, "lb"),
  15479. name: "Casual",
  15480. image: {
  15481. source: "./media/characters/pandora/casual.svg",
  15482. extra: 1622 / 1525,
  15483. bottom: 0.015
  15484. }
  15485. },
  15486. },
  15487. [
  15488. {
  15489. name: "Normal",
  15490. height: math.unit(6, "feet")
  15491. },
  15492. {
  15493. name: "Big Steppy",
  15494. height: math.unit(1, "km"),
  15495. default: true
  15496. },
  15497. ]
  15498. ))
  15499. characterMakers.push(() => makeCharacter(
  15500. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15501. {
  15502. side: {
  15503. height: math.unit(10, "feet"),
  15504. weight: math.unit(800, "kg"),
  15505. name: "Side",
  15506. image: {
  15507. source: "./media/characters/venio-darcony/side.svg",
  15508. extra: 1373 / 1003,
  15509. bottom: 0.037
  15510. }
  15511. },
  15512. front: {
  15513. height: math.unit(19, "feet"),
  15514. weight: math.unit(800, "kg"),
  15515. name: "Front",
  15516. image: {
  15517. source: "./media/characters/venio-darcony/front.svg"
  15518. }
  15519. },
  15520. back: {
  15521. height: math.unit(19, "feet"),
  15522. weight: math.unit(800, "kg"),
  15523. name: "Back",
  15524. image: {
  15525. source: "./media/characters/venio-darcony/back.svg"
  15526. }
  15527. },
  15528. sideNsfw: {
  15529. height: math.unit(10, "feet"),
  15530. weight: math.unit(800, "kg"),
  15531. name: "Side (NSFW)",
  15532. image: {
  15533. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15534. extra: 1373 / 1003,
  15535. bottom: 0.037
  15536. }
  15537. },
  15538. frontNsfw: {
  15539. height: math.unit(19, "feet"),
  15540. weight: math.unit(800, "kg"),
  15541. name: "Front (NSFW)",
  15542. image: {
  15543. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15544. }
  15545. },
  15546. backNsfw: {
  15547. height: math.unit(19, "feet"),
  15548. weight: math.unit(800, "kg"),
  15549. name: "Back (NSFW)",
  15550. image: {
  15551. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15552. }
  15553. },
  15554. sideArmored: {
  15555. height: math.unit(10, "feet"),
  15556. weight: math.unit(800, "kg"),
  15557. name: "Side (Armored)",
  15558. image: {
  15559. source: "./media/characters/venio-darcony/side-armored.svg",
  15560. extra: 1373 / 1003,
  15561. bottom: 0.037
  15562. }
  15563. },
  15564. frontArmored: {
  15565. height: math.unit(19, "feet"),
  15566. weight: math.unit(900, "kg"),
  15567. name: "Front (Armored)",
  15568. image: {
  15569. source: "./media/characters/venio-darcony/front-armored.svg"
  15570. }
  15571. },
  15572. backArmored: {
  15573. height: math.unit(19, "feet"),
  15574. weight: math.unit(900, "kg"),
  15575. name: "Back (Armored)",
  15576. image: {
  15577. source: "./media/characters/venio-darcony/back-armored.svg"
  15578. }
  15579. },
  15580. sword: {
  15581. height: math.unit(10, "feet"),
  15582. weight: math.unit(50, "lb"),
  15583. name: "Sword",
  15584. image: {
  15585. source: "./media/characters/venio-darcony/sword.svg"
  15586. }
  15587. },
  15588. },
  15589. [
  15590. {
  15591. name: "Normal",
  15592. height: math.unit(10, "feet")
  15593. },
  15594. {
  15595. name: "Macro",
  15596. height: math.unit(130, "feet"),
  15597. default: true
  15598. },
  15599. {
  15600. name: "Macro+",
  15601. height: math.unit(240, "feet")
  15602. },
  15603. ]
  15604. ))
  15605. characterMakers.push(() => makeCharacter(
  15606. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15607. {
  15608. front: {
  15609. height: math.unit(6, "feet"),
  15610. weight: math.unit(150, "lb"),
  15611. name: "Front",
  15612. image: {
  15613. source: "./media/characters/veski/front.svg",
  15614. extra: 1299 / 1225,
  15615. bottom: 0.04
  15616. }
  15617. },
  15618. back: {
  15619. height: math.unit(6, "feet"),
  15620. weight: math.unit(150, "lb"),
  15621. name: "Back",
  15622. image: {
  15623. source: "./media/characters/veski/back.svg",
  15624. extra: 1299 / 1225,
  15625. bottom: 0.008
  15626. }
  15627. },
  15628. maw: {
  15629. height: math.unit(1.5 * 1.21, "feet"),
  15630. name: "Maw",
  15631. image: {
  15632. source: "./media/characters/veski/maw.svg"
  15633. }
  15634. },
  15635. },
  15636. [
  15637. {
  15638. name: "Macro",
  15639. height: math.unit(2, "km"),
  15640. default: true
  15641. },
  15642. ]
  15643. ))
  15644. characterMakers.push(() => makeCharacter(
  15645. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15646. {
  15647. front: {
  15648. height: math.unit(5 + 7 / 12, "feet"),
  15649. name: "Front",
  15650. image: {
  15651. source: "./media/characters/isabelle/front.svg",
  15652. extra: 2130 / 1976,
  15653. bottom: 0.05
  15654. }
  15655. },
  15656. },
  15657. [
  15658. {
  15659. name: "Supermicro",
  15660. height: math.unit(10, "micrometers")
  15661. },
  15662. {
  15663. name: "Micro",
  15664. height: math.unit(1, "inch")
  15665. },
  15666. {
  15667. name: "Tiny",
  15668. height: math.unit(5, "inches")
  15669. },
  15670. {
  15671. name: "Standard",
  15672. height: math.unit(5 + 7 / 12, "inches")
  15673. },
  15674. {
  15675. name: "Macro",
  15676. height: math.unit(80, "meters"),
  15677. default: true
  15678. },
  15679. {
  15680. name: "Megamacro",
  15681. height: math.unit(250, "meters")
  15682. },
  15683. {
  15684. name: "Gigamacro",
  15685. height: math.unit(5, "km")
  15686. },
  15687. {
  15688. name: "Cosmic",
  15689. height: math.unit(2.5e6, "miles")
  15690. },
  15691. ]
  15692. ))
  15693. characterMakers.push(() => makeCharacter(
  15694. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15695. {
  15696. front: {
  15697. height: math.unit(6, "feet"),
  15698. weight: math.unit(150, "lb"),
  15699. name: "Front",
  15700. image: {
  15701. source: "./media/characters/hanzo/front.svg",
  15702. extra: 374 / 344,
  15703. bottom: 0.02
  15704. }
  15705. },
  15706. },
  15707. [
  15708. {
  15709. name: "Normal",
  15710. height: math.unit(8, "feet"),
  15711. default: true
  15712. },
  15713. ]
  15714. ))
  15715. characterMakers.push(() => makeCharacter(
  15716. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15717. {
  15718. front: {
  15719. height: math.unit(7, "feet"),
  15720. weight: math.unit(130, "lb"),
  15721. name: "Front",
  15722. image: {
  15723. source: "./media/characters/anna/front.svg",
  15724. extra: 169 / 145,
  15725. bottom: 0.06
  15726. }
  15727. },
  15728. full: {
  15729. height: math.unit(4.96, "feet"),
  15730. weight: math.unit(220, "lb"),
  15731. name: "Full",
  15732. image: {
  15733. source: "./media/characters/anna/full.svg",
  15734. extra: 138 / 114,
  15735. bottom: 0.15
  15736. }
  15737. },
  15738. tongue: {
  15739. height: math.unit(2.53, "feet"),
  15740. name: "Tongue",
  15741. image: {
  15742. source: "./media/characters/anna/tongue.svg"
  15743. }
  15744. },
  15745. },
  15746. [
  15747. {
  15748. name: "Normal",
  15749. height: math.unit(7, "feet"),
  15750. default: true
  15751. },
  15752. ]
  15753. ))
  15754. characterMakers.push(() => makeCharacter(
  15755. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15756. {
  15757. front: {
  15758. height: math.unit(7, "feet"),
  15759. weight: math.unit(150, "lb"),
  15760. name: "Front",
  15761. image: {
  15762. source: "./media/characters/ian-corvid/front.svg",
  15763. extra: 150 / 142,
  15764. bottom: 0.02
  15765. }
  15766. },
  15767. back: {
  15768. height: math.unit(7, "feet"),
  15769. weight: math.unit(150, "lb"),
  15770. name: "Back",
  15771. image: {
  15772. source: "./media/characters/ian-corvid/back.svg",
  15773. extra: 150 / 143,
  15774. bottom: 0.01
  15775. }
  15776. },
  15777. stomping: {
  15778. height: math.unit(7, "feet"),
  15779. weight: math.unit(150, "lb"),
  15780. name: "Stomping",
  15781. image: {
  15782. source: "./media/characters/ian-corvid/stomping.svg",
  15783. extra: 76 / 72
  15784. }
  15785. },
  15786. sitting: {
  15787. height: math.unit(7 / 1.8, "feet"),
  15788. weight: math.unit(150, "lb"),
  15789. name: "Sitting",
  15790. image: {
  15791. source: "./media/characters/ian-corvid/sitting.svg",
  15792. extra: 1400 / 1269,
  15793. bottom: 0.15
  15794. }
  15795. },
  15796. },
  15797. [
  15798. {
  15799. name: "Tiny Microw",
  15800. height: math.unit(1, "inch")
  15801. },
  15802. {
  15803. name: "Microw",
  15804. height: math.unit(6, "inches")
  15805. },
  15806. {
  15807. name: "Crow",
  15808. height: math.unit(7 + 1 / 12, "feet"),
  15809. default: true
  15810. },
  15811. {
  15812. name: "Macrow",
  15813. height: math.unit(176, "feet")
  15814. },
  15815. ]
  15816. ))
  15817. characterMakers.push(() => makeCharacter(
  15818. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15819. {
  15820. front: {
  15821. height: math.unit(5 + 7 / 12, "feet"),
  15822. weight: math.unit(147, "lb"),
  15823. name: "Front",
  15824. image: {
  15825. source: "./media/characters/natalie-kellon/front.svg",
  15826. extra: 1214 / 1141,
  15827. bottom: 0.02
  15828. }
  15829. },
  15830. },
  15831. [
  15832. {
  15833. name: "Micro",
  15834. height: math.unit(1 / 16, "inch")
  15835. },
  15836. {
  15837. name: "Tiny",
  15838. height: math.unit(4, "inches")
  15839. },
  15840. {
  15841. name: "Normal",
  15842. height: math.unit(5 + 7 / 12, "feet"),
  15843. default: true
  15844. },
  15845. {
  15846. name: "Amazon",
  15847. height: math.unit(12, "feet")
  15848. },
  15849. {
  15850. name: "Giantess",
  15851. height: math.unit(160, "meters")
  15852. },
  15853. {
  15854. name: "Titaness",
  15855. height: math.unit(800, "meters")
  15856. },
  15857. ]
  15858. ))
  15859. characterMakers.push(() => makeCharacter(
  15860. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15861. {
  15862. front: {
  15863. height: math.unit(6, "feet"),
  15864. weight: math.unit(150, "lb"),
  15865. name: "Front",
  15866. image: {
  15867. source: "./media/characters/alluria/front.svg",
  15868. extra: 806 / 738,
  15869. bottom: 0.01
  15870. }
  15871. },
  15872. side: {
  15873. height: math.unit(6, "feet"),
  15874. weight: math.unit(150, "lb"),
  15875. name: "Side",
  15876. image: {
  15877. source: "./media/characters/alluria/side.svg",
  15878. extra: 800 / 750,
  15879. }
  15880. },
  15881. back: {
  15882. height: math.unit(6, "feet"),
  15883. weight: math.unit(150, "lb"),
  15884. name: "Back",
  15885. image: {
  15886. source: "./media/characters/alluria/back.svg",
  15887. extra: 806 / 738,
  15888. }
  15889. },
  15890. frontMaid: {
  15891. height: math.unit(6, "feet"),
  15892. weight: math.unit(150, "lb"),
  15893. name: "Front (Maid)",
  15894. image: {
  15895. source: "./media/characters/alluria/front-maid.svg",
  15896. extra: 806 / 738,
  15897. bottom: 0.01
  15898. }
  15899. },
  15900. sideMaid: {
  15901. height: math.unit(6, "feet"),
  15902. weight: math.unit(150, "lb"),
  15903. name: "Side (Maid)",
  15904. image: {
  15905. source: "./media/characters/alluria/side-maid.svg",
  15906. extra: 800 / 750,
  15907. bottom: 0.005
  15908. }
  15909. },
  15910. backMaid: {
  15911. height: math.unit(6, "feet"),
  15912. weight: math.unit(150, "lb"),
  15913. name: "Back (Maid)",
  15914. image: {
  15915. source: "./media/characters/alluria/back-maid.svg",
  15916. extra: 806 / 738,
  15917. }
  15918. },
  15919. },
  15920. [
  15921. {
  15922. name: "Micro",
  15923. height: math.unit(6, "inches"),
  15924. default: true
  15925. },
  15926. ]
  15927. ))
  15928. characterMakers.push(() => makeCharacter(
  15929. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15930. {
  15931. front: {
  15932. height: math.unit(6, "feet"),
  15933. weight: math.unit(150, "lb"),
  15934. name: "Front",
  15935. image: {
  15936. source: "./media/characters/kyle/front.svg",
  15937. extra: 1069 / 962,
  15938. bottom: 77.228 / 1727.45
  15939. }
  15940. },
  15941. },
  15942. [
  15943. {
  15944. name: "Macro",
  15945. height: math.unit(150, "feet"),
  15946. default: true
  15947. },
  15948. ]
  15949. ))
  15950. characterMakers.push(() => makeCharacter(
  15951. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15952. {
  15953. front: {
  15954. height: math.unit(6, "feet"),
  15955. weight: math.unit(300, "lb"),
  15956. name: "Front",
  15957. image: {
  15958. source: "./media/characters/duncan/front.svg",
  15959. extra: 1650 / 1482,
  15960. bottom: 0.05
  15961. }
  15962. },
  15963. },
  15964. [
  15965. {
  15966. name: "Macro",
  15967. height: math.unit(100, "feet"),
  15968. default: true
  15969. },
  15970. ]
  15971. ))
  15972. characterMakers.push(() => makeCharacter(
  15973. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15974. {
  15975. front: {
  15976. height: math.unit(5 + 4 / 12, "feet"),
  15977. weight: math.unit(220, "lb"),
  15978. name: "Front",
  15979. image: {
  15980. source: "./media/characters/memory/front.svg",
  15981. extra: 3641 / 3545,
  15982. bottom: 0.03
  15983. }
  15984. },
  15985. back: {
  15986. height: math.unit(5 + 4 / 12, "feet"),
  15987. weight: math.unit(220, "lb"),
  15988. name: "Back",
  15989. image: {
  15990. source: "./media/characters/memory/back.svg",
  15991. extra: 3641 / 3545,
  15992. bottom: 0.025
  15993. }
  15994. },
  15995. frontSkirt: {
  15996. height: math.unit(5 + 4 / 12, "feet"),
  15997. weight: math.unit(220, "lb"),
  15998. name: "Front (Skirt)",
  15999. image: {
  16000. source: "./media/characters/memory/front-skirt.svg",
  16001. extra: 3641 / 3545,
  16002. bottom: 0.03
  16003. }
  16004. },
  16005. frontDress: {
  16006. height: math.unit(5 + 4 / 12, "feet"),
  16007. weight: math.unit(220, "lb"),
  16008. name: "Front (Dress)",
  16009. image: {
  16010. source: "./media/characters/memory/front-dress.svg",
  16011. extra: 3641 / 3545,
  16012. bottom: 0.03
  16013. }
  16014. },
  16015. },
  16016. [
  16017. {
  16018. name: "Micro",
  16019. height: math.unit(6, "inches"),
  16020. default: true
  16021. },
  16022. {
  16023. name: "Normal",
  16024. height: math.unit(5 + 4 / 12, "feet")
  16025. },
  16026. ]
  16027. ))
  16028. characterMakers.push(() => makeCharacter(
  16029. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16030. {
  16031. front: {
  16032. height: math.unit(4 + 11 / 12, "feet"),
  16033. weight: math.unit(100, "lb"),
  16034. name: "Front",
  16035. image: {
  16036. source: "./media/characters/luno/front.svg",
  16037. extra: 1535 / 1487,
  16038. bottom: 0.03
  16039. }
  16040. },
  16041. },
  16042. [
  16043. {
  16044. name: "Micro",
  16045. height: math.unit(3, "inches")
  16046. },
  16047. {
  16048. name: "Normal",
  16049. height: math.unit(4 + 11 / 12, "feet"),
  16050. default: true
  16051. },
  16052. {
  16053. name: "Macro",
  16054. height: math.unit(300, "feet")
  16055. },
  16056. {
  16057. name: "Megamacro",
  16058. height: math.unit(700, "miles")
  16059. },
  16060. ]
  16061. ))
  16062. characterMakers.push(() => makeCharacter(
  16063. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16064. {
  16065. front: {
  16066. height: math.unit(6 + 2 / 12, "feet"),
  16067. weight: math.unit(170, "lb"),
  16068. name: "Front",
  16069. image: {
  16070. source: "./media/characters/jamesy/front.svg",
  16071. extra: 440 / 382,
  16072. bottom: 0.005
  16073. }
  16074. },
  16075. },
  16076. [
  16077. {
  16078. name: "Micro",
  16079. height: math.unit(3, "inches")
  16080. },
  16081. {
  16082. name: "Normal",
  16083. height: math.unit(6 + 2 / 12, "feet"),
  16084. default: true
  16085. },
  16086. {
  16087. name: "Macro",
  16088. height: math.unit(300, "feet")
  16089. },
  16090. {
  16091. name: "Megamacro",
  16092. height: math.unit(700, "miles")
  16093. },
  16094. ]
  16095. ))
  16096. characterMakers.push(() => makeCharacter(
  16097. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16098. {
  16099. front: {
  16100. height: math.unit(6, "feet"),
  16101. weight: math.unit(160, "lb"),
  16102. name: "Front",
  16103. image: {
  16104. source: "./media/characters/mark/front.svg",
  16105. extra: 3300 / 3100,
  16106. bottom: 136.42 / 3440.47
  16107. }
  16108. },
  16109. },
  16110. [
  16111. {
  16112. name: "Macro",
  16113. height: math.unit(120, "meters")
  16114. },
  16115. {
  16116. name: "Bigger Macro",
  16117. height: math.unit(350, "meters")
  16118. },
  16119. {
  16120. name: "Megamacro",
  16121. height: math.unit(8, "km"),
  16122. default: true
  16123. },
  16124. {
  16125. name: "Continental",
  16126. height: math.unit(4550, "km")
  16127. },
  16128. {
  16129. name: "Planetary",
  16130. height: math.unit(65000, "km")
  16131. },
  16132. ]
  16133. ))
  16134. characterMakers.push(() => makeCharacter(
  16135. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16136. {
  16137. front: {
  16138. height: math.unit(6, "feet"),
  16139. weight: math.unit(400, "lb"),
  16140. name: "Front",
  16141. image: {
  16142. source: "./media/characters/mac/front.svg",
  16143. extra: 1048 / 987.7,
  16144. bottom: 60 / 1107.6,
  16145. }
  16146. },
  16147. },
  16148. [
  16149. {
  16150. name: "Macro",
  16151. height: math.unit(500, "feet"),
  16152. default: true
  16153. },
  16154. ]
  16155. ))
  16156. characterMakers.push(() => makeCharacter(
  16157. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16158. {
  16159. front: {
  16160. height: math.unit(5 + 2 / 12, "feet"),
  16161. weight: math.unit(190, "lb"),
  16162. name: "Front",
  16163. image: {
  16164. source: "./media/characters/bari/front.svg",
  16165. extra: 3156 / 2880,
  16166. bottom: 0.03
  16167. }
  16168. },
  16169. back: {
  16170. height: math.unit(5 + 2 / 12, "feet"),
  16171. weight: math.unit(190, "lb"),
  16172. name: "Back",
  16173. image: {
  16174. source: "./media/characters/bari/back.svg",
  16175. extra: 3260 / 2834,
  16176. bottom: 0.025
  16177. }
  16178. },
  16179. frontPlush: {
  16180. height: math.unit(5 + 2 / 12, "feet"),
  16181. weight: math.unit(190, "lb"),
  16182. name: "Front (Plush)",
  16183. image: {
  16184. source: "./media/characters/bari/front-plush.svg",
  16185. extra: 1112 / 1061,
  16186. bottom: 0.002
  16187. }
  16188. },
  16189. },
  16190. [
  16191. {
  16192. name: "Micro",
  16193. height: math.unit(3, "inches")
  16194. },
  16195. {
  16196. name: "Normal",
  16197. height: math.unit(5 + 2 / 12, "feet"),
  16198. default: true
  16199. },
  16200. {
  16201. name: "Macro",
  16202. height: math.unit(20, "feet")
  16203. },
  16204. ]
  16205. ))
  16206. characterMakers.push(() => makeCharacter(
  16207. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16208. {
  16209. front: {
  16210. height: math.unit(6 + 1 / 12, "feet"),
  16211. weight: math.unit(275, "lb"),
  16212. name: "Front",
  16213. image: {
  16214. source: "./media/characters/hunter-misha-raven/front.svg"
  16215. }
  16216. },
  16217. },
  16218. [
  16219. {
  16220. name: "Mortal",
  16221. height: math.unit(6 + 1 / 12, "feet")
  16222. },
  16223. {
  16224. name: "Divine",
  16225. height: math.unit(1.12134e34, "parsecs"),
  16226. default: true
  16227. },
  16228. ]
  16229. ))
  16230. characterMakers.push(() => makeCharacter(
  16231. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16232. {
  16233. front: {
  16234. height: math.unit(6 + 3 / 12, "feet"),
  16235. weight: math.unit(220, "lb"),
  16236. name: "Front",
  16237. image: {
  16238. source: "./media/characters/max-calore/front.svg",
  16239. extra: 1700 / 1648,
  16240. bottom: 0.01
  16241. }
  16242. },
  16243. back: {
  16244. height: math.unit(6 + 3 / 12, "feet"),
  16245. weight: math.unit(220, "lb"),
  16246. name: "Back",
  16247. image: {
  16248. source: "./media/characters/max-calore/back.svg",
  16249. extra: 1700 / 1648,
  16250. bottom: 0.01
  16251. }
  16252. },
  16253. },
  16254. [
  16255. {
  16256. name: "Normal",
  16257. height: math.unit(6 + 3 / 12, "feet"),
  16258. default: true
  16259. },
  16260. ]
  16261. ))
  16262. characterMakers.push(() => makeCharacter(
  16263. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16264. {
  16265. side: {
  16266. height: math.unit(2 + 8 / 12, "feet"),
  16267. weight: math.unit(99, "lb"),
  16268. name: "Side",
  16269. image: {
  16270. source: "./media/characters/aspen/side.svg",
  16271. extra: 152 / 138,
  16272. bottom: 0.032
  16273. }
  16274. },
  16275. },
  16276. [
  16277. {
  16278. name: "Normal",
  16279. height: math.unit(2 + 8 / 12, "feet"),
  16280. default: true
  16281. },
  16282. ]
  16283. ))
  16284. characterMakers.push(() => makeCharacter(
  16285. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16286. {
  16287. side: {
  16288. height: math.unit(3 + 2 / 12, "feet"),
  16289. weight: math.unit(224, "lb"),
  16290. name: "Side",
  16291. image: {
  16292. source: "./media/characters/sheila-feral-wolf/side.svg",
  16293. extra: 179 / 166,
  16294. bottom: 0.03
  16295. }
  16296. },
  16297. },
  16298. [
  16299. {
  16300. name: "Normal",
  16301. height: math.unit(3 + 2 / 12, "feet"),
  16302. default: true
  16303. },
  16304. ]
  16305. ))
  16306. characterMakers.push(() => makeCharacter(
  16307. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16308. {
  16309. side: {
  16310. height: math.unit(1 + 9 / 12, "feet"),
  16311. weight: math.unit(38, "lb"),
  16312. name: "Side",
  16313. image: {
  16314. source: "./media/characters/michelle/side.svg",
  16315. extra: 147 / 136.7,
  16316. bottom: 0.03
  16317. }
  16318. },
  16319. },
  16320. [
  16321. {
  16322. name: "Normal",
  16323. height: math.unit(1 + 9 / 12, "feet"),
  16324. default: true
  16325. },
  16326. ]
  16327. ))
  16328. characterMakers.push(() => makeCharacter(
  16329. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16330. {
  16331. front: {
  16332. height: math.unit(1 + 1 / 12, "feet"),
  16333. weight: math.unit(18, "lb"),
  16334. name: "Front",
  16335. image: {
  16336. source: "./media/characters/nino/front.svg"
  16337. }
  16338. },
  16339. },
  16340. [
  16341. {
  16342. name: "Normal",
  16343. height: math.unit(1 + 1 / 12, "feet"),
  16344. default: true
  16345. },
  16346. ]
  16347. ))
  16348. characterMakers.push(() => makeCharacter(
  16349. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16350. {
  16351. front: {
  16352. height: math.unit(1, "feet"),
  16353. weight: math.unit(16, "lb"),
  16354. name: "Front",
  16355. image: {
  16356. source: "./media/characters/viola/front.svg"
  16357. }
  16358. },
  16359. },
  16360. [
  16361. {
  16362. name: "Normal",
  16363. height: math.unit(1, "feet"),
  16364. default: true
  16365. },
  16366. ]
  16367. ))
  16368. characterMakers.push(() => makeCharacter(
  16369. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16370. {
  16371. front: {
  16372. height: math.unit(6 + 5 / 12, "feet"),
  16373. weight: math.unit(580, "lb"),
  16374. name: "Front",
  16375. image: {
  16376. source: "./media/characters/atlas/front.svg",
  16377. extra: 298.5 / 290,
  16378. bottom: 0.015
  16379. }
  16380. },
  16381. },
  16382. [
  16383. {
  16384. name: "Normal",
  16385. height: math.unit(6 + 5 / 12, "feet"),
  16386. default: true
  16387. },
  16388. ]
  16389. ))
  16390. characterMakers.push(() => makeCharacter(
  16391. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16392. {
  16393. side: {
  16394. height: math.unit(1 + 10 / 12, "feet"),
  16395. weight: math.unit(25, "lb"),
  16396. name: "Side",
  16397. image: {
  16398. source: "./media/characters/davy/side.svg",
  16399. extra: 200 / 170,
  16400. bottom: 0.01
  16401. }
  16402. },
  16403. },
  16404. [
  16405. {
  16406. name: "Normal",
  16407. height: math.unit(1 + 10 / 12, "feet"),
  16408. default: true
  16409. },
  16410. ]
  16411. ))
  16412. characterMakers.push(() => makeCharacter(
  16413. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16414. {
  16415. side: {
  16416. height: math.unit(4 + 8 / 12, "feet"),
  16417. weight: math.unit(166, "lb"),
  16418. name: "Side",
  16419. image: {
  16420. source: "./media/characters/fiona/side.svg",
  16421. extra: 232 / 220,
  16422. bottom: 0.03
  16423. }
  16424. },
  16425. },
  16426. [
  16427. {
  16428. name: "Normal",
  16429. height: math.unit(4 + 8 / 12, "feet"),
  16430. default: true
  16431. },
  16432. ]
  16433. ))
  16434. characterMakers.push(() => makeCharacter(
  16435. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16436. {
  16437. front: {
  16438. height: math.unit(2, "feet"),
  16439. weight: math.unit(62, "lb"),
  16440. name: "Front",
  16441. image: {
  16442. source: "./media/characters/lyla/front.svg",
  16443. bottom: 0.1
  16444. }
  16445. },
  16446. },
  16447. [
  16448. {
  16449. name: "Normal",
  16450. height: math.unit(2, "feet"),
  16451. default: true
  16452. },
  16453. ]
  16454. ))
  16455. characterMakers.push(() => makeCharacter(
  16456. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16457. {
  16458. side: {
  16459. height: math.unit(1.8, "feet"),
  16460. weight: math.unit(44, "lb"),
  16461. name: "Side",
  16462. image: {
  16463. source: "./media/characters/perseus/side.svg",
  16464. bottom: 0.21
  16465. }
  16466. },
  16467. },
  16468. [
  16469. {
  16470. name: "Normal",
  16471. height: math.unit(1.8, "feet"),
  16472. default: true
  16473. },
  16474. ]
  16475. ))
  16476. characterMakers.push(() => makeCharacter(
  16477. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16478. {
  16479. side: {
  16480. height: math.unit(4 + 2 / 12, "feet"),
  16481. weight: math.unit(20, "lb"),
  16482. name: "Side",
  16483. image: {
  16484. source: "./media/characters/remus/side.svg"
  16485. }
  16486. },
  16487. },
  16488. [
  16489. {
  16490. name: "Normal",
  16491. height: math.unit(4 + 2 / 12, "feet"),
  16492. default: true
  16493. },
  16494. ]
  16495. ))
  16496. characterMakers.push(() => makeCharacter(
  16497. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16498. {
  16499. front: {
  16500. height: math.unit(4 + 11 / 12, "feet"),
  16501. weight: math.unit(114, "lb"),
  16502. name: "Front",
  16503. image: {
  16504. source: "./media/characters/raf/front.svg",
  16505. bottom: 20.5 / 1863
  16506. }
  16507. },
  16508. side: {
  16509. height: math.unit(4 + 11 / 12, "feet"),
  16510. weight: math.unit(114, "lb"),
  16511. name: "Side",
  16512. image: {
  16513. source: "./media/characters/raf/side.svg",
  16514. bottom: 22 / 1822
  16515. }
  16516. },
  16517. },
  16518. [
  16519. {
  16520. name: "Micro",
  16521. height: math.unit(2, "inches")
  16522. },
  16523. {
  16524. name: "Normal",
  16525. height: math.unit(4 + 11 / 12, "feet"),
  16526. default: true
  16527. },
  16528. {
  16529. name: "Macro",
  16530. height: math.unit(70, "feet")
  16531. },
  16532. ]
  16533. ))
  16534. characterMakers.push(() => makeCharacter(
  16535. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16536. {
  16537. front: {
  16538. height: math.unit(1.5, "meters"),
  16539. weight: math.unit(68, "kg"),
  16540. name: "Front",
  16541. image: {
  16542. source: "./media/characters/liam-einarr/front.svg",
  16543. extra: 2822 / 2666
  16544. }
  16545. },
  16546. back: {
  16547. height: math.unit(1.5, "meters"),
  16548. weight: math.unit(68, "kg"),
  16549. name: "Back",
  16550. image: {
  16551. source: "./media/characters/liam-einarr/back.svg",
  16552. extra: 2822 / 2666,
  16553. bottom: 0.015
  16554. }
  16555. },
  16556. },
  16557. [
  16558. {
  16559. name: "Normal",
  16560. height: math.unit(1.5, "meters"),
  16561. default: true
  16562. },
  16563. {
  16564. name: "Macro",
  16565. height: math.unit(150, "meters")
  16566. },
  16567. {
  16568. name: "Megamacro",
  16569. height: math.unit(35, "km")
  16570. },
  16571. ]
  16572. ))
  16573. characterMakers.push(() => makeCharacter(
  16574. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16575. {
  16576. front: {
  16577. height: math.unit(6, "feet"),
  16578. weight: math.unit(75, "kg"),
  16579. name: "Front",
  16580. image: {
  16581. source: "./media/characters/linda/front.svg",
  16582. extra: 930 / 874,
  16583. bottom: 0.004
  16584. }
  16585. },
  16586. },
  16587. [
  16588. {
  16589. name: "Normal",
  16590. height: math.unit(6, "feet"),
  16591. default: true
  16592. },
  16593. ]
  16594. ))
  16595. characterMakers.push(() => makeCharacter(
  16596. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16597. {
  16598. front: {
  16599. height: math.unit(6 + 8 / 12, "feet"),
  16600. weight: math.unit(220, "lb"),
  16601. name: "Front",
  16602. image: {
  16603. source: "./media/characters/caylex/front.svg",
  16604. extra: 821 / 772,
  16605. bottom: 0.07
  16606. }
  16607. },
  16608. back: {
  16609. height: math.unit(6 + 8 / 12, "feet"),
  16610. weight: math.unit(220, "lb"),
  16611. name: "Back",
  16612. image: {
  16613. source: "./media/characters/caylex/back.svg",
  16614. extra: 821 / 772,
  16615. bottom: 0.022
  16616. }
  16617. },
  16618. hand: {
  16619. height: math.unit(1.25, "feet"),
  16620. name: "Hand",
  16621. image: {
  16622. source: "./media/characters/caylex/hand.svg"
  16623. }
  16624. },
  16625. foot: {
  16626. height: math.unit(1.6, "feet"),
  16627. name: "Foot",
  16628. image: {
  16629. source: "./media/characters/caylex/foot.svg"
  16630. }
  16631. },
  16632. armored: {
  16633. height: math.unit(6 + 8 / 12, "feet"),
  16634. weight: math.unit(250, "lb"),
  16635. name: "Armored",
  16636. image: {
  16637. source: "./media/characters/caylex/armored.svg",
  16638. extra: 1420 / 1310,
  16639. bottom: 0.045
  16640. }
  16641. },
  16642. },
  16643. [
  16644. {
  16645. name: "Normal",
  16646. height: math.unit(6 + 8 / 12, "feet"),
  16647. default: true
  16648. },
  16649. {
  16650. name: "Normal+",
  16651. height: math.unit(12, "feet")
  16652. },
  16653. ]
  16654. ))
  16655. characterMakers.push(() => makeCharacter(
  16656. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16657. {
  16658. front: {
  16659. height: math.unit(7 + 6 / 12, "feet"),
  16660. weight: math.unit(288, "lb"),
  16661. name: "Front",
  16662. image: {
  16663. source: "./media/characters/alana/front.svg",
  16664. extra: 679 / 653,
  16665. bottom: 22.5 / 701
  16666. }
  16667. },
  16668. },
  16669. [
  16670. {
  16671. name: "Normal",
  16672. height: math.unit(7 + 6 / 12, "feet")
  16673. },
  16674. {
  16675. name: "Large",
  16676. height: math.unit(50, "feet")
  16677. },
  16678. {
  16679. name: "Macro",
  16680. height: math.unit(100, "feet"),
  16681. default: true
  16682. },
  16683. {
  16684. name: "Macro+",
  16685. height: math.unit(200, "feet")
  16686. },
  16687. ]
  16688. ))
  16689. characterMakers.push(() => makeCharacter(
  16690. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16691. {
  16692. front: {
  16693. height: math.unit(6 + 1 / 12, "feet"),
  16694. weight: math.unit(210, "lb"),
  16695. name: "Front",
  16696. image: {
  16697. source: "./media/characters/hasani/front.svg",
  16698. extra: 244 / 232,
  16699. bottom: 0.01
  16700. }
  16701. },
  16702. back: {
  16703. height: math.unit(6 + 1 / 12, "feet"),
  16704. weight: math.unit(210, "lb"),
  16705. name: "Back",
  16706. image: {
  16707. source: "./media/characters/hasani/back.svg",
  16708. extra: 244 / 232,
  16709. bottom: 0.01
  16710. }
  16711. },
  16712. },
  16713. [
  16714. {
  16715. name: "Normal",
  16716. height: math.unit(6 + 1 / 12, "feet")
  16717. },
  16718. {
  16719. name: "Macro",
  16720. height: math.unit(175, "feet"),
  16721. default: true
  16722. },
  16723. ]
  16724. ))
  16725. characterMakers.push(() => makeCharacter(
  16726. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16727. {
  16728. front: {
  16729. height: math.unit(1.82, "meters"),
  16730. weight: math.unit(140, "lb"),
  16731. name: "Front",
  16732. image: {
  16733. source: "./media/characters/nita/front.svg",
  16734. extra: 2473 / 2363,
  16735. bottom: 0.01
  16736. }
  16737. },
  16738. },
  16739. [
  16740. {
  16741. name: "Normal",
  16742. height: math.unit(1.82, "m")
  16743. },
  16744. {
  16745. name: "Macro",
  16746. height: math.unit(300, "m")
  16747. },
  16748. {
  16749. name: "Mistake Canon",
  16750. height: math.unit(0.5, "miles"),
  16751. default: true
  16752. },
  16753. {
  16754. name: "Big Mistake",
  16755. height: math.unit(13, "miles")
  16756. },
  16757. {
  16758. name: "Playing God",
  16759. height: math.unit(2450, "miles")
  16760. },
  16761. ]
  16762. ))
  16763. characterMakers.push(() => makeCharacter(
  16764. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16765. {
  16766. front: {
  16767. height: math.unit(4, "feet"),
  16768. weight: math.unit(120, "lb"),
  16769. name: "Front",
  16770. image: {
  16771. source: "./media/characters/shiriko/front.svg",
  16772. extra: 195 / 188
  16773. }
  16774. },
  16775. },
  16776. [
  16777. {
  16778. name: "Normal",
  16779. height: math.unit(4, "feet"),
  16780. default: true
  16781. },
  16782. ]
  16783. ))
  16784. characterMakers.push(() => makeCharacter(
  16785. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16786. {
  16787. front: {
  16788. height: math.unit(6, "feet"),
  16789. name: "front",
  16790. image: {
  16791. source: "./media/characters/deja/front.svg",
  16792. extra: 926 / 840,
  16793. bottom: 0.07
  16794. }
  16795. },
  16796. },
  16797. [
  16798. {
  16799. name: "Planck Length",
  16800. height: math.unit(1.6e-35, "meters")
  16801. },
  16802. {
  16803. name: "Normal",
  16804. height: math.unit(30.48, "meters"),
  16805. default: true
  16806. },
  16807. {
  16808. name: "Universal",
  16809. height: math.unit(8.8e26, "meters")
  16810. },
  16811. ]
  16812. ))
  16813. characterMakers.push(() => makeCharacter(
  16814. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16815. {
  16816. side: {
  16817. height: math.unit(8, "feet"),
  16818. weight: math.unit(6300, "lb"),
  16819. name: "Side",
  16820. image: {
  16821. source: "./media/characters/anima/side.svg",
  16822. bottom: 0.035
  16823. }
  16824. },
  16825. },
  16826. [
  16827. {
  16828. name: "Normal",
  16829. height: math.unit(8, "feet"),
  16830. default: true
  16831. },
  16832. ]
  16833. ))
  16834. characterMakers.push(() => makeCharacter(
  16835. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16836. {
  16837. front: {
  16838. height: math.unit(8, "feet"),
  16839. weight: math.unit(350, "lb"),
  16840. name: "Front",
  16841. image: {
  16842. source: "./media/characters/bianca/front.svg",
  16843. extra: 234 / 225,
  16844. bottom: 0.03
  16845. }
  16846. },
  16847. },
  16848. [
  16849. {
  16850. name: "Normal",
  16851. height: math.unit(8, "feet"),
  16852. default: true
  16853. },
  16854. ]
  16855. ))
  16856. characterMakers.push(() => makeCharacter(
  16857. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16858. {
  16859. front: {
  16860. height: math.unit(6, "feet"),
  16861. weight: math.unit(150, "lb"),
  16862. name: "Front",
  16863. image: {
  16864. source: "./media/characters/adinia/front.svg",
  16865. extra: 1845 / 1672,
  16866. bottom: 0.02
  16867. }
  16868. },
  16869. back: {
  16870. height: math.unit(6, "feet"),
  16871. weight: math.unit(150, "lb"),
  16872. name: "Back",
  16873. image: {
  16874. source: "./media/characters/adinia/back.svg",
  16875. extra: 1845 / 1672,
  16876. bottom: 0.002
  16877. }
  16878. },
  16879. },
  16880. [
  16881. {
  16882. name: "Normal",
  16883. height: math.unit(11 + 5 / 12, "feet"),
  16884. default: true
  16885. },
  16886. ]
  16887. ))
  16888. characterMakers.push(() => makeCharacter(
  16889. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16890. {
  16891. front: {
  16892. height: math.unit(3, "meters"),
  16893. weight: math.unit(200, "kg"),
  16894. name: "Front",
  16895. image: {
  16896. source: "./media/characters/lykasa/front.svg",
  16897. extra: 1076 / 976,
  16898. bottom: 0.06
  16899. }
  16900. },
  16901. },
  16902. [
  16903. {
  16904. name: "Normal",
  16905. height: math.unit(3, "meters")
  16906. },
  16907. {
  16908. name: "Kaiju",
  16909. height: math.unit(120, "meters"),
  16910. default: true
  16911. },
  16912. {
  16913. name: "Mega Kaiju",
  16914. height: math.unit(240, "km")
  16915. },
  16916. {
  16917. name: "Giga Kaiju",
  16918. height: math.unit(400, "megameters")
  16919. },
  16920. {
  16921. name: "Tera Kaiju",
  16922. height: math.unit(800, "gigameters")
  16923. },
  16924. {
  16925. name: "Kaiju Dragon Goddess",
  16926. height: math.unit(26, "zettaparsecs")
  16927. },
  16928. ]
  16929. ))
  16930. characterMakers.push(() => makeCharacter(
  16931. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16932. {
  16933. side: {
  16934. height: math.unit(283 / 124 * 6, "feet"),
  16935. weight: math.unit(35000, "lb"),
  16936. name: "Side",
  16937. image: {
  16938. source: "./media/characters/malfaren/side.svg",
  16939. extra: 2500 / 1010,
  16940. bottom: 0.01
  16941. }
  16942. },
  16943. front: {
  16944. height: math.unit(22.36, "feet"),
  16945. weight: math.unit(35000, "lb"),
  16946. name: "Front",
  16947. image: {
  16948. source: "./media/characters/malfaren/front.svg",
  16949. extra: 1631 / 1476,
  16950. bottom: 0.01
  16951. }
  16952. },
  16953. maw: {
  16954. height: math.unit(6.9, "feet"),
  16955. name: "Maw",
  16956. image: {
  16957. source: "./media/characters/malfaren/maw.svg"
  16958. }
  16959. },
  16960. },
  16961. [
  16962. {
  16963. name: "Big",
  16964. height: math.unit(283 / 162 * 6, "feet"),
  16965. },
  16966. {
  16967. name: "Bigger",
  16968. height: math.unit(283 / 124 * 6, "feet")
  16969. },
  16970. {
  16971. name: "Massive",
  16972. height: math.unit(283 / 92 * 6, "feet"),
  16973. default: true
  16974. },
  16975. {
  16976. name: "👀💦",
  16977. height: math.unit(283 / 73 * 6, "feet"),
  16978. },
  16979. ]
  16980. ))
  16981. characterMakers.push(() => makeCharacter(
  16982. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16983. {
  16984. front: {
  16985. height: math.unit(1.7, "m"),
  16986. weight: math.unit(70, "kg"),
  16987. name: "Front",
  16988. image: {
  16989. source: "./media/characters/kernel/front.svg",
  16990. extra: 222 / 210,
  16991. bottom: 0.007
  16992. }
  16993. },
  16994. },
  16995. [
  16996. {
  16997. name: "Nano",
  16998. height: math.unit(17, "micrometers")
  16999. },
  17000. {
  17001. name: "Micro",
  17002. height: math.unit(1.7, "mm")
  17003. },
  17004. {
  17005. name: "Small",
  17006. height: math.unit(1.7, "cm")
  17007. },
  17008. {
  17009. name: "Normal",
  17010. height: math.unit(1.7, "m"),
  17011. default: true
  17012. },
  17013. ]
  17014. ))
  17015. characterMakers.push(() => makeCharacter(
  17016. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17017. {
  17018. front: {
  17019. height: math.unit(1.75, "meters"),
  17020. weight: math.unit(65, "kg"),
  17021. name: "Front",
  17022. image: {
  17023. source: "./media/characters/jayne-folest/front.svg",
  17024. extra: 2115 / 2007,
  17025. bottom: 0.02
  17026. }
  17027. },
  17028. back: {
  17029. height: math.unit(1.75, "meters"),
  17030. weight: math.unit(65, "kg"),
  17031. name: "Back",
  17032. image: {
  17033. source: "./media/characters/jayne-folest/back.svg",
  17034. extra: 2115 / 2007,
  17035. bottom: 0.005
  17036. }
  17037. },
  17038. frontClothed: {
  17039. height: math.unit(1.75, "meters"),
  17040. weight: math.unit(65, "kg"),
  17041. name: "Front (Clothed)",
  17042. image: {
  17043. source: "./media/characters/jayne-folest/front-clothed.svg",
  17044. extra: 2115 / 2007,
  17045. bottom: 0.035
  17046. }
  17047. },
  17048. hand: {
  17049. height: math.unit(1 / 1.260, "feet"),
  17050. name: "Hand",
  17051. image: {
  17052. source: "./media/characters/jayne-folest/hand.svg"
  17053. }
  17054. },
  17055. foot: {
  17056. height: math.unit(1 / 0.918, "feet"),
  17057. name: "Foot",
  17058. image: {
  17059. source: "./media/characters/jayne-folest/foot.svg"
  17060. }
  17061. },
  17062. },
  17063. [
  17064. {
  17065. name: "Micro",
  17066. height: math.unit(4, "cm")
  17067. },
  17068. {
  17069. name: "Normal",
  17070. height: math.unit(1.75, "meters")
  17071. },
  17072. {
  17073. name: "Macro",
  17074. height: math.unit(47.5, "meters"),
  17075. default: true
  17076. },
  17077. ]
  17078. ))
  17079. characterMakers.push(() => makeCharacter(
  17080. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17081. {
  17082. front: {
  17083. height: math.unit(180, "cm"),
  17084. weight: math.unit(70, "kg"),
  17085. name: "Front",
  17086. image: {
  17087. source: "./media/characters/algier/front.svg",
  17088. extra: 596 / 572,
  17089. bottom: 0.04
  17090. }
  17091. },
  17092. back: {
  17093. height: math.unit(180, "cm"),
  17094. weight: math.unit(70, "kg"),
  17095. name: "Back",
  17096. image: {
  17097. source: "./media/characters/algier/back.svg",
  17098. extra: 596 / 572,
  17099. bottom: 0.025
  17100. }
  17101. },
  17102. frontdressed: {
  17103. height: math.unit(180, "cm"),
  17104. weight: math.unit(150, "kg"),
  17105. name: "Front-dressed",
  17106. image: {
  17107. source: "./media/characters/algier/front-dressed.svg",
  17108. extra: 596 / 572,
  17109. bottom: 0.038
  17110. }
  17111. },
  17112. },
  17113. [
  17114. {
  17115. name: "Micro",
  17116. height: math.unit(5, "cm")
  17117. },
  17118. {
  17119. name: "Normal",
  17120. height: math.unit(180, "cm"),
  17121. default: true
  17122. },
  17123. {
  17124. name: "Macro",
  17125. height: math.unit(64, "m")
  17126. },
  17127. ]
  17128. ))
  17129. characterMakers.push(() => makeCharacter(
  17130. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17131. {
  17132. upright: {
  17133. height: math.unit(7, "feet"),
  17134. weight: math.unit(300, "lb"),
  17135. name: "Upright",
  17136. image: {
  17137. source: "./media/characters/pretzel/upright.svg",
  17138. extra: 534 / 522,
  17139. bottom: 0.065
  17140. }
  17141. },
  17142. sprawling: {
  17143. height: math.unit(3.75, "feet"),
  17144. weight: math.unit(300, "lb"),
  17145. name: "Sprawling",
  17146. image: {
  17147. source: "./media/characters/pretzel/sprawling.svg",
  17148. extra: 314 / 281,
  17149. bottom: 0.1
  17150. }
  17151. },
  17152. tongue: {
  17153. height: math.unit(2, "feet"),
  17154. name: "Tongue",
  17155. image: {
  17156. source: "./media/characters/pretzel/tongue.svg"
  17157. }
  17158. },
  17159. },
  17160. [
  17161. {
  17162. name: "Normal",
  17163. height: math.unit(7, "feet"),
  17164. default: true
  17165. },
  17166. {
  17167. name: "Oversized",
  17168. height: math.unit(15, "feet")
  17169. },
  17170. {
  17171. name: "Huge",
  17172. height: math.unit(30, "feet")
  17173. },
  17174. {
  17175. name: "Macro",
  17176. height: math.unit(250, "feet")
  17177. },
  17178. ]
  17179. ))
  17180. characterMakers.push(() => makeCharacter(
  17181. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17182. {
  17183. sideFront: {
  17184. height: math.unit(5 + 2 / 12, "feet"),
  17185. weight: math.unit(120, "lb"),
  17186. name: "Front Side",
  17187. image: {
  17188. source: "./media/characters/roxi/side-front.svg",
  17189. extra: 2924 / 2717,
  17190. bottom: 0.08
  17191. }
  17192. },
  17193. sideBack: {
  17194. height: math.unit(5 + 2 / 12, "feet"),
  17195. weight: math.unit(120, "lb"),
  17196. name: "Back Side",
  17197. image: {
  17198. source: "./media/characters/roxi/side-back.svg",
  17199. extra: 2904 / 2693,
  17200. bottom: 0.06
  17201. }
  17202. },
  17203. front: {
  17204. height: math.unit(5 + 2 / 12, "feet"),
  17205. weight: math.unit(120, "lb"),
  17206. name: "Front",
  17207. image: {
  17208. source: "./media/characters/roxi/front.svg",
  17209. extra: 2028 / 1907,
  17210. bottom: 0.01
  17211. }
  17212. },
  17213. frontAlt: {
  17214. height: math.unit(5 + 2 / 12, "feet"),
  17215. weight: math.unit(120, "lb"),
  17216. name: "Front (Alt)",
  17217. image: {
  17218. source: "./media/characters/roxi/front-alt.svg",
  17219. extra: 1828 / 1798,
  17220. bottom: 0.01
  17221. }
  17222. },
  17223. sitting: {
  17224. height: math.unit(2.8, "feet"),
  17225. weight: math.unit(120, "lb"),
  17226. name: "Sitting",
  17227. image: {
  17228. source: "./media/characters/roxi/sitting.svg",
  17229. extra: 2660 / 2462,
  17230. bottom: 0.1
  17231. }
  17232. },
  17233. },
  17234. [
  17235. {
  17236. name: "Normal",
  17237. height: math.unit(5 + 2 / 12, "feet"),
  17238. default: true
  17239. },
  17240. ]
  17241. ))
  17242. characterMakers.push(() => makeCharacter(
  17243. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17244. {
  17245. side: {
  17246. height: math.unit(55, "feet"),
  17247. weight: math.unit(153, "tons"),
  17248. name: "Side",
  17249. image: {
  17250. source: "./media/characters/shadow/side.svg",
  17251. extra: 701 / 628,
  17252. bottom: 0.02
  17253. }
  17254. },
  17255. flying: {
  17256. height: math.unit(145, "feet"),
  17257. weight: math.unit(153, "tons"),
  17258. name: "Flying",
  17259. image: {
  17260. source: "./media/characters/shadow/flying.svg"
  17261. }
  17262. },
  17263. },
  17264. [
  17265. {
  17266. name: "Normal",
  17267. height: math.unit(55, "feet"),
  17268. default: true
  17269. },
  17270. ]
  17271. ))
  17272. characterMakers.push(() => makeCharacter(
  17273. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17274. {
  17275. front: {
  17276. height: math.unit(6, "feet"),
  17277. weight: math.unit(200, "lb"),
  17278. name: "Front",
  17279. image: {
  17280. source: "./media/characters/marcie/front.svg",
  17281. extra: 960 / 876,
  17282. bottom: 58 / 1017.87
  17283. }
  17284. },
  17285. },
  17286. [
  17287. {
  17288. name: "Macro",
  17289. height: math.unit(1, "mile"),
  17290. default: true
  17291. },
  17292. ]
  17293. ))
  17294. characterMakers.push(() => makeCharacter(
  17295. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17296. {
  17297. front: {
  17298. height: math.unit(7, "feet"),
  17299. weight: math.unit(200, "lb"),
  17300. name: "Front",
  17301. image: {
  17302. source: "./media/characters/kachina/front.svg",
  17303. extra: 1290.68 / 1119,
  17304. bottom: 36.5 / 1327.18
  17305. }
  17306. },
  17307. },
  17308. [
  17309. {
  17310. name: "Normal",
  17311. height: math.unit(7, "feet"),
  17312. default: true
  17313. },
  17314. ]
  17315. ))
  17316. characterMakers.push(() => makeCharacter(
  17317. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17318. {
  17319. looking: {
  17320. height: math.unit(2, "meters"),
  17321. weight: math.unit(300, "kg"),
  17322. name: "Looking",
  17323. image: {
  17324. source: "./media/characters/kash/looking.svg",
  17325. extra: 474 / 344,
  17326. bottom: 0.03
  17327. }
  17328. },
  17329. side: {
  17330. height: math.unit(2, "meters"),
  17331. weight: math.unit(300, "kg"),
  17332. name: "Side",
  17333. image: {
  17334. source: "./media/characters/kash/side.svg",
  17335. extra: 302 / 251,
  17336. bottom: 0.03
  17337. }
  17338. },
  17339. front: {
  17340. height: math.unit(2, "meters"),
  17341. weight: math.unit(300, "kg"),
  17342. name: "Front",
  17343. image: {
  17344. source: "./media/characters/kash/front.svg",
  17345. extra: 495 / 360,
  17346. bottom: 0.015
  17347. }
  17348. },
  17349. },
  17350. [
  17351. {
  17352. name: "Normal",
  17353. height: math.unit(2, "meters"),
  17354. default: true
  17355. },
  17356. {
  17357. name: "Big",
  17358. height: math.unit(3, "meters")
  17359. },
  17360. {
  17361. name: "Large",
  17362. height: math.unit(5, "meters")
  17363. },
  17364. ]
  17365. ))
  17366. characterMakers.push(() => makeCharacter(
  17367. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17368. {
  17369. feeding: {
  17370. height: math.unit(6.7, "feet"),
  17371. weight: math.unit(350, "lb"),
  17372. name: "Feeding",
  17373. image: {
  17374. source: "./media/characters/lalim/feeding.svg",
  17375. }
  17376. },
  17377. },
  17378. [
  17379. {
  17380. name: "Normal",
  17381. height: math.unit(6.7, "feet"),
  17382. default: true
  17383. },
  17384. ]
  17385. ))
  17386. characterMakers.push(() => makeCharacter(
  17387. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17388. {
  17389. front: {
  17390. height: math.unit(9.5, "feet"),
  17391. weight: math.unit(600, "lb"),
  17392. name: "Front",
  17393. image: {
  17394. source: "./media/characters/de'vout/front.svg",
  17395. extra: 1443 / 1328,
  17396. bottom: 0.025
  17397. }
  17398. },
  17399. back: {
  17400. height: math.unit(9.5, "feet"),
  17401. weight: math.unit(600, "lb"),
  17402. name: "Back",
  17403. image: {
  17404. source: "./media/characters/de'vout/back.svg",
  17405. extra: 1443 / 1328
  17406. }
  17407. },
  17408. frontDressed: {
  17409. height: math.unit(9.5, "feet"),
  17410. weight: math.unit(600, "lb"),
  17411. name: "Front (Dressed",
  17412. image: {
  17413. source: "./media/characters/de'vout/front-dressed.svg",
  17414. extra: 1443 / 1328,
  17415. bottom: 0.025
  17416. }
  17417. },
  17418. backDressed: {
  17419. height: math.unit(9.5, "feet"),
  17420. weight: math.unit(600, "lb"),
  17421. name: "Back (Dressed",
  17422. image: {
  17423. source: "./media/characters/de'vout/back-dressed.svg",
  17424. extra: 1443 / 1328
  17425. }
  17426. },
  17427. },
  17428. [
  17429. {
  17430. name: "Normal",
  17431. height: math.unit(9.5, "feet"),
  17432. default: true
  17433. },
  17434. ]
  17435. ))
  17436. characterMakers.push(() => makeCharacter(
  17437. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17438. {
  17439. front: {
  17440. height: math.unit(8, "feet"),
  17441. weight: math.unit(225, "lb"),
  17442. name: "Front",
  17443. image: {
  17444. source: "./media/characters/talana/front.svg",
  17445. extra: 1410 / 1300,
  17446. bottom: 0.015
  17447. }
  17448. },
  17449. frontDressed: {
  17450. height: math.unit(8, "feet"),
  17451. weight: math.unit(225, "lb"),
  17452. name: "Front (Dressed",
  17453. image: {
  17454. source: "./media/characters/talana/front-dressed.svg",
  17455. extra: 1410 / 1300,
  17456. bottom: 0.015
  17457. }
  17458. },
  17459. },
  17460. [
  17461. {
  17462. name: "Normal",
  17463. height: math.unit(8, "feet"),
  17464. default: true
  17465. },
  17466. ]
  17467. ))
  17468. characterMakers.push(() => makeCharacter(
  17469. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17470. {
  17471. side: {
  17472. height: math.unit(7.2, "feet"),
  17473. weight: math.unit(150, "lb"),
  17474. name: "Side",
  17475. image: {
  17476. source: "./media/characters/xeauvok/side.svg",
  17477. extra: 1975 / 1523,
  17478. bottom: 0.07
  17479. }
  17480. },
  17481. },
  17482. [
  17483. {
  17484. name: "Normal",
  17485. height: math.unit(7.2, "feet"),
  17486. default: true
  17487. },
  17488. ]
  17489. ))
  17490. characterMakers.push(() => makeCharacter(
  17491. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17492. {
  17493. side: {
  17494. height: math.unit(10, "feet"),
  17495. weight: math.unit(900, "kg"),
  17496. name: "Side",
  17497. image: {
  17498. source: "./media/characters/zara/side.svg",
  17499. extra: 504 / 498
  17500. }
  17501. },
  17502. },
  17503. [
  17504. {
  17505. name: "Normal",
  17506. height: math.unit(10, "feet"),
  17507. default: true
  17508. },
  17509. ]
  17510. ))
  17511. characterMakers.push(() => makeCharacter(
  17512. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17513. {
  17514. side: {
  17515. height: math.unit(6, "feet"),
  17516. weight: math.unit(150, "lb"),
  17517. name: "Side",
  17518. image: {
  17519. source: "./media/characters/richard-dragon/side.svg",
  17520. extra: 845 / 340,
  17521. bottom: 0.017
  17522. }
  17523. },
  17524. maw: {
  17525. height: math.unit(2.97, "feet"),
  17526. name: "Maw",
  17527. image: {
  17528. source: "./media/characters/richard-dragon/maw.svg"
  17529. }
  17530. },
  17531. },
  17532. [
  17533. ]
  17534. ))
  17535. characterMakers.push(() => makeCharacter(
  17536. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17537. {
  17538. front: {
  17539. height: math.unit(4, "feet"),
  17540. weight: math.unit(100, "lb"),
  17541. name: "Front",
  17542. image: {
  17543. source: "./media/characters/richard-smeargle/front.svg",
  17544. extra: 2952 / 2820,
  17545. bottom: 0.028
  17546. }
  17547. },
  17548. },
  17549. [
  17550. {
  17551. name: "Normal",
  17552. height: math.unit(4, "feet"),
  17553. default: true
  17554. },
  17555. {
  17556. name: "Dynamax",
  17557. height: math.unit(20, "meters")
  17558. },
  17559. ]
  17560. ))
  17561. characterMakers.push(() => makeCharacter(
  17562. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17563. {
  17564. front: {
  17565. height: math.unit(6, "feet"),
  17566. weight: math.unit(110, "lb"),
  17567. name: "Front",
  17568. image: {
  17569. source: "./media/characters/klay/front.svg",
  17570. extra: 962 / 883,
  17571. bottom: 0.04
  17572. }
  17573. },
  17574. back: {
  17575. height: math.unit(6, "feet"),
  17576. weight: math.unit(110, "lb"),
  17577. name: "Back",
  17578. image: {
  17579. source: "./media/characters/klay/back.svg",
  17580. extra: 962 / 883
  17581. }
  17582. },
  17583. beans: {
  17584. height: math.unit(1.15, "feet"),
  17585. name: "Beans",
  17586. image: {
  17587. source: "./media/characters/klay/beans.svg"
  17588. }
  17589. },
  17590. },
  17591. [
  17592. {
  17593. name: "Micro",
  17594. height: math.unit(6, "inches")
  17595. },
  17596. {
  17597. name: "Mini",
  17598. height: math.unit(3, "feet")
  17599. },
  17600. {
  17601. name: "Normal",
  17602. height: math.unit(6, "feet"),
  17603. default: true
  17604. },
  17605. {
  17606. name: "Big",
  17607. height: math.unit(25, "feet")
  17608. },
  17609. {
  17610. name: "Macro",
  17611. height: math.unit(100, "feet")
  17612. },
  17613. {
  17614. name: "Megamacro",
  17615. height: math.unit(400, "feet")
  17616. },
  17617. ]
  17618. ))
  17619. characterMakers.push(() => makeCharacter(
  17620. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17621. {
  17622. front: {
  17623. height: math.unit(6, "feet"),
  17624. weight: math.unit(160, "lb"),
  17625. name: "Front",
  17626. image: {
  17627. source: "./media/characters/marcus/front.svg",
  17628. extra: 734 / 676,
  17629. bottom: 0.03
  17630. }
  17631. },
  17632. },
  17633. [
  17634. {
  17635. name: "Little",
  17636. height: math.unit(6, "feet")
  17637. },
  17638. {
  17639. name: "Normal",
  17640. height: math.unit(110, "feet"),
  17641. default: true
  17642. },
  17643. {
  17644. name: "Macro",
  17645. height: math.unit(250, "feet")
  17646. },
  17647. {
  17648. name: "Megamacro",
  17649. height: math.unit(1000, "feet")
  17650. },
  17651. ]
  17652. ))
  17653. characterMakers.push(() => makeCharacter(
  17654. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17655. {
  17656. front: {
  17657. height: math.unit(7, "feet"),
  17658. weight: math.unit(275, "lb"),
  17659. name: "Front",
  17660. image: {
  17661. source: "./media/characters/claude-delroute/front.svg",
  17662. extra: 230 / 214,
  17663. bottom: 0.007
  17664. }
  17665. },
  17666. side: {
  17667. height: math.unit(7, "feet"),
  17668. weight: math.unit(275, "lb"),
  17669. name: "Side",
  17670. image: {
  17671. source: "./media/characters/claude-delroute/side.svg",
  17672. extra: 222 / 214,
  17673. bottom: 0.01
  17674. }
  17675. },
  17676. back: {
  17677. height: math.unit(7, "feet"),
  17678. weight: math.unit(275, "lb"),
  17679. name: "Back",
  17680. image: {
  17681. source: "./media/characters/claude-delroute/back.svg",
  17682. extra: 230 / 214,
  17683. bottom: 0.015
  17684. }
  17685. },
  17686. maw: {
  17687. height: math.unit(0.6407, "meters"),
  17688. name: "Maw",
  17689. image: {
  17690. source: "./media/characters/claude-delroute/maw.svg"
  17691. }
  17692. },
  17693. },
  17694. [
  17695. {
  17696. name: "Normal",
  17697. height: math.unit(7, "feet"),
  17698. default: true
  17699. },
  17700. {
  17701. name: "Lorge",
  17702. height: math.unit(20, "feet")
  17703. },
  17704. ]
  17705. ))
  17706. characterMakers.push(() => makeCharacter(
  17707. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17708. {
  17709. front: {
  17710. height: math.unit(8 + 4 / 12, "feet"),
  17711. weight: math.unit(600, "lb"),
  17712. name: "Front",
  17713. image: {
  17714. source: "./media/characters/dragonien/front.svg",
  17715. extra: 100 / 94,
  17716. bottom: 3.3 / 103.3445
  17717. }
  17718. },
  17719. back: {
  17720. height: math.unit(8 + 4 / 12, "feet"),
  17721. weight: math.unit(600, "lb"),
  17722. name: "Back",
  17723. image: {
  17724. source: "./media/characters/dragonien/back.svg",
  17725. extra: 776 / 746,
  17726. bottom: 6.4 / 782.0616
  17727. }
  17728. },
  17729. foot: {
  17730. height: math.unit(1.54, "feet"),
  17731. name: "Foot",
  17732. image: {
  17733. source: "./media/characters/dragonien/foot.svg",
  17734. }
  17735. },
  17736. },
  17737. [
  17738. {
  17739. name: "Normal",
  17740. height: math.unit(8 + 4 / 12, "feet"),
  17741. default: true
  17742. },
  17743. {
  17744. name: "Macro",
  17745. height: math.unit(200, "feet")
  17746. },
  17747. {
  17748. name: "Megamacro",
  17749. height: math.unit(1, "mile")
  17750. },
  17751. {
  17752. name: "Gigamacro",
  17753. height: math.unit(1000, "miles")
  17754. },
  17755. ]
  17756. ))
  17757. characterMakers.push(() => makeCharacter(
  17758. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17759. {
  17760. front: {
  17761. height: math.unit(5 + 2 / 12, "feet"),
  17762. weight: math.unit(110, "lb"),
  17763. name: "Front",
  17764. image: {
  17765. source: "./media/characters/desta/front.svg",
  17766. extra: 767 / 726,
  17767. bottom: 11.7 / 779
  17768. }
  17769. },
  17770. back: {
  17771. height: math.unit(5 + 2 / 12, "feet"),
  17772. weight: math.unit(110, "lb"),
  17773. name: "Back",
  17774. image: {
  17775. source: "./media/characters/desta/back.svg",
  17776. extra: 777 / 728,
  17777. bottom: 6 / 784
  17778. }
  17779. },
  17780. frontAlt: {
  17781. height: math.unit(5 + 2 / 12, "feet"),
  17782. weight: math.unit(110, "lb"),
  17783. name: "Front",
  17784. image: {
  17785. source: "./media/characters/desta/front-alt.svg",
  17786. extra: 1482 / 1417
  17787. }
  17788. },
  17789. side: {
  17790. height: math.unit(5 + 2 / 12, "feet"),
  17791. weight: math.unit(110, "lb"),
  17792. name: "Side",
  17793. image: {
  17794. source: "./media/characters/desta/side.svg",
  17795. extra: 2579 / 2491,
  17796. bottom: 0.053
  17797. }
  17798. },
  17799. },
  17800. [
  17801. {
  17802. name: "Micro",
  17803. height: math.unit(6, "inches")
  17804. },
  17805. {
  17806. name: "Normal",
  17807. height: math.unit(5 + 2 / 12, "feet"),
  17808. default: true
  17809. },
  17810. {
  17811. name: "Macro",
  17812. height: math.unit(62, "feet")
  17813. },
  17814. {
  17815. name: "Megamacro",
  17816. height: math.unit(1800, "feet")
  17817. },
  17818. ]
  17819. ))
  17820. characterMakers.push(() => makeCharacter(
  17821. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17822. {
  17823. front: {
  17824. height: math.unit(10, "feet"),
  17825. weight: math.unit(700, "lb"),
  17826. name: "Front",
  17827. image: {
  17828. source: "./media/characters/storm-alystar/front.svg",
  17829. extra: 2112 / 1898,
  17830. bottom: 0.034
  17831. }
  17832. },
  17833. },
  17834. [
  17835. {
  17836. name: "Micro",
  17837. height: math.unit(3.5, "inches")
  17838. },
  17839. {
  17840. name: "Normal",
  17841. height: math.unit(10, "feet"),
  17842. default: true
  17843. },
  17844. {
  17845. name: "Macro",
  17846. height: math.unit(400, "feet")
  17847. },
  17848. {
  17849. name: "Deific",
  17850. height: math.unit(60, "miles")
  17851. },
  17852. ]
  17853. ))
  17854. characterMakers.push(() => makeCharacter(
  17855. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17856. {
  17857. front: {
  17858. height: math.unit(2.35, "meters"),
  17859. weight: math.unit(119, "kg"),
  17860. name: "Front",
  17861. image: {
  17862. source: "./media/characters/ilia/front.svg",
  17863. extra: 1285 / 1255,
  17864. bottom: 0.06
  17865. }
  17866. },
  17867. },
  17868. [
  17869. {
  17870. name: "Normal",
  17871. height: math.unit(2.35, "meters")
  17872. },
  17873. {
  17874. name: "Macro",
  17875. height: math.unit(140, "meters"),
  17876. default: true
  17877. },
  17878. {
  17879. name: "Megamacro",
  17880. height: math.unit(100, "miles")
  17881. },
  17882. ]
  17883. ))
  17884. characterMakers.push(() => makeCharacter(
  17885. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17886. {
  17887. front: {
  17888. height: math.unit(6 + 5 / 12, "feet"),
  17889. weight: math.unit(190, "lb"),
  17890. name: "Front",
  17891. image: {
  17892. source: "./media/characters/kingdead/front.svg",
  17893. extra: 1228 / 1177
  17894. }
  17895. },
  17896. },
  17897. [
  17898. {
  17899. name: "Micro",
  17900. height: math.unit(7, "inches")
  17901. },
  17902. {
  17903. name: "Normal",
  17904. height: math.unit(6 + 5 / 12, "feet")
  17905. },
  17906. {
  17907. name: "Macro",
  17908. height: math.unit(150, "feet"),
  17909. default: true
  17910. },
  17911. {
  17912. name: "Megamacro",
  17913. height: math.unit(200, "miles")
  17914. },
  17915. ]
  17916. ))
  17917. characterMakers.push(() => makeCharacter(
  17918. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17919. {
  17920. front: {
  17921. height: math.unit(8, "feet"),
  17922. weight: math.unit(600, "lb"),
  17923. name: "Front",
  17924. image: {
  17925. source: "./media/characters/kyrehx/front.svg",
  17926. extra: 1195 / 1095,
  17927. bottom: 0.034
  17928. }
  17929. },
  17930. },
  17931. [
  17932. {
  17933. name: "Micro",
  17934. height: math.unit(2, "inches")
  17935. },
  17936. {
  17937. name: "Normal",
  17938. height: math.unit(8, "feet"),
  17939. default: true
  17940. },
  17941. {
  17942. name: "Macro",
  17943. height: math.unit(255, "feet")
  17944. },
  17945. ]
  17946. ))
  17947. characterMakers.push(() => makeCharacter(
  17948. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17949. {
  17950. front: {
  17951. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17952. weight: math.unit(184, "lb"),
  17953. name: "Front",
  17954. image: {
  17955. source: "./media/characters/xang/front.svg",
  17956. extra: 845 / 755
  17957. }
  17958. },
  17959. },
  17960. [
  17961. {
  17962. name: "Normal",
  17963. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17964. default: true
  17965. },
  17966. {
  17967. name: "Macro",
  17968. height: math.unit(0.935 * 146, "feet")
  17969. },
  17970. {
  17971. name: "Megamacro",
  17972. height: math.unit(0.935 * 3, "miles")
  17973. },
  17974. ]
  17975. ))
  17976. characterMakers.push(() => makeCharacter(
  17977. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17978. {
  17979. frontDressed: {
  17980. height: math.unit(5 + 7 / 12, "feet"),
  17981. weight: math.unit(140, "lb"),
  17982. name: "Front (Dressed)",
  17983. image: {
  17984. source: "./media/characters/doc-weardno/front-dressed.svg",
  17985. extra: 263 / 234
  17986. }
  17987. },
  17988. backDressed: {
  17989. height: math.unit(5 + 7 / 12, "feet"),
  17990. weight: math.unit(140, "lb"),
  17991. name: "Back (Dressed)",
  17992. image: {
  17993. source: "./media/characters/doc-weardno/back-dressed.svg",
  17994. extra: 266 / 238
  17995. }
  17996. },
  17997. front: {
  17998. height: math.unit(5 + 7 / 12, "feet"),
  17999. weight: math.unit(140, "lb"),
  18000. name: "Front",
  18001. image: {
  18002. source: "./media/characters/doc-weardno/front.svg",
  18003. extra: 254 / 233
  18004. }
  18005. },
  18006. },
  18007. [
  18008. {
  18009. name: "Micro",
  18010. height: math.unit(3, "inches")
  18011. },
  18012. {
  18013. name: "Normal",
  18014. height: math.unit(5 + 7 / 12, "feet"),
  18015. default: true
  18016. },
  18017. {
  18018. name: "Macro",
  18019. height: math.unit(25, "feet")
  18020. },
  18021. {
  18022. name: "Megamacro",
  18023. height: math.unit(2, "miles")
  18024. },
  18025. ]
  18026. ))
  18027. characterMakers.push(() => makeCharacter(
  18028. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18029. {
  18030. front: {
  18031. height: math.unit(6 + 2 / 12, "feet"),
  18032. weight: math.unit(153, "lb"),
  18033. name: "Front",
  18034. image: {
  18035. source: "./media/characters/seth-whilst/front.svg",
  18036. bottom: 0.07
  18037. }
  18038. },
  18039. },
  18040. [
  18041. {
  18042. name: "Micro",
  18043. height: math.unit(5, "inches")
  18044. },
  18045. {
  18046. name: "Normal",
  18047. height: math.unit(6 + 2 / 12, "feet"),
  18048. default: true
  18049. },
  18050. ]
  18051. ))
  18052. characterMakers.push(() => makeCharacter(
  18053. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18054. {
  18055. front: {
  18056. height: math.unit(3, "inches"),
  18057. weight: math.unit(8, "grams"),
  18058. name: "Front",
  18059. image: {
  18060. source: "./media/characters/pocket-jabari/front.svg",
  18061. extra: 1024 / 974,
  18062. bottom: 0.039
  18063. }
  18064. },
  18065. },
  18066. [
  18067. {
  18068. name: "Minimicro",
  18069. height: math.unit(8, "mm")
  18070. },
  18071. {
  18072. name: "Micro",
  18073. height: math.unit(3, "inches"),
  18074. default: true
  18075. },
  18076. {
  18077. name: "Normal",
  18078. height: math.unit(3, "feet")
  18079. },
  18080. ]
  18081. ))
  18082. characterMakers.push(() => makeCharacter(
  18083. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18084. {
  18085. front: {
  18086. height: math.unit(15, "feet"),
  18087. weight: math.unit(3280, "lb"),
  18088. name: "Front",
  18089. image: {
  18090. source: "./media/characters/sapphy/front.svg",
  18091. extra: 671 / 577,
  18092. bottom: 0.085
  18093. }
  18094. },
  18095. back: {
  18096. height: math.unit(15, "feet"),
  18097. weight: math.unit(3280, "lb"),
  18098. name: "Back",
  18099. image: {
  18100. source: "./media/characters/sapphy/back.svg",
  18101. extra: 631 / 607,
  18102. bottom: 0.045
  18103. }
  18104. },
  18105. },
  18106. [
  18107. {
  18108. name: "Normal",
  18109. height: math.unit(15, "feet")
  18110. },
  18111. {
  18112. name: "Casual Macro",
  18113. height: math.unit(120, "feet")
  18114. },
  18115. {
  18116. name: "Macro",
  18117. height: math.unit(2150, "feet"),
  18118. default: true
  18119. },
  18120. {
  18121. name: "Megamacro",
  18122. height: math.unit(8, "miles")
  18123. },
  18124. {
  18125. name: "Galaxy Mom",
  18126. height: math.unit(6, "megalightyears")
  18127. },
  18128. ]
  18129. ))
  18130. characterMakers.push(() => makeCharacter(
  18131. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  18132. {
  18133. front: {
  18134. height: math.unit(6, "feet"),
  18135. weight: math.unit(170, "lb"),
  18136. name: "Front",
  18137. image: {
  18138. source: "./media/characters/kiro/front.svg",
  18139. extra: 1064 / 1012,
  18140. bottom: 0.052
  18141. }
  18142. },
  18143. },
  18144. [
  18145. {
  18146. name: "Micro",
  18147. height: math.unit(6, "inches")
  18148. },
  18149. {
  18150. name: "Normal",
  18151. height: math.unit(6, "feet"),
  18152. default: true
  18153. },
  18154. {
  18155. name: "Macro",
  18156. height: math.unit(72, "feet")
  18157. },
  18158. ]
  18159. ))
  18160. characterMakers.push(() => makeCharacter(
  18161. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18162. {
  18163. front: {
  18164. height: math.unit(5 + 9 / 12, "feet"),
  18165. weight: math.unit(175, "lb"),
  18166. name: "Front",
  18167. image: {
  18168. source: "./media/characters/irishfox/front.svg",
  18169. extra: 1912 / 1680,
  18170. bottom: 0.02
  18171. }
  18172. },
  18173. },
  18174. [
  18175. {
  18176. name: "Nano",
  18177. height: math.unit(1, "mm")
  18178. },
  18179. {
  18180. name: "Micro",
  18181. height: math.unit(2, "inches")
  18182. },
  18183. {
  18184. name: "Normal",
  18185. height: math.unit(5 + 9 / 12, "feet"),
  18186. default: true
  18187. },
  18188. {
  18189. name: "Macro",
  18190. height: math.unit(45, "feet")
  18191. },
  18192. ]
  18193. ))
  18194. characterMakers.push(() => makeCharacter(
  18195. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18196. {
  18197. front: {
  18198. height: math.unit(6 + 1 / 12, "feet"),
  18199. weight: math.unit(150, "lb"),
  18200. name: "Front",
  18201. image: {
  18202. source: "./media/characters/aronai-sieyes/front.svg",
  18203. extra: 1556 / 1480,
  18204. bottom: 0.015
  18205. }
  18206. },
  18207. side: {
  18208. height: math.unit(6 + 1 / 12, "feet"),
  18209. weight: math.unit(150, "lb"),
  18210. name: "Side",
  18211. image: {
  18212. source: "./media/characters/aronai-sieyes/side.svg",
  18213. extra: 1433 / 1390,
  18214. bottom: 0.0393
  18215. }
  18216. },
  18217. back: {
  18218. height: math.unit(6 + 1 / 12, "feet"),
  18219. weight: math.unit(150, "lb"),
  18220. name: "Back",
  18221. image: {
  18222. source: "./media/characters/aronai-sieyes/back.svg",
  18223. extra: 1544 / 1494,
  18224. bottom: 0.02
  18225. }
  18226. },
  18227. frontClothed: {
  18228. height: math.unit(6 + 1 / 12, "feet"),
  18229. weight: math.unit(150, "lb"),
  18230. name: "Front (Clothed)",
  18231. image: {
  18232. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18233. extra: 1582 / 1527
  18234. }
  18235. },
  18236. feral: {
  18237. height: math.unit(18, "feet"),
  18238. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  18239. name: "Feral",
  18240. image: {
  18241. source: "./media/characters/aronai-sieyes/feral.svg",
  18242. extra: 1530 / 1240,
  18243. bottom: 0.035
  18244. }
  18245. },
  18246. },
  18247. [
  18248. {
  18249. name: "Micro",
  18250. height: math.unit(2, "inches")
  18251. },
  18252. {
  18253. name: "Normal",
  18254. height: math.unit(6 + 1 / 12, "feet"),
  18255. default: true
  18256. }
  18257. ]
  18258. ))
  18259. characterMakers.push(() => makeCharacter(
  18260. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18261. {
  18262. front: {
  18263. height: math.unit(12, "feet"),
  18264. weight: math.unit(410, "kg"),
  18265. name: "Front",
  18266. image: {
  18267. source: "./media/characters/xuna/front.svg",
  18268. extra: 2184 / 1980
  18269. }
  18270. },
  18271. side: {
  18272. height: math.unit(12, "feet"),
  18273. weight: math.unit(410, "kg"),
  18274. name: "Side",
  18275. image: {
  18276. source: "./media/characters/xuna/side.svg",
  18277. extra: 2184 / 1980
  18278. }
  18279. },
  18280. back: {
  18281. height: math.unit(12, "feet"),
  18282. weight: math.unit(410, "kg"),
  18283. name: "Back",
  18284. image: {
  18285. source: "./media/characters/xuna/back.svg",
  18286. extra: 2184 / 1980
  18287. }
  18288. },
  18289. },
  18290. [
  18291. {
  18292. name: "Nano glow",
  18293. height: math.unit(10, "nm")
  18294. },
  18295. {
  18296. name: "Micro floof",
  18297. height: math.unit(0.3, "m")
  18298. },
  18299. {
  18300. name: "Huggable softy boi",
  18301. height: math.unit(3.6576, "m"),
  18302. default: true
  18303. },
  18304. {
  18305. name: "Admirable floof",
  18306. height: math.unit(80, "meters")
  18307. },
  18308. {
  18309. name: "Gentle macro",
  18310. height: math.unit(300, "meters")
  18311. },
  18312. {
  18313. name: "Very careful floof",
  18314. height: math.unit(3200, "meters")
  18315. },
  18316. {
  18317. name: "The mega floof",
  18318. height: math.unit(36000, "meters")
  18319. },
  18320. {
  18321. name: "Giga-fur-Wicker",
  18322. height: math.unit(4800000, "meters")
  18323. },
  18324. {
  18325. name: "Licky world",
  18326. height: math.unit(20000000, "meters")
  18327. },
  18328. {
  18329. name: "Floofy cyan sun",
  18330. height: math.unit(1500000000, "meters")
  18331. },
  18332. {
  18333. name: "Milky Wicker",
  18334. height: math.unit(1000000000000000000000, "meters")
  18335. },
  18336. {
  18337. name: "The observing Wicker",
  18338. height: math.unit(999999999999999999999999999, "meters")
  18339. },
  18340. ]
  18341. ))
  18342. characterMakers.push(() => makeCharacter(
  18343. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18344. {
  18345. front: {
  18346. height: math.unit(5 + 9 / 12, "feet"),
  18347. weight: math.unit(150, "lb"),
  18348. name: "Front",
  18349. image: {
  18350. source: "./media/characters/arokha-sieyes/front.svg",
  18351. extra: 1425 / 1284,
  18352. bottom: 0.05
  18353. }
  18354. },
  18355. },
  18356. [
  18357. {
  18358. name: "Normal",
  18359. height: math.unit(5 + 9 / 12, "feet")
  18360. },
  18361. {
  18362. name: "Macro",
  18363. height: math.unit(30, "meters"),
  18364. default: true
  18365. },
  18366. ]
  18367. ))
  18368. characterMakers.push(() => makeCharacter(
  18369. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18370. {
  18371. front: {
  18372. height: math.unit(6, "feet"),
  18373. weight: math.unit(180, "lb"),
  18374. name: "Front",
  18375. image: {
  18376. source: "./media/characters/arokh-sieyes/front.svg",
  18377. extra: 1830 / 1769,
  18378. bottom: 0.01
  18379. }
  18380. },
  18381. },
  18382. [
  18383. {
  18384. name: "Normal",
  18385. height: math.unit(6, "feet")
  18386. },
  18387. {
  18388. name: "Macro",
  18389. height: math.unit(30, "meters"),
  18390. default: true
  18391. },
  18392. ]
  18393. ))
  18394. characterMakers.push(() => makeCharacter(
  18395. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18396. {
  18397. side: {
  18398. height: math.unit(13 + 1 / 12, "feet"),
  18399. weight: math.unit(8.5, "tonnes"),
  18400. name: "Side",
  18401. image: {
  18402. source: "./media/characters/goldeneye/side.svg",
  18403. extra: 1182 / 778,
  18404. bottom: 0.067
  18405. }
  18406. },
  18407. paw: {
  18408. height: math.unit(3.4, "feet"),
  18409. name: "Paw",
  18410. image: {
  18411. source: "./media/characters/goldeneye/paw.svg"
  18412. }
  18413. },
  18414. },
  18415. [
  18416. {
  18417. name: "Normal",
  18418. height: math.unit(13 + 1 / 12, "feet"),
  18419. default: true
  18420. },
  18421. ]
  18422. ))
  18423. characterMakers.push(() => makeCharacter(
  18424. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18425. {
  18426. front: {
  18427. height: math.unit(6 + 1 / 12, "feet"),
  18428. weight: math.unit(210, "lb"),
  18429. name: "Front",
  18430. image: {
  18431. source: "./media/characters/leonardo-lycheborne/front.svg",
  18432. extra: 390 / 365,
  18433. bottom: 0.032
  18434. }
  18435. },
  18436. side: {
  18437. height: math.unit(6 + 1 / 12, "feet"),
  18438. weight: math.unit(210, "lb"),
  18439. name: "Side",
  18440. image: {
  18441. source: "./media/characters/leonardo-lycheborne/side.svg",
  18442. extra: 390 / 365,
  18443. bottom: 0.005
  18444. }
  18445. },
  18446. back: {
  18447. height: math.unit(6 + 1 / 12, "feet"),
  18448. weight: math.unit(210, "lb"),
  18449. name: "Back",
  18450. image: {
  18451. source: "./media/characters/leonardo-lycheborne/back.svg",
  18452. extra: 392 / 366,
  18453. bottom: 0.01
  18454. }
  18455. },
  18456. hand: {
  18457. height: math.unit(1.08, "feet"),
  18458. name: "Hand",
  18459. image: {
  18460. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18461. }
  18462. },
  18463. foot: {
  18464. height: math.unit(1.32, "feet"),
  18465. name: "Foot",
  18466. image: {
  18467. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18468. }
  18469. },
  18470. were: {
  18471. height: math.unit(20, "feet"),
  18472. weight: math.unit(7800, "lb"),
  18473. name: "Were",
  18474. image: {
  18475. source: "./media/characters/leonardo-lycheborne/were.svg",
  18476. extra: 308 / 294,
  18477. bottom: 0.048
  18478. }
  18479. },
  18480. feral: {
  18481. height: math.unit(7.5, "feet"),
  18482. weight: math.unit(600, "lb"),
  18483. name: "Feral",
  18484. image: {
  18485. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18486. extra: 210 / 186,
  18487. bottom: 0.108
  18488. }
  18489. },
  18490. taur: {
  18491. height: math.unit(11, "feet"),
  18492. weight: math.unit(3300, "lb"),
  18493. name: "Taur",
  18494. image: {
  18495. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18496. extra: 320 / 303,
  18497. bottom: 0.025
  18498. }
  18499. },
  18500. barghest: {
  18501. height: math.unit(11, "feet"),
  18502. weight: math.unit(1300, "lb"),
  18503. name: "Barghest",
  18504. image: {
  18505. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18506. extra: 323 / 302,
  18507. bottom: 0.027
  18508. }
  18509. },
  18510. dick: {
  18511. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18512. name: "Dick",
  18513. image: {
  18514. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18515. }
  18516. },
  18517. dickWere: {
  18518. height: math.unit((20) / 3.8, "feet"),
  18519. name: "Dick (Were)",
  18520. image: {
  18521. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18522. }
  18523. },
  18524. },
  18525. [
  18526. {
  18527. name: "Normal",
  18528. height: math.unit(6 + 1 / 12, "feet"),
  18529. default: true
  18530. },
  18531. ]
  18532. ))
  18533. characterMakers.push(() => makeCharacter(
  18534. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18535. {
  18536. front: {
  18537. height: math.unit(10, "feet"),
  18538. weight: math.unit(350, "lb"),
  18539. name: "Front",
  18540. image: {
  18541. source: "./media/characters/jet/front.svg",
  18542. extra: 2050 / 1980,
  18543. bottom: 0.013
  18544. }
  18545. },
  18546. back: {
  18547. height: math.unit(10, "feet"),
  18548. weight: math.unit(350, "lb"),
  18549. name: "Back",
  18550. image: {
  18551. source: "./media/characters/jet/back.svg",
  18552. extra: 2050 / 1980,
  18553. bottom: 0.013
  18554. }
  18555. },
  18556. },
  18557. [
  18558. {
  18559. name: "Micro",
  18560. height: math.unit(6, "inches")
  18561. },
  18562. {
  18563. name: "Normal",
  18564. height: math.unit(10, "feet"),
  18565. default: true
  18566. },
  18567. {
  18568. name: "Macro",
  18569. height: math.unit(100, "feet")
  18570. },
  18571. ]
  18572. ))
  18573. characterMakers.push(() => makeCharacter(
  18574. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18575. {
  18576. front: {
  18577. height: math.unit(15, "feet"),
  18578. weight: math.unit(2800, "lb"),
  18579. name: "Front",
  18580. image: {
  18581. source: "./media/characters/tanarath/front.svg",
  18582. extra: 2392 / 2220,
  18583. bottom: 0.03
  18584. }
  18585. },
  18586. back: {
  18587. height: math.unit(15, "feet"),
  18588. weight: math.unit(2800, "lb"),
  18589. name: "Back",
  18590. image: {
  18591. source: "./media/characters/tanarath/back.svg",
  18592. extra: 2392 / 2220,
  18593. bottom: 0.03
  18594. }
  18595. },
  18596. },
  18597. [
  18598. {
  18599. name: "Normal",
  18600. height: math.unit(15, "feet"),
  18601. default: true
  18602. },
  18603. ]
  18604. ))
  18605. characterMakers.push(() => makeCharacter(
  18606. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18607. {
  18608. front: {
  18609. height: math.unit(7 + 1 / 12, "feet"),
  18610. weight: math.unit(175, "lb"),
  18611. name: "Front",
  18612. image: {
  18613. source: "./media/characters/patty-cattybatty/front.svg",
  18614. extra: 908 / 874,
  18615. bottom: 0.025
  18616. }
  18617. },
  18618. },
  18619. [
  18620. {
  18621. name: "Micro",
  18622. height: math.unit(1, "inch")
  18623. },
  18624. {
  18625. name: "Normal",
  18626. height: math.unit(7 + 1 / 12, "feet")
  18627. },
  18628. {
  18629. name: "Mini Macro",
  18630. height: math.unit(155, "feet")
  18631. },
  18632. {
  18633. name: "Macro",
  18634. height: math.unit(1077, "feet")
  18635. },
  18636. {
  18637. name: "Mega Macro",
  18638. height: math.unit(47650, "feet"),
  18639. default: true
  18640. },
  18641. {
  18642. name: "Giga Macro",
  18643. height: math.unit(440, "miles")
  18644. },
  18645. {
  18646. name: "Tera Macro",
  18647. height: math.unit(8700, "miles")
  18648. },
  18649. {
  18650. name: "Planetary Macro",
  18651. height: math.unit(32700, "miles")
  18652. },
  18653. {
  18654. name: "Solar Macro",
  18655. height: math.unit(550000, "miles")
  18656. },
  18657. {
  18658. name: "Celestial Macro",
  18659. height: math.unit(2.5, "AU")
  18660. },
  18661. ]
  18662. ))
  18663. characterMakers.push(() => makeCharacter(
  18664. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18665. {
  18666. front: {
  18667. height: math.unit(4 + 5 / 12, "feet"),
  18668. weight: math.unit(90, "lb"),
  18669. name: "Front",
  18670. image: {
  18671. source: "./media/characters/cappu/front.svg",
  18672. extra: 1247 / 1152,
  18673. bottom: 0.012
  18674. }
  18675. },
  18676. },
  18677. [
  18678. {
  18679. name: "Normal",
  18680. height: math.unit(4 + 5 / 12, "feet"),
  18681. default: true
  18682. },
  18683. ]
  18684. ))
  18685. characterMakers.push(() => makeCharacter(
  18686. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18687. {
  18688. frontDressed: {
  18689. height: math.unit(70, "cm"),
  18690. weight: math.unit(6, "kg"),
  18691. name: "Front (Dressed)",
  18692. image: {
  18693. source: "./media/characters/sebi/front-dressed.svg",
  18694. extra: 713.5 / 686.5,
  18695. bottom: 0.003
  18696. }
  18697. },
  18698. front: {
  18699. height: math.unit(70, "cm"),
  18700. weight: math.unit(5, "kg"),
  18701. name: "Front",
  18702. image: {
  18703. source: "./media/characters/sebi/front.svg",
  18704. extra: 713.5 / 686.5,
  18705. bottom: 0.003
  18706. }
  18707. }
  18708. },
  18709. [
  18710. {
  18711. name: "Normal",
  18712. height: math.unit(70, "cm"),
  18713. default: true
  18714. },
  18715. {
  18716. name: "Macro",
  18717. height: math.unit(8, "meters")
  18718. },
  18719. ]
  18720. ))
  18721. characterMakers.push(() => makeCharacter(
  18722. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18723. {
  18724. front: {
  18725. height: math.unit(6, "feet"),
  18726. weight: math.unit(150, "lb"),
  18727. name: "Front",
  18728. image: {
  18729. source: "./media/characters/typhek/front.svg",
  18730. extra: 1948 / 1929,
  18731. bottom: 0.025
  18732. }
  18733. },
  18734. side: {
  18735. height: math.unit(6, "feet"),
  18736. weight: math.unit(150, "lb"),
  18737. name: "Side",
  18738. image: {
  18739. source: "./media/characters/typhek/side.svg",
  18740. extra: 2034 / 2010,
  18741. bottom: 0.003
  18742. }
  18743. },
  18744. back: {
  18745. height: math.unit(6, "feet"),
  18746. weight: math.unit(150, "lb"),
  18747. name: "Back",
  18748. image: {
  18749. source: "./media/characters/typhek/back.svg",
  18750. extra: 2005 / 1978,
  18751. bottom: 0.004
  18752. }
  18753. },
  18754. palm: {
  18755. height: math.unit(1.2, "feet"),
  18756. name: "Palm",
  18757. image: {
  18758. source: "./media/characters/typhek/palm.svg"
  18759. }
  18760. },
  18761. fist: {
  18762. height: math.unit(1.1, "feet"),
  18763. name: "Fist",
  18764. image: {
  18765. source: "./media/characters/typhek/fist.svg"
  18766. }
  18767. },
  18768. foot: {
  18769. height: math.unit(1.57, "feet"),
  18770. name: "Foot",
  18771. image: {
  18772. source: "./media/characters/typhek/foot.svg"
  18773. }
  18774. },
  18775. sole: {
  18776. height: math.unit(2.05, "feet"),
  18777. name: "Sole",
  18778. image: {
  18779. source: "./media/characters/typhek/sole.svg"
  18780. }
  18781. },
  18782. },
  18783. [
  18784. {
  18785. name: "Macro",
  18786. height: math.unit(40, "stories"),
  18787. default: true
  18788. },
  18789. {
  18790. name: "Megamacro",
  18791. height: math.unit(1, "mile")
  18792. },
  18793. {
  18794. name: "Gigamacro",
  18795. height: math.unit(4000, "solarradii")
  18796. },
  18797. {
  18798. name: "Universal",
  18799. height: math.unit(1.1, "universes")
  18800. }
  18801. ]
  18802. ))
  18803. characterMakers.push(() => makeCharacter(
  18804. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18805. {
  18806. side: {
  18807. height: math.unit(5 + 7 / 12, "feet"),
  18808. weight: math.unit(150, "lb"),
  18809. name: "Side",
  18810. image: {
  18811. source: "./media/characters/kassy/side.svg",
  18812. extra: 1280 / 1225,
  18813. bottom: 0.002
  18814. }
  18815. },
  18816. front: {
  18817. height: math.unit(5 + 7 / 12, "feet"),
  18818. weight: math.unit(150, "lb"),
  18819. name: "Front",
  18820. image: {
  18821. source: "./media/characters/kassy/front.svg",
  18822. extra: 1280 / 1225,
  18823. bottom: 0.025
  18824. }
  18825. },
  18826. back: {
  18827. height: math.unit(5 + 7 / 12, "feet"),
  18828. weight: math.unit(150, "lb"),
  18829. name: "Back",
  18830. image: {
  18831. source: "./media/characters/kassy/back.svg",
  18832. extra: 1280 / 1225,
  18833. bottom: 0.002
  18834. }
  18835. },
  18836. foot: {
  18837. height: math.unit(1.266, "feet"),
  18838. name: "Foot",
  18839. image: {
  18840. source: "./media/characters/kassy/foot.svg"
  18841. }
  18842. },
  18843. },
  18844. [
  18845. {
  18846. name: "Normal",
  18847. height: math.unit(5 + 7 / 12, "feet")
  18848. },
  18849. {
  18850. name: "Macro",
  18851. height: math.unit(137, "feet"),
  18852. default: true
  18853. },
  18854. {
  18855. name: "Megamacro",
  18856. height: math.unit(1, "mile")
  18857. },
  18858. ]
  18859. ))
  18860. characterMakers.push(() => makeCharacter(
  18861. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18862. {
  18863. front: {
  18864. height: math.unit(6 + 1 / 12, "feet"),
  18865. weight: math.unit(200, "lb"),
  18866. name: "Front",
  18867. image: {
  18868. source: "./media/characters/neil/front.svg",
  18869. extra: 1326 / 1250,
  18870. bottom: 0.023
  18871. }
  18872. },
  18873. },
  18874. [
  18875. {
  18876. name: "Normal",
  18877. height: math.unit(6 + 1 / 12, "feet"),
  18878. default: true
  18879. },
  18880. {
  18881. name: "Macro",
  18882. height: math.unit(200, "feet")
  18883. },
  18884. ]
  18885. ))
  18886. characterMakers.push(() => makeCharacter(
  18887. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18888. {
  18889. front: {
  18890. height: math.unit(5 + 9 / 12, "feet"),
  18891. weight: math.unit(190, "lb"),
  18892. name: "Front",
  18893. image: {
  18894. source: "./media/characters/atticus/front.svg",
  18895. extra: 2934 / 2785,
  18896. bottom: 0.025
  18897. }
  18898. },
  18899. },
  18900. [
  18901. {
  18902. name: "Normal",
  18903. height: math.unit(5 + 9 / 12, "feet"),
  18904. default: true
  18905. },
  18906. {
  18907. name: "Macro",
  18908. height: math.unit(180, "feet")
  18909. },
  18910. ]
  18911. ))
  18912. characterMakers.push(() => makeCharacter(
  18913. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18914. {
  18915. side: {
  18916. height: math.unit(9, "feet"),
  18917. weight: math.unit(650, "lb"),
  18918. name: "Side",
  18919. image: {
  18920. source: "./media/characters/milo/side.svg",
  18921. extra: 2644 / 2310,
  18922. bottom: 0.032
  18923. }
  18924. },
  18925. },
  18926. [
  18927. {
  18928. name: "Normal",
  18929. height: math.unit(9, "feet"),
  18930. default: true
  18931. },
  18932. {
  18933. name: "Macro",
  18934. height: math.unit(300, "feet")
  18935. },
  18936. ]
  18937. ))
  18938. characterMakers.push(() => makeCharacter(
  18939. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18940. {
  18941. side: {
  18942. height: math.unit(8, "meters"),
  18943. weight: math.unit(90000, "kg"),
  18944. name: "Side",
  18945. image: {
  18946. source: "./media/characters/ijzer/side.svg",
  18947. extra: 2756 / 1600,
  18948. bottom: 0.01
  18949. }
  18950. },
  18951. },
  18952. [
  18953. {
  18954. name: "Small",
  18955. height: math.unit(3, "meters")
  18956. },
  18957. {
  18958. name: "Normal",
  18959. height: math.unit(8, "meters"),
  18960. default: true
  18961. },
  18962. {
  18963. name: "Normal+",
  18964. height: math.unit(10, "meters")
  18965. },
  18966. {
  18967. name: "Bigger",
  18968. height: math.unit(24, "meters")
  18969. },
  18970. {
  18971. name: "Huge",
  18972. height: math.unit(80, "meters")
  18973. },
  18974. ]
  18975. ))
  18976. characterMakers.push(() => makeCharacter(
  18977. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18978. {
  18979. front: {
  18980. height: math.unit(6 + 2 / 12, "feet"),
  18981. weight: math.unit(153, "lb"),
  18982. name: "Front",
  18983. image: {
  18984. source: "./media/characters/luca-cervicum/front.svg",
  18985. extra: 370 / 327,
  18986. bottom: 0.015
  18987. }
  18988. },
  18989. back: {
  18990. height: math.unit(6 + 2 / 12, "feet"),
  18991. weight: math.unit(153, "lb"),
  18992. name: "Back",
  18993. image: {
  18994. source: "./media/characters/luca-cervicum/back.svg",
  18995. extra: 367 / 333,
  18996. bottom: 0.005
  18997. }
  18998. },
  18999. frontGear: {
  19000. height: math.unit(6 + 2 / 12, "feet"),
  19001. weight: math.unit(173, "lb"),
  19002. name: "Front (Gear)",
  19003. image: {
  19004. source: "./media/characters/luca-cervicum/front-gear.svg",
  19005. extra: 377 / 333,
  19006. bottom: 0.006
  19007. }
  19008. },
  19009. },
  19010. [
  19011. {
  19012. name: "Normal",
  19013. height: math.unit(6 + 2 / 12, "feet"),
  19014. default: true
  19015. },
  19016. ]
  19017. ))
  19018. characterMakers.push(() => makeCharacter(
  19019. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19020. {
  19021. front: {
  19022. height: math.unit(6 + 1 / 12, "feet"),
  19023. weight: math.unit(304, "lb"),
  19024. name: "Front",
  19025. image: {
  19026. source: "./media/characters/oliver/front.svg",
  19027. extra: 157 / 143,
  19028. bottom: 0.08
  19029. }
  19030. },
  19031. },
  19032. [
  19033. {
  19034. name: "Normal",
  19035. height: math.unit(6 + 1 / 12, "feet"),
  19036. default: true
  19037. },
  19038. ]
  19039. ))
  19040. characterMakers.push(() => makeCharacter(
  19041. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19042. {
  19043. front: {
  19044. height: math.unit(5 + 7 / 12, "feet"),
  19045. weight: math.unit(140, "lb"),
  19046. name: "Front",
  19047. image: {
  19048. source: "./media/characters/shane/front.svg",
  19049. extra: 304 / 289,
  19050. bottom: 0.005
  19051. }
  19052. },
  19053. },
  19054. [
  19055. {
  19056. name: "Normal",
  19057. height: math.unit(5 + 7 / 12, "feet"),
  19058. default: true
  19059. },
  19060. ]
  19061. ))
  19062. characterMakers.push(() => makeCharacter(
  19063. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19064. {
  19065. front: {
  19066. height: math.unit(5 + 9 / 12, "feet"),
  19067. weight: math.unit(178, "lb"),
  19068. name: "Front",
  19069. image: {
  19070. source: "./media/characters/shin/front.svg",
  19071. extra: 159 / 151,
  19072. bottom: 0.015
  19073. }
  19074. },
  19075. },
  19076. [
  19077. {
  19078. name: "Normal",
  19079. height: math.unit(5 + 9 / 12, "feet"),
  19080. default: true
  19081. },
  19082. ]
  19083. ))
  19084. characterMakers.push(() => makeCharacter(
  19085. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19086. {
  19087. front: {
  19088. height: math.unit(5 + 10 / 12, "feet"),
  19089. weight: math.unit(168, "lb"),
  19090. name: "Front",
  19091. image: {
  19092. source: "./media/characters/xerxes/front.svg",
  19093. extra: 282 / 260,
  19094. bottom: 0.045
  19095. }
  19096. },
  19097. },
  19098. [
  19099. {
  19100. name: "Normal",
  19101. height: math.unit(5 + 10 / 12, "feet"),
  19102. default: true
  19103. },
  19104. ]
  19105. ))
  19106. characterMakers.push(() => makeCharacter(
  19107. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19108. {
  19109. front: {
  19110. height: math.unit(6 + 7 / 12, "feet"),
  19111. weight: math.unit(208, "lb"),
  19112. name: "Front",
  19113. image: {
  19114. source: "./media/characters/chaska/front.svg",
  19115. extra: 332 / 319,
  19116. bottom: 0.015
  19117. }
  19118. },
  19119. },
  19120. [
  19121. {
  19122. name: "Normal",
  19123. height: math.unit(6 + 7 / 12, "feet"),
  19124. default: true
  19125. },
  19126. ]
  19127. ))
  19128. characterMakers.push(() => makeCharacter(
  19129. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19130. {
  19131. front: {
  19132. height: math.unit(5 + 8 / 12, "feet"),
  19133. weight: math.unit(208, "lb"),
  19134. name: "Front",
  19135. image: {
  19136. source: "./media/characters/enuk/front.svg",
  19137. extra: 437 / 406,
  19138. bottom: 0.02
  19139. }
  19140. },
  19141. },
  19142. [
  19143. {
  19144. name: "Normal",
  19145. height: math.unit(5 + 8 / 12, "feet"),
  19146. default: true
  19147. },
  19148. ]
  19149. ))
  19150. characterMakers.push(() => makeCharacter(
  19151. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19152. {
  19153. front: {
  19154. height: math.unit(5 + 10 / 12, "feet"),
  19155. weight: math.unit(252, "lb"),
  19156. name: "Front",
  19157. image: {
  19158. source: "./media/characters/bruun/front.svg",
  19159. extra: 197 / 187,
  19160. bottom: 0.012
  19161. }
  19162. },
  19163. },
  19164. [
  19165. {
  19166. name: "Normal",
  19167. height: math.unit(5 + 10 / 12, "feet"),
  19168. default: true
  19169. },
  19170. ]
  19171. ))
  19172. characterMakers.push(() => makeCharacter(
  19173. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19174. {
  19175. front: {
  19176. height: math.unit(6 + 10 / 12, "feet"),
  19177. weight: math.unit(255, "lb"),
  19178. name: "Front",
  19179. image: {
  19180. source: "./media/characters/alexeev/front.svg",
  19181. extra: 213 / 200,
  19182. bottom: 0.05
  19183. }
  19184. },
  19185. },
  19186. [
  19187. {
  19188. name: "Normal",
  19189. height: math.unit(6 + 10 / 12, "feet"),
  19190. default: true
  19191. },
  19192. ]
  19193. ))
  19194. characterMakers.push(() => makeCharacter(
  19195. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19196. {
  19197. front: {
  19198. height: math.unit(2 + 8 / 12, "feet"),
  19199. weight: math.unit(22, "lb"),
  19200. name: "Front",
  19201. image: {
  19202. source: "./media/characters/evelyn/front.svg",
  19203. extra: 208 / 180
  19204. }
  19205. },
  19206. },
  19207. [
  19208. {
  19209. name: "Normal",
  19210. height: math.unit(2 + 8 / 12, "feet"),
  19211. default: true
  19212. },
  19213. ]
  19214. ))
  19215. characterMakers.push(() => makeCharacter(
  19216. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19217. {
  19218. front: {
  19219. height: math.unit(5 + 9 / 12, "feet"),
  19220. weight: math.unit(139, "lb"),
  19221. name: "Front",
  19222. image: {
  19223. source: "./media/characters/inca/front.svg",
  19224. extra: 294 / 291,
  19225. bottom: 0.03
  19226. }
  19227. },
  19228. },
  19229. [
  19230. {
  19231. name: "Normal",
  19232. height: math.unit(5 + 9 / 12, "feet"),
  19233. default: true
  19234. },
  19235. ]
  19236. ))
  19237. characterMakers.push(() => makeCharacter(
  19238. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19239. {
  19240. front: {
  19241. height: math.unit(5 + 1 / 12, "feet"),
  19242. weight: math.unit(84, "lb"),
  19243. name: "Front",
  19244. image: {
  19245. source: "./media/characters/magdalene/front.svg",
  19246. extra: 293 / 273
  19247. }
  19248. },
  19249. },
  19250. [
  19251. {
  19252. name: "Normal",
  19253. height: math.unit(5 + 1 / 12, "feet"),
  19254. default: true
  19255. },
  19256. ]
  19257. ))
  19258. characterMakers.push(() => makeCharacter(
  19259. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19260. {
  19261. front: {
  19262. height: math.unit(6 + 3 / 12, "feet"),
  19263. weight: math.unit(185, "lb"),
  19264. name: "Front",
  19265. image: {
  19266. source: "./media/characters/mera/front.svg",
  19267. extra: 291 / 277,
  19268. bottom: 0.03
  19269. }
  19270. },
  19271. },
  19272. [
  19273. {
  19274. name: "Normal",
  19275. height: math.unit(6 + 3 / 12, "feet"),
  19276. default: true
  19277. },
  19278. ]
  19279. ))
  19280. characterMakers.push(() => makeCharacter(
  19281. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19282. {
  19283. front: {
  19284. height: math.unit(6 + 7 / 12, "feet"),
  19285. weight: math.unit(160, "lb"),
  19286. name: "Front",
  19287. image: {
  19288. source: "./media/characters/ceres/front.svg",
  19289. extra: 1023 / 950,
  19290. bottom: 0.027
  19291. }
  19292. },
  19293. back: {
  19294. height: math.unit(6 + 7 / 12, "feet"),
  19295. weight: math.unit(160, "lb"),
  19296. name: "Back",
  19297. image: {
  19298. source: "./media/characters/ceres/back.svg",
  19299. extra: 1023 / 950
  19300. }
  19301. },
  19302. },
  19303. [
  19304. {
  19305. name: "Normal",
  19306. height: math.unit(6 + 7 / 12, "feet"),
  19307. default: true
  19308. },
  19309. ]
  19310. ))
  19311. characterMakers.push(() => makeCharacter(
  19312. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19313. {
  19314. front: {
  19315. height: math.unit(5 + 10 / 12, "feet"),
  19316. weight: math.unit(150, "lb"),
  19317. name: "Front",
  19318. image: {
  19319. source: "./media/characters/kris/front.svg",
  19320. extra: 885 / 803,
  19321. bottom: 0.03
  19322. }
  19323. },
  19324. },
  19325. [
  19326. {
  19327. name: "Normal",
  19328. height: math.unit(5 + 10 / 12, "feet"),
  19329. default: true
  19330. },
  19331. ]
  19332. ))
  19333. characterMakers.push(() => makeCharacter(
  19334. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19335. {
  19336. front: {
  19337. height: math.unit(7, "feet"),
  19338. weight: math.unit(120, "kg"),
  19339. name: "Front",
  19340. image: {
  19341. source: "./media/characters/taluthus/front.svg",
  19342. extra: 903 / 833,
  19343. bottom: 0.015
  19344. }
  19345. },
  19346. },
  19347. [
  19348. {
  19349. name: "Normal",
  19350. height: math.unit(7, "feet"),
  19351. default: true
  19352. },
  19353. {
  19354. name: "Macro",
  19355. height: math.unit(300, "feet")
  19356. },
  19357. ]
  19358. ))
  19359. characterMakers.push(() => makeCharacter(
  19360. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19361. {
  19362. front: {
  19363. height: math.unit(5 + 9 / 12, "feet"),
  19364. weight: math.unit(145, "lb"),
  19365. name: "Front",
  19366. image: {
  19367. source: "./media/characters/dawn/front.svg",
  19368. extra: 2094 / 2016,
  19369. bottom: 0.025
  19370. }
  19371. },
  19372. back: {
  19373. height: math.unit(5 + 9 / 12, "feet"),
  19374. weight: math.unit(160, "lb"),
  19375. name: "Back",
  19376. image: {
  19377. source: "./media/characters/dawn/back.svg",
  19378. extra: 2112 / 2080,
  19379. bottom: 0.005
  19380. }
  19381. },
  19382. },
  19383. [
  19384. {
  19385. name: "Normal",
  19386. height: math.unit(6 + 7 / 12, "feet"),
  19387. default: true
  19388. },
  19389. ]
  19390. ))
  19391. characterMakers.push(() => makeCharacter(
  19392. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19393. {
  19394. anthro: {
  19395. height: math.unit(8 + 3 / 12, "feet"),
  19396. weight: math.unit(450, "lb"),
  19397. name: "Anthro",
  19398. image: {
  19399. source: "./media/characters/arador/anthro.svg",
  19400. extra: 1835 / 1718,
  19401. bottom: 0.025
  19402. }
  19403. },
  19404. feral: {
  19405. height: math.unit(4, "feet"),
  19406. weight: math.unit(200, "lb"),
  19407. name: "Feral",
  19408. image: {
  19409. source: "./media/characters/arador/feral.svg",
  19410. extra: 1683 / 1514,
  19411. bottom: 0.07
  19412. }
  19413. },
  19414. },
  19415. [
  19416. {
  19417. name: "Normal",
  19418. height: math.unit(8 + 3 / 12, "feet")
  19419. },
  19420. {
  19421. name: "Macro",
  19422. height: math.unit(82.5, "feet"),
  19423. default: true
  19424. },
  19425. ]
  19426. ))
  19427. characterMakers.push(() => makeCharacter(
  19428. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19429. {
  19430. front: {
  19431. height: math.unit(5 + 10 / 12, "feet"),
  19432. weight: math.unit(125, "lb"),
  19433. name: "Front",
  19434. image: {
  19435. source: "./media/characters/dharsi/front.svg",
  19436. extra: 716 / 630,
  19437. bottom: 0.035
  19438. }
  19439. },
  19440. },
  19441. [
  19442. {
  19443. name: "Nano",
  19444. height: math.unit(100, "nm")
  19445. },
  19446. {
  19447. name: "Micro",
  19448. height: math.unit(2, "inches")
  19449. },
  19450. {
  19451. name: "Normal",
  19452. height: math.unit(5 + 10 / 12, "feet"),
  19453. default: true
  19454. },
  19455. {
  19456. name: "Macro",
  19457. height: math.unit(1000, "feet")
  19458. },
  19459. {
  19460. name: "Megamacro",
  19461. height: math.unit(10, "miles")
  19462. },
  19463. {
  19464. name: "Gigamacro",
  19465. height: math.unit(3000, "miles")
  19466. },
  19467. {
  19468. name: "Teramacro",
  19469. height: math.unit(500000, "miles")
  19470. },
  19471. {
  19472. name: "Teramacro+",
  19473. height: math.unit(30, "galaxies")
  19474. },
  19475. ]
  19476. ))
  19477. characterMakers.push(() => makeCharacter(
  19478. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19479. {
  19480. front: {
  19481. height: math.unit(6, "feet"),
  19482. weight: math.unit(150, "lb"),
  19483. name: "Front",
  19484. image: {
  19485. source: "./media/characters/deathy/front.svg",
  19486. extra: 1552 / 1463,
  19487. bottom: 0.025
  19488. }
  19489. },
  19490. side: {
  19491. height: math.unit(6, "feet"),
  19492. weight: math.unit(150, "lb"),
  19493. name: "Side",
  19494. image: {
  19495. source: "./media/characters/deathy/side.svg",
  19496. extra: 1604 / 1455,
  19497. bottom: 0.025
  19498. }
  19499. },
  19500. back: {
  19501. height: math.unit(6, "feet"),
  19502. weight: math.unit(150, "lb"),
  19503. name: "Back",
  19504. image: {
  19505. source: "./media/characters/deathy/back.svg",
  19506. extra: 1580 / 1463,
  19507. bottom: 0.005
  19508. }
  19509. },
  19510. },
  19511. [
  19512. {
  19513. name: "Micro",
  19514. height: math.unit(5, "millimeters")
  19515. },
  19516. {
  19517. name: "Normal",
  19518. height: math.unit(6 + 5 / 12, "feet"),
  19519. default: true
  19520. },
  19521. ]
  19522. ))
  19523. characterMakers.push(() => makeCharacter(
  19524. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19525. {
  19526. front: {
  19527. height: math.unit(16, "feet"),
  19528. weight: math.unit(4000, "lb"),
  19529. name: "Front",
  19530. image: {
  19531. source: "./media/characters/juniper/front.svg",
  19532. bottom: 0.04
  19533. }
  19534. },
  19535. },
  19536. [
  19537. {
  19538. name: "Normal",
  19539. height: math.unit(16, "feet"),
  19540. default: true
  19541. },
  19542. ]
  19543. ))
  19544. characterMakers.push(() => makeCharacter(
  19545. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19546. {
  19547. front: {
  19548. height: math.unit(6, "feet"),
  19549. weight: math.unit(150, "lb"),
  19550. name: "Front",
  19551. image: {
  19552. source: "./media/characters/hipster/front.svg",
  19553. extra: 1312 / 1209,
  19554. bottom: 0.025
  19555. }
  19556. },
  19557. back: {
  19558. height: math.unit(6, "feet"),
  19559. weight: math.unit(150, "lb"),
  19560. name: "Back",
  19561. image: {
  19562. source: "./media/characters/hipster/back.svg",
  19563. extra: 1281 / 1196,
  19564. bottom: 0.01
  19565. }
  19566. },
  19567. },
  19568. [
  19569. {
  19570. name: "Micro",
  19571. height: math.unit(1, "mm")
  19572. },
  19573. {
  19574. name: "Normal",
  19575. height: math.unit(4, "inches"),
  19576. default: true
  19577. },
  19578. {
  19579. name: "Macro",
  19580. height: math.unit(500, "feet")
  19581. },
  19582. {
  19583. name: "Megamacro",
  19584. height: math.unit(1000, "miles")
  19585. },
  19586. ]
  19587. ))
  19588. characterMakers.push(() => makeCharacter(
  19589. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19590. {
  19591. front: {
  19592. height: math.unit(6, "feet"),
  19593. weight: math.unit(150, "lb"),
  19594. name: "Front",
  19595. image: {
  19596. source: "./media/characters/tendirmuldr/front.svg",
  19597. extra: 1878 / 1772,
  19598. bottom: 0.015
  19599. }
  19600. },
  19601. },
  19602. [
  19603. {
  19604. name: "Megamacro",
  19605. height: math.unit(1500, "miles"),
  19606. default: true
  19607. },
  19608. ]
  19609. ))
  19610. characterMakers.push(() => makeCharacter(
  19611. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19612. {
  19613. front: {
  19614. height: math.unit(14, "feet"),
  19615. weight: math.unit(12000, "lb"),
  19616. name: "Front",
  19617. image: {
  19618. source: "./media/characters/mort/front.svg",
  19619. extra: 365 / 318,
  19620. bottom: 0.01
  19621. }
  19622. },
  19623. side: {
  19624. height: math.unit(14, "feet"),
  19625. weight: math.unit(12000, "lb"),
  19626. name: "Side",
  19627. image: {
  19628. source: "./media/characters/mort/side.svg",
  19629. extra: 365 / 318,
  19630. bottom: 0.052
  19631. },
  19632. default: true
  19633. },
  19634. back: {
  19635. height: math.unit(14, "feet"),
  19636. weight: math.unit(12000, "lb"),
  19637. name: "Back",
  19638. image: {
  19639. source: "./media/characters/mort/back.svg",
  19640. extra: 371 / 332,
  19641. bottom: 0.18
  19642. }
  19643. },
  19644. },
  19645. [
  19646. {
  19647. name: "Normal",
  19648. height: math.unit(14, "feet"),
  19649. default: true
  19650. },
  19651. ]
  19652. ))
  19653. characterMakers.push(() => makeCharacter(
  19654. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19655. {
  19656. front: {
  19657. height: math.unit(8, "feet"),
  19658. weight: math.unit(1, "ton"),
  19659. name: "Front",
  19660. image: {
  19661. source: "./media/characters/lycoa/front.svg",
  19662. extra: 1875 / 1789,
  19663. bottom: 0.022
  19664. }
  19665. },
  19666. back: {
  19667. height: math.unit(8, "feet"),
  19668. weight: math.unit(1, "ton"),
  19669. name: "Back",
  19670. image: {
  19671. source: "./media/characters/lycoa/back.svg",
  19672. extra: 1835 / 1781,
  19673. bottom: 0.03
  19674. }
  19675. },
  19676. head: {
  19677. height: math.unit(2.1, "feet"),
  19678. name: "Head",
  19679. image: {
  19680. source: "./media/characters/lycoa/head.svg"
  19681. }
  19682. },
  19683. tailmaw: {
  19684. height: math.unit(1.9, "feet"),
  19685. name: "Tailmaw",
  19686. image: {
  19687. source: "./media/characters/lycoa/tailmaw.svg"
  19688. }
  19689. },
  19690. tentacles: {
  19691. height: math.unit(2.1, "feet"),
  19692. name: "Tentacles",
  19693. image: {
  19694. source: "./media/characters/lycoa/tentacles.svg"
  19695. }
  19696. },
  19697. dick: {
  19698. height: math.unit(1.73, "feet"),
  19699. name: "Dick",
  19700. image: {
  19701. source: "./media/characters/lycoa/dick.svg"
  19702. }
  19703. },
  19704. },
  19705. [
  19706. {
  19707. name: "Normal",
  19708. height: math.unit(8, "feet"),
  19709. default: true
  19710. },
  19711. {
  19712. name: "Macro",
  19713. height: math.unit(30, "feet")
  19714. },
  19715. ]
  19716. ))
  19717. characterMakers.push(() => makeCharacter(
  19718. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19719. {
  19720. front: {
  19721. height: math.unit(4 + 2 / 12, "feet"),
  19722. weight: math.unit(70, "lb"),
  19723. name: "Front",
  19724. image: {
  19725. source: "./media/characters/naldara/front.svg",
  19726. extra: 841 / 720,
  19727. bottom: 0.04
  19728. }
  19729. },
  19730. naga: {
  19731. height: math.unit(23, "feet"),
  19732. weight: math.unit(15000, "kg"),
  19733. name: "Naga",
  19734. image: {
  19735. source: "./media/characters/naldara/naga.svg",
  19736. extra: 3290 / 2959,
  19737. bottom: 124 / 3432
  19738. }
  19739. },
  19740. },
  19741. [
  19742. {
  19743. name: "Normal",
  19744. height: math.unit(4 + 2 / 12, "feet"),
  19745. default: true
  19746. },
  19747. ]
  19748. ))
  19749. characterMakers.push(() => makeCharacter(
  19750. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19751. {
  19752. front: {
  19753. height: math.unit(13 + 7 / 12, "feet"),
  19754. weight: math.unit(1500, "lb"),
  19755. name: "Front",
  19756. image: {
  19757. source: "./media/characters/briar/front.svg",
  19758. extra: 626 / 596,
  19759. bottom: 0.08
  19760. }
  19761. },
  19762. },
  19763. [
  19764. {
  19765. name: "Normal",
  19766. height: math.unit(13 + 7 / 12, "feet"),
  19767. default: true
  19768. },
  19769. ]
  19770. ))
  19771. characterMakers.push(() => makeCharacter(
  19772. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19773. {
  19774. side: {
  19775. height: math.unit(10, "feet"),
  19776. weight: math.unit(500, "lb"),
  19777. name: "Side",
  19778. image: {
  19779. source: "./media/characters/vanguard/side.svg",
  19780. extra: 502 / 425,
  19781. bottom: 0.087
  19782. }
  19783. },
  19784. },
  19785. [
  19786. {
  19787. name: "Normal",
  19788. height: math.unit(10, "feet"),
  19789. default: true
  19790. },
  19791. ]
  19792. ))
  19793. characterMakers.push(() => makeCharacter(
  19794. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19795. {
  19796. front: {
  19797. height: math.unit(7.5, "feet"),
  19798. weight: math.unit(2, "lb"),
  19799. name: "Front",
  19800. image: {
  19801. source: "./media/characters/artemis/front.svg",
  19802. extra: 1192 / 1075,
  19803. bottom: 0.07
  19804. }
  19805. },
  19806. frontNsfw: {
  19807. height: math.unit(7.5, "feet"),
  19808. weight: math.unit(2, "lb"),
  19809. name: "Front (NSFW)",
  19810. image: {
  19811. source: "./media/characters/artemis/front-nsfw.svg",
  19812. extra: 1192 / 1075,
  19813. bottom: 0.07
  19814. }
  19815. },
  19816. frontNsfwer: {
  19817. height: math.unit(7.5, "feet"),
  19818. weight: math.unit(2, "lb"),
  19819. name: "Front (NSFW-er)",
  19820. image: {
  19821. source: "./media/characters/artemis/front-nsfwer.svg",
  19822. extra: 1192 / 1075,
  19823. bottom: 0.07
  19824. }
  19825. },
  19826. side: {
  19827. height: math.unit(7.5, "feet"),
  19828. weight: math.unit(2, "lb"),
  19829. name: "Side",
  19830. image: {
  19831. source: "./media/characters/artemis/side.svg",
  19832. extra: 1192 / 1075,
  19833. bottom: 0.07
  19834. }
  19835. },
  19836. sideNsfw: {
  19837. height: math.unit(7.5, "feet"),
  19838. weight: math.unit(2, "lb"),
  19839. name: "Side (NSFW)",
  19840. image: {
  19841. source: "./media/characters/artemis/side-nsfw.svg",
  19842. extra: 1192 / 1075,
  19843. bottom: 0.07
  19844. }
  19845. },
  19846. sideNsfwer: {
  19847. height: math.unit(7.5, "feet"),
  19848. weight: math.unit(2, "lb"),
  19849. name: "Side (NSFW-er)",
  19850. image: {
  19851. source: "./media/characters/artemis/side-nsfwer.svg",
  19852. extra: 1192 / 1075,
  19853. bottom: 0.07
  19854. }
  19855. },
  19856. maw: {
  19857. height: math.unit(1.1, "feet"),
  19858. name: "Maw",
  19859. image: {
  19860. source: "./media/characters/artemis/maw.svg"
  19861. }
  19862. },
  19863. stomach: {
  19864. height: math.unit(0.95, "feet"),
  19865. name: "Stomach",
  19866. image: {
  19867. source: "./media/characters/artemis/stomach.svg"
  19868. }
  19869. },
  19870. dickCanine: {
  19871. height: math.unit(1, "feet"),
  19872. name: "Dick (Canine)",
  19873. image: {
  19874. source: "./media/characters/artemis/dick-canine.svg"
  19875. }
  19876. },
  19877. dickEquine: {
  19878. height: math.unit(0.85, "feet"),
  19879. name: "Dick (Equine)",
  19880. image: {
  19881. source: "./media/characters/artemis/dick-equine.svg"
  19882. }
  19883. },
  19884. dickExotic: {
  19885. height: math.unit(0.85, "feet"),
  19886. name: "Dick (Exotic)",
  19887. image: {
  19888. source: "./media/characters/artemis/dick-exotic.svg"
  19889. }
  19890. },
  19891. },
  19892. [
  19893. {
  19894. name: "Normal",
  19895. height: math.unit(7.5, "feet"),
  19896. default: true
  19897. },
  19898. {
  19899. name: "Enlarged",
  19900. height: math.unit(12, "feet")
  19901. },
  19902. ]
  19903. ))
  19904. characterMakers.push(() => makeCharacter(
  19905. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19906. {
  19907. front: {
  19908. height: math.unit(5 + 3 / 12, "feet"),
  19909. weight: math.unit(160, "lb"),
  19910. name: "Front",
  19911. image: {
  19912. source: "./media/characters/kira/front.svg",
  19913. extra: 906 / 786,
  19914. bottom: 0.01
  19915. }
  19916. },
  19917. back: {
  19918. height: math.unit(5 + 3 / 12, "feet"),
  19919. weight: math.unit(160, "lb"),
  19920. name: "Back",
  19921. image: {
  19922. source: "./media/characters/kira/back.svg",
  19923. extra: 882 / 757,
  19924. bottom: 0.005
  19925. }
  19926. },
  19927. frontDressed: {
  19928. height: math.unit(5 + 3 / 12, "feet"),
  19929. weight: math.unit(160, "lb"),
  19930. name: "Front (Dressed)",
  19931. image: {
  19932. source: "./media/characters/kira/front-dressed.svg",
  19933. extra: 906 / 786,
  19934. bottom: 0.01
  19935. }
  19936. },
  19937. beans: {
  19938. height: math.unit(0.92, "feet"),
  19939. name: "Beans",
  19940. image: {
  19941. source: "./media/characters/kira/beans.svg"
  19942. }
  19943. },
  19944. },
  19945. [
  19946. {
  19947. name: "Normal",
  19948. height: math.unit(5 + 3 / 12, "feet"),
  19949. default: true
  19950. },
  19951. ]
  19952. ))
  19953. characterMakers.push(() => makeCharacter(
  19954. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19955. {
  19956. front: {
  19957. height: math.unit(5 + 4 / 12, "feet"),
  19958. weight: math.unit(145, "lb"),
  19959. name: "Front",
  19960. image: {
  19961. source: "./media/characters/scramble/front.svg",
  19962. extra: 763 / 727,
  19963. bottom: 0.05
  19964. }
  19965. },
  19966. back: {
  19967. height: math.unit(5 + 4 / 12, "feet"),
  19968. weight: math.unit(145, "lb"),
  19969. name: "Back",
  19970. image: {
  19971. source: "./media/characters/scramble/back.svg",
  19972. extra: 826 / 737,
  19973. bottom: 0.002
  19974. }
  19975. },
  19976. },
  19977. [
  19978. {
  19979. name: "Normal",
  19980. height: math.unit(5 + 4 / 12, "feet"),
  19981. default: true
  19982. },
  19983. ]
  19984. ))
  19985. characterMakers.push(() => makeCharacter(
  19986. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19987. {
  19988. side: {
  19989. height: math.unit(6 + 2 / 12, "feet"),
  19990. weight: math.unit(190, "lb"),
  19991. name: "Side",
  19992. image: {
  19993. source: "./media/characters/biscuit/side.svg",
  19994. extra: 858 / 791,
  19995. bottom: 0.044
  19996. }
  19997. },
  19998. },
  19999. [
  20000. {
  20001. name: "Normal",
  20002. height: math.unit(6 + 2 / 12, "feet"),
  20003. default: true
  20004. },
  20005. ]
  20006. ))
  20007. characterMakers.push(() => makeCharacter(
  20008. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20009. {
  20010. front: {
  20011. height: math.unit(5 + 2 / 12, "feet"),
  20012. weight: math.unit(120, "lb"),
  20013. name: "Front",
  20014. image: {
  20015. source: "./media/characters/poffin/front.svg",
  20016. extra: 786 / 680,
  20017. bottom: 0.005
  20018. }
  20019. },
  20020. },
  20021. [
  20022. {
  20023. name: "Normal",
  20024. height: math.unit(5 + 2 / 12, "feet"),
  20025. default: true
  20026. },
  20027. ]
  20028. ))
  20029. characterMakers.push(() => makeCharacter(
  20030. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20031. {
  20032. front: {
  20033. height: math.unit(6 + 3 / 12, "feet"),
  20034. weight: math.unit(519, "lb"),
  20035. name: "Front",
  20036. image: {
  20037. source: "./media/characters/dhari/front.svg",
  20038. extra: 1048 / 946,
  20039. bottom: 0.015
  20040. }
  20041. },
  20042. back: {
  20043. height: math.unit(6 + 3 / 12, "feet"),
  20044. weight: math.unit(519, "lb"),
  20045. name: "Back",
  20046. image: {
  20047. source: "./media/characters/dhari/back.svg",
  20048. extra: 1048 / 931,
  20049. bottom: 0.005
  20050. }
  20051. },
  20052. frontDressed: {
  20053. height: math.unit(6 + 3 / 12, "feet"),
  20054. weight: math.unit(519, "lb"),
  20055. name: "Front (Dressed)",
  20056. image: {
  20057. source: "./media/characters/dhari/front-dressed.svg",
  20058. extra: 1713 / 1546,
  20059. bottom: 0.02
  20060. }
  20061. },
  20062. backDressed: {
  20063. height: math.unit(6 + 3 / 12, "feet"),
  20064. weight: math.unit(519, "lb"),
  20065. name: "Back (Dressed)",
  20066. image: {
  20067. source: "./media/characters/dhari/back-dressed.svg",
  20068. extra: 1699 / 1537,
  20069. bottom: 0.01
  20070. }
  20071. },
  20072. maw: {
  20073. height: math.unit(0.95, "feet"),
  20074. name: "Maw",
  20075. image: {
  20076. source: "./media/characters/dhari/maw.svg"
  20077. }
  20078. },
  20079. wereFront: {
  20080. height: math.unit(12 + 8 / 12, "feet"),
  20081. weight: math.unit(4000, "lb"),
  20082. name: "Front (Were)",
  20083. image: {
  20084. source: "./media/characters/dhari/were-front.svg",
  20085. extra: 1065 / 969,
  20086. bottom: 0.015
  20087. }
  20088. },
  20089. wereBack: {
  20090. height: math.unit(12 + 8 / 12, "feet"),
  20091. weight: math.unit(4000, "lb"),
  20092. name: "Back (Were)",
  20093. image: {
  20094. source: "./media/characters/dhari/were-back.svg",
  20095. extra: 1065 / 969,
  20096. bottom: 0.012
  20097. }
  20098. },
  20099. wereMaw: {
  20100. height: math.unit(0.625, "meters"),
  20101. name: "Maw (Were)",
  20102. image: {
  20103. source: "./media/characters/dhari/were-maw.svg"
  20104. }
  20105. },
  20106. },
  20107. [
  20108. {
  20109. name: "Normal",
  20110. height: math.unit(6 + 3 / 12, "feet"),
  20111. default: true
  20112. },
  20113. ]
  20114. ))
  20115. characterMakers.push(() => makeCharacter(
  20116. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20117. {
  20118. anthro: {
  20119. height: math.unit(5 + 7 / 12, "feet"),
  20120. weight: math.unit(175, "lb"),
  20121. name: "Anthro",
  20122. image: {
  20123. source: "./media/characters/rena-dyne/anthro.svg",
  20124. extra: 1849 / 1785,
  20125. bottom: 0.005
  20126. }
  20127. },
  20128. taur: {
  20129. height: math.unit(15 + 6 / 12, "feet"),
  20130. weight: math.unit(8000, "lb"),
  20131. name: "Taur",
  20132. image: {
  20133. source: "./media/characters/rena-dyne/taur.svg",
  20134. extra: 2315 / 2234,
  20135. bottom: 0.033
  20136. }
  20137. },
  20138. },
  20139. [
  20140. {
  20141. name: "Normal",
  20142. height: math.unit(5 + 7 / 12, "feet"),
  20143. default: true
  20144. },
  20145. ]
  20146. ))
  20147. characterMakers.push(() => makeCharacter(
  20148. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20149. {
  20150. front: {
  20151. height: math.unit(8, "feet"),
  20152. weight: math.unit(600, "lb"),
  20153. name: "Front",
  20154. image: {
  20155. source: "./media/characters/weremeep/front.svg",
  20156. extra: 967 / 862,
  20157. bottom: 0.01
  20158. }
  20159. },
  20160. },
  20161. [
  20162. {
  20163. name: "Normal",
  20164. height: math.unit(8, "feet"),
  20165. default: true
  20166. },
  20167. {
  20168. name: "Lorg",
  20169. height: math.unit(12, "feet")
  20170. },
  20171. {
  20172. name: "Oh Lawd She Comin'",
  20173. height: math.unit(20, "feet")
  20174. },
  20175. ]
  20176. ))
  20177. characterMakers.push(() => makeCharacter(
  20178. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20179. {
  20180. front: {
  20181. height: math.unit(4, "feet"),
  20182. weight: math.unit(90, "lb"),
  20183. name: "Front",
  20184. image: {
  20185. source: "./media/characters/reza/front.svg",
  20186. extra: 1183 / 1111,
  20187. bottom: 0.017
  20188. }
  20189. },
  20190. back: {
  20191. height: math.unit(4, "feet"),
  20192. weight: math.unit(90, "lb"),
  20193. name: "Back",
  20194. image: {
  20195. source: "./media/characters/reza/back.svg",
  20196. extra: 1183 / 1111,
  20197. bottom: 0.01
  20198. }
  20199. },
  20200. drake: {
  20201. height: math.unit(30, "feet"),
  20202. weight: math.unit(246960, "lb"),
  20203. name: "Drake",
  20204. image: {
  20205. source: "./media/characters/reza/drake.svg",
  20206. extra: 2350 / 2024,
  20207. bottom: 60.7 / 2403
  20208. }
  20209. },
  20210. },
  20211. [
  20212. {
  20213. name: "Normal",
  20214. height: math.unit(4, "feet"),
  20215. default: true
  20216. },
  20217. ]
  20218. ))
  20219. characterMakers.push(() => makeCharacter(
  20220. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20221. {
  20222. side: {
  20223. height: math.unit(15, "feet"),
  20224. weight: math.unit(14, "tons"),
  20225. name: "Side",
  20226. image: {
  20227. source: "./media/characters/athea/side.svg",
  20228. extra: 960 / 540,
  20229. bottom: 0.003
  20230. }
  20231. },
  20232. sitting: {
  20233. height: math.unit(6 * 2.85, "feet"),
  20234. weight: math.unit(14, "tons"),
  20235. name: "Sitting",
  20236. image: {
  20237. source: "./media/characters/athea/sitting.svg",
  20238. extra: 621 / 581,
  20239. bottom: 0.075
  20240. }
  20241. },
  20242. maw: {
  20243. height: math.unit(7.59498031496063, "feet"),
  20244. name: "Maw",
  20245. image: {
  20246. source: "./media/characters/athea/maw.svg"
  20247. }
  20248. },
  20249. },
  20250. [
  20251. {
  20252. name: "Lap Cat",
  20253. height: math.unit(2.5, "feet")
  20254. },
  20255. {
  20256. name: "Minimacro",
  20257. height: math.unit(15, "feet"),
  20258. default: true
  20259. },
  20260. {
  20261. name: "Macro",
  20262. height: math.unit(120, "feet")
  20263. },
  20264. {
  20265. name: "Macro+",
  20266. height: math.unit(640, "feet")
  20267. },
  20268. {
  20269. name: "Colossus",
  20270. height: math.unit(2.2, "miles")
  20271. },
  20272. ]
  20273. ))
  20274. characterMakers.push(() => makeCharacter(
  20275. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20276. {
  20277. front: {
  20278. height: math.unit(8 + 8 / 12, "feet"),
  20279. weight: math.unit(130, "kg"),
  20280. name: "Front",
  20281. image: {
  20282. source: "./media/characters/seroko/front.svg",
  20283. extra: 1385 / 1280,
  20284. bottom: 0.025
  20285. }
  20286. },
  20287. back: {
  20288. height: math.unit(8 + 8 / 12, "feet"),
  20289. weight: math.unit(130, "kg"),
  20290. name: "Back",
  20291. image: {
  20292. source: "./media/characters/seroko/back.svg",
  20293. extra: 1369 / 1238,
  20294. bottom: 0.018
  20295. }
  20296. },
  20297. frontDressed: {
  20298. height: math.unit(8 + 8 / 12, "feet"),
  20299. weight: math.unit(130, "kg"),
  20300. name: "Front (Dressed)",
  20301. image: {
  20302. source: "./media/characters/seroko/front-dressed.svg",
  20303. extra: 1366 / 1275,
  20304. bottom: 0.03
  20305. }
  20306. },
  20307. },
  20308. [
  20309. {
  20310. name: "Normal",
  20311. height: math.unit(8 + 8 / 12, "feet"),
  20312. default: true
  20313. },
  20314. ]
  20315. ))
  20316. characterMakers.push(() => makeCharacter(
  20317. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20318. {
  20319. front: {
  20320. height: math.unit(5.5, "feet"),
  20321. weight: math.unit(160, "lb"),
  20322. name: "Front",
  20323. image: {
  20324. source: "./media/characters/quatzi/front.svg",
  20325. extra: 2346 / 2242,
  20326. bottom: 0.015
  20327. }
  20328. },
  20329. },
  20330. [
  20331. {
  20332. name: "Normal",
  20333. height: math.unit(5.5, "feet"),
  20334. default: true
  20335. },
  20336. {
  20337. name: "Big",
  20338. height: math.unit(7.7, "feet")
  20339. },
  20340. ]
  20341. ))
  20342. characterMakers.push(() => makeCharacter(
  20343. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20344. {
  20345. front: {
  20346. height: math.unit(5 + 11 / 12, "feet"),
  20347. weight: math.unit(180, "lb"),
  20348. name: "Front",
  20349. image: {
  20350. source: "./media/characters/sen/front.svg",
  20351. extra: 1321 / 1254,
  20352. bottom: 0.015
  20353. }
  20354. },
  20355. side: {
  20356. height: math.unit(5 + 11 / 12, "feet"),
  20357. weight: math.unit(180, "lb"),
  20358. name: "Side",
  20359. image: {
  20360. source: "./media/characters/sen/side.svg",
  20361. extra: 1321 / 1254,
  20362. bottom: 0.007
  20363. }
  20364. },
  20365. back: {
  20366. height: math.unit(5 + 11 / 12, "feet"),
  20367. weight: math.unit(180, "lb"),
  20368. name: "Back",
  20369. image: {
  20370. source: "./media/characters/sen/back.svg",
  20371. extra: 1321 / 1254
  20372. }
  20373. },
  20374. },
  20375. [
  20376. {
  20377. name: "Normal",
  20378. height: math.unit(5 + 11 / 12, "feet"),
  20379. default: true
  20380. },
  20381. ]
  20382. ))
  20383. characterMakers.push(() => makeCharacter(
  20384. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20385. {
  20386. front: {
  20387. height: math.unit(166.6, "cm"),
  20388. weight: math.unit(66.6, "kg"),
  20389. name: "Front",
  20390. image: {
  20391. source: "./media/characters/fruity/front.svg",
  20392. extra: 1510 / 1386,
  20393. bottom: 0.04
  20394. }
  20395. },
  20396. back: {
  20397. height: math.unit(166.6, "cm"),
  20398. weight: math.unit(66.6, "lb"),
  20399. name: "Back",
  20400. image: {
  20401. source: "./media/characters/fruity/back.svg",
  20402. extra: 1563 / 1435,
  20403. bottom: 0.005
  20404. }
  20405. },
  20406. },
  20407. [
  20408. {
  20409. name: "Normal",
  20410. height: math.unit(166.6, "cm"),
  20411. default: true
  20412. },
  20413. {
  20414. name: "Demonic",
  20415. height: math.unit(166.6, "feet")
  20416. },
  20417. ]
  20418. ))
  20419. characterMakers.push(() => makeCharacter(
  20420. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20421. {
  20422. side: {
  20423. height: math.unit(10, "feet"),
  20424. weight: math.unit(500, "lb"),
  20425. name: "Side",
  20426. image: {
  20427. source: "./media/characters/zost/side.svg",
  20428. extra: 966 / 880,
  20429. bottom: 0.075
  20430. }
  20431. },
  20432. mawFront: {
  20433. height: math.unit(1.08, "meters"),
  20434. name: "Maw (Front)",
  20435. image: {
  20436. source: "./media/characters/zost/maw-front.svg"
  20437. }
  20438. },
  20439. mawSide: {
  20440. height: math.unit(2.66, "feet"),
  20441. name: "Maw (Side)",
  20442. image: {
  20443. source: "./media/characters/zost/maw-side.svg"
  20444. }
  20445. },
  20446. },
  20447. [
  20448. {
  20449. name: "Normal",
  20450. height: math.unit(10, "feet"),
  20451. default: true
  20452. },
  20453. ]
  20454. ))
  20455. characterMakers.push(() => makeCharacter(
  20456. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20457. {
  20458. front: {
  20459. height: math.unit(5 + 4 / 12, "feet"),
  20460. weight: math.unit(120, "lb"),
  20461. name: "Front",
  20462. image: {
  20463. source: "./media/characters/luci/front.svg",
  20464. extra: 1985 / 1884,
  20465. bottom: 0.04
  20466. }
  20467. },
  20468. back: {
  20469. height: math.unit(5 + 4 / 12, "feet"),
  20470. weight: math.unit(120, "lb"),
  20471. name: "Back",
  20472. image: {
  20473. source: "./media/characters/luci/back.svg",
  20474. extra: 1892 / 1791,
  20475. bottom: 0.002
  20476. }
  20477. },
  20478. },
  20479. [
  20480. {
  20481. name: "Normal",
  20482. height: math.unit(5 + 4 / 12, "feet"),
  20483. default: true
  20484. },
  20485. ]
  20486. ))
  20487. characterMakers.push(() => makeCharacter(
  20488. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20489. {
  20490. front: {
  20491. height: math.unit(1500, "feet"),
  20492. weight: math.unit(3.8e6, "tons"),
  20493. name: "Front",
  20494. image: {
  20495. source: "./media/characters/2th/front.svg",
  20496. extra: 3489 / 3350,
  20497. bottom: 0.1
  20498. }
  20499. },
  20500. foot: {
  20501. height: math.unit(461, "feet"),
  20502. name: "Foot",
  20503. image: {
  20504. source: "./media/characters/2th/foot.svg"
  20505. }
  20506. },
  20507. },
  20508. [
  20509. {
  20510. name: "\"Micro\"",
  20511. height: math.unit(15 + 7 / 12, "feet")
  20512. },
  20513. {
  20514. name: "Normal",
  20515. height: math.unit(1500, "feet"),
  20516. default: true
  20517. },
  20518. {
  20519. name: "Macro",
  20520. height: math.unit(5000, "feet")
  20521. },
  20522. {
  20523. name: "Megamacro",
  20524. height: math.unit(15, "miles")
  20525. },
  20526. {
  20527. name: "Gigamacro",
  20528. height: math.unit(4000, "miles")
  20529. },
  20530. {
  20531. name: "Galactic",
  20532. height: math.unit(50, "AU")
  20533. },
  20534. ]
  20535. ))
  20536. characterMakers.push(() => makeCharacter(
  20537. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20538. {
  20539. front: {
  20540. height: math.unit(5 + 6 / 12, "feet"),
  20541. weight: math.unit(220, "lb"),
  20542. name: "Front",
  20543. image: {
  20544. source: "./media/characters/amethyst/front.svg",
  20545. extra: 2078 / 2040,
  20546. bottom: 0.045
  20547. }
  20548. },
  20549. back: {
  20550. height: math.unit(5 + 6 / 12, "feet"),
  20551. weight: math.unit(220, "lb"),
  20552. name: "Back",
  20553. image: {
  20554. source: "./media/characters/amethyst/back.svg",
  20555. extra: 2021 / 1989,
  20556. bottom: 0.02
  20557. }
  20558. },
  20559. },
  20560. [
  20561. {
  20562. name: "Normal",
  20563. height: math.unit(5 + 6 / 12, "feet"),
  20564. default: true
  20565. },
  20566. ]
  20567. ))
  20568. characterMakers.push(() => makeCharacter(
  20569. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20570. {
  20571. front: {
  20572. height: math.unit(4 + 11 / 12, "feet"),
  20573. weight: math.unit(120, "lb"),
  20574. name: "Front",
  20575. image: {
  20576. source: "./media/characters/yumi-akiyama/front.svg",
  20577. extra: 1327 / 1235,
  20578. bottom: 0.02
  20579. }
  20580. },
  20581. back: {
  20582. height: math.unit(4 + 11 / 12, "feet"),
  20583. weight: math.unit(120, "lb"),
  20584. name: "Back",
  20585. image: {
  20586. source: "./media/characters/yumi-akiyama/back.svg",
  20587. extra: 1287 / 1245,
  20588. bottom: 0.002
  20589. }
  20590. },
  20591. },
  20592. [
  20593. {
  20594. name: "Galactic",
  20595. height: math.unit(50, "galaxies"),
  20596. default: true
  20597. },
  20598. {
  20599. name: "Universal",
  20600. height: math.unit(100, "universes")
  20601. },
  20602. ]
  20603. ))
  20604. characterMakers.push(() => makeCharacter(
  20605. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20606. {
  20607. front: {
  20608. height: math.unit(8, "feet"),
  20609. weight: math.unit(500, "lb"),
  20610. name: "Front",
  20611. image: {
  20612. source: "./media/characters/rifter-yrmori/front.svg",
  20613. extra: 1180 / 1125,
  20614. bottom: 0.02
  20615. }
  20616. },
  20617. back: {
  20618. height: math.unit(8, "feet"),
  20619. weight: math.unit(500, "lb"),
  20620. name: "Back",
  20621. image: {
  20622. source: "./media/characters/rifter-yrmori/back.svg",
  20623. extra: 1190 / 1145,
  20624. bottom: 0.001
  20625. }
  20626. },
  20627. wings: {
  20628. height: math.unit(7.75, "feet"),
  20629. weight: math.unit(500, "lb"),
  20630. name: "Wings",
  20631. image: {
  20632. source: "./media/characters/rifter-yrmori/wings.svg",
  20633. extra: 1357 / 1285
  20634. }
  20635. },
  20636. maw: {
  20637. height: math.unit(0.8, "feet"),
  20638. name: "Maw",
  20639. image: {
  20640. source: "./media/characters/rifter-yrmori/maw.svg"
  20641. }
  20642. },
  20643. mawfront: {
  20644. height: math.unit(1.45, "feet"),
  20645. name: "Maw (Front)",
  20646. image: {
  20647. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20648. }
  20649. },
  20650. },
  20651. [
  20652. {
  20653. name: "Normal",
  20654. height: math.unit(8, "feet"),
  20655. default: true
  20656. },
  20657. {
  20658. name: "Macro",
  20659. height: math.unit(42, "meters")
  20660. },
  20661. ]
  20662. ))
  20663. characterMakers.push(() => makeCharacter(
  20664. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20665. {
  20666. were: {
  20667. height: math.unit(25 + 6 / 12, "feet"),
  20668. weight: math.unit(10000, "lb"),
  20669. name: "Were",
  20670. image: {
  20671. source: "./media/characters/tahajin/were.svg",
  20672. extra: 801 / 770,
  20673. bottom: 0.042
  20674. }
  20675. },
  20676. aquatic: {
  20677. height: math.unit(6 + 4 / 12, "feet"),
  20678. weight: math.unit(160, "lb"),
  20679. name: "Aquatic",
  20680. image: {
  20681. source: "./media/characters/tahajin/aquatic.svg",
  20682. extra: 572 / 542,
  20683. bottom: 0.04
  20684. }
  20685. },
  20686. chow: {
  20687. height: math.unit(8 + 11 / 12, "feet"),
  20688. weight: math.unit(450, "lb"),
  20689. name: "Chow",
  20690. image: {
  20691. source: "./media/characters/tahajin/chow.svg",
  20692. extra: 660 / 640,
  20693. bottom: 0.015
  20694. }
  20695. },
  20696. demiNaga: {
  20697. height: math.unit(6 + 8 / 12, "feet"),
  20698. weight: math.unit(300, "lb"),
  20699. name: "Demi Naga",
  20700. image: {
  20701. source: "./media/characters/tahajin/demi-naga.svg",
  20702. extra: 643 / 615,
  20703. bottom: 0.1
  20704. }
  20705. },
  20706. data: {
  20707. height: math.unit(5, "inches"),
  20708. weight: math.unit(0.1, "lb"),
  20709. name: "Data",
  20710. image: {
  20711. source: "./media/characters/tahajin/data.svg"
  20712. }
  20713. },
  20714. fluu: {
  20715. height: math.unit(5 + 7 / 12, "feet"),
  20716. weight: math.unit(140, "lb"),
  20717. name: "Fluu",
  20718. image: {
  20719. source: "./media/characters/tahajin/fluu.svg",
  20720. extra: 628 / 592,
  20721. bottom: 0.02
  20722. }
  20723. },
  20724. starWarrior: {
  20725. height: math.unit(4 + 5 / 12, "feet"),
  20726. weight: math.unit(50, "lb"),
  20727. name: "Star Warrior",
  20728. image: {
  20729. source: "./media/characters/tahajin/star-warrior.svg"
  20730. }
  20731. },
  20732. },
  20733. [
  20734. {
  20735. name: "Normal",
  20736. height: math.unit(25 + 6 / 12, "feet"),
  20737. default: true
  20738. },
  20739. ]
  20740. ))
  20741. characterMakers.push(() => makeCharacter(
  20742. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20743. {
  20744. front: {
  20745. height: math.unit(8, "feet"),
  20746. weight: math.unit(350, "lb"),
  20747. name: "Front",
  20748. image: {
  20749. source: "./media/characters/gabira/front.svg",
  20750. extra: 608 / 580,
  20751. bottom: 0.03
  20752. }
  20753. },
  20754. back: {
  20755. height: math.unit(8, "feet"),
  20756. weight: math.unit(350, "lb"),
  20757. name: "Back",
  20758. image: {
  20759. source: "./media/characters/gabira/back.svg",
  20760. extra: 608 / 580,
  20761. bottom: 0.03
  20762. }
  20763. },
  20764. },
  20765. [
  20766. {
  20767. name: "Normal",
  20768. height: math.unit(8, "feet"),
  20769. default: true
  20770. },
  20771. ]
  20772. ))
  20773. characterMakers.push(() => makeCharacter(
  20774. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20775. {
  20776. front: {
  20777. height: math.unit(5 + 3 / 12, "feet"),
  20778. weight: math.unit(137, "lb"),
  20779. name: "Front",
  20780. image: {
  20781. source: "./media/characters/sasha-katraine/front.svg",
  20782. bottom: 0.045
  20783. }
  20784. },
  20785. },
  20786. [
  20787. {
  20788. name: "Micro",
  20789. height: math.unit(5, "inches")
  20790. },
  20791. {
  20792. name: "Normal",
  20793. height: math.unit(5 + 3 / 12, "feet"),
  20794. default: true
  20795. },
  20796. ]
  20797. ))
  20798. characterMakers.push(() => makeCharacter(
  20799. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20800. {
  20801. side: {
  20802. height: math.unit(4, "inches"),
  20803. weight: math.unit(200, "grams"),
  20804. name: "Side",
  20805. image: {
  20806. source: "./media/characters/der/side.svg",
  20807. extra: 719 / 400,
  20808. bottom: 30.6 / 749.9187
  20809. }
  20810. },
  20811. },
  20812. [
  20813. {
  20814. name: "Micro",
  20815. height: math.unit(4, "inches"),
  20816. default: true
  20817. },
  20818. ]
  20819. ))
  20820. characterMakers.push(() => makeCharacter(
  20821. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20822. {
  20823. side: {
  20824. height: math.unit(30, "meters"),
  20825. weight: math.unit(700, "tonnes"),
  20826. name: "Side",
  20827. image: {
  20828. source: "./media/characters/fixerdragon/side.svg",
  20829. extra: (1293.0514 - 116.03) / 1106.86,
  20830. bottom: 116.03 / 1293.0514
  20831. }
  20832. },
  20833. },
  20834. [
  20835. {
  20836. name: "Planck",
  20837. height: math.unit(1.6e-35, "meters")
  20838. },
  20839. {
  20840. name: "Micro",
  20841. height: math.unit(0.4, "meters")
  20842. },
  20843. {
  20844. name: "Normal",
  20845. height: math.unit(30, "meters"),
  20846. default: true
  20847. },
  20848. {
  20849. name: "Megamacro",
  20850. height: math.unit(1.2, "megameters")
  20851. },
  20852. {
  20853. name: "Teramacro",
  20854. height: math.unit(130, "terameters")
  20855. },
  20856. {
  20857. name: "Yottamacro",
  20858. height: math.unit(6200, "yottameters")
  20859. },
  20860. ]
  20861. ));
  20862. characterMakers.push(() => makeCharacter(
  20863. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20864. {
  20865. front: {
  20866. height: math.unit(8, "feet"),
  20867. weight: math.unit(250, "lb"),
  20868. name: "Front",
  20869. image: {
  20870. source: "./media/characters/kite/front.svg",
  20871. extra: 2796 / 2659,
  20872. bottom: 0.002
  20873. }
  20874. },
  20875. },
  20876. [
  20877. {
  20878. name: "Normal",
  20879. height: math.unit(8, "feet"),
  20880. default: true
  20881. },
  20882. {
  20883. name: "Macro",
  20884. height: math.unit(360, "feet")
  20885. },
  20886. {
  20887. name: "Megamacro",
  20888. height: math.unit(1500, "feet")
  20889. },
  20890. ]
  20891. ))
  20892. characterMakers.push(() => makeCharacter(
  20893. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20894. {
  20895. front: {
  20896. height: math.unit(5 + 10 / 12, "feet"),
  20897. weight: math.unit(150, "lb"),
  20898. name: "Front",
  20899. image: {
  20900. source: "./media/characters/poojawa-vynar/front.svg",
  20901. extra: (1506.1547 - 55) / 1356.6,
  20902. bottom: 55 / 1506.1547
  20903. }
  20904. },
  20905. frontTailless: {
  20906. height: math.unit(5 + 10 / 12, "feet"),
  20907. weight: math.unit(150, "lb"),
  20908. name: "Front (Tailless)",
  20909. image: {
  20910. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20911. extra: (1506.1547 - 55) / 1356.6,
  20912. bottom: 55 / 1506.1547
  20913. }
  20914. },
  20915. },
  20916. [
  20917. {
  20918. name: "Normal",
  20919. height: math.unit(5 + 10 / 12, "feet"),
  20920. default: true
  20921. },
  20922. ]
  20923. ))
  20924. characterMakers.push(() => makeCharacter(
  20925. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20926. {
  20927. front: {
  20928. height: math.unit(293, "meters"),
  20929. weight: math.unit(70400, "tons"),
  20930. name: "Front",
  20931. image: {
  20932. source: "./media/characters/violette/front.svg",
  20933. extra: 1227 / 1180,
  20934. bottom: 0.005
  20935. }
  20936. },
  20937. back: {
  20938. height: math.unit(293, "meters"),
  20939. weight: math.unit(70400, "tons"),
  20940. name: "Back",
  20941. image: {
  20942. source: "./media/characters/violette/back.svg",
  20943. extra: 1227 / 1180,
  20944. bottom: 0.005
  20945. }
  20946. },
  20947. },
  20948. [
  20949. {
  20950. name: "Macro",
  20951. height: math.unit(293, "meters"),
  20952. default: true
  20953. },
  20954. ]
  20955. ))
  20956. characterMakers.push(() => makeCharacter(
  20957. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20958. {
  20959. front: {
  20960. height: math.unit(1050, "feet"),
  20961. weight: math.unit(200000, "tons"),
  20962. name: "Front",
  20963. image: {
  20964. source: "./media/characters/alessandra/front.svg",
  20965. extra: 960 / 912,
  20966. bottom: 0.06
  20967. }
  20968. },
  20969. },
  20970. [
  20971. {
  20972. name: "Macro",
  20973. height: math.unit(1050, "feet")
  20974. },
  20975. {
  20976. name: "Macro+",
  20977. height: math.unit(900, "meters"),
  20978. default: true
  20979. },
  20980. ]
  20981. ))
  20982. characterMakers.push(() => makeCharacter(
  20983. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20984. {
  20985. front: {
  20986. height: math.unit(5, "feet"),
  20987. weight: math.unit(187, "lb"),
  20988. name: "Front",
  20989. image: {
  20990. source: "./media/characters/person/front.svg",
  20991. extra: 3087 / 2945,
  20992. bottom: 91 / 3181
  20993. }
  20994. },
  20995. },
  20996. [
  20997. {
  20998. name: "Micro",
  20999. height: math.unit(3, "inches")
  21000. },
  21001. {
  21002. name: "Normal",
  21003. height: math.unit(5, "feet"),
  21004. default: true
  21005. },
  21006. {
  21007. name: "Macro",
  21008. height: math.unit(90, "feet")
  21009. },
  21010. {
  21011. name: "Max Size",
  21012. height: math.unit(280, "feet")
  21013. },
  21014. ]
  21015. ))
  21016. characterMakers.push(() => makeCharacter(
  21017. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21018. {
  21019. front: {
  21020. height: math.unit(4.5, "meters"),
  21021. weight: math.unit(3200, "lb"),
  21022. name: "Front",
  21023. image: {
  21024. source: "./media/characters/ty/front.svg",
  21025. extra: 1038 / 960,
  21026. bottom: 31.156 / 1068
  21027. }
  21028. },
  21029. back: {
  21030. height: math.unit(4.5, "meters"),
  21031. weight: math.unit(3200, "lb"),
  21032. name: "Back",
  21033. image: {
  21034. source: "./media/characters/ty/back.svg",
  21035. extra: 1044 / 966,
  21036. bottom: 7.48 / 1049
  21037. }
  21038. },
  21039. },
  21040. [
  21041. {
  21042. name: "Normal",
  21043. height: math.unit(4.5, "meters"),
  21044. default: true
  21045. },
  21046. ]
  21047. ))
  21048. characterMakers.push(() => makeCharacter(
  21049. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21050. {
  21051. front: {
  21052. height: math.unit(5 + 4 / 12, "feet"),
  21053. weight: math.unit(115, "lb"),
  21054. name: "Front",
  21055. image: {
  21056. source: "./media/characters/rocky/front.svg",
  21057. extra: 1012 / 975,
  21058. bottom: 54 / 1066
  21059. }
  21060. },
  21061. },
  21062. [
  21063. {
  21064. name: "Normal",
  21065. height: math.unit(5 + 4 / 12, "feet"),
  21066. default: true
  21067. },
  21068. ]
  21069. ))
  21070. characterMakers.push(() => makeCharacter(
  21071. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21072. {
  21073. upright: {
  21074. height: math.unit(6, "meters"),
  21075. weight: math.unit(4000, "kg"),
  21076. name: "Upright",
  21077. image: {
  21078. source: "./media/characters/ruin/upright.svg",
  21079. extra: 668 / 661,
  21080. bottom: 42 / 799.8396
  21081. }
  21082. },
  21083. },
  21084. [
  21085. {
  21086. name: "Normal",
  21087. height: math.unit(6, "meters"),
  21088. default: true
  21089. },
  21090. ]
  21091. ))
  21092. characterMakers.push(() => makeCharacter(
  21093. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21094. {
  21095. front: {
  21096. height: math.unit(5, "feet"),
  21097. weight: math.unit(106, "lb"),
  21098. name: "Front",
  21099. image: {
  21100. source: "./media/characters/robin/front.svg",
  21101. extra: 862 / 799,
  21102. bottom: 42.4 / 914.8856
  21103. }
  21104. },
  21105. },
  21106. [
  21107. {
  21108. name: "Normal",
  21109. height: math.unit(5, "feet"),
  21110. default: true
  21111. },
  21112. ]
  21113. ))
  21114. characterMakers.push(() => makeCharacter(
  21115. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21116. {
  21117. side: {
  21118. height: math.unit(3, "feet"),
  21119. weight: math.unit(225, "lb"),
  21120. name: "Side",
  21121. image: {
  21122. source: "./media/characters/saian/side.svg",
  21123. extra: 566 / 356,
  21124. bottom: 79.7 / 643
  21125. }
  21126. },
  21127. maw: {
  21128. height: math.unit(2.85, "feet"),
  21129. name: "Maw",
  21130. image: {
  21131. source: "./media/characters/saian/maw.svg"
  21132. }
  21133. },
  21134. },
  21135. [
  21136. {
  21137. name: "Normal",
  21138. height: math.unit(3, "feet"),
  21139. default: true
  21140. },
  21141. ]
  21142. ))
  21143. characterMakers.push(() => makeCharacter(
  21144. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21145. {
  21146. side: {
  21147. height: math.unit(8, "feet"),
  21148. weight: math.unit(300, "lb"),
  21149. name: "Side",
  21150. image: {
  21151. source: "./media/characters/equus-silvermane/side.svg",
  21152. extra: 2176 / 2050,
  21153. bottom: 65.7 / 2245
  21154. }
  21155. },
  21156. front: {
  21157. height: math.unit(8, "feet"),
  21158. weight: math.unit(300, "lb"),
  21159. name: "Front",
  21160. image: {
  21161. source: "./media/characters/equus-silvermane/front.svg",
  21162. extra: 4633 / 4400,
  21163. bottom: 71.3 / 4706.915
  21164. }
  21165. },
  21166. sideStepping: {
  21167. height: math.unit(8, "feet"),
  21168. weight: math.unit(300, "lb"),
  21169. name: "Side (Stepping)",
  21170. image: {
  21171. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21172. extra: 1968 / 1860,
  21173. bottom: 16.4 / 1989
  21174. }
  21175. },
  21176. },
  21177. [
  21178. {
  21179. name: "Normal",
  21180. height: math.unit(8, "feet")
  21181. },
  21182. {
  21183. name: "Minimacro",
  21184. height: math.unit(75, "feet"),
  21185. default: true
  21186. },
  21187. {
  21188. name: "Macro",
  21189. height: math.unit(150, "feet")
  21190. },
  21191. {
  21192. name: "Macro+",
  21193. height: math.unit(1000, "feet")
  21194. },
  21195. {
  21196. name: "Megamacro",
  21197. height: math.unit(1, "mile")
  21198. },
  21199. ]
  21200. ))
  21201. characterMakers.push(() => makeCharacter(
  21202. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21203. {
  21204. side: {
  21205. height: math.unit(20, "feet"),
  21206. weight: math.unit(30000, "kg"),
  21207. name: "Side",
  21208. image: {
  21209. source: "./media/characters/windar/side.svg",
  21210. extra: 1491 / 1248,
  21211. bottom: 82.56 / 1568
  21212. }
  21213. },
  21214. },
  21215. [
  21216. {
  21217. name: "Normal",
  21218. height: math.unit(20, "feet"),
  21219. default: true
  21220. },
  21221. ]
  21222. ))
  21223. characterMakers.push(() => makeCharacter(
  21224. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21225. {
  21226. side: {
  21227. height: math.unit(15.66, "feet"),
  21228. weight: math.unit(150, "lb"),
  21229. name: "Side",
  21230. image: {
  21231. source: "./media/characters/melody/side.svg",
  21232. extra: 1097 / 944,
  21233. bottom: 11.8 / 1109
  21234. }
  21235. },
  21236. sideOutfit: {
  21237. height: math.unit(15.66, "feet"),
  21238. weight: math.unit(150, "lb"),
  21239. name: "Side (Outfit)",
  21240. image: {
  21241. source: "./media/characters/melody/side-outfit.svg",
  21242. extra: 1097 / 944,
  21243. bottom: 11.8 / 1109
  21244. }
  21245. },
  21246. },
  21247. [
  21248. {
  21249. name: "Normal",
  21250. height: math.unit(15.66, "feet"),
  21251. default: true
  21252. },
  21253. ]
  21254. ))
  21255. characterMakers.push(() => makeCharacter(
  21256. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21257. {
  21258. front: {
  21259. height: math.unit(8, "feet"),
  21260. weight: math.unit(325, "lb"),
  21261. name: "Front",
  21262. image: {
  21263. source: "./media/characters/windera/front.svg",
  21264. extra: 3180 / 2845,
  21265. bottom: 178 / 3365
  21266. }
  21267. },
  21268. },
  21269. [
  21270. {
  21271. name: "Normal",
  21272. height: math.unit(8, "feet"),
  21273. default: true
  21274. },
  21275. ]
  21276. ))
  21277. characterMakers.push(() => makeCharacter(
  21278. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21279. {
  21280. front: {
  21281. height: math.unit(28.75, "feet"),
  21282. weight: math.unit(2000, "kg"),
  21283. name: "Front",
  21284. image: {
  21285. source: "./media/characters/sonear/front.svg",
  21286. extra: 1041.1 / 964.9,
  21287. bottom: 53.7 / 1096.6
  21288. }
  21289. },
  21290. },
  21291. [
  21292. {
  21293. name: "Normal",
  21294. height: math.unit(28.75, "feet"),
  21295. default: true
  21296. },
  21297. ]
  21298. ))
  21299. characterMakers.push(() => makeCharacter(
  21300. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21301. {
  21302. side: {
  21303. height: math.unit(25.5, "feet"),
  21304. weight: math.unit(23000, "kg"),
  21305. name: "Side",
  21306. image: {
  21307. source: "./media/characters/kanara/side.svg"
  21308. }
  21309. },
  21310. },
  21311. [
  21312. {
  21313. name: "Normal",
  21314. height: math.unit(25.5, "feet"),
  21315. default: true
  21316. },
  21317. ]
  21318. ))
  21319. characterMakers.push(() => makeCharacter(
  21320. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21321. {
  21322. side: {
  21323. height: math.unit(10, "feet"),
  21324. weight: math.unit(1000, "kg"),
  21325. name: "Side",
  21326. image: {
  21327. source: "./media/characters/ereus/side.svg",
  21328. extra: 1157 / 959,
  21329. bottom: 153 / 1312.5
  21330. }
  21331. },
  21332. },
  21333. [
  21334. {
  21335. name: "Normal",
  21336. height: math.unit(10, "feet"),
  21337. default: true
  21338. },
  21339. ]
  21340. ))
  21341. characterMakers.push(() => makeCharacter(
  21342. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21343. {
  21344. side: {
  21345. height: math.unit(4.5, "feet"),
  21346. weight: math.unit(500, "lb"),
  21347. name: "Side",
  21348. image: {
  21349. source: "./media/characters/e-ter/side.svg",
  21350. extra: 1550 / 1248,
  21351. bottom: 146 / 1694
  21352. }
  21353. },
  21354. },
  21355. [
  21356. {
  21357. name: "Normal",
  21358. height: math.unit(4.5, "feet"),
  21359. default: true
  21360. },
  21361. ]
  21362. ))
  21363. characterMakers.push(() => makeCharacter(
  21364. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21365. {
  21366. side: {
  21367. height: math.unit(9.7, "feet"),
  21368. weight: math.unit(4000, "kg"),
  21369. name: "Side",
  21370. image: {
  21371. source: "./media/characters/yamie/side.svg"
  21372. }
  21373. },
  21374. },
  21375. [
  21376. {
  21377. name: "Normal",
  21378. height: math.unit(9.7, "feet"),
  21379. default: true
  21380. },
  21381. ]
  21382. ))
  21383. characterMakers.push(() => makeCharacter(
  21384. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21385. {
  21386. front: {
  21387. height: math.unit(50, "feet"),
  21388. weight: math.unit(50000, "kg"),
  21389. name: "Front",
  21390. image: {
  21391. source: "./media/characters/anders/front.svg",
  21392. extra: 570 / 539,
  21393. bottom: 14.7 / 586.7
  21394. }
  21395. },
  21396. },
  21397. [
  21398. {
  21399. name: "Large",
  21400. height: math.unit(50, "feet")
  21401. },
  21402. {
  21403. name: "Macro",
  21404. height: math.unit(2000, "feet"),
  21405. default: true
  21406. },
  21407. {
  21408. name: "Megamacro",
  21409. height: math.unit(12, "miles")
  21410. },
  21411. ]
  21412. ))
  21413. characterMakers.push(() => makeCharacter(
  21414. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21415. {
  21416. front: {
  21417. height: math.unit(7 + 2 / 12, "feet"),
  21418. weight: math.unit(300, "lb"),
  21419. name: "Front",
  21420. image: {
  21421. source: "./media/characters/reban/front.svg",
  21422. extra: 516 / 487,
  21423. bottom: 42.82 / 558.356
  21424. }
  21425. },
  21426. dick: {
  21427. height: math.unit(7 / 5, "feet"),
  21428. name: "Dick",
  21429. image: {
  21430. source: "./media/characters/reban/dick.svg"
  21431. }
  21432. },
  21433. },
  21434. [
  21435. {
  21436. name: "Natural Height",
  21437. height: math.unit(7 + 2 / 12, "feet")
  21438. },
  21439. {
  21440. name: "Macro",
  21441. height: math.unit(500, "feet"),
  21442. default: true
  21443. },
  21444. {
  21445. name: "Canon Height",
  21446. height: math.unit(50, "AU")
  21447. },
  21448. ]
  21449. ))
  21450. characterMakers.push(() => makeCharacter(
  21451. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21452. {
  21453. front: {
  21454. height: math.unit(6, "feet"),
  21455. weight: math.unit(150, "lb"),
  21456. name: "Front",
  21457. image: {
  21458. source: "./media/characters/terrance-keayes/front.svg",
  21459. extra: 1.005,
  21460. bottom: 151 / 1615
  21461. }
  21462. },
  21463. side: {
  21464. height: math.unit(6, "feet"),
  21465. weight: math.unit(150, "lb"),
  21466. name: "Side",
  21467. image: {
  21468. source: "./media/characters/terrance-keayes/side.svg",
  21469. extra: 1.005,
  21470. bottom: 129.4 / 1544
  21471. }
  21472. },
  21473. back: {
  21474. height: math.unit(6, "feet"),
  21475. weight: math.unit(150, "lb"),
  21476. name: "Back",
  21477. image: {
  21478. source: "./media/characters/terrance-keayes/back.svg",
  21479. extra: 1.005,
  21480. bottom: 58.4 / 1557.3
  21481. }
  21482. },
  21483. dick: {
  21484. height: math.unit(6 * 0.208, "feet"),
  21485. name: "Dick",
  21486. image: {
  21487. source: "./media/characters/terrance-keayes/dick.svg"
  21488. }
  21489. },
  21490. },
  21491. [
  21492. {
  21493. name: "Canon Height",
  21494. height: math.unit(35, "miles"),
  21495. default: true
  21496. },
  21497. ]
  21498. ))
  21499. characterMakers.push(() => makeCharacter(
  21500. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21501. {
  21502. front: {
  21503. height: math.unit(6, "feet"),
  21504. weight: math.unit(150, "lb"),
  21505. name: "Front",
  21506. image: {
  21507. source: "./media/characters/ofelia/front.svg",
  21508. extra: 546 / 541,
  21509. bottom: 39 / 583
  21510. }
  21511. },
  21512. back: {
  21513. height: math.unit(6, "feet"),
  21514. weight: math.unit(150, "lb"),
  21515. name: "Back",
  21516. image: {
  21517. source: "./media/characters/ofelia/back.svg",
  21518. extra: 564 / 559.5,
  21519. bottom: 8.69 / 573.02
  21520. }
  21521. },
  21522. maw: {
  21523. height: math.unit(1, "feet"),
  21524. name: "Maw",
  21525. image: {
  21526. source: "./media/characters/ofelia/maw.svg"
  21527. }
  21528. },
  21529. foot: {
  21530. height: math.unit(1.949, "feet"),
  21531. name: "Foot",
  21532. image: {
  21533. source: "./media/characters/ofelia/foot.svg"
  21534. }
  21535. },
  21536. },
  21537. [
  21538. {
  21539. name: "Canon Height",
  21540. height: math.unit(2000, "miles"),
  21541. default: true
  21542. },
  21543. ]
  21544. ))
  21545. characterMakers.push(() => makeCharacter(
  21546. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21547. {
  21548. front: {
  21549. height: math.unit(6, "feet"),
  21550. weight: math.unit(150, "lb"),
  21551. name: "Front",
  21552. image: {
  21553. source: "./media/characters/samuel/front.svg",
  21554. extra: 265 / 258,
  21555. bottom: 2 / 266.1566
  21556. }
  21557. },
  21558. },
  21559. [
  21560. {
  21561. name: "Macro",
  21562. height: math.unit(100, "feet"),
  21563. default: true
  21564. },
  21565. {
  21566. name: "Full Size",
  21567. height: math.unit(1000, "miles")
  21568. },
  21569. ]
  21570. ))
  21571. characterMakers.push(() => makeCharacter(
  21572. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21573. {
  21574. front: {
  21575. height: math.unit(6, "feet"),
  21576. weight: math.unit(300, "lb"),
  21577. name: "Front",
  21578. image: {
  21579. source: "./media/characters/beishir-kiel/front.svg",
  21580. extra: 569 / 547,
  21581. bottom: 41.9 / 609
  21582. }
  21583. },
  21584. maw: {
  21585. height: math.unit(6 * 0.202, "feet"),
  21586. name: "Maw",
  21587. image: {
  21588. source: "./media/characters/beishir-kiel/maw.svg"
  21589. }
  21590. },
  21591. },
  21592. [
  21593. {
  21594. name: "Macro",
  21595. height: math.unit(300, "feet"),
  21596. default: true
  21597. },
  21598. ]
  21599. ))
  21600. characterMakers.push(() => makeCharacter(
  21601. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21602. {
  21603. front: {
  21604. height: math.unit(5 + 8 / 12, "feet"),
  21605. weight: math.unit(120, "lb"),
  21606. name: "Front",
  21607. image: {
  21608. source: "./media/characters/logan-grey/front.svg",
  21609. extra: 2539 / 2393,
  21610. bottom: 97.6 / 2636.37
  21611. }
  21612. },
  21613. frontAlt: {
  21614. height: math.unit(5 + 8 / 12, "feet"),
  21615. weight: math.unit(120, "lb"),
  21616. name: "Front (Alt)",
  21617. image: {
  21618. source: "./media/characters/logan-grey/front-alt.svg",
  21619. extra: 958 / 893,
  21620. bottom: 15 / 970.768
  21621. }
  21622. },
  21623. back: {
  21624. height: math.unit(5 + 8 / 12, "feet"),
  21625. weight: math.unit(120, "lb"),
  21626. name: "Back",
  21627. image: {
  21628. source: "./media/characters/logan-grey/back.svg",
  21629. extra: 958 / 893,
  21630. bottom: 2.1881 / 970.9788
  21631. }
  21632. },
  21633. dick: {
  21634. height: math.unit(1.437, "feet"),
  21635. name: "Dick",
  21636. image: {
  21637. source: "./media/characters/logan-grey/dick.svg"
  21638. }
  21639. },
  21640. },
  21641. [
  21642. {
  21643. name: "Normal",
  21644. height: math.unit(5 + 8 / 12, "feet")
  21645. },
  21646. {
  21647. name: "The 500 Foot Femboy",
  21648. height: math.unit(500, "feet"),
  21649. default: true
  21650. },
  21651. {
  21652. name: "Megmacro",
  21653. height: math.unit(20, "miles")
  21654. },
  21655. ]
  21656. ))
  21657. characterMakers.push(() => makeCharacter(
  21658. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21659. {
  21660. front: {
  21661. height: math.unit(8 + 2 / 12, "feet"),
  21662. weight: math.unit(275, "lb"),
  21663. name: "Front",
  21664. image: {
  21665. source: "./media/characters/draganta/front.svg",
  21666. extra: 1177 / 1135,
  21667. bottom: 33.46 / 1212.1
  21668. }
  21669. },
  21670. },
  21671. [
  21672. {
  21673. name: "Normal",
  21674. height: math.unit(8 + 6 / 12, "feet"),
  21675. default: true
  21676. },
  21677. {
  21678. name: "Macro",
  21679. height: math.unit(150, "feet")
  21680. },
  21681. {
  21682. name: "Megamacro",
  21683. height: math.unit(1000, "miles")
  21684. },
  21685. ]
  21686. ))
  21687. characterMakers.push(() => makeCharacter(
  21688. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21689. {
  21690. front: {
  21691. height: math.unit(1.72, "m"),
  21692. weight: math.unit(80, "lb"),
  21693. name: "Front",
  21694. image: {
  21695. source: "./media/characters/voski/front.svg",
  21696. extra: 2076.22 / 2022.4,
  21697. bottom: 102.7 / 2177.3866
  21698. }
  21699. },
  21700. frontNsfw: {
  21701. height: math.unit(1.72, "m"),
  21702. weight: math.unit(80, "lb"),
  21703. name: "Front (NSFW)",
  21704. image: {
  21705. source: "./media/characters/voski/front-nsfw.svg",
  21706. extra: 2076.22 / 2022.4,
  21707. bottom: 102.7 / 2177.3866
  21708. }
  21709. },
  21710. back: {
  21711. height: math.unit(1.72, "m"),
  21712. weight: math.unit(80, "lb"),
  21713. name: "Back",
  21714. image: {
  21715. source: "./media/characters/voski/back.svg",
  21716. extra: 2104 / 2051,
  21717. bottom: 10.45 / 2113.63
  21718. }
  21719. },
  21720. },
  21721. [
  21722. {
  21723. name: "Normal",
  21724. height: math.unit(1.72, "m")
  21725. },
  21726. {
  21727. name: "Macro",
  21728. height: math.unit(55, "m"),
  21729. default: true
  21730. },
  21731. {
  21732. name: "Macro+",
  21733. height: math.unit(300, "m")
  21734. },
  21735. {
  21736. name: "Macro++",
  21737. height: math.unit(700, "m")
  21738. },
  21739. {
  21740. name: "Macro+++",
  21741. height: math.unit(4500, "m")
  21742. },
  21743. {
  21744. name: "Macro++++",
  21745. height: math.unit(45, "km")
  21746. },
  21747. {
  21748. name: "Macro+++++",
  21749. height: math.unit(1220, "km")
  21750. },
  21751. ]
  21752. ))
  21753. characterMakers.push(() => makeCharacter(
  21754. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21755. {
  21756. front: {
  21757. height: math.unit(2.3, "m"),
  21758. weight: math.unit(304, "kg"),
  21759. name: "Front",
  21760. image: {
  21761. source: "./media/characters/icowom-lee/front.svg",
  21762. extra: 985 / 955,
  21763. bottom: 25.4 / 1012
  21764. }
  21765. },
  21766. fronttentacles: {
  21767. height: math.unit(2.3, "m"),
  21768. weight: math.unit(304, "kg"),
  21769. name: "Front-tentacles",
  21770. image: {
  21771. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21772. extra: 985 / 955,
  21773. bottom: 25.4 / 1012
  21774. }
  21775. },
  21776. back: {
  21777. height: math.unit(2.3, "m"),
  21778. weight: math.unit(304, "kg"),
  21779. name: "Back",
  21780. image: {
  21781. source: "./media/characters/icowom-lee/back.svg",
  21782. extra: 975 / 954,
  21783. bottom: 9.5 / 985
  21784. }
  21785. },
  21786. backtentacles: {
  21787. height: math.unit(2.3, "m"),
  21788. weight: math.unit(304, "kg"),
  21789. name: "Back-tentacles",
  21790. image: {
  21791. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21792. extra: 975 / 954,
  21793. bottom: 9.5 / 985
  21794. }
  21795. },
  21796. frontDressed: {
  21797. height: math.unit(2.3, "m"),
  21798. weight: math.unit(304, "kg"),
  21799. name: "Front (Dressed)",
  21800. image: {
  21801. source: "./media/characters/icowom-lee/front-dressed.svg",
  21802. extra: 3076 / 2933,
  21803. bottom: 51.4 / 3125.1889
  21804. }
  21805. },
  21806. rump: {
  21807. height: math.unit(0.776, "meters"),
  21808. name: "Rump",
  21809. image: {
  21810. source: "./media/characters/icowom-lee/rump.svg"
  21811. }
  21812. },
  21813. genitals: {
  21814. height: math.unit(0.78, "meters"),
  21815. name: "Genitals",
  21816. image: {
  21817. source: "./media/characters/icowom-lee/genitals.svg"
  21818. }
  21819. },
  21820. },
  21821. [
  21822. {
  21823. name: "Normal",
  21824. height: math.unit(2.3, "meters"),
  21825. default: true
  21826. },
  21827. {
  21828. name: "Macro",
  21829. height: math.unit(94, "meters"),
  21830. default: true
  21831. },
  21832. ]
  21833. ))
  21834. characterMakers.push(() => makeCharacter(
  21835. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21836. {
  21837. front: {
  21838. height: math.unit(22, "meters"),
  21839. weight: math.unit(21000, "kg"),
  21840. name: "Front",
  21841. image: {
  21842. source: "./media/characters/shock-diamond/front.svg",
  21843. extra: 2204 / 2053,
  21844. bottom: 65 / 2239.47
  21845. }
  21846. },
  21847. frontNude: {
  21848. height: math.unit(22, "meters"),
  21849. weight: math.unit(21000, "kg"),
  21850. name: "Front (Nude)",
  21851. image: {
  21852. source: "./media/characters/shock-diamond/front-nude.svg",
  21853. extra: 2514 / 2285,
  21854. bottom: 13 / 2527.56
  21855. }
  21856. },
  21857. },
  21858. [
  21859. {
  21860. name: "Normal",
  21861. height: math.unit(3, "meters")
  21862. },
  21863. {
  21864. name: "Macro",
  21865. height: math.unit(22, "meters"),
  21866. default: true
  21867. },
  21868. ]
  21869. ))
  21870. characterMakers.push(() => makeCharacter(
  21871. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21872. {
  21873. front: {
  21874. height: math.unit(5 + 4 / 12, "feet"),
  21875. weight: math.unit(120, "lb"),
  21876. name: "Front",
  21877. image: {
  21878. source: "./media/characters/rory/front.svg",
  21879. extra: 589 / 556,
  21880. bottom: 45.7 / 635.76
  21881. }
  21882. },
  21883. frontNude: {
  21884. height: math.unit(5 + 4 / 12, "feet"),
  21885. weight: math.unit(120, "lb"),
  21886. name: "Front (Nude)",
  21887. image: {
  21888. source: "./media/characters/rory/front-nude.svg",
  21889. extra: 589 / 556,
  21890. bottom: 45.7 / 635.76
  21891. }
  21892. },
  21893. side: {
  21894. height: math.unit(5 + 4 / 12, "feet"),
  21895. weight: math.unit(120, "lb"),
  21896. name: "Side",
  21897. image: {
  21898. source: "./media/characters/rory/side.svg",
  21899. extra: 597 / 564,
  21900. bottom: 55 / 653
  21901. }
  21902. },
  21903. back: {
  21904. height: math.unit(5 + 4 / 12, "feet"),
  21905. weight: math.unit(120, "lb"),
  21906. name: "Back",
  21907. image: {
  21908. source: "./media/characters/rory/back.svg",
  21909. extra: 620 / 585,
  21910. bottom: 8.86 / 630.43
  21911. }
  21912. },
  21913. dick: {
  21914. height: math.unit(0.86, "feet"),
  21915. name: "Dick",
  21916. image: {
  21917. source: "./media/characters/rory/dick.svg"
  21918. }
  21919. },
  21920. },
  21921. [
  21922. {
  21923. name: "Normal",
  21924. height: math.unit(5 + 4 / 12, "feet"),
  21925. default: true
  21926. },
  21927. {
  21928. name: "Macro",
  21929. height: math.unit(100, "feet")
  21930. },
  21931. {
  21932. name: "Macro+",
  21933. height: math.unit(140, "feet")
  21934. },
  21935. {
  21936. name: "Macro++",
  21937. height: math.unit(300, "feet")
  21938. },
  21939. ]
  21940. ))
  21941. characterMakers.push(() => makeCharacter(
  21942. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21943. {
  21944. front: {
  21945. height: math.unit(5 + 9 / 12, "feet"),
  21946. weight: math.unit(190, "lb"),
  21947. name: "Front",
  21948. image: {
  21949. source: "./media/characters/sprisk/front.svg",
  21950. extra: 1225 / 1180,
  21951. bottom: 42.7 / 1266.4
  21952. }
  21953. },
  21954. frontNsfw: {
  21955. height: math.unit(5 + 9 / 12, "feet"),
  21956. weight: math.unit(190, "lb"),
  21957. name: "Front (NSFW)",
  21958. image: {
  21959. source: "./media/characters/sprisk/front-nsfw.svg",
  21960. extra: 1225 / 1180,
  21961. bottom: 42.7 / 1266.4
  21962. }
  21963. },
  21964. back: {
  21965. height: math.unit(5 + 9 / 12, "feet"),
  21966. weight: math.unit(190, "lb"),
  21967. name: "Back",
  21968. image: {
  21969. source: "./media/characters/sprisk/back.svg",
  21970. extra: 1247 / 1200,
  21971. bottom: 5.6 / 1253.04
  21972. }
  21973. },
  21974. },
  21975. [
  21976. {
  21977. name: "Tiny",
  21978. height: math.unit(2, "inches")
  21979. },
  21980. {
  21981. name: "Normal",
  21982. height: math.unit(5 + 9 / 12, "feet"),
  21983. default: true
  21984. },
  21985. {
  21986. name: "Mini Macro",
  21987. height: math.unit(18, "feet")
  21988. },
  21989. {
  21990. name: "Macro",
  21991. height: math.unit(100, "feet")
  21992. },
  21993. {
  21994. name: "MACRO",
  21995. height: math.unit(50, "miles")
  21996. },
  21997. {
  21998. name: "M A C R O",
  21999. height: math.unit(300, "miles")
  22000. },
  22001. ]
  22002. ))
  22003. characterMakers.push(() => makeCharacter(
  22004. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22005. {
  22006. side: {
  22007. height: math.unit(15.6, "meters"),
  22008. weight: math.unit(700000, "kg"),
  22009. name: "Side",
  22010. image: {
  22011. source: "./media/characters/bunsen/side.svg",
  22012. extra: 1644 / 358
  22013. }
  22014. },
  22015. foot: {
  22016. height: math.unit(1.611 * 1644 / 358, "meter"),
  22017. name: "Foot",
  22018. image: {
  22019. source: "./media/characters/bunsen/foot.svg"
  22020. }
  22021. },
  22022. },
  22023. [
  22024. {
  22025. name: "Small",
  22026. height: math.unit(10, "feet")
  22027. },
  22028. {
  22029. name: "Normal",
  22030. height: math.unit(15.6, "meters"),
  22031. default: true
  22032. },
  22033. ]
  22034. ))
  22035. characterMakers.push(() => makeCharacter(
  22036. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22037. {
  22038. front: {
  22039. height: math.unit(4 + 11 / 12, "feet"),
  22040. weight: math.unit(140, "lb"),
  22041. name: "Front",
  22042. image: {
  22043. source: "./media/characters/sesh/front.svg",
  22044. extra: 3420 / 3231,
  22045. bottom: 72 / 3949.5
  22046. }
  22047. },
  22048. },
  22049. [
  22050. {
  22051. name: "Normal",
  22052. height: math.unit(4 + 11 / 12, "feet")
  22053. },
  22054. {
  22055. name: "Grown",
  22056. height: math.unit(15, "feet"),
  22057. default: true
  22058. },
  22059. {
  22060. name: "Macro",
  22061. height: math.unit(1500, "feet")
  22062. },
  22063. {
  22064. name: "Megamacro",
  22065. height: math.unit(30, "miles")
  22066. },
  22067. {
  22068. name: "Continental",
  22069. height: math.unit(3000, "miles")
  22070. },
  22071. {
  22072. name: "Gravity Mass",
  22073. height: math.unit(300000, "miles")
  22074. },
  22075. {
  22076. name: "Planet Buster",
  22077. height: math.unit(30000000, "miles")
  22078. },
  22079. {
  22080. name: "Big",
  22081. height: math.unit(3000000000, "miles")
  22082. },
  22083. ]
  22084. ))
  22085. characterMakers.push(() => makeCharacter(
  22086. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22087. {
  22088. front: {
  22089. height: math.unit(9, "feet"),
  22090. weight: math.unit(350, "lb"),
  22091. name: "Front",
  22092. image: {
  22093. source: "./media/characters/pepper/front.svg",
  22094. extra: 1448 / 1312,
  22095. bottom: 9.4 / 1457.88
  22096. }
  22097. },
  22098. back: {
  22099. height: math.unit(9, "feet"),
  22100. weight: math.unit(350, "lb"),
  22101. name: "Back",
  22102. image: {
  22103. source: "./media/characters/pepper/back.svg",
  22104. extra: 1423 / 1300,
  22105. bottom: 4.6 / 1429
  22106. }
  22107. },
  22108. maw: {
  22109. height: math.unit(0.932, "feet"),
  22110. name: "Maw",
  22111. image: {
  22112. source: "./media/characters/pepper/maw.svg"
  22113. }
  22114. },
  22115. },
  22116. [
  22117. {
  22118. name: "Normal",
  22119. height: math.unit(9, "feet"),
  22120. default: true
  22121. },
  22122. ]
  22123. ))
  22124. characterMakers.push(() => makeCharacter(
  22125. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22126. {
  22127. front: {
  22128. height: math.unit(6, "feet"),
  22129. weight: math.unit(150, "lb"),
  22130. name: "Front",
  22131. image: {
  22132. source: "./media/characters/maelstrom/front.svg",
  22133. extra: 2100 / 1883,
  22134. bottom: 94 / 2196.7
  22135. }
  22136. },
  22137. },
  22138. [
  22139. {
  22140. name: "Less Kaiju",
  22141. height: math.unit(200, "feet")
  22142. },
  22143. {
  22144. name: "Kaiju",
  22145. height: math.unit(400, "feet"),
  22146. default: true
  22147. },
  22148. {
  22149. name: "Kaiju-er",
  22150. height: math.unit(600, "feet")
  22151. },
  22152. ]
  22153. ))
  22154. characterMakers.push(() => makeCharacter(
  22155. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22156. {
  22157. front: {
  22158. height: math.unit(6 + 5 / 12, "feet"),
  22159. weight: math.unit(180, "lb"),
  22160. name: "Front",
  22161. image: {
  22162. source: "./media/characters/lexir/front.svg",
  22163. extra: 180 / 172,
  22164. bottom: 12 / 192
  22165. }
  22166. },
  22167. back: {
  22168. height: math.unit(6 + 5 / 12, "feet"),
  22169. weight: math.unit(180, "lb"),
  22170. name: "Back",
  22171. image: {
  22172. source: "./media/characters/lexir/back.svg",
  22173. extra: 183.84 / 175.5,
  22174. bottom: 3.1 / 187
  22175. }
  22176. },
  22177. },
  22178. [
  22179. {
  22180. name: "Very Smal",
  22181. height: math.unit(1, "nm")
  22182. },
  22183. {
  22184. name: "Normal",
  22185. height: math.unit(6 + 5 / 12, "feet"),
  22186. default: true
  22187. },
  22188. {
  22189. name: "Macro",
  22190. height: math.unit(1, "mile")
  22191. },
  22192. {
  22193. name: "Megamacro",
  22194. height: math.unit(50, "miles")
  22195. },
  22196. ]
  22197. ))
  22198. characterMakers.push(() => makeCharacter(
  22199. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22200. {
  22201. front: {
  22202. height: math.unit(1.5, "meters"),
  22203. weight: math.unit(100, "lb"),
  22204. name: "Front",
  22205. image: {
  22206. source: "./media/characters/maksio/front.svg",
  22207. extra: 1549 / 1531,
  22208. bottom: 123.7 / 1674.5429
  22209. }
  22210. },
  22211. back: {
  22212. height: math.unit(1.5, "meters"),
  22213. weight: math.unit(100, "lb"),
  22214. name: "Back",
  22215. image: {
  22216. source: "./media/characters/maksio/back.svg",
  22217. extra: 1541 / 1509,
  22218. bottom: 97 / 1639
  22219. }
  22220. },
  22221. hand: {
  22222. height: math.unit(0.621, "feet"),
  22223. name: "Hand",
  22224. image: {
  22225. source: "./media/characters/maksio/hand.svg"
  22226. }
  22227. },
  22228. foot: {
  22229. height: math.unit(1.611, "feet"),
  22230. name: "Foot",
  22231. image: {
  22232. source: "./media/characters/maksio/foot.svg"
  22233. }
  22234. },
  22235. },
  22236. [
  22237. {
  22238. name: "Shrunken",
  22239. height: math.unit(10, "cm")
  22240. },
  22241. {
  22242. name: "Normal",
  22243. height: math.unit(150, "cm"),
  22244. default: true
  22245. },
  22246. ]
  22247. ))
  22248. characterMakers.push(() => makeCharacter(
  22249. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22250. {
  22251. front: {
  22252. height: math.unit(100, "feet"),
  22253. name: "Front",
  22254. image: {
  22255. source: "./media/characters/erza-bear/front.svg",
  22256. extra: 2449 / 2390,
  22257. bottom: 46 / 2494
  22258. }
  22259. },
  22260. back: {
  22261. height: math.unit(100, "feet"),
  22262. name: "Back",
  22263. image: {
  22264. source: "./media/characters/erza-bear/back.svg",
  22265. extra: 2489 / 2430,
  22266. bottom: 85.4 / 2480
  22267. }
  22268. },
  22269. tail: {
  22270. height: math.unit(42, "feet"),
  22271. name: "Tail",
  22272. image: {
  22273. source: "./media/characters/erza-bear/tail.svg"
  22274. }
  22275. },
  22276. tongue: {
  22277. height: math.unit(8, "feet"),
  22278. name: "Tongue",
  22279. image: {
  22280. source: "./media/characters/erza-bear/tongue.svg"
  22281. }
  22282. },
  22283. dick: {
  22284. height: math.unit(10.5, "feet"),
  22285. name: "Dick",
  22286. image: {
  22287. source: "./media/characters/erza-bear/dick.svg"
  22288. }
  22289. },
  22290. dickVertical: {
  22291. height: math.unit(16.9, "feet"),
  22292. name: "Dick (Vertical)",
  22293. image: {
  22294. source: "./media/characters/erza-bear/dick-vertical.svg"
  22295. }
  22296. },
  22297. },
  22298. [
  22299. {
  22300. name: "Macro",
  22301. height: math.unit(100, "feet"),
  22302. default: true
  22303. },
  22304. ]
  22305. ))
  22306. characterMakers.push(() => makeCharacter(
  22307. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22308. {
  22309. front: {
  22310. height: math.unit(172, "cm"),
  22311. weight: math.unit(73, "kg"),
  22312. name: "Front",
  22313. image: {
  22314. source: "./media/characters/violet-flor/front.svg",
  22315. extra: 1530 / 1442,
  22316. bottom: 61.9 / 1588.8
  22317. }
  22318. },
  22319. back: {
  22320. height: math.unit(180, "cm"),
  22321. weight: math.unit(73, "kg"),
  22322. name: "Back",
  22323. image: {
  22324. source: "./media/characters/violet-flor/back.svg",
  22325. extra: 1692 / 1630,
  22326. bottom: 20 / 1712
  22327. }
  22328. },
  22329. },
  22330. [
  22331. {
  22332. name: "Normal",
  22333. height: math.unit(172, "cm"),
  22334. default: true
  22335. },
  22336. ]
  22337. ))
  22338. characterMakers.push(() => makeCharacter(
  22339. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22340. {
  22341. front: {
  22342. height: math.unit(6, "feet"),
  22343. weight: math.unit(220, "lb"),
  22344. name: "Front",
  22345. image: {
  22346. source: "./media/characters/lynn-rhea/front.svg",
  22347. extra: 310 / 273
  22348. }
  22349. },
  22350. back: {
  22351. height: math.unit(6, "feet"),
  22352. weight: math.unit(220, "lb"),
  22353. name: "Back",
  22354. image: {
  22355. source: "./media/characters/lynn-rhea/back.svg",
  22356. extra: 310 / 273
  22357. }
  22358. },
  22359. dicks: {
  22360. height: math.unit(0.9, "feet"),
  22361. name: "Dicks",
  22362. image: {
  22363. source: "./media/characters/lynn-rhea/dicks.svg"
  22364. }
  22365. },
  22366. slit: {
  22367. height: math.unit(0.4, "feet"),
  22368. name: "Slit",
  22369. image: {
  22370. source: "./media/characters/lynn-rhea/slit.svg"
  22371. }
  22372. },
  22373. },
  22374. [
  22375. {
  22376. name: "Micro",
  22377. height: math.unit(1, "inch")
  22378. },
  22379. {
  22380. name: "Macro",
  22381. height: math.unit(60, "feet"),
  22382. default: true
  22383. },
  22384. {
  22385. name: "Megamacro",
  22386. height: math.unit(2, "miles")
  22387. },
  22388. {
  22389. name: "Gigamacro",
  22390. height: math.unit(3, "earths")
  22391. },
  22392. {
  22393. name: "Galactic",
  22394. height: math.unit(0.8, "galaxies")
  22395. },
  22396. ]
  22397. ))
  22398. characterMakers.push(() => makeCharacter(
  22399. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22400. {
  22401. front: {
  22402. height: math.unit(1600, "feet"),
  22403. weight: math.unit(85758785169, "kg"),
  22404. name: "Front",
  22405. image: {
  22406. source: "./media/characters/valathos/front.svg",
  22407. extra: 1451 / 1339
  22408. }
  22409. },
  22410. },
  22411. [
  22412. {
  22413. name: "Macro",
  22414. height: math.unit(1600, "feet"),
  22415. default: true
  22416. },
  22417. ]
  22418. ))
  22419. characterMakers.push(() => makeCharacter(
  22420. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22421. {
  22422. front: {
  22423. height: math.unit(7 + 5 / 12, "feet"),
  22424. weight: math.unit(300, "lb"),
  22425. name: "Front",
  22426. image: {
  22427. source: "./media/characters/azula/front.svg",
  22428. extra: 3208 / 2880,
  22429. bottom: 80.2 / 3277
  22430. }
  22431. },
  22432. back: {
  22433. height: math.unit(7 + 5 / 12, "feet"),
  22434. weight: math.unit(300, "lb"),
  22435. name: "Back",
  22436. image: {
  22437. source: "./media/characters/azula/back.svg",
  22438. extra: 3169 / 2822,
  22439. bottom: 150.6 / 3321
  22440. }
  22441. },
  22442. },
  22443. [
  22444. {
  22445. name: "Normal",
  22446. height: math.unit(7 + 5 / 12, "feet"),
  22447. default: true
  22448. },
  22449. {
  22450. name: "Big",
  22451. height: math.unit(20, "feet")
  22452. },
  22453. ]
  22454. ))
  22455. characterMakers.push(() => makeCharacter(
  22456. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22457. {
  22458. front: {
  22459. height: math.unit(5 + 1 / 12, "feet"),
  22460. weight: math.unit(110, "lb"),
  22461. name: "Front",
  22462. image: {
  22463. source: "./media/characters/rupert/front.svg",
  22464. extra: 1549 / 1495,
  22465. bottom: 54.2 / 1604.4
  22466. }
  22467. },
  22468. },
  22469. [
  22470. {
  22471. name: "Normal",
  22472. height: math.unit(5 + 1 / 12, "feet"),
  22473. default: true
  22474. },
  22475. ]
  22476. ))
  22477. characterMakers.push(() => makeCharacter(
  22478. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22479. {
  22480. front: {
  22481. height: math.unit(8 + 4 / 12, "feet"),
  22482. weight: math.unit(350, "lb"),
  22483. name: "Front",
  22484. image: {
  22485. source: "./media/characters/sheera-castellar/front.svg",
  22486. extra: 1957 / 1894,
  22487. bottom: 26.97 / 1975.017
  22488. }
  22489. },
  22490. side: {
  22491. height: math.unit(8 + 4 / 12, "feet"),
  22492. weight: math.unit(350, "lb"),
  22493. name: "Side",
  22494. image: {
  22495. source: "./media/characters/sheera-castellar/side.svg",
  22496. extra: 1957 / 1894
  22497. }
  22498. },
  22499. back: {
  22500. height: math.unit(8 + 4 / 12, "feet"),
  22501. weight: math.unit(350, "lb"),
  22502. name: "Back",
  22503. image: {
  22504. source: "./media/characters/sheera-castellar/back.svg",
  22505. extra: 1957 / 1894
  22506. }
  22507. },
  22508. angled: {
  22509. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22510. weight: math.unit(350, "lb"),
  22511. name: "Angled",
  22512. image: {
  22513. source: "./media/characters/sheera-castellar/angled.svg",
  22514. extra: 1807 / 1707,
  22515. bottom: 68 / 1875
  22516. }
  22517. },
  22518. genitals: {
  22519. height: math.unit(2.2, "feet"),
  22520. name: "Genitals",
  22521. image: {
  22522. source: "./media/characters/sheera-castellar/genitals.svg"
  22523. }
  22524. },
  22525. },
  22526. [
  22527. {
  22528. name: "Normal",
  22529. height: math.unit(8 + 4 / 12, "feet")
  22530. },
  22531. {
  22532. name: "Macro",
  22533. height: math.unit(150, "feet"),
  22534. default: true
  22535. },
  22536. {
  22537. name: "Macro+",
  22538. height: math.unit(800, "feet")
  22539. },
  22540. ]
  22541. ))
  22542. characterMakers.push(() => makeCharacter(
  22543. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22544. {
  22545. front: {
  22546. height: math.unit(6, "feet"),
  22547. weight: math.unit(150, "lb"),
  22548. name: "Front",
  22549. image: {
  22550. source: "./media/characters/jaipur/front.svg",
  22551. extra: 3860 / 3731,
  22552. bottom: 287 / 4140
  22553. }
  22554. },
  22555. back: {
  22556. height: math.unit(6, "feet"),
  22557. weight: math.unit(150, "lb"),
  22558. name: "Back",
  22559. image: {
  22560. source: "./media/characters/jaipur/back.svg",
  22561. extra: 4060 / 3930,
  22562. bottom: 151 / 4200
  22563. }
  22564. },
  22565. },
  22566. [
  22567. {
  22568. name: "Normal",
  22569. height: math.unit(1.85, "meters"),
  22570. default: true
  22571. },
  22572. {
  22573. name: "Macro",
  22574. height: math.unit(150, "meters")
  22575. },
  22576. {
  22577. name: "Macro+",
  22578. height: math.unit(0.5, "miles")
  22579. },
  22580. {
  22581. name: "Macro++",
  22582. height: math.unit(2.5, "miles")
  22583. },
  22584. {
  22585. name: "Macro+++",
  22586. height: math.unit(12, "miles")
  22587. },
  22588. {
  22589. name: "Macro++++",
  22590. height: math.unit(120, "miles")
  22591. },
  22592. {
  22593. name: "Macro+++++",
  22594. height: math.unit(1200, "miles")
  22595. },
  22596. ]
  22597. ))
  22598. characterMakers.push(() => makeCharacter(
  22599. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22600. {
  22601. front: {
  22602. height: math.unit(6, "feet"),
  22603. weight: math.unit(150, "lb"),
  22604. name: "Front",
  22605. image: {
  22606. source: "./media/characters/sheila-wolf/front.svg",
  22607. extra: 1931 / 1808,
  22608. bottom: 29.5 / 1960
  22609. }
  22610. },
  22611. dick: {
  22612. height: math.unit(1.464, "feet"),
  22613. name: "Dick",
  22614. image: {
  22615. source: "./media/characters/sheila-wolf/dick.svg"
  22616. }
  22617. },
  22618. muzzle: {
  22619. height: math.unit(0.513, "feet"),
  22620. name: "Muzzle",
  22621. image: {
  22622. source: "./media/characters/sheila-wolf/muzzle.svg"
  22623. }
  22624. },
  22625. },
  22626. [
  22627. {
  22628. name: "Macro",
  22629. height: math.unit(70, "feet"),
  22630. default: true
  22631. },
  22632. ]
  22633. ))
  22634. characterMakers.push(() => makeCharacter(
  22635. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22636. {
  22637. front: {
  22638. height: math.unit(32, "meters"),
  22639. weight: math.unit(300000, "kg"),
  22640. name: "Front",
  22641. image: {
  22642. source: "./media/characters/almor/front.svg",
  22643. extra: 1408 / 1322,
  22644. bottom: 94.6 / 1506.5
  22645. }
  22646. },
  22647. },
  22648. [
  22649. {
  22650. name: "Macro",
  22651. height: math.unit(32, "meters"),
  22652. default: true
  22653. },
  22654. ]
  22655. ))
  22656. characterMakers.push(() => makeCharacter(
  22657. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22658. {
  22659. front: {
  22660. height: math.unit(7, "feet"),
  22661. weight: math.unit(200, "lb"),
  22662. name: "Front",
  22663. image: {
  22664. source: "./media/characters/silver/front.svg",
  22665. extra: 472.1 / 450.5,
  22666. bottom: 26.5 / 499.424
  22667. }
  22668. },
  22669. },
  22670. [
  22671. {
  22672. name: "Normal",
  22673. height: math.unit(7, "feet"),
  22674. default: true
  22675. },
  22676. {
  22677. name: "Macro",
  22678. height: math.unit(800, "feet")
  22679. },
  22680. {
  22681. name: "Megamacro",
  22682. height: math.unit(250, "miles")
  22683. },
  22684. ]
  22685. ))
  22686. characterMakers.push(() => makeCharacter(
  22687. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22688. {
  22689. front: {
  22690. height: math.unit(6, "feet"),
  22691. weight: math.unit(150, "lb"),
  22692. name: "Front",
  22693. image: {
  22694. source: "./media/characters/pliskin/front.svg",
  22695. extra: 1469 / 1359,
  22696. bottom: 70 / 1540
  22697. }
  22698. },
  22699. },
  22700. [
  22701. {
  22702. name: "Micro",
  22703. height: math.unit(3, "inches")
  22704. },
  22705. {
  22706. name: "Normal",
  22707. height: math.unit(5 + 11 / 12, "feet"),
  22708. default: true
  22709. },
  22710. {
  22711. name: "Macro",
  22712. height: math.unit(120, "feet")
  22713. },
  22714. ]
  22715. ))
  22716. characterMakers.push(() => makeCharacter(
  22717. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22718. {
  22719. front: {
  22720. height: math.unit(6, "feet"),
  22721. weight: math.unit(150, "lb"),
  22722. name: "Front",
  22723. image: {
  22724. source: "./media/characters/sammy/front.svg",
  22725. extra: 1193 / 1089,
  22726. bottom: 30.5 / 1226
  22727. }
  22728. },
  22729. },
  22730. [
  22731. {
  22732. name: "Macro",
  22733. height: math.unit(1700, "feet"),
  22734. default: true
  22735. },
  22736. {
  22737. name: "Examacro",
  22738. height: math.unit(2.5e9, "lightyears")
  22739. },
  22740. ]
  22741. ))
  22742. characterMakers.push(() => makeCharacter(
  22743. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22744. {
  22745. front: {
  22746. height: math.unit(21, "meters"),
  22747. weight: math.unit(12, "tonnes"),
  22748. name: "Front",
  22749. image: {
  22750. source: "./media/characters/kuru/front.svg",
  22751. extra: 4301 / 3785,
  22752. bottom: 371.3 / 4691
  22753. }
  22754. },
  22755. },
  22756. [
  22757. {
  22758. name: "Macro",
  22759. height: math.unit(21, "meters"),
  22760. default: true
  22761. },
  22762. ]
  22763. ))
  22764. characterMakers.push(() => makeCharacter(
  22765. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22766. {
  22767. front: {
  22768. height: math.unit(23, "meters"),
  22769. weight: math.unit(12.2, "tonnes"),
  22770. name: "Front",
  22771. image: {
  22772. source: "./media/characters/rakka/front.svg",
  22773. extra: 4670 / 4169,
  22774. bottom: 301 / 4968.7
  22775. }
  22776. },
  22777. },
  22778. [
  22779. {
  22780. name: "Macro",
  22781. height: math.unit(23, "meters"),
  22782. default: true
  22783. },
  22784. ]
  22785. ))
  22786. characterMakers.push(() => makeCharacter(
  22787. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22788. {
  22789. front: {
  22790. height: math.unit(6, "feet"),
  22791. weight: math.unit(150, "lb"),
  22792. name: "Front",
  22793. image: {
  22794. source: "./media/characters/rhys-feline/front.svg",
  22795. extra: 2488 / 2308,
  22796. bottom: 35.67 / 2519.19
  22797. }
  22798. },
  22799. },
  22800. [
  22801. {
  22802. name: "Really Small",
  22803. height: math.unit(1, "nm")
  22804. },
  22805. {
  22806. name: "Micro",
  22807. height: math.unit(4, "inches")
  22808. },
  22809. {
  22810. name: "Normal",
  22811. height: math.unit(4 + 10 / 12, "feet"),
  22812. default: true
  22813. },
  22814. {
  22815. name: "Macro",
  22816. height: math.unit(100, "feet")
  22817. },
  22818. {
  22819. name: "Megamacto",
  22820. height: math.unit(50, "miles")
  22821. },
  22822. ]
  22823. ))
  22824. characterMakers.push(() => makeCharacter(
  22825. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22826. {
  22827. side: {
  22828. height: math.unit(30, "feet"),
  22829. weight: math.unit(35000, "kg"),
  22830. name: "Side",
  22831. image: {
  22832. source: "./media/characters/alydar/side.svg",
  22833. extra: 234 / 222,
  22834. bottom: 6.5 / 241
  22835. }
  22836. },
  22837. front: {
  22838. height: math.unit(30, "feet"),
  22839. weight: math.unit(35000, "kg"),
  22840. name: "Front",
  22841. image: {
  22842. source: "./media/characters/alydar/front.svg",
  22843. extra: 223.37 / 210.2,
  22844. bottom: 22.3 / 246.76
  22845. }
  22846. },
  22847. top: {
  22848. height: math.unit(64.54, "feet"),
  22849. weight: math.unit(35000, "kg"),
  22850. name: "Top",
  22851. image: {
  22852. source: "./media/characters/alydar/top.svg"
  22853. }
  22854. },
  22855. anthro: {
  22856. height: math.unit(30, "feet"),
  22857. weight: math.unit(9000, "kg"),
  22858. name: "Anthro",
  22859. image: {
  22860. source: "./media/characters/alydar/anthro.svg",
  22861. extra: 432 / 421,
  22862. bottom: 7.18 / 440
  22863. }
  22864. },
  22865. maw: {
  22866. height: math.unit(11.693, "feet"),
  22867. name: "Maw",
  22868. image: {
  22869. source: "./media/characters/alydar/maw.svg"
  22870. }
  22871. },
  22872. head: {
  22873. height: math.unit(11.693, "feet"),
  22874. name: "Head",
  22875. image: {
  22876. source: "./media/characters/alydar/head.svg"
  22877. }
  22878. },
  22879. headAlt: {
  22880. height: math.unit(12.861, "feet"),
  22881. name: "Head (Alt)",
  22882. image: {
  22883. source: "./media/characters/alydar/head-alt.svg"
  22884. }
  22885. },
  22886. wing: {
  22887. height: math.unit(20.712, "feet"),
  22888. name: "Wing",
  22889. image: {
  22890. source: "./media/characters/alydar/wing.svg"
  22891. }
  22892. },
  22893. wingFeather: {
  22894. height: math.unit(9.662, "feet"),
  22895. name: "Wing Feather",
  22896. image: {
  22897. source: "./media/characters/alydar/wing-feather.svg"
  22898. }
  22899. },
  22900. countourFeather: {
  22901. height: math.unit(4.154, "feet"),
  22902. name: "Contour Feather",
  22903. image: {
  22904. source: "./media/characters/alydar/contour-feather.svg"
  22905. }
  22906. },
  22907. },
  22908. [
  22909. {
  22910. name: "Diplomatic",
  22911. height: math.unit(13, "feet"),
  22912. default: true
  22913. },
  22914. {
  22915. name: "Small",
  22916. height: math.unit(30, "feet")
  22917. },
  22918. {
  22919. name: "Normal",
  22920. height: math.unit(95, "feet"),
  22921. default: true
  22922. },
  22923. {
  22924. name: "Large",
  22925. height: math.unit(285, "feet")
  22926. },
  22927. {
  22928. name: "Incomprehensible",
  22929. height: math.unit(450, "megameters")
  22930. },
  22931. ]
  22932. ))
  22933. characterMakers.push(() => makeCharacter(
  22934. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22935. {
  22936. side: {
  22937. height: math.unit(11, "feet"),
  22938. weight: math.unit(1750, "kg"),
  22939. name: "Side",
  22940. image: {
  22941. source: "./media/characters/selicia/side.svg",
  22942. extra: 440 / 396,
  22943. bottom: 24.8 / 465.979
  22944. }
  22945. },
  22946. maw: {
  22947. height: math.unit(4.665, "feet"),
  22948. name: "Maw",
  22949. image: {
  22950. source: "./media/characters/selicia/maw.svg"
  22951. }
  22952. },
  22953. },
  22954. [
  22955. {
  22956. name: "Normal",
  22957. height: math.unit(11, "feet"),
  22958. default: true
  22959. },
  22960. ]
  22961. ))
  22962. characterMakers.push(() => makeCharacter(
  22963. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22964. {
  22965. side: {
  22966. height: math.unit(2 + 6 / 12, "feet"),
  22967. weight: math.unit(30, "lb"),
  22968. name: "Side",
  22969. image: {
  22970. source: "./media/characters/layla/side.svg",
  22971. extra: 244 / 188,
  22972. bottom: 18.2 / 262.1
  22973. }
  22974. },
  22975. back: {
  22976. height: math.unit(2 + 6 / 12, "feet"),
  22977. weight: math.unit(30, "lb"),
  22978. name: "Back",
  22979. image: {
  22980. source: "./media/characters/layla/back.svg",
  22981. extra: 308 / 241.5,
  22982. bottom: 8.9 / 316.8
  22983. }
  22984. },
  22985. cumming: {
  22986. height: math.unit(2 + 6 / 12, "feet"),
  22987. weight: math.unit(30, "lb"),
  22988. name: "Cumming",
  22989. image: {
  22990. source: "./media/characters/layla/cumming.svg",
  22991. extra: 342 / 279,
  22992. bottom: 595 / 938
  22993. }
  22994. },
  22995. dickFlaccid: {
  22996. height: math.unit(2.595, "feet"),
  22997. name: "Flaccid Genitals",
  22998. image: {
  22999. source: "./media/characters/layla/dick-flaccid.svg"
  23000. }
  23001. },
  23002. dickErect: {
  23003. height: math.unit(2.359, "feet"),
  23004. name: "Erect Genitals",
  23005. image: {
  23006. source: "./media/characters/layla/dick-erect.svg"
  23007. }
  23008. },
  23009. },
  23010. [
  23011. {
  23012. name: "Micro",
  23013. height: math.unit(1, "inch")
  23014. },
  23015. {
  23016. name: "Small",
  23017. height: math.unit(1, "foot")
  23018. },
  23019. {
  23020. name: "Normal",
  23021. height: math.unit(2 + 6 / 12, "feet"),
  23022. default: true
  23023. },
  23024. {
  23025. name: "Macro",
  23026. height: math.unit(200, "feet")
  23027. },
  23028. {
  23029. name: "Megamacro",
  23030. height: math.unit(1000, "miles")
  23031. },
  23032. {
  23033. name: "Planetary",
  23034. height: math.unit(8000, "miles")
  23035. },
  23036. {
  23037. name: "True Layla",
  23038. height: math.unit(200000 * 7, "multiverses")
  23039. },
  23040. ]
  23041. ))
  23042. characterMakers.push(() => makeCharacter(
  23043. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23044. {
  23045. back: {
  23046. height: math.unit(10.5, "feet"),
  23047. weight: math.unit(800, "lb"),
  23048. name: "Back",
  23049. image: {
  23050. source: "./media/characters/knox/back.svg",
  23051. extra: 1486 / 1089,
  23052. bottom: 107 / 1601.4
  23053. }
  23054. },
  23055. side: {
  23056. height: math.unit(10.5, "feet"),
  23057. weight: math.unit(800, "lb"),
  23058. name: "Side",
  23059. image: {
  23060. source: "./media/characters/knox/side.svg",
  23061. extra: 244 / 218,
  23062. bottom: 14 / 260
  23063. }
  23064. },
  23065. },
  23066. [
  23067. {
  23068. name: "Compact",
  23069. height: math.unit(10.5, "feet"),
  23070. default: true
  23071. },
  23072. {
  23073. name: "Dynamax",
  23074. height: math.unit(210, "feet")
  23075. },
  23076. {
  23077. name: "Full Macro",
  23078. height: math.unit(850, "feet")
  23079. },
  23080. ]
  23081. ))
  23082. characterMakers.push(() => makeCharacter(
  23083. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23084. {
  23085. front: {
  23086. height: math.unit(6, "feet"),
  23087. weight: math.unit(152, "lb"),
  23088. name: "Front",
  23089. image: {
  23090. source: "./media/characters/shin-pikachu/front.svg",
  23091. extra: 1574 / 1480,
  23092. bottom: 53.3 / 1626
  23093. }
  23094. },
  23095. hand: {
  23096. height: math.unit(1.055, "feet"),
  23097. name: "Hand",
  23098. image: {
  23099. source: "./media/characters/shin-pikachu/hand.svg"
  23100. }
  23101. },
  23102. foot: {
  23103. height: math.unit(1.1, "feet"),
  23104. name: "Foot",
  23105. image: {
  23106. source: "./media/characters/shin-pikachu/foot.svg"
  23107. }
  23108. },
  23109. collar: {
  23110. height: math.unit(0.386, "feet"),
  23111. name: "Collar",
  23112. image: {
  23113. source: "./media/characters/shin-pikachu/collar.svg"
  23114. }
  23115. },
  23116. },
  23117. [
  23118. {
  23119. name: "Smallest",
  23120. height: math.unit(0.5, "inches")
  23121. },
  23122. {
  23123. name: "Micro",
  23124. height: math.unit(6, "inches")
  23125. },
  23126. {
  23127. name: "Normal",
  23128. height: math.unit(6, "feet"),
  23129. default: true
  23130. },
  23131. {
  23132. name: "Macro",
  23133. height: math.unit(150, "feet")
  23134. },
  23135. ]
  23136. ))
  23137. characterMakers.push(() => makeCharacter(
  23138. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23139. {
  23140. front: {
  23141. height: math.unit(28, "feet"),
  23142. weight: math.unit(10500, "lb"),
  23143. name: "Front",
  23144. image: {
  23145. source: "./media/characters/kayda/front.svg",
  23146. extra: 1536 / 1428,
  23147. bottom: 68.7 / 1603
  23148. }
  23149. },
  23150. back: {
  23151. height: math.unit(28, "feet"),
  23152. weight: math.unit(10500, "lb"),
  23153. name: "Back",
  23154. image: {
  23155. source: "./media/characters/kayda/back.svg",
  23156. extra: 1557 / 1464,
  23157. bottom: 39.5 / 1597.49
  23158. }
  23159. },
  23160. dick: {
  23161. height: math.unit(3.858, "feet"),
  23162. name: "Dick",
  23163. image: {
  23164. source: "./media/characters/kayda/dick.svg"
  23165. }
  23166. },
  23167. },
  23168. [
  23169. {
  23170. name: "Macro",
  23171. height: math.unit(28, "feet"),
  23172. default: true
  23173. },
  23174. ]
  23175. ))
  23176. characterMakers.push(() => makeCharacter(
  23177. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23178. {
  23179. front: {
  23180. height: math.unit(10 + 11 / 12, "feet"),
  23181. weight: math.unit(1400, "lb"),
  23182. name: "Front",
  23183. image: {
  23184. source: "./media/characters/brian/front.svg",
  23185. extra: 737 / 692,
  23186. bottom: 55.4 / 785
  23187. }
  23188. },
  23189. },
  23190. [
  23191. {
  23192. name: "Normal",
  23193. height: math.unit(10 + 11 / 12, "feet"),
  23194. default: true
  23195. },
  23196. ]
  23197. ))
  23198. characterMakers.push(() => makeCharacter(
  23199. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23200. {
  23201. front: {
  23202. height: math.unit(5 + 8 / 12, "feet"),
  23203. weight: math.unit(140, "lb"),
  23204. name: "Front",
  23205. image: {
  23206. source: "./media/characters/khemri/front.svg",
  23207. extra: 4780 / 4059,
  23208. bottom: 80.1 / 4859.25
  23209. }
  23210. },
  23211. },
  23212. [
  23213. {
  23214. name: "Micro",
  23215. height: math.unit(6, "inches")
  23216. },
  23217. {
  23218. name: "Normal",
  23219. height: math.unit(5 + 8 / 12, "feet"),
  23220. default: true
  23221. },
  23222. ]
  23223. ))
  23224. characterMakers.push(() => makeCharacter(
  23225. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23226. {
  23227. front: {
  23228. height: math.unit(13, "feet"),
  23229. weight: math.unit(1700, "lb"),
  23230. name: "Front",
  23231. image: {
  23232. source: "./media/characters/felix-braveheart/front.svg",
  23233. extra: 1222 / 1157,
  23234. bottom: 53.2 / 1280
  23235. }
  23236. },
  23237. back: {
  23238. height: math.unit(13, "feet"),
  23239. weight: math.unit(1700, "lb"),
  23240. name: "Back",
  23241. image: {
  23242. source: "./media/characters/felix-braveheart/back.svg",
  23243. extra: 1277 / 1203,
  23244. bottom: 50.2 / 1327
  23245. }
  23246. },
  23247. feral: {
  23248. height: math.unit(6, "feet"),
  23249. weight: math.unit(400, "lb"),
  23250. name: "Feral",
  23251. image: {
  23252. source: "./media/characters/felix-braveheart/feral.svg",
  23253. extra: 682 / 625,
  23254. bottom: 6.9 / 688
  23255. }
  23256. },
  23257. },
  23258. [
  23259. {
  23260. name: "Normal",
  23261. height: math.unit(13, "feet"),
  23262. default: true
  23263. },
  23264. ]
  23265. ))
  23266. characterMakers.push(() => makeCharacter(
  23267. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23268. {
  23269. side: {
  23270. height: math.unit(5 + 11 / 12, "feet"),
  23271. weight: math.unit(1400, "lb"),
  23272. name: "Side",
  23273. image: {
  23274. source: "./media/characters/shadow-blade/side.svg",
  23275. extra: 1726 / 1267,
  23276. bottom: 58.4 / 1785
  23277. }
  23278. },
  23279. },
  23280. [
  23281. {
  23282. name: "Normal",
  23283. height: math.unit(5 + 11 / 12, "feet"),
  23284. default: true
  23285. },
  23286. ]
  23287. ))
  23288. characterMakers.push(() => makeCharacter(
  23289. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23290. {
  23291. front: {
  23292. height: math.unit(1 + 6 / 12, "feet"),
  23293. weight: math.unit(25, "lb"),
  23294. name: "Front",
  23295. image: {
  23296. source: "./media/characters/karla-halldor/front.svg",
  23297. extra: 1459 / 1383,
  23298. bottom: 12 / 1472
  23299. }
  23300. },
  23301. },
  23302. [
  23303. {
  23304. name: "Normal",
  23305. height: math.unit(1 + 6 / 12, "feet"),
  23306. default: true
  23307. },
  23308. ]
  23309. ))
  23310. characterMakers.push(() => makeCharacter(
  23311. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23312. {
  23313. front: {
  23314. height: math.unit(6 + 2 / 12, "feet"),
  23315. weight: math.unit(160, "lb"),
  23316. name: "Front",
  23317. image: {
  23318. source: "./media/characters/ariam/front.svg",
  23319. extra: 714 / 617,
  23320. bottom: 23.4 / 737,
  23321. }
  23322. },
  23323. squatting: {
  23324. height: math.unit(4.1, "feet"),
  23325. weight: math.unit(160, "lb"),
  23326. name: "Squatting",
  23327. image: {
  23328. source: "./media/characters/ariam/squatting.svg",
  23329. extra: 2617 / 2112,
  23330. bottom: 61.2 / 2681,
  23331. }
  23332. },
  23333. },
  23334. [
  23335. {
  23336. name: "Normal",
  23337. height: math.unit(6 + 2 / 12, "feet"),
  23338. default: true
  23339. },
  23340. {
  23341. name: "Normal+",
  23342. height: math.unit(4, "meters")
  23343. },
  23344. {
  23345. name: "Macro",
  23346. height: math.unit(50, "meters")
  23347. },
  23348. {
  23349. name: "Macro+",
  23350. height: math.unit(100, "meters")
  23351. },
  23352. {
  23353. name: "Megamacro",
  23354. height: math.unit(20, "km")
  23355. },
  23356. ]
  23357. ))
  23358. characterMakers.push(() => makeCharacter(
  23359. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23360. {
  23361. front: {
  23362. height: math.unit(1.67, "meters"),
  23363. weight: math.unit(140, "lb"),
  23364. name: "Front",
  23365. image: {
  23366. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23367. extra: 438 / 410,
  23368. bottom: 0.75 / 439
  23369. }
  23370. },
  23371. },
  23372. [
  23373. {
  23374. name: "Shrunken",
  23375. height: math.unit(7.6, "cm")
  23376. },
  23377. {
  23378. name: "Human Scale",
  23379. height: math.unit(1.67, "meters")
  23380. },
  23381. {
  23382. name: "Wolxi Scale",
  23383. height: math.unit(36.7, "meters"),
  23384. default: true
  23385. },
  23386. ]
  23387. ))
  23388. characterMakers.push(() => makeCharacter(
  23389. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23390. {
  23391. front: {
  23392. height: math.unit(1.73, "meters"),
  23393. weight: math.unit(240, "lb"),
  23394. name: "Front",
  23395. image: {
  23396. source: "./media/characters/izue-two-mothers/front.svg",
  23397. extra: 469 / 437,
  23398. bottom: 1.24 / 470.6
  23399. }
  23400. },
  23401. },
  23402. [
  23403. {
  23404. name: "Shrunken",
  23405. height: math.unit(7.86, "cm")
  23406. },
  23407. {
  23408. name: "Human Scale",
  23409. height: math.unit(1.73, "meters")
  23410. },
  23411. {
  23412. name: "Wolxi Scale",
  23413. height: math.unit(38, "meters"),
  23414. default: true
  23415. },
  23416. ]
  23417. ))
  23418. characterMakers.push(() => makeCharacter(
  23419. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23420. {
  23421. front: {
  23422. height: math.unit(1.55, "meters"),
  23423. weight: math.unit(120, "lb"),
  23424. name: "Front",
  23425. image: {
  23426. source: "./media/characters/teeku-love-shack/front.svg",
  23427. extra: 387 / 362,
  23428. bottom: 1.51 / 388
  23429. }
  23430. },
  23431. },
  23432. [
  23433. {
  23434. name: "Shrunken",
  23435. height: math.unit(7, "cm")
  23436. },
  23437. {
  23438. name: "Human Scale",
  23439. height: math.unit(1.55, "meters")
  23440. },
  23441. {
  23442. name: "Wolxi Scale",
  23443. height: math.unit(34.1, "meters"),
  23444. default: true
  23445. },
  23446. ]
  23447. ))
  23448. characterMakers.push(() => makeCharacter(
  23449. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23450. {
  23451. front: {
  23452. height: math.unit(1.83, "meters"),
  23453. weight: math.unit(135, "lb"),
  23454. name: "Front",
  23455. image: {
  23456. source: "./media/characters/dejma-the-red/front.svg",
  23457. extra: 480 / 458,
  23458. bottom: 1.8 / 482
  23459. }
  23460. },
  23461. },
  23462. [
  23463. {
  23464. name: "Shrunken",
  23465. height: math.unit(8.3, "cm")
  23466. },
  23467. {
  23468. name: "Human Scale",
  23469. height: math.unit(1.83, "meters")
  23470. },
  23471. {
  23472. name: "Wolxi Scale",
  23473. height: math.unit(40, "meters"),
  23474. default: true
  23475. },
  23476. ]
  23477. ))
  23478. characterMakers.push(() => makeCharacter(
  23479. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23480. {
  23481. front: {
  23482. height: math.unit(1.78, "meters"),
  23483. weight: math.unit(65, "kg"),
  23484. name: "Front",
  23485. image: {
  23486. source: "./media/characters/aki/front.svg",
  23487. extra: 452 / 415
  23488. }
  23489. },
  23490. frontNsfw: {
  23491. height: math.unit(1.78, "meters"),
  23492. weight: math.unit(65, "kg"),
  23493. name: "Front (NSFW)",
  23494. image: {
  23495. source: "./media/characters/aki/front-nsfw.svg",
  23496. extra: 452 / 415
  23497. }
  23498. },
  23499. back: {
  23500. height: math.unit(1.78, "meters"),
  23501. weight: math.unit(65, "kg"),
  23502. name: "Back",
  23503. image: {
  23504. source: "./media/characters/aki/back.svg",
  23505. extra: 452 / 415
  23506. }
  23507. },
  23508. rump: {
  23509. height: math.unit(2.05, "feet"),
  23510. name: "Rump",
  23511. image: {
  23512. source: "./media/characters/aki/rump.svg"
  23513. }
  23514. },
  23515. dick: {
  23516. height: math.unit(0.95, "feet"),
  23517. name: "Dick",
  23518. image: {
  23519. source: "./media/characters/aki/dick.svg"
  23520. }
  23521. },
  23522. },
  23523. [
  23524. {
  23525. name: "Micro",
  23526. height: math.unit(15, "cm")
  23527. },
  23528. {
  23529. name: "Normal",
  23530. height: math.unit(178, "cm"),
  23531. default: true
  23532. },
  23533. {
  23534. name: "Macro",
  23535. height: math.unit(214, "m")
  23536. },
  23537. {
  23538. name: "Macro+",
  23539. height: math.unit(534, "m")
  23540. },
  23541. ]
  23542. ))
  23543. characterMakers.push(() => makeCharacter(
  23544. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23545. {
  23546. front: {
  23547. height: math.unit(5 + 5 / 12, "feet"),
  23548. weight: math.unit(120, "lb"),
  23549. name: "Front",
  23550. image: {
  23551. source: "./media/characters/ari/front.svg",
  23552. extra: 714.5 / 682,
  23553. bottom: 8 / 722.5
  23554. }
  23555. },
  23556. },
  23557. [
  23558. {
  23559. name: "Normal",
  23560. height: math.unit(5 + 5 / 12, "feet")
  23561. },
  23562. {
  23563. name: "Macro",
  23564. height: math.unit(100, "feet"),
  23565. default: true
  23566. },
  23567. {
  23568. name: "Megamacro",
  23569. height: math.unit(100, "miles")
  23570. },
  23571. {
  23572. name: "Gigamacro",
  23573. height: math.unit(80000, "miles")
  23574. },
  23575. ]
  23576. ))
  23577. characterMakers.push(() => makeCharacter(
  23578. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23579. {
  23580. side: {
  23581. height: math.unit(9, "feet"),
  23582. weight: math.unit(400, "kg"),
  23583. name: "Side",
  23584. image: {
  23585. source: "./media/characters/bolt/side.svg",
  23586. extra: 1126 / 896,
  23587. bottom: 60 / 1187.3,
  23588. }
  23589. },
  23590. },
  23591. [
  23592. {
  23593. name: "Micro",
  23594. height: math.unit(5, "inches")
  23595. },
  23596. {
  23597. name: "Normal",
  23598. height: math.unit(9, "feet"),
  23599. default: true
  23600. },
  23601. {
  23602. name: "Macro",
  23603. height: math.unit(700, "feet")
  23604. },
  23605. {
  23606. name: "Max Size",
  23607. height: math.unit(1.52e22, "yottameters")
  23608. },
  23609. ]
  23610. ))
  23611. characterMakers.push(() => makeCharacter(
  23612. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23613. {
  23614. front: {
  23615. height: math.unit(4.53, "meters"),
  23616. weight: math.unit(3, "tons"),
  23617. name: "Front",
  23618. image: {
  23619. source: "./media/characters/draekon-sylviar/front.svg",
  23620. extra: 1228 / 1068,
  23621. bottom: 41 / 1270
  23622. }
  23623. },
  23624. tail: {
  23625. height: math.unit(1.772, "meter"),
  23626. name: "Tail",
  23627. image: {
  23628. source: "./media/characters/draekon-sylviar/tail.svg"
  23629. }
  23630. },
  23631. head: {
  23632. height: math.unit(1.331, "meter"),
  23633. name: "Head",
  23634. image: {
  23635. source: "./media/characters/draekon-sylviar/head.svg"
  23636. }
  23637. },
  23638. hand: {
  23639. height: math.unit(0.564, "meter"),
  23640. name: "Hand",
  23641. image: {
  23642. source: "./media/characters/draekon-sylviar/hand.svg"
  23643. }
  23644. },
  23645. foot: {
  23646. height: math.unit(0.621, "meter"),
  23647. name: "Foot",
  23648. image: {
  23649. source: "./media/characters/draekon-sylviar/foot.svg",
  23650. bottom: 32 / 324
  23651. }
  23652. },
  23653. dick: {
  23654. height: math.unit(61, "cm"),
  23655. name: "Dick",
  23656. image: {
  23657. source: "./media/characters/draekon-sylviar/dick.svg"
  23658. }
  23659. },
  23660. dickseparated: {
  23661. height: math.unit(61, "cm"),
  23662. name: "Dick-separated",
  23663. image: {
  23664. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23665. }
  23666. },
  23667. },
  23668. [
  23669. {
  23670. name: "Small",
  23671. height: math.unit(4.53 / 2, "meters"),
  23672. default: true
  23673. },
  23674. {
  23675. name: "Normal",
  23676. height: math.unit(4.53, "meters"),
  23677. default: true
  23678. },
  23679. {
  23680. name: "Large",
  23681. height: math.unit(4.53 * 2, "meters"),
  23682. },
  23683. ]
  23684. ))
  23685. characterMakers.push(() => makeCharacter(
  23686. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23687. {
  23688. front: {
  23689. height: math.unit(6 + 2 / 12, "feet"),
  23690. weight: math.unit(180, "lb"),
  23691. name: "Front",
  23692. image: {
  23693. source: "./media/characters/brawler/front.svg",
  23694. extra: 3301 / 3027,
  23695. bottom: 138 / 3439
  23696. }
  23697. },
  23698. },
  23699. [
  23700. {
  23701. name: "Normal",
  23702. height: math.unit(6 + 2 / 12, "feet"),
  23703. default: true
  23704. },
  23705. ]
  23706. ))
  23707. characterMakers.push(() => makeCharacter(
  23708. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23709. {
  23710. front: {
  23711. height: math.unit(11, "feet"),
  23712. weight: math.unit(1000, "lb"),
  23713. name: "Front",
  23714. image: {
  23715. source: "./media/characters/alex/front.svg",
  23716. bottom: 44.5 / 620
  23717. }
  23718. },
  23719. },
  23720. [
  23721. {
  23722. name: "Micro",
  23723. height: math.unit(5, "inches")
  23724. },
  23725. {
  23726. name: "Normal",
  23727. height: math.unit(11, "feet"),
  23728. default: true
  23729. },
  23730. {
  23731. name: "Macro",
  23732. height: math.unit(9.5e9, "feet")
  23733. },
  23734. {
  23735. name: "Max Size",
  23736. height: math.unit(1.4e283, "yottameters")
  23737. },
  23738. ]
  23739. ))
  23740. characterMakers.push(() => makeCharacter(
  23741. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23742. {
  23743. female: {
  23744. height: math.unit(29.9, "m"),
  23745. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23746. name: "Female",
  23747. image: {
  23748. source: "./media/characters/zenari/female.svg",
  23749. extra: 3281.6 / 3217,
  23750. bottom: 72.2 / 3353
  23751. }
  23752. },
  23753. male: {
  23754. height: math.unit(27.7, "m"),
  23755. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23756. name: "Male",
  23757. image: {
  23758. source: "./media/characters/zenari/male.svg",
  23759. extra: 3008 / 2991,
  23760. bottom: 54.6 / 3069
  23761. }
  23762. },
  23763. },
  23764. [
  23765. {
  23766. name: "Macro",
  23767. height: math.unit(29.7, "meters"),
  23768. default: true
  23769. },
  23770. ]
  23771. ))
  23772. characterMakers.push(() => makeCharacter(
  23773. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23774. {
  23775. female: {
  23776. height: math.unit(23.8, "m"),
  23777. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23778. name: "Female",
  23779. image: {
  23780. source: "./media/characters/mactarian/female.svg",
  23781. extra: 2662 / 2569,
  23782. bottom: 73 / 2736
  23783. }
  23784. },
  23785. male: {
  23786. height: math.unit(23.8, "m"),
  23787. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23788. name: "Male",
  23789. image: {
  23790. source: "./media/characters/mactarian/male.svg",
  23791. extra: 2673 / 2600,
  23792. bottom: 76 / 2750
  23793. }
  23794. },
  23795. },
  23796. [
  23797. {
  23798. name: "Macro",
  23799. height: math.unit(23.8, "meters"),
  23800. default: true
  23801. },
  23802. ]
  23803. ))
  23804. characterMakers.push(() => makeCharacter(
  23805. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23806. {
  23807. female: {
  23808. height: math.unit(19.3, "m"),
  23809. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23810. name: "Female",
  23811. image: {
  23812. source: "./media/characters/umok/female.svg",
  23813. extra: 2186 / 2078,
  23814. bottom: 87 / 2277
  23815. }
  23816. },
  23817. male: {
  23818. height: math.unit(19.5, "m"),
  23819. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23820. name: "Male",
  23821. image: {
  23822. source: "./media/characters/umok/male.svg",
  23823. extra: 2233 / 2140,
  23824. bottom: 24.4 / 2258
  23825. }
  23826. },
  23827. },
  23828. [
  23829. {
  23830. name: "Macro",
  23831. height: math.unit(19.3, "meters"),
  23832. default: true
  23833. },
  23834. ]
  23835. ))
  23836. characterMakers.push(() => makeCharacter(
  23837. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23838. {
  23839. female: {
  23840. height: math.unit(26.15, "m"),
  23841. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23842. name: "Female",
  23843. image: {
  23844. source: "./media/characters/joraxian/female.svg",
  23845. extra: 2912 / 2824,
  23846. bottom: 36 / 2956
  23847. }
  23848. },
  23849. male: {
  23850. height: math.unit(25.4, "m"),
  23851. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23852. name: "Male",
  23853. image: {
  23854. source: "./media/characters/joraxian/male.svg",
  23855. extra: 2877 / 2721,
  23856. bottom: 82 / 2967
  23857. }
  23858. },
  23859. },
  23860. [
  23861. {
  23862. name: "Macro",
  23863. height: math.unit(26.15, "meters"),
  23864. default: true
  23865. },
  23866. ]
  23867. ))
  23868. characterMakers.push(() => makeCharacter(
  23869. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23870. {
  23871. female: {
  23872. height: math.unit(21.6, "m"),
  23873. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23874. name: "Female",
  23875. image: {
  23876. source: "./media/characters/sthara/female.svg",
  23877. extra: 2516 / 2347,
  23878. bottom: 21.5 / 2537
  23879. }
  23880. },
  23881. male: {
  23882. height: math.unit(24, "m"),
  23883. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23884. name: "Male",
  23885. image: {
  23886. source: "./media/characters/sthara/male.svg",
  23887. extra: 2732 / 2607,
  23888. bottom: 23 / 2732
  23889. }
  23890. },
  23891. },
  23892. [
  23893. {
  23894. name: "Macro",
  23895. height: math.unit(21.6, "meters"),
  23896. default: true
  23897. },
  23898. ]
  23899. ))
  23900. characterMakers.push(() => makeCharacter(
  23901. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23902. {
  23903. front: {
  23904. height: math.unit(6 + 4 / 12, "feet"),
  23905. weight: math.unit(175, "lb"),
  23906. name: "Front",
  23907. image: {
  23908. source: "./media/characters/luka-bryzant/front.svg",
  23909. extra: 311 / 289,
  23910. bottom: 4 / 315
  23911. }
  23912. },
  23913. back: {
  23914. height: math.unit(6 + 4 / 12, "feet"),
  23915. weight: math.unit(175, "lb"),
  23916. name: "Back",
  23917. image: {
  23918. source: "./media/characters/luka-bryzant/back.svg",
  23919. extra: 311 / 289,
  23920. bottom: 3.8 / 313.7
  23921. }
  23922. },
  23923. },
  23924. [
  23925. {
  23926. name: "Micro",
  23927. height: math.unit(10, "inches")
  23928. },
  23929. {
  23930. name: "Normal",
  23931. height: math.unit(6 + 4 / 12, "feet"),
  23932. default: true
  23933. },
  23934. {
  23935. name: "Large",
  23936. height: math.unit(12, "feet")
  23937. },
  23938. ]
  23939. ))
  23940. characterMakers.push(() => makeCharacter(
  23941. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23942. {
  23943. front: {
  23944. height: math.unit(5 + 7 / 12, "feet"),
  23945. weight: math.unit(185, "lb"),
  23946. name: "Front",
  23947. image: {
  23948. source: "./media/characters/aman-aquila/front.svg",
  23949. extra: 1013 / 976,
  23950. bottom: 45.6 / 1057
  23951. }
  23952. },
  23953. side: {
  23954. height: math.unit(5 + 7 / 12, "feet"),
  23955. weight: math.unit(185, "lb"),
  23956. name: "Side",
  23957. image: {
  23958. source: "./media/characters/aman-aquila/side.svg",
  23959. extra: 1054 / 1011,
  23960. bottom: 15 / 1070
  23961. }
  23962. },
  23963. back: {
  23964. height: math.unit(5 + 7 / 12, "feet"),
  23965. weight: math.unit(185, "lb"),
  23966. name: "Back",
  23967. image: {
  23968. source: "./media/characters/aman-aquila/back.svg",
  23969. extra: 1026 / 970,
  23970. bottom: 12 / 1039
  23971. }
  23972. },
  23973. head: {
  23974. height: math.unit(1.211, "feet"),
  23975. name: "Head",
  23976. image: {
  23977. source: "./media/characters/aman-aquila/head.svg",
  23978. }
  23979. },
  23980. },
  23981. [
  23982. {
  23983. name: "Minimicro",
  23984. height: math.unit(0.057, "inches")
  23985. },
  23986. {
  23987. name: "Micro",
  23988. height: math.unit(7, "inches")
  23989. },
  23990. {
  23991. name: "Mini",
  23992. height: math.unit(3 + 7 / 12, "feet")
  23993. },
  23994. {
  23995. name: "Normal",
  23996. height: math.unit(5 + 7 / 12, "feet"),
  23997. default: true
  23998. },
  23999. {
  24000. name: "Macro",
  24001. height: math.unit(157 + 7 / 12, "feet")
  24002. },
  24003. {
  24004. name: "Megamacro",
  24005. height: math.unit(1557 + 7 / 12, "feet")
  24006. },
  24007. {
  24008. name: "Gigamacro",
  24009. height: math.unit(15557 + 7 / 12, "feet")
  24010. },
  24011. ]
  24012. ))
  24013. characterMakers.push(() => makeCharacter(
  24014. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24015. {
  24016. front: {
  24017. height: math.unit(3 + 2 / 12, "inches"),
  24018. weight: math.unit(0.3, "ounces"),
  24019. name: "Front",
  24020. image: {
  24021. source: "./media/characters/hiphae/front.svg",
  24022. extra: 1931 / 1683,
  24023. bottom: 24 / 1955
  24024. }
  24025. },
  24026. },
  24027. [
  24028. {
  24029. name: "Normal",
  24030. height: math.unit(3 + 1 / 2, "inches"),
  24031. default: true
  24032. },
  24033. ]
  24034. ))
  24035. characterMakers.push(() => makeCharacter(
  24036. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24037. {
  24038. front: {
  24039. height: math.unit(5 + 10 / 12, "feet"),
  24040. weight: math.unit(165, "lb"),
  24041. name: "Front",
  24042. image: {
  24043. source: "./media/characters/nicky/front.svg",
  24044. extra: 3144 / 2886,
  24045. bottom: 45.6 / 3192
  24046. }
  24047. },
  24048. back: {
  24049. height: math.unit(5 + 10 / 12, "feet"),
  24050. weight: math.unit(165, "lb"),
  24051. name: "Back",
  24052. image: {
  24053. source: "./media/characters/nicky/back.svg",
  24054. extra: 3055 / 2804,
  24055. bottom: 28.4 / 3087
  24056. }
  24057. },
  24058. frontclothed: {
  24059. height: math.unit(5 + 10 / 12, "feet"),
  24060. weight: math.unit(165, "lb"),
  24061. name: "Front-clothed",
  24062. image: {
  24063. source: "./media/characters/nicky/front-clothed.svg",
  24064. extra: 3184.9 / 2926.9,
  24065. bottom: 86.5 / 3239.9
  24066. }
  24067. },
  24068. foot: {
  24069. height: math.unit(1.16, "feet"),
  24070. name: "Foot",
  24071. image: {
  24072. source: "./media/characters/nicky/foot.svg"
  24073. }
  24074. },
  24075. feet: {
  24076. height: math.unit(1.34, "feet"),
  24077. name: "Feet",
  24078. image: {
  24079. source: "./media/characters/nicky/feet.svg"
  24080. }
  24081. },
  24082. maw: {
  24083. height: math.unit(0.9, "feet"),
  24084. name: "Maw",
  24085. image: {
  24086. source: "./media/characters/nicky/maw.svg"
  24087. }
  24088. },
  24089. },
  24090. [
  24091. {
  24092. name: "Normal",
  24093. height: math.unit(5 + 10 / 12, "feet"),
  24094. default: true
  24095. },
  24096. {
  24097. name: "Macro",
  24098. height: math.unit(60, "feet")
  24099. },
  24100. {
  24101. name: "Megamacro",
  24102. height: math.unit(1, "mile")
  24103. },
  24104. ]
  24105. ))
  24106. characterMakers.push(() => makeCharacter(
  24107. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24108. {
  24109. side: {
  24110. height: math.unit(10, "feet"),
  24111. weight: math.unit(600, "lb"),
  24112. name: "Side",
  24113. image: {
  24114. source: "./media/characters/blair/side.svg",
  24115. bottom: 16.6 / 475,
  24116. extra: 458 / 431
  24117. }
  24118. },
  24119. },
  24120. [
  24121. {
  24122. name: "Micro",
  24123. height: math.unit(8, "inches")
  24124. },
  24125. {
  24126. name: "Normal",
  24127. height: math.unit(10, "feet"),
  24128. default: true
  24129. },
  24130. {
  24131. name: "Macro",
  24132. height: math.unit(180, "feet")
  24133. },
  24134. ]
  24135. ))
  24136. characterMakers.push(() => makeCharacter(
  24137. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24138. {
  24139. front: {
  24140. height: math.unit(5 + 4 / 12, "feet"),
  24141. weight: math.unit(125, "lb"),
  24142. name: "Front",
  24143. image: {
  24144. source: "./media/characters/fisher/front.svg",
  24145. extra: 444 / 390,
  24146. bottom: 2 / 444.8
  24147. }
  24148. },
  24149. },
  24150. [
  24151. {
  24152. name: "Micro",
  24153. height: math.unit(4, "inches")
  24154. },
  24155. {
  24156. name: "Normal",
  24157. height: math.unit(5 + 4 / 12, "feet"),
  24158. default: true
  24159. },
  24160. {
  24161. name: "Macro",
  24162. height: math.unit(100, "feet")
  24163. },
  24164. ]
  24165. ))
  24166. characterMakers.push(() => makeCharacter(
  24167. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24168. {
  24169. front: {
  24170. height: math.unit(6.71, "feet"),
  24171. weight: math.unit(200, "lb"),
  24172. capacity: math.unit(1000000, "people"),
  24173. name: "Front",
  24174. image: {
  24175. source: "./media/characters/gliss/front.svg",
  24176. extra: 2347 / 2231,
  24177. bottom: 113 / 2462
  24178. }
  24179. },
  24180. hammerspaceSize: {
  24181. height: math.unit(6.71 * 717, "feet"),
  24182. weight: math.unit(200, "lb"),
  24183. capacity: math.unit(1000000, "people"),
  24184. name: "Hammerspace Size",
  24185. image: {
  24186. source: "./media/characters/gliss/front.svg",
  24187. extra: 2347 / 2231,
  24188. bottom: 113 / 2462
  24189. }
  24190. },
  24191. },
  24192. [
  24193. {
  24194. name: "Normal",
  24195. height: math.unit(6.71, "feet"),
  24196. default: true
  24197. },
  24198. ]
  24199. ))
  24200. characterMakers.push(() => makeCharacter(
  24201. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24202. {
  24203. side: {
  24204. height: math.unit(1.44, "m"),
  24205. weight: math.unit(80, "kg"),
  24206. name: "Side",
  24207. image: {
  24208. source: "./media/characters/dune-anderson/side.svg",
  24209. bottom: 49 / 1426
  24210. }
  24211. },
  24212. },
  24213. [
  24214. {
  24215. name: "Wolf-sized",
  24216. height: math.unit(1.44, "meters")
  24217. },
  24218. {
  24219. name: "Normal",
  24220. height: math.unit(5.05, "meters"),
  24221. default: true
  24222. },
  24223. {
  24224. name: "Big",
  24225. height: math.unit(14.4, "meters")
  24226. },
  24227. {
  24228. name: "Huge",
  24229. height: math.unit(144, "meters")
  24230. },
  24231. ]
  24232. ))
  24233. characterMakers.push(() => makeCharacter(
  24234. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24235. {
  24236. front: {
  24237. height: math.unit(7, "feet"),
  24238. weight: math.unit(425, "lb"),
  24239. name: "Front",
  24240. image: {
  24241. source: "./media/characters/hind/front.svg",
  24242. extra: 2091 / 1860,
  24243. bottom: 129 / 2220
  24244. }
  24245. },
  24246. back: {
  24247. height: math.unit(7, "feet"),
  24248. weight: math.unit(425, "lb"),
  24249. name: "Back",
  24250. image: {
  24251. source: "./media/characters/hind/back.svg",
  24252. extra: 2091 / 1860,
  24253. bottom: 24.6 / 2309
  24254. }
  24255. },
  24256. tail: {
  24257. height: math.unit(2.8, "feet"),
  24258. name: "Tail",
  24259. image: {
  24260. source: "./media/characters/hind/tail.svg"
  24261. }
  24262. },
  24263. head: {
  24264. height: math.unit(2.55, "feet"),
  24265. name: "Head",
  24266. image: {
  24267. source: "./media/characters/hind/head.svg"
  24268. }
  24269. },
  24270. },
  24271. [
  24272. {
  24273. name: "XS",
  24274. height: math.unit(0.7, "feet")
  24275. },
  24276. {
  24277. name: "Normal",
  24278. height: math.unit(7, "feet"),
  24279. default: true
  24280. },
  24281. {
  24282. name: "XL",
  24283. height: math.unit(70, "feet")
  24284. },
  24285. ]
  24286. ))
  24287. characterMakers.push(() => makeCharacter(
  24288. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24289. {
  24290. front: {
  24291. height: math.unit(6, "feet"),
  24292. weight: math.unit(150, "lb"),
  24293. name: "Front",
  24294. image: {
  24295. source: "./media/characters/dylan-skaven/front.svg",
  24296. extra: 2318 / 2063,
  24297. bottom: 93.4 / 2410
  24298. }
  24299. },
  24300. },
  24301. [
  24302. {
  24303. name: "Nano",
  24304. height: math.unit(1, "mm")
  24305. },
  24306. {
  24307. name: "Micro",
  24308. height: math.unit(1, "cm")
  24309. },
  24310. {
  24311. name: "Normal",
  24312. height: math.unit(2.1, "meters"),
  24313. default: true
  24314. },
  24315. ]
  24316. ))
  24317. characterMakers.push(() => makeCharacter(
  24318. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24319. {
  24320. front: {
  24321. height: math.unit(7 + 5 / 12, "feet"),
  24322. weight: math.unit(357, "lb"),
  24323. name: "Front",
  24324. image: {
  24325. source: "./media/characters/solex-draconov/front.svg",
  24326. extra: 1993 / 1865,
  24327. bottom: 117 / 2111
  24328. }
  24329. },
  24330. },
  24331. [
  24332. {
  24333. name: "Natural Height",
  24334. height: math.unit(7 + 5 / 12, "feet"),
  24335. default: true
  24336. },
  24337. {
  24338. name: "Macro",
  24339. height: math.unit(350, "feet")
  24340. },
  24341. {
  24342. name: "Macro+",
  24343. height: math.unit(1000, "feet")
  24344. },
  24345. {
  24346. name: "Megamacro",
  24347. height: math.unit(20, "km")
  24348. },
  24349. {
  24350. name: "Megamacro+",
  24351. height: math.unit(1000, "km")
  24352. },
  24353. {
  24354. name: "Gigamacro",
  24355. height: math.unit(2.5, "Gm")
  24356. },
  24357. {
  24358. name: "Teramacro",
  24359. height: math.unit(15, "Tm")
  24360. },
  24361. {
  24362. name: "Galactic",
  24363. height: math.unit(30, "Zm")
  24364. },
  24365. {
  24366. name: "Universal",
  24367. height: math.unit(21000, "Ym")
  24368. },
  24369. {
  24370. name: "Omniversal",
  24371. height: math.unit(9.861e50, "Ym")
  24372. },
  24373. {
  24374. name: "Existential",
  24375. height: math.unit(1e300, "meters")
  24376. },
  24377. ]
  24378. ))
  24379. characterMakers.push(() => makeCharacter(
  24380. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24381. {
  24382. side: {
  24383. height: math.unit(25, "feet"),
  24384. weight: math.unit(90000, "lb"),
  24385. name: "Side",
  24386. image: {
  24387. source: "./media/characters/mandarax/side.svg",
  24388. extra: 614 / 332,
  24389. bottom: 55 / 630
  24390. }
  24391. },
  24392. head: {
  24393. height: math.unit(11.4, "feet"),
  24394. name: "Head",
  24395. image: {
  24396. source: "./media/characters/mandarax/head.svg"
  24397. }
  24398. },
  24399. belly: {
  24400. height: math.unit(33, "feet"),
  24401. name: "Belly",
  24402. capacity: math.unit(500, "people"),
  24403. image: {
  24404. source: "./media/characters/mandarax/belly.svg"
  24405. }
  24406. },
  24407. dick: {
  24408. height: math.unit(8.46, "feet"),
  24409. name: "Dick",
  24410. image: {
  24411. source: "./media/characters/mandarax/dick.svg"
  24412. }
  24413. },
  24414. top: {
  24415. height: math.unit(28, "meters"),
  24416. name: "Top",
  24417. image: {
  24418. source: "./media/characters/mandarax/top.svg"
  24419. }
  24420. },
  24421. },
  24422. [
  24423. {
  24424. name: "Normal",
  24425. height: math.unit(25, "feet"),
  24426. default: true
  24427. },
  24428. ]
  24429. ))
  24430. characterMakers.push(() => makeCharacter(
  24431. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24432. {
  24433. front: {
  24434. height: math.unit(5, "feet"),
  24435. weight: math.unit(90, "lb"),
  24436. name: "Front",
  24437. image: {
  24438. source: "./media/characters/pixil/front.svg",
  24439. extra: 2000 / 1618,
  24440. bottom: 12.3 / 2011
  24441. }
  24442. },
  24443. },
  24444. [
  24445. {
  24446. name: "Normal",
  24447. height: math.unit(5, "feet"),
  24448. default: true
  24449. },
  24450. {
  24451. name: "Megamacro",
  24452. height: math.unit(10, "miles"),
  24453. },
  24454. ]
  24455. ))
  24456. characterMakers.push(() => makeCharacter(
  24457. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24458. {
  24459. front: {
  24460. height: math.unit(7 + 2 / 12, "feet"),
  24461. weight: math.unit(200, "lb"),
  24462. name: "Front",
  24463. image: {
  24464. source: "./media/characters/angel/front.svg",
  24465. extra: 1830 / 1737,
  24466. bottom: 22.6 / 1854,
  24467. }
  24468. },
  24469. },
  24470. [
  24471. {
  24472. name: "Normal",
  24473. height: math.unit(7 + 2 / 12, "feet"),
  24474. default: true
  24475. },
  24476. {
  24477. name: "Macro",
  24478. height: math.unit(1000, "feet")
  24479. },
  24480. {
  24481. name: "Megamacro",
  24482. height: math.unit(2, "miles")
  24483. },
  24484. {
  24485. name: "Gigamacro",
  24486. height: math.unit(20, "earths")
  24487. },
  24488. ]
  24489. ))
  24490. characterMakers.push(() => makeCharacter(
  24491. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24492. {
  24493. front: {
  24494. height: math.unit(5, "feet"),
  24495. weight: math.unit(180, "lb"),
  24496. name: "Front",
  24497. image: {
  24498. source: "./media/characters/mekana/front.svg",
  24499. extra: 1671 / 1605,
  24500. bottom: 3.5 / 1691
  24501. }
  24502. },
  24503. side: {
  24504. height: math.unit(5, "feet"),
  24505. weight: math.unit(180, "lb"),
  24506. name: "Side",
  24507. image: {
  24508. source: "./media/characters/mekana/side.svg",
  24509. extra: 1671 / 1605,
  24510. bottom: 3.5 / 1691
  24511. }
  24512. },
  24513. back: {
  24514. height: math.unit(5, "feet"),
  24515. weight: math.unit(180, "lb"),
  24516. name: "Back",
  24517. image: {
  24518. source: "./media/characters/mekana/back.svg",
  24519. extra: 1671 / 1605,
  24520. bottom: 3.5 / 1691
  24521. }
  24522. },
  24523. },
  24524. [
  24525. {
  24526. name: "Normal",
  24527. height: math.unit(5, "feet"),
  24528. default: true
  24529. },
  24530. ]
  24531. ))
  24532. characterMakers.push(() => makeCharacter(
  24533. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24534. {
  24535. front: {
  24536. height: math.unit(4 + 6 / 12, "feet"),
  24537. weight: math.unit(80, "lb"),
  24538. name: "Front",
  24539. image: {
  24540. source: "./media/characters/pixie/front.svg",
  24541. extra: 1924 / 1825,
  24542. bottom: 22.4 / 1946
  24543. }
  24544. },
  24545. },
  24546. [
  24547. {
  24548. name: "Normal",
  24549. height: math.unit(4 + 6 / 12, "feet"),
  24550. default: true
  24551. },
  24552. {
  24553. name: "Macro",
  24554. height: math.unit(40, "feet")
  24555. },
  24556. ]
  24557. ))
  24558. characterMakers.push(() => makeCharacter(
  24559. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24560. {
  24561. front: {
  24562. height: math.unit(2.1, "meters"),
  24563. weight: math.unit(200, "lb"),
  24564. name: "Front",
  24565. image: {
  24566. source: "./media/characters/the-lascivious/front.svg",
  24567. extra: 1 / 0.893,
  24568. bottom: 3.5 / 573.7
  24569. }
  24570. },
  24571. },
  24572. [
  24573. {
  24574. name: "Human Scale",
  24575. height: math.unit(2.1, "meters")
  24576. },
  24577. {
  24578. name: "Wolxi Scale",
  24579. height: math.unit(46.2, "m"),
  24580. default: true
  24581. },
  24582. {
  24583. name: "Boinker of Buildings",
  24584. height: math.unit(10, "km")
  24585. },
  24586. {
  24587. name: "Shagger of Skyscrapers",
  24588. height: math.unit(40, "km")
  24589. },
  24590. {
  24591. name: "Banger of Boroughs",
  24592. height: math.unit(4000, "km")
  24593. },
  24594. {
  24595. name: "Screwer of States",
  24596. height: math.unit(100000, "km")
  24597. },
  24598. {
  24599. name: "Pounder of Planets",
  24600. height: math.unit(2000000, "km")
  24601. },
  24602. ]
  24603. ))
  24604. characterMakers.push(() => makeCharacter(
  24605. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24606. {
  24607. front: {
  24608. height: math.unit(6, "feet"),
  24609. weight: math.unit(150, "lb"),
  24610. name: "Front",
  24611. image: {
  24612. source: "./media/characters/aj/front.svg",
  24613. extra: 2039 / 1562,
  24614. bottom: 40 / 2079
  24615. }
  24616. },
  24617. },
  24618. [
  24619. {
  24620. name: "Normal",
  24621. height: math.unit(11 + 6 / 12, "feet"),
  24622. default: true
  24623. },
  24624. {
  24625. name: "Megamacro",
  24626. height: math.unit(60, "megameters")
  24627. },
  24628. ]
  24629. ))
  24630. characterMakers.push(() => makeCharacter(
  24631. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24632. {
  24633. side: {
  24634. height: math.unit(31 + 8 / 12, "feet"),
  24635. weight: math.unit(75000, "kg"),
  24636. name: "Side",
  24637. image: {
  24638. source: "./media/characters/koros/side.svg",
  24639. extra: 1442 / 1297,
  24640. bottom: 122.7 / 1562
  24641. }
  24642. },
  24643. dicksKingsCrown: {
  24644. height: math.unit(6, "feet"),
  24645. name: "Dicks (King's Crown)",
  24646. image: {
  24647. source: "./media/characters/koros/dicks-kings-crown.svg"
  24648. }
  24649. },
  24650. dicksTailSet: {
  24651. height: math.unit(3, "feet"),
  24652. name: "Dicks (Tail Set)",
  24653. image: {
  24654. source: "./media/characters/koros/dicks-tail-set.svg"
  24655. }
  24656. },
  24657. dickCumming: {
  24658. height: math.unit(7.98, "feet"),
  24659. name: "Dick (Cumming)",
  24660. image: {
  24661. source: "./media/characters/koros/dick-cumming.svg"
  24662. }
  24663. },
  24664. dicksBack: {
  24665. height: math.unit(5.9, "feet"),
  24666. name: "Dicks (Back)",
  24667. image: {
  24668. source: "./media/characters/koros/dicks-back.svg"
  24669. }
  24670. },
  24671. dicksFront: {
  24672. height: math.unit(3.72, "feet"),
  24673. name: "Dicks (Front)",
  24674. image: {
  24675. source: "./media/characters/koros/dicks-front.svg"
  24676. }
  24677. },
  24678. dicksPeeking: {
  24679. height: math.unit(3.0, "feet"),
  24680. name: "Dicks (Peeking)",
  24681. image: {
  24682. source: "./media/characters/koros/dicks-peeking.svg"
  24683. }
  24684. },
  24685. eye: {
  24686. height: math.unit(1.7, "feet"),
  24687. name: "Eye",
  24688. image: {
  24689. source: "./media/characters/koros/eye.svg"
  24690. }
  24691. },
  24692. headFront: {
  24693. height: math.unit(11.69, "feet"),
  24694. name: "Head (Front)",
  24695. image: {
  24696. source: "./media/characters/koros/head-front.svg"
  24697. }
  24698. },
  24699. headSide: {
  24700. height: math.unit(14, "feet"),
  24701. name: "Head (Side)",
  24702. image: {
  24703. source: "./media/characters/koros/head-side.svg"
  24704. }
  24705. },
  24706. leg: {
  24707. height: math.unit(17, "feet"),
  24708. name: "Leg",
  24709. image: {
  24710. source: "./media/characters/koros/leg.svg"
  24711. }
  24712. },
  24713. mawSide: {
  24714. height: math.unit(12.8, "feet"),
  24715. name: "Maw (Side)",
  24716. image: {
  24717. source: "./media/characters/koros/maw-side.svg"
  24718. }
  24719. },
  24720. mawSpitting: {
  24721. height: math.unit(17, "feet"),
  24722. name: "Maw (Spitting)",
  24723. image: {
  24724. source: "./media/characters/koros/maw-spitting.svg"
  24725. }
  24726. },
  24727. slit: {
  24728. height: math.unit(2.8, "feet"),
  24729. name: "Slit",
  24730. image: {
  24731. source: "./media/characters/koros/slit.svg"
  24732. }
  24733. },
  24734. stomach: {
  24735. height: math.unit(6.8, "feet"),
  24736. capacity: math.unit(20, "people"),
  24737. name: "Stomach",
  24738. image: {
  24739. source: "./media/characters/koros/stomach.svg"
  24740. }
  24741. },
  24742. wingspanBottom: {
  24743. height: math.unit(114, "feet"),
  24744. name: "Wingspan (Bottom)",
  24745. image: {
  24746. source: "./media/characters/koros/wingspan-bottom.svg"
  24747. }
  24748. },
  24749. wingspanTop: {
  24750. height: math.unit(104, "feet"),
  24751. name: "Wingspan (Top)",
  24752. image: {
  24753. source: "./media/characters/koros/wingspan-top.svg"
  24754. }
  24755. },
  24756. },
  24757. [
  24758. {
  24759. name: "Normal",
  24760. height: math.unit(31 + 8 / 12, "feet"),
  24761. default: true
  24762. },
  24763. ]
  24764. ))
  24765. characterMakers.push(() => makeCharacter(
  24766. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24767. {
  24768. front: {
  24769. height: math.unit(18 + 5 / 12, "feet"),
  24770. weight: math.unit(3750, "kg"),
  24771. name: "Front",
  24772. image: {
  24773. source: "./media/characters/vexx/front.svg",
  24774. extra: 426 / 396,
  24775. bottom: 31.5 / 458
  24776. }
  24777. },
  24778. maw: {
  24779. height: math.unit(6, "feet"),
  24780. name: "Maw",
  24781. image: {
  24782. source: "./media/characters/vexx/maw.svg"
  24783. }
  24784. },
  24785. },
  24786. [
  24787. {
  24788. name: "Normal",
  24789. height: math.unit(18 + 5 / 12, "feet"),
  24790. default: true
  24791. },
  24792. ]
  24793. ))
  24794. characterMakers.push(() => makeCharacter(
  24795. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24796. {
  24797. front: {
  24798. height: math.unit(17 + 6 / 12, "feet"),
  24799. weight: math.unit(150, "lb"),
  24800. name: "Front",
  24801. image: {
  24802. source: "./media/characters/baadra/front.svg",
  24803. extra: 3137 / 2890,
  24804. bottom: 168.4 / 3305
  24805. }
  24806. },
  24807. back: {
  24808. height: math.unit(17 + 6 / 12, "feet"),
  24809. weight: math.unit(150, "lb"),
  24810. name: "Back",
  24811. image: {
  24812. source: "./media/characters/baadra/back.svg",
  24813. extra: 3142 / 2890,
  24814. bottom: 220 / 3371
  24815. }
  24816. },
  24817. head: {
  24818. height: math.unit(5.45, "feet"),
  24819. name: "Head",
  24820. image: {
  24821. source: "./media/characters/baadra/head.svg"
  24822. }
  24823. },
  24824. headAngry: {
  24825. height: math.unit(4.95, "feet"),
  24826. name: "Head (Angry)",
  24827. image: {
  24828. source: "./media/characters/baadra/head-angry.svg"
  24829. }
  24830. },
  24831. headOpen: {
  24832. height: math.unit(6, "feet"),
  24833. name: "Head (Open)",
  24834. image: {
  24835. source: "./media/characters/baadra/head-open.svg"
  24836. }
  24837. },
  24838. },
  24839. [
  24840. {
  24841. name: "Normal",
  24842. height: math.unit(17 + 6 / 12, "feet"),
  24843. default: true
  24844. },
  24845. ]
  24846. ))
  24847. characterMakers.push(() => makeCharacter(
  24848. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24849. {
  24850. front: {
  24851. height: math.unit(7 + 3 / 12, "feet"),
  24852. weight: math.unit(180, "lb"),
  24853. name: "Front",
  24854. image: {
  24855. source: "./media/characters/juri/front.svg",
  24856. extra: 1401 / 1237,
  24857. bottom: 18.5 / 1418
  24858. }
  24859. },
  24860. side: {
  24861. height: math.unit(7 + 3 / 12, "feet"),
  24862. weight: math.unit(180, "lb"),
  24863. name: "Side",
  24864. image: {
  24865. source: "./media/characters/juri/side.svg",
  24866. extra: 1424 / 1242,
  24867. bottom: 18.5 / 1447
  24868. }
  24869. },
  24870. sitting: {
  24871. height: math.unit(6, "feet"),
  24872. weight: math.unit(180, "lb"),
  24873. name: "Sitting",
  24874. image: {
  24875. source: "./media/characters/juri/sitting.svg",
  24876. extra: 1270 / 1143,
  24877. bottom: 100 / 1343
  24878. }
  24879. },
  24880. back: {
  24881. height: math.unit(7 + 3 / 12, "feet"),
  24882. weight: math.unit(180, "lb"),
  24883. name: "Back",
  24884. image: {
  24885. source: "./media/characters/juri/back.svg",
  24886. extra: 1377 / 1240,
  24887. bottom: 23.7 / 1405
  24888. }
  24889. },
  24890. maw: {
  24891. height: math.unit(2.8, "feet"),
  24892. name: "Maw",
  24893. image: {
  24894. source: "./media/characters/juri/maw.svg"
  24895. }
  24896. },
  24897. stomach: {
  24898. height: math.unit(0.89, "feet"),
  24899. capacity: math.unit(4, "liters"),
  24900. name: "Stomach",
  24901. image: {
  24902. source: "./media/characters/juri/stomach.svg"
  24903. }
  24904. },
  24905. },
  24906. [
  24907. {
  24908. name: "Normal",
  24909. height: math.unit(7 + 3 / 12, "feet"),
  24910. default: true
  24911. },
  24912. ]
  24913. ))
  24914. characterMakers.push(() => makeCharacter(
  24915. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  24916. {
  24917. fox: {
  24918. height: math.unit(5 + 6 / 12, "feet"),
  24919. weight: math.unit(140, "lb"),
  24920. name: "Fox",
  24921. image: {
  24922. source: "./media/characters/maxene-sita/fox.svg",
  24923. extra: 146 / 138,
  24924. bottom: 2.1 / 148.19
  24925. }
  24926. },
  24927. foxLaying: {
  24928. height: math.unit(1.70, "feet"),
  24929. weight: math.unit(140, "lb"),
  24930. name: "Fox (Laying)",
  24931. image: {
  24932. source: "./media/characters/maxene-sita/fox-laying.svg",
  24933. extra: 910 / 572,
  24934. bottom: 71 / 981
  24935. }
  24936. },
  24937. kitsune: {
  24938. height: math.unit(10, "feet"),
  24939. weight: math.unit(800, "lb"),
  24940. name: "Kitsune",
  24941. image: {
  24942. source: "./media/characters/maxene-sita/kitsune.svg",
  24943. extra: 185 / 176,
  24944. bottom: 4.7 / 189.9
  24945. }
  24946. },
  24947. hellhound: {
  24948. height: math.unit(10, "feet"),
  24949. weight: math.unit(700, "lb"),
  24950. name: "Hellhound",
  24951. image: {
  24952. source: "./media/characters/maxene-sita/hellhound.svg",
  24953. extra: 1600 / 1545,
  24954. bottom: 81 / 1681
  24955. }
  24956. },
  24957. },
  24958. [
  24959. {
  24960. name: "Normal",
  24961. height: math.unit(5 + 6 / 12, "feet"),
  24962. default: true
  24963. },
  24964. ]
  24965. ))
  24966. characterMakers.push(() => makeCharacter(
  24967. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24968. {
  24969. front: {
  24970. height: math.unit(3 + 4 / 12, "feet"),
  24971. weight: math.unit(70, "lb"),
  24972. name: "Front",
  24973. image: {
  24974. source: "./media/characters/maia/front.svg",
  24975. extra: 227 / 219.5,
  24976. bottom: 40 / 267
  24977. }
  24978. },
  24979. back: {
  24980. height: math.unit(3 + 4 / 12, "feet"),
  24981. weight: math.unit(70, "lb"),
  24982. name: "Back",
  24983. image: {
  24984. source: "./media/characters/maia/back.svg",
  24985. extra: 237 / 225
  24986. }
  24987. },
  24988. },
  24989. [
  24990. {
  24991. name: "Normal",
  24992. height: math.unit(3 + 4 / 12, "feet"),
  24993. default: true
  24994. },
  24995. ]
  24996. ))
  24997. characterMakers.push(() => makeCharacter(
  24998. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24999. {
  25000. front: {
  25001. height: math.unit(5 + 10 / 12, "feet"),
  25002. weight: math.unit(197, "lb"),
  25003. name: "Front",
  25004. image: {
  25005. source: "./media/characters/jabaro/front.svg",
  25006. extra: 225 / 216,
  25007. bottom: 5.06 / 230
  25008. }
  25009. },
  25010. back: {
  25011. height: math.unit(5 + 10 / 12, "feet"),
  25012. weight: math.unit(197, "lb"),
  25013. name: "Back",
  25014. image: {
  25015. source: "./media/characters/jabaro/back.svg",
  25016. extra: 225 / 219,
  25017. bottom: 1.9 / 227
  25018. }
  25019. },
  25020. },
  25021. [
  25022. {
  25023. name: "Normal",
  25024. height: math.unit(5 + 10 / 12, "feet"),
  25025. default: true
  25026. },
  25027. ]
  25028. ))
  25029. characterMakers.push(() => makeCharacter(
  25030. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25031. {
  25032. front: {
  25033. height: math.unit(5 + 8 / 12, "feet"),
  25034. weight: math.unit(139, "lb"),
  25035. name: "Front",
  25036. image: {
  25037. source: "./media/characters/risa/front.svg",
  25038. extra: 270 / 260,
  25039. bottom: 11.2 / 282
  25040. }
  25041. },
  25042. back: {
  25043. height: math.unit(5 + 8 / 12, "feet"),
  25044. weight: math.unit(139, "lb"),
  25045. name: "Back",
  25046. image: {
  25047. source: "./media/characters/risa/back.svg",
  25048. extra: 264 / 255,
  25049. bottom: 4 / 268
  25050. }
  25051. },
  25052. },
  25053. [
  25054. {
  25055. name: "Normal",
  25056. height: math.unit(5 + 8 / 12, "feet"),
  25057. default: true
  25058. },
  25059. ]
  25060. ))
  25061. characterMakers.push(() => makeCharacter(
  25062. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25063. {
  25064. front: {
  25065. height: math.unit(2 + 11 / 12, "feet"),
  25066. weight: math.unit(30, "lb"),
  25067. name: "Front",
  25068. image: {
  25069. source: "./media/characters/weatley/front.svg",
  25070. bottom: 10.7 / 414,
  25071. extra: 403.5 / 362
  25072. }
  25073. },
  25074. back: {
  25075. height: math.unit(2 + 11 / 12, "feet"),
  25076. weight: math.unit(30, "lb"),
  25077. name: "Back",
  25078. image: {
  25079. source: "./media/characters/weatley/back.svg",
  25080. bottom: 10.7 / 414,
  25081. extra: 403.5 / 362
  25082. }
  25083. },
  25084. },
  25085. [
  25086. {
  25087. name: "Normal",
  25088. height: math.unit(2 + 11 / 12, "feet"),
  25089. default: true
  25090. },
  25091. ]
  25092. ))
  25093. characterMakers.push(() => makeCharacter(
  25094. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25095. {
  25096. front: {
  25097. height: math.unit(5 + 2 / 12, "feet"),
  25098. weight: math.unit(50, "kg"),
  25099. name: "Front",
  25100. image: {
  25101. source: "./media/characters/mercury-crescent/front.svg",
  25102. extra: 1088 / 1033,
  25103. bottom: 18.9 / 1109
  25104. }
  25105. },
  25106. },
  25107. [
  25108. {
  25109. name: "Normal",
  25110. height: math.unit(5 + 2 / 12, "feet"),
  25111. default: true
  25112. },
  25113. ]
  25114. ))
  25115. characterMakers.push(() => makeCharacter(
  25116. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25117. {
  25118. front: {
  25119. height: math.unit(2, "feet"),
  25120. weight: math.unit(15, "kg"),
  25121. name: "Front",
  25122. image: {
  25123. source: "./media/characters/diamond-jones/front.svg",
  25124. bottom: 16 / 568
  25125. }
  25126. },
  25127. },
  25128. [
  25129. {
  25130. name: "Normal",
  25131. height: math.unit(2, "feet"),
  25132. default: true
  25133. },
  25134. ]
  25135. ))
  25136. characterMakers.push(() => makeCharacter(
  25137. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25138. {
  25139. front: {
  25140. height: math.unit(3, "feet"),
  25141. weight: math.unit(30, "kg"),
  25142. name: "Front",
  25143. image: {
  25144. source: "./media/characters/sweet-bit/front.svg",
  25145. extra: 675 / 567,
  25146. bottom: 27.7 / 703
  25147. }
  25148. },
  25149. },
  25150. [
  25151. {
  25152. name: "Normal",
  25153. height: math.unit(3, "feet"),
  25154. default: true
  25155. },
  25156. ]
  25157. ))
  25158. characterMakers.push(() => makeCharacter(
  25159. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25160. {
  25161. side: {
  25162. height: math.unit(9.178, "feet"),
  25163. weight: math.unit(500, "lb"),
  25164. name: "Side",
  25165. image: {
  25166. source: "./media/characters/umbrazen/side.svg",
  25167. extra: 1730 / 1473,
  25168. bottom: 34.6 / 1765
  25169. }
  25170. },
  25171. },
  25172. [
  25173. {
  25174. name: "Normal",
  25175. height: math.unit(9.178, "feet"),
  25176. default: true
  25177. },
  25178. ]
  25179. ))
  25180. characterMakers.push(() => makeCharacter(
  25181. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25182. {
  25183. front: {
  25184. height: math.unit(10, "feet"),
  25185. weight: math.unit(750, "lb"),
  25186. name: "Front",
  25187. image: {
  25188. source: "./media/characters/arlist/front.svg",
  25189. extra: 961 / 778,
  25190. bottom: 6.2 / 986
  25191. }
  25192. },
  25193. },
  25194. [
  25195. {
  25196. name: "Normal",
  25197. height: math.unit(10, "feet"),
  25198. default: true
  25199. },
  25200. ]
  25201. ))
  25202. characterMakers.push(() => makeCharacter(
  25203. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25204. {
  25205. front: {
  25206. height: math.unit(5 + 1 / 12, "feet"),
  25207. weight: math.unit(110, "lb"),
  25208. name: "Front",
  25209. image: {
  25210. source: "./media/characters/aradel/front.svg",
  25211. extra: 324 / 303,
  25212. bottom: 3.6 / 329.4
  25213. }
  25214. },
  25215. },
  25216. [
  25217. {
  25218. name: "Normal",
  25219. height: math.unit(5 + 1 / 12, "feet"),
  25220. default: true
  25221. },
  25222. ]
  25223. ))
  25224. characterMakers.push(() => makeCharacter(
  25225. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25226. {
  25227. front: {
  25228. height: math.unit(3 + 8 / 12, "feet"),
  25229. weight: math.unit(50, "lb"),
  25230. name: "Front",
  25231. image: {
  25232. source: "./media/characters/serryn/front.svg",
  25233. extra: 1792 / 1656,
  25234. bottom: 43.5 / 1840
  25235. }
  25236. },
  25237. },
  25238. [
  25239. {
  25240. name: "Normal",
  25241. height: math.unit(3 + 8 / 12, "feet"),
  25242. default: true
  25243. },
  25244. ]
  25245. ))
  25246. characterMakers.push(() => makeCharacter(
  25247. { name: "Xavier Thyme" },
  25248. {
  25249. front: {
  25250. height: math.unit(7 + 10 / 12, "feet"),
  25251. weight: math.unit(255, "lb"),
  25252. name: "Front",
  25253. image: {
  25254. source: "./media/characters/xavier-thyme/front.svg",
  25255. extra: 3733 / 3642,
  25256. bottom: 131 / 3869
  25257. }
  25258. },
  25259. frontRaven: {
  25260. height: math.unit(7 + 10 / 12, "feet"),
  25261. weight: math.unit(255, "lb"),
  25262. name: "Front (Raven)",
  25263. image: {
  25264. source: "./media/characters/xavier-thyme/front-raven.svg",
  25265. extra: 4385 / 3642,
  25266. bottom: 131 / 4517
  25267. }
  25268. },
  25269. },
  25270. [
  25271. {
  25272. name: "Normal",
  25273. height: math.unit(7 + 10 / 12, "feet"),
  25274. default: true
  25275. },
  25276. ]
  25277. ))
  25278. characterMakers.push(() => makeCharacter(
  25279. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25280. {
  25281. front: {
  25282. height: math.unit(1.6, "m"),
  25283. weight: math.unit(50, "kg"),
  25284. name: "Front",
  25285. image: {
  25286. source: "./media/characters/kiki/front.svg",
  25287. extra: 4682 / 3610,
  25288. bottom: 115 / 4777
  25289. }
  25290. },
  25291. },
  25292. [
  25293. {
  25294. name: "Normal",
  25295. height: math.unit(1.6, "meters"),
  25296. default: true
  25297. },
  25298. ]
  25299. ))
  25300. characterMakers.push(() => makeCharacter(
  25301. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25302. {
  25303. front: {
  25304. height: math.unit(50, "m"),
  25305. weight: math.unit(500, "tonnes"),
  25306. name: "Front",
  25307. image: {
  25308. source: "./media/characters/ryoko/front.svg",
  25309. extra: 4632 / 3926,
  25310. bottom: 193 / 4823
  25311. }
  25312. },
  25313. },
  25314. [
  25315. {
  25316. name: "Normal",
  25317. height: math.unit(50, "meters"),
  25318. default: true
  25319. },
  25320. ]
  25321. ))
  25322. characterMakers.push(() => makeCharacter(
  25323. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25324. {
  25325. front: {
  25326. height: math.unit(30, "m"),
  25327. weight: math.unit(22, "tonnes"),
  25328. name: "Front",
  25329. image: {
  25330. source: "./media/characters/elio/front.svg",
  25331. extra: 4582 / 3720,
  25332. bottom: 236 / 4828
  25333. }
  25334. },
  25335. },
  25336. [
  25337. {
  25338. name: "Normal",
  25339. height: math.unit(30, "meters"),
  25340. default: true
  25341. },
  25342. ]
  25343. ))
  25344. characterMakers.push(() => makeCharacter(
  25345. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25346. {
  25347. front: {
  25348. height: math.unit(6 + 3 / 12, "feet"),
  25349. weight: math.unit(120, "lb"),
  25350. name: "Front",
  25351. image: {
  25352. source: "./media/characters/azura/front.svg",
  25353. extra: 1149 / 1135,
  25354. bottom: 45 / 1194
  25355. }
  25356. },
  25357. frontClothed: {
  25358. height: math.unit(6 + 3 / 12, "feet"),
  25359. weight: math.unit(120, "lb"),
  25360. name: "Front (Clothed)",
  25361. image: {
  25362. source: "./media/characters/azura/front-clothed.svg",
  25363. extra: 1149 / 1135,
  25364. bottom: 45 / 1194
  25365. }
  25366. },
  25367. },
  25368. [
  25369. {
  25370. name: "Normal",
  25371. height: math.unit(6 + 3 / 12, "feet"),
  25372. default: true
  25373. },
  25374. {
  25375. name: "Macro",
  25376. height: math.unit(20 + 6 / 12, "feet")
  25377. },
  25378. {
  25379. name: "Megamacro",
  25380. height: math.unit(12, "miles")
  25381. },
  25382. {
  25383. name: "Gigamacro",
  25384. height: math.unit(10000, "miles")
  25385. },
  25386. {
  25387. name: "Teramacro",
  25388. height: math.unit(900000, "miles")
  25389. },
  25390. ]
  25391. ))
  25392. characterMakers.push(() => makeCharacter(
  25393. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25394. {
  25395. front: {
  25396. height: math.unit(12, "feet"),
  25397. weight: math.unit(1, "ton"),
  25398. capacity: math.unit(660000, "gallons"),
  25399. name: "Front",
  25400. image: {
  25401. source: "./media/characters/zeus/front.svg",
  25402. extra: 5005 / 4717,
  25403. bottom: 363 / 5388
  25404. }
  25405. },
  25406. },
  25407. [
  25408. {
  25409. name: "Normal",
  25410. height: math.unit(12, "feet")
  25411. },
  25412. {
  25413. name: "Preferred Size",
  25414. height: math.unit(0.5, "miles"),
  25415. default: true
  25416. },
  25417. {
  25418. name: "Giga Horse",
  25419. height: math.unit(300, "miles")
  25420. },
  25421. {
  25422. name: "Riding Planets",
  25423. height: math.unit(30, "megameters")
  25424. },
  25425. {
  25426. name: "Cosmic Giant",
  25427. height: math.unit(3, "zettameters")
  25428. },
  25429. {
  25430. name: "Breeding God",
  25431. height: math.unit(9.92e22, "yottameters")
  25432. },
  25433. ]
  25434. ))
  25435. characterMakers.push(() => makeCharacter(
  25436. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25437. {
  25438. side: {
  25439. height: math.unit(9, "feet"),
  25440. weight: math.unit(1500, "kg"),
  25441. name: "Side",
  25442. image: {
  25443. source: "./media/characters/fang/side.svg",
  25444. extra: 924 / 866,
  25445. bottom: 47.5 / 972.3
  25446. }
  25447. },
  25448. },
  25449. [
  25450. {
  25451. name: "Normal",
  25452. height: math.unit(9, "feet"),
  25453. default: true
  25454. },
  25455. {
  25456. name: "Macro",
  25457. height: math.unit(75 + 6 / 12, "feet")
  25458. },
  25459. {
  25460. name: "Teramacro",
  25461. height: math.unit(50000, "miles")
  25462. },
  25463. ]
  25464. ))
  25465. characterMakers.push(() => makeCharacter(
  25466. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25467. {
  25468. front: {
  25469. height: math.unit(10, "feet"),
  25470. weight: math.unit(2, "tons"),
  25471. name: "Front",
  25472. image: {
  25473. source: "./media/characters/rekhit/front.svg",
  25474. extra: 2796 / 2590,
  25475. bottom: 225 / 3022
  25476. }
  25477. },
  25478. },
  25479. [
  25480. {
  25481. name: "Normal",
  25482. height: math.unit(10, "feet"),
  25483. default: true
  25484. },
  25485. {
  25486. name: "Macro",
  25487. height: math.unit(500, "feet")
  25488. },
  25489. ]
  25490. ))
  25491. characterMakers.push(() => makeCharacter(
  25492. { name: "Dahlia Verrick" },
  25493. {
  25494. front: {
  25495. height: math.unit(7 + 6.451 / 12, "feet"),
  25496. weight: math.unit(310, "lb"),
  25497. name: "Front",
  25498. image: {
  25499. source: "./media/characters/dahlia-verrick/front.svg",
  25500. extra: 1488 / 1365,
  25501. bottom: 6.2 / 1495
  25502. }
  25503. },
  25504. back: {
  25505. height: math.unit(7 + 6.451 / 12, "feet"),
  25506. weight: math.unit(310, "lb"),
  25507. name: "Back",
  25508. image: {
  25509. source: "./media/characters/dahlia-verrick/back.svg",
  25510. extra: 1472 / 1351,
  25511. bottom: 5.28 / 1477
  25512. }
  25513. },
  25514. frontBusiness: {
  25515. height: math.unit(7 + 6.451 / 12, "feet"),
  25516. weight: math.unit(200, "lb"),
  25517. name: "Front (Business)",
  25518. image: {
  25519. source: "./media/characters/dahlia-verrick/front-business.svg",
  25520. extra: 1478 / 1381,
  25521. bottom: 5.5 / 1484
  25522. }
  25523. },
  25524. frontCasual: {
  25525. height: math.unit(7 + 6.451 / 12, "feet"),
  25526. weight: math.unit(200, "lb"),
  25527. name: "Front (Casual)",
  25528. image: {
  25529. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25530. extra: 1478 / 1381,
  25531. bottom: 5.5 / 1484
  25532. }
  25533. },
  25534. },
  25535. [
  25536. {
  25537. name: "Travel-Sized",
  25538. height: math.unit(7.45, "inches")
  25539. },
  25540. {
  25541. name: "Normal",
  25542. height: math.unit(7 + 6.451 / 12, "feet"),
  25543. default: true
  25544. },
  25545. {
  25546. name: "Hitting the Town",
  25547. height: math.unit(37 + 8 / 12, "feet")
  25548. },
  25549. {
  25550. name: "Stomp in the Suburbs",
  25551. height: math.unit(964 + 9.728 / 12, "feet")
  25552. },
  25553. {
  25554. name: "Sit on the City",
  25555. height: math.unit(61747 + 10.592 / 12, "feet")
  25556. },
  25557. {
  25558. name: "Glomp the Globe",
  25559. height: math.unit(252919327 + 4.832 / 12, "feet")
  25560. },
  25561. ]
  25562. ))
  25563. characterMakers.push(() => makeCharacter(
  25564. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25565. {
  25566. front: {
  25567. height: math.unit(6 + 4 / 12, "feet"),
  25568. weight: math.unit(320, "lb"),
  25569. name: "Front",
  25570. image: {
  25571. source: "./media/characters/balina-mahigan/front.svg",
  25572. extra: 447 / 428,
  25573. bottom: 18 / 466
  25574. }
  25575. },
  25576. back: {
  25577. height: math.unit(6 + 4 / 12, "feet"),
  25578. weight: math.unit(320, "lb"),
  25579. name: "Back",
  25580. image: {
  25581. source: "./media/characters/balina-mahigan/back.svg",
  25582. extra: 445 / 428,
  25583. bottom: 4.07 / 448
  25584. }
  25585. },
  25586. arm: {
  25587. height: math.unit(1.88, "feet"),
  25588. name: "Arm",
  25589. image: {
  25590. source: "./media/characters/balina-mahigan/arm.svg"
  25591. }
  25592. },
  25593. backPort: {
  25594. height: math.unit(0.685, "feet"),
  25595. name: "Back Port",
  25596. image: {
  25597. source: "./media/characters/balina-mahigan/back-port.svg"
  25598. }
  25599. },
  25600. hoofpaw: {
  25601. height: math.unit(1.41, "feet"),
  25602. name: "Hoofpaw",
  25603. image: {
  25604. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25605. }
  25606. },
  25607. leftHandBack: {
  25608. height: math.unit(0.938, "feet"),
  25609. name: "Left Hand (Back)",
  25610. image: {
  25611. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25612. }
  25613. },
  25614. leftHandFront: {
  25615. height: math.unit(0.938, "feet"),
  25616. name: "Left Hand (Front)",
  25617. image: {
  25618. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25619. }
  25620. },
  25621. rightHandBack: {
  25622. height: math.unit(0.95, "feet"),
  25623. name: "Right Hand (Back)",
  25624. image: {
  25625. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25626. }
  25627. },
  25628. rightHandFront: {
  25629. height: math.unit(0.95, "feet"),
  25630. name: "Right Hand (Front)",
  25631. image: {
  25632. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25633. }
  25634. },
  25635. },
  25636. [
  25637. {
  25638. name: "Normal",
  25639. height: math.unit(6 + 4 / 12, "feet"),
  25640. default: true
  25641. },
  25642. ]
  25643. ))
  25644. characterMakers.push(() => makeCharacter(
  25645. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25646. {
  25647. front: {
  25648. height: math.unit(6, "feet"),
  25649. weight: math.unit(320, "lb"),
  25650. name: "Front",
  25651. image: {
  25652. source: "./media/characters/balina-mejeri/front.svg",
  25653. extra: 517 / 488,
  25654. bottom: 44.2 / 561
  25655. }
  25656. },
  25657. },
  25658. [
  25659. {
  25660. name: "Normal",
  25661. height: math.unit(6 + 4 / 12, "feet")
  25662. },
  25663. {
  25664. name: "Business",
  25665. height: math.unit(155, "feet"),
  25666. default: true
  25667. },
  25668. ]
  25669. ))
  25670. characterMakers.push(() => makeCharacter(
  25671. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25672. {
  25673. kneeling: {
  25674. height: math.unit(6 + 4 / 12, "feet"),
  25675. weight: math.unit(300 * 20, "lb"),
  25676. name: "Kneeling",
  25677. image: {
  25678. source: "./media/characters/balbarian/kneeling.svg",
  25679. extra: 922 / 862,
  25680. bottom: 42.4 / 965
  25681. }
  25682. },
  25683. },
  25684. [
  25685. {
  25686. name: "Normal",
  25687. height: math.unit(6 + 4 / 12, "feet")
  25688. },
  25689. {
  25690. name: "Treasured",
  25691. height: math.unit(18 + 9 / 12, "feet"),
  25692. default: true
  25693. },
  25694. {
  25695. name: "Macro",
  25696. height: math.unit(900, "feet")
  25697. },
  25698. ]
  25699. ))
  25700. characterMakers.push(() => makeCharacter(
  25701. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25702. {
  25703. front: {
  25704. height: math.unit(6 + 4 / 12, "feet"),
  25705. weight: math.unit(325, "lb"),
  25706. name: "Front",
  25707. image: {
  25708. source: "./media/characters/balina-amarini/front.svg",
  25709. extra: 415 / 403,
  25710. bottom: 19 / 433.4
  25711. }
  25712. },
  25713. back: {
  25714. height: math.unit(6 + 4 / 12, "feet"),
  25715. weight: math.unit(325, "lb"),
  25716. name: "Back",
  25717. image: {
  25718. source: "./media/characters/balina-amarini/back.svg",
  25719. extra: 415 / 403,
  25720. bottom: 13.5 / 432
  25721. }
  25722. },
  25723. overdrive: {
  25724. height: math.unit(6 + 4 / 12, "feet"),
  25725. weight: math.unit(400, "lb"),
  25726. name: "Overdrive",
  25727. image: {
  25728. source: "./media/characters/balina-amarini/overdrive.svg",
  25729. extra: 269 / 259,
  25730. bottom: 12 / 282
  25731. }
  25732. },
  25733. },
  25734. [
  25735. {
  25736. name: "Boom",
  25737. height: math.unit(9 + 10 / 12, "feet"),
  25738. default: true
  25739. },
  25740. {
  25741. name: "Macro",
  25742. height: math.unit(280, "feet")
  25743. },
  25744. ]
  25745. ))
  25746. characterMakers.push(() => makeCharacter(
  25747. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25748. {
  25749. goddess: {
  25750. height: math.unit(600, "feet"),
  25751. weight: math.unit(2000000, "tons"),
  25752. name: "Goddess",
  25753. image: {
  25754. source: "./media/characters/lady-kubwa/goddess.svg",
  25755. extra: 1240.5 / 1223,
  25756. bottom: 22 / 1263
  25757. }
  25758. },
  25759. goddesser: {
  25760. height: math.unit(900, "feet"),
  25761. weight: math.unit(20000000, "lb"),
  25762. name: "Goddess-er",
  25763. image: {
  25764. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25765. extra: 899 / 888,
  25766. bottom: 12.6 / 912
  25767. }
  25768. },
  25769. },
  25770. [
  25771. {
  25772. name: "Macro",
  25773. height: math.unit(600, "feet"),
  25774. default: true
  25775. },
  25776. {
  25777. name: "Megamacro",
  25778. height: math.unit(250, "miles")
  25779. },
  25780. ]
  25781. ))
  25782. characterMakers.push(() => makeCharacter(
  25783. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25784. {
  25785. front: {
  25786. height: math.unit(7 + 7 / 12, "feet"),
  25787. weight: math.unit(250, "lb"),
  25788. name: "Front",
  25789. image: {
  25790. source: "./media/characters/tala-grovehorn/front.svg",
  25791. extra: 2636 / 2525,
  25792. bottom: 147 / 2781
  25793. }
  25794. },
  25795. back: {
  25796. height: math.unit(7 + 7 / 12, "feet"),
  25797. weight: math.unit(250, "lb"),
  25798. name: "Back",
  25799. image: {
  25800. source: "./media/characters/tala-grovehorn/back.svg",
  25801. extra: 2635 / 2539,
  25802. bottom: 100 / 2732.8
  25803. }
  25804. },
  25805. mouth: {
  25806. height: math.unit(1.15, "feet"),
  25807. name: "Mouth",
  25808. image: {
  25809. source: "./media/characters/tala-grovehorn/mouth.svg"
  25810. }
  25811. },
  25812. dick: {
  25813. height: math.unit(2.36, "feet"),
  25814. name: "Dick",
  25815. image: {
  25816. source: "./media/characters/tala-grovehorn/dick.svg"
  25817. }
  25818. },
  25819. slit: {
  25820. height: math.unit(0.61, "feet"),
  25821. name: "Slit",
  25822. image: {
  25823. source: "./media/characters/tala-grovehorn/slit.svg"
  25824. }
  25825. },
  25826. },
  25827. [
  25828. ]
  25829. ))
  25830. characterMakers.push(() => makeCharacter(
  25831. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25832. {
  25833. front: {
  25834. height: math.unit(7 + 7 / 12, "feet"),
  25835. weight: math.unit(225, "lb"),
  25836. name: "Front",
  25837. image: {
  25838. source: "./media/characters/epona/front.svg",
  25839. extra: 2445 / 2290,
  25840. bottom: 251 / 2696
  25841. }
  25842. },
  25843. back: {
  25844. height: math.unit(7 + 7 / 12, "feet"),
  25845. weight: math.unit(225, "lb"),
  25846. name: "Back",
  25847. image: {
  25848. source: "./media/characters/epona/back.svg",
  25849. extra: 2546 / 2408,
  25850. bottom: 44 / 2589
  25851. }
  25852. },
  25853. genitals: {
  25854. height: math.unit(1.5, "feet"),
  25855. name: "Genitals",
  25856. image: {
  25857. source: "./media/characters/epona/genitals.svg"
  25858. }
  25859. },
  25860. },
  25861. [
  25862. {
  25863. name: "Normal",
  25864. height: math.unit(7 + 7 / 12, "feet"),
  25865. default: true
  25866. },
  25867. ]
  25868. ))
  25869. characterMakers.push(() => makeCharacter(
  25870. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25871. {
  25872. front: {
  25873. height: math.unit(7, "feet"),
  25874. weight: math.unit(518, "lb"),
  25875. name: "Front",
  25876. image: {
  25877. source: "./media/characters/avia-bloodbourn/front.svg",
  25878. extra: 1466 / 1350,
  25879. bottom: 65 / 1527
  25880. }
  25881. },
  25882. },
  25883. [
  25884. ]
  25885. ))
  25886. characterMakers.push(() => makeCharacter(
  25887. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25888. {
  25889. front: {
  25890. height: math.unit(9.35, "feet"),
  25891. weight: math.unit(600, "lb"),
  25892. name: "Front",
  25893. image: {
  25894. source: "./media/characters/amera/front.svg",
  25895. extra: 891 / 818,
  25896. bottom: 30 / 922.7
  25897. }
  25898. },
  25899. back: {
  25900. height: math.unit(9.35, "feet"),
  25901. weight: math.unit(600, "lb"),
  25902. name: "Back",
  25903. image: {
  25904. source: "./media/characters/amera/back.svg",
  25905. extra: 876 / 824,
  25906. bottom: 6.8 / 884
  25907. }
  25908. },
  25909. dick: {
  25910. height: math.unit(2.14, "feet"),
  25911. name: "Dick",
  25912. image: {
  25913. source: "./media/characters/amera/dick.svg"
  25914. }
  25915. },
  25916. },
  25917. [
  25918. {
  25919. name: "Normal",
  25920. height: math.unit(9.35, "feet"),
  25921. default: true
  25922. },
  25923. ]
  25924. ))
  25925. characterMakers.push(() => makeCharacter(
  25926. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25927. {
  25928. kneeling: {
  25929. height: math.unit(3 + 4 / 12, "feet"),
  25930. weight: math.unit(90, "lb"),
  25931. name: "Kneeling",
  25932. image: {
  25933. source: "./media/characters/rosewen/kneeling.svg",
  25934. extra: 1835 / 1571,
  25935. bottom: 27.7 / 1862
  25936. }
  25937. },
  25938. },
  25939. [
  25940. {
  25941. name: "Normal",
  25942. height: math.unit(3 + 4 / 12, "feet"),
  25943. default: true
  25944. },
  25945. ]
  25946. ))
  25947. characterMakers.push(() => makeCharacter(
  25948. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25949. {
  25950. front: {
  25951. height: math.unit(5 + 10 / 12, "feet"),
  25952. weight: math.unit(200, "lb"),
  25953. name: "Front",
  25954. image: {
  25955. source: "./media/characters/sabah/front.svg",
  25956. extra: 849 / 763,
  25957. bottom: 33.9 / 881
  25958. }
  25959. },
  25960. },
  25961. [
  25962. {
  25963. name: "Normal",
  25964. height: math.unit(5 + 10 / 12, "feet"),
  25965. default: true
  25966. },
  25967. ]
  25968. ))
  25969. characterMakers.push(() => makeCharacter(
  25970. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25971. {
  25972. front: {
  25973. height: math.unit(3 + 5 / 12, "feet"),
  25974. weight: math.unit(40, "kg"),
  25975. name: "Front",
  25976. image: {
  25977. source: "./media/characters/purple-flame/front.svg",
  25978. extra: 1577 / 1412,
  25979. bottom: 97 / 1694
  25980. }
  25981. },
  25982. frontDressed: {
  25983. height: math.unit(3 + 5 / 12, "feet"),
  25984. weight: math.unit(40, "kg"),
  25985. name: "Front (Dressed)",
  25986. image: {
  25987. source: "./media/characters/purple-flame/front-dressed.svg",
  25988. extra: 1577 / 1412,
  25989. bottom: 97 / 1694
  25990. }
  25991. },
  25992. headphones: {
  25993. height: math.unit(0.85, "feet"),
  25994. name: "Headphones",
  25995. image: {
  25996. source: "./media/characters/purple-flame/headphones.svg"
  25997. }
  25998. },
  25999. },
  26000. [
  26001. {
  26002. name: "Really Small",
  26003. height: math.unit(5, "cm")
  26004. },
  26005. {
  26006. name: "Micro",
  26007. height: math.unit(1 + 5 / 12, "feet")
  26008. },
  26009. {
  26010. name: "Normal",
  26011. height: math.unit(3 + 5 / 12, "feet"),
  26012. default: true
  26013. },
  26014. {
  26015. name: "Minimacro",
  26016. height: math.unit(125, "feet")
  26017. },
  26018. {
  26019. name: "Macro",
  26020. height: math.unit(0.5, "miles")
  26021. },
  26022. {
  26023. name: "Megamacro",
  26024. height: math.unit(50, "miles")
  26025. },
  26026. {
  26027. name: "Gigantic",
  26028. height: math.unit(750, "miles")
  26029. },
  26030. {
  26031. name: "Planetary",
  26032. height: math.unit(15000, "miles")
  26033. },
  26034. ]
  26035. ))
  26036. characterMakers.push(() => makeCharacter(
  26037. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26038. {
  26039. front: {
  26040. height: math.unit(14, "feet"),
  26041. weight: math.unit(959, "lb"),
  26042. name: "Front",
  26043. image: {
  26044. source: "./media/characters/arsenal/front.svg",
  26045. extra: 2357 / 2157,
  26046. bottom: 93 / 2458
  26047. }
  26048. },
  26049. },
  26050. [
  26051. {
  26052. name: "Normal",
  26053. height: math.unit(14, "feet"),
  26054. default: true
  26055. },
  26056. ]
  26057. ))
  26058. characterMakers.push(() => makeCharacter(
  26059. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26060. {
  26061. front: {
  26062. height: math.unit(6, "feet"),
  26063. weight: math.unit(150, "lb"),
  26064. name: "Front",
  26065. image: {
  26066. source: "./media/characters/adira/front.svg",
  26067. extra: 1078 / 1029,
  26068. bottom: 87 / 1166
  26069. }
  26070. },
  26071. },
  26072. [
  26073. {
  26074. name: "Micro",
  26075. height: math.unit(4, "inches"),
  26076. default: true
  26077. },
  26078. {
  26079. name: "Macro",
  26080. height: math.unit(50, "feet")
  26081. },
  26082. ]
  26083. ))
  26084. characterMakers.push(() => makeCharacter(
  26085. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26086. {
  26087. front: {
  26088. height: math.unit(16, "feet"),
  26089. weight: math.unit(1000, "lb"),
  26090. name: "Front",
  26091. image: {
  26092. source: "./media/characters/grim/front.svg",
  26093. extra: 622 / 614,
  26094. bottom: 18.1 / 642
  26095. }
  26096. },
  26097. back: {
  26098. height: math.unit(16, "feet"),
  26099. weight: math.unit(1000, "lb"),
  26100. name: "Back",
  26101. image: {
  26102. source: "./media/characters/grim/back.svg",
  26103. extra: 610.6 / 602,
  26104. bottom: 40.8 / 652
  26105. }
  26106. },
  26107. hunched: {
  26108. height: math.unit(9.75, "feet"),
  26109. weight: math.unit(1000, "lb"),
  26110. name: "Hunched",
  26111. image: {
  26112. source: "./media/characters/grim/hunched.svg",
  26113. extra: 304 / 297,
  26114. bottom: 35.4 / 394
  26115. }
  26116. },
  26117. },
  26118. [
  26119. {
  26120. name: "Normal",
  26121. height: math.unit(16, "feet"),
  26122. default: true
  26123. },
  26124. ]
  26125. ))
  26126. characterMakers.push(() => makeCharacter(
  26127. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26128. {
  26129. front: {
  26130. height: math.unit(2.3, "meters"),
  26131. weight: math.unit(300, "lb"),
  26132. name: "Front",
  26133. image: {
  26134. source: "./media/characters/sinja/front-sfw.svg",
  26135. extra: 1393 / 1294,
  26136. bottom: 70 / 1463
  26137. }
  26138. },
  26139. frontNsfw: {
  26140. height: math.unit(2.3, "meters"),
  26141. weight: math.unit(300, "lb"),
  26142. name: "Front (NSFW)",
  26143. image: {
  26144. source: "./media/characters/sinja/front-nsfw.svg",
  26145. extra: 1393 / 1294,
  26146. bottom: 70 / 1463
  26147. }
  26148. },
  26149. back: {
  26150. height: math.unit(2.3, "meters"),
  26151. weight: math.unit(300, "lb"),
  26152. name: "Back",
  26153. image: {
  26154. source: "./media/characters/sinja/back.svg",
  26155. extra: 1393 / 1294,
  26156. bottom: 70 / 1463
  26157. }
  26158. },
  26159. head: {
  26160. height: math.unit(1.771, "feet"),
  26161. name: "Head",
  26162. image: {
  26163. source: "./media/characters/sinja/head.svg"
  26164. }
  26165. },
  26166. slit: {
  26167. height: math.unit(0.8, "feet"),
  26168. name: "Slit",
  26169. image: {
  26170. source: "./media/characters/sinja/slit.svg"
  26171. }
  26172. },
  26173. },
  26174. [
  26175. {
  26176. name: "Normal",
  26177. height: math.unit(2.3, "meters")
  26178. },
  26179. {
  26180. name: "Macro",
  26181. height: math.unit(91, "meters"),
  26182. default: true
  26183. },
  26184. {
  26185. name: "Megamacro",
  26186. height: math.unit(91440, "meters")
  26187. },
  26188. {
  26189. name: "Gigamacro",
  26190. height: math.unit(60960000, "meters")
  26191. },
  26192. {
  26193. name: "Teramacro",
  26194. height: math.unit(9144000000, "meters")
  26195. },
  26196. ]
  26197. ))
  26198. characterMakers.push(() => makeCharacter(
  26199. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26200. {
  26201. front: {
  26202. height: math.unit(1.7, "meters"),
  26203. weight: math.unit(130, "lb"),
  26204. name: "Front",
  26205. image: {
  26206. source: "./media/characters/kyu/front.svg",
  26207. extra: 415 / 395,
  26208. bottom: 5 / 420
  26209. }
  26210. },
  26211. head: {
  26212. height: math.unit(1.75, "feet"),
  26213. name: "Head",
  26214. image: {
  26215. source: "./media/characters/kyu/head.svg"
  26216. }
  26217. },
  26218. foot: {
  26219. height: math.unit(0.81, "feet"),
  26220. name: "Foot",
  26221. image: {
  26222. source: "./media/characters/kyu/foot.svg"
  26223. }
  26224. },
  26225. },
  26226. [
  26227. {
  26228. name: "Normal",
  26229. height: math.unit(1.7, "meters")
  26230. },
  26231. {
  26232. name: "Macro",
  26233. height: math.unit(131, "feet"),
  26234. default: true
  26235. },
  26236. {
  26237. name: "Megamacro",
  26238. height: math.unit(91440, "meters")
  26239. },
  26240. {
  26241. name: "Gigamacro",
  26242. height: math.unit(60960000, "meters")
  26243. },
  26244. {
  26245. name: "Teramacro",
  26246. height: math.unit(9144000000, "meters")
  26247. },
  26248. ]
  26249. ))
  26250. characterMakers.push(() => makeCharacter(
  26251. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26252. {
  26253. front: {
  26254. height: math.unit(7 + 1 / 12, "feet"),
  26255. weight: math.unit(250, "lb"),
  26256. name: "Front",
  26257. image: {
  26258. source: "./media/characters/joey/front.svg",
  26259. extra: 1791 / 1537,
  26260. bottom: 28 / 1816
  26261. }
  26262. },
  26263. },
  26264. [
  26265. {
  26266. name: "Micro",
  26267. height: math.unit(3, "inches")
  26268. },
  26269. {
  26270. name: "Normal",
  26271. height: math.unit(7 + 1 / 12, "feet"),
  26272. default: true
  26273. },
  26274. ]
  26275. ))
  26276. characterMakers.push(() => makeCharacter(
  26277. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26278. {
  26279. front: {
  26280. height: math.unit(165, "cm"),
  26281. weight: math.unit(140, "lb"),
  26282. name: "Front",
  26283. image: {
  26284. source: "./media/characters/sam-evans/front.svg",
  26285. extra: 3417 / 3230,
  26286. bottom: 41.3 / 3417
  26287. }
  26288. },
  26289. frontSixTails: {
  26290. height: math.unit(165, "cm"),
  26291. weight: math.unit(140, "lb"),
  26292. name: "Front-six-tails",
  26293. image: {
  26294. source: "./media/characters/sam-evans/front-six-tails.svg",
  26295. extra: 3417 / 3230,
  26296. bottom: 41.3 / 3417
  26297. }
  26298. },
  26299. back: {
  26300. height: math.unit(165, "cm"),
  26301. weight: math.unit(140, "lb"),
  26302. name: "Back",
  26303. image: {
  26304. source: "./media/characters/sam-evans/back.svg",
  26305. extra: 3227 / 3032,
  26306. bottom: 6.8 / 3234
  26307. }
  26308. },
  26309. face: {
  26310. height: math.unit(0.68, "feet"),
  26311. name: "Face",
  26312. image: {
  26313. source: "./media/characters/sam-evans/face.svg"
  26314. }
  26315. },
  26316. },
  26317. [
  26318. {
  26319. name: "Normal",
  26320. height: math.unit(165, "cm"),
  26321. default: true
  26322. },
  26323. {
  26324. name: "Macro",
  26325. height: math.unit(100, "meters")
  26326. },
  26327. {
  26328. name: "Macro+",
  26329. height: math.unit(800, "meters")
  26330. },
  26331. {
  26332. name: "Macro++",
  26333. height: math.unit(3, "km")
  26334. },
  26335. {
  26336. name: "Macro+++",
  26337. height: math.unit(30, "km")
  26338. },
  26339. ]
  26340. ))
  26341. characterMakers.push(() => makeCharacter(
  26342. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26343. {
  26344. front: {
  26345. height: math.unit(10, "feet"),
  26346. weight: math.unit(750, "lb"),
  26347. name: "Front",
  26348. image: {
  26349. source: "./media/characters/juliet-a/front.svg",
  26350. extra: 1766 / 1720,
  26351. bottom: 43 / 1809
  26352. }
  26353. },
  26354. back: {
  26355. height: math.unit(10, "feet"),
  26356. weight: math.unit(750, "lb"),
  26357. name: "Back",
  26358. image: {
  26359. source: "./media/characters/juliet-a/back.svg",
  26360. extra: 1781 / 1734,
  26361. bottom: 35 / 1810,
  26362. }
  26363. },
  26364. },
  26365. [
  26366. {
  26367. name: "Normal",
  26368. height: math.unit(10, "feet"),
  26369. default: true
  26370. },
  26371. {
  26372. name: "Dragon Form",
  26373. height: math.unit(250, "feet")
  26374. },
  26375. {
  26376. name: "Macro",
  26377. height: math.unit(1000, "feet")
  26378. },
  26379. {
  26380. name: "Megamacro",
  26381. height: math.unit(10000, "feet")
  26382. }
  26383. ]
  26384. ))
  26385. characterMakers.push(() => makeCharacter(
  26386. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26387. {
  26388. regular: {
  26389. height: math.unit(7 + 3 / 12, "feet"),
  26390. weight: math.unit(260, "lb"),
  26391. name: "Regular",
  26392. image: {
  26393. source: "./media/characters/wild/regular.svg",
  26394. extra: 97.45 / 92,
  26395. bottom: 6.8 / 104.3
  26396. }
  26397. },
  26398. biggums: {
  26399. height: math.unit(8 + 6 / 12, "feet"),
  26400. weight: math.unit(425, "lb"),
  26401. name: "Biggums",
  26402. image: {
  26403. source: "./media/characters/wild/biggums.svg",
  26404. extra: 97.45 / 92,
  26405. bottom: 7.5 / 132.34
  26406. }
  26407. },
  26408. mawRegular: {
  26409. height: math.unit(1.24, "feet"),
  26410. name: "Maw (Regular)",
  26411. image: {
  26412. source: "./media/characters/wild/maw.svg"
  26413. }
  26414. },
  26415. mawBiggums: {
  26416. height: math.unit(1.47, "feet"),
  26417. name: "Maw (Biggums)",
  26418. image: {
  26419. source: "./media/characters/wild/maw.svg"
  26420. }
  26421. },
  26422. },
  26423. [
  26424. {
  26425. name: "Normal",
  26426. height: math.unit(7 + 3 / 12, "feet"),
  26427. default: true
  26428. },
  26429. ]
  26430. ))
  26431. characterMakers.push(() => makeCharacter(
  26432. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26433. {
  26434. front: {
  26435. height: math.unit(2.5, "meters"),
  26436. weight: math.unit(200, "kg"),
  26437. name: "Front",
  26438. image: {
  26439. source: "./media/characters/vidar/front.svg",
  26440. extra: 2994 / 2795,
  26441. bottom: 56 / 3061
  26442. }
  26443. },
  26444. back: {
  26445. height: math.unit(2.5, "meters"),
  26446. weight: math.unit(200, "kg"),
  26447. name: "Back",
  26448. image: {
  26449. source: "./media/characters/vidar/back.svg",
  26450. extra: 3131 / 2928,
  26451. bottom: 13.5 / 3141.5
  26452. }
  26453. },
  26454. feral: {
  26455. height: math.unit(2.5, "meters"),
  26456. weight: math.unit(2000, "kg"),
  26457. name: "Feral",
  26458. image: {
  26459. source: "./media/characters/vidar/feral.svg",
  26460. extra: 2790 / 1765,
  26461. bottom: 6 / 2796
  26462. }
  26463. },
  26464. },
  26465. [
  26466. {
  26467. name: "Normal",
  26468. height: math.unit(2.5, "meters"),
  26469. default: true
  26470. },
  26471. {
  26472. name: "Macro",
  26473. height: math.unit(100, "meters")
  26474. },
  26475. ]
  26476. ))
  26477. characterMakers.push(() => makeCharacter(
  26478. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26479. {
  26480. front: {
  26481. height: math.unit(5 + 9 / 12, "feet"),
  26482. weight: math.unit(120, "lb"),
  26483. name: "Front",
  26484. image: {
  26485. source: "./media/characters/ash/front.svg",
  26486. extra: 2189 / 1961,
  26487. bottom: 5.2 / 2194
  26488. }
  26489. },
  26490. },
  26491. [
  26492. {
  26493. name: "Normal",
  26494. height: math.unit(5 + 9 / 12, "feet"),
  26495. default: true
  26496. },
  26497. ]
  26498. ))
  26499. characterMakers.push(() => makeCharacter(
  26500. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26501. {
  26502. front: {
  26503. height: math.unit(9, "feet"),
  26504. weight: math.unit(10000, "lb"),
  26505. name: "Front",
  26506. image: {
  26507. source: "./media/characters/gygabite/front.svg",
  26508. bottom: 31.7 / 537.8,
  26509. extra: 505 / 370
  26510. }
  26511. },
  26512. },
  26513. [
  26514. {
  26515. name: "Normal",
  26516. height: math.unit(9, "feet"),
  26517. default: true
  26518. },
  26519. ]
  26520. ))
  26521. characterMakers.push(() => makeCharacter(
  26522. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26523. {
  26524. front: {
  26525. height: math.unit(12, "feet"),
  26526. weight: math.unit(35000, "lb"),
  26527. name: "Front",
  26528. image: {
  26529. source: "./media/characters/p0tat0/front.svg",
  26530. extra: 1065 / 921,
  26531. bottom: 55.7 / 1121.25
  26532. }
  26533. },
  26534. },
  26535. [
  26536. {
  26537. name: "Normal",
  26538. height: math.unit(12, "feet"),
  26539. default: true
  26540. },
  26541. ]
  26542. ))
  26543. characterMakers.push(() => makeCharacter(
  26544. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26545. {
  26546. side: {
  26547. height: math.unit(6.5, "feet"),
  26548. weight: math.unit(800, "lb"),
  26549. name: "Side",
  26550. image: {
  26551. source: "./media/characters/dusk/side.svg",
  26552. extra: 615 / 373,
  26553. bottom: 53 / 664
  26554. }
  26555. },
  26556. sitting: {
  26557. height: math.unit(7, "feet"),
  26558. weight: math.unit(800, "lb"),
  26559. name: "Sitting",
  26560. image: {
  26561. source: "./media/characters/dusk/sitting.svg",
  26562. extra: 753 / 425,
  26563. bottom: 33 / 774
  26564. }
  26565. },
  26566. head: {
  26567. height: math.unit(6.1, "feet"),
  26568. name: "Head",
  26569. image: {
  26570. source: "./media/characters/dusk/head.svg"
  26571. }
  26572. },
  26573. },
  26574. [
  26575. {
  26576. name: "Normal",
  26577. height: math.unit(7, "feet"),
  26578. default: true
  26579. },
  26580. ]
  26581. ))
  26582. characterMakers.push(() => makeCharacter(
  26583. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26584. {
  26585. front: {
  26586. height: math.unit(15, "feet"),
  26587. weight: math.unit(7000, "lb"),
  26588. name: "Front",
  26589. image: {
  26590. source: "./media/characters/jay-direwolf/front.svg",
  26591. extra: 1810 / 1732,
  26592. bottom: 66 / 1892
  26593. }
  26594. },
  26595. },
  26596. [
  26597. {
  26598. name: "Normal",
  26599. height: math.unit(15, "feet"),
  26600. default: true
  26601. },
  26602. ]
  26603. ))
  26604. characterMakers.push(() => makeCharacter(
  26605. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26606. {
  26607. front: {
  26608. height: math.unit(4 + 9 / 12, "feet"),
  26609. weight: math.unit(130, "lb"),
  26610. name: "Front",
  26611. image: {
  26612. source: "./media/characters/anchovie/front.svg",
  26613. extra: 382 / 350,
  26614. bottom: 25 / 409
  26615. }
  26616. },
  26617. back: {
  26618. height: math.unit(4 + 9 / 12, "feet"),
  26619. weight: math.unit(130, "lb"),
  26620. name: "Back",
  26621. image: {
  26622. source: "./media/characters/anchovie/back.svg",
  26623. extra: 385 / 352,
  26624. bottom: 16.6 / 402
  26625. }
  26626. },
  26627. frontDressed: {
  26628. height: math.unit(4 + 9 / 12, "feet"),
  26629. weight: math.unit(130, "lb"),
  26630. name: "Front (Dressed)",
  26631. image: {
  26632. source: "./media/characters/anchovie/front-dressed.svg",
  26633. extra: 382 / 350,
  26634. bottom: 25 / 409
  26635. }
  26636. },
  26637. backDressed: {
  26638. height: math.unit(4 + 9 / 12, "feet"),
  26639. weight: math.unit(130, "lb"),
  26640. name: "Back (Dressed)",
  26641. image: {
  26642. source: "./media/characters/anchovie/back-dressed.svg",
  26643. extra: 385 / 352,
  26644. bottom: 16.6 / 402
  26645. }
  26646. },
  26647. },
  26648. [
  26649. {
  26650. name: "Micro",
  26651. height: math.unit(6.4, "inches")
  26652. },
  26653. {
  26654. name: "Normal",
  26655. height: math.unit(4 + 9 / 12, "feet"),
  26656. default: true
  26657. },
  26658. ]
  26659. ))
  26660. characterMakers.push(() => makeCharacter(
  26661. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26662. {
  26663. front: {
  26664. height: math.unit(2, "meters"),
  26665. weight: math.unit(180, "lb"),
  26666. name: "Front",
  26667. image: {
  26668. source: "./media/characters/acidrenamon/front.svg",
  26669. extra: 987 / 890,
  26670. bottom: 22.8 / 1009
  26671. }
  26672. },
  26673. back: {
  26674. height: math.unit(2, "meters"),
  26675. weight: math.unit(180, "lb"),
  26676. name: "Back",
  26677. image: {
  26678. source: "./media/characters/acidrenamon/back.svg",
  26679. extra: 983 / 891,
  26680. bottom: 8.4 / 992
  26681. }
  26682. },
  26683. head: {
  26684. height: math.unit(1.92, "feet"),
  26685. name: "Head",
  26686. image: {
  26687. source: "./media/characters/acidrenamon/head.svg"
  26688. }
  26689. },
  26690. rump: {
  26691. height: math.unit(1.72, "feet"),
  26692. name: "Rump",
  26693. image: {
  26694. source: "./media/characters/acidrenamon/rump.svg"
  26695. }
  26696. },
  26697. tail: {
  26698. height: math.unit(4.2, "feet"),
  26699. name: "Tail",
  26700. image: {
  26701. source: "./media/characters/acidrenamon/tail.svg"
  26702. }
  26703. },
  26704. },
  26705. [
  26706. {
  26707. name: "Normal",
  26708. height: math.unit(2, "meters"),
  26709. default: true
  26710. },
  26711. {
  26712. name: "Minimacro",
  26713. height: math.unit(7, "meters")
  26714. },
  26715. {
  26716. name: "Macro",
  26717. height: math.unit(200, "meters")
  26718. },
  26719. {
  26720. name: "Gigamacro",
  26721. height: math.unit(0.2, "earths")
  26722. },
  26723. ]
  26724. ))
  26725. characterMakers.push(() => makeCharacter(
  26726. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26727. {
  26728. front: {
  26729. height: math.unit(6, "feet"),
  26730. weight: math.unit(150, "lb"),
  26731. name: "Front",
  26732. image: {
  26733. source: "./media/characters/kenzie-lee/front.svg",
  26734. extra: 1525 / 1465,
  26735. bottom: 45 / 1570
  26736. }
  26737. },
  26738. side: {
  26739. height: math.unit(6, "feet"),
  26740. weight: math.unit(150, "lb"),
  26741. name: "Side",
  26742. image: {
  26743. source: "./media/characters/kenzie-lee/side.svg",
  26744. extra: 5505 / 5383,
  26745. bottom: 60 / 5573
  26746. }
  26747. },
  26748. },
  26749. [
  26750. {
  26751. name: "Normal",
  26752. height: math.unit(152, "feet"),
  26753. default: true
  26754. },
  26755. {
  26756. name: "Megamacro",
  26757. height: math.unit(7, "miles")
  26758. },
  26759. {
  26760. name: "Gigamacro",
  26761. height: math.unit(8000, "miles")
  26762. },
  26763. ]
  26764. ))
  26765. characterMakers.push(() => makeCharacter(
  26766. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26767. {
  26768. side: {
  26769. height: math.unit(6, "feet"),
  26770. weight: math.unit(150, "lb"),
  26771. name: "Side",
  26772. image: {
  26773. source: "./media/characters/withers/side.svg",
  26774. extra: 1830 / 1728,
  26775. bottom: 96 / 1927
  26776. }
  26777. },
  26778. front: {
  26779. height: math.unit(6, "feet"),
  26780. weight: math.unit(150, "lb"),
  26781. name: "Front",
  26782. image: {
  26783. source: "./media/characters/withers/front.svg",
  26784. extra: 1514 / 1438,
  26785. bottom: 118 / 1632
  26786. }
  26787. },
  26788. },
  26789. [
  26790. {
  26791. name: "Macro",
  26792. height: math.unit(168, "feet"),
  26793. default: true
  26794. },
  26795. {
  26796. name: "Megamacro",
  26797. height: math.unit(15, "miles")
  26798. }
  26799. ]
  26800. ))
  26801. characterMakers.push(() => makeCharacter(
  26802. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26803. {
  26804. front: {
  26805. height: math.unit(6 + 7 / 12, "feet"),
  26806. weight: math.unit(250, "lb"),
  26807. name: "Front",
  26808. image: {
  26809. source: "./media/characters/nemoskii/front.svg",
  26810. extra: 2270 / 1734,
  26811. bottom: 86 / 2354
  26812. }
  26813. },
  26814. back: {
  26815. height: math.unit(6 + 7 / 12, "feet"),
  26816. weight: math.unit(250, "lb"),
  26817. name: "Back",
  26818. image: {
  26819. source: "./media/characters/nemoskii/back.svg",
  26820. extra: 1845 / 1788,
  26821. bottom: 10.5 / 1852
  26822. }
  26823. },
  26824. head: {
  26825. height: math.unit(1.31, "feet"),
  26826. name: "Head",
  26827. image: {
  26828. source: "./media/characters/nemoskii/head.svg"
  26829. }
  26830. },
  26831. },
  26832. [
  26833. {
  26834. name: "Normal",
  26835. height: math.unit(6 + 7 / 12, "feet"),
  26836. default: true
  26837. },
  26838. ]
  26839. ))
  26840. characterMakers.push(() => makeCharacter(
  26841. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26842. {
  26843. front: {
  26844. height: math.unit(1, "mile"),
  26845. weight: math.unit(265261.9, "lb"),
  26846. name: "Front",
  26847. image: {
  26848. source: "./media/characters/shui/front.svg",
  26849. extra: 1633 / 1564,
  26850. bottom: 91.5 / 1726
  26851. }
  26852. },
  26853. },
  26854. [
  26855. {
  26856. name: "Macro",
  26857. height: math.unit(1, "mile"),
  26858. default: true
  26859. },
  26860. ]
  26861. ))
  26862. characterMakers.push(() => makeCharacter(
  26863. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26864. {
  26865. front: {
  26866. height: math.unit(12 + 6 / 12, "feet"),
  26867. weight: math.unit(1342, "lb"),
  26868. name: "Front",
  26869. image: {
  26870. source: "./media/characters/arokh-takakura/front.svg",
  26871. extra: 1089 / 1043,
  26872. bottom: 77.4 / 1176.7
  26873. }
  26874. },
  26875. back: {
  26876. height: math.unit(12 + 6 / 12, "feet"),
  26877. weight: math.unit(1342, "lb"),
  26878. name: "Back",
  26879. image: {
  26880. source: "./media/characters/arokh-takakura/back.svg",
  26881. extra: 1046 / 1019,
  26882. bottom: 102 / 1150
  26883. }
  26884. },
  26885. },
  26886. [
  26887. {
  26888. name: "Big",
  26889. height: math.unit(12 + 6 / 12, "feet"),
  26890. default: true
  26891. },
  26892. ]
  26893. ))
  26894. characterMakers.push(() => makeCharacter(
  26895. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  26896. {
  26897. front: {
  26898. height: math.unit(5 + 6 / 12, "feet"),
  26899. weight: math.unit(150, "lb"),
  26900. name: "Front",
  26901. image: {
  26902. source: "./media/characters/theo/front.svg",
  26903. extra: 1184 / 1131,
  26904. bottom: 7.4 / 1191
  26905. }
  26906. },
  26907. },
  26908. [
  26909. {
  26910. name: "Micro",
  26911. height: math.unit(5, "inches")
  26912. },
  26913. {
  26914. name: "Normal",
  26915. height: math.unit(5 + 6 / 12, "feet"),
  26916. default: true
  26917. },
  26918. ]
  26919. ))
  26920. characterMakers.push(() => makeCharacter(
  26921. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  26922. {
  26923. front: {
  26924. height: math.unit(5 + 9 / 12, "feet"),
  26925. weight: math.unit(130, "lb"),
  26926. name: "Front",
  26927. image: {
  26928. source: "./media/characters/cecelia-swift/front.svg",
  26929. extra: 502 / 484,
  26930. bottom: 23 / 523
  26931. }
  26932. },
  26933. back: {
  26934. height: math.unit(5 + 9 / 12, "feet"),
  26935. weight: math.unit(130, "lb"),
  26936. name: "Back",
  26937. image: {
  26938. source: "./media/characters/cecelia-swift/back.svg",
  26939. extra: 499 / 485,
  26940. bottom: 12 / 511
  26941. }
  26942. },
  26943. head: {
  26944. height: math.unit(0.90, "feet"),
  26945. name: "Head",
  26946. image: {
  26947. source: "./media/characters/cecelia-swift/head.svg"
  26948. }
  26949. },
  26950. rump: {
  26951. height: math.unit(1.75, "feet"),
  26952. name: "Rump",
  26953. image: {
  26954. source: "./media/characters/cecelia-swift/rump.svg"
  26955. }
  26956. },
  26957. },
  26958. [
  26959. {
  26960. name: "Normal",
  26961. height: math.unit(5 + 9 / 12, "feet"),
  26962. default: true
  26963. },
  26964. {
  26965. name: "Big",
  26966. height: math.unit(50, "feet")
  26967. },
  26968. {
  26969. name: "Macro",
  26970. height: math.unit(100, "feet")
  26971. },
  26972. {
  26973. name: "Macro+",
  26974. height: math.unit(500, "feet")
  26975. },
  26976. {
  26977. name: "Macro++",
  26978. height: math.unit(1000, "feet")
  26979. },
  26980. ]
  26981. ))
  26982. characterMakers.push(() => makeCharacter(
  26983. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  26984. {
  26985. front: {
  26986. height: math.unit(6, "feet"),
  26987. weight: math.unit(150, "lb"),
  26988. name: "Front",
  26989. image: {
  26990. source: "./media/characters/kaunan/front.svg",
  26991. extra: 2890 / 2523,
  26992. bottom: 49 / 2939
  26993. }
  26994. },
  26995. },
  26996. [
  26997. {
  26998. name: "Macro",
  26999. height: math.unit(150, "feet"),
  27000. default: true
  27001. },
  27002. ]
  27003. ))
  27004. characterMakers.push(() => makeCharacter(
  27005. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27006. {
  27007. front: {
  27008. height: math.unit(175, "cm"),
  27009. weight: math.unit(60, "kg"),
  27010. name: "Front",
  27011. image: {
  27012. source: "./media/characters/fei/front.svg",
  27013. extra: 2581 / 2400,
  27014. bottom: 82.2 / 2663
  27015. }
  27016. },
  27017. },
  27018. [
  27019. {
  27020. name: "Mortal",
  27021. height: math.unit(175, "cm")
  27022. },
  27023. {
  27024. name: "Normal",
  27025. height: math.unit(3500, "m"),
  27026. default: true
  27027. },
  27028. {
  27029. name: "Stroll",
  27030. height: math.unit(17.5, "km")
  27031. },
  27032. {
  27033. name: "Showoff",
  27034. height: math.unit(175, "km")
  27035. },
  27036. ]
  27037. ))
  27038. characterMakers.push(() => makeCharacter(
  27039. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27040. {
  27041. front: {
  27042. height: math.unit(7, "feet"),
  27043. weight: math.unit(1000, "kg"),
  27044. name: "Front",
  27045. image: {
  27046. source: "./media/characters/edrax/front.svg",
  27047. extra: 2838 / 2550,
  27048. bottom: 130 / 2968
  27049. }
  27050. },
  27051. },
  27052. [
  27053. {
  27054. name: "Small",
  27055. height: math.unit(7, "feet")
  27056. },
  27057. {
  27058. name: "Normal",
  27059. height: math.unit(1500, "meters")
  27060. },
  27061. {
  27062. name: "Mega",
  27063. height: math.unit(12000000, "km"),
  27064. default: true
  27065. },
  27066. {
  27067. name: "Megamacro",
  27068. height: math.unit(10600000, "lightyears")
  27069. },
  27070. {
  27071. name: "Hypermacro",
  27072. height: math.unit(256, "yottameters")
  27073. },
  27074. ]
  27075. ))
  27076. characterMakers.push(() => makeCharacter(
  27077. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27078. {
  27079. front: {
  27080. height: math.unit(10, "feet"),
  27081. weight: math.unit(750, "lb"),
  27082. name: "Front",
  27083. image: {
  27084. source: "./media/characters/clove/front.svg",
  27085. extra: 2031 / 1860,
  27086. bottom: 47.8 / 2080
  27087. }
  27088. },
  27089. back: {
  27090. height: math.unit(10, "feet"),
  27091. weight: math.unit(750, "lb"),
  27092. name: "Back",
  27093. image: {
  27094. source: "./media/characters/clove/back.svg",
  27095. extra: 2025 / 1859,
  27096. bottom: 46 / 2071
  27097. }
  27098. },
  27099. },
  27100. [
  27101. {
  27102. name: "Normal",
  27103. height: math.unit(10, "feet"),
  27104. default: true
  27105. },
  27106. ]
  27107. ))
  27108. characterMakers.push(() => makeCharacter(
  27109. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27110. {
  27111. front: {
  27112. height: math.unit(4, "feet"),
  27113. weight: math.unit(50, "lb"),
  27114. name: "Front",
  27115. image: {
  27116. source: "./media/characters/alex-rabbit/front.svg",
  27117. extra: 507 / 458,
  27118. bottom: 18.5 / 527
  27119. }
  27120. },
  27121. back: {
  27122. height: math.unit(4, "feet"),
  27123. weight: math.unit(50, "lb"),
  27124. name: "Back",
  27125. image: {
  27126. source: "./media/characters/alex-rabbit/back.svg",
  27127. extra: 502 / 460,
  27128. bottom: 18.9 / 521
  27129. }
  27130. },
  27131. },
  27132. [
  27133. {
  27134. name: "Normal",
  27135. height: math.unit(4, "feet"),
  27136. default: true
  27137. },
  27138. ]
  27139. ))
  27140. characterMakers.push(() => makeCharacter(
  27141. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27142. {
  27143. front: {
  27144. height: math.unit(1 + 3 / 12, "feet"),
  27145. weight: math.unit(80, "lb"),
  27146. name: "Front",
  27147. image: {
  27148. source: "./media/characters/zander-rose/front.svg",
  27149. extra: 916 / 797,
  27150. bottom: 17 / 933
  27151. }
  27152. },
  27153. back: {
  27154. height: math.unit(1 + 3 / 12, "feet"),
  27155. weight: math.unit(80, "lb"),
  27156. name: "Back",
  27157. image: {
  27158. source: "./media/characters/zander-rose/back.svg",
  27159. extra: 903 / 779,
  27160. bottom: 31 / 934
  27161. }
  27162. },
  27163. },
  27164. [
  27165. {
  27166. name: "Normal",
  27167. height: math.unit(1 + 3 / 12, "feet"),
  27168. default: true
  27169. },
  27170. ]
  27171. ))
  27172. characterMakers.push(() => makeCharacter(
  27173. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27174. {
  27175. anthro: {
  27176. height: math.unit(6, "feet"),
  27177. weight: math.unit(150, "lb"),
  27178. name: "Anthro",
  27179. image: {
  27180. source: "./media/characters/razz/anthro.svg",
  27181. extra: 1437 / 1343,
  27182. bottom: 48 / 1485
  27183. }
  27184. },
  27185. feral: {
  27186. height: math.unit(6, "feet"),
  27187. weight: math.unit(150, "lb"),
  27188. name: "Feral",
  27189. image: {
  27190. source: "./media/characters/razz/feral.svg",
  27191. extra: 2569 / 1385,
  27192. bottom: 95 / 2664
  27193. }
  27194. },
  27195. },
  27196. [
  27197. {
  27198. name: "Normal",
  27199. height: math.unit(6, "feet"),
  27200. default: true
  27201. },
  27202. ]
  27203. ))
  27204. characterMakers.push(() => makeCharacter(
  27205. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27206. {
  27207. front: {
  27208. height: math.unit(9 + 4 / 12, "feet"),
  27209. weight: math.unit(500, "lb"),
  27210. name: "Front",
  27211. image: {
  27212. source: "./media/characters/morrigan/front.svg",
  27213. extra: 2707 / 2579,
  27214. bottom: 156 / 2863
  27215. }
  27216. },
  27217. },
  27218. [
  27219. {
  27220. name: "Normal",
  27221. height: math.unit(9 + 4 / 12, "feet"),
  27222. default: true
  27223. },
  27224. ]
  27225. ))
  27226. characterMakers.push(() => makeCharacter(
  27227. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27228. {
  27229. front: {
  27230. height: math.unit(5, "stories"),
  27231. weight: math.unit(4000, "lb"),
  27232. name: "Front",
  27233. image: {
  27234. source: "./media/characters/jenene/front.svg",
  27235. extra: 1780 / 1710,
  27236. bottom: 57 / 1837
  27237. }
  27238. },
  27239. },
  27240. [
  27241. {
  27242. name: "Normal",
  27243. height: math.unit(5, "stories"),
  27244. default: true
  27245. },
  27246. ]
  27247. ))
  27248. characterMakers.push(() => makeCharacter(
  27249. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27250. {
  27251. front: {
  27252. height: math.unit(6, "feet"),
  27253. weight: math.unit(150, "lb"),
  27254. name: "Front",
  27255. image: {
  27256. source: "./media/characters/vix-archaser/front.svg",
  27257. extra: 2767 / 2562,
  27258. bottom: 36 / 2803
  27259. }
  27260. },
  27261. },
  27262. [
  27263. {
  27264. name: "Micro",
  27265. height: math.unit(1, "foot")
  27266. },
  27267. {
  27268. name: "Normal",
  27269. height: math.unit(6 + 5 / 12, "feet")
  27270. },
  27271. {
  27272. name: "Minimacro",
  27273. height: math.unit(500, "feet")
  27274. },
  27275. {
  27276. name: "Macro",
  27277. height: math.unit(4, "miles")
  27278. },
  27279. {
  27280. name: "Megamacro",
  27281. height: math.unit(250, "miles"),
  27282. default: true
  27283. },
  27284. {
  27285. name: "Gigamacro",
  27286. height: math.unit(1, "universe")
  27287. },
  27288. {
  27289. name: "Endgame",
  27290. height: math.unit(100, "multiverses")
  27291. }
  27292. ]
  27293. ))
  27294. characterMakers.push(() => makeCharacter(
  27295. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27296. {
  27297. taurSfw: {
  27298. height: math.unit(10, "meters"),
  27299. weight: math.unit(17500, "kg"),
  27300. name: "Taur",
  27301. image: {
  27302. source: "./media/characters/faey/taur-sfw.svg",
  27303. extra: 1200 / 968,
  27304. bottom: 41 / 1241
  27305. }
  27306. },
  27307. chestmaw: {
  27308. height: math.unit(2.01, "meters"),
  27309. name: "Chestmaw",
  27310. image: {
  27311. source: "./media/characters/faey/chestmaw.svg"
  27312. }
  27313. },
  27314. foot: {
  27315. height: math.unit(2.43, "meters"),
  27316. name: "Foot",
  27317. image: {
  27318. source: "./media/characters/faey/foot.svg"
  27319. }
  27320. },
  27321. jaws: {
  27322. height: math.unit(1.66, "meters"),
  27323. name: "Jaws",
  27324. image: {
  27325. source: "./media/characters/faey/jaws.svg"
  27326. }
  27327. },
  27328. tongues: {
  27329. height: math.unit(2.01, "meters"),
  27330. name: "Tongues",
  27331. image: {
  27332. source: "./media/characters/faey/tongues.svg"
  27333. }
  27334. },
  27335. },
  27336. [
  27337. {
  27338. name: "Small",
  27339. height: math.unit(10, "meters"),
  27340. default: true
  27341. },
  27342. {
  27343. name: "Big",
  27344. height: math.unit(500000, "km")
  27345. },
  27346. ]
  27347. ))
  27348. characterMakers.push(() => makeCharacter(
  27349. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27350. {
  27351. front: {
  27352. height: math.unit(7, "feet"),
  27353. weight: math.unit(275, "lb"),
  27354. name: "Front",
  27355. image: {
  27356. source: "./media/characters/roku/front.svg",
  27357. extra: 903 / 878,
  27358. bottom: 37 / 940
  27359. }
  27360. },
  27361. },
  27362. [
  27363. {
  27364. name: "Normal",
  27365. height: math.unit(7, "feet"),
  27366. default: true
  27367. },
  27368. {
  27369. name: "Macro",
  27370. height: math.unit(500, "feet")
  27371. },
  27372. {
  27373. name: "Megamacro",
  27374. height: math.unit(200, "miles")
  27375. },
  27376. ]
  27377. ))
  27378. characterMakers.push(() => makeCharacter(
  27379. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27380. {
  27381. front: {
  27382. height: math.unit(6 + 2 / 12, "feet"),
  27383. weight: math.unit(150, "lb"),
  27384. name: "Front",
  27385. image: {
  27386. source: "./media/characters/lira/front.svg",
  27387. extra: 1727 / 1605,
  27388. bottom: 26 / 1753
  27389. }
  27390. },
  27391. back: {
  27392. height: math.unit(6 + 2 / 12, "feet"),
  27393. weight: math.unit(150, "lb"),
  27394. name: "Back",
  27395. image: {
  27396. source: "./media/characters/lira/back.svg",
  27397. extra: 1713 / 159,
  27398. bottom: 20 / 1733
  27399. }
  27400. },
  27401. hand: {
  27402. height: math.unit(0.75, "feet"),
  27403. name: "Hand",
  27404. image: {
  27405. source: "./media/characters/lira/hand.svg"
  27406. }
  27407. },
  27408. maw: {
  27409. height: math.unit(0.65, "feet"),
  27410. name: "Maw",
  27411. image: {
  27412. source: "./media/characters/lira/maw.svg"
  27413. }
  27414. },
  27415. pawDigi: {
  27416. height: math.unit(1.6, "feet"),
  27417. name: "Paw Digi",
  27418. image: {
  27419. source: "./media/characters/lira/paw-digi.svg"
  27420. }
  27421. },
  27422. pawPlanti: {
  27423. height: math.unit(1.4, "feet"),
  27424. name: "Paw Planti",
  27425. image: {
  27426. source: "./media/characters/lira/paw-planti.svg"
  27427. }
  27428. },
  27429. },
  27430. [
  27431. {
  27432. name: "Normal",
  27433. height: math.unit(6 + 2 / 12, "feet"),
  27434. default: true
  27435. },
  27436. {
  27437. name: "Macro",
  27438. height: math.unit(100, "feet")
  27439. },
  27440. {
  27441. name: "Macro²",
  27442. height: math.unit(1600, "feet")
  27443. },
  27444. {
  27445. name: "Planetary",
  27446. height: math.unit(20, "earths")
  27447. },
  27448. ]
  27449. ))
  27450. characterMakers.push(() => makeCharacter(
  27451. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27452. {
  27453. front: {
  27454. height: math.unit(6, "feet"),
  27455. weight: math.unit(150, "lb"),
  27456. name: "Front",
  27457. image: {
  27458. source: "./media/characters/hadjet/front.svg",
  27459. extra: 1480 / 1346,
  27460. bottom: 26 / 1506
  27461. }
  27462. },
  27463. frontNsfw: {
  27464. height: math.unit(6, "feet"),
  27465. weight: math.unit(150, "lb"),
  27466. name: "Front (NSFW)",
  27467. image: {
  27468. source: "./media/characters/hadjet/front-nsfw.svg",
  27469. extra: 1440 / 1358,
  27470. bottom: 52 / 1492
  27471. }
  27472. },
  27473. },
  27474. [
  27475. {
  27476. name: "Macro",
  27477. height: math.unit(10, "stories"),
  27478. default: true
  27479. },
  27480. {
  27481. name: "Megamacro",
  27482. height: math.unit(1.5, "miles")
  27483. },
  27484. {
  27485. name: "Megamacro+",
  27486. height: math.unit(5, "miles")
  27487. },
  27488. ]
  27489. ))
  27490. characterMakers.push(() => makeCharacter(
  27491. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27492. {
  27493. side: {
  27494. height: math.unit(106, "feet"),
  27495. weight: math.unit(500, "tonnes"),
  27496. name: "Side",
  27497. image: {
  27498. source: "./media/characters/kodran/side.svg",
  27499. extra: 553 / 480,
  27500. bottom: 33 / 586
  27501. }
  27502. },
  27503. front: {
  27504. height: math.unit(132, "feet"),
  27505. weight: math.unit(500, "tonnes"),
  27506. name: "Front",
  27507. image: {
  27508. source: "./media/characters/kodran/front.svg",
  27509. extra: 667 / 643,
  27510. bottom: 42 / 709
  27511. }
  27512. },
  27513. flying: {
  27514. height: math.unit(350, "feet"),
  27515. weight: math.unit(500, "tonnes"),
  27516. name: "Flying",
  27517. image: {
  27518. source: "./media/characters/kodran/flying.svg"
  27519. }
  27520. },
  27521. foot: {
  27522. height: math.unit(33, "feet"),
  27523. name: "Foot",
  27524. image: {
  27525. source: "./media/characters/kodran/foot.svg"
  27526. }
  27527. },
  27528. footFront: {
  27529. height: math.unit(19, "feet"),
  27530. name: "Foot (Front)",
  27531. image: {
  27532. source: "./media/characters/kodran/foot-front.svg",
  27533. extra: 261 / 261,
  27534. bottom: 91 / 352
  27535. }
  27536. },
  27537. headFront: {
  27538. height: math.unit(53, "feet"),
  27539. name: "Head (Front)",
  27540. image: {
  27541. source: "./media/characters/kodran/head-front.svg"
  27542. }
  27543. },
  27544. headSide: {
  27545. height: math.unit(65, "feet"),
  27546. name: "Head (Side)",
  27547. image: {
  27548. source: "./media/characters/kodran/head-side.svg"
  27549. }
  27550. },
  27551. throat: {
  27552. height: math.unit(79, "feet"),
  27553. name: "Throat",
  27554. image: {
  27555. source: "./media/characters/kodran/throat.svg"
  27556. }
  27557. },
  27558. },
  27559. [
  27560. {
  27561. name: "Large",
  27562. height: math.unit(106, "feet"),
  27563. default: true
  27564. },
  27565. ]
  27566. ))
  27567. characterMakers.push(() => makeCharacter(
  27568. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27569. {
  27570. side: {
  27571. height: math.unit(11, "feet"),
  27572. weight: math.unit(150, "lb"),
  27573. name: "Side",
  27574. image: {
  27575. source: "./media/characters/pyxaron/side.svg",
  27576. extra: 305 / 195,
  27577. bottom: 17 / 322
  27578. }
  27579. },
  27580. },
  27581. [
  27582. {
  27583. name: "Normal",
  27584. height: math.unit(11, "feet"),
  27585. default: true
  27586. },
  27587. ]
  27588. ))
  27589. characterMakers.push(() => makeCharacter(
  27590. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27591. {
  27592. front: {
  27593. height: math.unit(6, "feet"),
  27594. weight: math.unit(150, "lb"),
  27595. name: "Front",
  27596. image: {
  27597. source: "./media/characters/meep/front.svg",
  27598. extra: 88 / 80,
  27599. bottom: 6 / 94
  27600. }
  27601. },
  27602. },
  27603. [
  27604. {
  27605. name: "Fun Sized",
  27606. height: math.unit(2, "inches"),
  27607. default: true
  27608. },
  27609. {
  27610. name: "Friend Sized",
  27611. height: math.unit(8, "inches")
  27612. },
  27613. ]
  27614. ))
  27615. characterMakers.push(() => makeCharacter(
  27616. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27617. {
  27618. front: {
  27619. height: math.unit(15, "feet"),
  27620. weight: math.unit(2500, "lb"),
  27621. name: "Front",
  27622. image: {
  27623. source: "./media/characters/holly-rabbit/front.svg",
  27624. extra: 1433 / 1233,
  27625. bottom: 125 / 1558
  27626. }
  27627. },
  27628. dick: {
  27629. height: math.unit(4.6, "feet"),
  27630. name: "Dick",
  27631. image: {
  27632. source: "./media/characters/holly-rabbit/dick.svg"
  27633. }
  27634. },
  27635. },
  27636. [
  27637. {
  27638. name: "Normal",
  27639. height: math.unit(15, "feet"),
  27640. default: true
  27641. },
  27642. {
  27643. name: "Macro",
  27644. height: math.unit(250, "feet")
  27645. },
  27646. {
  27647. name: "Macro+",
  27648. height: math.unit(2500, "feet")
  27649. },
  27650. ]
  27651. ))
  27652. characterMakers.push(() => makeCharacter(
  27653. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27654. {
  27655. front: {
  27656. height: math.unit(3.02, "meters"),
  27657. weight: math.unit(500, "kg"),
  27658. name: "Front",
  27659. image: {
  27660. source: "./media/characters/drena/front.svg",
  27661. extra: 282 / 243,
  27662. bottom: 8 / 290
  27663. }
  27664. },
  27665. side: {
  27666. height: math.unit(3.02, "meters"),
  27667. weight: math.unit(500, "kg"),
  27668. name: "Side",
  27669. image: {
  27670. source: "./media/characters/drena/side.svg",
  27671. extra: 280 / 245,
  27672. bottom: 10 / 290
  27673. }
  27674. },
  27675. back: {
  27676. height: math.unit(3.02, "meters"),
  27677. weight: math.unit(500, "kg"),
  27678. name: "Back",
  27679. image: {
  27680. source: "./media/characters/drena/back.svg",
  27681. extra: 278 / 243,
  27682. bottom: 2 / 280
  27683. }
  27684. },
  27685. foot: {
  27686. height: math.unit(0.75, "meters"),
  27687. name: "Foot",
  27688. image: {
  27689. source: "./media/characters/drena/foot.svg"
  27690. }
  27691. },
  27692. maw: {
  27693. height: math.unit(0.82, "meters"),
  27694. name: "Maw",
  27695. image: {
  27696. source: "./media/characters/drena/maw.svg"
  27697. }
  27698. },
  27699. rump: {
  27700. height: math.unit(0.93, "meters"),
  27701. name: "Rump",
  27702. image: {
  27703. source: "./media/characters/drena/rump.svg"
  27704. }
  27705. },
  27706. },
  27707. [
  27708. {
  27709. name: "Normal",
  27710. height: math.unit(3.02, "meters"),
  27711. default: true
  27712. },
  27713. ]
  27714. ))
  27715. characterMakers.push(() => makeCharacter(
  27716. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27717. {
  27718. front: {
  27719. height: math.unit(6 + 4 / 12, "feet"),
  27720. weight: math.unit(250, "lb"),
  27721. name: "Front",
  27722. image: {
  27723. source: "./media/characters/remmyzilla/front.svg",
  27724. extra: 4033 / 3588,
  27725. bottom: 123 / 4156
  27726. }
  27727. },
  27728. back: {
  27729. height: math.unit(6 + 4 / 12, "feet"),
  27730. weight: math.unit(250, "lb"),
  27731. name: "Back",
  27732. image: {
  27733. source: "./media/characters/remmyzilla/back.svg",
  27734. extra: 2687 / 2555,
  27735. bottom: 48 / 2735
  27736. }
  27737. },
  27738. frontFancy: {
  27739. height: math.unit(6 + 4 / 12, "feet"),
  27740. weight: math.unit(250, "lb"),
  27741. name: "Front (Fancy)",
  27742. image: {
  27743. source: "./media/characters/remmyzilla/front-fancy.svg",
  27744. extra: 4119 / 3419,
  27745. bottom: 237 / 4356
  27746. }
  27747. },
  27748. paw: {
  27749. height: math.unit(1.73, "feet"),
  27750. name: "Paw",
  27751. image: {
  27752. source: "./media/characters/remmyzilla/paw.svg"
  27753. }
  27754. },
  27755. maw: {
  27756. height: math.unit(1.73, "feet"),
  27757. name: "Maw",
  27758. image: {
  27759. source: "./media/characters/remmyzilla/maw.svg"
  27760. }
  27761. },
  27762. },
  27763. [
  27764. {
  27765. name: "Normal",
  27766. height: math.unit(6 + 4 / 12, "feet")
  27767. },
  27768. {
  27769. name: "Minimacro",
  27770. height: math.unit(12 + 8 / 12, "feet")
  27771. },
  27772. {
  27773. name: "Normal",
  27774. height: math.unit(640, "feet"),
  27775. default: true
  27776. },
  27777. {
  27778. name: "Megamacro",
  27779. height: math.unit(6400, "feet")
  27780. },
  27781. {
  27782. name: "Gigamacro",
  27783. height: math.unit(64000, "miles")
  27784. },
  27785. ]
  27786. ))
  27787. characterMakers.push(() => makeCharacter(
  27788. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27789. {
  27790. front: {
  27791. height: math.unit(2.5, "meters"),
  27792. weight: math.unit(300, "lb"),
  27793. name: "Front",
  27794. image: {
  27795. source: "./media/characters/lawrence/front.svg",
  27796. extra: 357 / 335,
  27797. bottom: 30 / 387
  27798. }
  27799. },
  27800. back: {
  27801. height: math.unit(2.5, "meters"),
  27802. weight: math.unit(300, "lb"),
  27803. name: "Back",
  27804. image: {
  27805. source: "./media/characters/lawrence/back.svg",
  27806. extra: 357 / 338,
  27807. bottom: 16 / 373
  27808. }
  27809. },
  27810. head: {
  27811. height: math.unit(0.9, "meter"),
  27812. name: "Head",
  27813. image: {
  27814. source: "./media/characters/lawrence/head.svg"
  27815. }
  27816. },
  27817. maw: {
  27818. height: math.unit(0.7, "meter"),
  27819. name: "Maw",
  27820. image: {
  27821. source: "./media/characters/lawrence/maw.svg"
  27822. }
  27823. },
  27824. footBottom: {
  27825. height: math.unit(0.5, "meter"),
  27826. name: "Foot (Bottom)",
  27827. image: {
  27828. source: "./media/characters/lawrence/foot-bottom.svg"
  27829. }
  27830. },
  27831. footTop: {
  27832. height: math.unit(0.5, "meter"),
  27833. name: "Foot (Top)",
  27834. image: {
  27835. source: "./media/characters/lawrence/foot-top.svg"
  27836. }
  27837. },
  27838. },
  27839. [
  27840. {
  27841. name: "Normal",
  27842. height: math.unit(2.5, "meters"),
  27843. default: true
  27844. },
  27845. {
  27846. name: "Macro",
  27847. height: math.unit(95, "meters")
  27848. },
  27849. {
  27850. name: "Megamacro",
  27851. height: math.unit(150, "km")
  27852. },
  27853. ]
  27854. ))
  27855. characterMakers.push(() => makeCharacter(
  27856. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  27857. {
  27858. front: {
  27859. height: math.unit(4.2, "meters"),
  27860. name: "Front",
  27861. image: {
  27862. source: "./media/characters/sydney/front.svg",
  27863. extra: 1323 / 1277,
  27864. bottom: 111 / 1434
  27865. }
  27866. },
  27867. },
  27868. [
  27869. {
  27870. name: "Normal",
  27871. height: math.unit(4.2, "meters"),
  27872. default: true
  27873. },
  27874. ]
  27875. ))
  27876. characterMakers.push(() => makeCharacter(
  27877. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  27878. {
  27879. back: {
  27880. height: math.unit(201, "feet"),
  27881. name: "Back",
  27882. image: {
  27883. source: "./media/characters/jessica/back.svg",
  27884. extra: 273 / 259,
  27885. bottom: 7 / 280
  27886. }
  27887. },
  27888. },
  27889. [
  27890. {
  27891. name: "Normal",
  27892. height: math.unit(201, "feet"),
  27893. default: true
  27894. },
  27895. {
  27896. name: "Megamacro",
  27897. height: math.unit(8, "miles")
  27898. },
  27899. ]
  27900. ))
  27901. characterMakers.push(() => makeCharacter(
  27902. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  27903. {
  27904. side: {
  27905. height: math.unit(320, "cm"),
  27906. name: "Side",
  27907. image: {
  27908. source: "./media/characters/victoria/side.svg",
  27909. extra: 778 / 346,
  27910. bottom: 56 / 834
  27911. }
  27912. },
  27913. maw: {
  27914. height: math.unit(5.9, "feet"),
  27915. name: "Maw",
  27916. image: {
  27917. source: "./media/characters/victoria/maw.svg"
  27918. }
  27919. },
  27920. },
  27921. [
  27922. {
  27923. name: "Normal",
  27924. height: math.unit(320, "cm"),
  27925. default: true
  27926. },
  27927. ]
  27928. ))
  27929. characterMakers.push(() => makeCharacter(
  27930. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  27931. {
  27932. front: {
  27933. height: math.unit(5 + 6 / 12, "feet"),
  27934. name: "Front",
  27935. image: {
  27936. source: "./media/characters/cat/front.svg",
  27937. extra: 1374 / 1257,
  27938. bottom: 59 / 1433
  27939. }
  27940. },
  27941. back: {
  27942. height: math.unit(5 + 6 / 12, "feet"),
  27943. name: "Back",
  27944. image: {
  27945. source: "./media/characters/cat/back.svg",
  27946. extra: 1337 / 1226,
  27947. bottom: 34 / 1371
  27948. }
  27949. },
  27950. taur: {
  27951. height: math.unit(7, "feet"),
  27952. name: "Taur",
  27953. image: {
  27954. source: "./media/characters/cat/taur.svg",
  27955. extra: 1345 / 1231,
  27956. bottom: 66 / 1411
  27957. }
  27958. },
  27959. lucario: {
  27960. height: math.unit(4, "feet"),
  27961. name: "Lucario",
  27962. image: {
  27963. source: "./media/characters/cat/lucario.svg",
  27964. extra: 1470 / 1318,
  27965. bottom: 65 / 1535
  27966. }
  27967. },
  27968. megaLucario: {
  27969. height: math.unit(4, "feet"),
  27970. name: "Mega Lucario",
  27971. image: {
  27972. source: "./media/characters/cat/mega-lucario.svg",
  27973. extra: 1515 / 1319,
  27974. bottom: 63 / 1578
  27975. }
  27976. },
  27977. nickit: {
  27978. height: math.unit(2, "feet"),
  27979. name: "Nickit",
  27980. image: {
  27981. source: "./media/characters/cat/nickit.svg",
  27982. extra: 1980 / 1585,
  27983. bottom: 102 / 2082
  27984. }
  27985. },
  27986. lopunnyFront: {
  27987. height: math.unit(5, "feet"),
  27988. name: "Lopunny (Front)",
  27989. image: {
  27990. source: "./media/characters/cat/lopunny-front.svg",
  27991. extra: 1782 / 1469,
  27992. bottom: 38 / 1820
  27993. }
  27994. },
  27995. lopunnyBack: {
  27996. height: math.unit(5, "feet"),
  27997. name: "Lopunny (Back)",
  27998. image: {
  27999. source: "./media/characters/cat/lopunny-back.svg",
  28000. extra: 1660 / 1490,
  28001. bottom: 25 / 1685
  28002. }
  28003. },
  28004. },
  28005. [
  28006. {
  28007. name: "Really small",
  28008. height: math.unit(1, "nm")
  28009. },
  28010. {
  28011. name: "Micro",
  28012. height: math.unit(5, "inches")
  28013. },
  28014. {
  28015. name: "Normal",
  28016. height: math.unit(5 + 6 / 12, "feet"),
  28017. default: true
  28018. },
  28019. {
  28020. name: "Macro",
  28021. height: math.unit(50, "feet")
  28022. },
  28023. {
  28024. name: "Macro+",
  28025. height: math.unit(150, "feet")
  28026. },
  28027. {
  28028. name: "Megamacro",
  28029. height: math.unit(100, "miles")
  28030. },
  28031. ]
  28032. ))
  28033. characterMakers.push(() => makeCharacter(
  28034. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28035. {
  28036. front: {
  28037. height: math.unit(63.4, "meters"),
  28038. weight: math.unit(3.28349e+6, "kilograms"),
  28039. name: "Front",
  28040. image: {
  28041. source: "./media/characters/kirina-violet/front.svg",
  28042. extra: 2812 / 2725,
  28043. bottom: 0 / 2812
  28044. }
  28045. },
  28046. back: {
  28047. height: math.unit(63.4, "meters"),
  28048. weight: math.unit(3.28349e+6, "kilograms"),
  28049. name: "Back",
  28050. image: {
  28051. source: "./media/characters/kirina-violet/back.svg",
  28052. extra: 2812 / 2725,
  28053. bottom: 0 / 2812
  28054. }
  28055. },
  28056. mouth: {
  28057. height: math.unit(4.35, "meters"),
  28058. name: "Mouth",
  28059. image: {
  28060. source: "./media/characters/kirina-violet/mouth.svg"
  28061. }
  28062. },
  28063. paw: {
  28064. height: math.unit(5.6, "meters"),
  28065. name: "Paw",
  28066. image: {
  28067. source: "./media/characters/kirina-violet/paw.svg"
  28068. }
  28069. },
  28070. tail: {
  28071. height: math.unit(18, "meters"),
  28072. name: "Tail",
  28073. image: {
  28074. source: "./media/characters/kirina-violet/tail.svg"
  28075. }
  28076. },
  28077. },
  28078. [
  28079. {
  28080. name: "Macro",
  28081. height: math.unit(63.4, "meters"),
  28082. default: true
  28083. },
  28084. ]
  28085. ))
  28086. characterMakers.push(() => makeCharacter(
  28087. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28088. {
  28089. front: {
  28090. height: math.unit(60, "feet"),
  28091. name: "Front",
  28092. image: {
  28093. source: "./media/characters/cat-gigachu/front.svg",
  28094. extra: 1024 / 780,
  28095. bottom: 23 / 1047
  28096. }
  28097. },
  28098. back: {
  28099. height: math.unit(60, "feet"),
  28100. name: "Back",
  28101. image: {
  28102. source: "./media/characters/cat-gigachu/back.svg",
  28103. extra: 1024 / 780,
  28104. bottom: 23 / 1047
  28105. }
  28106. },
  28107. },
  28108. [
  28109. {
  28110. name: "Dynamax",
  28111. height: math.unit(60, "feet"),
  28112. default: true
  28113. },
  28114. ]
  28115. ))
  28116. characterMakers.push(() => makeCharacter(
  28117. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28118. {
  28119. front: {
  28120. height: math.unit(6, "feet"),
  28121. weight: math.unit(150, "lb"),
  28122. name: "Front",
  28123. image: {
  28124. source: "./media/characters/sfaiyan/front.svg",
  28125. extra: 999 / 978,
  28126. bottom: 5 / 1004
  28127. }
  28128. },
  28129. },
  28130. [
  28131. {
  28132. name: "Normal",
  28133. height: math.unit(1.82, "meters")
  28134. },
  28135. {
  28136. name: "Giant",
  28137. height: math.unit(2.27, "km"),
  28138. default: true
  28139. },
  28140. ]
  28141. ))
  28142. characterMakers.push(() => makeCharacter(
  28143. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28144. {
  28145. front: {
  28146. height: math.unit(179, "cm"),
  28147. weight: math.unit(100, "kg"),
  28148. name: "Front",
  28149. image: {
  28150. source: "./media/characters/raunehkeli/front.svg",
  28151. extra: 1934 / 1926,
  28152. bottom: 0 / 1934
  28153. }
  28154. },
  28155. },
  28156. [
  28157. {
  28158. name: "Normal",
  28159. height: math.unit(179, "cm")
  28160. },
  28161. {
  28162. name: "Maximum",
  28163. height: math.unit(575, "meters"),
  28164. default: true
  28165. },
  28166. ]
  28167. ))
  28168. characterMakers.push(() => makeCharacter(
  28169. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28170. {
  28171. front: {
  28172. height: math.unit(6, "feet"),
  28173. weight: math.unit(150, "lb"),
  28174. name: "Front",
  28175. image: {
  28176. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28177. extra: 2625 / 2518,
  28178. bottom: 60 / 2685
  28179. }
  28180. },
  28181. },
  28182. [
  28183. {
  28184. name: "Normal",
  28185. height: math.unit(6 + 2 / 12, "feet"),
  28186. default: true
  28187. },
  28188. {
  28189. name: "Macro",
  28190. height: math.unit(1180, "feet")
  28191. },
  28192. ]
  28193. ))
  28194. characterMakers.push(() => makeCharacter(
  28195. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28196. {
  28197. front: {
  28198. height: math.unit(5 + 6 / 12, "feet"),
  28199. weight: math.unit(108, "lb"),
  28200. name: "Front",
  28201. image: {
  28202. source: "./media/characters/lilith-zott/front.svg",
  28203. extra: 2510 / 2238,
  28204. bottom: 100 / 2610
  28205. }
  28206. },
  28207. frontDressed: {
  28208. height: math.unit(5 + 6 / 12, "feet"),
  28209. weight: math.unit(108, "lb"),
  28210. name: "Front (Dressed)",
  28211. image: {
  28212. source: "./media/characters/lilith-zott/front-dressed.svg",
  28213. extra: 2510 / 2238,
  28214. bottom: 100 / 2610
  28215. }
  28216. },
  28217. },
  28218. [
  28219. {
  28220. name: "Normal",
  28221. height: math.unit(5 + 6 / 12, "feet")
  28222. },
  28223. {
  28224. name: "Macro",
  28225. height: math.unit(200, "feet"),
  28226. default: true
  28227. },
  28228. {
  28229. name: "Macro+",
  28230. height: math.unit(1030, "feet")
  28231. },
  28232. ]
  28233. ))
  28234. characterMakers.push(() => makeCharacter(
  28235. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28236. {
  28237. front: {
  28238. height: math.unit(6, "feet"),
  28239. weight: math.unit(150, "lb"),
  28240. name: "Front",
  28241. image: {
  28242. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28243. extra: 2567 / 2435,
  28244. bottom: 39 / 2606
  28245. }
  28246. },
  28247. frontSuper: {
  28248. height: math.unit(6, "feet"),
  28249. name: "Front (Super)",
  28250. image: {
  28251. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28252. extra: 2567 / 2435,
  28253. bottom: 39 / 2606
  28254. }
  28255. },
  28256. },
  28257. [
  28258. {
  28259. name: "Normal",
  28260. height: math.unit(5 + 10 / 12, "feet")
  28261. },
  28262. {
  28263. name: "Macro",
  28264. height: math.unit(220, "feet"),
  28265. default: true
  28266. },
  28267. {
  28268. name: "Macro+",
  28269. height: math.unit(1100, "feet")
  28270. },
  28271. ]
  28272. ))
  28273. characterMakers.push(() => makeCharacter(
  28274. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28275. {
  28276. front: {
  28277. height: math.unit(100, "miles"),
  28278. name: "Front",
  28279. image: {
  28280. source: "./media/characters/sona/front.svg",
  28281. extra: 2433 / 2201,
  28282. bottom: 53 / 2486
  28283. }
  28284. },
  28285. foot: {
  28286. height: math.unit(16.1, "miles"),
  28287. name: "Foot",
  28288. image: {
  28289. source: "./media/characters/sona/foot.svg"
  28290. }
  28291. },
  28292. },
  28293. [
  28294. {
  28295. name: "Macro",
  28296. height: math.unit(100, "miles"),
  28297. default: true
  28298. },
  28299. ]
  28300. ))
  28301. characterMakers.push(() => makeCharacter(
  28302. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28303. {
  28304. front: {
  28305. height: math.unit(6, "feet"),
  28306. weight: math.unit(150, "lb"),
  28307. name: "Front",
  28308. image: {
  28309. source: "./media/characters/bailey/front.svg",
  28310. extra: 1778 / 1724,
  28311. bottom: 30 / 1808
  28312. }
  28313. },
  28314. },
  28315. [
  28316. {
  28317. name: "Micro",
  28318. height: math.unit(4, "inches")
  28319. },
  28320. {
  28321. name: "Normal",
  28322. height: math.unit(5 + 5 / 12, "feet"),
  28323. default: true
  28324. },
  28325. {
  28326. name: "Macro",
  28327. height: math.unit(250, "feet")
  28328. },
  28329. {
  28330. name: "Megamacro",
  28331. height: math.unit(100, "miles")
  28332. },
  28333. ]
  28334. ))
  28335. characterMakers.push(() => makeCharacter(
  28336. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28337. {
  28338. front: {
  28339. height: math.unit(5 + 2 / 12, "feet"),
  28340. weight: math.unit(120, "lb"),
  28341. name: "Front",
  28342. image: {
  28343. source: "./media/characters/snaps/front.svg",
  28344. extra: 2370 / 2177,
  28345. bottom: 48 / 2418
  28346. }
  28347. },
  28348. back: {
  28349. height: math.unit(5 + 2 / 12, "feet"),
  28350. weight: math.unit(120, "lb"),
  28351. name: "Back",
  28352. image: {
  28353. source: "./media/characters/snaps/back.svg",
  28354. extra: 2408 / 2258,
  28355. bottom: 15 / 2423
  28356. }
  28357. },
  28358. },
  28359. [
  28360. {
  28361. name: "Micro",
  28362. height: math.unit(9, "inches")
  28363. },
  28364. {
  28365. name: "Normal",
  28366. height: math.unit(5 + 2 / 12, "feet"),
  28367. default: true
  28368. },
  28369. {
  28370. name: "Mini Macro",
  28371. height: math.unit(10, "feet")
  28372. },
  28373. ]
  28374. ))
  28375. characterMakers.push(() => makeCharacter(
  28376. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28377. {
  28378. front: {
  28379. height: math.unit(1.8, "meters"),
  28380. weight: math.unit(85, "kg"),
  28381. name: "Front",
  28382. image: {
  28383. source: "./media/characters/azteck/front.svg",
  28384. extra: 2815 / 2625,
  28385. bottom: 89 / 2904
  28386. }
  28387. },
  28388. back: {
  28389. height: math.unit(1.8, "meters"),
  28390. weight: math.unit(85, "kg"),
  28391. name: "Back",
  28392. image: {
  28393. source: "./media/characters/azteck/back.svg",
  28394. extra: 2856 / 2648,
  28395. bottom: 85 / 2941
  28396. }
  28397. },
  28398. frontDressed: {
  28399. height: math.unit(1.8, "meters"),
  28400. weight: math.unit(85, "kg"),
  28401. name: "Front (Dressed)",
  28402. image: {
  28403. source: "./media/characters/azteck/front-dressed.svg",
  28404. extra: 2147 / 2003,
  28405. bottom: 68 / 2215
  28406. }
  28407. },
  28408. head: {
  28409. height: math.unit(0.47, "meters"),
  28410. weight: math.unit(85, "kg"),
  28411. name: "Head",
  28412. image: {
  28413. source: "./media/characters/azteck/head.svg"
  28414. }
  28415. },
  28416. },
  28417. [
  28418. {
  28419. name: "Bite sized",
  28420. height: math.unit(16, "cm")
  28421. },
  28422. {
  28423. name: "Normal",
  28424. height: math.unit(1.8, "meters"),
  28425. default: true
  28426. },
  28427. ]
  28428. ))
  28429. characterMakers.push(() => makeCharacter(
  28430. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28431. {
  28432. front: {
  28433. height: math.unit(6, "feet"),
  28434. weight: math.unit(150, "lb"),
  28435. name: "Front",
  28436. image: {
  28437. source: "./media/characters/pidge/front.svg",
  28438. extra: 620 / 588,
  28439. bottom: 9 / 629
  28440. }
  28441. },
  28442. back: {
  28443. height: math.unit(6, "feet"),
  28444. weight: math.unit(150, "lb"),
  28445. name: "Back",
  28446. image: {
  28447. source: "./media/characters/pidge/back.svg",
  28448. extra: 620 / 588,
  28449. bottom: 9 / 629
  28450. }
  28451. },
  28452. },
  28453. [
  28454. {
  28455. name: "Macro",
  28456. height: math.unit(1, "mile"),
  28457. default: true
  28458. },
  28459. ]
  28460. ))
  28461. characterMakers.push(() => makeCharacter(
  28462. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28463. {
  28464. front: {
  28465. height: math.unit(6, "feet"),
  28466. weight: math.unit(150, "lb"),
  28467. name: "Front",
  28468. image: {
  28469. source: "./media/characters/en/front.svg",
  28470. extra: 1697 / 1563,
  28471. bottom: 103 / 1800
  28472. }
  28473. },
  28474. back: {
  28475. height: math.unit(6, "feet"),
  28476. weight: math.unit(150, "lb"),
  28477. name: "Back",
  28478. image: {
  28479. source: "./media/characters/en/back.svg",
  28480. extra: 1700 / 1570,
  28481. bottom: 51 / 1751
  28482. }
  28483. },
  28484. frontDressed: {
  28485. height: math.unit(6, "feet"),
  28486. weight: math.unit(150, "lb"),
  28487. name: "Front (Dressed)",
  28488. image: {
  28489. source: "./media/characters/en/front-dressed.svg",
  28490. extra: 1697 / 1563,
  28491. bottom: 103 / 1800
  28492. }
  28493. },
  28494. backDressed: {
  28495. height: math.unit(6, "feet"),
  28496. weight: math.unit(150, "lb"),
  28497. name: "Back (Dressed)",
  28498. image: {
  28499. source: "./media/characters/en/back-dressed.svg",
  28500. extra: 1700 / 1570,
  28501. bottom: 51 / 1751
  28502. }
  28503. },
  28504. },
  28505. [
  28506. {
  28507. name: "Macro",
  28508. height: math.unit(210, "feet"),
  28509. default: true
  28510. },
  28511. ]
  28512. ))
  28513. characterMakers.push(() => makeCharacter(
  28514. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28515. {
  28516. front: {
  28517. height: math.unit(6, "feet"),
  28518. weight: math.unit(150, "lb"),
  28519. name: "Front",
  28520. image: {
  28521. source: "./media/characters/haze-orris/front.svg",
  28522. extra: 3975 / 3525,
  28523. bottom: 137 / 4112
  28524. }
  28525. },
  28526. },
  28527. [
  28528. {
  28529. name: "Micro",
  28530. height: math.unit(150, "mm"),
  28531. default: true
  28532. },
  28533. ]
  28534. ))
  28535. characterMakers.push(() => makeCharacter(
  28536. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28537. {
  28538. front: {
  28539. height: math.unit(6, "feet"),
  28540. weight: math.unit(150, "lb"),
  28541. name: "Front",
  28542. image: {
  28543. source: "./media/characters/casselene-yaro/front.svg",
  28544. extra: 4721 / 4541,
  28545. bottom: 82 / 4803
  28546. }
  28547. },
  28548. back: {
  28549. height: math.unit(6, "feet"),
  28550. weight: math.unit(150, "lb"),
  28551. name: "Back",
  28552. image: {
  28553. source: "./media/characters/casselene-yaro/back.svg",
  28554. extra: 4569 / 4377,
  28555. bottom: 69 / 4638
  28556. }
  28557. },
  28558. frontDressed: {
  28559. height: math.unit(6, "feet"),
  28560. weight: math.unit(150, "lb"),
  28561. name: "Front-dressed",
  28562. image: {
  28563. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28564. extra: 4721 / 4541,
  28565. bottom: 82 / 4803
  28566. }
  28567. },
  28568. },
  28569. [
  28570. {
  28571. name: "Macro",
  28572. height: math.unit(190, "feet"),
  28573. default: true
  28574. },
  28575. ]
  28576. ))
  28577. characterMakers.push(() => makeCharacter(
  28578. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28579. {
  28580. front: {
  28581. height: math.unit(6, "feet"),
  28582. weight: math.unit(150, "lb"),
  28583. name: "Front",
  28584. image: {
  28585. source: "./media/characters/myra-rue-delore/front.svg",
  28586. extra: 1340 / 1308,
  28587. bottom: 67 / 1407
  28588. }
  28589. },
  28590. back: {
  28591. height: math.unit(6, "feet"),
  28592. weight: math.unit(150, "lb"),
  28593. name: "Back",
  28594. image: {
  28595. source: "./media/characters/myra-rue-delore/back.svg",
  28596. extra: 1341 / 1310,
  28597. bottom: 40 / 1381
  28598. }
  28599. },
  28600. frontDressed: {
  28601. height: math.unit(6, "feet"),
  28602. weight: math.unit(150, "lb"),
  28603. name: "Front (Dressed)",
  28604. image: {
  28605. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28606. extra: 1340 / 1308,
  28607. bottom: 67 / 1407
  28608. }
  28609. },
  28610. },
  28611. [
  28612. {
  28613. name: "Macro",
  28614. height: math.unit(150, "feet"),
  28615. default: true
  28616. },
  28617. ]
  28618. ))
  28619. characterMakers.push(() => makeCharacter(
  28620. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28621. {
  28622. front: {
  28623. height: math.unit(10, "feet"),
  28624. weight: math.unit(15015, "lb"),
  28625. name: "Front",
  28626. image: {
  28627. source: "./media/characters/fem!plat/front.svg",
  28628. extra: 2799 / 2604,
  28629. bottom: 149 / 2948
  28630. }
  28631. },
  28632. },
  28633. [
  28634. {
  28635. name: "Normal",
  28636. height: math.unit(10, "feet"),
  28637. default: true
  28638. },
  28639. {
  28640. name: "Macro",
  28641. height: math.unit(100, "feet")
  28642. },
  28643. {
  28644. name: "Megamacro",
  28645. height: math.unit(1000, "feet")
  28646. },
  28647. ]
  28648. ))
  28649. characterMakers.push(() => makeCharacter(
  28650. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28651. {
  28652. front: {
  28653. height: math.unit(15 + 5 / 12, "feet"),
  28654. weight: math.unit(4600, "lb"),
  28655. name: "Front",
  28656. image: {
  28657. source: "./media/characters/neapolitan-ananassa/front.svg",
  28658. extra: 2903 / 2736,
  28659. bottom: 0 / 2903
  28660. }
  28661. },
  28662. side: {
  28663. height: math.unit(15 + 5 / 12, "feet"),
  28664. weight: math.unit(4600, "lb"),
  28665. name: "Side",
  28666. image: {
  28667. source: "./media/characters/neapolitan-ananassa/side.svg",
  28668. extra: 2925 / 2719,
  28669. bottom: 0 / 2925
  28670. }
  28671. },
  28672. back: {
  28673. height: math.unit(15 + 5 / 12, "feet"),
  28674. weight: math.unit(4600, "lb"),
  28675. name: "Back",
  28676. image: {
  28677. source: "./media/characters/neapolitan-ananassa/back.svg",
  28678. extra: 2903 / 2736,
  28679. bottom: 0 / 2903
  28680. }
  28681. },
  28682. },
  28683. [
  28684. {
  28685. name: "Normal",
  28686. height: math.unit(15 + 5 / 12, "feet"),
  28687. default: true
  28688. },
  28689. {
  28690. name: "Post-Millenium",
  28691. height: math.unit(35 + 5 / 12, "feet")
  28692. },
  28693. {
  28694. name: "Post-Era",
  28695. height: math.unit(450 + 5 / 12, "feet")
  28696. },
  28697. ]
  28698. ))
  28699. characterMakers.push(() => makeCharacter(
  28700. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28701. {
  28702. front: {
  28703. height: math.unit(300, "meters"),
  28704. weight: math.unit(125000, "tonnes"),
  28705. name: "Front",
  28706. image: {
  28707. source: "./media/characters/pazuzu/front.svg",
  28708. extra: 877 / 794,
  28709. bottom: 47 / 924
  28710. }
  28711. },
  28712. },
  28713. [
  28714. {
  28715. name: "Macro",
  28716. height: math.unit(300, "meters"),
  28717. default: true
  28718. },
  28719. ]
  28720. ))
  28721. characterMakers.push(() => makeCharacter(
  28722. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28723. {
  28724. side: {
  28725. height: math.unit(10 + 7 / 12, "feet"),
  28726. weight: math.unit(2.5, "tons"),
  28727. name: "Side",
  28728. image: {
  28729. source: "./media/characters/aasha/side.svg",
  28730. extra: 1345 / 1245,
  28731. bottom: 111 / 1456
  28732. }
  28733. },
  28734. back: {
  28735. height: math.unit(10 + 7 / 12, "feet"),
  28736. weight: math.unit(2.5, "tons"),
  28737. name: "Back",
  28738. image: {
  28739. source: "./media/characters/aasha/back.svg",
  28740. extra: 1133 / 1057,
  28741. bottom: 257 / 1390
  28742. }
  28743. },
  28744. },
  28745. [
  28746. {
  28747. name: "Normal",
  28748. height: math.unit(10 + 7 / 12, "feet"),
  28749. default: true
  28750. },
  28751. ]
  28752. ))
  28753. characterMakers.push(() => makeCharacter(
  28754. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28755. {
  28756. front: {
  28757. height: math.unit(6 + 3 / 12, "feet"),
  28758. name: "Front",
  28759. image: {
  28760. source: "./media/characters/nevan/front.svg",
  28761. extra: 704 / 704,
  28762. bottom: 28 / 732
  28763. }
  28764. },
  28765. back: {
  28766. height: math.unit(6 + 3 / 12, "feet"),
  28767. name: "Back",
  28768. image: {
  28769. source: "./media/characters/nevan/back.svg",
  28770. extra: 714 / 714,
  28771. bottom: 21 / 735
  28772. }
  28773. },
  28774. frontFlaccid: {
  28775. height: math.unit(6 + 3 / 12, "feet"),
  28776. name: "Front (Flaccid)",
  28777. image: {
  28778. source: "./media/characters/nevan/front-flaccid.svg",
  28779. extra: 704 / 704,
  28780. bottom: 28 / 732
  28781. }
  28782. },
  28783. frontErect: {
  28784. height: math.unit(6 + 3 / 12, "feet"),
  28785. name: "Front (Erect)",
  28786. image: {
  28787. source: "./media/characters/nevan/front-erect.svg",
  28788. extra: 704 / 704,
  28789. bottom: 28 / 732
  28790. }
  28791. },
  28792. backFlaccid: {
  28793. height: math.unit(6 + 3 / 12, "feet"),
  28794. name: "Back (Flaccid)",
  28795. image: {
  28796. source: "./media/characters/nevan/back-flaccid.svg",
  28797. extra: 714 / 714,
  28798. bottom: 21 / 735
  28799. }
  28800. },
  28801. },
  28802. [
  28803. {
  28804. name: "Normal",
  28805. height: math.unit(6 + 3 / 12, "feet"),
  28806. default: true
  28807. },
  28808. ]
  28809. ))
  28810. characterMakers.push(() => makeCharacter(
  28811. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  28812. {
  28813. front: {
  28814. height: math.unit(4, "feet"),
  28815. name: "Front",
  28816. image: {
  28817. source: "./media/characters/arhan/front.svg",
  28818. extra: 3368 / 3133,
  28819. bottom: 0 / 3368
  28820. }
  28821. },
  28822. side: {
  28823. height: math.unit(4, "feet"),
  28824. name: "Side",
  28825. image: {
  28826. source: "./media/characters/arhan/side.svg",
  28827. extra: 3347 / 3105,
  28828. bottom: 0 / 3347
  28829. }
  28830. },
  28831. tongue: {
  28832. height: math.unit(1.42, "feet"),
  28833. name: "Tongue",
  28834. image: {
  28835. source: "./media/characters/arhan/tongue.svg"
  28836. }
  28837. },
  28838. head: {
  28839. height: math.unit(0.85, "feet"),
  28840. name: "Head",
  28841. image: {
  28842. source: "./media/characters/arhan/head.svg"
  28843. }
  28844. },
  28845. },
  28846. [
  28847. {
  28848. name: "Normal",
  28849. height: math.unit(4, "feet"),
  28850. default: true
  28851. },
  28852. ]
  28853. ))
  28854. characterMakers.push(() => makeCharacter(
  28855. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  28856. {
  28857. front: {
  28858. height: math.unit(5 + 7.5 / 12, "feet"),
  28859. weight: math.unit(120, "lb"),
  28860. name: "Front",
  28861. image: {
  28862. source: "./media/characters/digi-duncan/front.svg",
  28863. extra: 330 / 326,
  28864. bottom: 16 / 346
  28865. }
  28866. },
  28867. side: {
  28868. height: math.unit(5 + 7.5 / 12, "feet"),
  28869. weight: math.unit(120, "lb"),
  28870. name: "Side",
  28871. image: {
  28872. source: "./media/characters/digi-duncan/side.svg",
  28873. extra: 341 / 337,
  28874. bottom: 1 / 342
  28875. }
  28876. },
  28877. back: {
  28878. height: math.unit(5 + 7.5 / 12, "feet"),
  28879. weight: math.unit(120, "lb"),
  28880. name: "Back",
  28881. image: {
  28882. source: "./media/characters/digi-duncan/back.svg",
  28883. extra: 330 / 326,
  28884. bottom: 12 / 342
  28885. }
  28886. },
  28887. },
  28888. [
  28889. {
  28890. name: "Speck",
  28891. height: math.unit(0.25, "mm")
  28892. },
  28893. {
  28894. name: "Micro",
  28895. height: math.unit(5, "mm")
  28896. },
  28897. {
  28898. name: "Tiny",
  28899. height: math.unit(0.5, "inches"),
  28900. default: true
  28901. },
  28902. {
  28903. name: "Human",
  28904. height: math.unit(5 + 7.5 / 12, "feet")
  28905. },
  28906. {
  28907. name: "Minigiant",
  28908. height: math.unit(8 + 5.25, "feet")
  28909. },
  28910. {
  28911. name: "Giant",
  28912. height: math.unit(2000, "feet")
  28913. },
  28914. {
  28915. name: "Mega",
  28916. height: math.unit(371.1, "miles")
  28917. },
  28918. ]
  28919. ))
  28920. characterMakers.push(() => makeCharacter(
  28921. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  28922. {
  28923. front: {
  28924. height: math.unit(2, "meters"),
  28925. weight: math.unit(350, "kg"),
  28926. name: "Front",
  28927. image: {
  28928. source: "./media/characters/jagaz-soulbreaker/front.svg",
  28929. extra: 898 / 838,
  28930. bottom: 9 / 907
  28931. }
  28932. },
  28933. },
  28934. [
  28935. {
  28936. name: "Micro",
  28937. height: math.unit(8, "meters")
  28938. },
  28939. {
  28940. name: "Normal",
  28941. height: math.unit(50, "meters"),
  28942. default: true
  28943. },
  28944. {
  28945. name: "Macro",
  28946. height: math.unit(500, "meters")
  28947. },
  28948. ]
  28949. ))
  28950. characterMakers.push(() => makeCharacter(
  28951. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  28952. {
  28953. front: {
  28954. height: math.unit(6 + 6 / 12, "feet"),
  28955. name: "Front",
  28956. image: {
  28957. source: "./media/characters/khardesh/front.svg",
  28958. extra: 888 / 797,
  28959. bottom: 25 / 913
  28960. }
  28961. },
  28962. },
  28963. [
  28964. {
  28965. name: "Normal",
  28966. height: math.unit(6 + 6 / 12, "feet"),
  28967. default: true
  28968. },
  28969. {
  28970. name: "Normal+",
  28971. height: math.unit(4, "meters")
  28972. },
  28973. {
  28974. name: "Macro",
  28975. height: math.unit(50, "meters")
  28976. },
  28977. {
  28978. name: "Macro+",
  28979. height: math.unit(100, "meters")
  28980. },
  28981. {
  28982. name: "Megamacro",
  28983. height: math.unit(20, "km")
  28984. },
  28985. ]
  28986. ))
  28987. characterMakers.push(() => makeCharacter(
  28988. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  28989. {
  28990. front: {
  28991. height: math.unit(6, "feet"),
  28992. weight: math.unit(150, "lb"),
  28993. name: "Front",
  28994. image: {
  28995. source: "./media/characters/kosho/front.svg",
  28996. extra: 1847 / 1847,
  28997. bottom: 86 / 1933
  28998. }
  28999. },
  29000. },
  29001. [
  29002. {
  29003. name: "Second-stage micro",
  29004. height: math.unit(0.5, "inches")
  29005. },
  29006. {
  29007. name: "First-stage micro",
  29008. height: math.unit(6, "inches")
  29009. },
  29010. {
  29011. name: "Normal",
  29012. height: math.unit(6, "feet"),
  29013. default: true
  29014. },
  29015. {
  29016. name: "First-stage macro",
  29017. height: math.unit(72, "feet")
  29018. },
  29019. {
  29020. name: "Second-stage macro",
  29021. height: math.unit(864, "feet")
  29022. },
  29023. ]
  29024. ))
  29025. characterMakers.push(() => makeCharacter(
  29026. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29027. {
  29028. normal: {
  29029. height: math.unit(4 + 6 / 12, "feet"),
  29030. name: "Normal",
  29031. image: {
  29032. source: "./media/characters/hydra/normal.svg",
  29033. extra: 2833 / 2634,
  29034. bottom: 68 / 2901
  29035. }
  29036. },
  29037. smol: {
  29038. height: math.unit(0.705, "inches"),
  29039. name: "Smol",
  29040. image: {
  29041. source: "./media/characters/hydra/smol.svg",
  29042. extra: 2715 / 2540,
  29043. bottom: 0 / 2715
  29044. }
  29045. },
  29046. },
  29047. [
  29048. {
  29049. name: "Normal",
  29050. height: math.unit(4 + 6 / 12, "feet"),
  29051. default: true
  29052. }
  29053. ]
  29054. ))
  29055. characterMakers.push(() => makeCharacter(
  29056. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29057. {
  29058. front: {
  29059. height: math.unit(0.6, "cm"),
  29060. name: "Front",
  29061. image: {
  29062. source: "./media/characters/daz/front.svg",
  29063. extra: 1682 / 1164,
  29064. bottom: 42 / 1724
  29065. }
  29066. },
  29067. },
  29068. [
  29069. {
  29070. name: "Normal",
  29071. height: math.unit(0.6, "cm"),
  29072. default: true
  29073. },
  29074. ]
  29075. ))
  29076. characterMakers.push(() => makeCharacter(
  29077. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29078. {
  29079. front: {
  29080. height: math.unit(6, "feet"),
  29081. weight: math.unit(235, "lb"),
  29082. name: "Front",
  29083. image: {
  29084. source: "./media/characters/theo-pangolin/front.svg",
  29085. extra: 1996 / 1969,
  29086. bottom: 115 / 2111
  29087. }
  29088. },
  29089. back: {
  29090. height: math.unit(6, "feet"),
  29091. weight: math.unit(235, "lb"),
  29092. name: "Back",
  29093. image: {
  29094. source: "./media/characters/theo-pangolin/back.svg",
  29095. extra: 1979 / 1979,
  29096. bottom: 40 / 2019
  29097. }
  29098. },
  29099. feral: {
  29100. height: math.unit(2, "feet"),
  29101. weight: math.unit(30, "lb"),
  29102. name: "Feral",
  29103. image: {
  29104. source: "./media/characters/theo-pangolin/feral.svg",
  29105. extra: 803 / 791,
  29106. bottom: 181 / 984
  29107. }
  29108. },
  29109. footFive: {
  29110. height: math.unit(1.43, "feet"),
  29111. name: "Foot (Five Toes)",
  29112. image: {
  29113. source: "./media/characters/theo-pangolin/foot-five.svg"
  29114. }
  29115. },
  29116. footFour: {
  29117. height: math.unit(1.43, "feet"),
  29118. name: "Foot (Four Toes)",
  29119. image: {
  29120. source: "./media/characters/theo-pangolin/foot-four.svg"
  29121. }
  29122. },
  29123. handFour: {
  29124. height: math.unit(0.81, "feet"),
  29125. name: "Hand (Four Fingers)",
  29126. image: {
  29127. source: "./media/characters/theo-pangolin/hand-four.svg"
  29128. }
  29129. },
  29130. handThree: {
  29131. height: math.unit(0.81, "feet"),
  29132. name: "Hand (Three Fingers)",
  29133. image: {
  29134. source: "./media/characters/theo-pangolin/hand-three.svg"
  29135. }
  29136. },
  29137. headFront: {
  29138. height: math.unit(1.37, "feet"),
  29139. name: "Head (Front)",
  29140. image: {
  29141. source: "./media/characters/theo-pangolin/head-front.svg"
  29142. }
  29143. },
  29144. headSide: {
  29145. height: math.unit(1.43, "feet"),
  29146. name: "Head (Side)",
  29147. image: {
  29148. source: "./media/characters/theo-pangolin/head-side.svg"
  29149. }
  29150. },
  29151. tongue: {
  29152. height: math.unit(2.29, "feet"),
  29153. name: "Tongue",
  29154. image: {
  29155. source: "./media/characters/theo-pangolin/tongue.svg"
  29156. }
  29157. },
  29158. },
  29159. [
  29160. {
  29161. name: "Normal",
  29162. height: math.unit(6, "feet")
  29163. },
  29164. {
  29165. name: "Macro",
  29166. height: math.unit(400, "feet"),
  29167. default: true
  29168. },
  29169. ]
  29170. ))
  29171. characterMakers.push(() => makeCharacter(
  29172. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29173. {
  29174. front: {
  29175. height: math.unit(6, "inches"),
  29176. weight: math.unit(0.036, "kg"),
  29177. name: "Front",
  29178. image: {
  29179. source: "./media/characters/renée/front.svg",
  29180. extra: 900 / 886,
  29181. bottom: 8 / 908
  29182. }
  29183. },
  29184. },
  29185. [
  29186. {
  29187. name: "Nano",
  29188. height: math.unit(1, "nm")
  29189. },
  29190. {
  29191. name: "Micro",
  29192. height: math.unit(1, "mm")
  29193. },
  29194. {
  29195. name: "Normal",
  29196. height: math.unit(6, "inches")
  29197. },
  29198. {
  29199. name: "Macro",
  29200. height: math.unit(2000, "feet"),
  29201. default: true
  29202. },
  29203. {
  29204. name: "Megamacro",
  29205. height: math.unit(2, "km")
  29206. },
  29207. {
  29208. name: "Gigamacro",
  29209. height: math.unit(2000, "km")
  29210. },
  29211. {
  29212. name: "Teramacro",
  29213. height: math.unit(250000, "km")
  29214. },
  29215. ]
  29216. ))
  29217. characterMakers.push(() => makeCharacter(
  29218. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29219. {
  29220. front: {
  29221. height: math.unit(4, "meters"),
  29222. weight: math.unit(150, "kg"),
  29223. name: "Front",
  29224. image: {
  29225. source: "./media/characters/caledvwlch/front.svg",
  29226. extra: 1760 / 1551,
  29227. bottom: 28 / 1788
  29228. }
  29229. },
  29230. side: {
  29231. height: math.unit(4, "meters"),
  29232. weight: math.unit(150, "kg"),
  29233. name: "Side",
  29234. image: {
  29235. source: "./media/characters/caledvwlch/side.svg",
  29236. extra: 1605 / 1536,
  29237. bottom: 31 / 1636
  29238. }
  29239. },
  29240. back: {
  29241. height: math.unit(4, "meters"),
  29242. weight: math.unit(150, "kg"),
  29243. name: "Back",
  29244. image: {
  29245. source: "./media/characters/caledvwlch/back.svg",
  29246. extra: 1635 / 1565,
  29247. bottom: 27 / 1662
  29248. }
  29249. },
  29250. },
  29251. [
  29252. {
  29253. name: "\"Incognito\"",
  29254. height: math.unit(4, "meters")
  29255. },
  29256. {
  29257. name: "Small rampage",
  29258. height: math.unit(600, "meters")
  29259. },
  29260. {
  29261. name: "Mega",
  29262. height: math.unit(30, "km")
  29263. },
  29264. {
  29265. name: "Home-size",
  29266. height: math.unit(50, "km"),
  29267. default: true
  29268. },
  29269. {
  29270. name: "Giga",
  29271. height: math.unit(300, "km")
  29272. },
  29273. {
  29274. name: "Lounging",
  29275. height: math.unit(11000, "km")
  29276. },
  29277. {
  29278. name: "Planet snacking",
  29279. height: math.unit(2000000, "km")
  29280. },
  29281. ]
  29282. ))
  29283. characterMakers.push(() => makeCharacter(
  29284. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29285. {
  29286. front: {
  29287. height: math.unit(6, "feet"),
  29288. weight: math.unit(215, "lb"),
  29289. name: "Front",
  29290. image: {
  29291. source: "./media/characters/sapphire-svell/front.svg",
  29292. extra: 495 / 455,
  29293. bottom: 20 / 515
  29294. }
  29295. },
  29296. back: {
  29297. height: math.unit(6, "feet"),
  29298. weight: math.unit(216, "lb"),
  29299. name: "Back",
  29300. image: {
  29301. source: "./media/characters/sapphire-svell/back.svg",
  29302. extra: 497 / 477,
  29303. bottom: 7 / 504
  29304. }
  29305. },
  29306. maw: {
  29307. height: math.unit(1.57, "feet"),
  29308. name: "Maw",
  29309. image: {
  29310. source: "./media/characters/sapphire-svell/maw.svg"
  29311. }
  29312. },
  29313. foot: {
  29314. height: math.unit(1.07, "feet"),
  29315. name: "Foot",
  29316. image: {
  29317. source: "./media/characters/sapphire-svell/foot.svg"
  29318. }
  29319. },
  29320. toering: {
  29321. height: math.unit(1.7, "inch"),
  29322. name: "Toering",
  29323. image: {
  29324. source: "./media/characters/sapphire-svell/toering.svg"
  29325. }
  29326. },
  29327. },
  29328. [
  29329. {
  29330. name: "Normal",
  29331. height: math.unit(300, "feet"),
  29332. default: true
  29333. },
  29334. {
  29335. name: "Augmented",
  29336. height: math.unit(1250, "feet")
  29337. },
  29338. {
  29339. name: "Unleashed",
  29340. height: math.unit(3000, "feet")
  29341. },
  29342. ]
  29343. ))
  29344. characterMakers.push(() => makeCharacter(
  29345. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29346. {
  29347. side: {
  29348. height: math.unit(2 + 3 / 12, "feet"),
  29349. weight: math.unit(110, "lb"),
  29350. name: "Side",
  29351. image: {
  29352. source: "./media/characters/glitch-flux/side.svg",
  29353. extra: 997 / 805,
  29354. bottom: 20 / 1017
  29355. }
  29356. },
  29357. },
  29358. [
  29359. {
  29360. name: "Normal",
  29361. height: math.unit(2 + 3 / 12, "feet"),
  29362. default: true
  29363. },
  29364. ]
  29365. ))
  29366. characterMakers.push(() => makeCharacter(
  29367. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29368. {
  29369. front: {
  29370. height: math.unit(4, "meters"),
  29371. name: "Front",
  29372. image: {
  29373. source: "./media/characters/mid/front.svg",
  29374. extra: 507 / 476,
  29375. bottom: 17 / 524
  29376. }
  29377. },
  29378. back: {
  29379. height: math.unit(4, "meters"),
  29380. name: "Back",
  29381. image: {
  29382. source: "./media/characters/mid/back.svg",
  29383. extra: 519 / 487,
  29384. bottom: 7 / 526
  29385. }
  29386. },
  29387. stuck: {
  29388. height: math.unit(2.2, "meters"),
  29389. name: "Stuck",
  29390. image: {
  29391. source: "./media/characters/mid/stuck.svg",
  29392. extra: 1951 / 1869,
  29393. bottom: 88 / 2039
  29394. }
  29395. }
  29396. },
  29397. [
  29398. {
  29399. name: "Normal",
  29400. height: math.unit(4, "meters"),
  29401. default: true
  29402. },
  29403. {
  29404. name: "Big",
  29405. height: math.unit(10, "meters")
  29406. },
  29407. {
  29408. name: "Macro",
  29409. height: math.unit(800, "meters")
  29410. },
  29411. {
  29412. name: "Megamacro",
  29413. height: math.unit(100, "km")
  29414. },
  29415. {
  29416. name: "Overgrown",
  29417. height: math.unit(1, "parsec")
  29418. },
  29419. ]
  29420. ))
  29421. characterMakers.push(() => makeCharacter(
  29422. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29423. {
  29424. front: {
  29425. height: math.unit(2.5, "meters"),
  29426. weight: math.unit(225, "kg"),
  29427. name: "Front",
  29428. image: {
  29429. source: "./media/characters/iris/front.svg",
  29430. extra: 3348 / 3251,
  29431. bottom: 205 / 3553
  29432. }
  29433. },
  29434. maw: {
  29435. height: math.unit(0.56, "meter"),
  29436. name: "Maw",
  29437. image: {
  29438. source: "./media/characters/iris/maw.svg"
  29439. }
  29440. },
  29441. },
  29442. [
  29443. {
  29444. name: "Mewter cat",
  29445. height: math.unit(1.2, "meters")
  29446. },
  29447. {
  29448. name: "Minimacro",
  29449. height: math.unit(2.5, "meters"),
  29450. default: true
  29451. },
  29452. {
  29453. name: "Macro",
  29454. height: math.unit(180, "meters")
  29455. },
  29456. {
  29457. name: "Megamacro",
  29458. height: math.unit(2746, "meters")
  29459. },
  29460. ]
  29461. ))
  29462. characterMakers.push(() => makeCharacter(
  29463. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29464. {
  29465. front: {
  29466. height: math.unit(6, "feet"),
  29467. weight: math.unit(135, "lb"),
  29468. name: "Front",
  29469. image: {
  29470. source: "./media/characters/axel/front.svg",
  29471. extra: 908 / 908,
  29472. bottom: 58 / 966
  29473. }
  29474. },
  29475. side: {
  29476. height: math.unit(6, "feet"),
  29477. weight: math.unit(135, "lb"),
  29478. name: "Side",
  29479. image: {
  29480. source: "./media/characters/axel/side.svg",
  29481. extra: 958 / 958,
  29482. bottom: 11 / 969
  29483. }
  29484. },
  29485. back: {
  29486. height: math.unit(6, "feet"),
  29487. weight: math.unit(135, "lb"),
  29488. name: "Back",
  29489. image: {
  29490. source: "./media/characters/axel/back.svg",
  29491. extra: 887 / 887,
  29492. bottom: 34 / 921
  29493. }
  29494. },
  29495. head: {
  29496. height: math.unit(1.07, "feet"),
  29497. name: "Head",
  29498. image: {
  29499. source: "./media/characters/axel/head.svg"
  29500. }
  29501. },
  29502. beak: {
  29503. height: math.unit(1.4, "feet"),
  29504. name: "Beak",
  29505. image: {
  29506. source: "./media/characters/axel/beak.svg"
  29507. }
  29508. },
  29509. beakSide: {
  29510. height: math.unit(1.4, "feet"),
  29511. name: "Beak Side",
  29512. image: {
  29513. source: "./media/characters/axel/beak-side.svg"
  29514. }
  29515. },
  29516. sheath: {
  29517. height: math.unit(0.5, "feet"),
  29518. name: "Sheath",
  29519. image: {
  29520. source: "./media/characters/axel/sheath.svg"
  29521. }
  29522. },
  29523. dick: {
  29524. height: math.unit(0.98, "feet"),
  29525. name: "Dick",
  29526. image: {
  29527. source: "./media/characters/axel/dick.svg"
  29528. }
  29529. },
  29530. },
  29531. [
  29532. {
  29533. name: "Macro",
  29534. height: math.unit(68, "meters"),
  29535. default: true
  29536. },
  29537. ]
  29538. ))
  29539. characterMakers.push(() => makeCharacter(
  29540. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29541. {
  29542. front: {
  29543. height: math.unit(3.5, "meters"),
  29544. weight: math.unit(1200, "kg"),
  29545. name: "Front",
  29546. image: {
  29547. source: "./media/characters/joanna/front.svg",
  29548. extra: 1596 / 1488,
  29549. bottom: 29 / 1625
  29550. }
  29551. },
  29552. back: {
  29553. height: math.unit(3.5, "meters"),
  29554. weight: math.unit(1200, "kg"),
  29555. name: "Back",
  29556. image: {
  29557. source: "./media/characters/joanna/back.svg",
  29558. extra: 1594 / 1495,
  29559. bottom: 26 / 1620
  29560. }
  29561. },
  29562. frontShorts: {
  29563. height: math.unit(3.5, "meters"),
  29564. weight: math.unit(1200, "kg"),
  29565. name: "Front (Shorts)",
  29566. image: {
  29567. source: "./media/characters/joanna/front-shorts.svg",
  29568. extra: 1596 / 1488,
  29569. bottom: 29 / 1625
  29570. }
  29571. },
  29572. frontBiker: {
  29573. height: math.unit(3.5, "meters"),
  29574. weight: math.unit(1200, "kg"),
  29575. name: "Front (Biker)",
  29576. image: {
  29577. source: "./media/characters/joanna/front-biker.svg",
  29578. extra: 1596 / 1488,
  29579. bottom: 29 / 1625
  29580. }
  29581. },
  29582. backBiker: {
  29583. height: math.unit(3.5, "meters"),
  29584. weight: math.unit(1200, "kg"),
  29585. name: "Back (Biker)",
  29586. image: {
  29587. source: "./media/characters/joanna/back-biker.svg",
  29588. extra: 1594 / 1495,
  29589. bottom: 88 / 1682
  29590. }
  29591. },
  29592. bikeLeft: {
  29593. height: math.unit(2.4, "meters"),
  29594. weight: math.unit(1600, "kg"),
  29595. name: "Bike (Left)",
  29596. image: {
  29597. source: "./media/characters/joanna/bike-left.svg",
  29598. extra: 720 / 720,
  29599. bottom: 8 / 728
  29600. }
  29601. },
  29602. bikeRight: {
  29603. height: math.unit(2.4, "meters"),
  29604. weight: math.unit(1600, "kg"),
  29605. name: "Bike (Right)",
  29606. image: {
  29607. source: "./media/characters/joanna/bike-right.svg",
  29608. extra: 720 / 720,
  29609. bottom: 8 / 728
  29610. }
  29611. },
  29612. },
  29613. [
  29614. {
  29615. name: "Incognito",
  29616. height: math.unit(3.5, "meters")
  29617. },
  29618. {
  29619. name: "Casual Big",
  29620. height: math.unit(200, "meters")
  29621. },
  29622. {
  29623. name: "Macro",
  29624. height: math.unit(600, "meters")
  29625. },
  29626. {
  29627. name: "Original",
  29628. height: math.unit(20, "km"),
  29629. default: true
  29630. },
  29631. {
  29632. name: "Giga",
  29633. height: math.unit(400, "km")
  29634. },
  29635. {
  29636. name: "Lounging",
  29637. height: math.unit(1500, "km")
  29638. },
  29639. {
  29640. name: "Planetary",
  29641. height: math.unit(200000, "km")
  29642. },
  29643. ]
  29644. ))
  29645. characterMakers.push(() => makeCharacter(
  29646. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29647. {
  29648. front: {
  29649. height: math.unit(6, "feet"),
  29650. weight: math.unit(150, "lb"),
  29651. name: "Front",
  29652. image: {
  29653. source: "./media/characters/hugo-sigil/front.svg",
  29654. extra: 522 / 500,
  29655. bottom: 2 / 524
  29656. }
  29657. },
  29658. back: {
  29659. height: math.unit(6, "feet"),
  29660. weight: math.unit(150, "lb"),
  29661. name: "Back",
  29662. image: {
  29663. source: "./media/characters/hugo-sigil/back.svg",
  29664. extra: 519 / 495,
  29665. bottom: 5 / 524
  29666. }
  29667. },
  29668. maw: {
  29669. height: math.unit(1.4, "feet"),
  29670. weight: math.unit(150, "lb"),
  29671. name: "Maw",
  29672. image: {
  29673. source: "./media/characters/hugo-sigil/maw.svg"
  29674. }
  29675. },
  29676. feet: {
  29677. height: math.unit(1.56, "feet"),
  29678. weight: math.unit(150, "lb"),
  29679. name: "Feet",
  29680. image: {
  29681. source: "./media/characters/hugo-sigil/feet.svg",
  29682. extra: 177 / 177,
  29683. bottom: 12 / 189
  29684. }
  29685. },
  29686. },
  29687. [
  29688. {
  29689. name: "Normal",
  29690. height: math.unit(6, "feet")
  29691. },
  29692. {
  29693. name: "Macro",
  29694. height: math.unit(200, "feet"),
  29695. default: true
  29696. },
  29697. ]
  29698. ))
  29699. characterMakers.push(() => makeCharacter(
  29700. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29701. {
  29702. front: {
  29703. height: math.unit(6, "feet"),
  29704. weight: math.unit(150, "lb"),
  29705. name: "Front",
  29706. image: {
  29707. source: "./media/characters/peri/front.svg",
  29708. extra: 2354 / 2233,
  29709. bottom: 49 / 2403
  29710. }
  29711. },
  29712. },
  29713. [
  29714. {
  29715. name: "Really Small",
  29716. height: math.unit(1, "nm")
  29717. },
  29718. {
  29719. name: "Micro",
  29720. height: math.unit(4, "inches")
  29721. },
  29722. {
  29723. name: "Normal",
  29724. height: math.unit(7, "inches"),
  29725. default: true
  29726. },
  29727. {
  29728. name: "Macro",
  29729. height: math.unit(400, "feet")
  29730. },
  29731. {
  29732. name: "Megamacro",
  29733. height: math.unit(100, "miles")
  29734. },
  29735. ]
  29736. ))
  29737. characterMakers.push(() => makeCharacter(
  29738. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29739. {
  29740. frontSlim: {
  29741. height: math.unit(7, "feet"),
  29742. name: "Front (Slim)",
  29743. image: {
  29744. source: "./media/characters/issilora/front-slim.svg",
  29745. extra: 529 / 449,
  29746. bottom: 53 / 582
  29747. }
  29748. },
  29749. sideSlim: {
  29750. height: math.unit(7, "feet"),
  29751. name: "Side (Slim)",
  29752. image: {
  29753. source: "./media/characters/issilora/side-slim.svg",
  29754. extra: 570 / 480,
  29755. bottom: 30 / 600
  29756. }
  29757. },
  29758. backSlim: {
  29759. height: math.unit(7, "feet"),
  29760. name: "Back (Slim)",
  29761. image: {
  29762. source: "./media/characters/issilora/back-slim.svg",
  29763. extra: 537 / 455,
  29764. bottom: 46 / 583
  29765. }
  29766. },
  29767. frontBuff: {
  29768. height: math.unit(7, "feet"),
  29769. name: "Front (Buff)",
  29770. image: {
  29771. source: "./media/characters/issilora/front-buff.svg",
  29772. extra: 2310 / 2035,
  29773. bottom: 335 / 2645
  29774. }
  29775. },
  29776. head: {
  29777. height: math.unit(1.94, "feet"),
  29778. name: "Head",
  29779. image: {
  29780. source: "./media/characters/issilora/head.svg"
  29781. }
  29782. },
  29783. },
  29784. [
  29785. {
  29786. name: "Minimum",
  29787. height: math.unit(7, "feet")
  29788. },
  29789. {
  29790. name: "Comfortable",
  29791. height: math.unit(17, "feet")
  29792. },
  29793. {
  29794. name: "Fun Size",
  29795. height: math.unit(47, "feet")
  29796. },
  29797. {
  29798. name: "Natural Macro",
  29799. height: math.unit(137, "feet"),
  29800. default: true
  29801. },
  29802. {
  29803. name: "Maximum Kaiju",
  29804. height: math.unit(397, "feet")
  29805. },
  29806. ]
  29807. ))
  29808. characterMakers.push(() => makeCharacter(
  29809. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  29810. {
  29811. front: {
  29812. height: math.unit(50 + 9/12, "feet"),
  29813. weight: math.unit(32.8, "tons"),
  29814. name: "Front",
  29815. image: {
  29816. source: "./media/characters/irb'iiritaahn/front.svg",
  29817. extra: 1878/1826,
  29818. bottom: 326/2204
  29819. }
  29820. },
  29821. back: {
  29822. height: math.unit(50 + 9/12, "feet"),
  29823. weight: math.unit(32.8, "tons"),
  29824. name: "Back",
  29825. image: {
  29826. source: "./media/characters/irb'iiritaahn/back.svg",
  29827. extra: 2052/2018,
  29828. bottom: 152/2204
  29829. }
  29830. },
  29831. head: {
  29832. height: math.unit(12.86, "feet"),
  29833. name: "Head",
  29834. image: {
  29835. source: "./media/characters/irb'iiritaahn/head.svg"
  29836. }
  29837. },
  29838. maw: {
  29839. height: math.unit(9.66, "feet"),
  29840. name: "Maw",
  29841. image: {
  29842. source: "./media/characters/irb'iiritaahn/maw.svg"
  29843. }
  29844. },
  29845. frontDick: {
  29846. height: math.unit(8.78461, "feet"),
  29847. name: "Front Dick",
  29848. image: {
  29849. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  29850. }
  29851. },
  29852. rearDick: {
  29853. height: math.unit(8.78461, "feet"),
  29854. name: "Rear Dick",
  29855. image: {
  29856. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  29857. }
  29858. },
  29859. rearDickUnfolded: {
  29860. height: math.unit(8.78, "feet"),
  29861. name: "Rear Dick (Unfolded)",
  29862. image: {
  29863. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  29864. }
  29865. },
  29866. wings: {
  29867. height: math.unit(43, "feet"),
  29868. name: "Wings",
  29869. image: {
  29870. source: "./media/characters/irb'iiritaahn/wings.svg"
  29871. }
  29872. },
  29873. },
  29874. [
  29875. {
  29876. name: "Macro",
  29877. height: math.unit(50 + 9/12, "feet"),
  29878. default: true
  29879. },
  29880. ]
  29881. ))
  29882. characterMakers.push(() => makeCharacter(
  29883. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  29884. {
  29885. front: {
  29886. height: math.unit(205, "cm"),
  29887. weight: math.unit(102, "kg"),
  29888. name: "Front",
  29889. image: {
  29890. source: "./media/characters/irbisgreif/front.svg",
  29891. extra: 785/706,
  29892. bottom: 13/798
  29893. }
  29894. },
  29895. back: {
  29896. height: math.unit(205, "cm"),
  29897. weight: math.unit(102, "kg"),
  29898. name: "Back",
  29899. image: {
  29900. source: "./media/characters/irbisgreif/back.svg",
  29901. extra: 713/701,
  29902. bottom: 26/739
  29903. }
  29904. },
  29905. frontDressed: {
  29906. height: math.unit(216, "cm"),
  29907. weight: math.unit(102, "kg"),
  29908. name: "Front-dressed",
  29909. image: {
  29910. source: "./media/characters/irbisgreif/front-dressed.svg",
  29911. extra: 902/776,
  29912. bottom: 14/916
  29913. }
  29914. },
  29915. sideDressed: {
  29916. height: math.unit(195, "cm"),
  29917. weight: math.unit(102, "kg"),
  29918. name: "Side-dressed",
  29919. image: {
  29920. source: "./media/characters/irbisgreif/side-dressed.svg",
  29921. extra: 788/688,
  29922. bottom: 21/809
  29923. }
  29924. },
  29925. backDressed: {
  29926. height: math.unit(216, "cm"),
  29927. weight: math.unit(102, "kg"),
  29928. name: "Back-dressed",
  29929. image: {
  29930. source: "./media/characters/irbisgreif/back-dressed.svg",
  29931. extra: 901/783,
  29932. bottom: 10/911
  29933. }
  29934. },
  29935. dick: {
  29936. height: math.unit(0.49, "feet"),
  29937. name: "Dick",
  29938. image: {
  29939. source: "./media/characters/irbisgreif/dick.svg"
  29940. }
  29941. },
  29942. wingTop: {
  29943. height: math.unit(1.93 , "feet"),
  29944. name: "Wing-top",
  29945. image: {
  29946. source: "./media/characters/irbisgreif/wing-top.svg"
  29947. }
  29948. },
  29949. wingBottom: {
  29950. height: math.unit(1.93 , "feet"),
  29951. name: "Wing-bottom",
  29952. image: {
  29953. source: "./media/characters/irbisgreif/wing-bottom.svg"
  29954. }
  29955. },
  29956. },
  29957. [
  29958. {
  29959. name: "Normal",
  29960. height: math.unit(216, "cm"),
  29961. default: true
  29962. },
  29963. ]
  29964. ))
  29965. characterMakers.push(() => makeCharacter(
  29966. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  29967. {
  29968. front: {
  29969. height: math.unit(6, "feet"),
  29970. weight: math.unit(150, "lb"),
  29971. name: "Front",
  29972. image: {
  29973. source: "./media/characters/pride/front.svg",
  29974. extra: 1299/1230,
  29975. bottom: 18/1317
  29976. }
  29977. },
  29978. },
  29979. [
  29980. {
  29981. name: "Normal",
  29982. height: math.unit(7, "feet")
  29983. },
  29984. {
  29985. name: "Mini-macro",
  29986. height: math.unit(11, "feet")
  29987. },
  29988. {
  29989. name: "Macro",
  29990. height: math.unit(15, "meters"),
  29991. default: true
  29992. },
  29993. {
  29994. name: "Macro+",
  29995. height: math.unit(40, "meters")
  29996. },
  29997. ]
  29998. ))
  29999. characterMakers.push(() => makeCharacter(
  30000. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30001. {
  30002. front: {
  30003. height: math.unit(4 + 2 / 12, "feet"),
  30004. weight: math.unit(95, "lb"),
  30005. name: "Front",
  30006. image: {
  30007. source: "./media/characters/vaelophis-nyx/front.svg",
  30008. extra: 2532/2330,
  30009. bottom: 0/2532
  30010. }
  30011. },
  30012. back: {
  30013. height: math.unit(4 + 2 / 12, "feet"),
  30014. weight: math.unit(95, "lb"),
  30015. name: "Back",
  30016. image: {
  30017. source: "./media/characters/vaelophis-nyx/back.svg",
  30018. extra: 2484/2361,
  30019. bottom: 0/2484
  30020. }
  30021. },
  30022. feralSide: {
  30023. height: math.unit(2 + 1/12, "feet"),
  30024. weight: math.unit(20, "lb"),
  30025. name: "Feral (Side)",
  30026. image: {
  30027. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30028. extra: 1721/1581,
  30029. bottom: 70/1791
  30030. }
  30031. },
  30032. feralLazing: {
  30033. height: math.unit(1.08, "feet"),
  30034. weight: math.unit(20, "lb"),
  30035. name: "Feral (Lazing)",
  30036. image: {
  30037. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30038. extra: 822/822,
  30039. bottom: 248/1070
  30040. }
  30041. },
  30042. ear: {
  30043. height: math.unit(0.416, "feet"),
  30044. name: "Ear",
  30045. image: {
  30046. source: "./media/characters/vaelophis-nyx/ear.svg"
  30047. }
  30048. },
  30049. eye: {
  30050. height: math.unit(0.0748, "feet"),
  30051. name: "Eye",
  30052. image: {
  30053. source: "./media/characters/vaelophis-nyx/eye.svg"
  30054. }
  30055. },
  30056. mouth: {
  30057. height: math.unit(0.378, "feet"),
  30058. name: "Mouth",
  30059. image: {
  30060. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30061. }
  30062. },
  30063. spade: {
  30064. height: math.unit(0.55, "feet"),
  30065. name: "Spade",
  30066. image: {
  30067. source: "./media/characters/vaelophis-nyx/spade.svg"
  30068. }
  30069. },
  30070. },
  30071. [
  30072. {
  30073. name: "Normal",
  30074. height: math.unit(4 + 2/12, "feet"),
  30075. default: true
  30076. },
  30077. ]
  30078. ))
  30079. characterMakers.push(() => makeCharacter(
  30080. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30081. {
  30082. front: {
  30083. height: math.unit(7, "feet"),
  30084. weight: math.unit(231, "lb"),
  30085. name: "Front",
  30086. image: {
  30087. source: "./media/characters/flux/front.svg",
  30088. extra: 919/871,
  30089. bottom: 0/919
  30090. }
  30091. },
  30092. back: {
  30093. height: math.unit(7, "feet"),
  30094. weight: math.unit(231, "lb"),
  30095. name: "Back",
  30096. image: {
  30097. source: "./media/characters/flux/back.svg",
  30098. extra: 1040/992,
  30099. bottom: 0/1040
  30100. }
  30101. },
  30102. frontDressed: {
  30103. height: math.unit(7, "feet"),
  30104. weight: math.unit(231, "lb"),
  30105. name: "Front (Dressed)",
  30106. image: {
  30107. source: "./media/characters/flux/front-dressed.svg",
  30108. extra: 919/871,
  30109. bottom: 0/919
  30110. }
  30111. },
  30112. feralSide: {
  30113. height: math.unit(5, "feet"),
  30114. weight: math.unit(150, "lb"),
  30115. name: "Feral (Side)",
  30116. image: {
  30117. source: "./media/characters/flux/feral-side.svg",
  30118. extra: 598/528,
  30119. bottom: 28/626
  30120. }
  30121. },
  30122. head: {
  30123. height: math.unit(1.585, "feet"),
  30124. name: "Head",
  30125. image: {
  30126. source: "./media/characters/flux/head.svg"
  30127. }
  30128. },
  30129. headSide: {
  30130. height: math.unit(1.74, "feet"),
  30131. name: "Head (Side)",
  30132. image: {
  30133. source: "./media/characters/flux/head-side.svg"
  30134. }
  30135. },
  30136. headSideFire: {
  30137. height: math.unit(1.76, "feet"),
  30138. name: "Head (Side, Fire)",
  30139. image: {
  30140. source: "./media/characters/flux/head-side-fire.svg"
  30141. }
  30142. },
  30143. },
  30144. [
  30145. {
  30146. name: "Normal",
  30147. height: math.unit(7, "feet"),
  30148. default: true
  30149. },
  30150. ]
  30151. ))
  30152. characterMakers.push(() => makeCharacter(
  30153. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30154. {
  30155. front: {
  30156. height: math.unit(9, "feet"),
  30157. weight: math.unit(1012, "lb"),
  30158. name: "Front",
  30159. image: {
  30160. source: "./media/characters/ulfra-lupae/front.svg",
  30161. extra: 1083/1011,
  30162. bottom: 67/1150
  30163. }
  30164. },
  30165. },
  30166. [
  30167. {
  30168. name: "Micro",
  30169. height: math.unit(6, "inches")
  30170. },
  30171. {
  30172. name: "Socializing",
  30173. height: math.unit(6 + 5/12, "feet")
  30174. },
  30175. {
  30176. name: "Normal",
  30177. height: math.unit(9, "feet"),
  30178. default: true
  30179. },
  30180. {
  30181. name: "Macro",
  30182. height: math.unit(150, "feet")
  30183. },
  30184. ]
  30185. ))
  30186. characterMakers.push(() => makeCharacter(
  30187. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30188. {
  30189. front: {
  30190. height: math.unit(5 + 2/12, "feet"),
  30191. weight: math.unit(120, "lb"),
  30192. name: "Front",
  30193. image: {
  30194. source: "./media/characters/timber/front.svg",
  30195. extra: 2814/2705,
  30196. bottom: 181/2995
  30197. }
  30198. },
  30199. },
  30200. [
  30201. {
  30202. name: "Normal",
  30203. height: math.unit(5 + 2/12, "feet"),
  30204. default: true
  30205. },
  30206. ]
  30207. ))
  30208. characterMakers.push(() => makeCharacter(
  30209. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30210. {
  30211. front: {
  30212. height: math.unit(5 + 7/12, "feet"),
  30213. weight: math.unit(220, "lb"),
  30214. name: "Front",
  30215. image: {
  30216. source: "./media/characters/nicki/front.svg",
  30217. extra: 453/419,
  30218. bottom: 7/460
  30219. }
  30220. },
  30221. frontAlt: {
  30222. height: math.unit(5 + 7/12, "feet"),
  30223. weight: math.unit(220, "lb"),
  30224. name: "Front-alt",
  30225. image: {
  30226. source: "./media/characters/nicki/front-alt.svg",
  30227. extra: 435/411,
  30228. bottom: 12/447
  30229. }
  30230. },
  30231. back: {
  30232. height: math.unit(5 + 7/12, "feet"),
  30233. weight: math.unit(220, "lb"),
  30234. name: "Back",
  30235. image: {
  30236. source: "./media/characters/nicki/back.svg",
  30237. extra: 440/413,
  30238. bottom: 19/459
  30239. }
  30240. },
  30241. frontNsfw: {
  30242. height: math.unit(5 + 7/12, "feet"),
  30243. weight: math.unit(220, "lb"),
  30244. name: "Front (NSFW)",
  30245. image: {
  30246. source: "./media/characters/nicki/front-nsfw.svg",
  30247. extra: 453/419,
  30248. bottom: 7/460
  30249. }
  30250. },
  30251. frontNsfwAlt: {
  30252. height: math.unit(5 + 7/12, "feet"),
  30253. weight: math.unit(220, "lb"),
  30254. name: "Front (Alt, NSFW)",
  30255. image: {
  30256. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30257. extra: 435/411,
  30258. bottom: 12/447
  30259. }
  30260. },
  30261. backNsfw: {
  30262. height: math.unit(5 + 7/12, "feet"),
  30263. weight: math.unit(220, "lb"),
  30264. name: "Back (NSFW)",
  30265. image: {
  30266. source: "./media/characters/nicki/back-nsfw.svg",
  30267. extra: 440/413,
  30268. bottom: 19/459
  30269. }
  30270. },
  30271. head: {
  30272. height: math.unit(2.1, "feet"),
  30273. name: "Head",
  30274. image: {
  30275. source: "./media/characters/nicki/head.svg"
  30276. }
  30277. },
  30278. paw: {
  30279. height: math.unit(1.88, "feet"),
  30280. name: "Paw",
  30281. image: {
  30282. source: "./media/characters/nicki/paw.svg"
  30283. }
  30284. },
  30285. },
  30286. [
  30287. {
  30288. name: "Normal",
  30289. height: math.unit(5 + 7/12, "feet"),
  30290. default: true
  30291. },
  30292. ]
  30293. ))
  30294. characterMakers.push(() => makeCharacter(
  30295. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30296. {
  30297. front: {
  30298. height: math.unit(7 + 10/12, "feet"),
  30299. weight: math.unit(3.5, "tons"),
  30300. name: "Front",
  30301. image: {
  30302. source: "./media/characters/lee/front.svg",
  30303. extra: 1773/1615,
  30304. bottom: 86/1859
  30305. }
  30306. },
  30307. hand: {
  30308. height: math.unit(1.78, "feet"),
  30309. name: "Hand",
  30310. image: {
  30311. source: "./media/characters/lee/hand.svg"
  30312. }
  30313. },
  30314. maw: {
  30315. height: math.unit(1.18, "feet"),
  30316. name: "Maw",
  30317. image: {
  30318. source: "./media/characters/lee/maw.svg"
  30319. }
  30320. },
  30321. },
  30322. [
  30323. {
  30324. name: "Normal",
  30325. height: math.unit(7 + 10/12, "feet"),
  30326. default: true
  30327. },
  30328. ]
  30329. ))
  30330. characterMakers.push(() => makeCharacter(
  30331. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30332. {
  30333. front: {
  30334. height: math.unit(9, "feet"),
  30335. name: "Front",
  30336. image: {
  30337. source: "./media/characters/guti/front.svg",
  30338. extra: 4551/4355,
  30339. bottom: 123/4674
  30340. }
  30341. },
  30342. tongue: {
  30343. height: math.unit(1, "feet"),
  30344. name: "Tongue",
  30345. image: {
  30346. source: "./media/characters/guti/tongue.svg"
  30347. }
  30348. },
  30349. paw: {
  30350. height: math.unit(1.18, "feet"),
  30351. name: "Paw",
  30352. image: {
  30353. source: "./media/characters/guti/paw.svg"
  30354. }
  30355. },
  30356. },
  30357. [
  30358. {
  30359. name: "Normal",
  30360. height: math.unit(9, "feet"),
  30361. default: true
  30362. },
  30363. ]
  30364. ))
  30365. characterMakers.push(() => makeCharacter(
  30366. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30367. {
  30368. side: {
  30369. height: math.unit(5, "meters"),
  30370. name: "Side",
  30371. image: {
  30372. source: "./media/characters/vesper/side.svg",
  30373. extra: 1605/1518,
  30374. bottom: 0/1605
  30375. }
  30376. },
  30377. },
  30378. [
  30379. {
  30380. name: "Small",
  30381. height: math.unit(5, "meters")
  30382. },
  30383. {
  30384. name: "Sage",
  30385. height: math.unit(100, "meters"),
  30386. default: true
  30387. },
  30388. {
  30389. name: "Fun Size",
  30390. height: math.unit(600, "meters")
  30391. },
  30392. {
  30393. name: "Goddess",
  30394. height: math.unit(20000, "km")
  30395. },
  30396. {
  30397. name: "Maximum",
  30398. height: math.unit(5, "galaxies")
  30399. },
  30400. ]
  30401. ))
  30402. characterMakers.push(() => makeCharacter(
  30403. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30404. {
  30405. front: {
  30406. height: math.unit(6 + 3/12, "feet"),
  30407. weight: math.unit(190, "lb"),
  30408. name: "Front",
  30409. image: {
  30410. source: "./media/characters/gawain/front.svg",
  30411. extra: 2222/2139,
  30412. bottom: 90/2312
  30413. }
  30414. },
  30415. back: {
  30416. height: math.unit(6 + 3/12, "feet"),
  30417. weight: math.unit(190, "lb"),
  30418. name: "Back",
  30419. image: {
  30420. source: "./media/characters/gawain/back.svg",
  30421. extra: 2199/2111,
  30422. bottom: 73/2272
  30423. }
  30424. },
  30425. },
  30426. [
  30427. {
  30428. name: "Normal",
  30429. height: math.unit(6 + 3/12, "feet"),
  30430. default: true
  30431. },
  30432. ]
  30433. ))
  30434. characterMakers.push(() => makeCharacter(
  30435. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30436. {
  30437. side: {
  30438. height: math.unit(3.5, "meters"),
  30439. weight: math.unit(16000, "lb"),
  30440. name: "Side",
  30441. image: {
  30442. source: "./media/characters/dascalti/side.svg",
  30443. extra: 392/273,
  30444. bottom: 47/439
  30445. }
  30446. },
  30447. breath: {
  30448. height: math.unit(7.4, "feet"),
  30449. name: "Breath",
  30450. image: {
  30451. source: "./media/characters/dascalti/breath.svg"
  30452. }
  30453. },
  30454. fed: {
  30455. height: math.unit(3.6, "meters"),
  30456. weight: math.unit(16000, "lb"),
  30457. name: "Fed",
  30458. image: {
  30459. source: "./media/characters/dascalti/fed.svg",
  30460. extra: 1419/820,
  30461. bottom: 95/1514
  30462. }
  30463. },
  30464. },
  30465. [
  30466. {
  30467. name: "Normal",
  30468. height: math.unit(3.5, "meters"),
  30469. default: true
  30470. },
  30471. ]
  30472. ))
  30473. characterMakers.push(() => makeCharacter(
  30474. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30475. {
  30476. front: {
  30477. height: math.unit(3 + 5/12, "feet"),
  30478. name: "Front",
  30479. image: {
  30480. source: "./media/characters/mauve/front.svg",
  30481. extra: 1126/1033,
  30482. bottom: 65/1191
  30483. }
  30484. },
  30485. side: {
  30486. height: math.unit(3 + 5/12, "feet"),
  30487. name: "Side",
  30488. image: {
  30489. source: "./media/characters/mauve/side.svg",
  30490. extra: 1089/1001,
  30491. bottom: 29/1118
  30492. }
  30493. },
  30494. back: {
  30495. height: math.unit(3 + 5/12, "feet"),
  30496. name: "Back",
  30497. image: {
  30498. source: "./media/characters/mauve/back.svg",
  30499. extra: 1173/1053,
  30500. bottom: 109/1282
  30501. }
  30502. },
  30503. },
  30504. [
  30505. {
  30506. name: "Normal",
  30507. height: math.unit(3 + 5/12, "feet"),
  30508. default: true
  30509. },
  30510. ]
  30511. ))
  30512. characterMakers.push(() => makeCharacter(
  30513. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30514. {
  30515. front: {
  30516. height: math.unit(6 + 3/12, "feet"),
  30517. weight: math.unit(430, "lb"),
  30518. name: "Front",
  30519. image: {
  30520. source: "./media/characters/carlos/front.svg",
  30521. extra: 1964/1913,
  30522. bottom: 70/2034
  30523. }
  30524. },
  30525. },
  30526. [
  30527. {
  30528. name: "Normal",
  30529. height: math.unit(6 + 3/12, "feet"),
  30530. default: true
  30531. },
  30532. ]
  30533. ))
  30534. characterMakers.push(() => makeCharacter(
  30535. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30536. {
  30537. back: {
  30538. height: math.unit(5 + 10/12, "feet"),
  30539. weight: math.unit(200, "lb"),
  30540. name: "Back",
  30541. image: {
  30542. source: "./media/characters/jax/back.svg",
  30543. extra: 764/739,
  30544. bottom: 25/789
  30545. }
  30546. },
  30547. },
  30548. [
  30549. {
  30550. name: "Normal",
  30551. height: math.unit(5 + 10/12, "feet"),
  30552. default: true
  30553. },
  30554. ]
  30555. ))
  30556. characterMakers.push(() => makeCharacter(
  30557. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30558. {
  30559. front: {
  30560. height: math.unit(8, "feet"),
  30561. weight: math.unit(250, "lb"),
  30562. name: "Front",
  30563. image: {
  30564. source: "./media/characters/eikthynir/front.svg",
  30565. extra: 1332/1166,
  30566. bottom: 82/1414
  30567. }
  30568. },
  30569. back: {
  30570. height: math.unit(8, "feet"),
  30571. weight: math.unit(250, "lb"),
  30572. name: "Back",
  30573. image: {
  30574. source: "./media/characters/eikthynir/back.svg",
  30575. extra: 1342/1190,
  30576. bottom: 19/1361
  30577. }
  30578. },
  30579. dick: {
  30580. height: math.unit(2.35, "feet"),
  30581. name: "Dick",
  30582. image: {
  30583. source: "./media/characters/eikthynir/dick.svg"
  30584. }
  30585. },
  30586. },
  30587. [
  30588. {
  30589. name: "Normal",
  30590. height: math.unit(8, "feet"),
  30591. default: true
  30592. },
  30593. ]
  30594. ))
  30595. characterMakers.push(() => makeCharacter(
  30596. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30597. {
  30598. front: {
  30599. height: math.unit(99, "meters"),
  30600. weight: math.unit(13000, "tons"),
  30601. name: "Front",
  30602. image: {
  30603. source: "./media/characters/zlmos/front.svg",
  30604. extra: 2202/1992,
  30605. bottom: 315/2517
  30606. }
  30607. },
  30608. },
  30609. [
  30610. {
  30611. name: "Macro",
  30612. height: math.unit(99, "meters"),
  30613. default: true
  30614. },
  30615. ]
  30616. ))
  30617. characterMakers.push(() => makeCharacter(
  30618. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30619. {
  30620. front: {
  30621. height: math.unit(6 + 5/12, "feet"),
  30622. name: "Front",
  30623. image: {
  30624. source: "./media/characters/purri/front.svg",
  30625. extra: 1698/1610,
  30626. bottom: 32/1730
  30627. }
  30628. },
  30629. frontAlt: {
  30630. height: math.unit(6 + 5/12, "feet"),
  30631. name: "Front (Alt)",
  30632. image: {
  30633. source: "./media/characters/purri/front-alt.svg",
  30634. extra: 450/420,
  30635. bottom: 26/476
  30636. }
  30637. },
  30638. boots: {
  30639. height: math.unit(5.5, "feet"),
  30640. name: "Boots",
  30641. image: {
  30642. source: "./media/characters/purri/boots.svg",
  30643. extra: 905/853,
  30644. bottom: 18/923
  30645. }
  30646. },
  30647. lying: {
  30648. height: math.unit(2, "feet"),
  30649. name: "Lying",
  30650. image: {
  30651. source: "./media/characters/purri/lying.svg",
  30652. extra: 940/843,
  30653. bottom: 146/1086
  30654. }
  30655. },
  30656. devious: {
  30657. height: math.unit(1.77, "feet"),
  30658. name: "Devious",
  30659. image: {
  30660. source: "./media/characters/purri/devious.svg",
  30661. extra: 1440/1155,
  30662. bottom: 147/1587
  30663. }
  30664. },
  30665. bean: {
  30666. height: math.unit(1.94, "feet"),
  30667. name: "Bean",
  30668. image: {
  30669. source: "./media/characters/purri/bean.svg"
  30670. }
  30671. },
  30672. },
  30673. [
  30674. {
  30675. name: "Micro",
  30676. height: math.unit(1, "mm")
  30677. },
  30678. {
  30679. name: "Normal",
  30680. height: math.unit(6 + 5/12, "feet"),
  30681. default: true
  30682. },
  30683. {
  30684. name: "Macro :3c",
  30685. height: math.unit(2, "miles")
  30686. },
  30687. ]
  30688. ))
  30689. characterMakers.push(() => makeCharacter(
  30690. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30691. {
  30692. front: {
  30693. height: math.unit(6 + 2/12, "feet"),
  30694. weight: math.unit(250, "lb"),
  30695. name: "Front",
  30696. image: {
  30697. source: "./media/characters/moonlight/front.svg",
  30698. extra: 1044/908,
  30699. bottom: 56/1100
  30700. }
  30701. },
  30702. paw: {
  30703. height: math.unit(1, "feet"),
  30704. name: "Paw",
  30705. image: {
  30706. source: "./media/characters/moonlight/paw.svg"
  30707. }
  30708. },
  30709. paws: {
  30710. height: math.unit(0.98, "feet"),
  30711. name: "Paws",
  30712. image: {
  30713. source: "./media/characters/moonlight/paws.svg",
  30714. extra: 939/939,
  30715. bottom: 50/989
  30716. }
  30717. },
  30718. mouth: {
  30719. height: math.unit(0.48, "feet"),
  30720. name: "Mouth",
  30721. image: {
  30722. source: "./media/characters/moonlight/mouth.svg"
  30723. }
  30724. },
  30725. },
  30726. [
  30727. {
  30728. name: "Normal",
  30729. height: math.unit(6 + 2/12, "feet"),
  30730. default: true
  30731. },
  30732. {
  30733. name: "Macro",
  30734. height: math.unit(300, "feet")
  30735. },
  30736. {
  30737. name: "Macro+",
  30738. height: math.unit(1, "mile")
  30739. },
  30740. {
  30741. name: "Mt. Moon",
  30742. height: math.unit(5, "miles")
  30743. },
  30744. {
  30745. name: "Megamacro",
  30746. height: math.unit(15, "miles")
  30747. },
  30748. ]
  30749. ))
  30750. characterMakers.push(() => makeCharacter(
  30751. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  30752. {
  30753. back: {
  30754. height: math.unit(6, "feet"),
  30755. weight: math.unit(150, "lb"),
  30756. name: "Back",
  30757. image: {
  30758. source: "./media/characters/sylen/back.svg",
  30759. extra: 1335/1273,
  30760. bottom: 107/1442
  30761. }
  30762. },
  30763. },
  30764. [
  30765. {
  30766. name: "Normal",
  30767. height: math.unit(5 + 5/12, "feet")
  30768. },
  30769. {
  30770. name: "Megamacro",
  30771. height: math.unit(3, "miles"),
  30772. default: true
  30773. },
  30774. ]
  30775. ))
  30776. characterMakers.push(() => makeCharacter(
  30777. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  30778. {
  30779. front: {
  30780. height: math.unit(6, "feet"),
  30781. weight: math.unit(190, "lb"),
  30782. name: "Front",
  30783. image: {
  30784. source: "./media/characters/huttser/front.svg",
  30785. extra: 1152/1058,
  30786. bottom: 23/1175
  30787. }
  30788. },
  30789. side: {
  30790. height: math.unit(6, "feet"),
  30791. weight: math.unit(190, "lb"),
  30792. name: "Side",
  30793. image: {
  30794. source: "./media/characters/huttser/side.svg",
  30795. extra: 1174/1065,
  30796. bottom: 18/1192
  30797. }
  30798. },
  30799. back: {
  30800. height: math.unit(6, "feet"),
  30801. weight: math.unit(190, "lb"),
  30802. name: "Back",
  30803. image: {
  30804. source: "./media/characters/huttser/back.svg",
  30805. extra: 1158/1056,
  30806. bottom: 12/1170
  30807. }
  30808. },
  30809. },
  30810. [
  30811. ]
  30812. ))
  30813. characterMakers.push(() => makeCharacter(
  30814. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  30815. {
  30816. side: {
  30817. height: math.unit(12 + 9/12, "feet"),
  30818. weight: math.unit(15000, "lb"),
  30819. name: "Side",
  30820. image: {
  30821. source: "./media/characters/faan/side.svg",
  30822. extra: 2747/2697,
  30823. bottom: 0/2747
  30824. }
  30825. },
  30826. front: {
  30827. height: math.unit(12 + 9/12, "feet"),
  30828. weight: math.unit(15000, "lb"),
  30829. name: "Front",
  30830. image: {
  30831. source: "./media/characters/faan/front.svg",
  30832. extra: 607/571,
  30833. bottom: 24/631
  30834. }
  30835. },
  30836. head: {
  30837. height: math.unit(2.85, "feet"),
  30838. name: "Head",
  30839. image: {
  30840. source: "./media/characters/faan/head.svg"
  30841. }
  30842. },
  30843. headAlt: {
  30844. height: math.unit(3.13, "feet"),
  30845. name: "Head-alt",
  30846. image: {
  30847. source: "./media/characters/faan/head-alt.svg"
  30848. }
  30849. },
  30850. },
  30851. [
  30852. {
  30853. name: "Normal",
  30854. height: math.unit(12 + 9/12, "feet"),
  30855. default: true
  30856. },
  30857. ]
  30858. ))
  30859. characterMakers.push(() => makeCharacter(
  30860. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  30861. {
  30862. front: {
  30863. height: math.unit(6, "feet"),
  30864. weight: math.unit(300, "lb"),
  30865. name: "Front",
  30866. image: {
  30867. source: "./media/characters/tanio/front.svg",
  30868. extra: 711/673,
  30869. bottom: 25/736
  30870. }
  30871. },
  30872. },
  30873. [
  30874. {
  30875. name: "Normal",
  30876. height: math.unit(6, "feet"),
  30877. default: true
  30878. },
  30879. ]
  30880. ))
  30881. characterMakers.push(() => makeCharacter(
  30882. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  30883. {
  30884. front: {
  30885. height: math.unit(3, "inches"),
  30886. name: "Front",
  30887. image: {
  30888. source: "./media/characters/noboru/front.svg",
  30889. extra: 1039/932,
  30890. bottom: 18/1057
  30891. }
  30892. },
  30893. },
  30894. [
  30895. {
  30896. name: "Micro",
  30897. height: math.unit(3, "inches"),
  30898. default: true
  30899. },
  30900. ]
  30901. ))
  30902. characterMakers.push(() => makeCharacter(
  30903. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  30904. {
  30905. front: {
  30906. height: math.unit(1.85, "meters"),
  30907. weight: math.unit(80, "kg"),
  30908. name: "Front",
  30909. image: {
  30910. source: "./media/characters/daniel-barrett/front.svg",
  30911. extra: 355/337,
  30912. bottom: 9/364
  30913. }
  30914. },
  30915. },
  30916. [
  30917. {
  30918. name: "Pico",
  30919. height: math.unit(0.0433, "mm")
  30920. },
  30921. {
  30922. name: "Nano",
  30923. height: math.unit(1.5, "mm")
  30924. },
  30925. {
  30926. name: "Micro",
  30927. height: math.unit(5.3, "cm"),
  30928. default: true
  30929. },
  30930. {
  30931. name: "Normal",
  30932. height: math.unit(1.85, "meters")
  30933. },
  30934. {
  30935. name: "Macro",
  30936. height: math.unit(64.7, "meters")
  30937. },
  30938. {
  30939. name: "Megamacro",
  30940. height: math.unit(2.26, "km")
  30941. },
  30942. {
  30943. name: "Gigamacro",
  30944. height: math.unit(79, "km")
  30945. },
  30946. {
  30947. name: "Teramacro",
  30948. height: math.unit(2765, "km")
  30949. },
  30950. {
  30951. name: "Petamacro",
  30952. height: math.unit(96678, "km")
  30953. },
  30954. ]
  30955. ))
  30956. characterMakers.push(() => makeCharacter(
  30957. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  30958. {
  30959. front: {
  30960. height: math.unit(30, "meters"),
  30961. weight: math.unit(400, "tons"),
  30962. name: "Front",
  30963. image: {
  30964. source: "./media/characters/zeel/front.svg",
  30965. extra: 2599/2599,
  30966. bottom: 226/2825
  30967. }
  30968. },
  30969. },
  30970. [
  30971. {
  30972. name: "Macro",
  30973. height: math.unit(30, "meters"),
  30974. default: true
  30975. },
  30976. ]
  30977. ))
  30978. characterMakers.push(() => makeCharacter(
  30979. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  30980. {
  30981. front: {
  30982. height: math.unit(6 + 7/12, "feet"),
  30983. weight: math.unit(210, "lb"),
  30984. name: "Front",
  30985. image: {
  30986. source: "./media/characters/tarn/front.svg",
  30987. extra: 3517/3220,
  30988. bottom: 91/3608
  30989. }
  30990. },
  30991. back: {
  30992. height: math.unit(6 + 7/12, "feet"),
  30993. weight: math.unit(210, "lb"),
  30994. name: "Back",
  30995. image: {
  30996. source: "./media/characters/tarn/back.svg",
  30997. extra: 3566/3241,
  30998. bottom: 34/3600
  30999. }
  31000. },
  31001. dick: {
  31002. height: math.unit(1.65, "feet"),
  31003. name: "Dick",
  31004. image: {
  31005. source: "./media/characters/tarn/dick.svg"
  31006. }
  31007. },
  31008. paw: {
  31009. height: math.unit(1.80, "feet"),
  31010. name: "Paw",
  31011. image: {
  31012. source: "./media/characters/tarn/paw.svg"
  31013. }
  31014. },
  31015. tongue: {
  31016. height: math.unit(0.97, "feet"),
  31017. name: "Tongue",
  31018. image: {
  31019. source: "./media/characters/tarn/tongue.svg"
  31020. }
  31021. },
  31022. },
  31023. [
  31024. {
  31025. name: "Micro",
  31026. height: math.unit(4, "inches")
  31027. },
  31028. {
  31029. name: "Normal",
  31030. height: math.unit(6 + 7/12, "feet"),
  31031. default: true
  31032. },
  31033. {
  31034. name: "Macro",
  31035. height: math.unit(300, "feet")
  31036. },
  31037. ]
  31038. ))
  31039. characterMakers.push(() => makeCharacter(
  31040. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31041. {
  31042. front: {
  31043. height: math.unit(5 + 7/12, "feet"),
  31044. weight: math.unit(80, "kg"),
  31045. name: "Front",
  31046. image: {
  31047. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31048. extra: 3023/2865,
  31049. bottom: 33/3056
  31050. }
  31051. },
  31052. back: {
  31053. height: math.unit(5 + 7/12, "feet"),
  31054. weight: math.unit(80, "kg"),
  31055. name: "Back",
  31056. image: {
  31057. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31058. extra: 3020/2886,
  31059. bottom: 30/3050
  31060. }
  31061. },
  31062. dick: {
  31063. height: math.unit(0.98, "feet"),
  31064. name: "Dick",
  31065. image: {
  31066. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31067. }
  31068. },
  31069. anatomy: {
  31070. height: math.unit(2.86, "feet"),
  31071. name: "Anatomy",
  31072. image: {
  31073. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31074. }
  31075. },
  31076. },
  31077. [
  31078. {
  31079. name: "Really Small",
  31080. height: math.unit(2, "inches")
  31081. },
  31082. {
  31083. name: "Micro",
  31084. height: math.unit(5.583, "inches")
  31085. },
  31086. {
  31087. name: "Normal",
  31088. height: math.unit(5 + 7/12, "feet"),
  31089. default: true
  31090. },
  31091. {
  31092. name: "Macro",
  31093. height: math.unit(67, "feet")
  31094. },
  31095. {
  31096. name: "Megamacro",
  31097. height: math.unit(134, "feet")
  31098. },
  31099. ]
  31100. ))
  31101. characterMakers.push(() => makeCharacter(
  31102. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31103. {
  31104. front: {
  31105. height: math.unit(9, "feet"),
  31106. weight: math.unit(120, "lb"),
  31107. name: "Front",
  31108. image: {
  31109. source: "./media/characters/sally/front.svg",
  31110. extra: 1506/1349,
  31111. bottom: 66/1572
  31112. }
  31113. },
  31114. },
  31115. [
  31116. {
  31117. name: "Normal",
  31118. height: math.unit(9, "feet"),
  31119. default: true
  31120. },
  31121. ]
  31122. ))
  31123. characterMakers.push(() => makeCharacter(
  31124. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31125. {
  31126. front: {
  31127. height: math.unit(8, "feet"),
  31128. weight: math.unit(900, "lb"),
  31129. name: "Front",
  31130. image: {
  31131. source: "./media/characters/owen/front.svg",
  31132. extra: 1761/1657,
  31133. bottom: 74/1835
  31134. }
  31135. },
  31136. side: {
  31137. height: math.unit(8, "feet"),
  31138. weight: math.unit(900, "lb"),
  31139. name: "Side",
  31140. image: {
  31141. source: "./media/characters/owen/side.svg",
  31142. extra: 1797/1734,
  31143. bottom: 30/1827
  31144. }
  31145. },
  31146. back: {
  31147. height: math.unit(8, "feet"),
  31148. weight: math.unit(900, "lb"),
  31149. name: "Back",
  31150. image: {
  31151. source: "./media/characters/owen/back.svg",
  31152. extra: 1796/1706,
  31153. bottom: 59/1855
  31154. }
  31155. },
  31156. maw: {
  31157. height: math.unit(1.76, "feet"),
  31158. name: "Maw",
  31159. image: {
  31160. source: "./media/characters/owen/maw.svg"
  31161. }
  31162. },
  31163. },
  31164. [
  31165. {
  31166. name: "Normal",
  31167. height: math.unit(8, "feet"),
  31168. default: true
  31169. },
  31170. ]
  31171. ))
  31172. characterMakers.push(() => makeCharacter(
  31173. { name: "Ryth", species: ["gremlin"], tags: ["anthro"] },
  31174. {
  31175. front: {
  31176. height: math.unit(4, "feet"),
  31177. weight: math.unit(400, "lb"),
  31178. name: "Front",
  31179. image: {
  31180. source: "./media/characters/ryth/front.svg",
  31181. extra: 876/691,
  31182. bottom: 25/901
  31183. }
  31184. },
  31185. },
  31186. [
  31187. {
  31188. name: "Normal",
  31189. height: math.unit(4, "feet"),
  31190. default: true
  31191. },
  31192. ]
  31193. ))
  31194. characterMakers.push(() => makeCharacter(
  31195. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31196. {
  31197. front: {
  31198. height: math.unit(7, "feet"),
  31199. weight: math.unit(180, "lb"),
  31200. name: "Front",
  31201. image: {
  31202. source: "./media/characters/necrolance/front.svg",
  31203. extra: 1062/947,
  31204. bottom: 41/1103
  31205. }
  31206. },
  31207. back: {
  31208. height: math.unit(7, "feet"),
  31209. weight: math.unit(180, "lb"),
  31210. name: "Back",
  31211. image: {
  31212. source: "./media/characters/necrolance/back.svg",
  31213. extra: 1045/984,
  31214. bottom: 14/1059
  31215. }
  31216. },
  31217. wing: {
  31218. height: math.unit(2.67, "feet"),
  31219. name: "Wing",
  31220. image: {
  31221. source: "./media/characters/necrolance/wing.svg"
  31222. }
  31223. },
  31224. },
  31225. [
  31226. {
  31227. name: "Normal",
  31228. height: math.unit(7, "feet"),
  31229. default: true
  31230. },
  31231. ]
  31232. ))
  31233. characterMakers.push(() => makeCharacter(
  31234. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31235. {
  31236. front: {
  31237. height: math.unit(76, "meters"),
  31238. weight: math.unit(30000, "tons"),
  31239. name: "Front",
  31240. image: {
  31241. source: "./media/characters/tyler/front.svg",
  31242. extra: 1640/1640,
  31243. bottom: 114/1754
  31244. }
  31245. },
  31246. },
  31247. [
  31248. {
  31249. name: "Macro",
  31250. height: math.unit(81, "meters"),
  31251. default: true
  31252. },
  31253. ]
  31254. ))
  31255. //characters
  31256. function makeCharacters() {
  31257. const results = [];
  31258. characterMakers.forEach(character => {
  31259. results.push(character());
  31260. });
  31261. return results;
  31262. }