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.
 
 
 

25812 lines
641 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.capacity) {
  29. views[key].attributes.capacity = {
  30. name: "Capacity",
  31. power: 3,
  32. type: "volume",
  33. base: value.capacity
  34. }
  35. }
  36. });
  37. return createEntityMaker(info, views, defaultSizes);
  38. }
  39. const speciesData = {
  40. animal: {
  41. name: "Animal"
  42. },
  43. dog: {
  44. name: "Dog",
  45. parents: [
  46. "canine"
  47. ]
  48. },
  49. canine: {
  50. name: "Canine",
  51. parents: [
  52. "mammal"
  53. ]
  54. },
  55. crux: {
  56. name: "Crux",
  57. parents: [
  58. "mammal"
  59. ]
  60. },
  61. mammal: {
  62. name: "Mammal",
  63. parents: [
  64. "animal"
  65. ]
  66. },
  67. "rough-collie": {
  68. name: "Rough Collie",
  69. parents: [
  70. "dog"
  71. ]
  72. },
  73. dragon: {
  74. name: "Dragon",
  75. parents: [
  76. "reptile"
  77. ]
  78. },
  79. reptile: {
  80. name: "Reptile",
  81. parents: [
  82. "animal"
  83. ]
  84. },
  85. woodpecker: {
  86. name: "Woodpecker",
  87. parents: [
  88. "avian"
  89. ]
  90. },
  91. avian: {
  92. name: "Avian",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. kitsune: {
  98. name: "Kitsune",
  99. parents: [
  100. "fox"
  101. ]
  102. },
  103. fox: {
  104. name: "Fox",
  105. parents: [
  106. "mammal"
  107. ]
  108. },
  109. pokemon: {
  110. name: "Pokemon"
  111. },
  112. tiger: {
  113. name: "Tiger",
  114. parents: [
  115. "cat"
  116. ]
  117. },
  118. cat: {
  119. name: "Cat",
  120. parents: [
  121. "mammal"
  122. ]
  123. },
  124. "blue-jay": {
  125. name: "Blue Jay",
  126. parents: [
  127. "avian"
  128. ]
  129. },
  130. wolf: {
  131. name: "Wolf",
  132. parents: [
  133. "mammal"
  134. ]
  135. },
  136. coyote: {
  137. name: "Coyote",
  138. parents: [
  139. "mammal"
  140. ]
  141. },
  142. raccoon: {
  143. name: "Raccoon",
  144. parents: [
  145. "mammal"
  146. ]
  147. },
  148. weasel: {
  149. name: "Weasel",
  150. parents: [
  151. "mammal"
  152. ]
  153. },
  154. "red-panda": {
  155. name: "Red Panda",
  156. parents: [
  157. "mammal"
  158. ]
  159. },
  160. dolphin: {
  161. name: "Dolphin",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. "african-wild-dog": {
  167. name: "African Wild Dog",
  168. parents: [
  169. "canine"
  170. ]
  171. },
  172. "hyena": {
  173. name: "Hyena",
  174. parents: [
  175. "canine"
  176. ]
  177. },
  178. "carbuncle": {
  179. name: "Carbuncle",
  180. parents: [
  181. "animal"
  182. ]
  183. },
  184. bat: {
  185. name: "Bat",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. "leaf-nosed-bat": {
  191. name: "Leaf-Nosed Bat",
  192. parents: [
  193. "bat"
  194. ]
  195. },
  196. "fish": {
  197. name: "Fish",
  198. parents: [
  199. "animal"
  200. ]
  201. },
  202. "ram": {
  203. name: "Ram",
  204. parents: [
  205. "mammal"
  206. ]
  207. },
  208. "demon": {
  209. name: "Demon"
  210. },
  211. "cougar": {
  212. name: "Cougar",
  213. parents: [
  214. "cat"
  215. ]
  216. },
  217. "goat": {
  218. name: "Goat",
  219. parents: [
  220. "mammal"
  221. ]
  222. },
  223. "lion": {
  224. name: "Lion",
  225. parents: [
  226. "cat"
  227. ]
  228. },
  229. "harpy-eager": {
  230. name: "Harpy Eagle",
  231. parents: [
  232. "avian"
  233. ]
  234. },
  235. "deer": {
  236. name: "Deer",
  237. parents: [
  238. "mammal"
  239. ]
  240. },
  241. "phoenix": {
  242. name: "Phoenix",
  243. parents: [
  244. "avian"
  245. ]
  246. },
  247. "aeromorph": {
  248. name: "Aeromorph",
  249. parents: [
  250. "machine"
  251. ]
  252. },
  253. "machine": {
  254. name: "Machine",
  255. },
  256. "android": {
  257. name: "Android",
  258. parents: [
  259. "machine"
  260. ]
  261. },
  262. "jackal": {
  263. name: "Jackal",
  264. parents: [
  265. "canine"
  266. ]
  267. },
  268. "corvid": {
  269. name: "Corvid",
  270. parents: [
  271. "avian"
  272. ]
  273. },
  274. "pharaoh-hound": {
  275. name: "Pharaoh Hound",
  276. parents: [
  277. "dog"
  278. ]
  279. },
  280. "skunk": {
  281. name: "Skunk",
  282. parents: [
  283. "mammal"
  284. ]
  285. },
  286. "shark": {
  287. name: "Shark",
  288. parents: [
  289. "fish"
  290. ]
  291. },
  292. "black-panther": {
  293. name: "Black Panther",
  294. parents: [
  295. "cat"
  296. ]
  297. },
  298. "umbra": {
  299. name: "Umbra",
  300. parents: [
  301. "animal"
  302. ]
  303. },
  304. "raven": {
  305. name: "Raven",
  306. parents: [
  307. "corvid"
  308. ]
  309. },
  310. "snow-leopard": {
  311. name: "Snow Leopard",
  312. parents: [
  313. "cat"
  314. ]
  315. },
  316. "barbary-lion": {
  317. name: "Barbary Lion",
  318. parents: [
  319. "lion"
  320. ]
  321. },
  322. "dra'gal": {
  323. name: "Dra'Gal",
  324. parents: [
  325. "mammal"
  326. ]
  327. },
  328. "german-shepherd": {
  329. name: "German Shepherd",
  330. parents: [
  331. "dog"
  332. ]
  333. },
  334. "bayleef": {
  335. name: "Bayleef",
  336. parents: [
  337. "pokemon"
  338. ]
  339. },
  340. "mouse": {
  341. name: "Mouse",
  342. parents: [
  343. "rodent"
  344. ]
  345. },
  346. "rat": {
  347. name: "Rat",
  348. parents: [
  349. "mammal"
  350. ]
  351. },
  352. "hoshiko-beast": {
  353. name: "Hoshiko Beast",
  354. parents: ["animal"]
  355. },
  356. "snow-jugani": {
  357. name: "Snow Jugani",
  358. parents: ["cat"]
  359. },
  360. "patamon": {
  361. name: "Patamon",
  362. parents: ["digimon"]
  363. },
  364. "digimon": {
  365. name: "Digimon",
  366. },
  367. "jugani": {
  368. name: "Jugani",
  369. parents: ["cat"]
  370. },
  371. "luxray": {
  372. name: "Luxray",
  373. parents: ["pokemon"]
  374. },
  375. "mech": {
  376. name: "Mech",
  377. parents: ["machine"]
  378. },
  379. "zoid": {
  380. name: "Zoid",
  381. parents: ["mech"]
  382. },
  383. "monster": {
  384. name: "Monster",
  385. parents: ["animal"]
  386. },
  387. "foo-dog": {
  388. name: "Foo Dog",
  389. parents: ["mammal"]
  390. },
  391. "elephant": {
  392. name: "Elephant",
  393. parents: ["mammal"]
  394. },
  395. "eagle": {
  396. name: "Eagle",
  397. parents: ["avian"]
  398. },
  399. "cow": {
  400. name: "Cow",
  401. parents: ["mammal"]
  402. },
  403. "crocodile": {
  404. name: "Crocodile",
  405. parents: ["reptile"]
  406. },
  407. "borzoi": {
  408. name: "Borzoi",
  409. parents: ["dog"]
  410. },
  411. "snake": {
  412. name: "Snake",
  413. parents: ["reptile"]
  414. },
  415. "horned-bush-viper": {
  416. name: "Horned Bush Viper",
  417. parents: ["snake"]
  418. },
  419. "cobra": {
  420. name: "Cobra",
  421. parents: ["snake"]
  422. },
  423. "harpy-eagle": {
  424. name: "Harpy Eagle",
  425. parents: ["eagle"]
  426. },
  427. "raptor": {
  428. name: "Raptor",
  429. parents: ["dinosaur"]
  430. },
  431. "dinosaur": {
  432. name: "Dinosaur",
  433. parents: ["reptile"]
  434. },
  435. "veilhound": {
  436. name: "Veilhound",
  437. parents: ["hellhound", "demon"]
  438. },
  439. "hellhound": {
  440. name: "Hellhound",
  441. parents: ["canine"]
  442. },
  443. "insect": {
  444. name: "Insect",
  445. parents: ["animal"]
  446. },
  447. "beetle": {
  448. name: "Beetle",
  449. parents: ["insect"]
  450. },
  451. "moth": {
  452. name: "Moth",
  453. parents: ["insect"]
  454. },
  455. "eastern-dragon": {
  456. name: "Eastern Dragon",
  457. parents: ["dragon"]
  458. },
  459. "jaguar": {
  460. name: "Jaguar",
  461. parents: ["cat"]
  462. },
  463. "horse": {
  464. name: "Horse",
  465. parents: ["mammal"]
  466. },
  467. "sergal": {
  468. name: "Sergal",
  469. parents: ["mammal"]
  470. },
  471. "gryphon": {
  472. name: "Gryphon",
  473. parents: ["lion", "eagle"]
  474. },
  475. "robot": {
  476. name: "Robot",
  477. parents: ["machine"]
  478. },
  479. "medihound": {
  480. name: "Medihound",
  481. parents: ["robot", "dog"]
  482. },
  483. "sylveon": {
  484. name: "Sylveon",
  485. parents: ["pokemon"]
  486. },
  487. "catgirl": {
  488. name: "Catgirl",
  489. parents: ["mammal"]
  490. },
  491. "cowgirl": {
  492. name: "Cowgirl",
  493. parents: ["mammal"]
  494. },
  495. "pony": {
  496. name: "Pony",
  497. parents: ["horse"]
  498. },
  499. "rabbit": {
  500. name: "Rabbit",
  501. parents: ["mammal"]
  502. },
  503. "fennec-fox": {
  504. name: "Fennec Fox",
  505. parents: ["fox"]
  506. },
  507. "azodian": {
  508. name: "Azodian",
  509. parents: ["mouse"]
  510. },
  511. "shiba-inu": {
  512. name: "Shiba Inu",
  513. parents: ["dog"]
  514. },
  515. "changeling": {
  516. name: "Changeling",
  517. parents: ["insect"]
  518. },
  519. "cheetah": {
  520. name: "Cheetah",
  521. parents: ["cat"]
  522. },
  523. "golden-jackal": {
  524. name: "Golden Jackal",
  525. parents: ["jackal"]
  526. },
  527. "manectric": {
  528. name: "Manectric",
  529. parents: ["pokemon"]
  530. },
  531. "rat": {
  532. name: "Rat",
  533. parents: ["rodent"]
  534. },
  535. "rodent": {
  536. name: "Rodent",
  537. parents: ["mammal"]
  538. },
  539. "octocoon": {
  540. name: "Octocoon",
  541. parents: ["raccoon", "octopus"]
  542. },
  543. "octopus": {
  544. name: "Octopus",
  545. parents: ["fish"]
  546. },
  547. "werewolf": {
  548. name: "Werewolf",
  549. parents: ["wolf"]
  550. },
  551. "meerkat": {
  552. name: "Meerkat",
  553. parents: ["mammal"]
  554. },
  555. "human": {
  556. name: "Human",
  557. parents: ["mammal"]
  558. },
  559. "geth": {
  560. name: "Geth",
  561. parents: ["android"]
  562. },
  563. "husky": {
  564. name: "Husky",
  565. parents: ["dog"]
  566. },
  567. "long-eared-bat": {
  568. name: "Long Eared Bat",
  569. parents: ["bat"]
  570. },
  571. "lizard": {
  572. name: "Lizard",
  573. parents: ["reptile"]
  574. },
  575. "salamander": {
  576. name: "Salamander",
  577. parents: ["lizard"]
  578. },
  579. "chameleon": {
  580. name: "Chameleon",
  581. parents: ["lizard"]
  582. },
  583. "gecko": {
  584. name: "Gecko",
  585. parents: ["lizard"]
  586. },
  587. "kobold": {
  588. name: "Kobold",
  589. parents: ["reptile"]
  590. },
  591. "charizard": {
  592. name: "Charizard",
  593. parents: ["pokemon"]
  594. },
  595. "lugia": {
  596. name: "Lugia",
  597. parents: ["pokemon"]
  598. },
  599. "cerberus": {
  600. name: "Cerberus",
  601. parents: ["dog"]
  602. },
  603. "tyrantrum": {
  604. name: "Tyrantrum",
  605. parents: ["pokemon"]
  606. },
  607. "lemur": {
  608. name: "Lemur",
  609. parents: ["mammal"]
  610. },
  611. "kelpie": {
  612. name: "Kelpie",
  613. parents: ["horse", "monster"]
  614. },
  615. "labrador": {
  616. name: "Labrador",
  617. parents: ["dog"]
  618. },
  619. "sylveon": {
  620. name: "Sylveon",
  621. parents: ["eeveelution"]
  622. },
  623. "eeveelution": {
  624. name: "Eeveelution",
  625. parents: ["pokemon"]
  626. },
  627. "polar-bear": {
  628. name: "Polar Bear",
  629. parents: ["bear"]
  630. },
  631. "bear": {
  632. name: "Bear",
  633. parents: ["mammal"]
  634. },
  635. "absol": {
  636. name: "Absol",
  637. parents: ["pokemon"]
  638. },
  639. "wolver": {
  640. name: "Wolver",
  641. parents: ["mammal"]
  642. },
  643. "rottweiler": {
  644. name: "Rottweiler",
  645. parents: ["dog"]
  646. },
  647. "zebra": {
  648. name: "Zebra",
  649. parents: ["horse"]
  650. },
  651. "yoshi": {
  652. name: "Yoshi",
  653. parents: ["lizard"]
  654. },
  655. "lynx": {
  656. name: "Lynx",
  657. parents: ["cat"]
  658. },
  659. "unknown": {
  660. name: "Unknown",
  661. parents: []
  662. },
  663. "thylacine": {
  664. name: "Thylacine",
  665. parents: ["mammal"]
  666. },
  667. "gabumon": {
  668. name: "Gabumon",
  669. parents: ["digimon"]
  670. },
  671. "border-collie": {
  672. name: "Border Collie",
  673. parents: ["dog"]
  674. },
  675. "imp": {
  676. name: "Imp",
  677. parents: ["demon"]
  678. },
  679. "kangaroo": {
  680. name: "Kangaroo",
  681. parents: ["mammal"]
  682. },
  683. "renamon": {
  684. name: "Renamon",
  685. parents: ["digimon"]
  686. },
  687. "candy-orca-dragon": {
  688. name: "Candy Orca Dragon",
  689. parents: ["fish", "dragon"]
  690. },
  691. "sabertooth-tiger": {
  692. name: "Sabertooth Tiger",
  693. parents: ["cat"]
  694. },
  695. "espurr": {
  696. name: "Espurr",
  697. parents: ["pokemon"]
  698. },
  699. "otter": {
  700. name: "Otter",
  701. parents: ["mammal"]
  702. },
  703. "elemental": {
  704. name: "Elemental",
  705. parents: ["mammal"]
  706. },
  707. "mew": {
  708. name: "Mew",
  709. parents: ["pokemon"]
  710. },
  711. "goodra": {
  712. name: "Goodra",
  713. parents: ["pokemon"]
  714. },
  715. "fairy": {
  716. name: "Fairy",
  717. parents: ["magical"]
  718. },
  719. "typhlosion": {
  720. name: "Typhlosion",
  721. parents: ["pokemon"]
  722. },
  723. "magical": {
  724. name: "Magical",
  725. parents: []
  726. },
  727. "xenomorph": {
  728. name: "Xenomorph",
  729. parents: ["monster", "alien"]
  730. },
  731. "charr": {
  732. name: "Charr",
  733. parents: ["cat"]
  734. },
  735. "siberian-husky": {
  736. name: "Siberian Husky",
  737. parents: ["husky"]
  738. },
  739. "alligator": {
  740. name: "Alligator",
  741. parents: ["reptile"]
  742. },
  743. "bernese-mountain-dog": {
  744. name: "Bernese Mountain Dog",
  745. parents: ["dog"]
  746. },
  747. "reshiram": {
  748. name: "Reshiram",
  749. parents: ["pokemon"]
  750. },
  751. "grizzly-bear": {
  752. name: "Grizzly Bear",
  753. parents: ["bear"]
  754. },
  755. "water-monitor": {
  756. name: "Water Monitor",
  757. parents: ["lizard"]
  758. },
  759. "banchofossa": {
  760. name: "Banchofossa",
  761. parents: ["mammal"]
  762. },
  763. "kirin": {
  764. name: "Kirin",
  765. parents: ["monster"]
  766. },
  767. "quilava": {
  768. name: "Quilava",
  769. parents: ["pokemon"]
  770. },
  771. "seviper": {
  772. name: "Seviper",
  773. parents: ["pokemon"]
  774. },
  775. "flying-fox": {
  776. name: "Flying Fox",
  777. parents: ["bat"]
  778. },
  779. "keynain": {
  780. name: "Keynain",
  781. parents: ["avian"]
  782. },
  783. "lucario": {
  784. name: "Lucario",
  785. parents: ["pokemon"]
  786. },
  787. "siamese-cat": {
  788. name: "Siamese Cat",
  789. parents: ["cat"]
  790. },
  791. "spider": {
  792. name: "Spider",
  793. parents: ["insect"]
  794. },
  795. "samurott": {
  796. name: "Samurott",
  797. parents: ["pokemon"]
  798. },
  799. "megalodon": {
  800. name: "Megalodon",
  801. parents: ["shark"]
  802. },
  803. "unicorn": {
  804. name: "Unicorn",
  805. parents: ["horse"]
  806. },
  807. "greninja": {
  808. name: "Greninja",
  809. parents: ["pokemon"]
  810. },
  811. "water-dragon": {
  812. name: "Water Dragon",
  813. parents: ["dragon"]
  814. },
  815. "cross-fox": {
  816. name: "Cross Fox",
  817. parents: ["fox"]
  818. },
  819. "synth": {
  820. name: "Synth",
  821. parents: ["machine"]
  822. },
  823. "construct": {
  824. name: "Construct",
  825. parents: []
  826. },
  827. "mexican-wolf": {
  828. name: "Mexican Wolf",
  829. parents: ["wolf"]
  830. },
  831. "leopard": {
  832. name: "Leopard",
  833. parents: ["cat"]
  834. },
  835. "pig": {
  836. name: "Pig",
  837. parents: ["mammal"]
  838. },
  839. "ampharos": {
  840. name: "Ampharos",
  841. parents: ["pokemon"]
  842. },
  843. "orca": {
  844. name: "Orca",
  845. parents: ["fish"]
  846. },
  847. "lycanroc": {
  848. name: "Lycanroc",
  849. parents: ["pokemon"]
  850. },
  851. "surkanu": {
  852. name: "Surkanu",
  853. parents: ["monster"]
  854. },
  855. "seal": {
  856. name: "Seal",
  857. parents: ["mammal"]
  858. },
  859. "keldeo": {
  860. name: "Keldeo",
  861. parents: ["pokemon"]
  862. },
  863. "great-dane": {
  864. name: "Great Dane",
  865. parents: ["dog"]
  866. },
  867. "black-backed-jackal": {
  868. name: "Black Backed Jackal",
  869. parents: ["jackal"]
  870. },
  871. "sheep": {
  872. name: "Sheep",
  873. parents: ["mammal"]
  874. },
  875. "leopard-seal": {
  876. name: "Leopard Seal",
  877. parents: ["seal"]
  878. },
  879. "zoroark": {
  880. name: "Zoroark",
  881. parents: ["pokemon"]
  882. },
  883. "maned-wolf": {
  884. name: "Maned Wolf",
  885. parents: ["canine"]
  886. },
  887. "dracha": {
  888. name: "Dracha",
  889. parents: ["dragon"]
  890. },
  891. "wolxi": {
  892. name: "Wolxi",
  893. parents: ["mammal", "alien"]
  894. },
  895. "dratini": {
  896. name: "Dratini",
  897. parents: ["pokemon", "dragon"]
  898. },
  899. "skaven": {
  900. name: "Skaven",
  901. parents: ["rat"]
  902. },
  903. "mongoose": {
  904. name: "Mongoose",
  905. parents: ["mammal"]
  906. },
  907. "lopunny": {
  908. name: "Lopunny",
  909. parents: ["pokemon", "rabbit"]
  910. },
  911. "feraligatr": {
  912. name: "Feraligatr",
  913. parents: ["pokemon", "alligator"]
  914. },
  915. "houndoom": {
  916. name: "Houndoom",
  917. parents: ["pokemon", "dog"]
  918. },
  919. "protogen": {
  920. name: "Protogen",
  921. parents: ["machine"]
  922. },
  923. "saint-bernard": {
  924. name: "Saint Bernard",
  925. parents: ["dog"]
  926. },
  927. "crow": {
  928. name: "Crow",
  929. parents: ["corvid"]
  930. },
  931. "delphox": {
  932. name: "Delphox",
  933. parents: ["pokemon", "fox"]
  934. },
  935. "moose": {
  936. name: "Moose",
  937. parents: ["mammal"]
  938. },
  939. "joraxian": {
  940. name: "Joraxian",
  941. parents: ["monster", "canine", "demon"]
  942. },
  943. "nimbat": {
  944. name: "Nimbat",
  945. parents: ["mammal"]
  946. },
  947. "aardwolf": {
  948. name: "Aardwolf",
  949. parents: ["canine"]
  950. },
  951. "fluudrani": {
  952. name: "Fluudrani",
  953. parents: ["animal"]
  954. },
  955. "arcanine": {
  956. name: "Arcanine",
  957. parents: ["pokemon", "dog"]
  958. },
  959. "inteleon": {
  960. name: "Inteleon",
  961. parents: ["pokemon", "fish"]
  962. },
  963. "ninetales": {
  964. name: "Ninetales",
  965. parents: ["pokemon", "kitsune"]
  966. },
  967. "tigrex": {
  968. name: "Tigrex",
  969. parents: ["tiger"]
  970. },
  971. "zorua": {
  972. name: "Zorua",
  973. parents: ["pokemon", "fox"]
  974. },
  975. "vulpix": {
  976. name: "Vulpix",
  977. parents: ["pokemon", "fox"]
  978. },
  979. "barghest": {
  980. name: "Barghest",
  981. parents: ["monster"]
  982. },
  983. "gray-wolf": {
  984. name: "Gray Wolf",
  985. parents: ["wolf"]
  986. },
  987. "ruppells-fox": {
  988. name: "Rüppell's Fox",
  989. parents: ["fox"]
  990. },
  991. "bull-terrier": {
  992. name: "Bull Terrier",
  993. parents: ["dog"]
  994. },
  995. "european-honey-buzzard": {
  996. name: "European Honey Buzzard",
  997. parents: ["avian"]
  998. },
  999. "t-rex": {
  1000. name: "T Rex",
  1001. parents: ["dinosaur"]
  1002. },
  1003. "mactarian": {
  1004. name: "Mactarian",
  1005. parents: ["shark", "monster"]
  1006. },
  1007. "mewtwo-y": {
  1008. name: "Mewtwo Y",
  1009. parents: ["mewtwo"]
  1010. },
  1011. "mewtwo": {
  1012. name: "Mewtwo",
  1013. parents: ["pokemon"]
  1014. },
  1015. "mew": {
  1016. name: "Mew",
  1017. parents: ["pokemon"]
  1018. },
  1019. "eevee": {
  1020. name: "Eevee",
  1021. parents: ["eeveelution"]
  1022. },
  1023. "mienshao": {
  1024. name: "Mienshao",
  1025. parents: ["pokemon"]
  1026. },
  1027. "sugar-glider": {
  1028. name: "Sugar Glider",
  1029. parents: ["opossum"]
  1030. },
  1031. "spectral-bat": {
  1032. name: "Spectral Bat",
  1033. parents: ["bat"]
  1034. },
  1035. "scolipede": {
  1036. name: "Scolipede",
  1037. parents: ["pokemon", "insect"]
  1038. },
  1039. "jackalope": {
  1040. name: "Jackalope",
  1041. parents: ["rabbit", "antelope"]
  1042. },
  1043. "caracal": {
  1044. name: "Caracal",
  1045. parents: ["cat"]
  1046. },
  1047. "stoat": {
  1048. name: "Stoat",
  1049. parents: ["mammal"]
  1050. },
  1051. "african-golden-cat": {
  1052. name: "African Golden Cat",
  1053. parents: ["cat"]
  1054. },
  1055. "gigantosaurus": {
  1056. name: "Gigantosaurus",
  1057. parents: ["dinosaur"]
  1058. },
  1059. "zorgoia": {
  1060. name: "Zorgoia",
  1061. parents: ["mammal"]
  1062. },
  1063. "monitor-lizard": {
  1064. name: "Monitor Lizard",
  1065. parents: ["lizard"]
  1066. },
  1067. "ziralkia": {
  1068. name: "Ziralkia",
  1069. parents: ["mammal"]
  1070. },
  1071. "kiiasi": {
  1072. name: "Kiiasi",
  1073. parents: ["animal"]
  1074. },
  1075. "synx": {
  1076. name: "Synx",
  1077. parents: ["monster"]
  1078. },
  1079. "panther": {
  1080. name: "Panther",
  1081. parents: ["cat"]
  1082. },
  1083. "azumarill": {
  1084. name: "Azumarill",
  1085. parents: ["pokemon"]
  1086. },
  1087. "river-snaptail": {
  1088. name: "River Snaptail",
  1089. parents: ["otter", "crocodile"]
  1090. },
  1091. "great-blue-heron": {
  1092. name: "Great Blue Heron",
  1093. parents: ["avian"]
  1094. },
  1095. "smeargle": {
  1096. name: "Smeargle",
  1097. parents: ["pokemon"]
  1098. },
  1099. "vendeilen": {
  1100. name: "Vendeilen",
  1101. parents: ["monster"]
  1102. },
  1103. "ventura": {
  1104. name: "Ventura",
  1105. parents: ["canine"]
  1106. },
  1107. "clouded-leopard": {
  1108. name: "Clouded Leopard",
  1109. parents: ["leopard"]
  1110. },
  1111. "argonian": {
  1112. name: "Argonian",
  1113. parents: ["lizard"]
  1114. },
  1115. "salazzle": {
  1116. name: "Salazzle",
  1117. parents: ["pokemon", "lizard"]
  1118. },
  1119. "je-stoff-drachen": {
  1120. name: "Je-Stoff Drachen",
  1121. parents: ["dragon"]
  1122. },
  1123. "finnish-spitz-dog": {
  1124. name: "Finnish Spitz Dog",
  1125. parents: ["dog"]
  1126. },
  1127. "gray-fox": {
  1128. name: "Gray Fox",
  1129. parents: ["fox"]
  1130. },
  1131. "opossum": {
  1132. name: "opossum",
  1133. parents: ["mammal"]
  1134. },
  1135. "antelope": {
  1136. name: "Antelope",
  1137. parents: ["mammal"]
  1138. },
  1139. "weavile": {
  1140. name: "Weavile",
  1141. parents: ["pokemon"]
  1142. },
  1143. "pikachu": {
  1144. name: "Pikachu",
  1145. parents: ["pokemon", "mouse"]
  1146. },
  1147. "grovyle": {
  1148. name: "Grovyle",
  1149. parents: ["pokemon", "plant"]
  1150. },
  1151. "sthara": {
  1152. name: "Sthara",
  1153. parents: ["snow-leopard", "reptile"]
  1154. },
  1155. "star-warrior": {
  1156. name: "Star Warrior",
  1157. parents: ["magical"]
  1158. },
  1159. "dragonoid": {
  1160. name: "Dragonoid",
  1161. parents: ["dragon"]
  1162. },
  1163. "suicune": {
  1164. name: "Suicune",
  1165. parents: ["pokemon"]
  1166. },
  1167. "vole": {
  1168. name: "Vole",
  1169. parents: ["mammal"]
  1170. },
  1171. "blaziken": {
  1172. name: "Blaziken",
  1173. parents: ["pokemon", "avian"]
  1174. },
  1175. "buizel": {
  1176. name: "Buizel",
  1177. parents: ["pokemon", "fish"]
  1178. },
  1179. "floatzel": {
  1180. name: "Floatzel",
  1181. parents: ["pokemon", "fish"]
  1182. },
  1183. "umok": {
  1184. name: "Umok",
  1185. parents: ["avian"]
  1186. },
  1187. "sea-monster": {
  1188. name: "Sea Monster",
  1189. parents: ["monster", "fish"]
  1190. },
  1191. "egyptian-vulture": {
  1192. name: "Egyptian Vulture",
  1193. parents: ["avian"]
  1194. },
  1195. "doberman": {
  1196. name: "Doberman",
  1197. parents: ["dog"]
  1198. },
  1199. "zangoose": {
  1200. name: "Zangoose",
  1201. parents: ["pokemon", "mongoose"]
  1202. },
  1203. "mongoose": {
  1204. name: "Mongoose",
  1205. parents: ["mammal"]
  1206. },
  1207. "wickerbeast": {
  1208. name: "Wickerbeast",
  1209. parents: ["monster"]
  1210. },
  1211. "zenari": {
  1212. name: "Zenari",
  1213. parents: ["lizard"]
  1214. },
  1215. "plant": {
  1216. name: "Plant",
  1217. parents: []
  1218. },
  1219. "raskatox": {
  1220. name: "Raskatox",
  1221. parents: ["raccoon", "skunk", "cat", "fox"]
  1222. },
  1223. "mikromare": {
  1224. name: "mikromare",
  1225. parents: ["alien"]
  1226. },
  1227. "alien": {
  1228. name: "Alien",
  1229. parents: ["animal"]
  1230. },
  1231. "deity": {
  1232. name: "Deity",
  1233. parents: []
  1234. },
  1235. "skarlan": {
  1236. name: "Skarlan",
  1237. parents: ["slug", "dragon"]
  1238. },
  1239. "slug": {
  1240. name: "Slug",
  1241. parents: ["mollusk"]
  1242. },
  1243. "mollusk": {
  1244. name: "Mollusk",
  1245. parents: ["animal"]
  1246. },
  1247. "chimera": {
  1248. name: "Chimera",
  1249. parents: ["monster"]
  1250. },
  1251. "gestalt": {
  1252. name: "Gestalt",
  1253. parents: ["construct"]
  1254. },
  1255. "mimic": {
  1256. name: "Mimic",
  1257. parents: ["monster"]
  1258. },
  1259. "calico-rat": {
  1260. name: "Calico Rat",
  1261. parents: ["rat"]
  1262. },
  1263. "panda": {
  1264. name: "Panda",
  1265. parents: ["mammal"]
  1266. },
  1267. "oni": {
  1268. name: "Oni",
  1269. parents: ["monster"]
  1270. },
  1271. "pegasus": {
  1272. name: "Pegasus",
  1273. parents: ["horse"]
  1274. },
  1275. }
  1276. //species
  1277. function getSpeciesInfo(speciesList) {
  1278. let result = new Set();
  1279. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1280. result.add(entry)
  1281. });
  1282. return Array.from(result);
  1283. };
  1284. function getSpeciesInfoHelper(species) {
  1285. if (!speciesData[species]) {
  1286. console.warn(species + " doesn't exist");
  1287. return [];
  1288. }
  1289. if (speciesData[species].parents) {
  1290. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1291. } else {
  1292. return [species];
  1293. }
  1294. }
  1295. characterMakers.push(() => makeCharacter(
  1296. {
  1297. name: "Fen",
  1298. species: ["crux"],
  1299. description: {
  1300. title: "Bio",
  1301. text: "Very furry. Sheds on everything."
  1302. },
  1303. tags: [
  1304. "anthro",
  1305. "goo"
  1306. ]
  1307. },
  1308. {
  1309. back: {
  1310. height: math.unit(2.2428, "meter"),
  1311. weight: math.unit(124.738, "kg"),
  1312. name: "Back",
  1313. image: {
  1314. source: "./media/characters/fen/back.svg",
  1315. extra: 1025 / 935,
  1316. bottom: 0.01
  1317. },
  1318. info: {
  1319. description: {
  1320. mode: "append",
  1321. text: "\n\nHe is not currently looking at you."
  1322. }
  1323. }
  1324. },
  1325. full: {
  1326. height: math.unit(1.34, "meter"),
  1327. weight: math.unit(225, "kg"),
  1328. name: "Full",
  1329. image: {
  1330. source: "./media/characters/fen/full.svg"
  1331. },
  1332. info: {
  1333. description: {
  1334. mode: "append",
  1335. text: "\n\nMunch."
  1336. }
  1337. }
  1338. },
  1339. kneeling: {
  1340. height: math.unit(5.4, "feet"),
  1341. weight: math.unit(124.738, "kg"),
  1342. name: "Kneeling",
  1343. image: {
  1344. source: "./media/characters/fen/kneeling.svg",
  1345. extra: 563 / 507
  1346. }
  1347. },
  1348. goo: {
  1349. height: math.unit(2.8, "feet"),
  1350. weight: math.unit(125, "kg"),
  1351. capacity: math.unit(1, "people"),
  1352. name: "Goo",
  1353. image: {
  1354. source: "./media/characters/fen/goo.svg",
  1355. bottom: 116 / 613
  1356. }
  1357. },
  1358. lounging: {
  1359. height: math.unit(6.5, "feet"),
  1360. weight: math.unit(125, "kg"),
  1361. name: "Lounging",
  1362. image: {
  1363. source: "./media/characters/fen/lounging.svg"
  1364. }
  1365. },
  1366. },
  1367. [
  1368. {
  1369. name: "Normal",
  1370. height: math.unit(2.2428, "meter")
  1371. },
  1372. {
  1373. name: "Big",
  1374. height: math.unit(12, "feet")
  1375. },
  1376. {
  1377. name: "Minimacro",
  1378. height: math.unit(40, "feet"),
  1379. default: true,
  1380. info: {
  1381. description: {
  1382. mode: "append",
  1383. text: "\n\nTOO DAMN BIG"
  1384. }
  1385. }
  1386. },
  1387. {
  1388. name: "Macro",
  1389. height: math.unit(100, "feet"),
  1390. info: {
  1391. description: {
  1392. mode: "append",
  1393. text: "\n\nTOO DAMN BIG"
  1394. }
  1395. }
  1396. },
  1397. {
  1398. name: "Macro+",
  1399. height: math.unit(300, "feet")
  1400. },
  1401. {
  1402. name: "Megamacro",
  1403. height: math.unit(2, "miles")
  1404. }
  1405. ]
  1406. ))
  1407. characterMakers.push(() => makeCharacter(
  1408. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1409. {
  1410. front: {
  1411. height: math.unit(183, "cm"),
  1412. weight: math.unit(80, "kg"),
  1413. name: "Front",
  1414. image: {
  1415. source: "./media/characters/sofia-fluttertail/front.svg",
  1416. bottom: 0.01,
  1417. extra: 2154 / 2081
  1418. }
  1419. },
  1420. frontAlt: {
  1421. height: math.unit(183, "cm"),
  1422. weight: math.unit(80, "kg"),
  1423. name: "Front (alt)",
  1424. image: {
  1425. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1426. }
  1427. },
  1428. back: {
  1429. height: math.unit(183, "cm"),
  1430. weight: math.unit(80, "kg"),
  1431. name: "Back",
  1432. image: {
  1433. source: "./media/characters/sofia-fluttertail/back.svg"
  1434. }
  1435. },
  1436. kneeling: {
  1437. height: math.unit(125, "cm"),
  1438. weight: math.unit(80, "kg"),
  1439. name: "Kneeling",
  1440. image: {
  1441. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1442. extra: 1033 / 977,
  1443. bottom: 23.7 / 1057
  1444. }
  1445. },
  1446. maw: {
  1447. height: math.unit(183 / 5, "cm"),
  1448. name: "Maw",
  1449. image: {
  1450. source: "./media/characters/sofia-fluttertail/maw.svg"
  1451. }
  1452. },
  1453. mawcloseup: {
  1454. height: math.unit(183 / 5 * 0.41, "cm"),
  1455. name: "Maw (Closeup)",
  1456. image: {
  1457. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1458. }
  1459. },
  1460. },
  1461. [
  1462. {
  1463. name: "Normal",
  1464. height: math.unit(1.83, "meter")
  1465. },
  1466. {
  1467. name: "Size Thief",
  1468. height: math.unit(18, "feet")
  1469. },
  1470. {
  1471. name: "50 Foot Collie",
  1472. height: math.unit(50, "feet")
  1473. },
  1474. {
  1475. name: "Macro",
  1476. height: math.unit(96, "feet"),
  1477. default: true
  1478. },
  1479. {
  1480. name: "Megamerger",
  1481. height: math.unit(650, "feet")
  1482. },
  1483. ]
  1484. ))
  1485. characterMakers.push(() => makeCharacter(
  1486. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1487. {
  1488. front: {
  1489. height: math.unit(7, "feet"),
  1490. weight: math.unit(100, "kg"),
  1491. name: "Front",
  1492. image: {
  1493. source: "./media/characters/march/front.svg",
  1494. extra: 1,
  1495. bottom: 0.015
  1496. }
  1497. },
  1498. foot: {
  1499. height: math.unit(0.9, "feet"),
  1500. name: "Foot",
  1501. image: {
  1502. source: "./media/characters/march/foot.svg"
  1503. }
  1504. },
  1505. },
  1506. [
  1507. {
  1508. name: "Normal",
  1509. height: math.unit(7.9, "feet")
  1510. },
  1511. {
  1512. name: "Macro",
  1513. height: math.unit(220, "meters")
  1514. },
  1515. {
  1516. name: "Megamacro",
  1517. height: math.unit(2.98, "km"),
  1518. default: true
  1519. },
  1520. {
  1521. name: "Gigamacro",
  1522. height: math.unit(15963, "km")
  1523. },
  1524. {
  1525. name: "Teramacro",
  1526. height: math.unit(2980000000, "km")
  1527. },
  1528. {
  1529. name: "Examacro",
  1530. height: math.unit(250, "parsecs")
  1531. },
  1532. ]
  1533. ))
  1534. characterMakers.push(() => makeCharacter(
  1535. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1536. {
  1537. front: {
  1538. height: math.unit(6, "feet"),
  1539. weight: math.unit(60, "kg"),
  1540. name: "Front",
  1541. image: {
  1542. source: "./media/characters/noir/front.svg",
  1543. extra: 1,
  1544. bottom: 0.032
  1545. }
  1546. },
  1547. },
  1548. [
  1549. {
  1550. name: "Normal",
  1551. height: math.unit(6.6, "feet")
  1552. },
  1553. {
  1554. name: "Macro",
  1555. height: math.unit(500, "feet")
  1556. },
  1557. {
  1558. name: "Megamacro",
  1559. height: math.unit(2.5, "km"),
  1560. default: true
  1561. },
  1562. {
  1563. name: "Gigamacro",
  1564. height: math.unit(22500, "km")
  1565. },
  1566. {
  1567. name: "Teramacro",
  1568. height: math.unit(2500000000, "km")
  1569. },
  1570. {
  1571. name: "Examacro",
  1572. height: math.unit(200, "parsecs")
  1573. },
  1574. ]
  1575. ))
  1576. characterMakers.push(() => makeCharacter(
  1577. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1578. {
  1579. front: {
  1580. height: math.unit(7, "feet"),
  1581. weight: math.unit(100, "kg"),
  1582. name: "Front",
  1583. image: {
  1584. source: "./media/characters/okuri/front.svg",
  1585. extra: 1,
  1586. bottom: 0.037
  1587. }
  1588. },
  1589. back: {
  1590. height: math.unit(7, "feet"),
  1591. weight: math.unit(100, "kg"),
  1592. name: "Back",
  1593. image: {
  1594. source: "./media/characters/okuri/back.svg",
  1595. extra: 1,
  1596. bottom: 0.007
  1597. }
  1598. },
  1599. },
  1600. [
  1601. {
  1602. name: "Megamacro",
  1603. height: math.unit(100, "miles"),
  1604. default: true
  1605. },
  1606. ]
  1607. ))
  1608. characterMakers.push(() => makeCharacter(
  1609. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1610. {
  1611. front: {
  1612. height: math.unit(7, "feet"),
  1613. weight: math.unit(100, "kg"),
  1614. name: "Front",
  1615. image: {
  1616. source: "./media/characters/manny/front.svg",
  1617. extra: 1,
  1618. bottom: 0.06
  1619. }
  1620. },
  1621. back: {
  1622. height: math.unit(7, "feet"),
  1623. weight: math.unit(100, "kg"),
  1624. name: "Back",
  1625. image: {
  1626. source: "./media/characters/manny/back.svg",
  1627. extra: 1,
  1628. bottom: 0.014
  1629. }
  1630. },
  1631. },
  1632. [
  1633. {
  1634. name: "Normal",
  1635. height: math.unit(7, "feet"),
  1636. },
  1637. {
  1638. name: "Macro",
  1639. height: math.unit(78, "feet"),
  1640. default: true
  1641. },
  1642. {
  1643. name: "Macro+",
  1644. height: math.unit(300, "meters")
  1645. },
  1646. {
  1647. name: "Macro++",
  1648. height: math.unit(2400, "meters")
  1649. },
  1650. {
  1651. name: "Megamacro",
  1652. height: math.unit(5167, "meters")
  1653. },
  1654. {
  1655. name: "Gigamacro",
  1656. height: math.unit(41769, "miles")
  1657. },
  1658. ]
  1659. ))
  1660. characterMakers.push(() => makeCharacter(
  1661. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1662. {
  1663. front: {
  1664. height: math.unit(7, "feet"),
  1665. weight: math.unit(100, "kg"),
  1666. name: "Front",
  1667. image: {
  1668. source: "./media/characters/adake/front-1.svg"
  1669. }
  1670. },
  1671. frontAlt: {
  1672. height: math.unit(7, "feet"),
  1673. weight: math.unit(100, "kg"),
  1674. name: "Front (Alt)",
  1675. image: {
  1676. source: "./media/characters/adake/front-2.svg",
  1677. extra: 1,
  1678. bottom: 0.01
  1679. }
  1680. },
  1681. back: {
  1682. height: math.unit(7, "feet"),
  1683. weight: math.unit(100, "kg"),
  1684. name: "Back",
  1685. image: {
  1686. source: "./media/characters/adake/back.svg",
  1687. }
  1688. },
  1689. kneel: {
  1690. height: math.unit(5.385, "feet"),
  1691. weight: math.unit(100, "kg"),
  1692. name: "Kneeling",
  1693. image: {
  1694. source: "./media/characters/adake/kneel.svg",
  1695. bottom: 0.052
  1696. }
  1697. },
  1698. },
  1699. [
  1700. {
  1701. name: "Normal",
  1702. height: math.unit(7, "feet"),
  1703. },
  1704. {
  1705. name: "Macro",
  1706. height: math.unit(78, "feet"),
  1707. default: true
  1708. },
  1709. {
  1710. name: "Macro+",
  1711. height: math.unit(300, "meters")
  1712. },
  1713. {
  1714. name: "Macro++",
  1715. height: math.unit(2400, "meters")
  1716. },
  1717. {
  1718. name: "Megamacro",
  1719. height: math.unit(5167, "meters")
  1720. },
  1721. {
  1722. name: "Gigamacro",
  1723. height: math.unit(41769, "miles")
  1724. },
  1725. ]
  1726. ))
  1727. characterMakers.push(() => makeCharacter(
  1728. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1729. {
  1730. front: {
  1731. height: math.unit(1.65, "meters"),
  1732. weight: math.unit(50, "kg"),
  1733. name: "Front",
  1734. image: {
  1735. source: "./media/characters/elijah/front.svg",
  1736. extra: 858 / 830,
  1737. bottom: 95.5 / 953.8559
  1738. }
  1739. },
  1740. back: {
  1741. height: math.unit(1.65, "meters"),
  1742. weight: math.unit(50, "kg"),
  1743. name: "Back",
  1744. image: {
  1745. source: "./media/characters/elijah/back.svg",
  1746. extra: 895 / 850,
  1747. bottom: 5.3 / 897.956
  1748. }
  1749. },
  1750. frontNsfw: {
  1751. height: math.unit(1.65, "meters"),
  1752. weight: math.unit(50, "kg"),
  1753. name: "Front (NSFW)",
  1754. image: {
  1755. source: "./media/characters/elijah/front-nsfw.svg",
  1756. extra: 858 / 830,
  1757. bottom: 95.5 / 953.8559
  1758. }
  1759. },
  1760. backNsfw: {
  1761. height: math.unit(1.65, "meters"),
  1762. weight: math.unit(50, "kg"),
  1763. name: "Back (NSFW)",
  1764. image: {
  1765. source: "./media/characters/elijah/back-nsfw.svg",
  1766. extra: 895 / 850,
  1767. bottom: 5.3 / 897.956
  1768. }
  1769. },
  1770. dick: {
  1771. height: math.unit(1, "feet"),
  1772. name: "Dick",
  1773. image: {
  1774. source: "./media/characters/elijah/dick.svg"
  1775. }
  1776. },
  1777. beakOpen: {
  1778. height: math.unit(1.25, "feet"),
  1779. name: "Beak (Open)",
  1780. image: {
  1781. source: "./media/characters/elijah/beak-open.svg"
  1782. }
  1783. },
  1784. beakShut: {
  1785. height: math.unit(1.25, "feet"),
  1786. name: "Beak (Shut)",
  1787. image: {
  1788. source: "./media/characters/elijah/beak-shut.svg"
  1789. }
  1790. },
  1791. footFlexing: {
  1792. height: math.unit(1.61, "feet"),
  1793. name: "Foot (Flexing)",
  1794. image: {
  1795. source: "./media/characters/elijah/foot-flexing.svg"
  1796. }
  1797. },
  1798. footStepping: {
  1799. height: math.unit(1.44, "feet"),
  1800. name: "Foot (Stepping)",
  1801. image: {
  1802. source: "./media/characters/elijah/foot-stepping.svg"
  1803. }
  1804. },
  1805. plantigradeLeg: {
  1806. height: math.unit(2.34, "feet"),
  1807. name: "Plantigrade Leg",
  1808. image: {
  1809. source: "./media/characters/elijah/plantigrade-leg.svg"
  1810. }
  1811. },
  1812. plantigradeFootLeft: {
  1813. height: math.unit(0.9, "feet"),
  1814. name: "Plantigrade Foot (Left)",
  1815. image: {
  1816. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1817. }
  1818. },
  1819. plantigradeFootRight: {
  1820. height: math.unit(0.9, "feet"),
  1821. name: "Plantigrade Foot (Right)",
  1822. image: {
  1823. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1824. }
  1825. },
  1826. },
  1827. [
  1828. {
  1829. name: "Normal",
  1830. height: math.unit(1.65, "meters")
  1831. },
  1832. {
  1833. name: "Macro",
  1834. height: math.unit(55, "meters"),
  1835. default: true
  1836. },
  1837. {
  1838. name: "Macro+",
  1839. height: math.unit(105, "meters")
  1840. },
  1841. ]
  1842. ))
  1843. characterMakers.push(() => makeCharacter(
  1844. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1845. {
  1846. front: {
  1847. height: math.unit(11, "feet"),
  1848. weight: math.unit(80, "kg"),
  1849. name: "Front",
  1850. image: {
  1851. source: "./media/characters/rai/front.svg",
  1852. extra: 1,
  1853. bottom: 0.03
  1854. }
  1855. },
  1856. side: {
  1857. height: math.unit(11, "feet"),
  1858. weight: math.unit(80, "kg"),
  1859. name: "Side",
  1860. image: {
  1861. source: "./media/characters/rai/side.svg"
  1862. }
  1863. },
  1864. back: {
  1865. height: math.unit(11, "feet"),
  1866. weight: math.unit(80, "lb"),
  1867. name: "Back",
  1868. image: {
  1869. source: "./media/characters/rai/back.svg",
  1870. extra: 1,
  1871. bottom: 0.01
  1872. }
  1873. },
  1874. feral: {
  1875. height: math.unit(11, "feet"),
  1876. weight: math.unit(800, "lb"),
  1877. name: "Feral",
  1878. image: {
  1879. source: "./media/characters/rai/feral.svg",
  1880. extra: 1050 / 659,
  1881. bottom: 0.07
  1882. }
  1883. },
  1884. dragon: {
  1885. height: math.unit(23, "feet"),
  1886. weight: math.unit(50000, "lb"),
  1887. name: "Dragon",
  1888. image: {
  1889. source: "./media/characters/rai/dragon.svg",
  1890. extra: 2498 / 2030,
  1891. bottom: 85.2 / 2584
  1892. }
  1893. },
  1894. maw: {
  1895. height: math.unit(6 / 3.81416, "feet"),
  1896. name: "Maw",
  1897. image: {
  1898. source: "./media/characters/rai/maw.svg"
  1899. }
  1900. },
  1901. },
  1902. [
  1903. {
  1904. name: "Normal",
  1905. height: math.unit(11, "feet")
  1906. },
  1907. {
  1908. name: "Macro",
  1909. height: math.unit(302, "feet"),
  1910. default: true
  1911. },
  1912. ]
  1913. ))
  1914. characterMakers.push(() => makeCharacter(
  1915. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  1916. {
  1917. frontDressed: {
  1918. height: math.unit(216, "feet"),
  1919. weight: math.unit(7000000, "lb"),
  1920. name: "Front (Dressed)",
  1921. image: {
  1922. source: "./media/characters/jazzy/front-dressed.svg",
  1923. extra: 2738 / 2651,
  1924. bottom: 41.8 / 2786
  1925. }
  1926. },
  1927. backDressed: {
  1928. height: math.unit(216, "feet"),
  1929. weight: math.unit(7000000, "lb"),
  1930. name: "Back (Dressed)",
  1931. image: {
  1932. source: "./media/characters/jazzy/back-dressed.svg",
  1933. extra: 2775 / 2673,
  1934. bottom: 36.8 / 2817
  1935. }
  1936. },
  1937. front: {
  1938. height: math.unit(216, "feet"),
  1939. weight: math.unit(7000000, "lb"),
  1940. name: "Front",
  1941. image: {
  1942. source: "./media/characters/jazzy/front.svg",
  1943. extra: 2738 / 2651,
  1944. bottom: 41.8 / 2786
  1945. }
  1946. },
  1947. back: {
  1948. height: math.unit(216, "feet"),
  1949. weight: math.unit(7000000, "lb"),
  1950. name: "Back",
  1951. image: {
  1952. source: "./media/characters/jazzy/back.svg",
  1953. extra: 2775 / 2673,
  1954. bottom: 36.8 / 2817
  1955. }
  1956. },
  1957. maw: {
  1958. height: math.unit(20, "feet"),
  1959. name: "Maw",
  1960. image: {
  1961. source: "./media/characters/jazzy/maw.svg"
  1962. }
  1963. },
  1964. paws: {
  1965. height: math.unit(27.5, "feet"),
  1966. name: "Paws",
  1967. image: {
  1968. source: "./media/characters/jazzy/paws.svg"
  1969. }
  1970. },
  1971. eye: {
  1972. height: math.unit(4.4, "feet"),
  1973. name: "Eye",
  1974. image: {
  1975. source: "./media/characters/jazzy/eye.svg"
  1976. }
  1977. },
  1978. droneOffense: {
  1979. height: math.unit(9.5, "inches"),
  1980. name: "Drone (Offense)",
  1981. image: {
  1982. source: "./media/characters/jazzy/drone-offense.svg"
  1983. }
  1984. },
  1985. droneRecon: {
  1986. height: math.unit(9.5, "inches"),
  1987. name: "Drone (Recon)",
  1988. image: {
  1989. source: "./media/characters/jazzy/drone-recon.svg"
  1990. }
  1991. },
  1992. droneDefense: {
  1993. height: math.unit(9.5, "inches"),
  1994. name: "Drone (Defense)",
  1995. image: {
  1996. source: "./media/characters/jazzy/drone-defense.svg"
  1997. }
  1998. },
  1999. },
  2000. [
  2001. {
  2002. name: "Macro",
  2003. height: math.unit(216, "feet"),
  2004. default: true
  2005. },
  2006. ]
  2007. ))
  2008. characterMakers.push(() => makeCharacter(
  2009. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2010. {
  2011. front: {
  2012. height: math.unit(7, "feet"),
  2013. weight: math.unit(80, "kg"),
  2014. name: "Front",
  2015. image: {
  2016. source: "./media/characters/flamm/front.svg",
  2017. extra: 1794 / 1677,
  2018. bottom: 31.7 / 1828.5
  2019. }
  2020. },
  2021. },
  2022. [
  2023. {
  2024. name: "Normal",
  2025. height: math.unit(9.5, "feet")
  2026. },
  2027. {
  2028. name: "Macro",
  2029. height: math.unit(200, "feet"),
  2030. default: true
  2031. },
  2032. ]
  2033. ))
  2034. characterMakers.push(() => makeCharacter(
  2035. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2036. {
  2037. front: {
  2038. height: math.unit(7, "feet"),
  2039. weight: math.unit(80, "kg"),
  2040. name: "Front",
  2041. image: {
  2042. source: "./media/characters/zephiro/front.svg",
  2043. extra: 2309 / 2162,
  2044. bottom: 0.069
  2045. }
  2046. },
  2047. side: {
  2048. height: math.unit(7, "feet"),
  2049. weight: math.unit(80, "kg"),
  2050. name: "Side",
  2051. image: {
  2052. source: "./media/characters/zephiro/side.svg",
  2053. extra: 2403 / 2279,
  2054. bottom: 0.015
  2055. }
  2056. },
  2057. back: {
  2058. height: math.unit(7, "feet"),
  2059. weight: math.unit(80, "kg"),
  2060. name: "Back",
  2061. image: {
  2062. source: "./media/characters/zephiro/back.svg",
  2063. extra: 2373 / 2244,
  2064. bottom: 0.013
  2065. }
  2066. },
  2067. },
  2068. [
  2069. {
  2070. name: "Micro",
  2071. height: math.unit(3, "inches")
  2072. },
  2073. {
  2074. name: "Normal",
  2075. height: math.unit(5 + 3 / 12, "feet"),
  2076. default: true
  2077. },
  2078. {
  2079. name: "Macro",
  2080. height: math.unit(118, "feet")
  2081. },
  2082. ]
  2083. ))
  2084. characterMakers.push(() => makeCharacter(
  2085. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2086. {
  2087. front: {
  2088. height: math.unit(5, "feet"),
  2089. weight: math.unit(90, "kg"),
  2090. name: "Front",
  2091. image: {
  2092. source: "./media/characters/fory/front.svg",
  2093. extra: 2862 / 2674,
  2094. bottom: 180 / 3043.8
  2095. }
  2096. },
  2097. back: {
  2098. height: math.unit(5, "feet"),
  2099. weight: math.unit(90, "kg"),
  2100. name: "Back",
  2101. image: {
  2102. source: "./media/characters/fory/back.svg",
  2103. extra: 2962 / 2791,
  2104. bottom: 106 / 3071.8
  2105. }
  2106. },
  2107. foot: {
  2108. height: math.unit(2.14, "feet"),
  2109. name: "Foot",
  2110. image: {
  2111. source: "./media/characters/fory/foot.svg"
  2112. }
  2113. },
  2114. },
  2115. [
  2116. {
  2117. name: "Normal",
  2118. height: math.unit(5, "feet")
  2119. },
  2120. {
  2121. name: "Macro",
  2122. height: math.unit(50, "feet"),
  2123. default: true
  2124. },
  2125. {
  2126. name: "Megamacro",
  2127. height: math.unit(10, "miles")
  2128. },
  2129. {
  2130. name: "Gigamacro",
  2131. height: math.unit(5, "earths")
  2132. },
  2133. ]
  2134. ))
  2135. characterMakers.push(() => makeCharacter(
  2136. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2137. {
  2138. front: {
  2139. height: math.unit(7, "feet"),
  2140. weight: math.unit(90, "kg"),
  2141. name: "Front",
  2142. image: {
  2143. source: "./media/characters/kurrikage/front.svg",
  2144. extra: 1,
  2145. bottom: 0.035
  2146. }
  2147. },
  2148. back: {
  2149. height: math.unit(7, "feet"),
  2150. weight: math.unit(90, "lb"),
  2151. name: "Back",
  2152. image: {
  2153. source: "./media/characters/kurrikage/back.svg"
  2154. }
  2155. },
  2156. paw: {
  2157. height: math.unit(1.5, "feet"),
  2158. name: "Paw",
  2159. image: {
  2160. source: "./media/characters/kurrikage/paw.svg"
  2161. }
  2162. },
  2163. staff: {
  2164. height: math.unit(6.7, "feet"),
  2165. name: "Staff",
  2166. image: {
  2167. source: "./media/characters/kurrikage/staff.svg"
  2168. }
  2169. },
  2170. peek: {
  2171. height: math.unit(1.05, "feet"),
  2172. name: "Peeking",
  2173. image: {
  2174. source: "./media/characters/kurrikage/peek.svg",
  2175. bottom: 0.08
  2176. }
  2177. },
  2178. },
  2179. [
  2180. {
  2181. name: "Normal",
  2182. height: math.unit(12, "feet"),
  2183. default: true
  2184. },
  2185. {
  2186. name: "Big",
  2187. height: math.unit(20, "feet")
  2188. },
  2189. {
  2190. name: "Macro",
  2191. height: math.unit(500, "feet")
  2192. },
  2193. {
  2194. name: "Megamacro",
  2195. height: math.unit(20, "miles")
  2196. },
  2197. ]
  2198. ))
  2199. characterMakers.push(() => makeCharacter(
  2200. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2201. {
  2202. front: {
  2203. height: math.unit(6, "feet"),
  2204. weight: math.unit(75, "kg"),
  2205. name: "Front",
  2206. image: {
  2207. source: "./media/characters/shingo/front.svg",
  2208. extra: 3511 / 3338,
  2209. bottom: 0.005
  2210. }
  2211. },
  2212. },
  2213. [
  2214. {
  2215. name: "Micro",
  2216. height: math.unit(4, "inches")
  2217. },
  2218. {
  2219. name: "Normal",
  2220. height: math.unit(6, "feet"),
  2221. default: true
  2222. },
  2223. {
  2224. name: "Macro",
  2225. height: math.unit(108, "feet")
  2226. }
  2227. ]
  2228. ))
  2229. characterMakers.push(() => makeCharacter(
  2230. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2231. {
  2232. side: {
  2233. height: math.unit(6, "feet"),
  2234. weight: math.unit(75, "kg"),
  2235. name: "Side",
  2236. image: {
  2237. source: "./media/characters/aigey/side.svg"
  2238. }
  2239. },
  2240. },
  2241. [
  2242. {
  2243. name: "Macro",
  2244. height: math.unit(200, "feet"),
  2245. default: true
  2246. },
  2247. {
  2248. name: "Megamacro",
  2249. height: math.unit(100, "miles")
  2250. },
  2251. ]
  2252. )
  2253. )
  2254. characterMakers.push(() => makeCharacter(
  2255. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2256. {
  2257. front: {
  2258. height: math.unit(5 + 5 / 12, "feet"),
  2259. weight: math.unit(75, "kg"),
  2260. name: "Front",
  2261. image: {
  2262. source: "./media/characters/natasha/front.svg",
  2263. extra: 859 / 824,
  2264. bottom: 23 / 879.6
  2265. }
  2266. },
  2267. frontNsfw: {
  2268. height: math.unit(5 + 5 / 12, "feet"),
  2269. weight: math.unit(75, "kg"),
  2270. name: "Front (NSFW)",
  2271. image: {
  2272. source: "./media/characters/natasha/front-nsfw.svg",
  2273. extra: 859 / 824,
  2274. bottom: 23 / 879.6
  2275. }
  2276. },
  2277. frontErect: {
  2278. height: math.unit(5 + 5 / 12, "feet"),
  2279. weight: math.unit(75, "kg"),
  2280. name: "Front (Erect)",
  2281. image: {
  2282. source: "./media/characters/natasha/front-erect.svg",
  2283. extra: 859 / 824,
  2284. bottom: 23 / 879.6
  2285. }
  2286. },
  2287. back: {
  2288. height: math.unit(5 + 5 / 12, "feet"),
  2289. weight: math.unit(75, "kg"),
  2290. name: "Back",
  2291. image: {
  2292. source: "./media/characters/natasha/back.svg",
  2293. extra: 887.9 / 852.6,
  2294. bottom: 9.7 / 896.4
  2295. }
  2296. },
  2297. backAlt: {
  2298. height: math.unit(5 + 5 / 12, "feet"),
  2299. weight: math.unit(75, "kg"),
  2300. name: "Back (Alt)",
  2301. image: {
  2302. source: "./media/characters/natasha/back-alt.svg",
  2303. extra: 1236.7 / 1192,
  2304. bottom: 22.3 / 1258.2
  2305. }
  2306. },
  2307. dick: {
  2308. height: math.unit(1.772, "feet"),
  2309. name: "Dick",
  2310. image: {
  2311. source: "./media/characters/natasha/dick.svg"
  2312. }
  2313. },
  2314. },
  2315. [
  2316. {
  2317. name: "Normal",
  2318. height: math.unit(5 + 5 / 12, "feet")
  2319. },
  2320. {
  2321. name: "Large",
  2322. height: math.unit(12, "feet")
  2323. },
  2324. {
  2325. name: "Macro",
  2326. height: math.unit(100, "feet"),
  2327. default: true
  2328. },
  2329. {
  2330. name: "Macro+",
  2331. height: math.unit(260, "feet")
  2332. },
  2333. {
  2334. name: "Macro++",
  2335. height: math.unit(1, "mile")
  2336. },
  2337. ]
  2338. ))
  2339. characterMakers.push(() => makeCharacter(
  2340. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2341. {
  2342. front: {
  2343. height: math.unit(6, "feet"),
  2344. weight: math.unit(75, "kg"),
  2345. name: "Front",
  2346. image: {
  2347. source: "./media/characters/malik/front.svg"
  2348. }
  2349. },
  2350. side: {
  2351. height: math.unit(6, "feet"),
  2352. weight: math.unit(75, "kg"),
  2353. name: "Side",
  2354. image: {
  2355. source: "./media/characters/malik/side.svg",
  2356. extra: 1.1539
  2357. }
  2358. },
  2359. back: {
  2360. height: math.unit(6, "feet"),
  2361. weight: math.unit(75, "kg"),
  2362. name: "Back",
  2363. image: {
  2364. source: "./media/characters/malik/back.svg"
  2365. }
  2366. },
  2367. },
  2368. [
  2369. {
  2370. name: "Macro",
  2371. height: math.unit(156, "feet"),
  2372. default: true
  2373. },
  2374. {
  2375. name: "Macro+",
  2376. height: math.unit(1188, "feet")
  2377. },
  2378. ]
  2379. ))
  2380. characterMakers.push(() => makeCharacter(
  2381. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2382. {
  2383. front: {
  2384. height: math.unit(6, "feet"),
  2385. weight: math.unit(75, "kg"),
  2386. name: "Front",
  2387. image: {
  2388. source: "./media/characters/sefer/front.svg",
  2389. extra: 848 / 659,
  2390. bottom: 28.3 / 876.442
  2391. }
  2392. },
  2393. back: {
  2394. height: math.unit(6, "feet"),
  2395. weight: math.unit(75, "kg"),
  2396. name: "Back",
  2397. image: {
  2398. source: "./media/characters/sefer/back.svg",
  2399. extra: 864 / 695,
  2400. bottom: 10 / 871
  2401. }
  2402. },
  2403. frontDressed: {
  2404. height: math.unit(6, "feet"),
  2405. weight: math.unit(75, "kg"),
  2406. name: "Front (Dressed)",
  2407. image: {
  2408. source: "./media/characters/sefer/front-dressed.svg",
  2409. extra: 839 / 653,
  2410. bottom: 37.6 / 878
  2411. }
  2412. },
  2413. },
  2414. [
  2415. {
  2416. name: "Normal",
  2417. height: math.unit(6, "feet"),
  2418. default: true
  2419. },
  2420. ]
  2421. ))
  2422. characterMakers.push(() => makeCharacter(
  2423. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2424. {
  2425. body: {
  2426. height: math.unit(2.2428, "meter"),
  2427. weight: math.unit(124.738, "kg"),
  2428. name: "Body",
  2429. image: {
  2430. extra: 1225 / 1050,
  2431. source: "./media/characters/north/front.svg"
  2432. }
  2433. }
  2434. },
  2435. [
  2436. {
  2437. name: "Micro",
  2438. height: math.unit(4, "inches")
  2439. },
  2440. {
  2441. name: "Macro",
  2442. height: math.unit(63, "meters")
  2443. },
  2444. {
  2445. name: "Megamacro",
  2446. height: math.unit(101, "miles"),
  2447. default: true
  2448. }
  2449. ]
  2450. ))
  2451. characterMakers.push(() => makeCharacter(
  2452. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2453. {
  2454. angled: {
  2455. height: math.unit(4, "meter"),
  2456. weight: math.unit(150, "kg"),
  2457. name: "Angled",
  2458. image: {
  2459. source: "./media/characters/talan/angled-sfw.svg",
  2460. bottom: 29 / 3734
  2461. }
  2462. },
  2463. angledNsfw: {
  2464. height: math.unit(4, "meter"),
  2465. weight: math.unit(150, "kg"),
  2466. name: "Angled (NSFW)",
  2467. image: {
  2468. source: "./media/characters/talan/angled-nsfw.svg",
  2469. bottom: 29 / 3734
  2470. }
  2471. },
  2472. frontNsfw: {
  2473. height: math.unit(4, "meter"),
  2474. weight: math.unit(150, "kg"),
  2475. name: "Front (NSFW)",
  2476. image: {
  2477. source: "./media/characters/talan/front-nsfw.svg",
  2478. bottom: 29 / 3734
  2479. }
  2480. },
  2481. sideNsfw: {
  2482. height: math.unit(4, "meter"),
  2483. weight: math.unit(150, "kg"),
  2484. name: "Side (NSFW)",
  2485. image: {
  2486. source: "./media/characters/talan/side-nsfw.svg",
  2487. bottom: 29 / 3734
  2488. }
  2489. },
  2490. back: {
  2491. height: math.unit(4, "meter"),
  2492. weight: math.unit(150, "kg"),
  2493. name: "Back",
  2494. image: {
  2495. source: "./media/characters/talan/back.svg"
  2496. }
  2497. },
  2498. dickBottom: {
  2499. height: math.unit(0.621, "meter"),
  2500. name: "Dick (Bottom)",
  2501. image: {
  2502. source: "./media/characters/talan/dick-bottom.svg"
  2503. }
  2504. },
  2505. dickTop: {
  2506. height: math.unit(0.621, "meter"),
  2507. name: "Dick (Top)",
  2508. image: {
  2509. source: "./media/characters/talan/dick-top.svg"
  2510. }
  2511. },
  2512. dickSide: {
  2513. height: math.unit(0.305, "meter"),
  2514. name: "Dick (Side)",
  2515. image: {
  2516. source: "./media/characters/talan/dick-side.svg"
  2517. }
  2518. },
  2519. dickFront: {
  2520. height: math.unit(0.305, "meter"),
  2521. name: "Dick (Front)",
  2522. image: {
  2523. source: "./media/characters/talan/dick-front.svg"
  2524. }
  2525. },
  2526. },
  2527. [
  2528. {
  2529. name: "Normal",
  2530. height: math.unit(4, "meters")
  2531. },
  2532. {
  2533. name: "Macro",
  2534. height: math.unit(100, "meters")
  2535. },
  2536. {
  2537. name: "Megamacro",
  2538. height: math.unit(2, "miles"),
  2539. default: true
  2540. },
  2541. {
  2542. name: "Gigamacro",
  2543. height: math.unit(5000, "miles")
  2544. },
  2545. {
  2546. name: "Teramacro",
  2547. height: math.unit(100, "parsecs")
  2548. }
  2549. ]
  2550. ))
  2551. characterMakers.push(() => makeCharacter(
  2552. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2553. {
  2554. front: {
  2555. height: math.unit(2, "meter"),
  2556. weight: math.unit(90, "kg"),
  2557. name: "Front",
  2558. image: {
  2559. source: "./media/characters/gael'rathus/front.svg"
  2560. }
  2561. },
  2562. frontAlt: {
  2563. height: math.unit(2, "meter"),
  2564. weight: math.unit(90, "kg"),
  2565. name: "Front (alt)",
  2566. image: {
  2567. source: "./media/characters/gael'rathus/front-alt.svg"
  2568. }
  2569. },
  2570. frontAlt2: {
  2571. height: math.unit(2, "meter"),
  2572. weight: math.unit(90, "kg"),
  2573. name: "Front (alt 2)",
  2574. image: {
  2575. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2576. }
  2577. }
  2578. },
  2579. [
  2580. {
  2581. name: "Normal",
  2582. height: math.unit(9, "feet"),
  2583. default: true
  2584. },
  2585. {
  2586. name: "Large",
  2587. height: math.unit(25, "feet")
  2588. },
  2589. {
  2590. name: "Macro",
  2591. height: math.unit(0.25, "miles")
  2592. },
  2593. {
  2594. name: "Megamacro",
  2595. height: math.unit(10, "miles")
  2596. }
  2597. ]
  2598. ))
  2599. characterMakers.push(() => makeCharacter(
  2600. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2601. {
  2602. side: {
  2603. height: math.unit(2, "meter"),
  2604. weight: math.unit(140, "kg"),
  2605. name: "Side",
  2606. image: {
  2607. source: "./media/characters/sosha/side.svg",
  2608. bottom: 0.042
  2609. }
  2610. },
  2611. },
  2612. [
  2613. {
  2614. name: "Normal",
  2615. height: math.unit(12, "feet"),
  2616. default: true
  2617. }
  2618. ]
  2619. ))
  2620. characterMakers.push(() => makeCharacter(
  2621. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2622. {
  2623. side: {
  2624. height: math.unit(5 + 5 / 12, "feet"),
  2625. weight: math.unit(170, "kg"),
  2626. name: "Side",
  2627. image: {
  2628. source: "./media/characters/runnola/side.svg",
  2629. extra: 741 / 448,
  2630. bottom: 0.05
  2631. }
  2632. },
  2633. },
  2634. [
  2635. {
  2636. name: "Small",
  2637. height: math.unit(3, "feet")
  2638. },
  2639. {
  2640. name: "Normal",
  2641. height: math.unit(5 + 5 / 12, "feet"),
  2642. default: true
  2643. },
  2644. {
  2645. name: "Big",
  2646. height: math.unit(10, "feet")
  2647. },
  2648. ]
  2649. ))
  2650. characterMakers.push(() => makeCharacter(
  2651. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2652. {
  2653. front: {
  2654. height: math.unit(2, "meter"),
  2655. weight: math.unit(50, "kg"),
  2656. name: "Front",
  2657. image: {
  2658. source: "./media/characters/kurribird/front.svg",
  2659. bottom: 0.015
  2660. }
  2661. },
  2662. frontAlt: {
  2663. height: math.unit(1.5, "meter"),
  2664. weight: math.unit(50, "kg"),
  2665. name: "Front (Alt)",
  2666. image: {
  2667. source: "./media/characters/kurribird/front-alt.svg",
  2668. extra: 1.45
  2669. }
  2670. },
  2671. },
  2672. [
  2673. {
  2674. name: "Normal",
  2675. height: math.unit(7, "feet")
  2676. },
  2677. {
  2678. name: "Big",
  2679. height: math.unit(12, "feet"),
  2680. default: true
  2681. },
  2682. {
  2683. name: "Macro",
  2684. height: math.unit(1500, "feet")
  2685. },
  2686. {
  2687. name: "Megamacro",
  2688. height: math.unit(2, "miles")
  2689. }
  2690. ]
  2691. ))
  2692. characterMakers.push(() => makeCharacter(
  2693. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2694. {
  2695. front: {
  2696. height: math.unit(2, "meter"),
  2697. weight: math.unit(80, "kg"),
  2698. name: "Front",
  2699. image: {
  2700. source: "./media/characters/elbial/front.svg",
  2701. extra: 1643 / 1556,
  2702. bottom: 60.2 / 1696
  2703. }
  2704. },
  2705. side: {
  2706. height: math.unit(2, "meter"),
  2707. weight: math.unit(80, "kg"),
  2708. name: "Side",
  2709. image: {
  2710. source: "./media/characters/elbial/side.svg",
  2711. extra: 1630 / 1565,
  2712. bottom: 71.5 / 1697
  2713. }
  2714. },
  2715. back: {
  2716. height: math.unit(2, "meter"),
  2717. weight: math.unit(80, "kg"),
  2718. name: "Back",
  2719. image: {
  2720. source: "./media/characters/elbial/back.svg",
  2721. extra: 1668 / 1595,
  2722. bottom: 5.6 / 1672
  2723. }
  2724. },
  2725. frontDressed: {
  2726. height: math.unit(2, "meter"),
  2727. weight: math.unit(80, "kg"),
  2728. name: "Front (Dressed)",
  2729. image: {
  2730. source: "./media/characters/elbial/front-dressed.svg",
  2731. extra: 1653 / 1584,
  2732. bottom: 57 / 1708
  2733. }
  2734. },
  2735. genitals: {
  2736. height: math.unit(2 / 3.367, "meter"),
  2737. name: "Genitals",
  2738. image: {
  2739. source: "./media/characters/elbial/genitals.svg"
  2740. }
  2741. },
  2742. },
  2743. [
  2744. {
  2745. name: "Large",
  2746. height: math.unit(100, "feet")
  2747. },
  2748. {
  2749. name: "Macro",
  2750. height: math.unit(500, "feet"),
  2751. default: true
  2752. },
  2753. {
  2754. name: "Megamacro",
  2755. height: math.unit(10, "miles")
  2756. },
  2757. {
  2758. name: "Gigamacro",
  2759. height: math.unit(25000, "miles")
  2760. },
  2761. {
  2762. name: "Full-Size",
  2763. height: math.unit(8000000, "gigaparsecs")
  2764. }
  2765. ]
  2766. ))
  2767. characterMakers.push(() => makeCharacter(
  2768. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2769. {
  2770. front: {
  2771. height: math.unit(2, "meter"),
  2772. weight: math.unit(60, "kg"),
  2773. name: "Front",
  2774. image: {
  2775. source: "./media/characters/noah/front.svg"
  2776. }
  2777. },
  2778. talons: {
  2779. height: math.unit(0.315, "meter"),
  2780. name: "Talons",
  2781. image: {
  2782. source: "./media/characters/noah/talons.svg"
  2783. }
  2784. }
  2785. },
  2786. [
  2787. {
  2788. name: "Large",
  2789. height: math.unit(50, "feet")
  2790. },
  2791. {
  2792. name: "Macro",
  2793. height: math.unit(750, "feet"),
  2794. default: true
  2795. },
  2796. {
  2797. name: "Megamacro",
  2798. height: math.unit(50, "miles")
  2799. },
  2800. {
  2801. name: "Gigamacro",
  2802. height: math.unit(100000, "miles")
  2803. },
  2804. {
  2805. name: "Full-Size",
  2806. height: math.unit(3000000000, "miles")
  2807. }
  2808. ]
  2809. ))
  2810. characterMakers.push(() => makeCharacter(
  2811. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2812. {
  2813. front: {
  2814. height: math.unit(2, "meter"),
  2815. weight: math.unit(80, "kg"),
  2816. name: "Front",
  2817. image: {
  2818. source: "./media/characters/natalya/front.svg"
  2819. }
  2820. },
  2821. back: {
  2822. height: math.unit(2, "meter"),
  2823. weight: math.unit(80, "kg"),
  2824. name: "Back",
  2825. image: {
  2826. source: "./media/characters/natalya/back.svg"
  2827. }
  2828. }
  2829. },
  2830. [
  2831. {
  2832. name: "Normal",
  2833. height: math.unit(150, "feet"),
  2834. default: true
  2835. },
  2836. {
  2837. name: "Megamacro",
  2838. height: math.unit(5, "miles")
  2839. },
  2840. {
  2841. name: "Full-Size",
  2842. height: math.unit(600, "kiloparsecs")
  2843. }
  2844. ]
  2845. ))
  2846. characterMakers.push(() => makeCharacter(
  2847. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2848. {
  2849. front: {
  2850. height: math.unit(2, "meter"),
  2851. weight: math.unit(50, "kg"),
  2852. name: "Front",
  2853. image: {
  2854. source: "./media/characters/erestrebah/front.svg",
  2855. extra: 208 / 193,
  2856. bottom: 0.055
  2857. }
  2858. },
  2859. back: {
  2860. height: math.unit(2, "meter"),
  2861. weight: math.unit(50, "kg"),
  2862. name: "Back",
  2863. image: {
  2864. source: "./media/characters/erestrebah/back.svg",
  2865. extra: 1.3
  2866. }
  2867. }
  2868. },
  2869. [
  2870. {
  2871. name: "Normal",
  2872. height: math.unit(10, "feet")
  2873. },
  2874. {
  2875. name: "Large",
  2876. height: math.unit(50, "feet"),
  2877. default: true
  2878. },
  2879. {
  2880. name: "Macro",
  2881. height: math.unit(300, "feet")
  2882. },
  2883. {
  2884. name: "Macro+",
  2885. height: math.unit(750, "feet")
  2886. },
  2887. {
  2888. name: "Megamacro",
  2889. height: math.unit(3, "miles")
  2890. }
  2891. ]
  2892. ))
  2893. characterMakers.push(() => makeCharacter(
  2894. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2895. {
  2896. front: {
  2897. height: math.unit(2, "meter"),
  2898. weight: math.unit(80, "kg"),
  2899. name: "Front",
  2900. image: {
  2901. source: "./media/characters/jennifer/front.svg",
  2902. bottom: 0.11,
  2903. extra: 1.16
  2904. }
  2905. },
  2906. frontAlt: {
  2907. height: math.unit(2, "meter"),
  2908. weight: math.unit(80, "kg"),
  2909. name: "Front (Alt)",
  2910. image: {
  2911. source: "./media/characters/jennifer/front-alt.svg"
  2912. }
  2913. }
  2914. },
  2915. [
  2916. {
  2917. name: "Canon Height",
  2918. height: math.unit(120, "feet"),
  2919. default: true
  2920. },
  2921. {
  2922. name: "Macro+",
  2923. height: math.unit(300, "feet")
  2924. },
  2925. {
  2926. name: "Megamacro",
  2927. height: math.unit(20000, "feet")
  2928. }
  2929. ]
  2930. ))
  2931. characterMakers.push(() => makeCharacter(
  2932. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  2933. {
  2934. front: {
  2935. height: math.unit(2, "meter"),
  2936. weight: math.unit(50, "kg"),
  2937. name: "Front",
  2938. image: {
  2939. source: "./media/characters/kalista/front.svg",
  2940. extra: 1947 / 1700,
  2941. bottom: 76.6 / 1412.98
  2942. }
  2943. },
  2944. back: {
  2945. height: math.unit(2, "meter"),
  2946. weight: math.unit(50, "kg"),
  2947. name: "Back",
  2948. image: {
  2949. source: "./media/characters/kalista/back.svg",
  2950. extra: 1366 / 1156,
  2951. bottom: 33.9 / 1362.78
  2952. }
  2953. }
  2954. },
  2955. [
  2956. {
  2957. name: "Uncomfortably Small",
  2958. height: math.unit(10, "feet")
  2959. },
  2960. {
  2961. name: "Small",
  2962. height: math.unit(30, "feet")
  2963. },
  2964. {
  2965. name: "Macro",
  2966. height: math.unit(100, "feet"),
  2967. default: true
  2968. },
  2969. {
  2970. name: "Macro+",
  2971. height: math.unit(2000, "feet")
  2972. },
  2973. {
  2974. name: "True Form",
  2975. height: math.unit(8924, "miles")
  2976. }
  2977. ]
  2978. ))
  2979. characterMakers.push(() => makeCharacter(
  2980. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  2981. {
  2982. front: {
  2983. height: math.unit(2, "meter"),
  2984. weight: math.unit(120, "kg"),
  2985. name: "Front",
  2986. image: {
  2987. source: "./media/characters/ggv/front.svg"
  2988. }
  2989. },
  2990. side: {
  2991. height: math.unit(2, "meter"),
  2992. weight: math.unit(120, "kg"),
  2993. name: "Side",
  2994. image: {
  2995. source: "./media/characters/ggv/side.svg"
  2996. }
  2997. }
  2998. },
  2999. [
  3000. {
  3001. name: "Extremely Puny",
  3002. height: math.unit(9 + 5 / 12, "feet")
  3003. },
  3004. {
  3005. name: "Horribly Small",
  3006. height: math.unit(47.7, "miles"),
  3007. default: true
  3008. },
  3009. {
  3010. name: "Reasonably Sized",
  3011. height: math.unit(25000, "parsecs")
  3012. },
  3013. {
  3014. name: "Slightly Uncompressed",
  3015. height: math.unit(7.77e31, "parsecs")
  3016. },
  3017. {
  3018. name: "Omniversal",
  3019. height: math.unit(1e300, "meters")
  3020. },
  3021. ]
  3022. ))
  3023. characterMakers.push(() => makeCharacter(
  3024. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3025. {
  3026. front: {
  3027. height: math.unit(2, "meter"),
  3028. weight: math.unit(75, "lb"),
  3029. name: "Front",
  3030. image: {
  3031. source: "./media/characters/napalm/front.svg"
  3032. }
  3033. },
  3034. back: {
  3035. height: math.unit(2, "meter"),
  3036. weight: math.unit(75, "lb"),
  3037. name: "Back",
  3038. image: {
  3039. source: "./media/characters/napalm/back.svg"
  3040. }
  3041. }
  3042. },
  3043. [
  3044. {
  3045. name: "Standard",
  3046. height: math.unit(55, "feet"),
  3047. default: true
  3048. }
  3049. ]
  3050. ))
  3051. characterMakers.push(() => makeCharacter(
  3052. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3053. {
  3054. front: {
  3055. height: math.unit(7 + 5 / 6, "feet"),
  3056. weight: math.unit(325, "lb"),
  3057. name: "Front",
  3058. image: {
  3059. source: "./media/characters/asana/front.svg",
  3060. extra: 1128 / 1068
  3061. }
  3062. },
  3063. back: {
  3064. height: math.unit(7 + 5 / 6, "feet"),
  3065. weight: math.unit(325, "lb"),
  3066. name: "Back",
  3067. image: {
  3068. source: "./media/characters/asana/back.svg",
  3069. extra: 1128 / 1068
  3070. }
  3071. },
  3072. },
  3073. [
  3074. {
  3075. name: "Standard",
  3076. height: math.unit(7 + 5 / 6, "feet"),
  3077. default: true
  3078. },
  3079. {
  3080. name: "Large",
  3081. height: math.unit(10, "meters")
  3082. },
  3083. {
  3084. name: "Macro",
  3085. height: math.unit(2500, "meters")
  3086. },
  3087. {
  3088. name: "Megamacro",
  3089. height: math.unit(5e6, "meters")
  3090. },
  3091. {
  3092. name: "Examacro",
  3093. height: math.unit(5e12, "lightyears")
  3094. },
  3095. {
  3096. name: "Max Size",
  3097. height: math.unit(1e31, "lightyears")
  3098. }
  3099. ]
  3100. ))
  3101. characterMakers.push(() => makeCharacter(
  3102. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3103. {
  3104. front: {
  3105. height: math.unit(2, "meter"),
  3106. weight: math.unit(60, "kg"),
  3107. name: "Front",
  3108. image: {
  3109. source: "./media/characters/ebony/front.svg",
  3110. bottom: 0.03,
  3111. extra: 1045 / 810 + 0.03
  3112. }
  3113. },
  3114. side: {
  3115. height: math.unit(2, "meter"),
  3116. weight: math.unit(60, "kg"),
  3117. name: "Side",
  3118. image: {
  3119. source: "./media/characters/ebony/side.svg",
  3120. bottom: 0.03,
  3121. extra: 1045 / 810 + 0.03
  3122. }
  3123. },
  3124. back: {
  3125. height: math.unit(2, "meter"),
  3126. weight: math.unit(60, "kg"),
  3127. name: "Back",
  3128. image: {
  3129. source: "./media/characters/ebony/back.svg",
  3130. bottom: 0.01,
  3131. extra: 1045 / 810 + 0.01
  3132. }
  3133. },
  3134. },
  3135. [
  3136. // TODO check why I did this lol
  3137. {
  3138. name: "Standard",
  3139. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3140. default: true
  3141. },
  3142. {
  3143. name: "Macro",
  3144. height: math.unit(200, "feet")
  3145. },
  3146. {
  3147. name: "Gigamacro",
  3148. height: math.unit(13000, "km")
  3149. }
  3150. ]
  3151. ))
  3152. characterMakers.push(() => makeCharacter(
  3153. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3154. {
  3155. front: {
  3156. height: math.unit(6, "feet"),
  3157. weight: math.unit(175, "lb"),
  3158. name: "Front",
  3159. image: {
  3160. source: "./media/characters/mountain/front.svg"
  3161. }
  3162. },
  3163. back: {
  3164. height: math.unit(6, "feet"),
  3165. weight: math.unit(175, "lb"),
  3166. name: "Back",
  3167. image: {
  3168. source: "./media/characters/mountain/back.svg"
  3169. }
  3170. },
  3171. },
  3172. [
  3173. {
  3174. name: "Large",
  3175. height: math.unit(20, "meters")
  3176. },
  3177. {
  3178. name: "Macro",
  3179. height: math.unit(300, "meters")
  3180. },
  3181. {
  3182. name: "Gigamacro",
  3183. height: math.unit(10000, "km"),
  3184. default: true
  3185. },
  3186. {
  3187. name: "Examacro",
  3188. height: math.unit(10e9, "lightyears")
  3189. }
  3190. ]
  3191. ))
  3192. characterMakers.push(() => makeCharacter(
  3193. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3194. {
  3195. front: {
  3196. height: math.unit(8, "feet"),
  3197. weight: math.unit(500, "lb"),
  3198. name: "Front",
  3199. image: {
  3200. source: "./media/characters/rick/front.svg"
  3201. }
  3202. }
  3203. },
  3204. [
  3205. {
  3206. name: "Normal",
  3207. height: math.unit(8, "feet"),
  3208. default: true
  3209. },
  3210. {
  3211. name: "Macro",
  3212. height: math.unit(5, "km")
  3213. }
  3214. ]
  3215. ))
  3216. characterMakers.push(() => makeCharacter(
  3217. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3218. {
  3219. front: {
  3220. height: math.unit(8, "feet"),
  3221. weight: math.unit(120, "lb"),
  3222. name: "Front",
  3223. image: {
  3224. source: "./media/characters/ona/front.svg"
  3225. }
  3226. },
  3227. frontAlt: {
  3228. height: math.unit(8, "feet"),
  3229. weight: math.unit(120, "lb"),
  3230. name: "Front (Alt)",
  3231. image: {
  3232. source: "./media/characters/ona/front-alt.svg"
  3233. }
  3234. },
  3235. back: {
  3236. height: math.unit(8, "feet"),
  3237. weight: math.unit(120, "lb"),
  3238. name: "Back",
  3239. image: {
  3240. source: "./media/characters/ona/back.svg"
  3241. }
  3242. },
  3243. foot: {
  3244. height: math.unit(1.1, "feet"),
  3245. name: "Foot",
  3246. image: {
  3247. source: "./media/characters/ona/foot.svg"
  3248. }
  3249. }
  3250. },
  3251. [
  3252. {
  3253. name: "Megamacro",
  3254. height: math.unit(70, "km"),
  3255. default: true
  3256. },
  3257. {
  3258. name: "Gigamacro",
  3259. height: math.unit(681818, "miles")
  3260. },
  3261. {
  3262. name: "Examacro",
  3263. height: math.unit(3800000, "lightyears")
  3264. },
  3265. ]
  3266. ))
  3267. characterMakers.push(() => makeCharacter(
  3268. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3269. {
  3270. front: {
  3271. height: math.unit(12, "feet"),
  3272. weight: math.unit(3000, "lb"),
  3273. name: "Front",
  3274. image: {
  3275. source: "./media/characters/mech/front.svg",
  3276. bottom: 0.025,
  3277. }
  3278. },
  3279. back: {
  3280. height: math.unit(12, "feet"),
  3281. weight: math.unit(3000, "lb"),
  3282. name: "Back",
  3283. image: {
  3284. source: "./media/characters/mech/back.svg",
  3285. bottom: 0.03,
  3286. }
  3287. }
  3288. },
  3289. [
  3290. {
  3291. name: "Normal",
  3292. height: math.unit(12, "feet")
  3293. },
  3294. {
  3295. name: "Macro",
  3296. height: math.unit(300, "feet"),
  3297. default: true
  3298. },
  3299. {
  3300. name: "Macro+",
  3301. height: math.unit(1500, "feet")
  3302. },
  3303. ]
  3304. ))
  3305. characterMakers.push(() => makeCharacter(
  3306. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3307. {
  3308. front: {
  3309. height: math.unit(1.3, "meter"),
  3310. weight: math.unit(30, "kg"),
  3311. name: "Front",
  3312. image: {
  3313. source: "./media/characters/gregory/front.svg",
  3314. }
  3315. }
  3316. },
  3317. [
  3318. {
  3319. name: "Normal",
  3320. height: math.unit(1.3, "meter"),
  3321. default: true
  3322. },
  3323. {
  3324. name: "Macro",
  3325. height: math.unit(20, "meter")
  3326. }
  3327. ]
  3328. ))
  3329. characterMakers.push(() => makeCharacter(
  3330. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3331. {
  3332. front: {
  3333. height: math.unit(2.8, "meter"),
  3334. weight: math.unit(200, "kg"),
  3335. name: "Front",
  3336. image: {
  3337. source: "./media/characters/elory/front.svg",
  3338. }
  3339. }
  3340. },
  3341. [
  3342. {
  3343. name: "Normal",
  3344. height: math.unit(2.8, "meter"),
  3345. default: true
  3346. },
  3347. {
  3348. name: "Macro",
  3349. height: math.unit(38, "meter")
  3350. }
  3351. ]
  3352. ))
  3353. characterMakers.push(() => makeCharacter(
  3354. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3355. {
  3356. front: {
  3357. height: math.unit(470, "feet"),
  3358. weight: math.unit(924, "tons"),
  3359. name: "Front",
  3360. image: {
  3361. source: "./media/characters/angelpatamon/front.svg",
  3362. }
  3363. }
  3364. },
  3365. [
  3366. {
  3367. name: "Normal",
  3368. height: math.unit(470, "feet"),
  3369. default: true
  3370. },
  3371. {
  3372. name: "Deity Size I",
  3373. height: math.unit(28651.2, "km")
  3374. },
  3375. {
  3376. name: "Deity Size II",
  3377. height: math.unit(171907.2, "km")
  3378. }
  3379. ]
  3380. ))
  3381. characterMakers.push(() => makeCharacter(
  3382. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3383. {
  3384. side: {
  3385. height: math.unit(7.2, "meter"),
  3386. weight: math.unit(8.2, "tons"),
  3387. name: "Side",
  3388. image: {
  3389. source: "./media/characters/cryae/side.svg",
  3390. extra: 3500 / 1500
  3391. }
  3392. }
  3393. },
  3394. [
  3395. {
  3396. name: "Normal",
  3397. height: math.unit(7.2, "meter"),
  3398. default: true
  3399. }
  3400. ]
  3401. ))
  3402. characterMakers.push(() => makeCharacter(
  3403. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3404. {
  3405. front: {
  3406. height: math.unit(6, "feet"),
  3407. weight: math.unit(175, "lb"),
  3408. name: "Front",
  3409. image: {
  3410. source: "./media/characters/xera/front.svg",
  3411. extra: 2300 / 2061
  3412. }
  3413. },
  3414. side: {
  3415. height: math.unit(6, "feet"),
  3416. weight: math.unit(175, "lb"),
  3417. name: "Side",
  3418. image: {
  3419. source: "./media/characters/xera/side.svg",
  3420. extra: 2300 / 2061
  3421. }
  3422. },
  3423. back: {
  3424. height: math.unit(6, "feet"),
  3425. weight: math.unit(175, "lb"),
  3426. name: "Back",
  3427. image: {
  3428. source: "./media/characters/xera/back.svg"
  3429. }
  3430. },
  3431. },
  3432. [
  3433. {
  3434. name: "Small",
  3435. height: math.unit(10, "feet")
  3436. },
  3437. {
  3438. name: "Macro",
  3439. height: math.unit(500, "meters"),
  3440. default: true
  3441. },
  3442. {
  3443. name: "Macro+",
  3444. height: math.unit(10, "km")
  3445. },
  3446. {
  3447. name: "Gigamacro",
  3448. height: math.unit(25000, "km")
  3449. },
  3450. {
  3451. name: "Teramacro",
  3452. height: math.unit(3e6, "km")
  3453. }
  3454. ]
  3455. ))
  3456. characterMakers.push(() => makeCharacter(
  3457. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3458. {
  3459. front: {
  3460. height: math.unit(6, "feet"),
  3461. weight: math.unit(175, "lb"),
  3462. name: "Front",
  3463. image: {
  3464. source: "./media/characters/nebula/front.svg",
  3465. extra: 2600 / 2450
  3466. }
  3467. }
  3468. },
  3469. [
  3470. {
  3471. name: "Small",
  3472. height: math.unit(4.5, "meters")
  3473. },
  3474. {
  3475. name: "Macro",
  3476. height: math.unit(1500, "meters"),
  3477. default: true
  3478. },
  3479. {
  3480. name: "Megamacro",
  3481. height: math.unit(150, "km")
  3482. },
  3483. {
  3484. name: "Gigamacro",
  3485. height: math.unit(27000, "km")
  3486. }
  3487. ]
  3488. ))
  3489. characterMakers.push(() => makeCharacter(
  3490. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3491. {
  3492. front: {
  3493. height: math.unit(6, "feet"),
  3494. weight: math.unit(225, "lb"),
  3495. name: "Front",
  3496. image: {
  3497. source: "./media/characters/abysgar/front.svg"
  3498. }
  3499. }
  3500. },
  3501. [
  3502. {
  3503. name: "Small",
  3504. height: math.unit(4.5, "meters")
  3505. },
  3506. {
  3507. name: "Macro",
  3508. height: math.unit(1250, "meters"),
  3509. default: true
  3510. },
  3511. {
  3512. name: "Megamacro",
  3513. height: math.unit(125, "km")
  3514. },
  3515. {
  3516. name: "Gigamacro",
  3517. height: math.unit(26000, "km")
  3518. }
  3519. ]
  3520. ))
  3521. characterMakers.push(() => makeCharacter(
  3522. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3523. {
  3524. front: {
  3525. height: math.unit(6, "feet"),
  3526. weight: math.unit(180, "lb"),
  3527. name: "Front",
  3528. image: {
  3529. source: "./media/characters/yakuz/front.svg"
  3530. }
  3531. }
  3532. },
  3533. [
  3534. {
  3535. name: "Small",
  3536. height: math.unit(5, "meters")
  3537. },
  3538. {
  3539. name: "Macro",
  3540. height: math.unit(1500, "meters"),
  3541. default: true
  3542. },
  3543. {
  3544. name: "Megamacro",
  3545. height: math.unit(200, "km")
  3546. },
  3547. {
  3548. name: "Gigamacro",
  3549. height: math.unit(100000, "km")
  3550. }
  3551. ]
  3552. ))
  3553. characterMakers.push(() => makeCharacter(
  3554. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3555. {
  3556. front: {
  3557. height: math.unit(6, "feet"),
  3558. weight: math.unit(175, "lb"),
  3559. name: "Front",
  3560. image: {
  3561. source: "./media/characters/mirova/front.svg"
  3562. }
  3563. }
  3564. },
  3565. [
  3566. {
  3567. name: "Small",
  3568. height: math.unit(5, "meters")
  3569. },
  3570. {
  3571. name: "Macro",
  3572. height: math.unit(900, "meters"),
  3573. default: true
  3574. },
  3575. {
  3576. name: "Megamacro",
  3577. height: math.unit(135, "km")
  3578. },
  3579. {
  3580. name: "Gigamacro",
  3581. height: math.unit(20000, "km")
  3582. }
  3583. ]
  3584. ))
  3585. characterMakers.push(() => makeCharacter(
  3586. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3587. {
  3588. side: {
  3589. height: math.unit(28.35, "feet"),
  3590. weight: math.unit(99.75, "tons"),
  3591. name: "Side",
  3592. image: {
  3593. source: "./media/characters/asana-mech/side.svg"
  3594. }
  3595. }
  3596. },
  3597. [
  3598. {
  3599. name: "Normal",
  3600. height: math.unit(28.35, "feet"),
  3601. default: true
  3602. },
  3603. {
  3604. name: "Macro",
  3605. height: math.unit(2500, "feet")
  3606. },
  3607. {
  3608. name: "Megamacro",
  3609. height: math.unit(25, "miles")
  3610. },
  3611. {
  3612. name: "Examacro",
  3613. height: math.unit(6e8, "lightyears")
  3614. },
  3615. ]
  3616. ))
  3617. characterMakers.push(() => makeCharacter(
  3618. { name: "Ashtrek", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3619. {
  3620. front: {
  3621. height: math.unit(2, "meters"),
  3622. weight: math.unit(70, "kg"),
  3623. name: "Front",
  3624. image: {
  3625. source: "./media/characters/ashtrek/front.svg",
  3626. extra: 560 / 524,
  3627. bottom: 0.01
  3628. }
  3629. },
  3630. frontArmor: {
  3631. height: math.unit(2, "meters"),
  3632. weight: math.unit(76, "kg"),
  3633. name: "Front (Armor)",
  3634. image: {
  3635. source: "./media/characters/ashtrek/front-armor.svg",
  3636. extra: 561 / 527,
  3637. bottom: 0.01
  3638. }
  3639. },
  3640. side: {
  3641. height: math.unit(2, "meters"),
  3642. weight: math.unit(70, "kg"),
  3643. name: "Side",
  3644. image: {
  3645. source: "./media/characters/ashtrek/side.svg",
  3646. extra: 1717 / 1609,
  3647. bottom: 0.005
  3648. }
  3649. },
  3650. back: {
  3651. height: math.unit(2, "meters"),
  3652. weight: math.unit(70, "kg"),
  3653. name: "Back",
  3654. image: {
  3655. source: "./media/characters/ashtrek/back.svg",
  3656. extra: 1570 / 1501
  3657. }
  3658. },
  3659. },
  3660. [
  3661. {
  3662. name: "DEFCON 5",
  3663. height: math.unit(5, "meters")
  3664. },
  3665. {
  3666. name: "DEFCON 4",
  3667. height: math.unit(500, "meters"),
  3668. default: true
  3669. },
  3670. {
  3671. name: "DEFCON 3",
  3672. height: math.unit(5, "km")
  3673. },
  3674. {
  3675. name: "DEFCON 2",
  3676. height: math.unit(500, "km")
  3677. },
  3678. {
  3679. name: "DEFCON 1",
  3680. height: math.unit(500000, "km")
  3681. },
  3682. {
  3683. name: "DEFCON 0",
  3684. height: math.unit(3, "gigaparsecs")
  3685. },
  3686. ]
  3687. ))
  3688. characterMakers.push(() => makeCharacter(
  3689. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3690. {
  3691. front: {
  3692. height: math.unit(2, "meters"),
  3693. weight: math.unit(76, "kg"),
  3694. name: "Front",
  3695. image: {
  3696. source: "./media/characters/gale/front.svg"
  3697. }
  3698. },
  3699. frontAlt1: {
  3700. height: math.unit(2, "meters"),
  3701. weight: math.unit(76, "kg"),
  3702. name: "Front (Alt 1)",
  3703. image: {
  3704. source: "./media/characters/gale/front-alt-1.svg"
  3705. }
  3706. },
  3707. frontAlt2: {
  3708. height: math.unit(2, "meters"),
  3709. weight: math.unit(76, "kg"),
  3710. name: "Front (Alt 2)",
  3711. image: {
  3712. source: "./media/characters/gale/front-alt-2.svg"
  3713. }
  3714. },
  3715. },
  3716. [
  3717. {
  3718. name: "Normal",
  3719. height: math.unit(7, "feet")
  3720. },
  3721. {
  3722. name: "Macro",
  3723. height: math.unit(150, "feet"),
  3724. default: true
  3725. },
  3726. {
  3727. name: "Macro+",
  3728. height: math.unit(300, "feet")
  3729. },
  3730. ]
  3731. ))
  3732. characterMakers.push(() => makeCharacter(
  3733. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3734. {
  3735. front: {
  3736. height: math.unit(2, "meters"),
  3737. weight: math.unit(76, "kg"),
  3738. name: "Front",
  3739. image: {
  3740. source: "./media/characters/draylen/front.svg"
  3741. }
  3742. }
  3743. },
  3744. [
  3745. {
  3746. name: "Macro",
  3747. height: math.unit(150, "feet"),
  3748. default: true
  3749. }
  3750. ]
  3751. ))
  3752. characterMakers.push(() => makeCharacter(
  3753. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3754. {
  3755. front: {
  3756. height: math.unit(7 + 9 / 12, "feet"),
  3757. weight: math.unit(379, "lbs"),
  3758. name: "Front",
  3759. image: {
  3760. source: "./media/characters/chez/front.svg"
  3761. }
  3762. },
  3763. side: {
  3764. height: math.unit(7 + 9 / 12, "feet"),
  3765. weight: math.unit(379, "lbs"),
  3766. name: "Side",
  3767. image: {
  3768. source: "./media/characters/chez/side.svg"
  3769. }
  3770. }
  3771. },
  3772. [
  3773. {
  3774. name: "Normal",
  3775. height: math.unit(7 + 9 / 12, "feet"),
  3776. default: true
  3777. },
  3778. {
  3779. name: "God King",
  3780. height: math.unit(9750000, "meters")
  3781. }
  3782. ]
  3783. ))
  3784. characterMakers.push(() => makeCharacter(
  3785. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  3786. {
  3787. front: {
  3788. height: math.unit(6, "feet"),
  3789. weight: math.unit(275, "lbs"),
  3790. name: "Front",
  3791. image: {
  3792. source: "./media/characters/kaylum/front.svg",
  3793. bottom: 0.01,
  3794. extra: 1166 / 1031
  3795. }
  3796. },
  3797. frontWingless: {
  3798. height: math.unit(6, "feet"),
  3799. weight: math.unit(275, "lbs"),
  3800. name: "Front (Wingless)",
  3801. image: {
  3802. source: "./media/characters/kaylum/front-wingless.svg",
  3803. bottom: 0.01,
  3804. extra: 1117 / 1031
  3805. }
  3806. }
  3807. },
  3808. [
  3809. {
  3810. name: "Normal",
  3811. height: math.unit(3.05, "meters")
  3812. },
  3813. {
  3814. name: "Master",
  3815. height: math.unit(5.5, "meters")
  3816. },
  3817. {
  3818. name: "Rampage",
  3819. height: math.unit(19, "meters")
  3820. },
  3821. {
  3822. name: "Macro Lite",
  3823. height: math.unit(37, "meters")
  3824. },
  3825. {
  3826. name: "Hyper Predator",
  3827. height: math.unit(61, "meters")
  3828. },
  3829. {
  3830. name: "Macro",
  3831. height: math.unit(138, "meters"),
  3832. default: true
  3833. }
  3834. ]
  3835. ))
  3836. characterMakers.push(() => makeCharacter(
  3837. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  3838. {
  3839. front: {
  3840. height: math.unit(6, "feet"),
  3841. weight: math.unit(150, "lbs"),
  3842. name: "Front",
  3843. image: {
  3844. source: "./media/characters/geta/front.svg"
  3845. }
  3846. }
  3847. },
  3848. [
  3849. {
  3850. name: "Micro",
  3851. height: math.unit(3, "inches"),
  3852. default: true
  3853. },
  3854. {
  3855. name: "Normal",
  3856. height: math.unit(5 + 5 / 12, "feet")
  3857. }
  3858. ]
  3859. ))
  3860. characterMakers.push(() => makeCharacter(
  3861. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  3862. {
  3863. front: {
  3864. height: math.unit(6, "feet"),
  3865. weight: math.unit(300, "lbs"),
  3866. name: "Front",
  3867. image: {
  3868. source: "./media/characters/tyrnn/front.svg"
  3869. }
  3870. }
  3871. },
  3872. [
  3873. {
  3874. name: "Main Height",
  3875. height: math.unit(355, "feet"),
  3876. default: true
  3877. },
  3878. {
  3879. name: "Fave. Height",
  3880. height: math.unit(2400, "feet")
  3881. }
  3882. ]
  3883. ))
  3884. characterMakers.push(() => makeCharacter(
  3885. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  3886. {
  3887. front: {
  3888. height: math.unit(6, "feet"),
  3889. weight: math.unit(300, "lbs"),
  3890. name: "Front",
  3891. image: {
  3892. source: "./media/characters/appledectomy/front.svg"
  3893. }
  3894. }
  3895. },
  3896. [
  3897. {
  3898. name: "Macro",
  3899. height: math.unit(2500, "feet")
  3900. },
  3901. {
  3902. name: "Megamacro",
  3903. height: math.unit(50, "miles"),
  3904. default: true
  3905. },
  3906. {
  3907. name: "Gigamacro",
  3908. height: math.unit(5000, "miles")
  3909. },
  3910. {
  3911. name: "Teramacro",
  3912. height: math.unit(250000, "miles")
  3913. },
  3914. ]
  3915. ))
  3916. characterMakers.push(() => makeCharacter(
  3917. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  3918. {
  3919. front: {
  3920. height: math.unit(6, "feet"),
  3921. weight: math.unit(200, "lbs"),
  3922. name: "Front",
  3923. image: {
  3924. source: "./media/characters/vulpes/front.svg",
  3925. extra: 573 / 543,
  3926. bottom: 0.033
  3927. }
  3928. },
  3929. side: {
  3930. height: math.unit(6, "feet"),
  3931. weight: math.unit(200, "lbs"),
  3932. name: "Side",
  3933. image: {
  3934. source: "./media/characters/vulpes/side.svg",
  3935. extra: 573 / 543,
  3936. bottom: 0.01
  3937. }
  3938. },
  3939. back: {
  3940. height: math.unit(6, "feet"),
  3941. weight: math.unit(200, "lbs"),
  3942. name: "Back",
  3943. image: {
  3944. source: "./media/characters/vulpes/back.svg",
  3945. extra: 573 / 543,
  3946. }
  3947. },
  3948. feet: {
  3949. height: math.unit(1.276, "feet"),
  3950. name: "Feet",
  3951. image: {
  3952. source: "./media/characters/vulpes/feet.svg"
  3953. }
  3954. },
  3955. maw: {
  3956. height: math.unit(1.18, "feet"),
  3957. name: "Maw",
  3958. image: {
  3959. source: "./media/characters/vulpes/maw.svg"
  3960. }
  3961. },
  3962. },
  3963. [
  3964. {
  3965. name: "Micro",
  3966. height: math.unit(2, "inches")
  3967. },
  3968. {
  3969. name: "Normal",
  3970. height: math.unit(6.3, "feet")
  3971. },
  3972. {
  3973. name: "Macro",
  3974. height: math.unit(850, "feet")
  3975. },
  3976. {
  3977. name: "Megamacro",
  3978. height: math.unit(7500, "feet"),
  3979. default: true
  3980. },
  3981. {
  3982. name: "Gigamacro",
  3983. height: math.unit(570000, "miles")
  3984. }
  3985. ]
  3986. ))
  3987. characterMakers.push(() => makeCharacter(
  3988. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  3989. {
  3990. front: {
  3991. height: math.unit(6, "feet"),
  3992. weight: math.unit(210, "lbs"),
  3993. name: "Front",
  3994. image: {
  3995. source: "./media/characters/rain-fallen/front.svg"
  3996. }
  3997. },
  3998. side: {
  3999. height: math.unit(6, "feet"),
  4000. weight: math.unit(210, "lbs"),
  4001. name: "Side",
  4002. image: {
  4003. source: "./media/characters/rain-fallen/side.svg"
  4004. }
  4005. },
  4006. back: {
  4007. height: math.unit(6, "feet"),
  4008. weight: math.unit(210, "lbs"),
  4009. name: "Back",
  4010. image: {
  4011. source: "./media/characters/rain-fallen/back.svg"
  4012. }
  4013. },
  4014. feral: {
  4015. height: math.unit(9, "feet"),
  4016. weight: math.unit(700, "lbs"),
  4017. name: "Feral",
  4018. image: {
  4019. source: "./media/characters/rain-fallen/feral.svg"
  4020. }
  4021. },
  4022. },
  4023. [
  4024. {
  4025. name: "Normal",
  4026. height: math.unit(5, "meter")
  4027. },
  4028. {
  4029. name: "Macro",
  4030. height: math.unit(150, "meter"),
  4031. default: true
  4032. },
  4033. {
  4034. name: "Megamacro",
  4035. height: math.unit(278e6, "meter")
  4036. },
  4037. {
  4038. name: "Gigamacro",
  4039. height: math.unit(2e9, "meter")
  4040. },
  4041. {
  4042. name: "Teramacro",
  4043. height: math.unit(8e12, "meter")
  4044. },
  4045. {
  4046. name: "Devourer",
  4047. height: math.unit(14, "zettameters")
  4048. },
  4049. {
  4050. name: "Scarlet King",
  4051. height: math.unit(18, "yottameters")
  4052. },
  4053. {
  4054. name: "Void",
  4055. height: math.unit(6.66e66, "yottameters")
  4056. }
  4057. ]
  4058. ))
  4059. characterMakers.push(() => makeCharacter(
  4060. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4061. {
  4062. standing: {
  4063. height: math.unit(6, "feet"),
  4064. weight: math.unit(180, "lbs"),
  4065. name: "Standing",
  4066. image: {
  4067. source: "./media/characters/zaakira/standing.svg"
  4068. }
  4069. },
  4070. laying: {
  4071. height: math.unit(3, "feet"),
  4072. weight: math.unit(180, "lbs"),
  4073. name: "Laying",
  4074. image: {
  4075. source: "./media/characters/zaakira/laying.svg"
  4076. }
  4077. },
  4078. },
  4079. [
  4080. {
  4081. name: "Normal",
  4082. height: math.unit(12, "feet")
  4083. },
  4084. {
  4085. name: "Macro",
  4086. height: math.unit(279, "feet"),
  4087. default: true
  4088. }
  4089. ]
  4090. ))
  4091. characterMakers.push(() => makeCharacter(
  4092. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4093. {
  4094. front: {
  4095. height: math.unit(6, "feet"),
  4096. weight: math.unit(250, "lbs"),
  4097. name: "Front",
  4098. image: {
  4099. source: "./media/characters/sigvald/front.svg",
  4100. extra: 1000 / 850
  4101. }
  4102. },
  4103. back: {
  4104. height: math.unit(6, "feet"),
  4105. weight: math.unit(250, "lbs"),
  4106. name: "Back",
  4107. image: {
  4108. source: "./media/characters/sigvald/back.svg"
  4109. }
  4110. },
  4111. },
  4112. [
  4113. {
  4114. name: "Normal",
  4115. height: math.unit(8, "feet")
  4116. },
  4117. {
  4118. name: "Large",
  4119. height: math.unit(12, "feet")
  4120. },
  4121. {
  4122. name: "Larger",
  4123. height: math.unit(20, "feet")
  4124. },
  4125. {
  4126. name: "Macro",
  4127. height: math.unit(150, "feet")
  4128. },
  4129. {
  4130. name: "Macro+",
  4131. height: math.unit(200, "feet"),
  4132. default: true
  4133. },
  4134. ]
  4135. ))
  4136. characterMakers.push(() => makeCharacter(
  4137. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4138. {
  4139. side: {
  4140. height: math.unit(12, "feet"),
  4141. weight: math.unit(2000, "kg"),
  4142. name: "Side",
  4143. image: {
  4144. source: "./media/characters/scott/side.svg",
  4145. extra: 754 / 724,
  4146. bottom: 0.069
  4147. }
  4148. },
  4149. upright: {
  4150. height: math.unit(12, "feet"),
  4151. weight: math.unit(2000, "kg"),
  4152. name: "Upright",
  4153. image: {
  4154. source: "./media/characters/scott/upright.svg",
  4155. extra: 3881 / 3722,
  4156. bottom: 0.05
  4157. }
  4158. },
  4159. },
  4160. [
  4161. {
  4162. name: "Normal",
  4163. height: math.unit(12, "feet"),
  4164. default: true
  4165. },
  4166. ]
  4167. ))
  4168. characterMakers.push(() => makeCharacter(
  4169. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4170. {
  4171. side: {
  4172. height: math.unit(8, "meters"),
  4173. weight: math.unit(84755, "lbs"),
  4174. name: "Side",
  4175. image: {
  4176. source: "./media/characters/tobias/side.svg",
  4177. extra: 1474 / 1096,
  4178. bottom: 38.9 / 1513.1235
  4179. }
  4180. },
  4181. },
  4182. [
  4183. {
  4184. name: "Normal",
  4185. height: math.unit(8, "meters"),
  4186. default: true
  4187. },
  4188. ]
  4189. ))
  4190. characterMakers.push(() => makeCharacter(
  4191. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4192. {
  4193. front: {
  4194. height: math.unit(5.5, "feet"),
  4195. weight: math.unit(400, "lbs"),
  4196. name: "Front",
  4197. image: {
  4198. source: "./media/characters/kieran/front.svg",
  4199. extra: 2694 / 2364,
  4200. bottom: 217 / 2908
  4201. }
  4202. },
  4203. side: {
  4204. height: math.unit(5.5, "feet"),
  4205. weight: math.unit(400, "lbs"),
  4206. name: "Side",
  4207. image: {
  4208. source: "./media/characters/kieran/side.svg",
  4209. extra: 875 / 777,
  4210. bottom: 84.6 / 959
  4211. }
  4212. },
  4213. },
  4214. [
  4215. {
  4216. name: "Normal",
  4217. height: math.unit(5.5, "feet"),
  4218. default: true
  4219. },
  4220. ]
  4221. ))
  4222. characterMakers.push(() => makeCharacter(
  4223. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4224. {
  4225. side: {
  4226. height: math.unit(2, "meters"),
  4227. weight: math.unit(70, "kg"),
  4228. name: "Side",
  4229. image: {
  4230. source: "./media/characters/sanya/side.svg",
  4231. bottom: 0.02,
  4232. extra: 1.02
  4233. }
  4234. },
  4235. },
  4236. [
  4237. {
  4238. name: "Small",
  4239. height: math.unit(2, "meters")
  4240. },
  4241. {
  4242. name: "Normal",
  4243. height: math.unit(3, "meters")
  4244. },
  4245. {
  4246. name: "Macro",
  4247. height: math.unit(16, "meters"),
  4248. default: true
  4249. },
  4250. ]
  4251. ))
  4252. characterMakers.push(() => makeCharacter(
  4253. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4254. {
  4255. front: {
  4256. height: math.unit(2, "meters"),
  4257. weight: math.unit(120, "kg"),
  4258. name: "Front",
  4259. image: {
  4260. source: "./media/characters/miranda/front.svg",
  4261. extra: 195/185,
  4262. bottom: 10.9/206.5
  4263. }
  4264. },
  4265. back: {
  4266. height: math.unit(2, "meters"),
  4267. weight: math.unit(120, "kg"),
  4268. name: "Back",
  4269. image: {
  4270. source: "./media/characters/miranda/back.svg",
  4271. extra: 201/193,
  4272. bottom: 2.3/203.7
  4273. }
  4274. },
  4275. },
  4276. [
  4277. {
  4278. name: "Normal",
  4279. height: math.unit(10, "feet"),
  4280. default: true
  4281. }
  4282. ]
  4283. ))
  4284. characterMakers.push(() => makeCharacter(
  4285. { name: "James", species: ["deer"], tags: ["anthro"] },
  4286. {
  4287. side: {
  4288. height: math.unit(2, "meters"),
  4289. weight: math.unit(100, "kg"),
  4290. name: "Front",
  4291. image: {
  4292. source: "./media/characters/james/front.svg",
  4293. extra: 10 / 8.5
  4294. }
  4295. },
  4296. },
  4297. [
  4298. {
  4299. name: "Normal",
  4300. height: math.unit(8.5, "feet"),
  4301. default: true
  4302. }
  4303. ]
  4304. ))
  4305. characterMakers.push(() => makeCharacter(
  4306. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4307. {
  4308. side: {
  4309. height: math.unit(9.5, "feet"),
  4310. weight: math.unit(2500, "lbs"),
  4311. name: "Side",
  4312. image: {
  4313. source: "./media/characters/heather/side.svg"
  4314. }
  4315. },
  4316. },
  4317. [
  4318. {
  4319. name: "Normal",
  4320. height: math.unit(9.5, "feet"),
  4321. default: true
  4322. }
  4323. ]
  4324. ))
  4325. characterMakers.push(() => makeCharacter(
  4326. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4327. {
  4328. side: {
  4329. height: math.unit(6.5, "feet"),
  4330. weight: math.unit(400, "lbs"),
  4331. name: "Side",
  4332. image: {
  4333. source: "./media/characters/lukas/side.svg",
  4334. extra: 7.25 / 6.5
  4335. }
  4336. },
  4337. },
  4338. [
  4339. {
  4340. name: "Normal",
  4341. height: math.unit(6.5, "feet"),
  4342. default: true
  4343. }
  4344. ]
  4345. ))
  4346. characterMakers.push(() => makeCharacter(
  4347. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4348. {
  4349. side: {
  4350. height: math.unit(5, "feet"),
  4351. weight: math.unit(3000, "lbs"),
  4352. name: "Side",
  4353. image: {
  4354. source: "./media/characters/louise/side.svg"
  4355. }
  4356. },
  4357. },
  4358. [
  4359. {
  4360. name: "Normal",
  4361. height: math.unit(5, "feet"),
  4362. default: true
  4363. }
  4364. ]
  4365. ))
  4366. characterMakers.push(() => makeCharacter(
  4367. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4368. {
  4369. side: {
  4370. height: math.unit(6, "feet"),
  4371. weight: math.unit(150, "lbs"),
  4372. name: "Side",
  4373. image: {
  4374. source: "./media/characters/ramona/side.svg"
  4375. }
  4376. },
  4377. },
  4378. [
  4379. {
  4380. name: "Normal",
  4381. height: math.unit(5.3, "meters"),
  4382. default: true
  4383. },
  4384. {
  4385. name: "Macro",
  4386. height: math.unit(20, "stories")
  4387. },
  4388. {
  4389. name: "Macro+",
  4390. height: math.unit(50, "stories")
  4391. },
  4392. ]
  4393. ))
  4394. characterMakers.push(() => makeCharacter(
  4395. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4396. {
  4397. standing: {
  4398. height: math.unit(5.75, "feet"),
  4399. weight: math.unit(160, "lbs"),
  4400. name: "Standing",
  4401. image: {
  4402. source: "./media/characters/deerpuff/standing.svg",
  4403. extra: 682 / 624
  4404. }
  4405. },
  4406. sitting: {
  4407. height: math.unit(5.75 / 1.79, "feet"),
  4408. weight: math.unit(160, "lbs"),
  4409. name: "Sitting",
  4410. image: {
  4411. source: "./media/characters/deerpuff/sitting.svg",
  4412. bottom: 44 / 400,
  4413. extra: 1
  4414. }
  4415. },
  4416. taurLaying: {
  4417. height: math.unit(6, "feet"),
  4418. weight: math.unit(400, "lbs"),
  4419. name: "Taur (Laying)",
  4420. image: {
  4421. source: "./media/characters/deerpuff/taur-laying.svg"
  4422. }
  4423. },
  4424. },
  4425. [
  4426. {
  4427. name: "Puffball",
  4428. height: math.unit(6, "inches")
  4429. },
  4430. {
  4431. name: "Normalpuff",
  4432. height: math.unit(5.75, "feet")
  4433. },
  4434. {
  4435. name: "Macropuff",
  4436. height: math.unit(1500, "feet"),
  4437. default: true
  4438. },
  4439. {
  4440. name: "Megapuff",
  4441. height: math.unit(500, "miles")
  4442. },
  4443. {
  4444. name: "Gigapuff",
  4445. height: math.unit(250000, "miles")
  4446. },
  4447. {
  4448. name: "Omegapuff",
  4449. height: math.unit(1000, "lightyears")
  4450. },
  4451. ]
  4452. ))
  4453. characterMakers.push(() => makeCharacter(
  4454. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4455. {
  4456. stomping: {
  4457. height: math.unit(6, "feet"),
  4458. weight: math.unit(170, "lbs"),
  4459. name: "Stomping",
  4460. image: {
  4461. source: "./media/characters/vivian/stomping.svg"
  4462. }
  4463. },
  4464. sitting: {
  4465. height: math.unit(6 / 1.75, "feet"),
  4466. weight: math.unit(170, "lbs"),
  4467. name: "Sitting",
  4468. image: {
  4469. source: "./media/characters/vivian/sitting.svg",
  4470. bottom: 1 / 6.4,
  4471. extra: 1,
  4472. }
  4473. },
  4474. },
  4475. [
  4476. {
  4477. name: "Normal",
  4478. height: math.unit(7, "feet"),
  4479. default: true
  4480. },
  4481. {
  4482. name: "Macro",
  4483. height: math.unit(10, "stories")
  4484. },
  4485. {
  4486. name: "Macro+",
  4487. height: math.unit(30, "stories")
  4488. },
  4489. {
  4490. name: "Megamacro",
  4491. height: math.unit(10, "miles")
  4492. },
  4493. {
  4494. name: "Megamacro+",
  4495. height: math.unit(2750000, "meters")
  4496. },
  4497. ]
  4498. ))
  4499. characterMakers.push(() => makeCharacter(
  4500. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4501. {
  4502. front: {
  4503. height: math.unit(6, "feet"),
  4504. weight: math.unit(160, "lbs"),
  4505. name: "Front",
  4506. image: {
  4507. source: "./media/characters/prince/front.svg",
  4508. extra: 3400 / 3000
  4509. }
  4510. },
  4511. jumping: {
  4512. height: math.unit(6, "feet"),
  4513. weight: math.unit(160, "lbs"),
  4514. name: "Jumping",
  4515. image: {
  4516. source: "./media/characters/prince/jump.svg",
  4517. extra: 2555 / 2134
  4518. }
  4519. },
  4520. },
  4521. [
  4522. {
  4523. name: "Normal",
  4524. height: math.unit(7.75, "feet"),
  4525. default: true
  4526. },
  4527. {
  4528. name: "Not cute",
  4529. height: math.unit(17, "feet")
  4530. },
  4531. {
  4532. name: "I said NOT",
  4533. height: math.unit(91, "feet")
  4534. },
  4535. {
  4536. name: "Please stop",
  4537. height: math.unit(560, "feet")
  4538. },
  4539. {
  4540. name: "What have you done",
  4541. height: math.unit(2200, "feet")
  4542. },
  4543. {
  4544. name: "Deer God",
  4545. height: math.unit(3.6, "miles")
  4546. },
  4547. ]
  4548. ))
  4549. characterMakers.push(() => makeCharacter(
  4550. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4551. {
  4552. standing: {
  4553. height: math.unit(6, "feet"),
  4554. weight: math.unit(300, "lbs"),
  4555. name: "Standing",
  4556. image: {
  4557. source: "./media/characters/psymon/standing.svg",
  4558. extra: 1888 / 1810,
  4559. bottom: 0.05
  4560. }
  4561. },
  4562. slithering: {
  4563. height: math.unit(6, "feet"),
  4564. weight: math.unit(300, "lbs"),
  4565. name: "Slithering",
  4566. image: {
  4567. source: "./media/characters/psymon/slithering.svg",
  4568. extra: 1330 / 1224
  4569. }
  4570. },
  4571. slitheringAlt: {
  4572. height: math.unit(6, "feet"),
  4573. weight: math.unit(300, "lbs"),
  4574. name: "Slithering (Alt)",
  4575. image: {
  4576. source: "./media/characters/psymon/slithering-alt.svg",
  4577. extra: 1330 / 1224
  4578. }
  4579. },
  4580. },
  4581. [
  4582. {
  4583. name: "Normal",
  4584. height: math.unit(11.25, "feet"),
  4585. default: true
  4586. },
  4587. {
  4588. name: "Large",
  4589. height: math.unit(27, "feet")
  4590. },
  4591. {
  4592. name: "Giant",
  4593. height: math.unit(87, "feet")
  4594. },
  4595. {
  4596. name: "Macro",
  4597. height: math.unit(365, "feet")
  4598. },
  4599. {
  4600. name: "Megamacro",
  4601. height: math.unit(3, "miles")
  4602. },
  4603. {
  4604. name: "World Serpent",
  4605. height: math.unit(8000, "miles")
  4606. },
  4607. ]
  4608. ))
  4609. characterMakers.push(() => makeCharacter(
  4610. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4611. {
  4612. front: {
  4613. height: math.unit(6, "feet"),
  4614. weight: math.unit(180, "lbs"),
  4615. name: "Front",
  4616. image: {
  4617. source: "./media/characters/daimos/front.svg",
  4618. extra: 4160 / 3897,
  4619. bottom: 0.021
  4620. }
  4621. }
  4622. },
  4623. [
  4624. {
  4625. name: "Normal",
  4626. height: math.unit(8, "feet"),
  4627. default: true
  4628. },
  4629. {
  4630. name: "Big Dog",
  4631. height: math.unit(22, "feet")
  4632. },
  4633. {
  4634. name: "Macro",
  4635. height: math.unit(127, "feet")
  4636. },
  4637. {
  4638. name: "Megamacro",
  4639. height: math.unit(3600, "feet")
  4640. },
  4641. ]
  4642. ))
  4643. characterMakers.push(() => makeCharacter(
  4644. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4645. {
  4646. side: {
  4647. height: math.unit(6, "feet"),
  4648. weight: math.unit(180, "lbs"),
  4649. name: "Side",
  4650. image: {
  4651. source: "./media/characters/blake/side.svg",
  4652. extra: 1212 / 1120,
  4653. bottom: 0.05
  4654. }
  4655. },
  4656. crouched: {
  4657. height: math.unit(6 * 0.57, "feet"),
  4658. weight: math.unit(180, "lbs"),
  4659. name: "Crouched",
  4660. image: {
  4661. source: "./media/characters/blake/crouched.svg",
  4662. extra: 840 / 587,
  4663. bottom: 0.04
  4664. }
  4665. },
  4666. bent: {
  4667. height: math.unit(6 * 0.75, "feet"),
  4668. weight: math.unit(180, "lbs"),
  4669. name: "Bent",
  4670. image: {
  4671. source: "./media/characters/blake/bent.svg",
  4672. extra: 592 / 544,
  4673. bottom: 0.035
  4674. }
  4675. },
  4676. },
  4677. [
  4678. {
  4679. name: "Normal",
  4680. height: math.unit(8 + 1 / 6, "feet"),
  4681. default: true
  4682. },
  4683. {
  4684. name: "Big Backside",
  4685. height: math.unit(37, "feet")
  4686. },
  4687. {
  4688. name: "Subway Shredder",
  4689. height: math.unit(72, "feet")
  4690. },
  4691. {
  4692. name: "City Carver",
  4693. height: math.unit(1675, "feet")
  4694. },
  4695. {
  4696. name: "Tectonic Tweaker",
  4697. height: math.unit(2300, "miles")
  4698. },
  4699. ]
  4700. ))
  4701. characterMakers.push(() => makeCharacter(
  4702. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4703. {
  4704. front: {
  4705. height: math.unit(6, "feet"),
  4706. weight: math.unit(180, "lbs"),
  4707. name: "Front",
  4708. image: {
  4709. source: "./media/characters/guisetto/front.svg",
  4710. extra: 856 / 817,
  4711. bottom: 0.06
  4712. }
  4713. },
  4714. airborne: {
  4715. height: math.unit(6, "feet"),
  4716. weight: math.unit(180, "lbs"),
  4717. name: "Airborne",
  4718. image: {
  4719. source: "./media/characters/guisetto/airborne.svg",
  4720. extra: 584 / 525
  4721. }
  4722. },
  4723. },
  4724. [
  4725. {
  4726. name: "Normal",
  4727. height: math.unit(10 + 11 / 12, "feet"),
  4728. default: true
  4729. },
  4730. {
  4731. name: "Large",
  4732. height: math.unit(35, "feet")
  4733. },
  4734. {
  4735. name: "Macro",
  4736. height: math.unit(475, "feet")
  4737. },
  4738. ]
  4739. ))
  4740. characterMakers.push(() => makeCharacter(
  4741. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  4742. {
  4743. front: {
  4744. height: math.unit(6, "feet"),
  4745. weight: math.unit(180, "lbs"),
  4746. name: "Front",
  4747. image: {
  4748. source: "./media/characters/luxor/front.svg",
  4749. extra: 2940 / 2152
  4750. }
  4751. },
  4752. back: {
  4753. height: math.unit(6, "feet"),
  4754. weight: math.unit(180, "lbs"),
  4755. name: "Back",
  4756. image: {
  4757. source: "./media/characters/luxor/back.svg",
  4758. extra: 1083 / 960
  4759. }
  4760. },
  4761. },
  4762. [
  4763. {
  4764. name: "Normal",
  4765. height: math.unit(5 + 5 / 6, "feet"),
  4766. default: true
  4767. },
  4768. {
  4769. name: "Lamp",
  4770. height: math.unit(50, "feet")
  4771. },
  4772. {
  4773. name: "Lämp",
  4774. height: math.unit(300, "feet")
  4775. },
  4776. {
  4777. name: "The sun is a lamp",
  4778. height: math.unit(250000, "miles")
  4779. },
  4780. ]
  4781. ))
  4782. characterMakers.push(() => makeCharacter(
  4783. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  4784. {
  4785. front: {
  4786. height: math.unit(6, "feet"),
  4787. weight: math.unit(50, "lbs"),
  4788. name: "Front",
  4789. image: {
  4790. source: "./media/characters/huoyan/front.svg"
  4791. }
  4792. },
  4793. side: {
  4794. height: math.unit(6, "feet"),
  4795. weight: math.unit(180, "lbs"),
  4796. name: "Side",
  4797. image: {
  4798. source: "./media/characters/huoyan/side.svg"
  4799. }
  4800. },
  4801. },
  4802. [
  4803. {
  4804. name: "Chef",
  4805. height: math.unit(9, "feet")
  4806. },
  4807. {
  4808. name: "Normal",
  4809. height: math.unit(65, "feet"),
  4810. default: true
  4811. },
  4812. {
  4813. name: "Macro",
  4814. height: math.unit(780, "feet")
  4815. },
  4816. {
  4817. name: "Flaming Mountain",
  4818. height: math.unit(4.8, "miles")
  4819. },
  4820. {
  4821. name: "Celestial",
  4822. height: math.unit(765000, "miles")
  4823. },
  4824. ]
  4825. ))
  4826. characterMakers.push(() => makeCharacter(
  4827. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  4828. {
  4829. front: {
  4830. height: math.unit(5 + 3 / 4, "feet"),
  4831. weight: math.unit(120, "lbs"),
  4832. name: "Front",
  4833. image: {
  4834. source: "./media/characters/tails/front.svg"
  4835. }
  4836. }
  4837. },
  4838. [
  4839. {
  4840. name: "Normal",
  4841. height: math.unit(5 + 3 / 4, "feet"),
  4842. default: true
  4843. }
  4844. ]
  4845. ))
  4846. characterMakers.push(() => makeCharacter(
  4847. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  4848. {
  4849. front: {
  4850. height: math.unit(4, "feet"),
  4851. weight: math.unit(50, "lbs"),
  4852. name: "Front",
  4853. image: {
  4854. source: "./media/characters/rainy/front.svg"
  4855. }
  4856. }
  4857. },
  4858. [
  4859. {
  4860. name: "Macro",
  4861. height: math.unit(800, "feet"),
  4862. default: true
  4863. }
  4864. ]
  4865. ))
  4866. characterMakers.push(() => makeCharacter(
  4867. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  4868. {
  4869. front: {
  4870. height: math.unit(6, "feet"),
  4871. weight: math.unit(150, "lbs"),
  4872. name: "Front",
  4873. image: {
  4874. source: "./media/characters/rainier/front.svg"
  4875. }
  4876. }
  4877. },
  4878. [
  4879. {
  4880. name: "Micro",
  4881. height: math.unit(2, "mm"),
  4882. default: true
  4883. }
  4884. ]
  4885. ))
  4886. characterMakers.push(() => makeCharacter(
  4887. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  4888. {
  4889. front: {
  4890. height: math.unit(6, "feet"),
  4891. weight: math.unit(180, "lbs"),
  4892. name: "Front",
  4893. image: {
  4894. source: "./media/characters/andy/front.svg"
  4895. }
  4896. }
  4897. },
  4898. [
  4899. {
  4900. name: "Normal",
  4901. height: math.unit(8, "feet"),
  4902. default: true
  4903. },
  4904. {
  4905. name: "Macro",
  4906. height: math.unit(1000, "feet")
  4907. },
  4908. {
  4909. name: "Megamacro",
  4910. height: math.unit(5, "miles")
  4911. },
  4912. {
  4913. name: "Gigamacro",
  4914. height: math.unit(5000, "miles")
  4915. },
  4916. ]
  4917. ))
  4918. characterMakers.push(() => makeCharacter(
  4919. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  4920. {
  4921. front: {
  4922. height: math.unit(6, "feet"),
  4923. weight: math.unit(210, "lbs"),
  4924. name: "Front",
  4925. image: {
  4926. source: "./media/characters/cimmaron/front-sfw.svg",
  4927. extra: 701 / 676,
  4928. bottom: 0.046
  4929. }
  4930. },
  4931. back: {
  4932. height: math.unit(6, "feet"),
  4933. weight: math.unit(210, "lbs"),
  4934. name: "Back",
  4935. image: {
  4936. source: "./media/characters/cimmaron/back-sfw.svg",
  4937. extra: 701 / 676,
  4938. bottom: 0.046
  4939. }
  4940. },
  4941. frontNsfw: {
  4942. height: math.unit(6, "feet"),
  4943. weight: math.unit(210, "lbs"),
  4944. name: "Front (NSFW)",
  4945. image: {
  4946. source: "./media/characters/cimmaron/front-nsfw.svg",
  4947. extra: 701 / 676,
  4948. bottom: 0.046
  4949. }
  4950. },
  4951. backNsfw: {
  4952. height: math.unit(6, "feet"),
  4953. weight: math.unit(210, "lbs"),
  4954. name: "Back (NSFW)",
  4955. image: {
  4956. source: "./media/characters/cimmaron/back-nsfw.svg",
  4957. extra: 701 / 676,
  4958. bottom: 0.046
  4959. }
  4960. },
  4961. dick: {
  4962. height: math.unit(1.714, "feet"),
  4963. name: "Dick",
  4964. image: {
  4965. source: "./media/characters/cimmaron/dick.svg"
  4966. }
  4967. },
  4968. },
  4969. [
  4970. {
  4971. name: "Normal",
  4972. height: math.unit(6, "feet"),
  4973. default: true
  4974. },
  4975. {
  4976. name: "Macro Mayor",
  4977. height: math.unit(350, "meters")
  4978. },
  4979. ]
  4980. ))
  4981. characterMakers.push(() => makeCharacter(
  4982. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  4983. {
  4984. front: {
  4985. height: math.unit(6, "feet"),
  4986. weight: math.unit(200, "lbs"),
  4987. name: "Front",
  4988. image: {
  4989. source: "./media/characters/akari/front.svg",
  4990. extra: 962 / 901,
  4991. bottom: 0.04
  4992. }
  4993. }
  4994. },
  4995. [
  4996. {
  4997. name: "Micro",
  4998. height: math.unit(5, "inches"),
  4999. default: true
  5000. },
  5001. {
  5002. name: "Normal",
  5003. height: math.unit(7, "feet")
  5004. },
  5005. ]
  5006. ))
  5007. characterMakers.push(() => makeCharacter(
  5008. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5009. {
  5010. front: {
  5011. height: math.unit(6, "feet"),
  5012. weight: math.unit(140, "lbs"),
  5013. name: "Front",
  5014. image: {
  5015. source: "./media/characters/cynosura/front.svg",
  5016. extra: 896 / 847
  5017. }
  5018. },
  5019. back: {
  5020. height: math.unit(6, "feet"),
  5021. weight: math.unit(140, "lbs"),
  5022. name: "Back",
  5023. image: {
  5024. source: "./media/characters/cynosura/back.svg",
  5025. extra: 1365 / 1250
  5026. }
  5027. },
  5028. },
  5029. [
  5030. {
  5031. name: "Micro",
  5032. height: math.unit(4, "inches")
  5033. },
  5034. {
  5035. name: "Normal",
  5036. height: math.unit(5.75, "feet"),
  5037. default: true
  5038. },
  5039. {
  5040. name: "Tall",
  5041. height: math.unit(10, "feet")
  5042. },
  5043. {
  5044. name: "Big",
  5045. height: math.unit(20, "feet")
  5046. },
  5047. {
  5048. name: "Macro",
  5049. height: math.unit(50, "feet")
  5050. },
  5051. ]
  5052. ))
  5053. characterMakers.push(() => makeCharacter(
  5054. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5055. {
  5056. front: {
  5057. height: math.unit(6, "feet"),
  5058. weight: math.unit(170, "lbs"),
  5059. name: "Front",
  5060. image: {
  5061. source: "./media/characters/gin/front.svg",
  5062. extra: 1.053,
  5063. bottom: 0.025
  5064. }
  5065. },
  5066. foot: {
  5067. height: math.unit(6 / 4.25, "feet"),
  5068. name: "Foot",
  5069. image: {
  5070. source: "./media/characters/gin/foot.svg"
  5071. }
  5072. },
  5073. sole: {
  5074. height: math.unit(6 / 4.40, "feet"),
  5075. name: "Sole",
  5076. image: {
  5077. source: "./media/characters/gin/sole.svg"
  5078. }
  5079. },
  5080. },
  5081. [
  5082. {
  5083. name: "Normal",
  5084. height: math.unit(13 + 2 / 12, "feet")
  5085. },
  5086. {
  5087. name: "Macro",
  5088. height: math.unit(1500, "feet")
  5089. },
  5090. {
  5091. name: "Megamacro",
  5092. height: math.unit(200, "miles"),
  5093. default: true
  5094. },
  5095. {
  5096. name: "Gigamacro",
  5097. height: math.unit(500, "megameters")
  5098. },
  5099. {
  5100. name: "Teramacro",
  5101. height: math.unit(15, "lightyears")
  5102. }
  5103. ]
  5104. ))
  5105. characterMakers.push(() => makeCharacter(
  5106. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5107. {
  5108. front: {
  5109. height: math.unit(6 + 1 / 6, "feet"),
  5110. weight: math.unit(178, "lbs"),
  5111. name: "Front",
  5112. image: {
  5113. source: "./media/characters/guy/front.svg"
  5114. }
  5115. }
  5116. },
  5117. [
  5118. {
  5119. name: "Normal",
  5120. height: math.unit(6 + 1 / 6, "feet"),
  5121. default: true
  5122. },
  5123. {
  5124. name: "Large",
  5125. height: math.unit(25 + 7 / 12, "feet")
  5126. },
  5127. {
  5128. name: "Macro",
  5129. height: math.unit(60 + 9 / 12, "feet")
  5130. },
  5131. {
  5132. name: "Macro+",
  5133. height: math.unit(246, "feet")
  5134. },
  5135. {
  5136. name: "Macro++",
  5137. height: math.unit(878, "feet")
  5138. }
  5139. ]
  5140. ))
  5141. characterMakers.push(() => makeCharacter(
  5142. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5143. {
  5144. front: {
  5145. height: math.unit(9, "feet"),
  5146. weight: math.unit(800, "lbs"),
  5147. name: "Front",
  5148. image: {
  5149. source: "./media/characters/tiberius/front.svg",
  5150. extra: 2295 / 2071
  5151. }
  5152. },
  5153. back: {
  5154. height: math.unit(9, "feet"),
  5155. weight: math.unit(800, "lbs"),
  5156. name: "Back",
  5157. image: {
  5158. source: "./media/characters/tiberius/back.svg",
  5159. extra: 2373 / 2160
  5160. }
  5161. },
  5162. },
  5163. [
  5164. {
  5165. name: "Normal",
  5166. height: math.unit(9, "feet"),
  5167. default: true
  5168. }
  5169. ]
  5170. ))
  5171. characterMakers.push(() => makeCharacter(
  5172. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5173. {
  5174. front: {
  5175. height: math.unit(6, "feet"),
  5176. weight: math.unit(600, "lbs"),
  5177. name: "Front",
  5178. image: {
  5179. source: "./media/characters/surgo/front.svg",
  5180. extra: 3591 / 2227
  5181. }
  5182. },
  5183. back: {
  5184. height: math.unit(6, "feet"),
  5185. weight: math.unit(600, "lbs"),
  5186. name: "Back",
  5187. image: {
  5188. source: "./media/characters/surgo/back.svg",
  5189. extra: 3557 / 2228
  5190. }
  5191. },
  5192. laying: {
  5193. height: math.unit(6 * 0.85, "feet"),
  5194. weight: math.unit(600, "lbs"),
  5195. name: "Laying",
  5196. image: {
  5197. source: "./media/characters/surgo/laying.svg"
  5198. }
  5199. },
  5200. },
  5201. [
  5202. {
  5203. name: "Normal",
  5204. height: math.unit(6, "feet"),
  5205. default: true
  5206. }
  5207. ]
  5208. ))
  5209. characterMakers.push(() => makeCharacter(
  5210. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5211. {
  5212. side: {
  5213. height: math.unit(6, "feet"),
  5214. weight: math.unit(150, "lbs"),
  5215. name: "Side",
  5216. image: {
  5217. source: "./media/characters/cibus/side.svg",
  5218. extra: 800 / 400
  5219. }
  5220. },
  5221. },
  5222. [
  5223. {
  5224. name: "Normal",
  5225. height: math.unit(6, "feet"),
  5226. default: true
  5227. }
  5228. ]
  5229. ))
  5230. characterMakers.push(() => makeCharacter(
  5231. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5232. {
  5233. front: {
  5234. height: math.unit(6, "feet"),
  5235. weight: math.unit(240, "lbs"),
  5236. name: "Front",
  5237. image: {
  5238. source: "./media/characters/nibbles/front.svg"
  5239. }
  5240. },
  5241. side: {
  5242. height: math.unit(6, "feet"),
  5243. weight: math.unit(240, "lbs"),
  5244. name: "Side",
  5245. image: {
  5246. source: "./media/characters/nibbles/side.svg"
  5247. }
  5248. },
  5249. },
  5250. [
  5251. {
  5252. name: "Normal",
  5253. height: math.unit(9, "feet"),
  5254. default: true
  5255. }
  5256. ]
  5257. ))
  5258. characterMakers.push(() => makeCharacter(
  5259. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5260. {
  5261. side: {
  5262. height: math.unit(5 + 1 / 6, "feet"),
  5263. weight: math.unit(130, "lbs"),
  5264. name: "Side",
  5265. image: {
  5266. source: "./media/characters/rikky/side.svg"
  5267. }
  5268. },
  5269. },
  5270. [
  5271. {
  5272. name: "Normal",
  5273. height: math.unit(5 + 1 / 6, "feet")
  5274. },
  5275. {
  5276. name: "Macro",
  5277. height: math.unit(152, "feet"),
  5278. default: true
  5279. },
  5280. {
  5281. name: "Megamacro",
  5282. height: math.unit(7, "miles")
  5283. }
  5284. ]
  5285. ))
  5286. characterMakers.push(() => makeCharacter(
  5287. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5288. {
  5289. side: {
  5290. height: math.unit(370, "cm"),
  5291. weight: math.unit(350, "lbs"),
  5292. name: "Side",
  5293. image: {
  5294. source: "./media/characters/malfressa/side.svg"
  5295. }
  5296. },
  5297. walking: {
  5298. height: math.unit(370, "cm"),
  5299. weight: math.unit(350, "lbs"),
  5300. name: "Walking",
  5301. image: {
  5302. source: "./media/characters/malfressa/walking.svg"
  5303. }
  5304. },
  5305. feral: {
  5306. height: math.unit(2500, "cm"),
  5307. weight: math.unit(100000, "lbs"),
  5308. name: "Feral",
  5309. image: {
  5310. source: "./media/characters/malfressa/feral.svg",
  5311. extra: 2108 / 837,
  5312. bottom: 0.02
  5313. }
  5314. },
  5315. },
  5316. [
  5317. {
  5318. name: "Normal",
  5319. height: math.unit(370, "cm")
  5320. },
  5321. {
  5322. name: "Macro",
  5323. height: math.unit(300, "meters"),
  5324. default: true
  5325. }
  5326. ]
  5327. ))
  5328. characterMakers.push(() => makeCharacter(
  5329. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5330. {
  5331. front: {
  5332. height: math.unit(6, "feet"),
  5333. weight: math.unit(60, "kg"),
  5334. name: "Front",
  5335. image: {
  5336. source: "./media/characters/jaro/front.svg"
  5337. }
  5338. },
  5339. back: {
  5340. height: math.unit(6, "feet"),
  5341. weight: math.unit(60, "kg"),
  5342. name: "Back",
  5343. image: {
  5344. source: "./media/characters/jaro/back.svg"
  5345. }
  5346. },
  5347. },
  5348. [
  5349. {
  5350. name: "Micro",
  5351. height: math.unit(7, "inches")
  5352. },
  5353. {
  5354. name: "Normal",
  5355. height: math.unit(5.5, "feet"),
  5356. default: true
  5357. },
  5358. {
  5359. name: "Minimacro",
  5360. height: math.unit(20, "feet")
  5361. },
  5362. {
  5363. name: "Macro",
  5364. height: math.unit(200, "meters")
  5365. }
  5366. ]
  5367. ))
  5368. characterMakers.push(() => makeCharacter(
  5369. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5370. {
  5371. front: {
  5372. height: math.unit(6, "feet"),
  5373. weight: math.unit(195, "lb"),
  5374. name: "Front",
  5375. image: {
  5376. source: "./media/characters/rogue/front.svg"
  5377. }
  5378. },
  5379. },
  5380. [
  5381. {
  5382. name: "Macro",
  5383. height: math.unit(90, "feet"),
  5384. default: true
  5385. },
  5386. ]
  5387. ))
  5388. characterMakers.push(() => makeCharacter(
  5389. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5390. {
  5391. front: {
  5392. height: math.unit(5 + 8 / 12, "feet"),
  5393. weight: math.unit(140, "lb"),
  5394. name: "Front",
  5395. image: {
  5396. source: "./media/characters/piper/front.svg",
  5397. extra: 3928 / 3681
  5398. }
  5399. },
  5400. },
  5401. [
  5402. {
  5403. name: "Micro",
  5404. height: math.unit(2, "inches")
  5405. },
  5406. {
  5407. name: "Normal",
  5408. height: math.unit(5 + 8 / 12, "feet")
  5409. },
  5410. {
  5411. name: "Macro",
  5412. height: math.unit(250, "feet"),
  5413. default: true
  5414. },
  5415. {
  5416. name: "Megamacro",
  5417. height: math.unit(7, "miles")
  5418. },
  5419. ]
  5420. ))
  5421. characterMakers.push(() => makeCharacter(
  5422. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5423. {
  5424. front: {
  5425. height: math.unit(6, "feet"),
  5426. weight: math.unit(220, "lb"),
  5427. name: "Front",
  5428. image: {
  5429. source: "./media/characters/gemini/front.svg"
  5430. }
  5431. },
  5432. back: {
  5433. height: math.unit(6, "feet"),
  5434. weight: math.unit(220, "lb"),
  5435. name: "Back",
  5436. image: {
  5437. source: "./media/characters/gemini/back.svg"
  5438. }
  5439. },
  5440. kneeling: {
  5441. height: math.unit(6 / 1.5, "feet"),
  5442. weight: math.unit(220, "lb"),
  5443. name: "Kneeling",
  5444. image: {
  5445. source: "./media/characters/gemini/kneeling.svg",
  5446. bottom: 0.02
  5447. }
  5448. },
  5449. },
  5450. [
  5451. {
  5452. name: "Macro",
  5453. height: math.unit(300, "meters"),
  5454. default: true
  5455. },
  5456. {
  5457. name: "Megamacro",
  5458. height: math.unit(6900, "meters")
  5459. },
  5460. ]
  5461. ))
  5462. characterMakers.push(() => makeCharacter(
  5463. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5464. {
  5465. anthro: {
  5466. height: math.unit(2.35, "meters"),
  5467. weight: math.unit(73, "kg"),
  5468. name: "Anthro",
  5469. image: {
  5470. source: "./media/characters/alicia/anthro.svg",
  5471. extra: 2571 / 2385,
  5472. bottom: 75 / 2648
  5473. }
  5474. },
  5475. paw: {
  5476. height: math.unit(1.32, "feet"),
  5477. name: "Paw",
  5478. image: {
  5479. source: "./media/characters/alicia/paw.svg"
  5480. }
  5481. },
  5482. feral: {
  5483. height: math.unit(1.69, "meters"),
  5484. weight: math.unit(73, "kg"),
  5485. name: "Feral",
  5486. image: {
  5487. source: "./media/characters/alicia/feral.svg",
  5488. extra: 2123 / 1715,
  5489. bottom: 222 / 2349
  5490. }
  5491. },
  5492. },
  5493. [
  5494. {
  5495. name: "Normal",
  5496. height: math.unit(2.35, "meters")
  5497. },
  5498. {
  5499. name: "Macro",
  5500. height: math.unit(60, "meters"),
  5501. default: true
  5502. },
  5503. {
  5504. name: "Megamacro",
  5505. height: math.unit(10000, "kilometers")
  5506. },
  5507. ]
  5508. ))
  5509. characterMakers.push(() => makeCharacter(
  5510. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5511. {
  5512. front: {
  5513. height: math.unit(7, "feet"),
  5514. weight: math.unit(250, "lbs"),
  5515. name: "Front",
  5516. image: {
  5517. source: "./media/characters/archy/front.svg"
  5518. }
  5519. }
  5520. },
  5521. [
  5522. {
  5523. name: "Micro",
  5524. height: math.unit(1, "inch")
  5525. },
  5526. {
  5527. name: "Shorty",
  5528. height: math.unit(5, "feet")
  5529. },
  5530. {
  5531. name: "Normal",
  5532. height: math.unit(7, "feet")
  5533. },
  5534. {
  5535. name: "Macro",
  5536. height: math.unit(600, "meters"),
  5537. default: true
  5538. },
  5539. {
  5540. name: "Megamacro",
  5541. height: math.unit(1, "mile")
  5542. },
  5543. ]
  5544. ))
  5545. characterMakers.push(() => makeCharacter(
  5546. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5547. {
  5548. front: {
  5549. height: math.unit(1.65, "meters"),
  5550. weight: math.unit(74, "kg"),
  5551. name: "Front",
  5552. image: {
  5553. source: "./media/characters/berri/front.svg",
  5554. extra: 857 / 837,
  5555. bottom: 18 / 877
  5556. }
  5557. },
  5558. bum: {
  5559. height: math.unit(1.46, "feet"),
  5560. name: "Bum",
  5561. image: {
  5562. source: "./media/characters/berri/bum.svg"
  5563. }
  5564. },
  5565. mouth: {
  5566. height: math.unit(0.44, "feet"),
  5567. name: "Mouth",
  5568. image: {
  5569. source: "./media/characters/berri/mouth.svg"
  5570. }
  5571. },
  5572. paw: {
  5573. height: math.unit(0.826, "feet"),
  5574. name: "Paw",
  5575. image: {
  5576. source: "./media/characters/berri/paw.svg"
  5577. }
  5578. },
  5579. },
  5580. [
  5581. {
  5582. name: "Normal",
  5583. height: math.unit(1.65, "meters")
  5584. },
  5585. {
  5586. name: "Macro",
  5587. height: math.unit(60, "m"),
  5588. default: true
  5589. },
  5590. {
  5591. name: "Megamacro",
  5592. height: math.unit(9.213, "km")
  5593. },
  5594. {
  5595. name: "Planet Eater",
  5596. height: math.unit(489, "megameters")
  5597. },
  5598. {
  5599. name: "Teramacro",
  5600. height: math.unit(2471635000000, "meters")
  5601. },
  5602. {
  5603. name: "Examacro",
  5604. height: math.unit(8.0624e+26, "meters")
  5605. }
  5606. ]
  5607. ))
  5608. characterMakers.push(() => makeCharacter(
  5609. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5610. {
  5611. front: {
  5612. height: math.unit(1.72, "meters"),
  5613. weight: math.unit(68, "kg"),
  5614. name: "Front",
  5615. image: {
  5616. source: "./media/characters/lexi/front.svg"
  5617. }
  5618. }
  5619. },
  5620. [
  5621. {
  5622. name: "Very Smol",
  5623. height: math.unit(10, "mm")
  5624. },
  5625. {
  5626. name: "Micro",
  5627. height: math.unit(6.8, "cm"),
  5628. default: true
  5629. },
  5630. {
  5631. name: "Normal",
  5632. height: math.unit(1.72, "m")
  5633. }
  5634. ]
  5635. ))
  5636. characterMakers.push(() => makeCharacter(
  5637. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5638. {
  5639. front: {
  5640. height: math.unit(1.69, "meters"),
  5641. weight: math.unit(68, "kg"),
  5642. name: "Front",
  5643. image: {
  5644. source: "./media/characters/martin/front.svg",
  5645. extra: 596 / 581
  5646. }
  5647. }
  5648. },
  5649. [
  5650. {
  5651. name: "Micro",
  5652. height: math.unit(6.85, "cm"),
  5653. default: true
  5654. },
  5655. {
  5656. name: "Normal",
  5657. height: math.unit(1.69, "m")
  5658. }
  5659. ]
  5660. ))
  5661. characterMakers.push(() => makeCharacter(
  5662. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5663. {
  5664. front: {
  5665. height: math.unit(1.69, "meters"),
  5666. weight: math.unit(68, "kg"),
  5667. name: "Front",
  5668. image: {
  5669. source: "./media/characters/juno/front.svg"
  5670. }
  5671. }
  5672. },
  5673. [
  5674. {
  5675. name: "Micro",
  5676. height: math.unit(7, "cm")
  5677. },
  5678. {
  5679. name: "Normal",
  5680. height: math.unit(1.89, "m")
  5681. },
  5682. {
  5683. name: "Macro",
  5684. height: math.unit(353, "meters"),
  5685. default: true
  5686. }
  5687. ]
  5688. ))
  5689. characterMakers.push(() => makeCharacter(
  5690. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5691. {
  5692. front: {
  5693. height: math.unit(1.93, "meters"),
  5694. weight: math.unit(83, "kg"),
  5695. name: "Front",
  5696. image: {
  5697. source: "./media/characters/samantha/front.svg"
  5698. }
  5699. },
  5700. frontClothed: {
  5701. height: math.unit(1.93, "meters"),
  5702. weight: math.unit(83, "kg"),
  5703. name: "Front (Clothed)",
  5704. image: {
  5705. source: "./media/characters/samantha/front-clothed.svg"
  5706. }
  5707. },
  5708. back: {
  5709. height: math.unit(1.93, "meters"),
  5710. weight: math.unit(83, "kg"),
  5711. name: "Back",
  5712. image: {
  5713. source: "./media/characters/samantha/back.svg"
  5714. }
  5715. },
  5716. },
  5717. [
  5718. {
  5719. name: "Normal",
  5720. height: math.unit(1.93, "m")
  5721. },
  5722. {
  5723. name: "Macro",
  5724. height: math.unit(74, "meters"),
  5725. default: true
  5726. },
  5727. {
  5728. name: "Macro+",
  5729. height: math.unit(223, "meters"),
  5730. },
  5731. {
  5732. name: "Megamacro",
  5733. height: math.unit(8381, "meters"),
  5734. },
  5735. {
  5736. name: "Megamacro+",
  5737. height: math.unit(12000, "kilometers")
  5738. },
  5739. ]
  5740. ))
  5741. characterMakers.push(() => makeCharacter(
  5742. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  5743. {
  5744. front: {
  5745. height: math.unit(1.92, "meters"),
  5746. weight: math.unit(80, "kg"),
  5747. name: "Front",
  5748. image: {
  5749. source: "./media/characters/dr-clay/front.svg"
  5750. }
  5751. },
  5752. frontClothed: {
  5753. height: math.unit(1.92, "meters"),
  5754. weight: math.unit(80, "kg"),
  5755. name: "Front (Clothed)",
  5756. image: {
  5757. source: "./media/characters/dr-clay/front-clothed.svg"
  5758. }
  5759. }
  5760. },
  5761. [
  5762. {
  5763. name: "Normal",
  5764. height: math.unit(1.92, "m")
  5765. },
  5766. {
  5767. name: "Macro",
  5768. height: math.unit(214, "meters"),
  5769. default: true
  5770. },
  5771. {
  5772. name: "Macro+",
  5773. height: math.unit(12.237, "meters"),
  5774. },
  5775. {
  5776. name: "Megamacro",
  5777. height: math.unit(557, "megameters"),
  5778. },
  5779. {
  5780. name: "Unimaginable",
  5781. height: math.unit(120e9, "lightyears")
  5782. },
  5783. ]
  5784. ))
  5785. characterMakers.push(() => makeCharacter(
  5786. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  5787. {
  5788. front: {
  5789. height: math.unit(2, "meters"),
  5790. weight: math.unit(80, "kg"),
  5791. name: "Front",
  5792. image: {
  5793. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  5794. }
  5795. }
  5796. },
  5797. [
  5798. {
  5799. name: "Teramacro",
  5800. height: math.unit(500000, "lightyears"),
  5801. default: true
  5802. },
  5803. ]
  5804. ))
  5805. characterMakers.push(() => makeCharacter(
  5806. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  5807. {
  5808. front: {
  5809. height: math.unit(2, "meters"),
  5810. weight: math.unit(150, "kg"),
  5811. name: "Front",
  5812. image: {
  5813. source: "./media/characters/vemus/front.svg",
  5814. extra: 2384 / 2084,
  5815. bottom: 0.0123
  5816. }
  5817. }
  5818. },
  5819. [
  5820. {
  5821. name: "Normal",
  5822. height: math.unit(3.75, "meters"),
  5823. default: true
  5824. },
  5825. {
  5826. name: "Big",
  5827. height: math.unit(8, "meters")
  5828. },
  5829. {
  5830. name: "Macro",
  5831. height: math.unit(100, "meters")
  5832. },
  5833. {
  5834. name: "Macro+",
  5835. height: math.unit(1500, "meters")
  5836. },
  5837. {
  5838. name: "Stellar",
  5839. height: math.unit(14e8, "meters")
  5840. },
  5841. ]
  5842. ))
  5843. characterMakers.push(() => makeCharacter(
  5844. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  5845. {
  5846. front: {
  5847. height: math.unit(2, "meters"),
  5848. weight: math.unit(70, "kg"),
  5849. name: "Front",
  5850. image: {
  5851. source: "./media/characters/beherit/front.svg",
  5852. extra: 1408 / 1242
  5853. }
  5854. }
  5855. },
  5856. [
  5857. {
  5858. name: "Normal",
  5859. height: math.unit(6, "feet")
  5860. },
  5861. {
  5862. name: "Lorg",
  5863. height: math.unit(25, "feet"),
  5864. default: true
  5865. },
  5866. {
  5867. name: "Lorger",
  5868. height: math.unit(75, "feet")
  5869. },
  5870. {
  5871. name: "Macro",
  5872. height: math.unit(200, "meters")
  5873. },
  5874. ]
  5875. ))
  5876. characterMakers.push(() => makeCharacter(
  5877. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  5878. {
  5879. front: {
  5880. height: math.unit(2, "meters"),
  5881. weight: math.unit(150, "kg"),
  5882. name: "Front",
  5883. image: {
  5884. source: "./media/characters/everett/front.svg",
  5885. extra: 2038 / 1737,
  5886. bottom: 0.03
  5887. }
  5888. },
  5889. paw: {
  5890. height: math.unit(2 / 3.6, "meters"),
  5891. name: "Paw",
  5892. image: {
  5893. source: "./media/characters/everett/paw.svg"
  5894. }
  5895. },
  5896. },
  5897. [
  5898. {
  5899. name: "Normal",
  5900. height: math.unit(15, "feet"),
  5901. default: true
  5902. },
  5903. {
  5904. name: "Lorg",
  5905. height: math.unit(70, "feet"),
  5906. default: true
  5907. },
  5908. {
  5909. name: "Lorger",
  5910. height: math.unit(250, "feet")
  5911. },
  5912. {
  5913. name: "Macro",
  5914. height: math.unit(500, "meters")
  5915. },
  5916. ]
  5917. ))
  5918. characterMakers.push(() => makeCharacter(
  5919. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  5920. {
  5921. front: {
  5922. height: math.unit(2, "meters"),
  5923. weight: math.unit(86, "kg"),
  5924. name: "Front",
  5925. image: {
  5926. source: "./media/characters/rose-lion/front.svg"
  5927. }
  5928. },
  5929. bent: {
  5930. height: math.unit(2 / 1.4288, "meters"),
  5931. weight: math.unit(86, "kg"),
  5932. name: "Bent",
  5933. image: {
  5934. source: "./media/characters/rose-lion/bent.svg"
  5935. }
  5936. }
  5937. },
  5938. [
  5939. {
  5940. name: "Mini-Micro",
  5941. height: math.unit(1, "cm")
  5942. },
  5943. {
  5944. name: "Micro",
  5945. height: math.unit(3.5, "inches"),
  5946. default: true
  5947. },
  5948. {
  5949. name: "Normal",
  5950. height: math.unit(6 + 1 / 6, "feet")
  5951. },
  5952. {
  5953. name: "Mini-Macro",
  5954. height: math.unit(9 + 10 / 12, "feet")
  5955. },
  5956. ]
  5957. ))
  5958. characterMakers.push(() => makeCharacter(
  5959. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  5960. {
  5961. front: {
  5962. height: math.unit(2, "meters"),
  5963. weight: math.unit(350, "lbs"),
  5964. name: "Front",
  5965. image: {
  5966. source: "./media/characters/regal/front.svg"
  5967. }
  5968. },
  5969. back: {
  5970. height: math.unit(2, "meters"),
  5971. weight: math.unit(350, "lbs"),
  5972. name: "Back",
  5973. image: {
  5974. source: "./media/characters/regal/back.svg"
  5975. }
  5976. },
  5977. },
  5978. [
  5979. {
  5980. name: "Macro",
  5981. height: math.unit(350, "feet"),
  5982. default: true
  5983. }
  5984. ]
  5985. ))
  5986. characterMakers.push(() => makeCharacter(
  5987. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  5988. {
  5989. front: {
  5990. height: math.unit(4 + 11 / 12, "feet"),
  5991. weight: math.unit(100, "lbs"),
  5992. name: "Front",
  5993. image: {
  5994. source: "./media/characters/opal/front.svg"
  5995. }
  5996. },
  5997. frontAlt: {
  5998. height: math.unit(4 + 11 / 12, "feet"),
  5999. weight: math.unit(100, "lbs"),
  6000. name: "Front (Alt)",
  6001. image: {
  6002. source: "./media/characters/opal/front-alt.svg"
  6003. }
  6004. },
  6005. },
  6006. [
  6007. {
  6008. name: "Small",
  6009. height: math.unit(4 + 11 / 12, "feet")
  6010. },
  6011. {
  6012. name: "Normal",
  6013. height: math.unit(20, "feet"),
  6014. default: true
  6015. },
  6016. {
  6017. name: "Macro",
  6018. height: math.unit(120, "feet")
  6019. },
  6020. {
  6021. name: "Megamacro",
  6022. height: math.unit(80, "miles")
  6023. },
  6024. {
  6025. name: "True Size",
  6026. height: math.unit(100000, "lightyears")
  6027. },
  6028. ]
  6029. ))
  6030. characterMakers.push(() => makeCharacter(
  6031. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6032. {
  6033. front: {
  6034. height: math.unit(6, "feet"),
  6035. weight: math.unit(200, "lbs"),
  6036. name: "Front",
  6037. image: {
  6038. source: "./media/characters/vector-wuff/front.svg"
  6039. }
  6040. }
  6041. },
  6042. [
  6043. {
  6044. name: "Normal",
  6045. height: math.unit(2.8, "meters")
  6046. },
  6047. {
  6048. name: "Macro",
  6049. height: math.unit(450, "meters"),
  6050. default: true
  6051. },
  6052. {
  6053. name: "Megamacro",
  6054. height: math.unit(15, "kilometers")
  6055. }
  6056. ]
  6057. ))
  6058. characterMakers.push(() => makeCharacter(
  6059. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6060. {
  6061. front: {
  6062. height: math.unit(6, "feet"),
  6063. weight: math.unit(256, "lbs"),
  6064. name: "Front",
  6065. image: {
  6066. source: "./media/characters/dannik/front.svg"
  6067. }
  6068. }
  6069. },
  6070. [
  6071. {
  6072. name: "Macro",
  6073. height: math.unit(69.57, "meters"),
  6074. default: true
  6075. },
  6076. ]
  6077. ))
  6078. characterMakers.push(() => makeCharacter(
  6079. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6080. {
  6081. front: {
  6082. height: math.unit(6, "feet"),
  6083. weight: math.unit(120, "lbs"),
  6084. name: "Front",
  6085. image: {
  6086. source: "./media/characters/azura-saharah/front.svg"
  6087. }
  6088. },
  6089. back: {
  6090. height: math.unit(6, "feet"),
  6091. weight: math.unit(120, "lbs"),
  6092. name: "Back",
  6093. image: {
  6094. source: "./media/characters/azura-saharah/back.svg"
  6095. }
  6096. },
  6097. },
  6098. [
  6099. {
  6100. name: "Macro",
  6101. height: math.unit(100, "feet"),
  6102. default: true
  6103. },
  6104. ]
  6105. ))
  6106. characterMakers.push(() => makeCharacter(
  6107. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6108. {
  6109. side: {
  6110. height: math.unit(5 + 4 / 12, "feet"),
  6111. weight: math.unit(163, "lbs"),
  6112. name: "Side",
  6113. image: {
  6114. source: "./media/characters/kennedy/side.svg"
  6115. }
  6116. }
  6117. },
  6118. [
  6119. {
  6120. name: "Standard Doggo",
  6121. height: math.unit(5 + 4 / 12, "feet")
  6122. },
  6123. {
  6124. name: "Big Doggo",
  6125. height: math.unit(25 + 3 / 12, "feet"),
  6126. default: true
  6127. },
  6128. ]
  6129. ))
  6130. characterMakers.push(() => makeCharacter(
  6131. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6132. {
  6133. front: {
  6134. height: math.unit(6, "feet"),
  6135. weight: math.unit(90, "lbs"),
  6136. name: "Front",
  6137. image: {
  6138. source: "./media/characters/odi-lunar/front.svg"
  6139. }
  6140. }
  6141. },
  6142. [
  6143. {
  6144. name: "Micro",
  6145. height: math.unit(3, "inches"),
  6146. default: true
  6147. },
  6148. {
  6149. name: "Normal",
  6150. height: math.unit(5.5, "feet")
  6151. }
  6152. ]
  6153. ))
  6154. characterMakers.push(() => makeCharacter(
  6155. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6156. {
  6157. back: {
  6158. height: math.unit(6, "feet"),
  6159. weight: math.unit(220, "lbs"),
  6160. name: "Back",
  6161. image: {
  6162. source: "./media/characters/mandake/back.svg"
  6163. }
  6164. }
  6165. },
  6166. [
  6167. {
  6168. name: "Normal",
  6169. height: math.unit(7, "feet"),
  6170. default: true
  6171. },
  6172. {
  6173. name: "Macro",
  6174. height: math.unit(78, "feet")
  6175. },
  6176. {
  6177. name: "Macro+",
  6178. height: math.unit(300, "meters")
  6179. },
  6180. {
  6181. name: "Macro++",
  6182. height: math.unit(2400, "feet")
  6183. },
  6184. {
  6185. name: "Megamacro",
  6186. height: math.unit(5167, "meters")
  6187. },
  6188. {
  6189. name: "Gigamacro",
  6190. height: math.unit(41769, "miles")
  6191. },
  6192. ]
  6193. ))
  6194. characterMakers.push(() => makeCharacter(
  6195. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6196. {
  6197. front: {
  6198. height: math.unit(6, "feet"),
  6199. weight: math.unit(120, "lbs"),
  6200. name: "Front",
  6201. image: {
  6202. source: "./media/characters/yozey/front.svg"
  6203. }
  6204. },
  6205. frontAlt: {
  6206. height: math.unit(6, "feet"),
  6207. weight: math.unit(120, "lbs"),
  6208. name: "Front (Alt)",
  6209. image: {
  6210. source: "./media/characters/yozey/front-alt.svg"
  6211. }
  6212. },
  6213. side: {
  6214. height: math.unit(6, "feet"),
  6215. weight: math.unit(120, "lbs"),
  6216. name: "Side",
  6217. image: {
  6218. source: "./media/characters/yozey/side.svg"
  6219. }
  6220. },
  6221. },
  6222. [
  6223. {
  6224. name: "Micro",
  6225. height: math.unit(3, "inches"),
  6226. default: true
  6227. },
  6228. {
  6229. name: "Normal",
  6230. height: math.unit(6, "feet")
  6231. }
  6232. ]
  6233. ))
  6234. characterMakers.push(() => makeCharacter(
  6235. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6236. {
  6237. front: {
  6238. height: math.unit(6, "feet"),
  6239. weight: math.unit(103, "lbs"),
  6240. name: "Front",
  6241. image: {
  6242. source: "./media/characters/valeska-voss/front.svg"
  6243. }
  6244. }
  6245. },
  6246. [
  6247. {
  6248. name: "Mini-Sized Sub",
  6249. height: math.unit(3.1, "inches")
  6250. },
  6251. {
  6252. name: "Mid-Sized Sub",
  6253. height: math.unit(6.2, "inches")
  6254. },
  6255. {
  6256. name: "Full-Sized Sub",
  6257. height: math.unit(9.3, "inches")
  6258. },
  6259. {
  6260. name: "Normal",
  6261. height: math.unit(5 + 2 / 12, "foot"),
  6262. default: true
  6263. },
  6264. ]
  6265. ))
  6266. characterMakers.push(() => makeCharacter(
  6267. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6268. {
  6269. front: {
  6270. height: math.unit(6, "feet"),
  6271. weight: math.unit(160, "lbs"),
  6272. name: "Front",
  6273. image: {
  6274. source: "./media/characters/gene-zeta/front.svg",
  6275. bottom: 0.03,
  6276. extra: 1
  6277. }
  6278. }
  6279. },
  6280. [
  6281. {
  6282. name: "Normal",
  6283. height: math.unit(6.25, "foot"),
  6284. default: true
  6285. },
  6286. ]
  6287. ))
  6288. characterMakers.push(() => makeCharacter(
  6289. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6290. {
  6291. front: {
  6292. height: math.unit(6, "feet"),
  6293. weight: math.unit(350, "lbs"),
  6294. name: "Front",
  6295. image: {
  6296. source: "./media/characters/razinox/front.svg",
  6297. extra: 1686 / 1548,
  6298. bottom: 28.2 / 1868
  6299. }
  6300. },
  6301. back: {
  6302. height: math.unit(6, "feet"),
  6303. weight: math.unit(350, "lbs"),
  6304. name: "Back",
  6305. image: {
  6306. source: "./media/characters/razinox/back.svg",
  6307. extra: 1660 / 1590,
  6308. bottom: 15 / 1665
  6309. }
  6310. },
  6311. },
  6312. [
  6313. {
  6314. name: "Normal",
  6315. height: math.unit(10 + 8 / 12, "foot")
  6316. },
  6317. {
  6318. name: "Minimacro",
  6319. height: math.unit(15, "foot")
  6320. },
  6321. {
  6322. name: "Macro",
  6323. height: math.unit(60, "foot"),
  6324. default: true
  6325. },
  6326. {
  6327. name: "Megamacro",
  6328. height: math.unit(5, "miles")
  6329. },
  6330. {
  6331. name: "Gigamacro",
  6332. height: math.unit(6000, "miles")
  6333. },
  6334. ]
  6335. ))
  6336. characterMakers.push(() => makeCharacter(
  6337. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6338. {
  6339. front: {
  6340. height: math.unit(6, "feet"),
  6341. weight: math.unit(150, "lbs"),
  6342. name: "Front",
  6343. image: {
  6344. source: "./media/characters/cobalt/front.svg"
  6345. }
  6346. }
  6347. },
  6348. [
  6349. {
  6350. name: "Normal",
  6351. height: math.unit(8 + 1 / 12, "foot")
  6352. },
  6353. {
  6354. name: "Macro",
  6355. height: math.unit(111, "foot"),
  6356. default: true
  6357. },
  6358. {
  6359. name: "Supracosmic",
  6360. height: math.unit(1e42, "feet")
  6361. },
  6362. ]
  6363. ))
  6364. characterMakers.push(() => makeCharacter(
  6365. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6366. {
  6367. front: {
  6368. height: math.unit(6, "feet"),
  6369. weight: math.unit(140, "lbs"),
  6370. name: "Front",
  6371. image: {
  6372. source: "./media/characters/amanda/front.svg"
  6373. }
  6374. }
  6375. },
  6376. [
  6377. {
  6378. name: "Micro",
  6379. height: math.unit(5, "inches"),
  6380. default: true
  6381. },
  6382. ]
  6383. ))
  6384. characterMakers.push(() => makeCharacter(
  6385. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6386. {
  6387. front: {
  6388. height: math.unit(5.59, "feet"),
  6389. weight: math.unit(250, "lbs"),
  6390. name: "Front",
  6391. image: {
  6392. source: "./media/characters/teal/front.svg"
  6393. }
  6394. },
  6395. frontAlt: {
  6396. height: math.unit(6, "feet"),
  6397. weight: math.unit(250, "lbs"),
  6398. name: "Front (Alt)",
  6399. image: {
  6400. source: "./media/characters/teal/front-alt.svg",
  6401. bottom: 0.04,
  6402. extra: 1
  6403. }
  6404. },
  6405. },
  6406. [
  6407. {
  6408. name: "Normal",
  6409. height: math.unit(12, "feet"),
  6410. default: true
  6411. },
  6412. {
  6413. name: "Macro",
  6414. height: math.unit(300, "feet")
  6415. },
  6416. ]
  6417. ))
  6418. characterMakers.push(() => makeCharacter(
  6419. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6420. {
  6421. frontCat: {
  6422. height: math.unit(6, "feet"),
  6423. weight: math.unit(180, "lbs"),
  6424. name: "Front (Cat)",
  6425. image: {
  6426. source: "./media/characters/ravin-amulet/front-cat.svg"
  6427. }
  6428. },
  6429. frontCatAlt: {
  6430. height: math.unit(6, "feet"),
  6431. weight: math.unit(180, "lbs"),
  6432. name: "Front (Alt, Cat)",
  6433. image: {
  6434. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6435. }
  6436. },
  6437. frontWerewolf: {
  6438. height: math.unit(6 * 1.2, "feet"),
  6439. weight: math.unit(225, "lbs"),
  6440. name: "Front (Werewolf)",
  6441. image: {
  6442. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6443. }
  6444. },
  6445. backWerewolf: {
  6446. height: math.unit(6 * 1.2, "feet"),
  6447. weight: math.unit(225, "lbs"),
  6448. name: "Back (Werewolf)",
  6449. image: {
  6450. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6451. }
  6452. },
  6453. },
  6454. [
  6455. {
  6456. name: "Nano",
  6457. height: math.unit(1, "micrometer")
  6458. },
  6459. {
  6460. name: "Micro",
  6461. height: math.unit(1, "inch")
  6462. },
  6463. {
  6464. name: "Normal",
  6465. height: math.unit(6, "feet"),
  6466. default: true
  6467. },
  6468. {
  6469. name: "Macro",
  6470. height: math.unit(60, "feet")
  6471. }
  6472. ]
  6473. ))
  6474. characterMakers.push(() => makeCharacter(
  6475. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6476. {
  6477. front: {
  6478. height: math.unit(6, "feet"),
  6479. weight: math.unit(165, "lbs"),
  6480. name: "Front",
  6481. image: {
  6482. source: "./media/characters/fluoresce/front.svg"
  6483. }
  6484. }
  6485. },
  6486. [
  6487. {
  6488. name: "Micro",
  6489. height: math.unit(6, "cm")
  6490. },
  6491. {
  6492. name: "Normal",
  6493. height: math.unit(5 + 7 / 12, "feet"),
  6494. default: true
  6495. },
  6496. {
  6497. name: "Macro",
  6498. height: math.unit(56, "feet")
  6499. },
  6500. {
  6501. name: "Megamacro",
  6502. height: math.unit(1.9, "miles")
  6503. },
  6504. ]
  6505. ))
  6506. characterMakers.push(() => makeCharacter(
  6507. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6508. {
  6509. front: {
  6510. height: math.unit(9 + 6 / 12, "feet"),
  6511. weight: math.unit(523, "lbs"),
  6512. name: "Side",
  6513. image: {
  6514. source: "./media/characters/aurora/side.svg"
  6515. }
  6516. }
  6517. },
  6518. [
  6519. {
  6520. name: "Normal",
  6521. height: math.unit(9 + 6 / 12, "feet")
  6522. },
  6523. {
  6524. name: "Macro",
  6525. height: math.unit(96, "feet"),
  6526. default: true
  6527. },
  6528. {
  6529. name: "Macro+",
  6530. height: math.unit(243, "feet")
  6531. },
  6532. ]
  6533. ))
  6534. characterMakers.push(() => makeCharacter(
  6535. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6536. {
  6537. front: {
  6538. height: math.unit(194, "cm"),
  6539. weight: math.unit(90, "kg"),
  6540. name: "Front",
  6541. image: {
  6542. source: "./media/characters/ranek/front.svg"
  6543. }
  6544. },
  6545. side: {
  6546. height: math.unit(194, "cm"),
  6547. weight: math.unit(90, "kg"),
  6548. name: "Side",
  6549. image: {
  6550. source: "./media/characters/ranek/side.svg"
  6551. }
  6552. },
  6553. back: {
  6554. height: math.unit(194, "cm"),
  6555. weight: math.unit(90, "kg"),
  6556. name: "Back",
  6557. image: {
  6558. source: "./media/characters/ranek/back.svg"
  6559. }
  6560. },
  6561. feral: {
  6562. height: math.unit(30, "cm"),
  6563. weight: math.unit(1.6, "lbs"),
  6564. name: "Feral",
  6565. image: {
  6566. source: "./media/characters/ranek/feral.svg"
  6567. }
  6568. },
  6569. },
  6570. [
  6571. {
  6572. name: "Normal",
  6573. height: math.unit(194, "cm"),
  6574. default: true
  6575. },
  6576. {
  6577. name: "Macro",
  6578. height: math.unit(100, "meters")
  6579. },
  6580. ]
  6581. ))
  6582. characterMakers.push(() => makeCharacter(
  6583. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6584. {
  6585. front: {
  6586. height: math.unit(5 + 6 / 12, "feet"),
  6587. weight: math.unit(153, "lbs"),
  6588. name: "Front",
  6589. image: {
  6590. source: "./media/characters/andrew-cooper/front.svg"
  6591. }
  6592. },
  6593. },
  6594. [
  6595. {
  6596. name: "Nano",
  6597. height: math.unit(1, "mm")
  6598. },
  6599. {
  6600. name: "Micro",
  6601. height: math.unit(2, "inches")
  6602. },
  6603. {
  6604. name: "Normal",
  6605. height: math.unit(5 + 6 / 12, "feet"),
  6606. default: true
  6607. }
  6608. ]
  6609. ))
  6610. characterMakers.push(() => makeCharacter(
  6611. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6612. {
  6613. front: {
  6614. height: math.unit(6, "feet"),
  6615. weight: math.unit(180, "lbs"),
  6616. name: "Front",
  6617. image: {
  6618. source: "./media/characters/akane-sato/front.svg",
  6619. extra: 1219 / 1140
  6620. }
  6621. },
  6622. back: {
  6623. height: math.unit(6, "feet"),
  6624. weight: math.unit(180, "lbs"),
  6625. name: "Back",
  6626. image: {
  6627. source: "./media/characters/akane-sato/back.svg",
  6628. extra: 1219 / 1170
  6629. }
  6630. },
  6631. },
  6632. [
  6633. {
  6634. name: "Normal",
  6635. height: math.unit(2.5, "meters")
  6636. },
  6637. {
  6638. name: "Macro",
  6639. height: math.unit(250, "meters"),
  6640. default: true
  6641. },
  6642. {
  6643. name: "Megamacro",
  6644. height: math.unit(25, "km")
  6645. },
  6646. ]
  6647. ))
  6648. characterMakers.push(() => makeCharacter(
  6649. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6650. {
  6651. front: {
  6652. height: math.unit(6, "feet"),
  6653. weight: math.unit(65, "kg"),
  6654. name: "Front",
  6655. image: {
  6656. source: "./media/characters/rook/front.svg",
  6657. extra: 960 / 950
  6658. }
  6659. }
  6660. },
  6661. [
  6662. {
  6663. name: "Normal",
  6664. height: math.unit(8.8, "feet")
  6665. },
  6666. {
  6667. name: "Macro",
  6668. height: math.unit(88, "feet"),
  6669. default: true
  6670. },
  6671. {
  6672. name: "Megamacro",
  6673. height: math.unit(8, "miles")
  6674. },
  6675. ]
  6676. ))
  6677. characterMakers.push(() => makeCharacter(
  6678. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6679. {
  6680. front: {
  6681. height: math.unit(12 + 2 / 12, "feet"),
  6682. weight: math.unit(808, "lbs"),
  6683. name: "Front",
  6684. image: {
  6685. source: "./media/characters/prodigy/front.svg"
  6686. }
  6687. }
  6688. },
  6689. [
  6690. {
  6691. name: "Normal",
  6692. height: math.unit(12 + 2 / 12, "feet"),
  6693. default: true
  6694. },
  6695. {
  6696. name: "Macro",
  6697. height: math.unit(143, "feet")
  6698. },
  6699. {
  6700. name: "Macro+",
  6701. height: math.unit(400, "feet")
  6702. },
  6703. ]
  6704. ))
  6705. characterMakers.push(() => makeCharacter(
  6706. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6707. {
  6708. front: {
  6709. height: math.unit(6, "feet"),
  6710. weight: math.unit(225, "lbs"),
  6711. name: "Front",
  6712. image: {
  6713. source: "./media/characters/daniel/front.svg"
  6714. }
  6715. },
  6716. leaning: {
  6717. height: math.unit(6, "feet"),
  6718. weight: math.unit(225, "lbs"),
  6719. name: "Leaning",
  6720. image: {
  6721. source: "./media/characters/daniel/leaning.svg"
  6722. }
  6723. },
  6724. },
  6725. [
  6726. {
  6727. name: "Macro",
  6728. height: math.unit(1000, "feet"),
  6729. default: true
  6730. },
  6731. ]
  6732. ))
  6733. characterMakers.push(() => makeCharacter(
  6734. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  6735. {
  6736. front: {
  6737. height: math.unit(6, "feet"),
  6738. weight: math.unit(88, "lbs"),
  6739. name: "Front",
  6740. image: {
  6741. source: "./media/characters/chiros/front.svg",
  6742. extra: 306 / 226
  6743. }
  6744. },
  6745. side: {
  6746. height: math.unit(6, "feet"),
  6747. weight: math.unit(88, "lbs"),
  6748. name: "Side",
  6749. image: {
  6750. source: "./media/characters/chiros/side.svg",
  6751. extra: 306 / 226
  6752. }
  6753. },
  6754. },
  6755. [
  6756. {
  6757. name: "Normal",
  6758. height: math.unit(6, "cm"),
  6759. default: true
  6760. },
  6761. ]
  6762. ))
  6763. characterMakers.push(() => makeCharacter(
  6764. { name: "Selka", species: ["snake"], tags: ["naga"] },
  6765. {
  6766. front: {
  6767. height: math.unit(6, "feet"),
  6768. weight: math.unit(100, "lbs"),
  6769. name: "Front",
  6770. image: {
  6771. source: "./media/characters/selka/front.svg",
  6772. extra: 947 / 887
  6773. }
  6774. }
  6775. },
  6776. [
  6777. {
  6778. name: "Normal",
  6779. height: math.unit(5, "cm"),
  6780. default: true
  6781. },
  6782. ]
  6783. ))
  6784. characterMakers.push(() => makeCharacter(
  6785. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  6786. {
  6787. front: {
  6788. height: math.unit(8 + 3 / 12, "feet"),
  6789. weight: math.unit(424, "lbs"),
  6790. name: "Front",
  6791. image: {
  6792. source: "./media/characters/verin/front.svg",
  6793. extra: 1845 / 1550
  6794. }
  6795. },
  6796. frontArmored: {
  6797. height: math.unit(8 + 3 / 12, "feet"),
  6798. weight: math.unit(424, "lbs"),
  6799. name: "Front (Armored)",
  6800. image: {
  6801. source: "./media/characters/verin/front-armor.svg",
  6802. extra: 1845 / 1550,
  6803. bottom: 0.01
  6804. }
  6805. },
  6806. back: {
  6807. height: math.unit(8 + 3 / 12, "feet"),
  6808. weight: math.unit(424, "lbs"),
  6809. name: "Back",
  6810. image: {
  6811. source: "./media/characters/verin/back.svg",
  6812. bottom: 0.1,
  6813. extra: 1
  6814. }
  6815. },
  6816. foot: {
  6817. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  6818. name: "Foot",
  6819. image: {
  6820. source: "./media/characters/verin/foot.svg"
  6821. }
  6822. },
  6823. },
  6824. [
  6825. {
  6826. name: "Normal",
  6827. height: math.unit(8 + 3 / 12, "feet")
  6828. },
  6829. {
  6830. name: "Minimacro",
  6831. height: math.unit(21, "feet"),
  6832. default: true
  6833. },
  6834. {
  6835. name: "Macro",
  6836. height: math.unit(626, "feet")
  6837. },
  6838. ]
  6839. ))
  6840. characterMakers.push(() => makeCharacter(
  6841. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  6842. {
  6843. front: {
  6844. height: math.unit(2.718, "meters"),
  6845. weight: math.unit(150, "lbs"),
  6846. name: "Front",
  6847. image: {
  6848. source: "./media/characters/sovrim-terraquian/front.svg"
  6849. }
  6850. },
  6851. back: {
  6852. height: math.unit(2.718, "meters"),
  6853. weight: math.unit(150, "lbs"),
  6854. name: "Back",
  6855. image: {
  6856. source: "./media/characters/sovrim-terraquian/back.svg"
  6857. }
  6858. }
  6859. },
  6860. [
  6861. {
  6862. name: "Micro",
  6863. height: math.unit(2, "inches")
  6864. },
  6865. {
  6866. name: "Small",
  6867. height: math.unit(1, "meter")
  6868. },
  6869. {
  6870. name: "Normal",
  6871. height: math.unit(Math.E, "meters"),
  6872. default: true
  6873. },
  6874. {
  6875. name: "Macro",
  6876. height: math.unit(20, "meters")
  6877. },
  6878. {
  6879. name: "Macro+",
  6880. height: math.unit(400, "meters")
  6881. },
  6882. ]
  6883. ))
  6884. characterMakers.push(() => makeCharacter(
  6885. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  6886. {
  6887. front: {
  6888. height: math.unit(7, "feet"),
  6889. weight: math.unit(489, "lbs"),
  6890. name: "Front",
  6891. image: {
  6892. source: "./media/characters/reece-silvermane/front.svg",
  6893. bottom: 0.02,
  6894. extra: 1
  6895. }
  6896. },
  6897. },
  6898. [
  6899. {
  6900. name: "Macro",
  6901. height: math.unit(1.5, "miles"),
  6902. default: true
  6903. },
  6904. ]
  6905. ))
  6906. characterMakers.push(() => makeCharacter(
  6907. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  6908. {
  6909. front: {
  6910. height: math.unit(6, "feet"),
  6911. weight: math.unit(78, "kg"),
  6912. name: "Front",
  6913. image: {
  6914. source: "./media/characters/kane/front.svg",
  6915. extra: 978 / 899
  6916. }
  6917. },
  6918. },
  6919. [
  6920. {
  6921. name: "Normal",
  6922. height: math.unit(2.1, "m"),
  6923. },
  6924. {
  6925. name: "Macro",
  6926. height: math.unit(1, "km"),
  6927. default: true
  6928. },
  6929. ]
  6930. ))
  6931. characterMakers.push(() => makeCharacter(
  6932. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  6933. {
  6934. front: {
  6935. height: math.unit(6, "feet"),
  6936. weight: math.unit(200, "kg"),
  6937. name: "Front",
  6938. image: {
  6939. source: "./media/characters/tegon/front.svg",
  6940. bottom: 0.01,
  6941. extra: 1
  6942. }
  6943. },
  6944. },
  6945. [
  6946. {
  6947. name: "Micro",
  6948. height: math.unit(1, "inch")
  6949. },
  6950. {
  6951. name: "Normal",
  6952. height: math.unit(6 + 3 / 12, "feet"),
  6953. default: true
  6954. },
  6955. {
  6956. name: "Macro",
  6957. height: math.unit(300, "feet")
  6958. },
  6959. {
  6960. name: "Megamacro",
  6961. height: math.unit(69, "miles")
  6962. },
  6963. ]
  6964. ))
  6965. characterMakers.push(() => makeCharacter(
  6966. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  6967. {
  6968. side: {
  6969. height: math.unit(6, "feet"),
  6970. weight: math.unit(2304, "lbs"),
  6971. name: "Side",
  6972. image: {
  6973. source: "./media/characters/arcturax/side.svg",
  6974. extra: 790 / 376,
  6975. bottom: 0.01
  6976. }
  6977. },
  6978. },
  6979. [
  6980. {
  6981. name: "Micro",
  6982. height: math.unit(2, "inch")
  6983. },
  6984. {
  6985. name: "Normal",
  6986. height: math.unit(6, "feet")
  6987. },
  6988. {
  6989. name: "Macro",
  6990. height: math.unit(39, "feet"),
  6991. default: true
  6992. },
  6993. {
  6994. name: "Megamacro",
  6995. height: math.unit(7, "miles")
  6996. },
  6997. ]
  6998. ))
  6999. characterMakers.push(() => makeCharacter(
  7000. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7001. {
  7002. front: {
  7003. height: math.unit(6, "feet"),
  7004. weight: math.unit(50, "lbs"),
  7005. name: "Front",
  7006. image: {
  7007. source: "./media/characters/sentri/front.svg",
  7008. extra: 1750 / 1570,
  7009. bottom: 0.025
  7010. }
  7011. },
  7012. frontAlt: {
  7013. height: math.unit(6, "feet"),
  7014. weight: math.unit(50, "lbs"),
  7015. name: "Front (Alt)",
  7016. image: {
  7017. source: "./media/characters/sentri/front-alt.svg",
  7018. extra: 1750 / 1570,
  7019. bottom: 0.025
  7020. }
  7021. },
  7022. },
  7023. [
  7024. {
  7025. name: "Normal",
  7026. height: math.unit(15, "feet"),
  7027. default: true
  7028. },
  7029. {
  7030. name: "Macro",
  7031. height: math.unit(2500, "feet")
  7032. }
  7033. ]
  7034. ))
  7035. characterMakers.push(() => makeCharacter(
  7036. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7037. {
  7038. front: {
  7039. height: math.unit(5 + 8 / 12, "feet"),
  7040. weight: math.unit(130, "lbs"),
  7041. name: "Front",
  7042. image: {
  7043. source: "./media/characters/corvin/front.svg",
  7044. extra: 1803 / 1629
  7045. }
  7046. },
  7047. frontShirt: {
  7048. height: math.unit(5 + 8 / 12, "feet"),
  7049. weight: math.unit(130, "lbs"),
  7050. name: "Front (Shirt)",
  7051. image: {
  7052. source: "./media/characters/corvin/front-shirt.svg",
  7053. extra: 1803 / 1629
  7054. }
  7055. },
  7056. frontPoncho: {
  7057. height: math.unit(5 + 8 / 12, "feet"),
  7058. weight: math.unit(130, "lbs"),
  7059. name: "Front (Poncho)",
  7060. image: {
  7061. source: "./media/characters/corvin/front-poncho.svg",
  7062. extra: 1803 / 1629
  7063. }
  7064. },
  7065. side: {
  7066. height: math.unit(5 + 8 / 12, "feet"),
  7067. weight: math.unit(130, "lbs"),
  7068. name: "Side",
  7069. image: {
  7070. source: "./media/characters/corvin/side.svg",
  7071. extra: 1012 / 945
  7072. }
  7073. },
  7074. back: {
  7075. height: math.unit(5 + 8 / 12, "feet"),
  7076. weight: math.unit(130, "lbs"),
  7077. name: "Back",
  7078. image: {
  7079. source: "./media/characters/corvin/back.svg",
  7080. extra: 1803 / 1629
  7081. }
  7082. },
  7083. },
  7084. [
  7085. {
  7086. name: "Micro",
  7087. height: math.unit(3, "inches")
  7088. },
  7089. {
  7090. name: "Normal",
  7091. height: math.unit(5 + 8 / 12, "feet")
  7092. },
  7093. {
  7094. name: "Macro",
  7095. height: math.unit(300, "feet"),
  7096. default: true
  7097. },
  7098. {
  7099. name: "Megamacro",
  7100. height: math.unit(500, "miles")
  7101. }
  7102. ]
  7103. ))
  7104. characterMakers.push(() => makeCharacter(
  7105. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7106. {
  7107. front: {
  7108. height: math.unit(6, "feet"),
  7109. weight: math.unit(135, "lbs"),
  7110. name: "Front",
  7111. image: {
  7112. source: "./media/characters/q/front.svg",
  7113. extra: 854 / 752,
  7114. bottom: 0.005
  7115. }
  7116. },
  7117. back: {
  7118. height: math.unit(6, "feet"),
  7119. weight: math.unit(130, "lbs"),
  7120. name: "Back",
  7121. image: {
  7122. source: "./media/characters/q/back.svg",
  7123. extra: 854 / 752
  7124. }
  7125. },
  7126. },
  7127. [
  7128. {
  7129. name: "Macro",
  7130. height: math.unit(90, "feet"),
  7131. default: true
  7132. },
  7133. {
  7134. name: "Extra Macro",
  7135. height: math.unit(300, "feet"),
  7136. },
  7137. {
  7138. name: "BIG WALF",
  7139. height: math.unit(750, "feet"),
  7140. },
  7141. ]
  7142. ))
  7143. characterMakers.push(() => makeCharacter(
  7144. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7145. {
  7146. front: {
  7147. height: math.unit(6, "feet"),
  7148. weight: math.unit(150, "lbs"),
  7149. name: "Front",
  7150. image: {
  7151. source: "./media/characters/carley/front.svg",
  7152. extra: 3927 / 3540,
  7153. bottom: 0.03
  7154. }
  7155. }
  7156. },
  7157. [
  7158. {
  7159. name: "Normal",
  7160. height: math.unit(6 + 3 / 12, "feet")
  7161. },
  7162. {
  7163. name: "Macro",
  7164. height: math.unit(185, "feet"),
  7165. default: true
  7166. },
  7167. {
  7168. name: "Megamacro",
  7169. height: math.unit(8, "miles"),
  7170. },
  7171. ]
  7172. ))
  7173. characterMakers.push(() => makeCharacter(
  7174. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7175. {
  7176. front: {
  7177. height: math.unit(3, "feet"),
  7178. weight: math.unit(28, "lbs"),
  7179. name: "Front",
  7180. image: {
  7181. source: "./media/characters/citrine/front.svg"
  7182. }
  7183. }
  7184. },
  7185. [
  7186. {
  7187. name: "Normal",
  7188. height: math.unit(3, "feet"),
  7189. default: true
  7190. }
  7191. ]
  7192. ))
  7193. characterMakers.push(() => makeCharacter(
  7194. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7195. {
  7196. front: {
  7197. height: math.unit(14, "feet"),
  7198. weight: math.unit(1450, "kg"),
  7199. capacity: math.unit(15, "people"),
  7200. name: "Front",
  7201. image: {
  7202. source: "./media/characters/aura-starwind/front.svg",
  7203. extra: 1455 / 1335
  7204. }
  7205. },
  7206. side: {
  7207. height: math.unit(14, "feet"),
  7208. weight: math.unit(1450, "kg"),
  7209. capacity: math.unit(15, "people"),
  7210. name: "Side",
  7211. image: {
  7212. source: "./media/characters/aura-starwind/side.svg",
  7213. extra: 1654 / 1497
  7214. }
  7215. },
  7216. taur: {
  7217. height: math.unit(18, "feet"),
  7218. weight: math.unit(5500, "kg"),
  7219. capacity: math.unit(50, "people"),
  7220. name: "Taur",
  7221. image: {
  7222. source: "./media/characters/aura-starwind/taur.svg",
  7223. extra: 1760 / 1650
  7224. }
  7225. },
  7226. feral: {
  7227. height: math.unit(46, "feet"),
  7228. weight: math.unit(25000, "kg"),
  7229. capacity: math.unit(120, "people"),
  7230. name: "Feral",
  7231. image: {
  7232. source: "./media/characters/aura-starwind/feral.svg"
  7233. }
  7234. },
  7235. },
  7236. [
  7237. {
  7238. name: "Normal",
  7239. height: math.unit(14, "feet"),
  7240. default: true
  7241. },
  7242. {
  7243. name: "Macro",
  7244. height: math.unit(50, "meters")
  7245. },
  7246. {
  7247. name: "Megamacro",
  7248. height: math.unit(5000, "meters")
  7249. },
  7250. {
  7251. name: "Gigamacro",
  7252. height: math.unit(100000, "kilometers")
  7253. },
  7254. ]
  7255. ))
  7256. characterMakers.push(() => makeCharacter(
  7257. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7258. {
  7259. front: {
  7260. height: math.unit(2 + 7 / 12, "feet"),
  7261. weight: math.unit(32, "lbs"),
  7262. name: "Front",
  7263. image: {
  7264. source: "./media/characters/rivet/front.svg",
  7265. extra: 1716 / 1658,
  7266. bottom: 0.03
  7267. }
  7268. },
  7269. foot: {
  7270. height: math.unit(0.551, "feet"),
  7271. name: "Rivet's Foot",
  7272. image: {
  7273. source: "./media/characters/rivet/foot.svg"
  7274. },
  7275. rename: true
  7276. }
  7277. },
  7278. [
  7279. {
  7280. name: "Micro",
  7281. height: math.unit(1.5, "inches"),
  7282. },
  7283. {
  7284. name: "Normal",
  7285. height: math.unit(2 + 7 / 12, "feet"),
  7286. default: true
  7287. },
  7288. {
  7289. name: "Macro",
  7290. height: math.unit(85, "feet")
  7291. },
  7292. {
  7293. name: "Megamacro",
  7294. height: math.unit(2.2, "km")
  7295. }
  7296. ]
  7297. ))
  7298. characterMakers.push(() => makeCharacter(
  7299. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7300. {
  7301. front: {
  7302. height: math.unit(5 + 9 / 12, "feet"),
  7303. weight: math.unit(150, "lbs"),
  7304. name: "Front",
  7305. image: {
  7306. source: "./media/characters/coffee/front.svg",
  7307. extra: 3666 / 3032,
  7308. bottom: 0.04
  7309. }
  7310. },
  7311. foot: {
  7312. height: math.unit(1.29, "feet"),
  7313. name: "Foot",
  7314. image: {
  7315. source: "./media/characters/coffee/foot.svg"
  7316. }
  7317. },
  7318. },
  7319. [
  7320. {
  7321. name: "Micro",
  7322. height: math.unit(2, "inches"),
  7323. },
  7324. {
  7325. name: "Normal",
  7326. height: math.unit(5 + 9 / 12, "feet"),
  7327. default: true
  7328. },
  7329. {
  7330. name: "Macro",
  7331. height: math.unit(800, "feet")
  7332. },
  7333. {
  7334. name: "Megamacro",
  7335. height: math.unit(25, "miles")
  7336. }
  7337. ]
  7338. ))
  7339. characterMakers.push(() => makeCharacter(
  7340. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7341. {
  7342. front: {
  7343. height: math.unit(6, "feet"),
  7344. weight: math.unit(200, "lbs"),
  7345. name: "Front",
  7346. image: {
  7347. source: "./media/characters/chari-gal/front.svg",
  7348. extra: 1568 / 1385,
  7349. bottom: 0.047
  7350. }
  7351. },
  7352. gigantamax: {
  7353. height: math.unit(6 * 16, "feet"),
  7354. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7355. name: "Gigantamax",
  7356. image: {
  7357. source: "./media/characters/chari-gal/gigantamax.svg",
  7358. extra: 1124 / 888,
  7359. bottom: 0.03
  7360. }
  7361. },
  7362. },
  7363. [
  7364. {
  7365. name: "Normal",
  7366. height: math.unit(5 + 7 / 12, "feet")
  7367. },
  7368. {
  7369. name: "Macro",
  7370. height: math.unit(200, "feet"),
  7371. default: true
  7372. }
  7373. ]
  7374. ))
  7375. characterMakers.push(() => makeCharacter(
  7376. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7377. {
  7378. front: {
  7379. height: math.unit(6, "feet"),
  7380. weight: math.unit(150, "lbs"),
  7381. name: "Front",
  7382. image: {
  7383. source: "./media/characters/nova/front.svg",
  7384. extra: 5000 / 4722,
  7385. bottom: 0.02
  7386. }
  7387. }
  7388. },
  7389. [
  7390. {
  7391. name: "Micro-",
  7392. height: math.unit(0.8, "inches")
  7393. },
  7394. {
  7395. name: "Micro",
  7396. height: math.unit(2, "inches"),
  7397. default: true
  7398. },
  7399. ]
  7400. ))
  7401. characterMakers.push(() => makeCharacter(
  7402. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7403. {
  7404. front: {
  7405. height: math.unit(3 + 1 / 12, "feet"),
  7406. weight: math.unit(21.7, "lbs"),
  7407. name: "Front",
  7408. image: {
  7409. source: "./media/characters/argent/front.svg",
  7410. extra: 1471 / 1331,
  7411. bottom: 100.8 / 1575.5
  7412. }
  7413. }
  7414. },
  7415. [
  7416. {
  7417. name: "Micro",
  7418. height: math.unit(2, "inches")
  7419. },
  7420. {
  7421. name: "Normal",
  7422. height: math.unit(3 + 1 / 12, "feet"),
  7423. default: true
  7424. },
  7425. {
  7426. name: "Macro",
  7427. height: math.unit(120, "feet")
  7428. },
  7429. ]
  7430. ))
  7431. characterMakers.push(() => makeCharacter(
  7432. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7433. {
  7434. lamp: {
  7435. height: math.unit(7 * 1559 / 989, "feet"),
  7436. name: "Magic Lamp",
  7437. image: {
  7438. source: "./media/characters/mira-al-cul/lamp.svg",
  7439. extra: 1617 / 1559
  7440. }
  7441. },
  7442. front: {
  7443. height: math.unit(7, "feet"),
  7444. name: "Front",
  7445. image: {
  7446. source: "./media/characters/mira-al-cul/front.svg",
  7447. extra: 1044 / 990
  7448. }
  7449. },
  7450. },
  7451. [
  7452. {
  7453. name: "Heavily Restricted",
  7454. height: math.unit(7 * 1559 / 989, "feet")
  7455. },
  7456. {
  7457. name: "Freshly Freed",
  7458. height: math.unit(50 * 1559 / 989, "feet")
  7459. },
  7460. {
  7461. name: "World Encompassing",
  7462. height: math.unit(10000 * 1559 / 989, "miles")
  7463. },
  7464. {
  7465. name: "Galactic",
  7466. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7467. },
  7468. {
  7469. name: "Palmed Universe",
  7470. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7471. default: true
  7472. },
  7473. {
  7474. name: "Multiversal Matriarch",
  7475. height: math.unit(8.87e10, "yottameters")
  7476. },
  7477. {
  7478. name: "Void Mother",
  7479. height: math.unit(3.14e110, "yottaparsecs")
  7480. },
  7481. ]
  7482. ))
  7483. characterMakers.push(() => makeCharacter(
  7484. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7485. {
  7486. front: {
  7487. height: math.unit(17 + 1 / 12, "feet"),
  7488. weight: math.unit(476.2 * 5, "lbs"),
  7489. name: "Front",
  7490. image: {
  7491. source: "./media/characters/kuro-shi-uchū/front.svg",
  7492. extra: 2329 / 1835,
  7493. bottom: 0.02
  7494. }
  7495. },
  7496. },
  7497. [
  7498. {
  7499. name: "Micro",
  7500. height: math.unit(2, "inches")
  7501. },
  7502. {
  7503. name: "Normal",
  7504. height: math.unit(12, "meters")
  7505. },
  7506. {
  7507. name: "Planetary",
  7508. height: math.unit(0.00929, "AU"),
  7509. default: true
  7510. },
  7511. {
  7512. name: "Universal",
  7513. height: math.unit(20, "gigaparsecs")
  7514. },
  7515. ]
  7516. ))
  7517. characterMakers.push(() => makeCharacter(
  7518. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7519. {
  7520. front: {
  7521. height: math.unit(5 + 2 / 12, "feet"),
  7522. weight: math.unit(120, "lbs"),
  7523. name: "Front",
  7524. image: {
  7525. source: "./media/characters/katherine/front.svg",
  7526. extra: 2075 / 1969
  7527. }
  7528. },
  7529. dress: {
  7530. height: math.unit(5 + 2 / 12, "feet"),
  7531. weight: math.unit(120, "lbs"),
  7532. name: "Dress",
  7533. image: {
  7534. source: "./media/characters/katherine/dress.svg",
  7535. extra: 2258 / 2064
  7536. }
  7537. },
  7538. },
  7539. [
  7540. {
  7541. name: "Micro",
  7542. height: math.unit(1, "inches"),
  7543. default: true
  7544. },
  7545. {
  7546. name: "Normal",
  7547. height: math.unit(5 + 2 / 12, "feet")
  7548. },
  7549. {
  7550. name: "Macro",
  7551. height: math.unit(100, "meters")
  7552. },
  7553. {
  7554. name: "Megamacro",
  7555. height: math.unit(80, "miles")
  7556. },
  7557. ]
  7558. ))
  7559. characterMakers.push(() => makeCharacter(
  7560. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7561. {
  7562. front: {
  7563. height: math.unit(7 + 8 / 12, "feet"),
  7564. weight: math.unit(250, "lbs"),
  7565. name: "Front",
  7566. image: {
  7567. source: "./media/characters/yevis/front.svg",
  7568. extra: 1938 / 1755
  7569. }
  7570. }
  7571. },
  7572. [
  7573. {
  7574. name: "Mortal",
  7575. height: math.unit(7 + 8 / 12, "feet")
  7576. },
  7577. {
  7578. name: "Battle",
  7579. height: math.unit(25 + 11 / 12, "feet")
  7580. },
  7581. {
  7582. name: "Wrath",
  7583. height: math.unit(1654 + 11 / 12, "feet")
  7584. },
  7585. {
  7586. name: "Planet Destroyer",
  7587. height: math.unit(12000, "miles")
  7588. },
  7589. {
  7590. name: "Galaxy Conqueror",
  7591. height: math.unit(1.45, "zettameters"),
  7592. default: true
  7593. },
  7594. {
  7595. name: "Universal War",
  7596. height: math.unit(184, "gigaparsecs")
  7597. },
  7598. {
  7599. name: "Eternity War",
  7600. height: math.unit(1.98e55, "yottaparsecs")
  7601. },
  7602. ]
  7603. ))
  7604. characterMakers.push(() => makeCharacter(
  7605. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7606. {
  7607. front: {
  7608. height: math.unit(5 + 8 / 12, "feet"),
  7609. weight: math.unit(63, "kg"),
  7610. name: "Front",
  7611. image: {
  7612. source: "./media/characters/xavier/front.svg",
  7613. extra: 944 / 883
  7614. }
  7615. },
  7616. frontStretch: {
  7617. height: math.unit(5 + 8 / 12, "feet"),
  7618. weight: math.unit(63, "kg"),
  7619. name: "Stretching",
  7620. image: {
  7621. source: "./media/characters/xavier/front-stretch.svg",
  7622. extra: 962 / 820
  7623. }
  7624. },
  7625. },
  7626. [
  7627. {
  7628. name: "Normal",
  7629. height: math.unit(5 + 8 / 12, "feet")
  7630. },
  7631. {
  7632. name: "Macro",
  7633. height: math.unit(100, "meters"),
  7634. default: true
  7635. },
  7636. {
  7637. name: "McLargeHuge",
  7638. height: math.unit(10, "miles")
  7639. },
  7640. ]
  7641. ))
  7642. characterMakers.push(() => makeCharacter(
  7643. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7644. {
  7645. front: {
  7646. height: math.unit(5 + 5 / 12, "feet"),
  7647. weight: math.unit(150, "lb"),
  7648. name: "Front",
  7649. image: {
  7650. source: "./media/characters/joshii/front.svg"
  7651. }
  7652. },
  7653. foot: {
  7654. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7655. name: "Foot",
  7656. image: {
  7657. source: "./media/characters/joshii/foot.svg"
  7658. }
  7659. },
  7660. },
  7661. [
  7662. {
  7663. name: "Micro",
  7664. height: math.unit(2, "inches")
  7665. },
  7666. {
  7667. name: "Normal",
  7668. height: math.unit(5 + 5 / 12, "feet"),
  7669. default: true
  7670. },
  7671. {
  7672. name: "Macro",
  7673. height: math.unit(785, "feet")
  7674. },
  7675. {
  7676. name: "Megamacro",
  7677. height: math.unit(24.5, "miles")
  7678. },
  7679. ]
  7680. ))
  7681. characterMakers.push(() => makeCharacter(
  7682. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  7683. {
  7684. front: {
  7685. height: math.unit(6, "feet"),
  7686. weight: math.unit(150, "lb"),
  7687. name: "Front",
  7688. image: {
  7689. source: "./media/characters/goddess-elizabeth/front.svg",
  7690. extra: 1800 / 1525,
  7691. bottom: 0.005
  7692. }
  7693. },
  7694. foot: {
  7695. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7696. name: "Foot",
  7697. image: {
  7698. source: "./media/characters/goddess-elizabeth/foot.svg"
  7699. }
  7700. },
  7701. mouth: {
  7702. height: math.unit(6, "feet"),
  7703. name: "Mouth",
  7704. image: {
  7705. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7706. }
  7707. },
  7708. },
  7709. [
  7710. {
  7711. name: "Micro",
  7712. height: math.unit(12, "feet")
  7713. },
  7714. {
  7715. name: "Normal",
  7716. height: math.unit(80, "miles"),
  7717. default: true
  7718. },
  7719. {
  7720. name: "Macro",
  7721. height: math.unit(15000, "parsecs")
  7722. },
  7723. ]
  7724. ))
  7725. characterMakers.push(() => makeCharacter(
  7726. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  7727. {
  7728. front: {
  7729. height: math.unit(5 + 9 / 12, "feet"),
  7730. weight: math.unit(144, "lb"),
  7731. name: "Front",
  7732. image: {
  7733. source: "./media/characters/kara/front.svg"
  7734. }
  7735. },
  7736. feet: {
  7737. height: math.unit(6 / 6.765, "feet"),
  7738. name: "Kara's Feet",
  7739. rename: true,
  7740. image: {
  7741. source: "./media/characters/kara/feet.svg"
  7742. }
  7743. },
  7744. },
  7745. [
  7746. {
  7747. name: "Normal",
  7748. height: math.unit(5 + 9 / 12, "feet")
  7749. },
  7750. {
  7751. name: "Macro",
  7752. height: math.unit(174, "feet"),
  7753. default: true
  7754. },
  7755. ]
  7756. ))
  7757. characterMakers.push(() => makeCharacter(
  7758. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  7759. {
  7760. front: {
  7761. height: math.unit(18, "feet"),
  7762. weight: math.unit(4050, "lb"),
  7763. name: "Front",
  7764. image: {
  7765. source: "./media/characters/tyrone/front.svg",
  7766. extra: 2520 / 2402,
  7767. bottom: 0.025
  7768. }
  7769. },
  7770. },
  7771. [
  7772. {
  7773. name: "Normal",
  7774. height: math.unit(18, "feet"),
  7775. default: true
  7776. },
  7777. {
  7778. name: "Macro",
  7779. height: math.unit(300, "feet")
  7780. },
  7781. ]
  7782. ))
  7783. characterMakers.push(() => makeCharacter(
  7784. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  7785. {
  7786. front: {
  7787. height: math.unit(7 + 8 / 12, "feet"),
  7788. weight: math.unit(120, "lb"),
  7789. name: "Front",
  7790. image: {
  7791. source: "./media/characters/danny/front.svg",
  7792. extra: 1490 / 1350
  7793. }
  7794. },
  7795. back: {
  7796. height: math.unit(7 + 8 / 12, "feet"),
  7797. weight: math.unit(120, "lb"),
  7798. name: "Back",
  7799. image: {
  7800. source: "./media/characters/danny/back.svg",
  7801. extra: 1490 / 1350
  7802. }
  7803. },
  7804. },
  7805. [
  7806. {
  7807. name: "Normal",
  7808. height: math.unit(7 + 8 / 12, "feet"),
  7809. default: true
  7810. },
  7811. ]
  7812. ))
  7813. characterMakers.push(() => makeCharacter(
  7814. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  7815. {
  7816. front: {
  7817. height: math.unit(3.5, "inches"),
  7818. weight: math.unit(19, "grams"),
  7819. name: "Front",
  7820. image: {
  7821. source: "./media/characters/mallow/front.svg",
  7822. extra: 471 / 431
  7823. }
  7824. },
  7825. back: {
  7826. height: math.unit(3.5, "inches"),
  7827. weight: math.unit(19, "grams"),
  7828. name: "Back",
  7829. image: {
  7830. source: "./media/characters/mallow/back.svg",
  7831. extra: 471 / 431
  7832. }
  7833. },
  7834. },
  7835. [
  7836. {
  7837. name: "Normal",
  7838. height: math.unit(3.5, "inches"),
  7839. default: true
  7840. },
  7841. ]
  7842. ))
  7843. characterMakers.push(() => makeCharacter(
  7844. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  7845. {
  7846. front: {
  7847. height: math.unit(9, "feet"),
  7848. weight: math.unit(230, "kg"),
  7849. name: "Front",
  7850. image: {
  7851. source: "./media/characters/starry-aqua/front.svg"
  7852. }
  7853. },
  7854. back: {
  7855. height: math.unit(9, "feet"),
  7856. weight: math.unit(230, "kg"),
  7857. name: "Back",
  7858. image: {
  7859. source: "./media/characters/starry-aqua/back.svg"
  7860. }
  7861. },
  7862. hand: {
  7863. height: math.unit(9 * 0.1168, "feet"),
  7864. name: "Hand",
  7865. image: {
  7866. source: "./media/characters/starry-aqua/hand.svg"
  7867. }
  7868. },
  7869. foot: {
  7870. height: math.unit(9 * 0.18, "feet"),
  7871. name: "Foot",
  7872. image: {
  7873. source: "./media/characters/starry-aqua/foot.svg"
  7874. }
  7875. }
  7876. },
  7877. [
  7878. {
  7879. name: "Micro",
  7880. height: math.unit(3, "inches")
  7881. },
  7882. {
  7883. name: "Normal",
  7884. height: math.unit(9, "feet")
  7885. },
  7886. {
  7887. name: "Macro",
  7888. height: math.unit(300, "feet"),
  7889. default: true
  7890. },
  7891. {
  7892. name: "Megamacro",
  7893. height: math.unit(3200, "feet")
  7894. }
  7895. ]
  7896. ))
  7897. characterMakers.push(() => makeCharacter(
  7898. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  7899. {
  7900. front: {
  7901. height: math.unit(6, "feet"),
  7902. weight: math.unit(230, "lb"),
  7903. name: "Front",
  7904. image: {
  7905. source: "./media/characters/luka/front.svg",
  7906. extra: 1,
  7907. bottom: 0.025
  7908. }
  7909. },
  7910. },
  7911. [
  7912. {
  7913. name: "Normal",
  7914. height: math.unit(12 + 8 / 12, "feet"),
  7915. default: true
  7916. },
  7917. {
  7918. name: "Minimacro",
  7919. height: math.unit(20, "feet")
  7920. },
  7921. {
  7922. name: "Macro",
  7923. height: math.unit(250, "feet")
  7924. },
  7925. {
  7926. name: "Megamacro",
  7927. height: math.unit(5, "miles")
  7928. },
  7929. {
  7930. name: "Gigamacro",
  7931. height: math.unit(8000, "miles")
  7932. },
  7933. ]
  7934. ))
  7935. characterMakers.push(() => makeCharacter(
  7936. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  7937. {
  7938. front: {
  7939. height: math.unit(6, "feet"),
  7940. weight: math.unit(150, "lb"),
  7941. name: "Front",
  7942. image: {
  7943. source: "./media/characters/natalie-nightring/front.svg",
  7944. extra: 1,
  7945. bottom: 0.06
  7946. }
  7947. },
  7948. },
  7949. [
  7950. {
  7951. name: "Uh Oh",
  7952. height: math.unit(0.1, "mm")
  7953. },
  7954. {
  7955. name: "Small",
  7956. height: math.unit(3, "inches")
  7957. },
  7958. {
  7959. name: "Human Scale",
  7960. height: math.unit(6, "feet")
  7961. },
  7962. {
  7963. name: "Librarian",
  7964. height: math.unit(50, "feet"),
  7965. default: true
  7966. },
  7967. {
  7968. name: "Immense",
  7969. height: math.unit(200, "miles")
  7970. },
  7971. ]
  7972. ))
  7973. characterMakers.push(() => makeCharacter(
  7974. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  7975. {
  7976. front: {
  7977. height: math.unit(6, "feet"),
  7978. weight: math.unit(180, "lbs"),
  7979. name: "Front",
  7980. image: {
  7981. source: "./media/characters/danni-rosie/front.svg",
  7982. extra: 1260 / 1128,
  7983. bottom: 0.022
  7984. }
  7985. },
  7986. },
  7987. [
  7988. {
  7989. name: "Micro",
  7990. height: math.unit(2, "inches"),
  7991. default: true
  7992. },
  7993. ]
  7994. ))
  7995. characterMakers.push(() => makeCharacter(
  7996. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  7997. {
  7998. front: {
  7999. height: math.unit(5 + 9 / 12, "feet"),
  8000. weight: math.unit(220, "lb"),
  8001. name: "Front",
  8002. image: {
  8003. source: "./media/characters/samantha-kruse/front.svg",
  8004. extra: (985 / 935),
  8005. bottom: 0.03
  8006. }
  8007. },
  8008. frontUndressed: {
  8009. height: math.unit(5 + 9 / 12, "feet"),
  8010. weight: math.unit(220, "lb"),
  8011. name: "Front (Undressed)",
  8012. image: {
  8013. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8014. extra: (973 / 923),
  8015. bottom: 0.025
  8016. }
  8017. },
  8018. fat: {
  8019. height: math.unit(5 + 9 / 12, "feet"),
  8020. weight: math.unit(900, "lb"),
  8021. name: "Front (Fat)",
  8022. image: {
  8023. source: "./media/characters/samantha-kruse/fat.svg",
  8024. extra: 2688 / 2561
  8025. }
  8026. },
  8027. },
  8028. [
  8029. {
  8030. name: "Normal",
  8031. height: math.unit(5 + 9 / 12, "feet"),
  8032. default: true
  8033. }
  8034. ]
  8035. ))
  8036. characterMakers.push(() => makeCharacter(
  8037. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8038. {
  8039. back: {
  8040. height: math.unit(5 + 4 / 12, "feet"),
  8041. weight: math.unit(4963, "lb"),
  8042. name: "Back",
  8043. image: {
  8044. source: "./media/characters/amelia-rosie/back.svg",
  8045. extra: 1113 / 963,
  8046. bottom: 0.01
  8047. }
  8048. },
  8049. },
  8050. [
  8051. {
  8052. name: "Level 0",
  8053. height: math.unit(5 + 4 / 12, "feet")
  8054. },
  8055. {
  8056. name: "Level 1",
  8057. height: math.unit(164597, "feet"),
  8058. default: true
  8059. },
  8060. {
  8061. name: "Level 2",
  8062. height: math.unit(956243, "miles")
  8063. },
  8064. {
  8065. name: "Level 3",
  8066. height: math.unit(29421709423, "miles")
  8067. },
  8068. {
  8069. name: "Level 4",
  8070. height: math.unit(154, "lightyears")
  8071. },
  8072. {
  8073. name: "Level 5",
  8074. height: math.unit(4738272, "lightyears")
  8075. },
  8076. {
  8077. name: "Level 6",
  8078. height: math.unit(145787152896, "lightyears")
  8079. },
  8080. ]
  8081. ))
  8082. characterMakers.push(() => makeCharacter(
  8083. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8084. {
  8085. front: {
  8086. height: math.unit(5 + 11 / 12, "feet"),
  8087. weight: math.unit(65, "kg"),
  8088. name: "Front",
  8089. image: {
  8090. source: "./media/characters/rook-kitara/front.svg",
  8091. extra: 1347 / 1274,
  8092. bottom: 0.005
  8093. }
  8094. },
  8095. },
  8096. [
  8097. {
  8098. name: "Totally Unfair",
  8099. height: math.unit(1.8, "mm")
  8100. },
  8101. {
  8102. name: "Lap Rookie",
  8103. height: math.unit(1.4, "feet")
  8104. },
  8105. {
  8106. name: "Normal",
  8107. height: math.unit(5 + 11 / 12, "feet"),
  8108. default: true
  8109. },
  8110. {
  8111. name: "How Did This Happen",
  8112. height: math.unit(80, "miles")
  8113. }
  8114. ]
  8115. ))
  8116. characterMakers.push(() => makeCharacter(
  8117. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8118. {
  8119. front: {
  8120. height: math.unit(7, "feet"),
  8121. weight: math.unit(300, "lb"),
  8122. name: "Front",
  8123. image: {
  8124. source: "./media/characters/pisces/front.svg",
  8125. extra: 2255 / 2115,
  8126. bottom: 0.03
  8127. }
  8128. },
  8129. back: {
  8130. height: math.unit(7, "feet"),
  8131. weight: math.unit(300, "lb"),
  8132. name: "Back",
  8133. image: {
  8134. source: "./media/characters/pisces/back.svg",
  8135. extra: 2146 / 2055,
  8136. bottom: 0.04
  8137. }
  8138. },
  8139. },
  8140. [
  8141. {
  8142. name: "Normal",
  8143. height: math.unit(7, "feet"),
  8144. default: true
  8145. },
  8146. {
  8147. name: "Swimming Pool",
  8148. height: math.unit(12.2, "meters")
  8149. },
  8150. {
  8151. name: "Olympic Swimming Pool",
  8152. height: math.unit(56.3, "meters")
  8153. },
  8154. {
  8155. name: "Lake Superior",
  8156. height: math.unit(93900, "meters")
  8157. },
  8158. {
  8159. name: "Mediterranean Sea",
  8160. height: math.unit(644457, "meters")
  8161. },
  8162. {
  8163. name: "World's Oceans",
  8164. height: math.unit(4567491, "meters")
  8165. },
  8166. ]
  8167. ))
  8168. characterMakers.push(() => makeCharacter(
  8169. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8170. {
  8171. front: {
  8172. height: math.unit(2.3, "meters"),
  8173. weight: math.unit(120, "kg"),
  8174. name: "Front",
  8175. image: {
  8176. source: "./media/characters/zelas/front.svg"
  8177. }
  8178. },
  8179. side: {
  8180. height: math.unit(2.3, "meters"),
  8181. weight: math.unit(120, "kg"),
  8182. name: "Side",
  8183. image: {
  8184. source: "./media/characters/zelas/side.svg"
  8185. }
  8186. },
  8187. back: {
  8188. height: math.unit(2.3, "meters"),
  8189. weight: math.unit(120, "kg"),
  8190. name: "Back",
  8191. image: {
  8192. source: "./media/characters/zelas/back.svg"
  8193. }
  8194. },
  8195. foot: {
  8196. height: math.unit(1.116, "feet"),
  8197. name: "Foot",
  8198. image: {
  8199. source: "./media/characters/zelas/foot.svg"
  8200. }
  8201. },
  8202. },
  8203. [
  8204. {
  8205. name: "Normal",
  8206. height: math.unit(2.3, "meters")
  8207. },
  8208. {
  8209. name: "Macro",
  8210. height: math.unit(30, "meters"),
  8211. default: true
  8212. },
  8213. ]
  8214. ))
  8215. characterMakers.push(() => makeCharacter(
  8216. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8217. {
  8218. front: {
  8219. height: math.unit(1, "inch"),
  8220. weight: math.unit(0.21, "grams"),
  8221. name: "Front",
  8222. image: {
  8223. source: "./media/characters/talbot/front.svg",
  8224. extra: 594 / 544
  8225. }
  8226. },
  8227. },
  8228. [
  8229. {
  8230. name: "Micro",
  8231. height: math.unit(1, "inch"),
  8232. default: true
  8233. },
  8234. ]
  8235. ))
  8236. characterMakers.push(() => makeCharacter(
  8237. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8238. {
  8239. front: {
  8240. height: math.unit(3 + 3 / 12, "feet"),
  8241. weight: math.unit(51.8, "lb"),
  8242. name: "Front",
  8243. image: {
  8244. source: "./media/characters/fliss/front.svg",
  8245. extra: 840 / 640
  8246. }
  8247. },
  8248. },
  8249. [
  8250. {
  8251. name: "Teeny Tiny",
  8252. height: math.unit(1, "mm")
  8253. },
  8254. {
  8255. name: "Small",
  8256. height: math.unit(1, "inch"),
  8257. default: true
  8258. },
  8259. {
  8260. name: "Standard Sylveon",
  8261. height: math.unit(3 + 3 / 12, "feet")
  8262. },
  8263. {
  8264. name: "Large Nuisance",
  8265. height: math.unit(33, "feet")
  8266. },
  8267. {
  8268. name: "City Filler",
  8269. height: math.unit(3000, "feet")
  8270. },
  8271. {
  8272. name: "New Horizon",
  8273. height: math.unit(6000, "miles")
  8274. },
  8275. ]
  8276. ))
  8277. characterMakers.push(() => makeCharacter(
  8278. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8279. {
  8280. front: {
  8281. height: math.unit(5, "cm"),
  8282. weight: math.unit(1.94, "g"),
  8283. name: "Front",
  8284. image: {
  8285. source: "./media/characters/fleta/front.svg",
  8286. extra: 835 / 803
  8287. }
  8288. },
  8289. back: {
  8290. height: math.unit(5, "cm"),
  8291. weight: math.unit(1.94, "g"),
  8292. name: "Back",
  8293. image: {
  8294. source: "./media/characters/fleta/back.svg",
  8295. extra: 835 / 803
  8296. }
  8297. },
  8298. },
  8299. [
  8300. {
  8301. name: "Micro",
  8302. height: math.unit(5, "cm"),
  8303. default: true
  8304. },
  8305. ]
  8306. ))
  8307. characterMakers.push(() => makeCharacter(
  8308. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8309. {
  8310. front: {
  8311. height: math.unit(6, "feet"),
  8312. weight: math.unit(225, "lb"),
  8313. name: "Front",
  8314. image: {
  8315. source: "./media/characters/dominic/front.svg",
  8316. extra: 1770 / 1620,
  8317. bottom: 0.025
  8318. }
  8319. },
  8320. back: {
  8321. height: math.unit(6, "feet"),
  8322. weight: math.unit(225, "lb"),
  8323. name: "Back",
  8324. image: {
  8325. source: "./media/characters/dominic/back.svg",
  8326. extra: 1745 / 1620,
  8327. bottom: 0.065
  8328. }
  8329. },
  8330. },
  8331. [
  8332. {
  8333. name: "Nano",
  8334. height: math.unit(0.1, "mm")
  8335. },
  8336. {
  8337. name: "Micro-",
  8338. height: math.unit(1, "mm")
  8339. },
  8340. {
  8341. name: "Micro",
  8342. height: math.unit(4, "inches")
  8343. },
  8344. {
  8345. name: "Normal",
  8346. height: math.unit(6 + 4 / 12, "feet"),
  8347. default: true
  8348. },
  8349. {
  8350. name: "Macro",
  8351. height: math.unit(115, "feet")
  8352. },
  8353. {
  8354. name: "Macro+",
  8355. height: math.unit(955, "feet")
  8356. },
  8357. {
  8358. name: "Megamacro",
  8359. height: math.unit(8990, "feet")
  8360. },
  8361. {
  8362. name: "Gigmacro",
  8363. height: math.unit(9310, "miles")
  8364. },
  8365. {
  8366. name: "Teramacro",
  8367. height: math.unit(1567005010, "miles")
  8368. },
  8369. {
  8370. name: "Examacro",
  8371. height: math.unit(1425, "parsecs")
  8372. },
  8373. ]
  8374. ))
  8375. characterMakers.push(() => makeCharacter(
  8376. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8377. {
  8378. front: {
  8379. height: math.unit(400, "feet"),
  8380. weight: math.unit(44444444, "lb"),
  8381. name: "Front",
  8382. image: {
  8383. source: "./media/characters/major-colonel/front.svg"
  8384. }
  8385. },
  8386. back: {
  8387. height: math.unit(400, "feet"),
  8388. weight: math.unit(44444444, "lb"),
  8389. name: "Back",
  8390. image: {
  8391. source: "./media/characters/major-colonel/back.svg"
  8392. }
  8393. },
  8394. },
  8395. [
  8396. {
  8397. name: "Macro",
  8398. height: math.unit(400, "feet"),
  8399. default: true
  8400. },
  8401. ]
  8402. ))
  8403. characterMakers.push(() => makeCharacter(
  8404. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8405. {
  8406. catFront: {
  8407. height: math.unit(6, "feet"),
  8408. weight: math.unit(120, "lb"),
  8409. name: "Front (Cat Side)",
  8410. image: {
  8411. source: "./media/characters/axel-lycan/cat-front.svg",
  8412. extra: 430 / 402,
  8413. bottom: 43 / 472.35
  8414. }
  8415. },
  8416. catBack: {
  8417. height: math.unit(6, "feet"),
  8418. weight: math.unit(120, "lb"),
  8419. name: "Back (Cat Side)",
  8420. image: {
  8421. source: "./media/characters/axel-lycan/cat-back.svg",
  8422. extra: 447 / 419,
  8423. bottom: 23.3 / 469
  8424. }
  8425. },
  8426. wolfFront: {
  8427. height: math.unit(6, "feet"),
  8428. weight: math.unit(120, "lb"),
  8429. name: "Front (Wolf Side)",
  8430. image: {
  8431. source: "./media/characters/axel-lycan/wolf-front.svg",
  8432. extra: 485 / 456,
  8433. bottom: 19 / 504
  8434. }
  8435. },
  8436. wolfBack: {
  8437. height: math.unit(6, "feet"),
  8438. weight: math.unit(120, "lb"),
  8439. name: "Back (Wolf Side)",
  8440. image: {
  8441. source: "./media/characters/axel-lycan/wolf-back.svg",
  8442. extra: 475 / 438,
  8443. bottom: 39.2 / 514
  8444. }
  8445. },
  8446. },
  8447. [
  8448. {
  8449. name: "Macro",
  8450. height: math.unit(1, "km"),
  8451. default: true
  8452. },
  8453. ]
  8454. ))
  8455. characterMakers.push(() => makeCharacter(
  8456. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8457. {
  8458. front: {
  8459. height: math.unit(5 + 9 / 12, "feet"),
  8460. weight: math.unit(175, "lb"),
  8461. name: "Front",
  8462. image: {
  8463. source: "./media/characters/vanrel-hyena/front.svg",
  8464. extra: 1086 / 1010,
  8465. bottom: 0.04
  8466. }
  8467. },
  8468. },
  8469. [
  8470. {
  8471. name: "Normal",
  8472. height: math.unit(5 + 9 / 12, "feet"),
  8473. default: true
  8474. },
  8475. ]
  8476. ))
  8477. characterMakers.push(() => makeCharacter(
  8478. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8479. {
  8480. front: {
  8481. height: math.unit(6, "feet"),
  8482. weight: math.unit(103, "lb"),
  8483. name: "Front",
  8484. image: {
  8485. source: "./media/characters/abbott-absol/front.svg",
  8486. extra: 2010 / 1842
  8487. }
  8488. },
  8489. },
  8490. [
  8491. {
  8492. name: "Megamicro",
  8493. height: math.unit(0.1, "mm")
  8494. },
  8495. {
  8496. name: "Micro",
  8497. height: math.unit(1, "inch")
  8498. },
  8499. {
  8500. name: "Normal",
  8501. height: math.unit(6, "feet"),
  8502. default: true
  8503. },
  8504. ]
  8505. ))
  8506. characterMakers.push(() => makeCharacter(
  8507. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8508. {
  8509. front: {
  8510. height: math.unit(6, "feet"),
  8511. weight: math.unit(264, "lb"),
  8512. name: "Front",
  8513. image: {
  8514. source: "./media/characters/hector/front.svg",
  8515. extra: 2280 / 2130,
  8516. bottom: 0.07
  8517. }
  8518. },
  8519. },
  8520. [
  8521. {
  8522. name: "Normal",
  8523. height: math.unit(12.25, "foot"),
  8524. default: true
  8525. },
  8526. {
  8527. name: "Macro",
  8528. height: math.unit(160, "feet")
  8529. },
  8530. ]
  8531. ))
  8532. characterMakers.push(() => makeCharacter(
  8533. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8534. {
  8535. front: {
  8536. height: math.unit(6, "feet"),
  8537. weight: math.unit(150, "lb"),
  8538. name: "Front",
  8539. image: {
  8540. source: "./media/characters/sal/front.svg",
  8541. extra: 1846 / 1699,
  8542. bottom: 0.04
  8543. }
  8544. },
  8545. },
  8546. [
  8547. {
  8548. name: "Megamacro",
  8549. height: math.unit(10, "miles"),
  8550. default: true
  8551. },
  8552. ]
  8553. ))
  8554. characterMakers.push(() => makeCharacter(
  8555. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8556. {
  8557. front: {
  8558. height: math.unit(3, "meters"),
  8559. weight: math.unit(450, "kg"),
  8560. name: "front",
  8561. image: {
  8562. source: "./media/characters/ranger/front.svg",
  8563. extra: 2401 / 2243,
  8564. bottom: 0.05
  8565. }
  8566. },
  8567. },
  8568. [
  8569. {
  8570. name: "Normal",
  8571. height: math.unit(3, "meters"),
  8572. default: true
  8573. },
  8574. ]
  8575. ))
  8576. characterMakers.push(() => makeCharacter(
  8577. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8578. {
  8579. front: {
  8580. height: math.unit(14, "feet"),
  8581. weight: math.unit(800, "kg"),
  8582. name: "Front",
  8583. image: {
  8584. source: "./media/characters/theresa/front.svg",
  8585. extra: 3575 / 3346,
  8586. bottom: 0.03
  8587. }
  8588. },
  8589. },
  8590. [
  8591. {
  8592. name: "Normal",
  8593. height: math.unit(14, "feet"),
  8594. default: true
  8595. },
  8596. ]
  8597. ))
  8598. characterMakers.push(() => makeCharacter(
  8599. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8600. {
  8601. front: {
  8602. height: math.unit(6, "feet"),
  8603. weight: math.unit(3, "kg"),
  8604. name: "Front",
  8605. image: {
  8606. source: "./media/characters/ine/front.svg",
  8607. extra: 678 / 539,
  8608. bottom: 0.023
  8609. }
  8610. },
  8611. },
  8612. [
  8613. {
  8614. name: "Normal",
  8615. height: math.unit(2.265, "feet"),
  8616. default: true
  8617. },
  8618. ]
  8619. ))
  8620. characterMakers.push(() => makeCharacter(
  8621. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8622. {
  8623. front: {
  8624. height: math.unit(5, "feet"),
  8625. weight: math.unit(30, "kg"),
  8626. name: "Front",
  8627. image: {
  8628. source: "./media/characters/vial/front.svg",
  8629. extra: 1365 / 1277,
  8630. bottom: 0.04
  8631. }
  8632. },
  8633. },
  8634. [
  8635. {
  8636. name: "Normal",
  8637. height: math.unit(5, "feet"),
  8638. default: true
  8639. },
  8640. ]
  8641. ))
  8642. characterMakers.push(() => makeCharacter(
  8643. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8644. {
  8645. side: {
  8646. height: math.unit(3.4, "meters"),
  8647. weight: math.unit(1000, "lb"),
  8648. name: "Side",
  8649. image: {
  8650. source: "./media/characters/rovoska/side.svg",
  8651. extra: 4403 / 1515
  8652. }
  8653. },
  8654. },
  8655. [
  8656. {
  8657. name: "Normal",
  8658. height: math.unit(3.4, "meters"),
  8659. default: true
  8660. },
  8661. ]
  8662. ))
  8663. characterMakers.push(() => makeCharacter(
  8664. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8665. {
  8666. front: {
  8667. height: math.unit(8, "feet"),
  8668. weight: math.unit(315, "lb"),
  8669. name: "Front",
  8670. image: {
  8671. source: "./media/characters/gunner-rotthbauer/front.svg"
  8672. }
  8673. },
  8674. back: {
  8675. height: math.unit(8, "feet"),
  8676. weight: math.unit(315, "lb"),
  8677. name: "Back",
  8678. image: {
  8679. source: "./media/characters/gunner-rotthbauer/back.svg"
  8680. }
  8681. },
  8682. },
  8683. [
  8684. {
  8685. name: "Micro",
  8686. height: math.unit(3.5, "inches")
  8687. },
  8688. {
  8689. name: "Normal",
  8690. height: math.unit(8, "feet"),
  8691. default: true
  8692. },
  8693. {
  8694. name: "Macro",
  8695. height: math.unit(250, "feet")
  8696. },
  8697. {
  8698. name: "Megamacro",
  8699. height: math.unit(1, "AU")
  8700. },
  8701. ]
  8702. ))
  8703. characterMakers.push(() => makeCharacter(
  8704. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8705. {
  8706. front: {
  8707. height: math.unit(5 + 5 / 12, "feet"),
  8708. weight: math.unit(140, "lb"),
  8709. name: "Front",
  8710. image: {
  8711. source: "./media/characters/allatia/front.svg",
  8712. extra: 1227 / 1180,
  8713. bottom: 0.027
  8714. }
  8715. },
  8716. },
  8717. [
  8718. {
  8719. name: "Normal",
  8720. height: math.unit(5 + 5 / 12, "feet")
  8721. },
  8722. {
  8723. name: "Macro",
  8724. height: math.unit(250, "feet"),
  8725. default: true
  8726. },
  8727. {
  8728. name: "Megamacro",
  8729. height: math.unit(8, "miles")
  8730. }
  8731. ]
  8732. ))
  8733. characterMakers.push(() => makeCharacter(
  8734. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  8735. {
  8736. front: {
  8737. height: math.unit(6, "feet"),
  8738. weight: math.unit(120, "lb"),
  8739. name: "Front",
  8740. image: {
  8741. source: "./media/characters/tene/front.svg",
  8742. extra: 1728 / 1578,
  8743. bottom: 0.022
  8744. }
  8745. },
  8746. stomping: {
  8747. height: math.unit(2.025, "meters"),
  8748. weight: math.unit(120, "lb"),
  8749. name: "Stomping",
  8750. image: {
  8751. source: "./media/characters/tene/stomping.svg",
  8752. extra: 938 / 873,
  8753. bottom: 0.01
  8754. }
  8755. },
  8756. sitting: {
  8757. height: math.unit(1, "meter"),
  8758. weight: math.unit(120, "lb"),
  8759. name: "Sitting",
  8760. image: {
  8761. source: "./media/characters/tene/sitting.svg",
  8762. extra: 437 / 415,
  8763. bottom: 0.1
  8764. }
  8765. },
  8766. feral: {
  8767. height: math.unit(3.9, "feet"),
  8768. weight: math.unit(250, "lb"),
  8769. name: "Feral",
  8770. image: {
  8771. source: "./media/characters/tene/feral.svg",
  8772. extra: 717 / 458,
  8773. bottom: 0.179
  8774. }
  8775. },
  8776. },
  8777. [
  8778. {
  8779. name: "Normal",
  8780. height: math.unit(6, "feet")
  8781. },
  8782. {
  8783. name: "Macro",
  8784. height: math.unit(300, "feet"),
  8785. default: true
  8786. },
  8787. {
  8788. name: "Megamacro",
  8789. height: math.unit(5, "miles")
  8790. },
  8791. ]
  8792. ))
  8793. characterMakers.push(() => makeCharacter(
  8794. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  8795. {
  8796. side: {
  8797. height: math.unit(6, "feet"),
  8798. name: "Side",
  8799. image: {
  8800. source: "./media/characters/evander/side.svg",
  8801. extra: 877 / 477
  8802. }
  8803. },
  8804. },
  8805. [
  8806. {
  8807. name: "Normal",
  8808. height: math.unit(0.83, "meters"),
  8809. default: true
  8810. },
  8811. ]
  8812. ))
  8813. characterMakers.push(() => makeCharacter(
  8814. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  8815. {
  8816. front: {
  8817. height: math.unit(12, "feet"),
  8818. weight: math.unit(1000, "lb"),
  8819. name: "Front",
  8820. image: {
  8821. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  8822. extra: 1762 / 1611
  8823. }
  8824. },
  8825. back: {
  8826. height: math.unit(12, "feet"),
  8827. weight: math.unit(1000, "lb"),
  8828. name: "Back",
  8829. image: {
  8830. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  8831. extra: 1762 / 1611
  8832. }
  8833. },
  8834. },
  8835. [
  8836. {
  8837. name: "Normal",
  8838. height: math.unit(12, "feet"),
  8839. default: true
  8840. },
  8841. {
  8842. name: "Kaiju",
  8843. height: math.unit(150, "feet")
  8844. },
  8845. ]
  8846. ))
  8847. characterMakers.push(() => makeCharacter(
  8848. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  8849. {
  8850. front: {
  8851. height: math.unit(6, "feet"),
  8852. weight: math.unit(150, "lb"),
  8853. name: "Front",
  8854. image: {
  8855. source: "./media/characters/zero-alurus/front.svg"
  8856. }
  8857. },
  8858. back: {
  8859. height: math.unit(6, "feet"),
  8860. weight: math.unit(150, "lb"),
  8861. name: "Back",
  8862. image: {
  8863. source: "./media/characters/zero-alurus/back.svg"
  8864. }
  8865. },
  8866. },
  8867. [
  8868. {
  8869. name: "Normal",
  8870. height: math.unit(5 + 10 / 12, "feet")
  8871. },
  8872. {
  8873. name: "Macro",
  8874. height: math.unit(60, "feet"),
  8875. default: true
  8876. },
  8877. {
  8878. name: "Macro+",
  8879. height: math.unit(450, "feet")
  8880. },
  8881. ]
  8882. ))
  8883. characterMakers.push(() => makeCharacter(
  8884. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  8885. {
  8886. front: {
  8887. height: math.unit(6, "feet"),
  8888. weight: math.unit(200, "lb"),
  8889. name: "Front",
  8890. image: {
  8891. source: "./media/characters/mega-shi/front.svg",
  8892. extra: 1279 / 1250,
  8893. bottom: 0.02
  8894. }
  8895. },
  8896. back: {
  8897. height: math.unit(6, "feet"),
  8898. weight: math.unit(200, "lb"),
  8899. name: "Back",
  8900. image: {
  8901. source: "./media/characters/mega-shi/back.svg",
  8902. extra: 1279 / 1250,
  8903. bottom: 0.02
  8904. }
  8905. },
  8906. },
  8907. [
  8908. {
  8909. name: "Micro",
  8910. height: math.unit(16 + 6 / 12, "feet")
  8911. },
  8912. {
  8913. name: "Third Dimension",
  8914. height: math.unit(40, "meters")
  8915. },
  8916. {
  8917. name: "Normal",
  8918. height: math.unit(660, "feet"),
  8919. default: true
  8920. },
  8921. {
  8922. name: "Megamacro",
  8923. height: math.unit(10, "miles")
  8924. },
  8925. {
  8926. name: "Planetary Launch",
  8927. height: math.unit(500, "miles")
  8928. },
  8929. {
  8930. name: "Interstellar",
  8931. height: math.unit(1e9, "miles")
  8932. },
  8933. {
  8934. name: "Leaving the Universe",
  8935. height: math.unit(1, "gigaparsec")
  8936. },
  8937. {
  8938. name: "Travelling Universes",
  8939. height: math.unit(30e15, "parsecs")
  8940. },
  8941. ]
  8942. ))
  8943. characterMakers.push(() => makeCharacter(
  8944. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  8945. {
  8946. front: {
  8947. height: math.unit(6, "feet"),
  8948. weight: math.unit(150, "lb"),
  8949. name: "Front",
  8950. image: {
  8951. source: "./media/characters/odyssey/front.svg",
  8952. extra: 1782 / 1582,
  8953. bottom: 0.01
  8954. }
  8955. },
  8956. side: {
  8957. height: math.unit(5.7, "feet"),
  8958. weight: math.unit(140, "lb"),
  8959. name: "Side",
  8960. image: {
  8961. source: "./media/characters/odyssey/side.svg",
  8962. extra: 6462 / 5700
  8963. }
  8964. },
  8965. },
  8966. [
  8967. {
  8968. name: "Normal",
  8969. height: math.unit(5 + 4 / 12, "feet")
  8970. },
  8971. {
  8972. name: "Macro",
  8973. height: math.unit(1, "km")
  8974. },
  8975. {
  8976. name: "Megamacro",
  8977. height: math.unit(3000, "km")
  8978. },
  8979. {
  8980. name: "Gigamacro",
  8981. height: math.unit(1, "AU"),
  8982. default: true
  8983. },
  8984. {
  8985. name: "Omniversal",
  8986. height: math.unit(100e14, "lightyears")
  8987. },
  8988. ]
  8989. ))
  8990. characterMakers.push(() => makeCharacter(
  8991. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  8992. {
  8993. front: {
  8994. height: math.unit(6, "feet"),
  8995. weight: math.unit(300, "lb"),
  8996. name: "Front",
  8997. image: {
  8998. source: "./media/characters/mekuto/front.svg",
  8999. extra: 921 / 832,
  9000. bottom: 0.03
  9001. }
  9002. },
  9003. hand: {
  9004. height: math.unit(6 / 10.24, "feet"),
  9005. name: "Hand",
  9006. image: {
  9007. source: "./media/characters/mekuto/hand.svg"
  9008. }
  9009. },
  9010. foot: {
  9011. height: math.unit(6 / 5.05, "feet"),
  9012. name: "Foot",
  9013. image: {
  9014. source: "./media/characters/mekuto/foot.svg"
  9015. }
  9016. },
  9017. },
  9018. [
  9019. {
  9020. name: "Minimicro",
  9021. height: math.unit(0.2, "inches")
  9022. },
  9023. {
  9024. name: "Micro",
  9025. height: math.unit(1.5, "inches")
  9026. },
  9027. {
  9028. name: "Normal",
  9029. height: math.unit(5 + 11 / 12, "feet"),
  9030. default: true
  9031. },
  9032. {
  9033. name: "Minimacro",
  9034. height: math.unit(17 + 9 / 12, "feet")
  9035. },
  9036. {
  9037. name: "Macro",
  9038. height: math.unit(177.5, "feet")
  9039. },
  9040. {
  9041. name: "Megamacro",
  9042. height: math.unit(152, "miles")
  9043. },
  9044. ]
  9045. ))
  9046. characterMakers.push(() => makeCharacter(
  9047. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9048. {
  9049. front: {
  9050. height: math.unit(6.5, "inches"),
  9051. weight: math.unit(13, "oz"),
  9052. name: "Front",
  9053. image: {
  9054. source: "./media/characters/dafydd-tomos/front.svg",
  9055. extra: 2990 / 2603,
  9056. bottom: 0.03
  9057. }
  9058. },
  9059. },
  9060. [
  9061. {
  9062. name: "Micro",
  9063. height: math.unit(6.5, "inches"),
  9064. default: true
  9065. },
  9066. ]
  9067. ))
  9068. characterMakers.push(() => makeCharacter(
  9069. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9070. {
  9071. front: {
  9072. height: math.unit(6, "feet"),
  9073. weight: math.unit(150, "lb"),
  9074. name: "Front",
  9075. image: {
  9076. source: "./media/characters/splinter/front.svg",
  9077. extra: 2990 / 2882,
  9078. bottom: 0.04
  9079. }
  9080. },
  9081. back: {
  9082. height: math.unit(6, "feet"),
  9083. weight: math.unit(150, "lb"),
  9084. name: "Back",
  9085. image: {
  9086. source: "./media/characters/splinter/back.svg",
  9087. extra: 2990 / 2882,
  9088. bottom: 0.04
  9089. }
  9090. },
  9091. },
  9092. [
  9093. {
  9094. name: "Normal",
  9095. height: math.unit(6, "feet")
  9096. },
  9097. {
  9098. name: "Macro",
  9099. height: math.unit(230, "meters"),
  9100. default: true
  9101. },
  9102. ]
  9103. ))
  9104. characterMakers.push(() => makeCharacter(
  9105. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9106. {
  9107. front: {
  9108. height: math.unit(4 + 10 / 12, "feet"),
  9109. weight: math.unit(480, "lb"),
  9110. name: "Front",
  9111. image: {
  9112. source: "./media/characters/snow-gabumon/front.svg",
  9113. extra: 1140 / 963,
  9114. bottom: 0.058
  9115. }
  9116. },
  9117. back: {
  9118. height: math.unit(4 + 10 / 12, "feet"),
  9119. weight: math.unit(480, "lb"),
  9120. name: "Back",
  9121. image: {
  9122. source: "./media/characters/snow-gabumon/back.svg",
  9123. extra: 1115 / 962,
  9124. bottom: 0.041
  9125. }
  9126. },
  9127. frontUndresed: {
  9128. height: math.unit(4 + 10 / 12, "feet"),
  9129. weight: math.unit(480, "lb"),
  9130. name: "Front (Undressed)",
  9131. image: {
  9132. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9133. extra: 1061 / 960,
  9134. bottom: 0.045
  9135. }
  9136. },
  9137. },
  9138. [
  9139. {
  9140. name: "Micro",
  9141. height: math.unit(1, "inch")
  9142. },
  9143. {
  9144. name: "Normal",
  9145. height: math.unit(4 + 10 / 12, "feet"),
  9146. default: true
  9147. },
  9148. {
  9149. name: "Macro",
  9150. height: math.unit(200, "feet")
  9151. },
  9152. {
  9153. name: "Megamacro",
  9154. height: math.unit(120, "miles")
  9155. },
  9156. {
  9157. name: "Gigamacro",
  9158. height: math.unit(9800, "miles")
  9159. },
  9160. ]
  9161. ))
  9162. characterMakers.push(() => makeCharacter(
  9163. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9164. {
  9165. front: {
  9166. height: math.unit(1.7, "meters"),
  9167. weight: math.unit(140, "lb"),
  9168. name: "Front",
  9169. image: {
  9170. source: "./media/characters/moody/front.svg",
  9171. extra: 3226 / 3007,
  9172. bottom: 0.087
  9173. }
  9174. },
  9175. },
  9176. [
  9177. {
  9178. name: "Micro",
  9179. height: math.unit(1, "mm")
  9180. },
  9181. {
  9182. name: "Normal",
  9183. height: math.unit(1.7, "meters"),
  9184. default: true
  9185. },
  9186. {
  9187. name: "Macro",
  9188. height: math.unit(80, "meters")
  9189. },
  9190. {
  9191. name: "Macro+",
  9192. height: math.unit(500, "meters")
  9193. },
  9194. ]
  9195. ))
  9196. characterMakers.push(() => makeCharacter(
  9197. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9198. {
  9199. front: {
  9200. height: math.unit(6, "feet"),
  9201. weight: math.unit(150, "lb"),
  9202. name: "Front",
  9203. image: {
  9204. source: "./media/characters/zyas/front.svg",
  9205. extra: 1180 / 1120,
  9206. bottom: 0.045
  9207. }
  9208. },
  9209. },
  9210. [
  9211. {
  9212. name: "Normal",
  9213. height: math.unit(10, "feet"),
  9214. default: true
  9215. },
  9216. {
  9217. name: "Macro",
  9218. height: math.unit(500, "feet")
  9219. },
  9220. {
  9221. name: "Megamacro",
  9222. height: math.unit(5, "miles")
  9223. },
  9224. {
  9225. name: "Teramacro",
  9226. height: math.unit(150000, "miles")
  9227. },
  9228. ]
  9229. ))
  9230. characterMakers.push(() => makeCharacter(
  9231. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9232. {
  9233. front: {
  9234. height: math.unit(6, "feet"),
  9235. weight: math.unit(150, "lb"),
  9236. name: "Front",
  9237. image: {
  9238. source: "./media/characters/cuon/front.svg",
  9239. extra: 1390 / 1320,
  9240. bottom: 0.008
  9241. }
  9242. },
  9243. },
  9244. [
  9245. {
  9246. name: "Micro",
  9247. height: math.unit(3, "inches")
  9248. },
  9249. {
  9250. name: "Normal",
  9251. height: math.unit(18 + 9 / 12, "feet"),
  9252. default: true
  9253. },
  9254. {
  9255. name: "Macro",
  9256. height: math.unit(360, "feet")
  9257. },
  9258. {
  9259. name: "Megamacro",
  9260. height: math.unit(360, "miles")
  9261. },
  9262. ]
  9263. ))
  9264. characterMakers.push(() => makeCharacter(
  9265. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9266. {
  9267. front: {
  9268. height: math.unit(2.4, "meters"),
  9269. weight: math.unit(70, "kg"),
  9270. name: "Front",
  9271. image: {
  9272. source: "./media/characters/nyanuxk/front.svg",
  9273. extra: 1172 / 1084,
  9274. bottom: 0.065
  9275. }
  9276. },
  9277. side: {
  9278. height: math.unit(2.4, "meters"),
  9279. weight: math.unit(70, "kg"),
  9280. name: "Side",
  9281. image: {
  9282. source: "./media/characters/nyanuxk/side.svg",
  9283. extra: 1190 / 1132,
  9284. bottom: 0.007
  9285. }
  9286. },
  9287. back: {
  9288. height: math.unit(2.4, "meters"),
  9289. weight: math.unit(70, "kg"),
  9290. name: "Back",
  9291. image: {
  9292. source: "./media/characters/nyanuxk/back.svg",
  9293. extra: 1200 / 1141,
  9294. bottom: 0.015
  9295. }
  9296. },
  9297. foot: {
  9298. height: math.unit(0.52, "meters"),
  9299. name: "Foot",
  9300. image: {
  9301. source: "./media/characters/nyanuxk/foot.svg"
  9302. }
  9303. },
  9304. },
  9305. [
  9306. {
  9307. name: "Micro",
  9308. height: math.unit(2, "cm")
  9309. },
  9310. {
  9311. name: "Normal",
  9312. height: math.unit(2.4, "meters"),
  9313. default: true
  9314. },
  9315. {
  9316. name: "Smaller Macro",
  9317. height: math.unit(120, "meters")
  9318. },
  9319. {
  9320. name: "Bigger Macro",
  9321. height: math.unit(1.2, "km")
  9322. },
  9323. {
  9324. name: "Megamacro",
  9325. height: math.unit(15, "kilometers")
  9326. },
  9327. {
  9328. name: "Gigamacro",
  9329. height: math.unit(2000, "km")
  9330. },
  9331. {
  9332. name: "Teramacro",
  9333. height: math.unit(500000, "km")
  9334. },
  9335. ]
  9336. ))
  9337. characterMakers.push(() => makeCharacter(
  9338. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9339. {
  9340. side: {
  9341. height: math.unit(6, "feet"),
  9342. name: "Side",
  9343. image: {
  9344. source: "./media/characters/ailbhe/side.svg",
  9345. extra: 757 / 464,
  9346. bottom: 0.041
  9347. }
  9348. },
  9349. },
  9350. [
  9351. {
  9352. name: "Normal",
  9353. height: math.unit(1.07, "meters"),
  9354. default: true
  9355. },
  9356. ]
  9357. ))
  9358. characterMakers.push(() => makeCharacter(
  9359. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9360. {
  9361. front: {
  9362. height: math.unit(6, "feet"),
  9363. weight: math.unit(120, "kg"),
  9364. name: "Front",
  9365. image: {
  9366. source: "./media/characters/zevulfius/front.svg",
  9367. extra: 965 / 903
  9368. }
  9369. },
  9370. side: {
  9371. height: math.unit(6, "feet"),
  9372. weight: math.unit(120, "kg"),
  9373. name: "Side",
  9374. image: {
  9375. source: "./media/characters/zevulfius/side.svg",
  9376. extra: 939 / 900
  9377. }
  9378. },
  9379. back: {
  9380. height: math.unit(6, "feet"),
  9381. weight: math.unit(120, "kg"),
  9382. name: "Back",
  9383. image: {
  9384. source: "./media/characters/zevulfius/back.svg",
  9385. extra: 918 / 854,
  9386. bottom: 0.005
  9387. }
  9388. },
  9389. foot: {
  9390. height: math.unit(6 / 3.72, "feet"),
  9391. name: "Foot",
  9392. image: {
  9393. source: "./media/characters/zevulfius/foot.svg"
  9394. }
  9395. },
  9396. },
  9397. [
  9398. {
  9399. name: "Macro",
  9400. height: math.unit(750, "meters")
  9401. },
  9402. {
  9403. name: "Megamacro",
  9404. height: math.unit(20, "km"),
  9405. default: true
  9406. },
  9407. {
  9408. name: "Gigamacro",
  9409. height: math.unit(2000, "km")
  9410. },
  9411. {
  9412. name: "Teramacro",
  9413. height: math.unit(250000, "km")
  9414. },
  9415. ]
  9416. ))
  9417. characterMakers.push(() => makeCharacter(
  9418. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9419. {
  9420. front: {
  9421. height: math.unit(100, "feet"),
  9422. weight: math.unit(350, "kg"),
  9423. name: "Front",
  9424. image: {
  9425. source: "./media/characters/rikes/front.svg",
  9426. extra: 1565 / 1483,
  9427. bottom: 0.017
  9428. }
  9429. },
  9430. },
  9431. [
  9432. {
  9433. name: "Macro",
  9434. height: math.unit(100, "feet"),
  9435. default: true
  9436. },
  9437. ]
  9438. ))
  9439. characterMakers.push(() => makeCharacter(
  9440. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9441. {
  9442. anthro: {
  9443. height: math.unit(8, "feet"),
  9444. weight: math.unit(120, "kg"),
  9445. name: "Anthro",
  9446. image: {
  9447. source: "./media/characters/adam-silver-mane/anthro.svg",
  9448. extra: 5743 / 5339,
  9449. bottom: 0.07
  9450. }
  9451. },
  9452. taur: {
  9453. height: math.unit(16, "feet"),
  9454. weight: math.unit(1500, "kg"),
  9455. name: "Taur",
  9456. image: {
  9457. source: "./media/characters/adam-silver-mane/taur.svg",
  9458. extra: 1713 / 1571,
  9459. bottom: 0.01
  9460. }
  9461. },
  9462. },
  9463. [
  9464. {
  9465. name: "Normal",
  9466. height: math.unit(8, "feet")
  9467. },
  9468. {
  9469. name: "Minimacro",
  9470. height: math.unit(80, "feet")
  9471. },
  9472. {
  9473. name: "Macro",
  9474. height: math.unit(800, "feet"),
  9475. default: true
  9476. },
  9477. {
  9478. name: "Megamacro",
  9479. height: math.unit(8000, "feet")
  9480. },
  9481. {
  9482. name: "Gigamacro",
  9483. height: math.unit(800, "miles")
  9484. },
  9485. {
  9486. name: "Teramacro",
  9487. height: math.unit(80000, "miles")
  9488. },
  9489. {
  9490. name: "Celestial",
  9491. height: math.unit(8e6, "miles")
  9492. },
  9493. {
  9494. name: "Star Dragon",
  9495. height: math.unit(800000, "parsecs")
  9496. },
  9497. {
  9498. name: "Godly",
  9499. height: math.unit(800, "teraparsecs")
  9500. },
  9501. ]
  9502. ))
  9503. characterMakers.push(() => makeCharacter(
  9504. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9505. {
  9506. front: {
  9507. height: math.unit(6, "feet"),
  9508. weight: math.unit(150, "lb"),
  9509. name: "Front",
  9510. image: {
  9511. source: "./media/characters/ky'owin/front.svg",
  9512. extra: 3888 / 3068,
  9513. bottom: 0.015
  9514. }
  9515. },
  9516. },
  9517. [
  9518. {
  9519. name: "Normal",
  9520. height: math.unit(6 + 8 / 12, "feet")
  9521. },
  9522. {
  9523. name: "Large",
  9524. height: math.unit(68, "feet")
  9525. },
  9526. {
  9527. name: "Macro",
  9528. height: math.unit(132, "feet")
  9529. },
  9530. {
  9531. name: "Macro+",
  9532. height: math.unit(340, "feet")
  9533. },
  9534. {
  9535. name: "Macro++",
  9536. height: math.unit(680, "feet"),
  9537. default: true
  9538. },
  9539. {
  9540. name: "Megamacro",
  9541. height: math.unit(1, "mile")
  9542. },
  9543. {
  9544. name: "Megamacro+",
  9545. height: math.unit(10, "miles")
  9546. },
  9547. ]
  9548. ))
  9549. characterMakers.push(() => makeCharacter(
  9550. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9551. {
  9552. front: {
  9553. height: math.unit(4, "feet"),
  9554. weight: math.unit(50, "lb"),
  9555. name: "Front",
  9556. image: {
  9557. source: "./media/characters/mal/front.svg",
  9558. extra: 785 / 724,
  9559. bottom: 0.07
  9560. }
  9561. },
  9562. },
  9563. [
  9564. {
  9565. name: "Micro",
  9566. height: math.unit(4, "inches")
  9567. },
  9568. {
  9569. name: "Normal",
  9570. height: math.unit(4, "feet"),
  9571. default: true
  9572. },
  9573. {
  9574. name: "Macro",
  9575. height: math.unit(200, "feet")
  9576. },
  9577. ]
  9578. ))
  9579. characterMakers.push(() => makeCharacter(
  9580. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9581. {
  9582. front: {
  9583. height: math.unit(6, "feet"),
  9584. weight: math.unit(150, "lb"),
  9585. name: "Front",
  9586. image: {
  9587. source: "./media/characters/jordan-deware/front.svg",
  9588. extra: 1191 / 1012
  9589. }
  9590. },
  9591. },
  9592. [
  9593. {
  9594. name: "Nano",
  9595. height: math.unit(0.01, "mm")
  9596. },
  9597. {
  9598. name: "Minimicro",
  9599. height: math.unit(1, "mm")
  9600. },
  9601. {
  9602. name: "Micro",
  9603. height: math.unit(0.5, "inches")
  9604. },
  9605. {
  9606. name: "Normal",
  9607. height: math.unit(4, "feet"),
  9608. default: true
  9609. },
  9610. {
  9611. name: "Minimacro",
  9612. height: math.unit(40, "meters")
  9613. },
  9614. {
  9615. name: "Small Macro",
  9616. height: math.unit(400, "meters")
  9617. },
  9618. {
  9619. name: "Macro",
  9620. height: math.unit(4, "miles")
  9621. },
  9622. {
  9623. name: "Megamacro",
  9624. height: math.unit(40, "miles")
  9625. },
  9626. {
  9627. name: "Megamacro+",
  9628. height: math.unit(400, "miles")
  9629. },
  9630. {
  9631. name: "Gigamacro",
  9632. height: math.unit(400000, "miles")
  9633. },
  9634. ]
  9635. ))
  9636. characterMakers.push(() => makeCharacter(
  9637. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9638. {
  9639. side: {
  9640. height: math.unit(6, "feet"),
  9641. weight: math.unit(150, "lb"),
  9642. name: "Side",
  9643. image: {
  9644. source: "./media/characters/kimiko/side.svg",
  9645. extra: 600 / 358
  9646. }
  9647. },
  9648. },
  9649. [
  9650. {
  9651. name: "Normal",
  9652. height: math.unit(15, "feet"),
  9653. default: true
  9654. },
  9655. {
  9656. name: "Macro",
  9657. height: math.unit(220, "feet")
  9658. },
  9659. {
  9660. name: "Macro+",
  9661. height: math.unit(1450, "feet")
  9662. },
  9663. {
  9664. name: "Megamacro",
  9665. height: math.unit(11500, "feet")
  9666. },
  9667. {
  9668. name: "Gigamacro",
  9669. height: math.unit(9500, "miles")
  9670. },
  9671. {
  9672. name: "Teramacro",
  9673. height: math.unit(2208005005, "miles")
  9674. },
  9675. {
  9676. name: "Examacro",
  9677. height: math.unit(2750, "parsecs")
  9678. },
  9679. {
  9680. name: "Zettamacro",
  9681. height: math.unit(101500, "parsecs")
  9682. },
  9683. ]
  9684. ))
  9685. characterMakers.push(() => makeCharacter(
  9686. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9687. {
  9688. front: {
  9689. height: math.unit(6, "feet"),
  9690. weight: math.unit(70, "kg"),
  9691. name: "Front",
  9692. image: {
  9693. source: "./media/characters/andrew-sleepy/front.svg"
  9694. }
  9695. },
  9696. side: {
  9697. height: math.unit(6, "feet"),
  9698. weight: math.unit(70, "kg"),
  9699. name: "Side",
  9700. image: {
  9701. source: "./media/characters/andrew-sleepy/side.svg"
  9702. }
  9703. },
  9704. },
  9705. [
  9706. {
  9707. name: "Micro",
  9708. height: math.unit(1, "mm"),
  9709. default: true
  9710. },
  9711. ]
  9712. ))
  9713. characterMakers.push(() => makeCharacter(
  9714. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  9715. {
  9716. front: {
  9717. height: math.unit(6, "feet"),
  9718. weight: math.unit(150, "lb"),
  9719. name: "Front",
  9720. image: {
  9721. source: "./media/characters/judio/front.svg",
  9722. extra: 1258 / 1110
  9723. }
  9724. },
  9725. },
  9726. [
  9727. {
  9728. name: "Normal",
  9729. height: math.unit(5 + 6 / 12, "feet")
  9730. },
  9731. {
  9732. name: "Macro",
  9733. height: math.unit(1000, "feet"),
  9734. default: true
  9735. },
  9736. {
  9737. name: "Megamacro",
  9738. height: math.unit(10, "miles")
  9739. },
  9740. ]
  9741. ))
  9742. characterMakers.push(() => makeCharacter(
  9743. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  9744. {
  9745. front: {
  9746. height: math.unit(6, "feet"),
  9747. weight: math.unit(68, "kg"),
  9748. name: "Front",
  9749. image: {
  9750. source: "./media/characters/nomaxice/front.svg",
  9751. extra: 1498 / 1073,
  9752. bottom: 0.075
  9753. }
  9754. },
  9755. foot: {
  9756. height: math.unit(1.1, "feet"),
  9757. name: "Foot",
  9758. image: {
  9759. source: "./media/characters/nomaxice/foot.svg"
  9760. }
  9761. },
  9762. },
  9763. [
  9764. {
  9765. name: "Micro",
  9766. height: math.unit(8, "cm")
  9767. },
  9768. {
  9769. name: "Norm",
  9770. height: math.unit(1.82, "m")
  9771. },
  9772. {
  9773. name: "Norm+",
  9774. height: math.unit(8.8, "feet")
  9775. },
  9776. {
  9777. name: "Big",
  9778. height: math.unit(8, "meters"),
  9779. default: true
  9780. },
  9781. {
  9782. name: "Macro",
  9783. height: math.unit(18, "meters")
  9784. },
  9785. {
  9786. name: "Macro+",
  9787. height: math.unit(88, "meters")
  9788. },
  9789. ]
  9790. ))
  9791. characterMakers.push(() => makeCharacter(
  9792. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  9793. {
  9794. front: {
  9795. height: math.unit(12, "feet"),
  9796. weight: math.unit(1.5, "tons"),
  9797. name: "Front",
  9798. image: {
  9799. source: "./media/characters/dydros/front.svg",
  9800. extra: 863 / 800,
  9801. bottom: 0.015
  9802. }
  9803. },
  9804. back: {
  9805. height: math.unit(12, "feet"),
  9806. weight: math.unit(1.5, "tons"),
  9807. name: "Back",
  9808. image: {
  9809. source: "./media/characters/dydros/back.svg",
  9810. extra: 900 / 843,
  9811. bottom: 0.005
  9812. }
  9813. },
  9814. },
  9815. [
  9816. {
  9817. name: "Normal",
  9818. height: math.unit(12, "feet"),
  9819. default: true
  9820. },
  9821. ]
  9822. ))
  9823. characterMakers.push(() => makeCharacter(
  9824. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  9825. {
  9826. front: {
  9827. height: math.unit(6, "feet"),
  9828. weight: math.unit(100, "kg"),
  9829. name: "Front",
  9830. image: {
  9831. source: "./media/characters/riggi/front.svg",
  9832. extra: 5787 / 5303
  9833. }
  9834. },
  9835. hyper: {
  9836. height: math.unit(6 * 5 / 3, "feet"),
  9837. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  9838. name: "Hyper",
  9839. image: {
  9840. source: "./media/characters/riggi/hyper.svg",
  9841. extra: 3595 / 3485
  9842. }
  9843. },
  9844. },
  9845. [
  9846. {
  9847. name: "Small Macro",
  9848. height: math.unit(50, "feet")
  9849. },
  9850. {
  9851. name: "Default",
  9852. height: math.unit(200, "feet"),
  9853. default: true
  9854. },
  9855. {
  9856. name: "Loom",
  9857. height: math.unit(10000, "feet")
  9858. },
  9859. {
  9860. name: "Cruising Altitude",
  9861. height: math.unit(30000, "feet")
  9862. },
  9863. {
  9864. name: "Megamacro",
  9865. height: math.unit(100, "miles")
  9866. },
  9867. {
  9868. name: "Continent Sized",
  9869. height: math.unit(2800, "miles")
  9870. },
  9871. {
  9872. name: "Earth Sized",
  9873. height: math.unit(8000, "miles")
  9874. },
  9875. ]
  9876. ))
  9877. characterMakers.push(() => makeCharacter(
  9878. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  9879. {
  9880. front: {
  9881. height: math.unit(6, "feet"),
  9882. weight: math.unit(250, "lb"),
  9883. name: "Front",
  9884. image: {
  9885. source: "./media/characters/alexi/front.svg",
  9886. extra: 3483 / 3291,
  9887. bottom: 0.04
  9888. }
  9889. },
  9890. back: {
  9891. height: math.unit(6, "feet"),
  9892. weight: math.unit(250, "lb"),
  9893. name: "Back",
  9894. image: {
  9895. source: "./media/characters/alexi/back.svg",
  9896. extra: 3533 / 3356,
  9897. bottom: 0.021
  9898. }
  9899. },
  9900. frontTransforming: {
  9901. height: math.unit(8.58, "feet"),
  9902. weight: math.unit(1300, "lb"),
  9903. name: "Transforming",
  9904. image: {
  9905. source: "./media/characters/alexi/front-transforming.svg",
  9906. extra: 437 / 409,
  9907. bottom: 19 / 458.66
  9908. }
  9909. },
  9910. frontTransformed: {
  9911. height: math.unit(12.5, "feet"),
  9912. weight: math.unit(4000, "lb"),
  9913. name: "Transformed",
  9914. image: {
  9915. source: "./media/characters/alexi/front-transformed.svg",
  9916. extra: 639 / 614,
  9917. bottom: 30.55 / 671
  9918. }
  9919. },
  9920. },
  9921. [
  9922. {
  9923. name: "Normal",
  9924. height: math.unit(3, "meters"),
  9925. default: true
  9926. },
  9927. {
  9928. name: "Minimacro",
  9929. height: math.unit(30, "meters")
  9930. },
  9931. {
  9932. name: "Macro",
  9933. height: math.unit(500, "meters")
  9934. },
  9935. {
  9936. name: "Megamacro",
  9937. height: math.unit(9000, "km")
  9938. },
  9939. {
  9940. name: "Teramacro",
  9941. height: math.unit(384000, "km")
  9942. },
  9943. ]
  9944. ))
  9945. characterMakers.push(() => makeCharacter(
  9946. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  9947. {
  9948. front: {
  9949. height: math.unit(6, "feet"),
  9950. weight: math.unit(150, "lb"),
  9951. name: "Front",
  9952. image: {
  9953. source: "./media/characters/kayroo/front.svg",
  9954. extra: 1153 / 1038,
  9955. bottom: 0.06
  9956. }
  9957. },
  9958. foot: {
  9959. height: math.unit(6, "feet"),
  9960. weight: math.unit(150, "lb"),
  9961. name: "Foot",
  9962. image: {
  9963. source: "./media/characters/kayroo/foot.svg"
  9964. }
  9965. },
  9966. },
  9967. [
  9968. {
  9969. name: "Normal",
  9970. height: math.unit(8, "feet"),
  9971. default: true
  9972. },
  9973. {
  9974. name: "Minimacro",
  9975. height: math.unit(250, "feet")
  9976. },
  9977. {
  9978. name: "Macro",
  9979. height: math.unit(2800, "feet")
  9980. },
  9981. {
  9982. name: "Megamacro",
  9983. height: math.unit(5200, "feet")
  9984. },
  9985. {
  9986. name: "Gigamacro",
  9987. height: math.unit(27000, "feet")
  9988. },
  9989. {
  9990. name: "Omega",
  9991. height: math.unit(45000, "feet")
  9992. },
  9993. ]
  9994. ))
  9995. characterMakers.push(() => makeCharacter(
  9996. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  9997. {
  9998. front: {
  9999. height: math.unit(18, "feet"),
  10000. weight: math.unit(5800, "lb"),
  10001. name: "Front",
  10002. image: {
  10003. source: "./media/characters/rhys/front.svg",
  10004. extra: 3386 / 3090,
  10005. bottom: 0.07
  10006. }
  10007. },
  10008. },
  10009. [
  10010. {
  10011. name: "Normal",
  10012. height: math.unit(18, "feet"),
  10013. default: true
  10014. },
  10015. {
  10016. name: "Working Size",
  10017. height: math.unit(200, "feet")
  10018. },
  10019. {
  10020. name: "Demolition Size",
  10021. height: math.unit(2000, "feet")
  10022. },
  10023. {
  10024. name: "Maximum Licensed Size",
  10025. height: math.unit(5, "miles")
  10026. },
  10027. {
  10028. name: "Maximum Observed Size",
  10029. height: math.unit(10, "yottameters")
  10030. },
  10031. ]
  10032. ))
  10033. characterMakers.push(() => makeCharacter(
  10034. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10035. {
  10036. front: {
  10037. height: math.unit(6, "feet"),
  10038. weight: math.unit(250, "lb"),
  10039. name: "Front",
  10040. image: {
  10041. source: "./media/characters/toto/front.svg",
  10042. extra: 527 / 479,
  10043. bottom: 0.05
  10044. }
  10045. },
  10046. },
  10047. [
  10048. {
  10049. name: "Micro",
  10050. height: math.unit(3, "feet")
  10051. },
  10052. {
  10053. name: "Normal",
  10054. height: math.unit(10, "feet")
  10055. },
  10056. {
  10057. name: "Macro",
  10058. height: math.unit(150, "feet"),
  10059. default: true
  10060. },
  10061. {
  10062. name: "Megamacro",
  10063. height: math.unit(1200, "feet")
  10064. },
  10065. ]
  10066. ))
  10067. characterMakers.push(() => makeCharacter(
  10068. { name: "King", species: ["lion"], tags: ["anthro"] },
  10069. {
  10070. back: {
  10071. height: math.unit(6, "feet"),
  10072. weight: math.unit(150, "lb"),
  10073. name: "Back",
  10074. image: {
  10075. source: "./media/characters/king/back.svg"
  10076. }
  10077. },
  10078. },
  10079. [
  10080. {
  10081. name: "Micro",
  10082. height: math.unit(2, "inches")
  10083. },
  10084. {
  10085. name: "Normal",
  10086. height: math.unit(8, "feet")
  10087. },
  10088. {
  10089. name: "Macro",
  10090. height: math.unit(200, "feet"),
  10091. default: true
  10092. },
  10093. {
  10094. name: "Megamacro",
  10095. height: math.unit(50, "miles")
  10096. },
  10097. ]
  10098. ))
  10099. characterMakers.push(() => makeCharacter(
  10100. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10101. {
  10102. anthro: {
  10103. height: math.unit(6 + 5 / 12, "feet"),
  10104. weight: math.unit(280, "lb"),
  10105. name: "Anthro",
  10106. image: {
  10107. source: "./media/characters/cordite/anthro.svg",
  10108. extra: 1986 / 1905,
  10109. bottom: 0.025
  10110. }
  10111. },
  10112. feral: {
  10113. height: math.unit(2, "feet"),
  10114. weight: math.unit(90, "lb"),
  10115. name: "Feral",
  10116. image: {
  10117. source: "./media/characters/cordite/feral.svg",
  10118. extra: 1260 / 755,
  10119. bottom: 0.05
  10120. }
  10121. },
  10122. },
  10123. [
  10124. {
  10125. name: "Normal",
  10126. height: math.unit(6 + 5 / 12, "feet"),
  10127. default: true
  10128. },
  10129. ]
  10130. ))
  10131. characterMakers.push(() => makeCharacter(
  10132. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10133. {
  10134. front: {
  10135. height: math.unit(6, "feet"),
  10136. weight: math.unit(150, "lb"),
  10137. name: "Front",
  10138. image: {
  10139. source: "./media/characters/pianostrong/front.svg",
  10140. extra: 6577 / 6254,
  10141. bottom: 0.02
  10142. }
  10143. },
  10144. side: {
  10145. height: math.unit(6, "feet"),
  10146. weight: math.unit(150, "lb"),
  10147. name: "Side",
  10148. image: {
  10149. source: "./media/characters/pianostrong/side.svg",
  10150. extra: 6106 / 5730
  10151. }
  10152. },
  10153. back: {
  10154. height: math.unit(6, "feet"),
  10155. weight: math.unit(150, "lb"),
  10156. name: "Back",
  10157. image: {
  10158. source: "./media/characters/pianostrong/back.svg",
  10159. extra: 6085 / 5733,
  10160. bottom: 0.01
  10161. }
  10162. },
  10163. },
  10164. [
  10165. {
  10166. name: "Macro",
  10167. height: math.unit(100, "feet")
  10168. },
  10169. {
  10170. name: "Macro+",
  10171. height: math.unit(300, "feet"),
  10172. default: true
  10173. },
  10174. {
  10175. name: "Macro++",
  10176. height: math.unit(1000, "feet")
  10177. },
  10178. ]
  10179. ))
  10180. characterMakers.push(() => makeCharacter(
  10181. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10182. {
  10183. front: {
  10184. height: math.unit(6, "feet"),
  10185. weight: math.unit(150, "lb"),
  10186. name: "Front",
  10187. image: {
  10188. source: "./media/characters/kona/front.svg",
  10189. extra: 2960 / 2629,
  10190. bottom: 0.005
  10191. }
  10192. },
  10193. },
  10194. [
  10195. {
  10196. name: "Normal",
  10197. height: math.unit(11 + 8 / 12, "feet")
  10198. },
  10199. {
  10200. name: "Macro",
  10201. height: math.unit(850, "feet"),
  10202. default: true
  10203. },
  10204. {
  10205. name: "Macro+",
  10206. height: math.unit(1.5, "km"),
  10207. default: true
  10208. },
  10209. {
  10210. name: "Megamacro",
  10211. height: math.unit(80, "miles")
  10212. },
  10213. {
  10214. name: "Gigamacro",
  10215. height: math.unit(3500, "miles")
  10216. },
  10217. ]
  10218. ))
  10219. characterMakers.push(() => makeCharacter(
  10220. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10221. {
  10222. side: {
  10223. height: math.unit(1.9, "meters"),
  10224. weight: math.unit(326, "kg"),
  10225. name: "Side",
  10226. image: {
  10227. source: "./media/characters/levi/side.svg",
  10228. extra: 1704 / 1334,
  10229. bottom: 0.02
  10230. }
  10231. },
  10232. },
  10233. [
  10234. {
  10235. name: "Normal",
  10236. height: math.unit(1.9, "meters"),
  10237. default: true
  10238. },
  10239. {
  10240. name: "Macro",
  10241. height: math.unit(20, "meters")
  10242. },
  10243. {
  10244. name: "Macro+",
  10245. height: math.unit(200, "meters")
  10246. },
  10247. {
  10248. name: "Megamacro",
  10249. height: math.unit(2, "km")
  10250. },
  10251. {
  10252. name: "Megamacro+",
  10253. height: math.unit(20, "km")
  10254. },
  10255. {
  10256. name: "Gigamacro",
  10257. height: math.unit(2500, "km")
  10258. },
  10259. {
  10260. name: "Gigamacro+",
  10261. height: math.unit(120000, "km")
  10262. },
  10263. {
  10264. name: "Teramacro",
  10265. height: math.unit(7.77e6, "km")
  10266. },
  10267. ]
  10268. ))
  10269. characterMakers.push(() => makeCharacter(
  10270. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10271. {
  10272. front: {
  10273. height: math.unit(6 + 4 / 12, "feet"),
  10274. weight: math.unit(188, "lb"),
  10275. name: "Front",
  10276. image: {
  10277. source: "./media/characters/bmc/front.svg",
  10278. extra: 1067 / 1022,
  10279. bottom: 0.047
  10280. }
  10281. },
  10282. },
  10283. [
  10284. {
  10285. name: "Human-sized",
  10286. height: math.unit(6 + 4 / 12, "feet")
  10287. },
  10288. {
  10289. name: "Small",
  10290. height: math.unit(250, "feet")
  10291. },
  10292. {
  10293. name: "Normal",
  10294. height: math.unit(1250, "feet"),
  10295. default: true
  10296. },
  10297. {
  10298. name: "Good Day",
  10299. height: math.unit(88, "miles")
  10300. },
  10301. {
  10302. name: "Largest Measured Size",
  10303. height: math.unit(11.2e6, "lightyears")
  10304. },
  10305. ]
  10306. ))
  10307. characterMakers.push(() => makeCharacter(
  10308. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10309. {
  10310. front: {
  10311. height: math.unit(20, "feet"),
  10312. weight: math.unit(2016, "kg"),
  10313. name: "Front",
  10314. image: {
  10315. source: "./media/characters/sven-the-kaiju/front.svg",
  10316. extra: 1479 / 1449,
  10317. bottom: 0.05
  10318. }
  10319. },
  10320. },
  10321. [
  10322. {
  10323. name: "Fairy",
  10324. height: math.unit(6, "inches")
  10325. },
  10326. {
  10327. name: "Normal",
  10328. height: math.unit(20, "feet"),
  10329. default: true
  10330. },
  10331. {
  10332. name: "Rampage",
  10333. height: math.unit(200, "feet")
  10334. },
  10335. {
  10336. name: "Archfey Forest Guardian",
  10337. height: math.unit(1, "mile")
  10338. },
  10339. ]
  10340. ))
  10341. characterMakers.push(() => makeCharacter(
  10342. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10343. {
  10344. front: {
  10345. height: math.unit(4, "meters"),
  10346. weight: math.unit(2, "tons"),
  10347. name: "Front",
  10348. image: {
  10349. source: "./media/characters/marik/front.svg",
  10350. extra: 1057 / 1003,
  10351. bottom: 0.08
  10352. }
  10353. },
  10354. },
  10355. [
  10356. {
  10357. name: "Normal",
  10358. height: math.unit(4, "meters"),
  10359. default: true
  10360. },
  10361. {
  10362. name: "Macro",
  10363. height: math.unit(20, "meters")
  10364. },
  10365. {
  10366. name: "Megamacro",
  10367. height: math.unit(50, "km")
  10368. },
  10369. {
  10370. name: "Gigamacro",
  10371. height: math.unit(100, "km")
  10372. },
  10373. {
  10374. name: "Alpha Macro",
  10375. height: math.unit(7.88e7, "yottameters")
  10376. },
  10377. ]
  10378. ))
  10379. characterMakers.push(() => makeCharacter(
  10380. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10381. {
  10382. front: {
  10383. height: math.unit(6, "feet"),
  10384. weight: math.unit(110, "lb"),
  10385. name: "Front",
  10386. image: {
  10387. source: "./media/characters/mel/front.svg",
  10388. extra: 736 / 617,
  10389. bottom: 0.017
  10390. }
  10391. },
  10392. },
  10393. [
  10394. {
  10395. name: "Pico",
  10396. height: math.unit(3, "pm")
  10397. },
  10398. {
  10399. name: "Nano",
  10400. height: math.unit(3, "nm")
  10401. },
  10402. {
  10403. name: "Micro",
  10404. height: math.unit(0.3, "mm"),
  10405. default: true
  10406. },
  10407. {
  10408. name: "Micro+",
  10409. height: math.unit(3, "mm")
  10410. },
  10411. {
  10412. name: "Normal",
  10413. height: math.unit(5 + 10.5 / 12, "feet")
  10414. },
  10415. ]
  10416. ))
  10417. characterMakers.push(() => makeCharacter(
  10418. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10419. {
  10420. kaiju: {
  10421. height: math.unit(1.75, "meters"),
  10422. weight: math.unit(55, "kg"),
  10423. name: "Kaiju",
  10424. image: {
  10425. source: "./media/characters/lykonous/kaiju.svg",
  10426. extra: 1055 / 946,
  10427. bottom: 0.135
  10428. }
  10429. },
  10430. },
  10431. [
  10432. {
  10433. name: "Normal",
  10434. height: math.unit(2.5, "meters"),
  10435. default: true
  10436. },
  10437. {
  10438. name: "Kaiju Dragon",
  10439. height: math.unit(60, "meters")
  10440. },
  10441. {
  10442. name: "Mega Kaiju",
  10443. height: math.unit(120, "km")
  10444. },
  10445. {
  10446. name: "Giga Kaiju",
  10447. height: math.unit(200, "megameters")
  10448. },
  10449. {
  10450. name: "Terra Kaiju",
  10451. height: math.unit(400, "gigameters")
  10452. },
  10453. {
  10454. name: "Kaiju Dragon God",
  10455. height: math.unit(13000, "exaparsecs")
  10456. },
  10457. ]
  10458. ))
  10459. characterMakers.push(() => makeCharacter(
  10460. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10461. {
  10462. front: {
  10463. height: math.unit(6, "feet"),
  10464. weight: math.unit(150, "lb"),
  10465. name: "Front",
  10466. image: {
  10467. source: "./media/characters/blü/front.svg",
  10468. extra: 1883 / 1564,
  10469. bottom: 0.031
  10470. }
  10471. },
  10472. },
  10473. [
  10474. {
  10475. name: "Normal",
  10476. height: math.unit(13, "feet"),
  10477. default: true
  10478. },
  10479. {
  10480. name: "Big Boi",
  10481. height: math.unit(150, "meters")
  10482. },
  10483. {
  10484. name: "Mini Stomper",
  10485. height: math.unit(300, "meters")
  10486. },
  10487. {
  10488. name: "Macro",
  10489. height: math.unit(1000, "meters")
  10490. },
  10491. {
  10492. name: "Megamacro",
  10493. height: math.unit(11000, "meters")
  10494. },
  10495. {
  10496. name: "Gigamacro",
  10497. height: math.unit(11000, "km")
  10498. },
  10499. {
  10500. name: "Teramacro",
  10501. height: math.unit(420000, "km")
  10502. },
  10503. {
  10504. name: "Examacro",
  10505. height: math.unit(120, "parsecs")
  10506. },
  10507. {
  10508. name: "God Tho",
  10509. height: math.unit(98000000000, "parsecs")
  10510. },
  10511. ]
  10512. ))
  10513. characterMakers.push(() => makeCharacter(
  10514. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10515. {
  10516. taurFront: {
  10517. height: math.unit(6, "feet"),
  10518. weight: math.unit(200, "lb"),
  10519. name: "Taur (Front)",
  10520. image: {
  10521. source: "./media/characters/scales/taur-front.svg",
  10522. extra: 1,
  10523. bottom: 0.05
  10524. }
  10525. },
  10526. taurBack: {
  10527. height: math.unit(6, "feet"),
  10528. weight: math.unit(200, "lb"),
  10529. name: "Taur (Back)",
  10530. image: {
  10531. source: "./media/characters/scales/taur-back.svg",
  10532. extra: 1,
  10533. bottom: 0.08
  10534. }
  10535. },
  10536. anthro: {
  10537. height: math.unit(6 * 7 / 12, "feet"),
  10538. weight: math.unit(100, "lb"),
  10539. name: "Anthro",
  10540. image: {
  10541. source: "./media/characters/scales/anthro.svg",
  10542. extra: 1,
  10543. bottom: 0.06
  10544. }
  10545. },
  10546. },
  10547. [
  10548. {
  10549. name: "Normal",
  10550. height: math.unit(12, "feet"),
  10551. default: true
  10552. },
  10553. ]
  10554. ))
  10555. characterMakers.push(() => makeCharacter(
  10556. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10557. {
  10558. front: {
  10559. height: math.unit(6, "feet"),
  10560. weight: math.unit(150, "lb"),
  10561. name: "Front",
  10562. image: {
  10563. source: "./media/characters/koragos/front.svg",
  10564. extra: 841 / 794,
  10565. bottom: 0.035
  10566. }
  10567. },
  10568. back: {
  10569. height: math.unit(6, "feet"),
  10570. weight: math.unit(150, "lb"),
  10571. name: "Back",
  10572. image: {
  10573. source: "./media/characters/koragos/back.svg",
  10574. extra: 841 / 810,
  10575. bottom: 0.022
  10576. }
  10577. },
  10578. },
  10579. [
  10580. {
  10581. name: "Normal",
  10582. height: math.unit(6 + 11 / 12, "feet"),
  10583. default: true
  10584. },
  10585. {
  10586. name: "Macro",
  10587. height: math.unit(490, "feet")
  10588. },
  10589. {
  10590. name: "Megamacro",
  10591. height: math.unit(10, "miles")
  10592. },
  10593. {
  10594. name: "Gigamacro",
  10595. height: math.unit(50, "miles")
  10596. },
  10597. ]
  10598. ))
  10599. characterMakers.push(() => makeCharacter(
  10600. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10601. {
  10602. front: {
  10603. height: math.unit(6, "feet"),
  10604. weight: math.unit(250, "lb"),
  10605. name: "Front",
  10606. image: {
  10607. source: "./media/characters/xylrem/front.svg",
  10608. extra: 3323 / 3050,
  10609. bottom: 0.065
  10610. }
  10611. },
  10612. },
  10613. [
  10614. {
  10615. name: "Micro",
  10616. height: math.unit(4, "feet")
  10617. },
  10618. {
  10619. name: "Normal",
  10620. height: math.unit(16, "feet"),
  10621. default: true
  10622. },
  10623. {
  10624. name: "Macro",
  10625. height: math.unit(2720, "feet")
  10626. },
  10627. {
  10628. name: "Megamacro",
  10629. height: math.unit(25000, "miles")
  10630. },
  10631. ]
  10632. ))
  10633. characterMakers.push(() => makeCharacter(
  10634. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10635. {
  10636. front: {
  10637. height: math.unit(8, "feet"),
  10638. weight: math.unit(250, "kg"),
  10639. name: "Front",
  10640. image: {
  10641. source: "./media/characters/ikideru/front.svg",
  10642. extra: 930 / 870,
  10643. bottom: 0.087
  10644. }
  10645. },
  10646. back: {
  10647. height: math.unit(8, "feet"),
  10648. weight: math.unit(250, "kg"),
  10649. name: "Back",
  10650. image: {
  10651. source: "./media/characters/ikideru/back.svg",
  10652. extra: 919 / 852,
  10653. bottom: 0.055
  10654. }
  10655. },
  10656. },
  10657. [
  10658. {
  10659. name: "Rare",
  10660. height: math.unit(8, "feet"),
  10661. default: true
  10662. },
  10663. {
  10664. name: "Playful Loom",
  10665. height: math.unit(80, "feet")
  10666. },
  10667. {
  10668. name: "City Leaner",
  10669. height: math.unit(230, "feet")
  10670. },
  10671. {
  10672. name: "Megamacro",
  10673. height: math.unit(2500, "feet")
  10674. },
  10675. {
  10676. name: "Gigamacro",
  10677. height: math.unit(26400, "feet")
  10678. },
  10679. {
  10680. name: "Tectonic Shifter",
  10681. height: math.unit(1.7, "megameters")
  10682. },
  10683. {
  10684. name: "Planet Carer",
  10685. height: math.unit(21, "megameters")
  10686. },
  10687. {
  10688. name: "God",
  10689. height: math.unit(11157.22, "parsecs")
  10690. },
  10691. ]
  10692. ))
  10693. characterMakers.push(() => makeCharacter(
  10694. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10695. {
  10696. front: {
  10697. height: math.unit(6, "feet"),
  10698. weight: math.unit(120, "lb"),
  10699. name: "Front",
  10700. image: {
  10701. source: "./media/characters/neo/front.svg"
  10702. }
  10703. },
  10704. },
  10705. [
  10706. {
  10707. name: "Micro",
  10708. height: math.unit(2, "inches"),
  10709. default: true
  10710. },
  10711. {
  10712. name: "Human Size",
  10713. height: math.unit(5 + 8 / 12, "feet")
  10714. },
  10715. ]
  10716. ))
  10717. characterMakers.push(() => makeCharacter(
  10718. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  10719. {
  10720. front: {
  10721. height: math.unit(13 + 10 / 12, "feet"),
  10722. weight: math.unit(5320, "lb"),
  10723. name: "Front",
  10724. image: {
  10725. source: "./media/characters/chauncey-chantz/front.svg",
  10726. extra: 1587 / 1435,
  10727. bottom: 0.02
  10728. }
  10729. },
  10730. },
  10731. [
  10732. {
  10733. name: "Normal",
  10734. height: math.unit(13 + 10 / 12, "feet"),
  10735. default: true
  10736. },
  10737. {
  10738. name: "Macro",
  10739. height: math.unit(45, "feet")
  10740. },
  10741. {
  10742. name: "Megamacro",
  10743. height: math.unit(250, "miles")
  10744. },
  10745. {
  10746. name: "Planetary",
  10747. height: math.unit(10000, "miles")
  10748. },
  10749. {
  10750. name: "Galactic",
  10751. height: math.unit(40000, "parsecs")
  10752. },
  10753. {
  10754. name: "Universal",
  10755. height: math.unit(1, "yottameter")
  10756. },
  10757. ]
  10758. ))
  10759. characterMakers.push(() => makeCharacter(
  10760. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  10761. {
  10762. front: {
  10763. height: math.unit(6, "feet"),
  10764. weight: math.unit(150, "lb"),
  10765. name: "Front",
  10766. image: {
  10767. source: "./media/characters/epifox/front.svg",
  10768. extra: 1,
  10769. bottom: 0.075
  10770. }
  10771. },
  10772. },
  10773. [
  10774. {
  10775. name: "Micro",
  10776. height: math.unit(6, "inches")
  10777. },
  10778. {
  10779. name: "Normal",
  10780. height: math.unit(12, "feet"),
  10781. default: true
  10782. },
  10783. {
  10784. name: "Macro",
  10785. height: math.unit(3810, "feet")
  10786. },
  10787. {
  10788. name: "Megamacro",
  10789. height: math.unit(500, "miles")
  10790. },
  10791. ]
  10792. ))
  10793. characterMakers.push(() => makeCharacter(
  10794. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  10795. {
  10796. front: {
  10797. height: math.unit(1.8796, "m"),
  10798. weight: math.unit(230, "lb"),
  10799. name: "Front",
  10800. image: {
  10801. source: "./media/characters/colin-t/front.svg",
  10802. extra: 1272 / 1193,
  10803. bottom: 0.07
  10804. }
  10805. },
  10806. },
  10807. [
  10808. {
  10809. name: "Micro",
  10810. height: math.unit(0.571, "meters")
  10811. },
  10812. {
  10813. name: "Normal",
  10814. height: math.unit(1.8796, "meters"),
  10815. default: true
  10816. },
  10817. {
  10818. name: "Tall",
  10819. height: math.unit(4, "meters")
  10820. },
  10821. {
  10822. name: "Macro",
  10823. height: math.unit(67.241, "meters")
  10824. },
  10825. {
  10826. name: "Megamacro",
  10827. height: math.unit(371.856, "meters")
  10828. },
  10829. {
  10830. name: "Planetary",
  10831. height: math.unit(12631.5689, "km")
  10832. },
  10833. ]
  10834. ))
  10835. characterMakers.push(() => makeCharacter(
  10836. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  10837. {
  10838. front: {
  10839. height: math.unit(1.85, "meters"),
  10840. weight: math.unit(80, "kg"),
  10841. name: "Front",
  10842. image: {
  10843. source: "./media/characters/matvei/front.svg",
  10844. extra: 614 / 594,
  10845. bottom: 0.01
  10846. }
  10847. },
  10848. },
  10849. [
  10850. {
  10851. name: "Normal",
  10852. height: math.unit(1.85, "meters"),
  10853. default: true
  10854. },
  10855. ]
  10856. ))
  10857. characterMakers.push(() => makeCharacter(
  10858. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  10859. {
  10860. front: {
  10861. height: math.unit(5 + 9 / 12, "feet"),
  10862. weight: math.unit(70, "lb"),
  10863. name: "Front",
  10864. image: {
  10865. source: "./media/characters/quincy/front.svg",
  10866. extra: 3041 / 2751
  10867. }
  10868. },
  10869. back: {
  10870. height: math.unit(5 + 9 / 12, "feet"),
  10871. weight: math.unit(70, "lb"),
  10872. name: "Back",
  10873. image: {
  10874. source: "./media/characters/quincy/back.svg",
  10875. extra: 3041 / 2751
  10876. }
  10877. },
  10878. flying: {
  10879. height: math.unit(5 + 4 / 12, "feet"),
  10880. weight: math.unit(70, "lb"),
  10881. name: "Flying",
  10882. image: {
  10883. source: "./media/characters/quincy/flying.svg",
  10884. extra: 1044 / 930
  10885. }
  10886. },
  10887. },
  10888. [
  10889. {
  10890. name: "Micro",
  10891. height: math.unit(3, "cm")
  10892. },
  10893. {
  10894. name: "Normal",
  10895. height: math.unit(5 + 9 / 12, "feet")
  10896. },
  10897. {
  10898. name: "Macro",
  10899. height: math.unit(200, "meters"),
  10900. default: true
  10901. },
  10902. {
  10903. name: "Megamacro",
  10904. height: math.unit(1000, "meters")
  10905. },
  10906. ]
  10907. ))
  10908. characterMakers.push(() => makeCharacter(
  10909. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  10910. {
  10911. front: {
  10912. height: math.unit(4 + 7 / 12, "feet"),
  10913. weight: math.unit(150, "lb"),
  10914. name: "Front",
  10915. image: {
  10916. source: "./media/characters/vanrel/front.svg",
  10917. extra: 1,
  10918. bottom: 0.02
  10919. }
  10920. },
  10921. elemental: {
  10922. height: math.unit(3, "feet"),
  10923. weight: math.unit(150, "lb"),
  10924. name: "Elemental",
  10925. image: {
  10926. source: "./media/characters/vanrel/elemental.svg",
  10927. extra: 192.3 / 162.8,
  10928. bottom: 1.79 / 194.17
  10929. }
  10930. },
  10931. side: {
  10932. height: math.unit(4 + 7 / 12, "feet"),
  10933. weight: math.unit(150, "lb"),
  10934. name: "Side",
  10935. image: {
  10936. source: "./media/characters/vanrel/side.svg",
  10937. extra: 1,
  10938. bottom: 0.025
  10939. }
  10940. },
  10941. tome: {
  10942. height: math.unit(1.35, "feet"),
  10943. weight: math.unit(10, "lb"),
  10944. name: "Vanrel's Tome",
  10945. rename: true,
  10946. image: {
  10947. source: "./media/characters/vanrel/tome.svg"
  10948. }
  10949. },
  10950. beans: {
  10951. height: math.unit(0.89, "feet"),
  10952. name: "Beans",
  10953. image: {
  10954. source: "./media/characters/vanrel/beans.svg"
  10955. }
  10956. },
  10957. },
  10958. [
  10959. {
  10960. name: "Normal",
  10961. height: math.unit(4 + 7 / 12, "feet"),
  10962. default: true
  10963. },
  10964. ]
  10965. ))
  10966. characterMakers.push(() => makeCharacter(
  10967. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  10968. {
  10969. front: {
  10970. height: math.unit(7 + 5 / 12, "feet"),
  10971. weight: math.unit(150, "lb"),
  10972. name: "Front",
  10973. image: {
  10974. source: "./media/characters/kuiper-vanrel/front.svg",
  10975. extra: 1118 / 1068,
  10976. bottom: 0.09
  10977. }
  10978. },
  10979. foot: {
  10980. height: math.unit(0.55, "meters"),
  10981. name: "Foot",
  10982. image: {
  10983. source: "./media/characters/kuiper-vanrel/foot.svg",
  10984. }
  10985. },
  10986. battle: {
  10987. height: math.unit(6.824, "feet"),
  10988. weight: math.unit(150, "lb"),
  10989. name: "Battle",
  10990. image: {
  10991. source: "./media/characters/kuiper-vanrel/battle.svg",
  10992. extra: 1466 / 1327,
  10993. bottom: 29 / 1492.5
  10994. }
  10995. },
  10996. },
  10997. [
  10998. {
  10999. name: "Normal",
  11000. height: math.unit(7 + 5 / 12, "feet"),
  11001. default: true
  11002. },
  11003. ]
  11004. ))
  11005. characterMakers.push(() => makeCharacter(
  11006. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11007. {
  11008. front: {
  11009. height: math.unit(8 + 5 / 12, "feet"),
  11010. weight: math.unit(150, "lb"),
  11011. name: "Front",
  11012. image: {
  11013. source: "./media/characters/keset-vanrel/front.svg",
  11014. extra: 1150 / 1084,
  11015. bottom: 0.05
  11016. }
  11017. },
  11018. hand: {
  11019. height: math.unit(0.6, "meters"),
  11020. name: "Hand",
  11021. image: {
  11022. source: "./media/characters/keset-vanrel/hand.svg"
  11023. }
  11024. },
  11025. foot: {
  11026. height: math.unit(0.94978, "meters"),
  11027. name: "Foot",
  11028. image: {
  11029. source: "./media/characters/keset-vanrel/foot.svg"
  11030. }
  11031. },
  11032. battle: {
  11033. height: math.unit(7.408, "feet"),
  11034. weight: math.unit(150, "lb"),
  11035. name: "Battle",
  11036. image: {
  11037. source: "./media/characters/keset-vanrel/battle.svg",
  11038. extra: 1890 / 1386,
  11039. bottom: 73.28 / 1970
  11040. }
  11041. },
  11042. },
  11043. [
  11044. {
  11045. name: "Normal",
  11046. height: math.unit(8 + 5 / 12, "feet"),
  11047. default: true
  11048. },
  11049. ]
  11050. ))
  11051. characterMakers.push(() => makeCharacter(
  11052. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11053. {
  11054. front: {
  11055. height: math.unit(6, "feet"),
  11056. weight: math.unit(150, "lb"),
  11057. name: "Front",
  11058. image: {
  11059. source: "./media/characters/neos/front.svg",
  11060. extra: 1696 / 992,
  11061. bottom: 0.14
  11062. }
  11063. },
  11064. },
  11065. [
  11066. {
  11067. name: "Normal",
  11068. height: math.unit(54, "cm"),
  11069. default: true
  11070. },
  11071. {
  11072. name: "Macro",
  11073. height: math.unit(100, "m")
  11074. },
  11075. {
  11076. name: "Megamacro",
  11077. height: math.unit(10, "km")
  11078. },
  11079. {
  11080. name: "Megamacro+",
  11081. height: math.unit(100, "km")
  11082. },
  11083. {
  11084. name: "Gigamacro",
  11085. height: math.unit(100, "Mm")
  11086. },
  11087. {
  11088. name: "Teramacro",
  11089. height: math.unit(100, "Gm")
  11090. },
  11091. {
  11092. name: "Examacro",
  11093. height: math.unit(100, "Em")
  11094. },
  11095. {
  11096. name: "Godly",
  11097. height: math.unit(10000, "Ym")
  11098. },
  11099. {
  11100. name: "Beyond Godly",
  11101. height: math.unit(25, "multiverses")
  11102. },
  11103. ]
  11104. ))
  11105. characterMakers.push(() => makeCharacter(
  11106. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11107. {
  11108. feminine: {
  11109. height: math.unit(5, "feet"),
  11110. weight: math.unit(100, "lb"),
  11111. name: "Feminine",
  11112. image: {
  11113. source: "./media/characters/sammy-mouse/feminine.svg",
  11114. extra: 2526 / 2425,
  11115. bottom: 0.123
  11116. }
  11117. },
  11118. masculine: {
  11119. height: math.unit(5, "feet"),
  11120. weight: math.unit(100, "lb"),
  11121. name: "Masculine",
  11122. image: {
  11123. source: "./media/characters/sammy-mouse/masculine.svg",
  11124. extra: 2526 / 2425,
  11125. bottom: 0.123
  11126. }
  11127. },
  11128. },
  11129. [
  11130. {
  11131. name: "Micro",
  11132. height: math.unit(5, "inches")
  11133. },
  11134. {
  11135. name: "Normal",
  11136. height: math.unit(5, "feet"),
  11137. default: true
  11138. },
  11139. {
  11140. name: "Macro",
  11141. height: math.unit(60, "feet")
  11142. },
  11143. ]
  11144. ))
  11145. characterMakers.push(() => makeCharacter(
  11146. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11147. {
  11148. front: {
  11149. height: math.unit(4, "feet"),
  11150. weight: math.unit(50, "lb"),
  11151. name: "Front",
  11152. image: {
  11153. source: "./media/characters/kole/front.svg",
  11154. extra: 1423 / 1303,
  11155. bottom: 0.025
  11156. }
  11157. },
  11158. back: {
  11159. height: math.unit(4, "feet"),
  11160. weight: math.unit(50, "lb"),
  11161. name: "Back",
  11162. image: {
  11163. source: "./media/characters/kole/back.svg",
  11164. extra: 1426 / 1280,
  11165. bottom: 0.02
  11166. }
  11167. },
  11168. },
  11169. [
  11170. {
  11171. name: "Normal",
  11172. height: math.unit(4, "feet"),
  11173. default: true
  11174. },
  11175. ]
  11176. ))
  11177. characterMakers.push(() => makeCharacter(
  11178. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11179. {
  11180. front: {
  11181. height: math.unit(2 + 6 / 12, "feet"),
  11182. weight: math.unit(20, "lb"),
  11183. name: "Front",
  11184. image: {
  11185. source: "./media/characters/rufran/front.svg",
  11186. extra: 2041 / 1839,
  11187. bottom: 0.055
  11188. }
  11189. },
  11190. back: {
  11191. height: math.unit(2 + 6 / 12, "feet"),
  11192. weight: math.unit(20, "lb"),
  11193. name: "Back",
  11194. image: {
  11195. source: "./media/characters/rufran/back.svg",
  11196. extra: 2054 / 1839,
  11197. bottom: 0.01
  11198. }
  11199. },
  11200. hand: {
  11201. height: math.unit(0.2166, "meters"),
  11202. name: "Hand",
  11203. image: {
  11204. source: "./media/characters/rufran/hand.svg"
  11205. }
  11206. },
  11207. foot: {
  11208. height: math.unit(0.185, "meters"),
  11209. name: "Foot",
  11210. image: {
  11211. source: "./media/characters/rufran/foot.svg"
  11212. }
  11213. },
  11214. },
  11215. [
  11216. {
  11217. name: "Micro",
  11218. height: math.unit(1, "inch")
  11219. },
  11220. {
  11221. name: "Normal",
  11222. height: math.unit(2 + 6 / 12, "feet"),
  11223. default: true
  11224. },
  11225. {
  11226. name: "Big",
  11227. height: math.unit(60, "feet")
  11228. },
  11229. {
  11230. name: "Macro",
  11231. height: math.unit(325, "feet")
  11232. },
  11233. ]
  11234. ))
  11235. characterMakers.push(() => makeCharacter(
  11236. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11237. {
  11238. front: {
  11239. height: math.unit(0.3, "meters"),
  11240. weight: math.unit(3.5, "kg"),
  11241. name: "Front",
  11242. image: {
  11243. source: "./media/characters/chip/front.svg",
  11244. extra: 748 / 674
  11245. }
  11246. },
  11247. },
  11248. [
  11249. {
  11250. name: "Micro",
  11251. height: math.unit(1, "inch"),
  11252. default: true
  11253. },
  11254. ]
  11255. ))
  11256. characterMakers.push(() => makeCharacter(
  11257. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11258. {
  11259. side: {
  11260. height: math.unit(2.3, "meters"),
  11261. weight: math.unit(3500, "lb"),
  11262. name: "Side",
  11263. image: {
  11264. source: "./media/characters/torvid/side.svg",
  11265. extra: 1972 / 722,
  11266. bottom: 0.035
  11267. }
  11268. },
  11269. },
  11270. [
  11271. {
  11272. name: "Normal",
  11273. height: math.unit(2.3, "meters"),
  11274. default: true
  11275. },
  11276. ]
  11277. ))
  11278. characterMakers.push(() => makeCharacter(
  11279. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11280. {
  11281. front: {
  11282. height: math.unit(2, "meters"),
  11283. weight: math.unit(150.5, "kg"),
  11284. name: "Front",
  11285. image: {
  11286. source: "./media/characters/susan/front.svg",
  11287. extra: 693 / 635,
  11288. bottom: 0.05
  11289. }
  11290. },
  11291. },
  11292. [
  11293. {
  11294. name: "Megamacro",
  11295. height: math.unit(505, "miles"),
  11296. default: true
  11297. },
  11298. ]
  11299. ))
  11300. characterMakers.push(() => makeCharacter(
  11301. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11302. {
  11303. front: {
  11304. height: math.unit(6, "feet"),
  11305. weight: math.unit(150, "lb"),
  11306. name: "Front",
  11307. image: {
  11308. source: "./media/characters/raindrops/front.svg",
  11309. extra: 2655 / 2461,
  11310. bottom: 0.02
  11311. }
  11312. },
  11313. back: {
  11314. height: math.unit(6, "feet"),
  11315. weight: math.unit(150, "lb"),
  11316. name: "Back",
  11317. image: {
  11318. source: "./media/characters/raindrops/back.svg",
  11319. extra: 2574 / 2400,
  11320. bottom: 0.03
  11321. }
  11322. },
  11323. },
  11324. [
  11325. {
  11326. name: "Micro",
  11327. height: math.unit(6, "inches")
  11328. },
  11329. {
  11330. name: "Normal",
  11331. height: math.unit(6 + 2 / 12, "feet")
  11332. },
  11333. {
  11334. name: "Macro",
  11335. height: math.unit(131, "feet"),
  11336. default: true
  11337. },
  11338. {
  11339. name: "Megamacro",
  11340. height: math.unit(15, "miles")
  11341. },
  11342. {
  11343. name: "Gigamacro",
  11344. height: math.unit(4000, "miles")
  11345. },
  11346. {
  11347. name: "Teramacro",
  11348. height: math.unit(315000, "miles")
  11349. },
  11350. ]
  11351. ))
  11352. characterMakers.push(() => makeCharacter(
  11353. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11354. {
  11355. front: {
  11356. height: math.unit(2.794, "meters"),
  11357. weight: math.unit(325, "kg"),
  11358. name: "Front",
  11359. image: {
  11360. source: "./media/characters/tezwa/front.svg",
  11361. extra: 2083 / 1906,
  11362. bottom: 0.031
  11363. }
  11364. },
  11365. foot: {
  11366. height: math.unit(0.687, "meters"),
  11367. name: "Foot",
  11368. image: {
  11369. source: "./media/characters/tezwa/foot.svg"
  11370. }
  11371. },
  11372. },
  11373. [
  11374. {
  11375. name: "Normal",
  11376. height: math.unit(9 + 2 / 12, "feet"),
  11377. default: true
  11378. },
  11379. ]
  11380. ))
  11381. characterMakers.push(() => makeCharacter(
  11382. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11383. {
  11384. front: {
  11385. height: math.unit(58, "feet"),
  11386. weight: math.unit(89000, "lb"),
  11387. name: "Front",
  11388. image: {
  11389. source: "./media/characters/typhus/front.svg",
  11390. extra: 816 / 800,
  11391. bottom: 0.065
  11392. }
  11393. },
  11394. },
  11395. [
  11396. {
  11397. name: "Macro",
  11398. height: math.unit(58, "feet"),
  11399. default: true
  11400. },
  11401. ]
  11402. ))
  11403. characterMakers.push(() => makeCharacter(
  11404. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11405. {
  11406. front: {
  11407. height: math.unit(12, "feet"),
  11408. weight: math.unit(6, "tonnes"),
  11409. name: "Front",
  11410. image: {
  11411. source: "./media/characters/lyra-von-wulf/front.svg",
  11412. extra: 1,
  11413. bottom: 0.10
  11414. }
  11415. },
  11416. frontMecha: {
  11417. height: math.unit(12, "feet"),
  11418. weight: math.unit(12, "tonnes"),
  11419. name: "Front (Mecha)",
  11420. image: {
  11421. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11422. extra: 1,
  11423. bottom: 0.042
  11424. }
  11425. },
  11426. maw: {
  11427. height: math.unit(2.2, "feet"),
  11428. name: "Maw",
  11429. image: {
  11430. source: "./media/characters/lyra-von-wulf/maw.svg"
  11431. }
  11432. },
  11433. },
  11434. [
  11435. {
  11436. name: "Normal",
  11437. height: math.unit(12, "feet"),
  11438. default: true
  11439. },
  11440. {
  11441. name: "Classic",
  11442. height: math.unit(50, "feet")
  11443. },
  11444. {
  11445. name: "Macro",
  11446. height: math.unit(500, "feet")
  11447. },
  11448. {
  11449. name: "Megamacro",
  11450. height: math.unit(1, "mile")
  11451. },
  11452. {
  11453. name: "Gigamacro",
  11454. height: math.unit(400, "miles")
  11455. },
  11456. {
  11457. name: "Teramacro",
  11458. height: math.unit(22000, "miles")
  11459. },
  11460. {
  11461. name: "Solarmacro",
  11462. height: math.unit(8600000, "miles")
  11463. },
  11464. {
  11465. name: "Galactic",
  11466. height: math.unit(1057000, "lightyears")
  11467. },
  11468. ]
  11469. ))
  11470. characterMakers.push(() => makeCharacter(
  11471. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11472. {
  11473. front: {
  11474. height: math.unit(6 + 10 / 12, "feet"),
  11475. weight: math.unit(150, "lb"),
  11476. name: "Front",
  11477. image: {
  11478. source: "./media/characters/dixon/front.svg",
  11479. extra: 3361 / 3209,
  11480. bottom: 0.01
  11481. }
  11482. },
  11483. },
  11484. [
  11485. {
  11486. name: "Normal",
  11487. height: math.unit(6 + 10 / 12, "feet"),
  11488. default: true
  11489. },
  11490. {
  11491. name: "Big",
  11492. height: math.unit(12, "meters")
  11493. },
  11494. {
  11495. name: "Macro",
  11496. height: math.unit(500, "meters")
  11497. },
  11498. {
  11499. name: "Megamacro",
  11500. height: math.unit(2, "km")
  11501. },
  11502. ]
  11503. ))
  11504. characterMakers.push(() => makeCharacter(
  11505. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11506. {
  11507. front: {
  11508. height: math.unit(185, "cm"),
  11509. weight: math.unit(68, "kg"),
  11510. name: "Front",
  11511. image: {
  11512. source: "./media/characters/kauko/front.svg",
  11513. extra: 1455 / 1421,
  11514. bottom: 0.03
  11515. }
  11516. },
  11517. back: {
  11518. height: math.unit(185, "cm"),
  11519. weight: math.unit(68, "kg"),
  11520. name: "Back",
  11521. image: {
  11522. source: "./media/characters/kauko/back.svg",
  11523. extra: 1455 / 1421,
  11524. bottom: 0.004
  11525. }
  11526. },
  11527. },
  11528. [
  11529. {
  11530. name: "Normal",
  11531. height: math.unit(185, "cm"),
  11532. default: true
  11533. },
  11534. ]
  11535. ))
  11536. characterMakers.push(() => makeCharacter(
  11537. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11538. {
  11539. front: {
  11540. height: math.unit(6, "feet"),
  11541. weight: math.unit(150, "kg"),
  11542. name: "Front",
  11543. image: {
  11544. source: "./media/characters/varg/front.svg",
  11545. extra: 1108 / 1018,
  11546. bottom: 0.0375
  11547. }
  11548. },
  11549. },
  11550. [
  11551. {
  11552. name: "Normal",
  11553. height: math.unit(5, "meters")
  11554. },
  11555. {
  11556. name: "Macro",
  11557. height: math.unit(200, "meters")
  11558. },
  11559. {
  11560. name: "Megamacro",
  11561. height: math.unit(20, "kilometers")
  11562. },
  11563. {
  11564. name: "True Size",
  11565. height: math.unit(211, "km"),
  11566. default: true
  11567. },
  11568. {
  11569. name: "Gigamacro",
  11570. height: math.unit(1000, "km")
  11571. },
  11572. {
  11573. name: "Gigamacro+",
  11574. height: math.unit(8000, "km")
  11575. },
  11576. {
  11577. name: "Teramacro",
  11578. height: math.unit(1000000, "km")
  11579. },
  11580. ]
  11581. ))
  11582. characterMakers.push(() => makeCharacter(
  11583. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11584. {
  11585. front: {
  11586. height: math.unit(7 + 7 / 12, "feet"),
  11587. weight: math.unit(267, "lb"),
  11588. name: "Front",
  11589. image: {
  11590. source: "./media/characters/dayza/front.svg",
  11591. extra: 1262 / 1200,
  11592. bottom: 0.035
  11593. }
  11594. },
  11595. side: {
  11596. height: math.unit(7 + 7 / 12, "feet"),
  11597. weight: math.unit(267, "lb"),
  11598. name: "Side",
  11599. image: {
  11600. source: "./media/characters/dayza/side.svg",
  11601. extra: 1295 / 1245,
  11602. bottom: 0.05
  11603. }
  11604. },
  11605. back: {
  11606. height: math.unit(7 + 7 / 12, "feet"),
  11607. weight: math.unit(267, "lb"),
  11608. name: "Back",
  11609. image: {
  11610. source: "./media/characters/dayza/back.svg",
  11611. extra: 1241 / 1170
  11612. }
  11613. },
  11614. },
  11615. [
  11616. {
  11617. name: "Normal",
  11618. height: math.unit(7 + 7 / 12, "feet"),
  11619. default: true
  11620. },
  11621. {
  11622. name: "Macro",
  11623. height: math.unit(155, "feet")
  11624. },
  11625. ]
  11626. ))
  11627. characterMakers.push(() => makeCharacter(
  11628. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11629. {
  11630. front: {
  11631. height: math.unit(6 + 5 / 12, "feet"),
  11632. weight: math.unit(160, "lb"),
  11633. name: "Front",
  11634. image: {
  11635. source: "./media/characters/xanthos/front.svg",
  11636. extra: 1,
  11637. bottom: 0.04
  11638. }
  11639. },
  11640. back: {
  11641. height: math.unit(6 + 5 / 12, "feet"),
  11642. weight: math.unit(160, "lb"),
  11643. name: "Back",
  11644. image: {
  11645. source: "./media/characters/xanthos/back.svg",
  11646. extra: 1,
  11647. bottom: 0.03
  11648. }
  11649. },
  11650. hand: {
  11651. height: math.unit(0.928, "feet"),
  11652. name: "Hand",
  11653. image: {
  11654. source: "./media/characters/xanthos/hand.svg"
  11655. }
  11656. },
  11657. foot: {
  11658. height: math.unit(1.286, "feet"),
  11659. name: "Foot",
  11660. image: {
  11661. source: "./media/characters/xanthos/foot.svg"
  11662. }
  11663. },
  11664. },
  11665. [
  11666. {
  11667. name: "Normal",
  11668. height: math.unit(6 + 5 / 12, "feet"),
  11669. default: true
  11670. },
  11671. {
  11672. name: "Normal+",
  11673. height: math.unit(6, "meters")
  11674. },
  11675. {
  11676. name: "Macro",
  11677. height: math.unit(40, "feet")
  11678. },
  11679. {
  11680. name: "Macro+",
  11681. height: math.unit(200, "meters")
  11682. },
  11683. {
  11684. name: "Megamacro",
  11685. height: math.unit(20, "km")
  11686. },
  11687. {
  11688. name: "Megamacro+",
  11689. height: math.unit(100, "km")
  11690. },
  11691. ]
  11692. ))
  11693. characterMakers.push(() => makeCharacter(
  11694. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11695. {
  11696. front: {
  11697. height: math.unit(6 + 3 / 12, "feet"),
  11698. weight: math.unit(215, "lb"),
  11699. name: "Front",
  11700. image: {
  11701. source: "./media/characters/grynn/front.svg",
  11702. extra: 4627 / 4209,
  11703. bottom: 0.047
  11704. }
  11705. },
  11706. },
  11707. [
  11708. {
  11709. name: "Micro",
  11710. height: math.unit(6, "inches")
  11711. },
  11712. {
  11713. name: "Normal",
  11714. height: math.unit(6 + 3 / 12, "feet"),
  11715. default: true
  11716. },
  11717. {
  11718. name: "Big",
  11719. height: math.unit(104, "feet")
  11720. },
  11721. {
  11722. name: "Macro",
  11723. height: math.unit(944, "feet")
  11724. },
  11725. {
  11726. name: "Macro+",
  11727. height: math.unit(9480, "feet")
  11728. },
  11729. {
  11730. name: "Megamacro",
  11731. height: math.unit(78752, "feet")
  11732. },
  11733. {
  11734. name: "Megamacro+",
  11735. height: math.unit(630128, "feet")
  11736. },
  11737. {
  11738. name: "Megamacro++",
  11739. height: math.unit(3150695, "feet")
  11740. },
  11741. ]
  11742. ))
  11743. characterMakers.push(() => makeCharacter(
  11744. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  11745. {
  11746. front: {
  11747. height: math.unit(7 + 5 / 12, "feet"),
  11748. weight: math.unit(450, "lb"),
  11749. name: "Front",
  11750. image: {
  11751. source: "./media/characters/mocha-aura/front.svg",
  11752. extra: 1907 / 1817,
  11753. bottom: 0.04
  11754. }
  11755. },
  11756. back: {
  11757. height: math.unit(7 + 5 / 12, "feet"),
  11758. weight: math.unit(450, "lb"),
  11759. name: "Back",
  11760. image: {
  11761. source: "./media/characters/mocha-aura/back.svg",
  11762. extra: 1900 / 1825,
  11763. bottom: 0.045
  11764. }
  11765. },
  11766. },
  11767. [
  11768. {
  11769. name: "Nano",
  11770. height: math.unit(1, "nm")
  11771. },
  11772. {
  11773. name: "Megamicro",
  11774. height: math.unit(1, "mm")
  11775. },
  11776. {
  11777. name: "Micro",
  11778. height: math.unit(3, "inches")
  11779. },
  11780. {
  11781. name: "Normal",
  11782. height: math.unit(7 + 5 / 12, "feet"),
  11783. default: true
  11784. },
  11785. {
  11786. name: "Macro",
  11787. height: math.unit(30, "feet")
  11788. },
  11789. {
  11790. name: "Megamacro",
  11791. height: math.unit(3500, "feet")
  11792. },
  11793. {
  11794. name: "Teramacro",
  11795. height: math.unit(500000, "miles")
  11796. },
  11797. {
  11798. name: "Petamacro",
  11799. height: math.unit(50000000000000000, "parsecs")
  11800. },
  11801. ]
  11802. ))
  11803. characterMakers.push(() => makeCharacter(
  11804. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  11805. {
  11806. front: {
  11807. height: math.unit(6, "feet"),
  11808. weight: math.unit(150, "lb"),
  11809. name: "Front",
  11810. image: {
  11811. source: "./media/characters/ilisha-devya/front.svg",
  11812. extra: 1,
  11813. bottom: 0.175
  11814. }
  11815. },
  11816. back: {
  11817. height: math.unit(6, "feet"),
  11818. weight: math.unit(150, "lb"),
  11819. name: "Back",
  11820. image: {
  11821. source: "./media/characters/ilisha-devya/back.svg",
  11822. extra: 1,
  11823. bottom: 0.015
  11824. }
  11825. },
  11826. },
  11827. [
  11828. {
  11829. name: "Macro",
  11830. height: math.unit(500, "feet"),
  11831. default: true
  11832. },
  11833. {
  11834. name: "Megamacro",
  11835. height: math.unit(10, "miles")
  11836. },
  11837. {
  11838. name: "Gigamacro",
  11839. height: math.unit(100000, "miles")
  11840. },
  11841. {
  11842. name: "Examacro",
  11843. height: math.unit(1e9, "lightyears")
  11844. },
  11845. {
  11846. name: "Omniversal",
  11847. height: math.unit(1e33, "lightyears")
  11848. },
  11849. {
  11850. name: "Beyond Infinite",
  11851. height: math.unit(1e100, "lightyears")
  11852. },
  11853. ]
  11854. ))
  11855. characterMakers.push(() => makeCharacter(
  11856. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  11857. {
  11858. Side: {
  11859. height: math.unit(6, "feet"),
  11860. weight: math.unit(150, "lb"),
  11861. name: "Side",
  11862. image: {
  11863. source: "./media/characters/mira/side.svg",
  11864. extra: 900 / 799,
  11865. bottom: 0.02
  11866. }
  11867. },
  11868. },
  11869. [
  11870. {
  11871. name: "Human Size",
  11872. height: math.unit(6, "feet")
  11873. },
  11874. {
  11875. name: "Macro",
  11876. height: math.unit(100, "feet"),
  11877. default: true
  11878. },
  11879. {
  11880. name: "Megamacro",
  11881. height: math.unit(10, "miles")
  11882. },
  11883. {
  11884. name: "Gigamacro",
  11885. height: math.unit(25000, "miles")
  11886. },
  11887. {
  11888. name: "Teramacro",
  11889. height: math.unit(300, "AU")
  11890. },
  11891. {
  11892. name: "Full Size",
  11893. height: math.unit(4.5e10, "lightyears")
  11894. },
  11895. ]
  11896. ))
  11897. characterMakers.push(() => makeCharacter(
  11898. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  11899. {
  11900. front: {
  11901. height: math.unit(6, "feet"),
  11902. weight: math.unit(150, "lb"),
  11903. name: "Front",
  11904. image: {
  11905. source: "./media/characters/holly/front.svg",
  11906. extra: 639 / 606
  11907. }
  11908. },
  11909. back: {
  11910. height: math.unit(6, "feet"),
  11911. weight: math.unit(150, "lb"),
  11912. name: "Back",
  11913. image: {
  11914. source: "./media/characters/holly/back.svg",
  11915. extra: 623 / 598
  11916. }
  11917. },
  11918. frontWorking: {
  11919. height: math.unit(6, "feet"),
  11920. weight: math.unit(150, "lb"),
  11921. name: "Front (Working)",
  11922. image: {
  11923. source: "./media/characters/holly/front-working.svg",
  11924. extra: 607 / 577,
  11925. bottom: 0.048
  11926. }
  11927. },
  11928. },
  11929. [
  11930. {
  11931. name: "Normal",
  11932. height: math.unit(12 + 3 / 12, "feet"),
  11933. default: true
  11934. },
  11935. ]
  11936. ))
  11937. characterMakers.push(() => makeCharacter(
  11938. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  11939. {
  11940. front: {
  11941. height: math.unit(6, "feet"),
  11942. weight: math.unit(150, "lb"),
  11943. name: "Front",
  11944. image: {
  11945. source: "./media/characters/porter/front.svg",
  11946. extra: 1,
  11947. bottom: 0.01
  11948. }
  11949. },
  11950. frontRobes: {
  11951. height: math.unit(6, "feet"),
  11952. weight: math.unit(150, "lb"),
  11953. name: "Front (Robes)",
  11954. image: {
  11955. source: "./media/characters/porter/front-robes.svg",
  11956. extra: 1.01,
  11957. bottom: 0.01
  11958. }
  11959. },
  11960. },
  11961. [
  11962. {
  11963. name: "Normal",
  11964. height: math.unit(11 + 9 / 12, "feet"),
  11965. default: true
  11966. },
  11967. ]
  11968. ))
  11969. characterMakers.push(() => makeCharacter(
  11970. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  11971. {
  11972. legendary: {
  11973. height: math.unit(6, "feet"),
  11974. weight: math.unit(150, "lb"),
  11975. name: "Legendary",
  11976. image: {
  11977. source: "./media/characters/lucy/legendary.svg",
  11978. extra: 1355 / 1100,
  11979. bottom: 0.045
  11980. }
  11981. },
  11982. },
  11983. [
  11984. {
  11985. name: "Legendary",
  11986. height: math.unit(86882 * 2, "miles"),
  11987. default: true
  11988. },
  11989. ]
  11990. ))
  11991. characterMakers.push(() => makeCharacter(
  11992. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  11993. {
  11994. front: {
  11995. height: math.unit(6, "feet"),
  11996. weight: math.unit(150, "lb"),
  11997. name: "Front",
  11998. image: {
  11999. source: "./media/characters/drusilla/front.svg",
  12000. extra: 678 / 635,
  12001. bottom: 0.03
  12002. }
  12003. },
  12004. back: {
  12005. height: math.unit(6, "feet"),
  12006. weight: math.unit(150, "lb"),
  12007. name: "Back",
  12008. image: {
  12009. source: "./media/characters/drusilla/back.svg",
  12010. extra: 678 / 635,
  12011. bottom: 0.005
  12012. }
  12013. },
  12014. },
  12015. [
  12016. {
  12017. name: "Macro",
  12018. height: math.unit(100, "feet")
  12019. },
  12020. {
  12021. name: "Canon Height",
  12022. height: math.unit(2000, "feet"),
  12023. default: true
  12024. },
  12025. ]
  12026. ))
  12027. characterMakers.push(() => makeCharacter(
  12028. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12029. {
  12030. front: {
  12031. height: math.unit(6, "feet"),
  12032. weight: math.unit(180, "lb"),
  12033. name: "Front",
  12034. image: {
  12035. source: "./media/characters/renard-thatch/front.svg",
  12036. extra: 2411 / 2275,
  12037. bottom: 0.01
  12038. }
  12039. },
  12040. frontPosing: {
  12041. height: math.unit(6, "feet"),
  12042. weight: math.unit(180, "lb"),
  12043. name: "Front (Posing)",
  12044. image: {
  12045. source: "./media/characters/renard-thatch/front-posing.svg",
  12046. extra: 2381 / 2261,
  12047. bottom: 0.01
  12048. }
  12049. },
  12050. back: {
  12051. height: math.unit(6, "feet"),
  12052. weight: math.unit(180, "lb"),
  12053. name: "Back",
  12054. image: {
  12055. source: "./media/characters/renard-thatch/back.svg",
  12056. extra: 2428 / 2288
  12057. }
  12058. },
  12059. },
  12060. [
  12061. {
  12062. name: "Micro",
  12063. height: math.unit(3, "inches")
  12064. },
  12065. {
  12066. name: "Default",
  12067. height: math.unit(6, "feet"),
  12068. default: true
  12069. },
  12070. {
  12071. name: "Macro",
  12072. height: math.unit(75, "feet")
  12073. },
  12074. ]
  12075. ))
  12076. characterMakers.push(() => makeCharacter(
  12077. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12078. {
  12079. front: {
  12080. height: math.unit(1450, "feet"),
  12081. weight: math.unit(1.21e6, "tons"),
  12082. name: "Front",
  12083. image: {
  12084. source: "./media/characters/sekvra/front.svg",
  12085. extra: 1,
  12086. bottom: 0.03
  12087. }
  12088. },
  12089. frontClothed: {
  12090. height: math.unit(1450, "feet"),
  12091. weight: math.unit(1.21e6, "tons"),
  12092. name: "Front (Clothed)",
  12093. image: {
  12094. source: "./media/characters/sekvra/front-clothed.svg",
  12095. extra: 1,
  12096. bottom: 0.03
  12097. }
  12098. },
  12099. side: {
  12100. height: math.unit(1450, "feet"),
  12101. weight: math.unit(1.21e6, "tons"),
  12102. name: "Side",
  12103. image: {
  12104. source: "./media/characters/sekvra/side.svg",
  12105. extra: 1,
  12106. bottom: 0.025
  12107. }
  12108. },
  12109. back: {
  12110. height: math.unit(1450, "feet"),
  12111. weight: math.unit(1.21e6, "tons"),
  12112. name: "Back",
  12113. image: {
  12114. source: "./media/characters/sekvra/back.svg",
  12115. extra: 1,
  12116. bottom: 0.005
  12117. }
  12118. },
  12119. },
  12120. [
  12121. {
  12122. name: "Macro",
  12123. height: math.unit(1450, "feet"),
  12124. default: true
  12125. },
  12126. {
  12127. name: "Megamacro",
  12128. height: math.unit(15000, "feet")
  12129. },
  12130. ]
  12131. ))
  12132. characterMakers.push(() => makeCharacter(
  12133. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12134. {
  12135. front: {
  12136. height: math.unit(6, "feet"),
  12137. weight: math.unit(150, "lb"),
  12138. name: "Front",
  12139. image: {
  12140. source: "./media/characters/carmine/front.svg",
  12141. extra: 1,
  12142. bottom: 0.035
  12143. }
  12144. },
  12145. frontArmor: {
  12146. height: math.unit(6, "feet"),
  12147. weight: math.unit(150, "lb"),
  12148. name: "Front (Armor)",
  12149. image: {
  12150. source: "./media/characters/carmine/front-armor.svg",
  12151. extra: 1,
  12152. bottom: 0.035
  12153. }
  12154. },
  12155. },
  12156. [
  12157. {
  12158. name: "Large",
  12159. height: math.unit(1, "mile")
  12160. },
  12161. {
  12162. name: "Huge",
  12163. height: math.unit(40, "miles"),
  12164. default: true
  12165. },
  12166. {
  12167. name: "Colossal",
  12168. height: math.unit(2500, "miles")
  12169. },
  12170. ]
  12171. ))
  12172. characterMakers.push(() => makeCharacter(
  12173. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12174. {
  12175. front: {
  12176. height: math.unit(6, "feet"),
  12177. weight: math.unit(150, "lb"),
  12178. name: "Front",
  12179. image: {
  12180. source: "./media/characters/elyssia/front.svg",
  12181. extra: 2201 / 2035,
  12182. bottom: 0.05
  12183. }
  12184. },
  12185. frontClothed: {
  12186. height: math.unit(6, "feet"),
  12187. weight: math.unit(150, "lb"),
  12188. name: "Front (Clothed)",
  12189. image: {
  12190. source: "./media/characters/elyssia/front-clothed.svg",
  12191. extra: 2201 / 2035,
  12192. bottom: 0.05
  12193. }
  12194. },
  12195. back: {
  12196. height: math.unit(6, "feet"),
  12197. weight: math.unit(150, "lb"),
  12198. name: "Back",
  12199. image: {
  12200. source: "./media/characters/elyssia/back.svg",
  12201. extra: 2201 / 2035,
  12202. bottom: 0.013
  12203. }
  12204. },
  12205. },
  12206. [
  12207. {
  12208. name: "Smaller",
  12209. height: math.unit(150, "feet")
  12210. },
  12211. {
  12212. name: "Standard",
  12213. height: math.unit(1400, "feet"),
  12214. default: true
  12215. },
  12216. {
  12217. name: "Distracted",
  12218. height: math.unit(15000, "feet")
  12219. },
  12220. ]
  12221. ))
  12222. characterMakers.push(() => makeCharacter(
  12223. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12224. {
  12225. front: {
  12226. height: math.unit(7 + 4 / 12, "feet"),
  12227. weight: math.unit(500, "lb"),
  12228. name: "Front",
  12229. image: {
  12230. source: "./media/characters/geno-maxwell/front.svg",
  12231. extra: 2207 / 2040,
  12232. bottom: 0.015
  12233. }
  12234. },
  12235. },
  12236. [
  12237. {
  12238. name: "Micro",
  12239. height: math.unit(3, "inches")
  12240. },
  12241. {
  12242. name: "Normal",
  12243. height: math.unit(7 + 4 / 12, "feet"),
  12244. default: true
  12245. },
  12246. {
  12247. name: "Macro",
  12248. height: math.unit(220, "feet")
  12249. },
  12250. {
  12251. name: "Megamacro",
  12252. height: math.unit(11, "miles")
  12253. },
  12254. ]
  12255. ))
  12256. characterMakers.push(() => makeCharacter(
  12257. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12258. {
  12259. front: {
  12260. height: math.unit(7 + 4 / 12, "feet"),
  12261. weight: math.unit(500, "lb"),
  12262. name: "Front",
  12263. image: {
  12264. source: "./media/characters/regena-maxwell/front.svg",
  12265. extra: 3115 / 2770,
  12266. bottom: 0.02
  12267. }
  12268. },
  12269. },
  12270. [
  12271. {
  12272. name: "Normal",
  12273. height: math.unit(7 + 4 / 12, "feet"),
  12274. default: true
  12275. },
  12276. {
  12277. name: "Macro",
  12278. height: math.unit(220, "feet")
  12279. },
  12280. {
  12281. name: "Megamacro",
  12282. height: math.unit(11, "miles")
  12283. },
  12284. ]
  12285. ))
  12286. characterMakers.push(() => makeCharacter(
  12287. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12288. {
  12289. front: {
  12290. height: math.unit(6, "feet"),
  12291. weight: math.unit(150, "lb"),
  12292. name: "Front",
  12293. image: {
  12294. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12295. extra: 860 / 690,
  12296. bottom: 0.03
  12297. }
  12298. },
  12299. },
  12300. [
  12301. {
  12302. name: "Normal",
  12303. height: math.unit(1.7, "meters"),
  12304. default: true
  12305. },
  12306. ]
  12307. ))
  12308. characterMakers.push(() => makeCharacter(
  12309. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12310. {
  12311. front: {
  12312. height: math.unit(6, "feet"),
  12313. weight: math.unit(150, "lb"),
  12314. name: "Front",
  12315. image: {
  12316. source: "./media/characters/quilly/front.svg",
  12317. extra: 890 / 776
  12318. }
  12319. },
  12320. },
  12321. [
  12322. {
  12323. name: "Gigamacro",
  12324. height: math.unit(404090, "miles"),
  12325. default: true
  12326. },
  12327. ]
  12328. ))
  12329. characterMakers.push(() => makeCharacter(
  12330. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12331. {
  12332. front: {
  12333. height: math.unit(7 + 8 / 12, "feet"),
  12334. weight: math.unit(350, "lb"),
  12335. name: "Front",
  12336. image: {
  12337. source: "./media/characters/tempest/front.svg",
  12338. extra: 1175 / 1086,
  12339. bottom: 0.02
  12340. }
  12341. },
  12342. },
  12343. [
  12344. {
  12345. name: "Normal",
  12346. height: math.unit(7 + 8 / 12, "feet"),
  12347. default: true
  12348. },
  12349. ]
  12350. ))
  12351. characterMakers.push(() => makeCharacter(
  12352. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12353. {
  12354. side: {
  12355. height: math.unit(4 + 5 / 12, "feet"),
  12356. weight: math.unit(80, "lb"),
  12357. name: "Side",
  12358. image: {
  12359. source: "./media/characters/rodger/side.svg",
  12360. extra: 1235 / 1118
  12361. }
  12362. },
  12363. },
  12364. [
  12365. {
  12366. name: "Micro",
  12367. height: math.unit(1, "inch")
  12368. },
  12369. {
  12370. name: "Normal",
  12371. height: math.unit(4 + 5 / 12, "feet"),
  12372. default: true
  12373. },
  12374. {
  12375. name: "Macro",
  12376. height: math.unit(120, "feet")
  12377. },
  12378. ]
  12379. ))
  12380. characterMakers.push(() => makeCharacter(
  12381. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12382. {
  12383. front: {
  12384. height: math.unit(6, "feet"),
  12385. weight: math.unit(150, "lb"),
  12386. name: "Front",
  12387. image: {
  12388. source: "./media/characters/danyel/front.svg",
  12389. extra: 1185 / 1123,
  12390. bottom: 0.05
  12391. }
  12392. },
  12393. },
  12394. [
  12395. {
  12396. name: "Shrunken",
  12397. height: math.unit(0.5, "mm")
  12398. },
  12399. {
  12400. name: "Micro",
  12401. height: math.unit(1, "mm"),
  12402. default: true
  12403. },
  12404. {
  12405. name: "Upsized",
  12406. height: math.unit(5 + 5 / 12, "feet")
  12407. },
  12408. ]
  12409. ))
  12410. characterMakers.push(() => makeCharacter(
  12411. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12412. {
  12413. front: {
  12414. height: math.unit(5 + 6 / 12, "feet"),
  12415. weight: math.unit(200, "lb"),
  12416. name: "Front",
  12417. image: {
  12418. source: "./media/characters/vivian-bijoux/front.svg",
  12419. extra: 1,
  12420. bottom: 0.072
  12421. }
  12422. },
  12423. },
  12424. [
  12425. {
  12426. name: "Normal",
  12427. height: math.unit(5 + 6 / 12, "feet"),
  12428. default: true
  12429. },
  12430. {
  12431. name: "Bad Dream",
  12432. height: math.unit(500, "feet")
  12433. },
  12434. {
  12435. name: "Nightmare",
  12436. height: math.unit(500, "miles")
  12437. },
  12438. ]
  12439. ))
  12440. characterMakers.push(() => makeCharacter(
  12441. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12442. {
  12443. front: {
  12444. height: math.unit(6 + 1 / 12, "feet"),
  12445. weight: math.unit(260, "lb"),
  12446. name: "Front",
  12447. image: {
  12448. source: "./media/characters/zeta/front.svg",
  12449. extra: 1968 / 1889,
  12450. bottom: 0.06
  12451. }
  12452. },
  12453. back: {
  12454. height: math.unit(6 + 1 / 12, "feet"),
  12455. weight: math.unit(260, "lb"),
  12456. name: "Back",
  12457. image: {
  12458. source: "./media/characters/zeta/back.svg",
  12459. extra: 1944 / 1858,
  12460. bottom: 0.03
  12461. }
  12462. },
  12463. hand: {
  12464. height: math.unit(1.112, "feet"),
  12465. name: "Hand",
  12466. image: {
  12467. source: "./media/characters/zeta/hand.svg"
  12468. }
  12469. },
  12470. foot: {
  12471. height: math.unit(1.48, "feet"),
  12472. name: "Foot",
  12473. image: {
  12474. source: "./media/characters/zeta/foot.svg"
  12475. }
  12476. },
  12477. },
  12478. [
  12479. {
  12480. name: "Micro",
  12481. height: math.unit(6, "inches")
  12482. },
  12483. {
  12484. name: "Normal",
  12485. height: math.unit(6 + 1 / 12, "feet"),
  12486. default: true
  12487. },
  12488. {
  12489. name: "Macro",
  12490. height: math.unit(20, "feet")
  12491. },
  12492. ]
  12493. ))
  12494. characterMakers.push(() => makeCharacter(
  12495. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12496. {
  12497. front: {
  12498. height: math.unit(6, "feet"),
  12499. weight: math.unit(150, "lb"),
  12500. name: "Front",
  12501. image: {
  12502. source: "./media/characters/jamie-larsen/front.svg",
  12503. extra: 962 / 933,
  12504. bottom: 0.02
  12505. }
  12506. },
  12507. back: {
  12508. height: math.unit(6, "feet"),
  12509. weight: math.unit(150, "lb"),
  12510. name: "Back",
  12511. image: {
  12512. source: "./media/characters/jamie-larsen/back.svg",
  12513. extra: 997 / 946
  12514. }
  12515. },
  12516. },
  12517. [
  12518. {
  12519. name: "Macro",
  12520. height: math.unit(28 + 7 / 12, "feet"),
  12521. default: true
  12522. },
  12523. {
  12524. name: "Macro+",
  12525. height: math.unit(180, "feet")
  12526. },
  12527. {
  12528. name: "Megamacro",
  12529. height: math.unit(10, "miles")
  12530. },
  12531. {
  12532. name: "Gigamacro",
  12533. height: math.unit(200000, "miles")
  12534. },
  12535. ]
  12536. ))
  12537. characterMakers.push(() => makeCharacter(
  12538. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12539. {
  12540. front: {
  12541. height: math.unit(6, "feet"),
  12542. weight: math.unit(120, "lb"),
  12543. name: "Front",
  12544. image: {
  12545. source: "./media/characters/vance/front.svg",
  12546. extra: 1980 / 1890,
  12547. bottom: 0.09
  12548. }
  12549. },
  12550. back: {
  12551. height: math.unit(6, "feet"),
  12552. weight: math.unit(120, "lb"),
  12553. name: "Back",
  12554. image: {
  12555. source: "./media/characters/vance/back.svg",
  12556. extra: 2081 / 1994,
  12557. bottom: 0.014
  12558. }
  12559. },
  12560. hand: {
  12561. height: math.unit(0.88, "feet"),
  12562. name: "Hand",
  12563. image: {
  12564. source: "./media/characters/vance/hand.svg"
  12565. }
  12566. },
  12567. foot: {
  12568. height: math.unit(0.64, "feet"),
  12569. name: "Foot",
  12570. image: {
  12571. source: "./media/characters/vance/foot.svg"
  12572. }
  12573. },
  12574. },
  12575. [
  12576. {
  12577. name: "Small",
  12578. height: math.unit(90, "feet"),
  12579. default: true
  12580. },
  12581. {
  12582. name: "Macro",
  12583. height: math.unit(100, "meters")
  12584. },
  12585. {
  12586. name: "Megamacro",
  12587. height: math.unit(15, "miles")
  12588. },
  12589. ]
  12590. ))
  12591. characterMakers.push(() => makeCharacter(
  12592. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12593. {
  12594. front: {
  12595. height: math.unit(6, "feet"),
  12596. weight: math.unit(180, "lb"),
  12597. name: "Front",
  12598. image: {
  12599. source: "./media/characters/xochitl/front.svg",
  12600. extra: 2297 / 2261,
  12601. bottom: 0.065
  12602. }
  12603. },
  12604. back: {
  12605. height: math.unit(6, "feet"),
  12606. weight: math.unit(180, "lb"),
  12607. name: "Back",
  12608. image: {
  12609. source: "./media/characters/xochitl/back.svg",
  12610. extra: 2386 / 2354,
  12611. bottom: 0.01
  12612. }
  12613. },
  12614. foot: {
  12615. height: math.unit(6 / 5 * 1.15, "feet"),
  12616. weight: math.unit(150, "lb"),
  12617. name: "Foot",
  12618. image: {
  12619. source: "./media/characters/xochitl/foot.svg"
  12620. }
  12621. },
  12622. },
  12623. [
  12624. {
  12625. name: "Macro",
  12626. height: math.unit(80, "feet")
  12627. },
  12628. {
  12629. name: "Macro+",
  12630. height: math.unit(400, "feet"),
  12631. default: true
  12632. },
  12633. {
  12634. name: "Gigamacro",
  12635. height: math.unit(80000, "miles")
  12636. },
  12637. {
  12638. name: "Gigamacro+",
  12639. height: math.unit(400000, "miles")
  12640. },
  12641. {
  12642. name: "Teramacro",
  12643. height: math.unit(300, "AU")
  12644. },
  12645. ]
  12646. ))
  12647. characterMakers.push(() => makeCharacter(
  12648. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12649. {
  12650. front: {
  12651. height: math.unit(6, "feet"),
  12652. weight: math.unit(150, "lb"),
  12653. name: "Front",
  12654. image: {
  12655. source: "./media/characters/vincent/front.svg",
  12656. extra: 1130 / 1080,
  12657. bottom: 0.055
  12658. }
  12659. },
  12660. beak: {
  12661. height: math.unit(6 * 0.1, "feet"),
  12662. name: "Beak",
  12663. image: {
  12664. source: "./media/characters/vincent/beak.svg"
  12665. }
  12666. },
  12667. hand: {
  12668. height: math.unit(6 * 0.85, "feet"),
  12669. weight: math.unit(150, "lb"),
  12670. name: "Hand",
  12671. image: {
  12672. source: "./media/characters/vincent/hand.svg"
  12673. }
  12674. },
  12675. foot: {
  12676. height: math.unit(6 * 0.19, "feet"),
  12677. weight: math.unit(150, "lb"),
  12678. name: "Foot",
  12679. image: {
  12680. source: "./media/characters/vincent/foot.svg"
  12681. }
  12682. },
  12683. },
  12684. [
  12685. {
  12686. name: "Base",
  12687. height: math.unit(6 + 5 / 12, "feet"),
  12688. default: true
  12689. },
  12690. {
  12691. name: "Macro",
  12692. height: math.unit(300, "feet")
  12693. },
  12694. {
  12695. name: "Megamacro",
  12696. height: math.unit(2, "miles")
  12697. },
  12698. {
  12699. name: "Gigamacro",
  12700. height: math.unit(1000, "miles")
  12701. },
  12702. ]
  12703. ))
  12704. characterMakers.push(() => makeCharacter(
  12705. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  12706. {
  12707. front: {
  12708. height: math.unit(6 + 2 / 12, "feet"),
  12709. weight: math.unit(265, "lb"),
  12710. name: "Front",
  12711. image: {
  12712. source: "./media/characters/jay/front.svg",
  12713. extra: 1510 / 1430,
  12714. bottom: 0.042
  12715. }
  12716. },
  12717. back: {
  12718. height: math.unit(6 + 2 / 12, "feet"),
  12719. weight: math.unit(265, "lb"),
  12720. name: "Back",
  12721. image: {
  12722. source: "./media/characters/jay/back.svg",
  12723. extra: 1510 / 1430,
  12724. bottom: 0.025
  12725. }
  12726. },
  12727. clothed: {
  12728. height: math.unit(6 + 2 / 12, "feet"),
  12729. weight: math.unit(265, "lb"),
  12730. name: "Front (Clothed)",
  12731. image: {
  12732. source: "./media/characters/jay/clothed.svg",
  12733. extra: 744 / 699,
  12734. bottom: 0.043
  12735. }
  12736. },
  12737. head: {
  12738. height: math.unit(1.772, "feet"),
  12739. name: "Head",
  12740. image: {
  12741. source: "./media/characters/jay/head.svg"
  12742. }
  12743. },
  12744. sizeRay: {
  12745. height: math.unit(1.331, "feet"),
  12746. name: "Size Ray",
  12747. image: {
  12748. source: "./media/characters/jay/size-ray.svg"
  12749. }
  12750. },
  12751. },
  12752. [
  12753. {
  12754. name: "Micro",
  12755. height: math.unit(1, "inch")
  12756. },
  12757. {
  12758. name: "Normal",
  12759. height: math.unit(6 + 2 / 12, "feet"),
  12760. default: true
  12761. },
  12762. {
  12763. name: "Macro",
  12764. height: math.unit(1, "mile")
  12765. },
  12766. {
  12767. name: "Megamacro",
  12768. height: math.unit(100, "miles")
  12769. },
  12770. ]
  12771. ))
  12772. characterMakers.push(() => makeCharacter(
  12773. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  12774. {
  12775. front: {
  12776. height: math.unit(2, "meters"),
  12777. weight: math.unit(500, "kg"),
  12778. name: "Front",
  12779. image: {
  12780. source: "./media/characters/coatl/front.svg",
  12781. extra: 3948 / 3500,
  12782. bottom: 0.082
  12783. }
  12784. },
  12785. },
  12786. [
  12787. {
  12788. name: "Normal",
  12789. height: math.unit(4, "meters")
  12790. },
  12791. {
  12792. name: "Macro",
  12793. height: math.unit(100, "meters"),
  12794. default: true
  12795. },
  12796. {
  12797. name: "Macro+",
  12798. height: math.unit(300, "meters")
  12799. },
  12800. {
  12801. name: "Megamacro",
  12802. height: math.unit(3, "gigameters")
  12803. },
  12804. {
  12805. name: "Megamacro+",
  12806. height: math.unit(300, "terameters")
  12807. },
  12808. {
  12809. name: "Megamacro++",
  12810. height: math.unit(3, "lightyears")
  12811. },
  12812. ]
  12813. ))
  12814. characterMakers.push(() => makeCharacter(
  12815. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  12816. {
  12817. front: {
  12818. height: math.unit(6, "feet"),
  12819. weight: math.unit(50, "kg"),
  12820. name: "front",
  12821. image: {
  12822. source: "./media/characters/shiroryu/front.svg",
  12823. extra: 1990 / 1935
  12824. }
  12825. },
  12826. },
  12827. [
  12828. {
  12829. name: "Mortal Mingling",
  12830. height: math.unit(3, "meters")
  12831. },
  12832. {
  12833. name: "Kaiju-ish",
  12834. height: math.unit(250, "meters")
  12835. },
  12836. {
  12837. name: "Somewhat Godly",
  12838. height: math.unit(400, "km"),
  12839. default: true
  12840. },
  12841. {
  12842. name: "Planetary",
  12843. height: math.unit(300, "megameters")
  12844. },
  12845. {
  12846. name: "Galaxy-dwarfing",
  12847. height: math.unit(450, "kiloparsecs")
  12848. },
  12849. {
  12850. name: "Universe Eater",
  12851. height: math.unit(150, "gigaparsecs")
  12852. },
  12853. {
  12854. name: "Almost Immeasurable",
  12855. height: math.unit(1.3e266, "yottaparsecs")
  12856. },
  12857. ]
  12858. ))
  12859. characterMakers.push(() => makeCharacter(
  12860. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  12861. {
  12862. front: {
  12863. height: math.unit(6, "feet"),
  12864. weight: math.unit(150, "lb"),
  12865. name: "Front",
  12866. image: {
  12867. source: "./media/characters/umeko/front.svg",
  12868. extra: 1,
  12869. bottom: 0.019
  12870. }
  12871. },
  12872. frontArmored: {
  12873. height: math.unit(6, "feet"),
  12874. weight: math.unit(150, "lb"),
  12875. name: "Front (Armored)",
  12876. image: {
  12877. source: "./media/characters/umeko/front-armored.svg",
  12878. extra: 1,
  12879. bottom: 0.021
  12880. }
  12881. },
  12882. },
  12883. [
  12884. {
  12885. name: "Macro",
  12886. height: math.unit(220, "feet"),
  12887. default: true
  12888. },
  12889. {
  12890. name: "Guardian Dragon",
  12891. height: math.unit(50, "miles")
  12892. },
  12893. {
  12894. name: "Cosmic",
  12895. height: math.unit(800000, "miles")
  12896. },
  12897. ]
  12898. ))
  12899. characterMakers.push(() => makeCharacter(
  12900. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  12901. {
  12902. front: {
  12903. height: math.unit(6, "feet"),
  12904. weight: math.unit(150, "lb"),
  12905. name: "Front",
  12906. image: {
  12907. source: "./media/characters/cassidy/front.svg",
  12908. extra: 1,
  12909. bottom: 0.043
  12910. }
  12911. },
  12912. },
  12913. [
  12914. {
  12915. name: "Canon Height",
  12916. height: math.unit(120, "feet"),
  12917. default: true
  12918. },
  12919. {
  12920. name: "Macro+",
  12921. height: math.unit(400, "feet")
  12922. },
  12923. {
  12924. name: "Macro++",
  12925. height: math.unit(4000, "feet")
  12926. },
  12927. {
  12928. name: "Megamacro",
  12929. height: math.unit(3, "miles")
  12930. },
  12931. ]
  12932. ))
  12933. characterMakers.push(() => makeCharacter(
  12934. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  12935. {
  12936. front: {
  12937. height: math.unit(6, "feet"),
  12938. weight: math.unit(150, "lb"),
  12939. name: "Front",
  12940. image: {
  12941. source: "./media/characters/isaac/front.svg",
  12942. extra: 896 / 815,
  12943. bottom: 0.11
  12944. }
  12945. },
  12946. },
  12947. [
  12948. {
  12949. name: "Human Size",
  12950. height: math.unit(8, "feet"),
  12951. default: true
  12952. },
  12953. {
  12954. name: "Macro",
  12955. height: math.unit(400, "feet")
  12956. },
  12957. {
  12958. name: "Megamacro",
  12959. height: math.unit(50, "miles")
  12960. },
  12961. {
  12962. name: "Canon Height",
  12963. height: math.unit(200, "AU")
  12964. },
  12965. ]
  12966. ))
  12967. characterMakers.push(() => makeCharacter(
  12968. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  12969. {
  12970. front: {
  12971. height: math.unit(6, "feet"),
  12972. weight: math.unit(72, "kg"),
  12973. name: "Front",
  12974. image: {
  12975. source: "./media/characters/sleekit/front.svg",
  12976. extra: 4693 / 4487,
  12977. bottom: 0.012
  12978. }
  12979. },
  12980. },
  12981. [
  12982. {
  12983. name: "Minimum Height",
  12984. height: math.unit(10, "meters")
  12985. },
  12986. {
  12987. name: "Smaller",
  12988. height: math.unit(25, "meters")
  12989. },
  12990. {
  12991. name: "Larger",
  12992. height: math.unit(38, "meters"),
  12993. default: true
  12994. },
  12995. {
  12996. name: "Maximum height",
  12997. height: math.unit(100, "meters")
  12998. },
  12999. ]
  13000. ))
  13001. characterMakers.push(() => makeCharacter(
  13002. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13003. {
  13004. front: {
  13005. height: math.unit(6, "feet"),
  13006. weight: math.unit(150, "lb"),
  13007. name: "Front",
  13008. image: {
  13009. source: "./media/characters/nillia/front.svg",
  13010. extra: 2195 / 2037,
  13011. bottom: 0.005
  13012. }
  13013. },
  13014. back: {
  13015. height: math.unit(6, "feet"),
  13016. weight: math.unit(150, "lb"),
  13017. name: "Back",
  13018. image: {
  13019. source: "./media/characters/nillia/back.svg",
  13020. extra: 2195 / 2037,
  13021. bottom: 0.005
  13022. }
  13023. },
  13024. },
  13025. [
  13026. {
  13027. name: "Canon Height",
  13028. height: math.unit(489, "feet"),
  13029. default: true
  13030. }
  13031. ]
  13032. ))
  13033. characterMakers.push(() => makeCharacter(
  13034. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13035. {
  13036. front: {
  13037. height: math.unit(6, "feet"),
  13038. weight: math.unit(150, "lb"),
  13039. name: "Front",
  13040. image: {
  13041. source: "./media/characters/mesmyriza/front.svg",
  13042. extra: 2067 / 1784,
  13043. bottom: 0.035
  13044. }
  13045. },
  13046. foot: {
  13047. height: math.unit(6 / (250 / 35), "feet"),
  13048. name: "Foot",
  13049. image: {
  13050. source: "./media/characters/mesmyriza/foot.svg"
  13051. }
  13052. },
  13053. },
  13054. [
  13055. {
  13056. name: "Macro",
  13057. height: math.unit(457, "meters"),
  13058. default: true
  13059. },
  13060. {
  13061. name: "Megamacro",
  13062. height: math.unit(8, "megameters")
  13063. },
  13064. ]
  13065. ))
  13066. characterMakers.push(() => makeCharacter(
  13067. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13068. {
  13069. front: {
  13070. height: math.unit(6, "feet"),
  13071. weight: math.unit(250, "lb"),
  13072. name: "Front",
  13073. image: {
  13074. source: "./media/characters/saudade/front.svg",
  13075. extra: 1172 / 1139,
  13076. bottom: 0.035
  13077. }
  13078. },
  13079. },
  13080. [
  13081. {
  13082. name: "Micro",
  13083. height: math.unit(3, "inches")
  13084. },
  13085. {
  13086. name: "Normal",
  13087. height: math.unit(6, "feet"),
  13088. default: true
  13089. },
  13090. {
  13091. name: "Macro",
  13092. height: math.unit(50, "feet")
  13093. },
  13094. {
  13095. name: "Megamacro",
  13096. height: math.unit(2800, "feet")
  13097. },
  13098. ]
  13099. ))
  13100. characterMakers.push(() => makeCharacter(
  13101. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13102. {
  13103. front: {
  13104. height: math.unit(5 + 4 / 12, "feet"),
  13105. weight: math.unit(100, "lb"),
  13106. name: "Front",
  13107. image: {
  13108. source: "./media/characters/keireer/front.svg",
  13109. extra: 716 / 666,
  13110. bottom: 0.05
  13111. }
  13112. },
  13113. },
  13114. [
  13115. {
  13116. name: "Normal",
  13117. height: math.unit(5 + 4 / 12, "feet"),
  13118. default: true
  13119. },
  13120. ]
  13121. ))
  13122. characterMakers.push(() => makeCharacter(
  13123. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13124. {
  13125. front: {
  13126. height: math.unit(6, "feet"),
  13127. weight: math.unit(90, "kg"),
  13128. name: "Front",
  13129. image: {
  13130. source: "./media/characters/mirja/front.svg",
  13131. extra: 1789 / 1683,
  13132. bottom: 0.05
  13133. }
  13134. },
  13135. frontDressed: {
  13136. height: math.unit(6, "feet"),
  13137. weight: math.unit(90, "lb"),
  13138. name: "Front (Dressed)",
  13139. image: {
  13140. source: "./media/characters/mirja/front-dressed.svg",
  13141. extra: 1789 / 1683,
  13142. bottom: 0.05
  13143. }
  13144. },
  13145. back: {
  13146. height: math.unit(6, "feet"),
  13147. weight: math.unit(90, "lb"),
  13148. name: "Back",
  13149. image: {
  13150. source: "./media/characters/mirja/back.svg",
  13151. extra: 953 / 917,
  13152. bottom: 0.017
  13153. }
  13154. },
  13155. },
  13156. [
  13157. {
  13158. name: "\"Incognito\"",
  13159. height: math.unit(3, "meters")
  13160. },
  13161. {
  13162. name: "Strolling Size",
  13163. height: math.unit(15, "km")
  13164. },
  13165. {
  13166. name: "Larger Strolling Size",
  13167. height: math.unit(400, "km")
  13168. },
  13169. {
  13170. name: "Preferred Size",
  13171. height: math.unit(5000, "km")
  13172. },
  13173. {
  13174. name: "True Size",
  13175. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13176. default: true
  13177. },
  13178. ]
  13179. ))
  13180. characterMakers.push(() => makeCharacter(
  13181. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13182. {
  13183. front: {
  13184. height: math.unit(15, "feet"),
  13185. weight: math.unit(880, "kg"),
  13186. name: "Front",
  13187. image: {
  13188. source: "./media/characters/nightraver/front.svg",
  13189. extra: 2444 / 2160,
  13190. bottom: 0.027
  13191. }
  13192. },
  13193. back: {
  13194. height: math.unit(15, "feet"),
  13195. weight: math.unit(880, "kg"),
  13196. name: "Back",
  13197. image: {
  13198. source: "./media/characters/nightraver/back.svg",
  13199. extra: 2309 / 2180,
  13200. bottom: 0.005
  13201. }
  13202. },
  13203. sole: {
  13204. height: math.unit(2.878, "feet"),
  13205. name: "Sole",
  13206. image: {
  13207. source: "./media/characters/nightraver/sole.svg"
  13208. }
  13209. },
  13210. foot: {
  13211. height: math.unit(2.285, "feet"),
  13212. name: "Foot",
  13213. image: {
  13214. source: "./media/characters/nightraver/foot.svg"
  13215. }
  13216. },
  13217. maw: {
  13218. height: math.unit(2.67, "feet"),
  13219. name: "Maw",
  13220. image: {
  13221. source: "./media/characters/nightraver/maw.svg"
  13222. }
  13223. },
  13224. },
  13225. [
  13226. {
  13227. name: "Micro",
  13228. height: math.unit(1, "cm")
  13229. },
  13230. {
  13231. name: "Normal",
  13232. height: math.unit(15, "feet"),
  13233. default: true
  13234. },
  13235. {
  13236. name: "Macro",
  13237. height: math.unit(300, "feet")
  13238. },
  13239. {
  13240. name: "Megamacro",
  13241. height: math.unit(300, "miles")
  13242. },
  13243. {
  13244. name: "Gigamacro",
  13245. height: math.unit(10000, "miles")
  13246. },
  13247. ]
  13248. ))
  13249. characterMakers.push(() => makeCharacter(
  13250. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13251. {
  13252. side: {
  13253. height: math.unit(2, "inches"),
  13254. weight: math.unit(5, "grams"),
  13255. name: "Side",
  13256. image: {
  13257. source: "./media/characters/arc/side.svg"
  13258. }
  13259. },
  13260. },
  13261. [
  13262. {
  13263. name: "Micro",
  13264. height: math.unit(2, "inches"),
  13265. default: true
  13266. },
  13267. ]
  13268. ))
  13269. characterMakers.push(() => makeCharacter(
  13270. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13271. {
  13272. front: {
  13273. height: math.unit(1.1938, "meters"),
  13274. weight: math.unit(54, "kg"),
  13275. name: "Front",
  13276. image: {
  13277. source: "./media/characters/nebula-shahar/front.svg",
  13278. extra: 1642 / 1436,
  13279. bottom: 0.06
  13280. }
  13281. },
  13282. },
  13283. [
  13284. {
  13285. name: "Megamicro",
  13286. height: math.unit(0.3, "mm")
  13287. },
  13288. {
  13289. name: "Micro",
  13290. height: math.unit(3, "cm")
  13291. },
  13292. {
  13293. name: "Normal",
  13294. height: math.unit(138, "cm"),
  13295. default: true
  13296. },
  13297. {
  13298. name: "Macro",
  13299. height: math.unit(30, "m")
  13300. },
  13301. ]
  13302. ))
  13303. characterMakers.push(() => makeCharacter(
  13304. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13305. {
  13306. front: {
  13307. height: math.unit(5.24, "feet"),
  13308. weight: math.unit(150, "lb"),
  13309. name: "Front",
  13310. image: {
  13311. source: "./media/characters/shayla/front.svg",
  13312. extra: 1512 / 1414,
  13313. bottom: 0.01
  13314. }
  13315. },
  13316. back: {
  13317. height: math.unit(5.24, "feet"),
  13318. weight: math.unit(150, "lb"),
  13319. name: "Back",
  13320. image: {
  13321. source: "./media/characters/shayla/back.svg",
  13322. extra: 1512 / 1414
  13323. }
  13324. },
  13325. hand: {
  13326. height: math.unit(0.7781496062992126, "feet"),
  13327. name: "Hand",
  13328. image: {
  13329. source: "./media/characters/shayla/hand.svg"
  13330. }
  13331. },
  13332. foot: {
  13333. height: math.unit(1.4206036745406823, "feet"),
  13334. name: "Foot",
  13335. image: {
  13336. source: "./media/characters/shayla/foot.svg"
  13337. }
  13338. },
  13339. },
  13340. [
  13341. {
  13342. name: "Micro",
  13343. height: math.unit(0.32, "feet")
  13344. },
  13345. {
  13346. name: "Normal",
  13347. height: math.unit(5.24, "feet"),
  13348. default: true
  13349. },
  13350. {
  13351. name: "Macro",
  13352. height: math.unit(492.12, "feet")
  13353. },
  13354. {
  13355. name: "Megamacro",
  13356. height: math.unit(186.41, "miles")
  13357. },
  13358. ]
  13359. ))
  13360. characterMakers.push(() => makeCharacter(
  13361. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13362. {
  13363. front: {
  13364. height: math.unit(2.2, "m"),
  13365. weight: math.unit(120, "kg"),
  13366. name: "Front",
  13367. image: {
  13368. source: "./media/characters/pia-jr/front.svg",
  13369. extra: 1000 / 970,
  13370. bottom: 0.035
  13371. }
  13372. },
  13373. hand: {
  13374. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13375. name: "Hand",
  13376. image: {
  13377. source: "./media/characters/pia-jr/hand.svg"
  13378. }
  13379. },
  13380. paw: {
  13381. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13382. name: "Paw",
  13383. image: {
  13384. source: "./media/characters/pia-jr/paw.svg"
  13385. }
  13386. },
  13387. },
  13388. [
  13389. {
  13390. name: "Micro",
  13391. height: math.unit(1.2, "cm")
  13392. },
  13393. {
  13394. name: "Normal",
  13395. height: math.unit(2.2, "m"),
  13396. default: true
  13397. },
  13398. {
  13399. name: "Macro",
  13400. height: math.unit(180, "m")
  13401. },
  13402. {
  13403. name: "Megamacro",
  13404. height: math.unit(420, "km")
  13405. },
  13406. ]
  13407. ))
  13408. characterMakers.push(() => makeCharacter(
  13409. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13410. {
  13411. front: {
  13412. height: math.unit(2, "m"),
  13413. weight: math.unit(115, "kg"),
  13414. name: "Front",
  13415. image: {
  13416. source: "./media/characters/pia-sr/front.svg",
  13417. extra: 760 / 730,
  13418. bottom: 0.015
  13419. }
  13420. },
  13421. back: {
  13422. height: math.unit(2, "m"),
  13423. weight: math.unit(115, "kg"),
  13424. name: "Back",
  13425. image: {
  13426. source: "./media/characters/pia-sr/back.svg",
  13427. extra: 760 / 730,
  13428. bottom: 0.01
  13429. }
  13430. },
  13431. hand: {
  13432. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13433. name: "Hand",
  13434. image: {
  13435. source: "./media/characters/pia-sr/hand.svg"
  13436. }
  13437. },
  13438. foot: {
  13439. height: math.unit(1.83, "feet"),
  13440. name: "Foot",
  13441. image: {
  13442. source: "./media/characters/pia-sr/foot.svg"
  13443. }
  13444. },
  13445. },
  13446. [
  13447. {
  13448. name: "Micro",
  13449. height: math.unit(88, "mm")
  13450. },
  13451. {
  13452. name: "Normal",
  13453. height: math.unit(2, "m"),
  13454. default: true
  13455. },
  13456. {
  13457. name: "Macro",
  13458. height: math.unit(200, "m")
  13459. },
  13460. {
  13461. name: "Megamacro",
  13462. height: math.unit(420, "km")
  13463. },
  13464. ]
  13465. ))
  13466. characterMakers.push(() => makeCharacter(
  13467. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13468. {
  13469. front: {
  13470. height: math.unit(8 + 2 / 12, "feet"),
  13471. weight: math.unit(300, "lb"),
  13472. name: "Front",
  13473. image: {
  13474. source: "./media/characters/kibibyte/front.svg",
  13475. extra: 2221 / 2098,
  13476. bottom: 0.04
  13477. }
  13478. },
  13479. },
  13480. [
  13481. {
  13482. name: "Normal",
  13483. height: math.unit(8 + 2 / 12, "feet"),
  13484. default: true
  13485. },
  13486. {
  13487. name: "Socialable Macro",
  13488. height: math.unit(50, "feet")
  13489. },
  13490. {
  13491. name: "Macro",
  13492. height: math.unit(300, "feet")
  13493. },
  13494. {
  13495. name: "Megamacro",
  13496. height: math.unit(500, "miles")
  13497. },
  13498. ]
  13499. ))
  13500. characterMakers.push(() => makeCharacter(
  13501. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13502. {
  13503. front: {
  13504. height: math.unit(6, "feet"),
  13505. weight: math.unit(150, "lb"),
  13506. name: "Front",
  13507. image: {
  13508. source: "./media/characters/felix/front.svg",
  13509. extra: 762 / 722,
  13510. bottom: 0.02
  13511. }
  13512. },
  13513. frontClothed: {
  13514. height: math.unit(6, "feet"),
  13515. weight: math.unit(150, "lb"),
  13516. name: "Front (Clothed)",
  13517. image: {
  13518. source: "./media/characters/felix/front-clothed.svg",
  13519. extra: 762 / 722,
  13520. bottom: 0.02
  13521. }
  13522. },
  13523. },
  13524. [
  13525. {
  13526. name: "Normal",
  13527. height: math.unit(6 + 8 / 12, "feet"),
  13528. default: true
  13529. },
  13530. {
  13531. name: "Macro",
  13532. height: math.unit(2600, "feet")
  13533. },
  13534. {
  13535. name: "Megamacro",
  13536. height: math.unit(450, "miles")
  13537. },
  13538. ]
  13539. ))
  13540. characterMakers.push(() => makeCharacter(
  13541. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13542. {
  13543. front: {
  13544. height: math.unit(6 + 1 / 12, "feet"),
  13545. weight: math.unit(250, "lb"),
  13546. name: "Front",
  13547. image: {
  13548. source: "./media/characters/tobo/front.svg",
  13549. extra: 608 / 586,
  13550. bottom: 0.023
  13551. }
  13552. },
  13553. back: {
  13554. height: math.unit(6 + 1 / 12, "feet"),
  13555. weight: math.unit(250, "lb"),
  13556. name: "Back",
  13557. image: {
  13558. source: "./media/characters/tobo/back.svg",
  13559. extra: 608 / 586
  13560. }
  13561. },
  13562. },
  13563. [
  13564. {
  13565. name: "Nano",
  13566. height: math.unit(2, "nm")
  13567. },
  13568. {
  13569. name: "Megamicro",
  13570. height: math.unit(0.1, "mm")
  13571. },
  13572. {
  13573. name: "Micro",
  13574. height: math.unit(1, "inch"),
  13575. default: true
  13576. },
  13577. {
  13578. name: "Human-sized",
  13579. height: math.unit(6 + 1 / 12, "feet")
  13580. },
  13581. {
  13582. name: "Macro",
  13583. height: math.unit(250, "feet")
  13584. },
  13585. {
  13586. name: "Megamacro",
  13587. height: math.unit(75, "miles")
  13588. },
  13589. {
  13590. name: "Texas-sized",
  13591. height: math.unit(750, "miles")
  13592. },
  13593. {
  13594. name: "Teramacro",
  13595. height: math.unit(50000, "miles")
  13596. },
  13597. ]
  13598. ))
  13599. characterMakers.push(() => makeCharacter(
  13600. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13601. {
  13602. front: {
  13603. height: math.unit(6, "feet"),
  13604. weight: math.unit(269, "lb"),
  13605. name: "Front",
  13606. image: {
  13607. source: "./media/characters/danny-kapowsky/front.svg",
  13608. extra: 766 / 736,
  13609. bottom: 0.044
  13610. }
  13611. },
  13612. back: {
  13613. height: math.unit(6, "feet"),
  13614. weight: math.unit(269, "lb"),
  13615. name: "Back",
  13616. image: {
  13617. source: "./media/characters/danny-kapowsky/back.svg",
  13618. extra: 797 / 760,
  13619. bottom: 0.025
  13620. }
  13621. },
  13622. },
  13623. [
  13624. {
  13625. name: "Macro",
  13626. height: math.unit(150, "feet"),
  13627. default: true
  13628. },
  13629. {
  13630. name: "Macro+",
  13631. height: math.unit(200, "feet")
  13632. },
  13633. {
  13634. name: "Macro++",
  13635. height: math.unit(300, "feet")
  13636. },
  13637. {
  13638. name: "Macro+++",
  13639. height: math.unit(400, "feet")
  13640. },
  13641. ]
  13642. ))
  13643. characterMakers.push(() => makeCharacter(
  13644. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13645. {
  13646. side: {
  13647. height: math.unit(6, "feet"),
  13648. weight: math.unit(170, "lb"),
  13649. name: "Side",
  13650. image: {
  13651. source: "./media/characters/finn/side.svg",
  13652. extra: 1953 / 1807,
  13653. bottom: 0.057
  13654. }
  13655. },
  13656. },
  13657. [
  13658. {
  13659. name: "Megamacro",
  13660. height: math.unit(14445, "feet"),
  13661. default: true
  13662. },
  13663. ]
  13664. ))
  13665. characterMakers.push(() => makeCharacter(
  13666. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13667. {
  13668. front: {
  13669. height: math.unit(5 + 6 / 12, "feet"),
  13670. weight: math.unit(125, "lb"),
  13671. name: "Front",
  13672. image: {
  13673. source: "./media/characters/roy/front.svg",
  13674. extra: 1,
  13675. bottom: 0.11
  13676. }
  13677. },
  13678. },
  13679. [
  13680. {
  13681. name: "Micro",
  13682. height: math.unit(3, "inches"),
  13683. default: true
  13684. },
  13685. {
  13686. name: "Normal",
  13687. height: math.unit(5 + 6 / 12, "feet")
  13688. },
  13689. {
  13690. name: "Lesser Macro",
  13691. height: math.unit(60, "feet")
  13692. },
  13693. {
  13694. name: "Greater Macro",
  13695. height: math.unit(120, "feet")
  13696. },
  13697. ]
  13698. ))
  13699. characterMakers.push(() => makeCharacter(
  13700. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  13701. {
  13702. front: {
  13703. height: math.unit(6, "feet"),
  13704. weight: math.unit(100, "lb"),
  13705. name: "Front",
  13706. image: {
  13707. source: "./media/characters/aevsivs/front.svg",
  13708. extra: 1,
  13709. bottom: 0.03
  13710. }
  13711. },
  13712. back: {
  13713. height: math.unit(6, "feet"),
  13714. weight: math.unit(100, "lb"),
  13715. name: "Back",
  13716. image: {
  13717. source: "./media/characters/aevsivs/back.svg"
  13718. }
  13719. },
  13720. },
  13721. [
  13722. {
  13723. name: "Micro",
  13724. height: math.unit(2, "inches"),
  13725. default: true
  13726. },
  13727. {
  13728. name: "Normal",
  13729. height: math.unit(5, "feet")
  13730. },
  13731. ]
  13732. ))
  13733. characterMakers.push(() => makeCharacter(
  13734. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  13735. {
  13736. front: {
  13737. height: math.unit(5 + 7 / 12, "feet"),
  13738. weight: math.unit(159, "lb"),
  13739. name: "Front",
  13740. image: {
  13741. source: "./media/characters/hildegard/front.svg",
  13742. extra: 312 / 286,
  13743. bottom: 0.005
  13744. }
  13745. },
  13746. },
  13747. [
  13748. {
  13749. name: "Normal",
  13750. height: math.unit(5 + 7 / 12, "feet"),
  13751. default: true
  13752. },
  13753. ]
  13754. ))
  13755. characterMakers.push(() => makeCharacter(
  13756. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  13757. {
  13758. bernard: {
  13759. height: math.unit(2 + 7 / 12, "feet"),
  13760. weight: math.unit(66, "lb"),
  13761. name: "Bernard",
  13762. rename: true,
  13763. image: {
  13764. source: "./media/characters/bernard-wilder/bernard.svg",
  13765. extra: 192 / 128,
  13766. bottom: 0.05
  13767. }
  13768. },
  13769. wilder: {
  13770. height: math.unit(5 + 8 / 12, "feet"),
  13771. weight: math.unit(143, "lb"),
  13772. name: "Wilder",
  13773. rename: true,
  13774. image: {
  13775. source: "./media/characters/bernard-wilder/wilder.svg",
  13776. extra: 361 / 312,
  13777. bottom: 0.02
  13778. }
  13779. },
  13780. },
  13781. [
  13782. {
  13783. name: "Normal",
  13784. height: math.unit(2 + 7 / 12, "feet"),
  13785. default: true
  13786. },
  13787. ]
  13788. ))
  13789. characterMakers.push(() => makeCharacter(
  13790. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  13791. {
  13792. anthro: {
  13793. height: math.unit(6 + 1 / 12, "feet"),
  13794. weight: math.unit(155, "lb"),
  13795. name: "Anthro",
  13796. image: {
  13797. source: "./media/characters/hearth/anthro.svg",
  13798. extra: 260 / 250,
  13799. bottom: 0.02
  13800. }
  13801. },
  13802. feral: {
  13803. height: math.unit(3.78, "feet"),
  13804. weight: math.unit(35, "kg"),
  13805. name: "Feral",
  13806. image: {
  13807. source: "./media/characters/hearth/feral.svg",
  13808. extra: 153 / 135,
  13809. bottom: 0.03
  13810. }
  13811. },
  13812. },
  13813. [
  13814. {
  13815. name: "Normal",
  13816. height: math.unit(6 + 1 / 12, "feet"),
  13817. default: true
  13818. },
  13819. ]
  13820. ))
  13821. characterMakers.push(() => makeCharacter(
  13822. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  13823. {
  13824. front: {
  13825. height: math.unit(6, "feet"),
  13826. weight: math.unit(182, "lb"),
  13827. name: "Front",
  13828. image: {
  13829. source: "./media/characters/ingrid/front.svg",
  13830. extra: 294 / 268,
  13831. bottom: 0.027
  13832. }
  13833. },
  13834. },
  13835. [
  13836. {
  13837. name: "Normal",
  13838. height: math.unit(6, "feet"),
  13839. default: true
  13840. },
  13841. ]
  13842. ))
  13843. characterMakers.push(() => makeCharacter(
  13844. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  13845. {
  13846. eevee: {
  13847. height: math.unit(2 + 10 / 12, "feet"),
  13848. weight: math.unit(86, "lb"),
  13849. name: "Malgam",
  13850. image: {
  13851. source: "./media/characters/malgam/eevee.svg",
  13852. extra: 218 / 180,
  13853. bottom: 0.2
  13854. }
  13855. },
  13856. sylveon: {
  13857. height: math.unit(4, "feet"),
  13858. weight: math.unit(101, "lb"),
  13859. name: "Future Malgam",
  13860. rename: true,
  13861. image: {
  13862. source: "./media/characters/malgam/sylveon.svg",
  13863. extra: 371 / 325,
  13864. bottom: 0.015
  13865. }
  13866. },
  13867. gigantamax: {
  13868. height: math.unit(50, "feet"),
  13869. name: "Gigantamax Malgam",
  13870. rename: true,
  13871. image: {
  13872. source: "./media/characters/malgam/gigantamax.svg"
  13873. }
  13874. },
  13875. },
  13876. [
  13877. {
  13878. name: "Normal",
  13879. height: math.unit(2 + 10 / 12, "feet"),
  13880. default: true
  13881. },
  13882. ]
  13883. ))
  13884. characterMakers.push(() => makeCharacter(
  13885. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  13886. {
  13887. front: {
  13888. height: math.unit(5 + 11 / 12, "feet"),
  13889. weight: math.unit(188, "lb"),
  13890. name: "Front",
  13891. image: {
  13892. source: "./media/characters/fleur/front.svg",
  13893. extra: 309 / 283,
  13894. bottom: 0.007
  13895. }
  13896. },
  13897. },
  13898. [
  13899. {
  13900. name: "Normal",
  13901. height: math.unit(5 + 11 / 12, "feet"),
  13902. default: true
  13903. },
  13904. ]
  13905. ))
  13906. characterMakers.push(() => makeCharacter(
  13907. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  13908. {
  13909. front: {
  13910. height: math.unit(5 + 4 / 12, "feet"),
  13911. weight: math.unit(122, "lb"),
  13912. name: "Front",
  13913. image: {
  13914. source: "./media/characters/jude/front.svg",
  13915. extra: 288 / 273,
  13916. bottom: 0.03
  13917. }
  13918. },
  13919. },
  13920. [
  13921. {
  13922. name: "Normal",
  13923. height: math.unit(5 + 4 / 12, "feet"),
  13924. default: true
  13925. },
  13926. ]
  13927. ))
  13928. characterMakers.push(() => makeCharacter(
  13929. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  13930. {
  13931. front: {
  13932. height: math.unit(5 + 11 / 12, "feet"),
  13933. weight: math.unit(190, "lb"),
  13934. name: "Front",
  13935. image: {
  13936. source: "./media/characters/seara/front.svg",
  13937. extra: 1,
  13938. bottom: 0.05
  13939. }
  13940. },
  13941. },
  13942. [
  13943. {
  13944. name: "Normal",
  13945. height: math.unit(5 + 11 / 12, "feet"),
  13946. default: true
  13947. },
  13948. ]
  13949. ))
  13950. characterMakers.push(() => makeCharacter(
  13951. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  13952. {
  13953. front: {
  13954. height: math.unit(16 + 5 / 12, "feet"),
  13955. weight: math.unit(524, "lb"),
  13956. name: "Front",
  13957. image: {
  13958. source: "./media/characters/caspian/front.svg",
  13959. extra: 1,
  13960. bottom: 0.04
  13961. }
  13962. },
  13963. },
  13964. [
  13965. {
  13966. name: "Normal",
  13967. height: math.unit(16 + 5 / 12, "feet"),
  13968. default: true
  13969. },
  13970. ]
  13971. ))
  13972. characterMakers.push(() => makeCharacter(
  13973. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  13974. {
  13975. front: {
  13976. height: math.unit(5 + 7 / 12, "feet"),
  13977. weight: math.unit(170, "lb"),
  13978. name: "Front",
  13979. image: {
  13980. source: "./media/characters/mika/front.svg",
  13981. extra: 1,
  13982. bottom: 0.016
  13983. }
  13984. },
  13985. },
  13986. [
  13987. {
  13988. name: "Normal",
  13989. height: math.unit(5 + 7 / 12, "feet"),
  13990. default: true
  13991. },
  13992. ]
  13993. ))
  13994. characterMakers.push(() => makeCharacter(
  13995. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  13996. {
  13997. front: {
  13998. height: math.unit(6 + 2 / 12, "feet"),
  13999. weight: math.unit(268, "lb"),
  14000. name: "Front",
  14001. image: {
  14002. source: "./media/characters/sol/front.svg",
  14003. extra: 247 / 231,
  14004. bottom: 0.05
  14005. }
  14006. },
  14007. },
  14008. [
  14009. {
  14010. name: "Normal",
  14011. height: math.unit(6 + 2 / 12, "feet"),
  14012. default: true
  14013. },
  14014. ]
  14015. ))
  14016. characterMakers.push(() => makeCharacter(
  14017. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14018. {
  14019. buizel: {
  14020. height: math.unit(2 + 5 / 12, "feet"),
  14021. weight: math.unit(87, "lb"),
  14022. name: "Buizel",
  14023. image: {
  14024. source: "./media/characters/umiko/buizel.svg",
  14025. extra: 172 / 157,
  14026. bottom: 0.01
  14027. }
  14028. },
  14029. floatzel: {
  14030. height: math.unit(5 + 9 / 12, "feet"),
  14031. weight: math.unit(250, "lb"),
  14032. name: "Floatzel",
  14033. image: {
  14034. source: "./media/characters/umiko/floatzel.svg",
  14035. extra: 262 / 248
  14036. }
  14037. },
  14038. },
  14039. [
  14040. {
  14041. name: "Normal",
  14042. height: math.unit(2 + 5 / 12, "feet"),
  14043. default: true
  14044. },
  14045. ]
  14046. ))
  14047. characterMakers.push(() => makeCharacter(
  14048. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14049. {
  14050. front: {
  14051. height: math.unit(6 + 2 / 12, "feet"),
  14052. weight: math.unit(146, "lb"),
  14053. name: "Front",
  14054. image: {
  14055. source: "./media/characters/iliac/front.svg",
  14056. extra: 389 / 365,
  14057. bottom: 0.035
  14058. }
  14059. },
  14060. },
  14061. [
  14062. {
  14063. name: "Normal",
  14064. height: math.unit(6 + 2 / 12, "feet"),
  14065. default: true
  14066. },
  14067. ]
  14068. ))
  14069. characterMakers.push(() => makeCharacter(
  14070. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14071. {
  14072. front: {
  14073. height: math.unit(6, "feet"),
  14074. weight: math.unit(170, "lb"),
  14075. name: "Front",
  14076. image: {
  14077. source: "./media/characters/topaz/front.svg",
  14078. extra: 317 / 303,
  14079. bottom: 0.055
  14080. }
  14081. },
  14082. },
  14083. [
  14084. {
  14085. name: "Normal",
  14086. height: math.unit(6, "feet"),
  14087. default: true
  14088. },
  14089. ]
  14090. ))
  14091. characterMakers.push(() => makeCharacter(
  14092. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14093. {
  14094. front: {
  14095. height: math.unit(5 + 11 / 12, "feet"),
  14096. weight: math.unit(144, "lb"),
  14097. name: "Front",
  14098. image: {
  14099. source: "./media/characters/gabriel/front.svg",
  14100. extra: 285 / 262,
  14101. bottom: 0.004
  14102. }
  14103. },
  14104. },
  14105. [
  14106. {
  14107. name: "Normal",
  14108. height: math.unit(5 + 11 / 12, "feet"),
  14109. default: true
  14110. },
  14111. ]
  14112. ))
  14113. characterMakers.push(() => makeCharacter(
  14114. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14115. {
  14116. side: {
  14117. height: math.unit(6 + 5 / 12, "feet"),
  14118. weight: math.unit(300, "lb"),
  14119. name: "Side",
  14120. image: {
  14121. source: "./media/characters/tempest-suicune/side.svg",
  14122. extra: 195 / 154,
  14123. bottom: 0.04
  14124. }
  14125. },
  14126. },
  14127. [
  14128. {
  14129. name: "Normal",
  14130. height: math.unit(6 + 5 / 12, "feet"),
  14131. default: true
  14132. },
  14133. ]
  14134. ))
  14135. characterMakers.push(() => makeCharacter(
  14136. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14137. {
  14138. front: {
  14139. height: math.unit(7 + 2 / 12, "feet"),
  14140. weight: math.unit(322, "lb"),
  14141. name: "Front",
  14142. image: {
  14143. source: "./media/characters/vulcan/front.svg",
  14144. extra: 154 / 147,
  14145. bottom: 0.04
  14146. }
  14147. },
  14148. },
  14149. [
  14150. {
  14151. name: "Normal",
  14152. height: math.unit(7 + 2 / 12, "feet"),
  14153. default: true
  14154. },
  14155. ]
  14156. ))
  14157. characterMakers.push(() => makeCharacter(
  14158. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14159. {
  14160. front: {
  14161. height: math.unit(5 + 10 / 12, "feet"),
  14162. weight: math.unit(264, "lb"),
  14163. name: "Front",
  14164. image: {
  14165. source: "./media/characters/gault/front.svg",
  14166. extra: 161 / 140,
  14167. bottom: 0.028
  14168. }
  14169. },
  14170. },
  14171. [
  14172. {
  14173. name: "Normal",
  14174. height: math.unit(5 + 10 / 12, "feet"),
  14175. default: true
  14176. },
  14177. ]
  14178. ))
  14179. characterMakers.push(() => makeCharacter(
  14180. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14181. {
  14182. front: {
  14183. height: math.unit(6, "feet"),
  14184. weight: math.unit(150, "lb"),
  14185. name: "Front",
  14186. image: {
  14187. source: "./media/characters/shard/front.svg",
  14188. extra: 273 / 238,
  14189. bottom: 0.02
  14190. }
  14191. },
  14192. },
  14193. [
  14194. {
  14195. name: "Normal",
  14196. height: math.unit(3 + 6 / 12, "feet"),
  14197. default: true
  14198. },
  14199. ]
  14200. ))
  14201. characterMakers.push(() => makeCharacter(
  14202. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14203. {
  14204. front: {
  14205. height: math.unit(5 + 11 / 12, "feet"),
  14206. weight: math.unit(146, "lb"),
  14207. name: "Front",
  14208. image: {
  14209. source: "./media/characters/ashe/front.svg",
  14210. extra: 400 / 373,
  14211. bottom: 0.01
  14212. }
  14213. },
  14214. },
  14215. [
  14216. {
  14217. name: "Normal",
  14218. height: math.unit(5 + 11 / 12, "feet"),
  14219. default: true
  14220. },
  14221. ]
  14222. ))
  14223. characterMakers.push(() => makeCharacter(
  14224. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14225. {
  14226. front: {
  14227. height: math.unit(5 + 5 / 12, "feet"),
  14228. weight: math.unit(135, "lb"),
  14229. name: "Front",
  14230. image: {
  14231. source: "./media/characters/beatrix/front.svg",
  14232. extra: 392 / 379,
  14233. bottom: 0.01
  14234. }
  14235. },
  14236. },
  14237. [
  14238. {
  14239. name: "Normal",
  14240. height: math.unit(6, "feet"),
  14241. default: true
  14242. },
  14243. ]
  14244. ))
  14245. characterMakers.push(() => makeCharacter(
  14246. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14247. {
  14248. front: {
  14249. height: math.unit(6, "feet"),
  14250. weight: math.unit(150, "lb"),
  14251. name: "Front",
  14252. image: {
  14253. source: "./media/characters/ignatius/front.svg",
  14254. extra: 245 / 222,
  14255. bottom: 0.01
  14256. }
  14257. },
  14258. },
  14259. [
  14260. {
  14261. name: "Normal",
  14262. height: math.unit(5 + 5 / 12, "feet"),
  14263. default: true
  14264. },
  14265. ]
  14266. ))
  14267. characterMakers.push(() => makeCharacter(
  14268. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14269. {
  14270. front: {
  14271. height: math.unit(6 + 2 / 12, "feet"),
  14272. weight: math.unit(138, "lb"),
  14273. name: "Front",
  14274. image: {
  14275. source: "./media/characters/mei-li/front.svg",
  14276. extra: 237 / 229,
  14277. bottom: 0.03
  14278. }
  14279. },
  14280. },
  14281. [
  14282. {
  14283. name: "Normal",
  14284. height: math.unit(6 + 2 / 12, "feet"),
  14285. default: true
  14286. },
  14287. ]
  14288. ))
  14289. characterMakers.push(() => makeCharacter(
  14290. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14291. {
  14292. front: {
  14293. height: math.unit(2 + 4 / 12, "feet"),
  14294. weight: math.unit(62, "lb"),
  14295. name: "Front",
  14296. image: {
  14297. source: "./media/characters/puru/front.svg",
  14298. extra: 206 / 149,
  14299. bottom: 0.06
  14300. }
  14301. },
  14302. },
  14303. [
  14304. {
  14305. name: "Normal",
  14306. height: math.unit(2 + 4 / 12, "feet"),
  14307. default: true
  14308. },
  14309. ]
  14310. ))
  14311. characterMakers.push(() => makeCharacter(
  14312. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14313. {
  14314. taur: {
  14315. height: math.unit(11, "feet"),
  14316. weight: math.unit(500, "lb"),
  14317. name: "Taur",
  14318. image: {
  14319. source: "./media/characters/kee/taur.svg",
  14320. extra: 1,
  14321. bottom: 0.04
  14322. }
  14323. },
  14324. },
  14325. [
  14326. {
  14327. name: "Normal",
  14328. height: math.unit(11, "feet"),
  14329. default: true
  14330. },
  14331. ]
  14332. ))
  14333. characterMakers.push(() => makeCharacter(
  14334. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14335. {
  14336. anthro: {
  14337. height: math.unit(7, "feet"),
  14338. weight: math.unit(190, "lb"),
  14339. name: "Anthro",
  14340. image: {
  14341. source: "./media/characters/cobalt-dracha/anthro.svg",
  14342. extra: 231 / 225,
  14343. bottom: 0.04
  14344. }
  14345. },
  14346. feral: {
  14347. height: math.unit(9 + 7 / 12, "feet"),
  14348. weight: math.unit(294, "lb"),
  14349. name: "Feral",
  14350. image: {
  14351. source: "./media/characters/cobalt-dracha/feral.svg",
  14352. extra: 692 / 633,
  14353. bottom: 0.05
  14354. }
  14355. },
  14356. },
  14357. [
  14358. {
  14359. name: "Normal",
  14360. height: math.unit(7, "feet"),
  14361. default: true
  14362. },
  14363. ]
  14364. ))
  14365. characterMakers.push(() => makeCharacter(
  14366. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14367. {
  14368. fallen: {
  14369. height: math.unit(11 + 8 / 12, "feet"),
  14370. weight: math.unit(485, "lb"),
  14371. name: "Java (Fallen)",
  14372. rename: true,
  14373. image: {
  14374. source: "./media/characters/java/fallen.svg",
  14375. extra: 226 / 208,
  14376. bottom: 0.005
  14377. }
  14378. },
  14379. godkin: {
  14380. height: math.unit(10 + 6 / 12, "feet"),
  14381. weight: math.unit(328, "lb"),
  14382. name: "Java (Godkin)",
  14383. rename: true,
  14384. image: {
  14385. source: "./media/characters/java/godkin.svg",
  14386. extra: 270 / 262,
  14387. bottom: 0.02
  14388. }
  14389. },
  14390. },
  14391. [
  14392. {
  14393. name: "Normal",
  14394. height: math.unit(11 + 8 / 12, "feet"),
  14395. default: true
  14396. },
  14397. ]
  14398. ))
  14399. characterMakers.push(() => makeCharacter(
  14400. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14401. {
  14402. front: {
  14403. height: math.unit(7 + 8 / 12, "feet"),
  14404. weight: math.unit(320, "lb"),
  14405. name: "Front",
  14406. image: {
  14407. source: "./media/characters/skoll/front.svg",
  14408. extra: 232 / 220,
  14409. bottom: 0.02
  14410. }
  14411. },
  14412. },
  14413. [
  14414. {
  14415. name: "Normal",
  14416. height: math.unit(7 + 8 / 12, "feet"),
  14417. default: true
  14418. },
  14419. ]
  14420. ))
  14421. characterMakers.push(() => makeCharacter(
  14422. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14423. {
  14424. front: {
  14425. height: math.unit(5 + 9 / 12, "feet"),
  14426. weight: math.unit(170, "lb"),
  14427. name: "Front",
  14428. image: {
  14429. source: "./media/characters/purna/front.svg",
  14430. extra: 239 / 229,
  14431. bottom: 0.01
  14432. }
  14433. },
  14434. },
  14435. [
  14436. {
  14437. name: "Normal",
  14438. height: math.unit(5 + 9 / 12, "feet"),
  14439. default: true
  14440. },
  14441. ]
  14442. ))
  14443. characterMakers.push(() => makeCharacter(
  14444. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14445. {
  14446. front: {
  14447. height: math.unit(5 + 9 / 12, "feet"),
  14448. weight: math.unit(142, "lb"),
  14449. name: "Front",
  14450. image: {
  14451. source: "./media/characters/kuva/front.svg",
  14452. extra: 281 / 271,
  14453. bottom: 0.006
  14454. }
  14455. },
  14456. },
  14457. [
  14458. {
  14459. name: "Normal",
  14460. height: math.unit(5 + 9 / 12, "feet"),
  14461. default: true
  14462. },
  14463. ]
  14464. ))
  14465. characterMakers.push(() => makeCharacter(
  14466. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14467. {
  14468. anthro: {
  14469. height: math.unit(9 + 2 / 12, "feet"),
  14470. weight: math.unit(270, "lb"),
  14471. name: "Anthro",
  14472. image: {
  14473. source: "./media/characters/embra/anthro.svg",
  14474. extra: 200 / 187,
  14475. bottom: 0.02
  14476. }
  14477. },
  14478. feral: {
  14479. height: math.unit(18 + 8 / 12, "feet"),
  14480. weight: math.unit(576, "lb"),
  14481. name: "Feral",
  14482. image: {
  14483. source: "./media/characters/embra/feral.svg",
  14484. extra: 152 / 137,
  14485. bottom: 0.037
  14486. }
  14487. },
  14488. },
  14489. [
  14490. {
  14491. name: "Normal",
  14492. height: math.unit(9 + 2 / 12, "feet"),
  14493. default: true
  14494. },
  14495. ]
  14496. ))
  14497. characterMakers.push(() => makeCharacter(
  14498. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14499. {
  14500. anthro: {
  14501. height: math.unit(10 + 9 / 12, "feet"),
  14502. weight: math.unit(224, "lb"),
  14503. name: "Anthro",
  14504. image: {
  14505. source: "./media/characters/grottos/anthro.svg",
  14506. extra: 350 / 332,
  14507. bottom: 0.045
  14508. }
  14509. },
  14510. feral: {
  14511. height: math.unit(20 + 7 / 12, "feet"),
  14512. weight: math.unit(629, "lb"),
  14513. name: "Feral",
  14514. image: {
  14515. source: "./media/characters/grottos/feral.svg",
  14516. extra: 207 / 190,
  14517. bottom: 0.05
  14518. }
  14519. },
  14520. },
  14521. [
  14522. {
  14523. name: "Normal",
  14524. height: math.unit(10 + 9 / 12, "feet"),
  14525. default: true
  14526. },
  14527. ]
  14528. ))
  14529. characterMakers.push(() => makeCharacter(
  14530. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14531. {
  14532. anthro: {
  14533. height: math.unit(9 + 6 / 12, "feet"),
  14534. weight: math.unit(298, "lb"),
  14535. name: "Anthro",
  14536. image: {
  14537. source: "./media/characters/frifna/anthro.svg",
  14538. extra: 282 / 269,
  14539. bottom: 0.015
  14540. }
  14541. },
  14542. feral: {
  14543. height: math.unit(16 + 2 / 12, "feet"),
  14544. weight: math.unit(624, "lb"),
  14545. name: "Feral",
  14546. image: {
  14547. source: "./media/characters/frifna/feral.svg"
  14548. }
  14549. },
  14550. },
  14551. [
  14552. {
  14553. name: "Normal",
  14554. height: math.unit(9 + 6 / 12, "feet"),
  14555. default: true
  14556. },
  14557. ]
  14558. ))
  14559. characterMakers.push(() => makeCharacter(
  14560. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14561. {
  14562. front: {
  14563. height: math.unit(6 + 2 / 12, "feet"),
  14564. weight: math.unit(168, "lb"),
  14565. name: "Front",
  14566. image: {
  14567. source: "./media/characters/elise/front.svg",
  14568. extra: 276 / 271
  14569. }
  14570. },
  14571. },
  14572. [
  14573. {
  14574. name: "Normal",
  14575. height: math.unit(6 + 2 / 12, "feet"),
  14576. default: true
  14577. },
  14578. ]
  14579. ))
  14580. characterMakers.push(() => makeCharacter(
  14581. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14582. {
  14583. front: {
  14584. height: math.unit(5 + 10 / 12, "feet"),
  14585. weight: math.unit(210, "lb"),
  14586. name: "Front",
  14587. image: {
  14588. source: "./media/characters/glade/front.svg",
  14589. extra: 258 / 247,
  14590. bottom: 0.008
  14591. }
  14592. },
  14593. },
  14594. [
  14595. {
  14596. name: "Normal",
  14597. height: math.unit(5 + 10 / 12, "feet"),
  14598. default: true
  14599. },
  14600. ]
  14601. ))
  14602. characterMakers.push(() => makeCharacter(
  14603. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14604. {
  14605. front: {
  14606. height: math.unit(5 + 10 / 12, "feet"),
  14607. weight: math.unit(129, "lb"),
  14608. name: "Front",
  14609. image: {
  14610. source: "./media/characters/rina/front.svg",
  14611. extra: 266 / 255,
  14612. bottom: 0.005
  14613. }
  14614. },
  14615. },
  14616. [
  14617. {
  14618. name: "Normal",
  14619. height: math.unit(5 + 10 / 12, "feet"),
  14620. default: true
  14621. },
  14622. ]
  14623. ))
  14624. characterMakers.push(() => makeCharacter(
  14625. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14626. {
  14627. front: {
  14628. height: math.unit(6 + 1 / 12, "feet"),
  14629. weight: math.unit(192, "lb"),
  14630. name: "Front",
  14631. image: {
  14632. source: "./media/characters/veronica/front.svg",
  14633. extra: 319 / 309,
  14634. bottom: 0.005
  14635. }
  14636. },
  14637. },
  14638. [
  14639. {
  14640. name: "Normal",
  14641. height: math.unit(6 + 1 / 12, "feet"),
  14642. default: true
  14643. },
  14644. ]
  14645. ))
  14646. characterMakers.push(() => makeCharacter(
  14647. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14648. {
  14649. front: {
  14650. height: math.unit(9 + 3 / 12, "feet"),
  14651. weight: math.unit(1100, "lb"),
  14652. name: "Front",
  14653. image: {
  14654. source: "./media/characters/braxton/front.svg",
  14655. extra: 1057 / 984,
  14656. bottom: 0.05
  14657. }
  14658. },
  14659. },
  14660. [
  14661. {
  14662. name: "Normal",
  14663. height: math.unit(9 + 3 / 12, "feet")
  14664. },
  14665. {
  14666. name: "Giant",
  14667. height: math.unit(300, "feet"),
  14668. default: true
  14669. },
  14670. {
  14671. name: "Macro",
  14672. height: math.unit(700, "feet")
  14673. },
  14674. {
  14675. name: "Megamacro",
  14676. height: math.unit(6000, "feet")
  14677. },
  14678. ]
  14679. ))
  14680. characterMakers.push(() => makeCharacter(
  14681. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14682. {
  14683. front: {
  14684. height: math.unit(6 + 7 / 12, "feet"),
  14685. weight: math.unit(150, "lb"),
  14686. name: "Front",
  14687. image: {
  14688. source: "./media/characters/blue-feyonics/front.svg",
  14689. extra: 1403 / 1306,
  14690. bottom: 0.047
  14691. }
  14692. },
  14693. },
  14694. [
  14695. {
  14696. name: "Normal",
  14697. height: math.unit(6 + 7 / 12, "feet"),
  14698. default: true
  14699. },
  14700. ]
  14701. ))
  14702. characterMakers.push(() => makeCharacter(
  14703. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  14704. {
  14705. front: {
  14706. height: math.unit(1.8, "meters"),
  14707. weight: math.unit(60, "kg"),
  14708. name: "Front",
  14709. image: {
  14710. source: "./media/characters/maxwell/front.svg",
  14711. extra: 2060 / 1873
  14712. }
  14713. },
  14714. },
  14715. [
  14716. {
  14717. name: "Micro",
  14718. height: math.unit(1, "mm")
  14719. },
  14720. {
  14721. name: "Normal",
  14722. height: math.unit(1.8, "meter"),
  14723. default: true
  14724. },
  14725. {
  14726. name: "Macro",
  14727. height: math.unit(30, "meters")
  14728. },
  14729. {
  14730. name: "Megamacro",
  14731. height: math.unit(10, "km")
  14732. },
  14733. ]
  14734. ))
  14735. characterMakers.push(() => makeCharacter(
  14736. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  14737. {
  14738. front: {
  14739. height: math.unit(6, "feet"),
  14740. weight: math.unit(150, "lb"),
  14741. name: "Front",
  14742. image: {
  14743. source: "./media/characters/jack/front.svg",
  14744. extra: 1754 / 1640,
  14745. bottom: 0.01
  14746. }
  14747. },
  14748. },
  14749. [
  14750. {
  14751. name: "Normal",
  14752. height: math.unit(80000, "feet"),
  14753. default: true
  14754. },
  14755. {
  14756. name: "Max size",
  14757. height: math.unit(10, "lightyears")
  14758. },
  14759. ]
  14760. ))
  14761. characterMakers.push(() => makeCharacter(
  14762. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  14763. {
  14764. upright: {
  14765. height: math.unit(7, "feet"),
  14766. weight: math.unit(170, "lb"),
  14767. name: "Upright",
  14768. image: {
  14769. source: "./media/characters/cafat/upright.svg",
  14770. bottom: 0.01
  14771. }
  14772. },
  14773. uprightFull: {
  14774. height: math.unit(7, "feet"),
  14775. weight: math.unit(170, "lb"),
  14776. name: "Upright (Full)",
  14777. image: {
  14778. source: "./media/characters/cafat/upright-full.svg",
  14779. bottom: 0.01
  14780. }
  14781. },
  14782. side: {
  14783. height: math.unit(5, "feet"),
  14784. weight: math.unit(150, "lb"),
  14785. name: "Side",
  14786. image: {
  14787. source: "./media/characters/cafat/side.svg"
  14788. }
  14789. },
  14790. },
  14791. [
  14792. {
  14793. name: "Small",
  14794. height: math.unit(7, "feet"),
  14795. default: true
  14796. },
  14797. {
  14798. name: "Large",
  14799. height: math.unit(15.5, "feet")
  14800. },
  14801. ]
  14802. ))
  14803. characterMakers.push(() => makeCharacter(
  14804. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  14805. {
  14806. front: {
  14807. height: math.unit(6, "feet"),
  14808. weight: math.unit(150, "lb"),
  14809. name: "Front",
  14810. image: {
  14811. source: "./media/characters/verin-raharra/front.svg",
  14812. extra: 5019 / 4835,
  14813. bottom: 0.023
  14814. }
  14815. },
  14816. },
  14817. [
  14818. {
  14819. name: "Normal",
  14820. height: math.unit(7 + 5 / 12, "feet"),
  14821. default: true
  14822. },
  14823. {
  14824. name: "Upsized",
  14825. height: math.unit(20, "feet")
  14826. },
  14827. ]
  14828. ))
  14829. characterMakers.push(() => makeCharacter(
  14830. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  14831. {
  14832. front: {
  14833. height: math.unit(7, "feet"),
  14834. weight: math.unit(230, "lb"),
  14835. name: "Front",
  14836. image: {
  14837. source: "./media/characters/nakata/front.svg",
  14838. extra: 1.005,
  14839. bottom: 0.01
  14840. }
  14841. },
  14842. },
  14843. [
  14844. {
  14845. name: "Normal",
  14846. height: math.unit(7, "feet"),
  14847. default: true
  14848. },
  14849. {
  14850. name: "Big",
  14851. height: math.unit(14, "feet")
  14852. },
  14853. {
  14854. name: "Macro",
  14855. height: math.unit(400, "feet")
  14856. },
  14857. ]
  14858. ))
  14859. characterMakers.push(() => makeCharacter(
  14860. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  14861. {
  14862. front: {
  14863. height: math.unit(4.91, "feet"),
  14864. weight: math.unit(100, "lb"),
  14865. name: "Front",
  14866. image: {
  14867. source: "./media/characters/lily/front.svg",
  14868. extra: 1585 / 1415,
  14869. bottom: 0.02
  14870. }
  14871. },
  14872. },
  14873. [
  14874. {
  14875. name: "Normal",
  14876. height: math.unit(4.91, "feet"),
  14877. default: true
  14878. },
  14879. ]
  14880. ))
  14881. characterMakers.push(() => makeCharacter(
  14882. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  14883. {
  14884. laying: {
  14885. height: math.unit(4 + 4 / 12, "feet"),
  14886. weight: math.unit(600, "lb"),
  14887. name: "Laying",
  14888. image: {
  14889. source: "./media/characters/sheila/laying.svg",
  14890. extra: 1333 / 1265,
  14891. bottom: 0.16
  14892. }
  14893. },
  14894. },
  14895. [
  14896. {
  14897. name: "Normal",
  14898. height: math.unit(4 + 4 / 12, "feet"),
  14899. default: true
  14900. },
  14901. ]
  14902. ))
  14903. characterMakers.push(() => makeCharacter(
  14904. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  14905. {
  14906. front: {
  14907. height: math.unit(6, "feet"),
  14908. weight: math.unit(190, "lb"),
  14909. name: "Front",
  14910. image: {
  14911. source: "./media/characters/sax/front.svg",
  14912. extra: 1187 / 973,
  14913. bottom: 0.042
  14914. }
  14915. },
  14916. },
  14917. [
  14918. {
  14919. name: "Micro",
  14920. height: math.unit(4, "inches"),
  14921. default: true
  14922. },
  14923. ]
  14924. ))
  14925. characterMakers.push(() => makeCharacter(
  14926. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  14927. {
  14928. front: {
  14929. height: math.unit(6, "feet"),
  14930. weight: math.unit(150, "lb"),
  14931. name: "Front",
  14932. image: {
  14933. source: "./media/characters/pandora/front.svg",
  14934. extra: 2720 / 2556,
  14935. bottom: 0.015
  14936. }
  14937. },
  14938. back: {
  14939. height: math.unit(6, "feet"),
  14940. weight: math.unit(150, "lb"),
  14941. name: "Back",
  14942. image: {
  14943. source: "./media/characters/pandora/back.svg",
  14944. extra: 2720 / 2556,
  14945. bottom: 0.01
  14946. }
  14947. },
  14948. beans: {
  14949. height: math.unit(6 / 8, "feet"),
  14950. name: "Beans",
  14951. image: {
  14952. source: "./media/characters/pandora/beans.svg"
  14953. }
  14954. },
  14955. skirt: {
  14956. height: math.unit(6, "feet"),
  14957. weight: math.unit(150, "lb"),
  14958. name: "Skirt",
  14959. image: {
  14960. source: "./media/characters/pandora/skirt.svg",
  14961. extra: 1622 / 1525,
  14962. bottom: 0.015
  14963. }
  14964. },
  14965. hoodie: {
  14966. height: math.unit(6, "feet"),
  14967. weight: math.unit(150, "lb"),
  14968. name: "Hoodie",
  14969. image: {
  14970. source: "./media/characters/pandora/hoodie.svg",
  14971. extra: 1622 / 1525,
  14972. bottom: 0.015
  14973. }
  14974. },
  14975. casual: {
  14976. height: math.unit(6, "feet"),
  14977. weight: math.unit(150, "lb"),
  14978. name: "Casual",
  14979. image: {
  14980. source: "./media/characters/pandora/casual.svg",
  14981. extra: 1622 / 1525,
  14982. bottom: 0.015
  14983. }
  14984. },
  14985. },
  14986. [
  14987. {
  14988. name: "Normal",
  14989. height: math.unit(6, "feet")
  14990. },
  14991. {
  14992. name: "Big Steppy",
  14993. height: math.unit(1, "km"),
  14994. default: true
  14995. },
  14996. ]
  14997. ))
  14998. characterMakers.push(() => makeCharacter(
  14999. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15000. {
  15001. side: {
  15002. height: math.unit(10, "feet"),
  15003. weight: math.unit(800, "kg"),
  15004. name: "Side",
  15005. image: {
  15006. source: "./media/characters/venio-darcony/side.svg",
  15007. extra: 1373 / 1003,
  15008. bottom: 0.037
  15009. }
  15010. },
  15011. front: {
  15012. height: math.unit(19, "feet"),
  15013. weight: math.unit(800, "kg"),
  15014. name: "Front",
  15015. image: {
  15016. source: "./media/characters/venio-darcony/front.svg"
  15017. }
  15018. },
  15019. back: {
  15020. height: math.unit(19, "feet"),
  15021. weight: math.unit(800, "kg"),
  15022. name: "Back",
  15023. image: {
  15024. source: "./media/characters/venio-darcony/back.svg"
  15025. }
  15026. },
  15027. sideNsfw: {
  15028. height: math.unit(10, "feet"),
  15029. weight: math.unit(800, "kg"),
  15030. name: "Side (NSFW)",
  15031. image: {
  15032. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15033. extra: 1373 / 1003,
  15034. bottom: 0.037
  15035. }
  15036. },
  15037. frontNsfw: {
  15038. height: math.unit(19, "feet"),
  15039. weight: math.unit(800, "kg"),
  15040. name: "Front (NSFW)",
  15041. image: {
  15042. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15043. }
  15044. },
  15045. backNsfw: {
  15046. height: math.unit(19, "feet"),
  15047. weight: math.unit(800, "kg"),
  15048. name: "Back (NSFW)",
  15049. image: {
  15050. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15051. }
  15052. },
  15053. sideArmored: {
  15054. height: math.unit(10, "feet"),
  15055. weight: math.unit(800, "kg"),
  15056. name: "Side (Armored)",
  15057. image: {
  15058. source: "./media/characters/venio-darcony/side-armored.svg",
  15059. extra: 1373 / 1003,
  15060. bottom: 0.037
  15061. }
  15062. },
  15063. frontArmored: {
  15064. height: math.unit(19, "feet"),
  15065. weight: math.unit(900, "kg"),
  15066. name: "Front (Armored)",
  15067. image: {
  15068. source: "./media/characters/venio-darcony/front-armored.svg"
  15069. }
  15070. },
  15071. backArmored: {
  15072. height: math.unit(19, "feet"),
  15073. weight: math.unit(900, "kg"),
  15074. name: "Back (Armored)",
  15075. image: {
  15076. source: "./media/characters/venio-darcony/back-armored.svg"
  15077. }
  15078. },
  15079. sword: {
  15080. height: math.unit(10, "feet"),
  15081. weight: math.unit(50, "lb"),
  15082. name: "Sword",
  15083. image: {
  15084. source: "./media/characters/venio-darcony/sword.svg"
  15085. }
  15086. },
  15087. },
  15088. [
  15089. {
  15090. name: "Normal",
  15091. height: math.unit(10, "feet")
  15092. },
  15093. {
  15094. name: "Macro",
  15095. height: math.unit(130, "feet"),
  15096. default: true
  15097. },
  15098. {
  15099. name: "Macro+",
  15100. height: math.unit(240, "feet")
  15101. },
  15102. ]
  15103. ))
  15104. characterMakers.push(() => makeCharacter(
  15105. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15106. {
  15107. front: {
  15108. height: math.unit(6, "feet"),
  15109. weight: math.unit(150, "lb"),
  15110. name: "Front",
  15111. image: {
  15112. source: "./media/characters/veski/front.svg",
  15113. extra: 1299 / 1225,
  15114. bottom: 0.04
  15115. }
  15116. },
  15117. back: {
  15118. height: math.unit(6, "feet"),
  15119. weight: math.unit(150, "lb"),
  15120. name: "Back",
  15121. image: {
  15122. source: "./media/characters/veski/back.svg",
  15123. extra: 1299 / 1225,
  15124. bottom: 0.008
  15125. }
  15126. },
  15127. maw: {
  15128. height: math.unit(1.5 * 1.21, "feet"),
  15129. name: "Maw",
  15130. image: {
  15131. source: "./media/characters/veski/maw.svg"
  15132. }
  15133. },
  15134. },
  15135. [
  15136. {
  15137. name: "Macro",
  15138. height: math.unit(2, "km"),
  15139. default: true
  15140. },
  15141. ]
  15142. ))
  15143. characterMakers.push(() => makeCharacter(
  15144. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15145. {
  15146. front: {
  15147. height: math.unit(5 + 7 / 12, "feet"),
  15148. name: "Front",
  15149. image: {
  15150. source: "./media/characters/isabelle/front.svg",
  15151. extra: 2130 / 1976,
  15152. bottom: 0.05
  15153. }
  15154. },
  15155. },
  15156. [
  15157. {
  15158. name: "Supermicro",
  15159. height: math.unit(10, "micrometers")
  15160. },
  15161. {
  15162. name: "Micro",
  15163. height: math.unit(1, "inch")
  15164. },
  15165. {
  15166. name: "Tiny",
  15167. height: math.unit(5, "inches")
  15168. },
  15169. {
  15170. name: "Standard",
  15171. height: math.unit(5 + 7 / 12, "inches")
  15172. },
  15173. {
  15174. name: "Macro",
  15175. height: math.unit(80, "meters"),
  15176. default: true
  15177. },
  15178. {
  15179. name: "Megamacro",
  15180. height: math.unit(250, "meters")
  15181. },
  15182. {
  15183. name: "Gigamacro",
  15184. height: math.unit(5, "km")
  15185. },
  15186. {
  15187. name: "Cosmic",
  15188. height: math.unit(2.5e6, "miles")
  15189. },
  15190. ]
  15191. ))
  15192. characterMakers.push(() => makeCharacter(
  15193. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15194. {
  15195. front: {
  15196. height: math.unit(6, "feet"),
  15197. weight: math.unit(150, "lb"),
  15198. name: "Front",
  15199. image: {
  15200. source: "./media/characters/hanzo/front.svg",
  15201. extra: 374 / 344,
  15202. bottom: 0.02
  15203. }
  15204. },
  15205. },
  15206. [
  15207. {
  15208. name: "Normal",
  15209. height: math.unit(8, "feet"),
  15210. default: true
  15211. },
  15212. ]
  15213. ))
  15214. characterMakers.push(() => makeCharacter(
  15215. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15216. {
  15217. front: {
  15218. height: math.unit(7, "feet"),
  15219. weight: math.unit(130, "lb"),
  15220. name: "Front",
  15221. image: {
  15222. source: "./media/characters/anna/front.svg",
  15223. extra: 169 / 145,
  15224. bottom: 0.06
  15225. }
  15226. },
  15227. full: {
  15228. height: math.unit(4.96, "feet"),
  15229. weight: math.unit(220, "lb"),
  15230. name: "Full",
  15231. image: {
  15232. source: "./media/characters/anna/full.svg",
  15233. extra: 138 / 114,
  15234. bottom: 0.15
  15235. }
  15236. },
  15237. tongue: {
  15238. height: math.unit(2.53, "feet"),
  15239. name: "Tongue",
  15240. image: {
  15241. source: "./media/characters/anna/tongue.svg"
  15242. }
  15243. },
  15244. },
  15245. [
  15246. {
  15247. name: "Normal",
  15248. height: math.unit(7, "feet"),
  15249. default: true
  15250. },
  15251. ]
  15252. ))
  15253. characterMakers.push(() => makeCharacter(
  15254. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15255. {
  15256. front: {
  15257. height: math.unit(7, "feet"),
  15258. weight: math.unit(150, "lb"),
  15259. name: "Front",
  15260. image: {
  15261. source: "./media/characters/ian-corvid/front.svg",
  15262. extra: 150 / 142,
  15263. bottom: 0.02
  15264. }
  15265. },
  15266. back: {
  15267. height: math.unit(7, "feet"),
  15268. weight: math.unit(150, "lb"),
  15269. name: "Back",
  15270. image: {
  15271. source: "./media/characters/ian-corvid/back.svg",
  15272. extra: 150 / 143,
  15273. bottom: 0.01
  15274. }
  15275. },
  15276. stomping: {
  15277. height: math.unit(7, "feet"),
  15278. weight: math.unit(150, "lb"),
  15279. name: "Stomping",
  15280. image: {
  15281. source: "./media/characters/ian-corvid/stomping.svg",
  15282. extra: 76 / 72
  15283. }
  15284. },
  15285. sitting: {
  15286. height: math.unit(7 / 1.8, "feet"),
  15287. weight: math.unit(150, "lb"),
  15288. name: "Sitting",
  15289. image: {
  15290. source: "./media/characters/ian-corvid/sitting.svg",
  15291. extra: 1400 / 1269,
  15292. bottom: 0.15
  15293. }
  15294. },
  15295. },
  15296. [
  15297. {
  15298. name: "Tiny Microw",
  15299. height: math.unit(1, "inch")
  15300. },
  15301. {
  15302. name: "Microw",
  15303. height: math.unit(6, "inches")
  15304. },
  15305. {
  15306. name: "Crow",
  15307. height: math.unit(7 + 1 / 12, "feet"),
  15308. default: true
  15309. },
  15310. {
  15311. name: "Macrow",
  15312. height: math.unit(176, "feet")
  15313. },
  15314. ]
  15315. ))
  15316. characterMakers.push(() => makeCharacter(
  15317. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15318. {
  15319. front: {
  15320. height: math.unit(5 + 7 / 12, "feet"),
  15321. weight: math.unit(147, "lb"),
  15322. name: "Front",
  15323. image: {
  15324. source: "./media/characters/natalie-kellon/front.svg",
  15325. extra: 1214 / 1141,
  15326. bottom: 0.02
  15327. }
  15328. },
  15329. },
  15330. [
  15331. {
  15332. name: "Micro",
  15333. height: math.unit(1 / 16, "inch")
  15334. },
  15335. {
  15336. name: "Tiny",
  15337. height: math.unit(4, "inches")
  15338. },
  15339. {
  15340. name: "Normal",
  15341. height: math.unit(5 + 7 / 12, "feet"),
  15342. default: true
  15343. },
  15344. {
  15345. name: "Amazon",
  15346. height: math.unit(12, "feet")
  15347. },
  15348. {
  15349. name: "Giantess",
  15350. height: math.unit(160, "meters")
  15351. },
  15352. {
  15353. name: "Titaness",
  15354. height: math.unit(800, "meters")
  15355. },
  15356. ]
  15357. ))
  15358. characterMakers.push(() => makeCharacter(
  15359. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15360. {
  15361. front: {
  15362. height: math.unit(6, "feet"),
  15363. weight: math.unit(150, "lb"),
  15364. name: "Front",
  15365. image: {
  15366. source: "./media/characters/alluria/front.svg",
  15367. extra: 806 / 738,
  15368. bottom: 0.01
  15369. }
  15370. },
  15371. side: {
  15372. height: math.unit(6, "feet"),
  15373. weight: math.unit(150, "lb"),
  15374. name: "Side",
  15375. image: {
  15376. source: "./media/characters/alluria/side.svg",
  15377. extra: 800 / 750,
  15378. }
  15379. },
  15380. back: {
  15381. height: math.unit(6, "feet"),
  15382. weight: math.unit(150, "lb"),
  15383. name: "Back",
  15384. image: {
  15385. source: "./media/characters/alluria/back.svg",
  15386. extra: 806 / 738,
  15387. }
  15388. },
  15389. frontMaid: {
  15390. height: math.unit(6, "feet"),
  15391. weight: math.unit(150, "lb"),
  15392. name: "Front (Maid)",
  15393. image: {
  15394. source: "./media/characters/alluria/front-maid.svg",
  15395. extra: 806 / 738,
  15396. bottom: 0.01
  15397. }
  15398. },
  15399. sideMaid: {
  15400. height: math.unit(6, "feet"),
  15401. weight: math.unit(150, "lb"),
  15402. name: "Side (Maid)",
  15403. image: {
  15404. source: "./media/characters/alluria/side-maid.svg",
  15405. extra: 800 / 750,
  15406. bottom: 0.005
  15407. }
  15408. },
  15409. backMaid: {
  15410. height: math.unit(6, "feet"),
  15411. weight: math.unit(150, "lb"),
  15412. name: "Back (Maid)",
  15413. image: {
  15414. source: "./media/characters/alluria/back-maid.svg",
  15415. extra: 806 / 738,
  15416. }
  15417. },
  15418. },
  15419. [
  15420. {
  15421. name: "Micro",
  15422. height: math.unit(6, "inches"),
  15423. default: true
  15424. },
  15425. ]
  15426. ))
  15427. characterMakers.push(() => makeCharacter(
  15428. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15429. {
  15430. front: {
  15431. height: math.unit(6, "feet"),
  15432. weight: math.unit(150, "lb"),
  15433. name: "Front",
  15434. image: {
  15435. source: "./media/characters/kyle/front.svg",
  15436. extra: 1069 / 962,
  15437. bottom: 77.228 / 1727.45
  15438. }
  15439. },
  15440. },
  15441. [
  15442. {
  15443. name: "Macro",
  15444. height: math.unit(150, "feet"),
  15445. default: true
  15446. },
  15447. ]
  15448. ))
  15449. characterMakers.push(() => makeCharacter(
  15450. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15451. {
  15452. front: {
  15453. height: math.unit(6, "feet"),
  15454. weight: math.unit(300, "lb"),
  15455. name: "Front",
  15456. image: {
  15457. source: "./media/characters/duncan/front.svg",
  15458. extra: 1650 / 1482,
  15459. bottom: 0.05
  15460. }
  15461. },
  15462. },
  15463. [
  15464. {
  15465. name: "Macro",
  15466. height: math.unit(100, "feet"),
  15467. default: true
  15468. },
  15469. ]
  15470. ))
  15471. characterMakers.push(() => makeCharacter(
  15472. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15473. {
  15474. front: {
  15475. height: math.unit(5 + 4 / 12, "feet"),
  15476. weight: math.unit(220, "lb"),
  15477. name: "Front",
  15478. image: {
  15479. source: "./media/characters/memory/front.svg",
  15480. extra: 3641 / 3545,
  15481. bottom: 0.03
  15482. }
  15483. },
  15484. back: {
  15485. height: math.unit(5 + 4 / 12, "feet"),
  15486. weight: math.unit(220, "lb"),
  15487. name: "Back",
  15488. image: {
  15489. source: "./media/characters/memory/back.svg",
  15490. extra: 3641 / 3545,
  15491. bottom: 0.025
  15492. }
  15493. },
  15494. frontSkirt: {
  15495. height: math.unit(5 + 4 / 12, "feet"),
  15496. weight: math.unit(220, "lb"),
  15497. name: "Front (Skirt)",
  15498. image: {
  15499. source: "./media/characters/memory/front-skirt.svg",
  15500. extra: 3641 / 3545,
  15501. bottom: 0.03
  15502. }
  15503. },
  15504. frontDress: {
  15505. height: math.unit(5 + 4 / 12, "feet"),
  15506. weight: math.unit(220, "lb"),
  15507. name: "Front (Dress)",
  15508. image: {
  15509. source: "./media/characters/memory/front-dress.svg",
  15510. extra: 3641 / 3545,
  15511. bottom: 0.03
  15512. }
  15513. },
  15514. },
  15515. [
  15516. {
  15517. name: "Micro",
  15518. height: math.unit(6, "inches"),
  15519. default: true
  15520. },
  15521. {
  15522. name: "Normal",
  15523. height: math.unit(5 + 4 / 12, "feet")
  15524. },
  15525. ]
  15526. ))
  15527. characterMakers.push(() => makeCharacter(
  15528. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15529. {
  15530. front: {
  15531. height: math.unit(4 + 11 / 12, "feet"),
  15532. weight: math.unit(100, "lb"),
  15533. name: "Front",
  15534. image: {
  15535. source: "./media/characters/luno/front.svg",
  15536. extra: 1535 / 1487,
  15537. bottom: 0.03
  15538. }
  15539. },
  15540. },
  15541. [
  15542. {
  15543. name: "Micro",
  15544. height: math.unit(3, "inches")
  15545. },
  15546. {
  15547. name: "Normal",
  15548. height: math.unit(4 + 11 / 12, "feet"),
  15549. default: true
  15550. },
  15551. {
  15552. name: "Macro",
  15553. height: math.unit(300, "feet")
  15554. },
  15555. {
  15556. name: "Megamacro",
  15557. height: math.unit(700, "miles")
  15558. },
  15559. ]
  15560. ))
  15561. characterMakers.push(() => makeCharacter(
  15562. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15563. {
  15564. front: {
  15565. height: math.unit(6 + 2 / 12, "feet"),
  15566. weight: math.unit(170, "lb"),
  15567. name: "Front",
  15568. image: {
  15569. source: "./media/characters/jamesy/front.svg",
  15570. extra: 440 / 382,
  15571. bottom: 0.005
  15572. }
  15573. },
  15574. },
  15575. [
  15576. {
  15577. name: "Micro",
  15578. height: math.unit(3, "inches")
  15579. },
  15580. {
  15581. name: "Normal",
  15582. height: math.unit(6 + 2 / 12, "feet"),
  15583. default: true
  15584. },
  15585. {
  15586. name: "Macro",
  15587. height: math.unit(300, "feet")
  15588. },
  15589. {
  15590. name: "Megamacro",
  15591. height: math.unit(700, "miles")
  15592. },
  15593. ]
  15594. ))
  15595. characterMakers.push(() => makeCharacter(
  15596. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15597. {
  15598. front: {
  15599. height: math.unit(6, "feet"),
  15600. weight: math.unit(160, "lb"),
  15601. name: "Front",
  15602. image: {
  15603. source: "./media/characters/mark/front.svg",
  15604. extra: 3300 / 3100,
  15605. bottom: 136.42 / 3440.47
  15606. }
  15607. },
  15608. },
  15609. [
  15610. {
  15611. name: "Macro",
  15612. height: math.unit(120, "meters")
  15613. },
  15614. {
  15615. name: "Bigger Macro",
  15616. height: math.unit(350, "meters")
  15617. },
  15618. {
  15619. name: "Megamacro",
  15620. height: math.unit(8, "km"),
  15621. default: true
  15622. },
  15623. {
  15624. name: "Continental",
  15625. height: math.unit(4550, "km")
  15626. },
  15627. {
  15628. name: "Planetary",
  15629. height: math.unit(65000, "km")
  15630. },
  15631. ]
  15632. ))
  15633. characterMakers.push(() => makeCharacter(
  15634. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15635. {
  15636. front: {
  15637. height: math.unit(6, "feet"),
  15638. weight: math.unit(400, "lb"),
  15639. name: "Front",
  15640. image: {
  15641. source: "./media/characters/mac/front.svg",
  15642. extra: 1048 / 987.7,
  15643. bottom: 60 / 1107.6,
  15644. }
  15645. },
  15646. },
  15647. [
  15648. {
  15649. name: "Macro",
  15650. height: math.unit(500, "feet"),
  15651. default: true
  15652. },
  15653. ]
  15654. ))
  15655. characterMakers.push(() => makeCharacter(
  15656. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15657. {
  15658. front: {
  15659. height: math.unit(5 + 2 / 12, "feet"),
  15660. weight: math.unit(190, "lb"),
  15661. name: "Front",
  15662. image: {
  15663. source: "./media/characters/bari/front.svg",
  15664. extra: 3156 / 2880,
  15665. bottom: 0.03
  15666. }
  15667. },
  15668. back: {
  15669. height: math.unit(5 + 2 / 12, "feet"),
  15670. weight: math.unit(190, "lb"),
  15671. name: "Back",
  15672. image: {
  15673. source: "./media/characters/bari/back.svg",
  15674. extra: 3260 / 2834,
  15675. bottom: 0.025
  15676. }
  15677. },
  15678. frontPlush: {
  15679. height: math.unit(5 + 2 / 12, "feet"),
  15680. weight: math.unit(190, "lb"),
  15681. name: "Front (Plush)",
  15682. image: {
  15683. source: "./media/characters/bari/front-plush.svg",
  15684. extra: 1112 / 1061,
  15685. bottom: 0.002
  15686. }
  15687. },
  15688. },
  15689. [
  15690. {
  15691. name: "Micro",
  15692. height: math.unit(3, "inches")
  15693. },
  15694. {
  15695. name: "Normal",
  15696. height: math.unit(5 + 2 / 12, "feet"),
  15697. default: true
  15698. },
  15699. {
  15700. name: "Macro",
  15701. height: math.unit(20, "feet")
  15702. },
  15703. ]
  15704. ))
  15705. characterMakers.push(() => makeCharacter(
  15706. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  15707. {
  15708. front: {
  15709. height: math.unit(6 + 1 / 12, "feet"),
  15710. weight: math.unit(275, "lb"),
  15711. name: "Front",
  15712. image: {
  15713. source: "./media/characters/hunter-misha-raven/front.svg"
  15714. }
  15715. },
  15716. },
  15717. [
  15718. {
  15719. name: "Mortal",
  15720. height: math.unit(6 + 1 / 12, "feet")
  15721. },
  15722. {
  15723. name: "Divine",
  15724. height: math.unit(1.12134e34, "parsecs"),
  15725. default: true
  15726. },
  15727. ]
  15728. ))
  15729. characterMakers.push(() => makeCharacter(
  15730. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  15731. {
  15732. front: {
  15733. height: math.unit(6 + 3 / 12, "feet"),
  15734. weight: math.unit(220, "lb"),
  15735. name: "Front",
  15736. image: {
  15737. source: "./media/characters/max-calore/front.svg",
  15738. extra: 1700 / 1648,
  15739. bottom: 0.01
  15740. }
  15741. },
  15742. back: {
  15743. height: math.unit(6 + 3 / 12, "feet"),
  15744. weight: math.unit(220, "lb"),
  15745. name: "Back",
  15746. image: {
  15747. source: "./media/characters/max-calore/back.svg",
  15748. extra: 1700 / 1648,
  15749. bottom: 0.01
  15750. }
  15751. },
  15752. },
  15753. [
  15754. {
  15755. name: "Normal",
  15756. height: math.unit(6 + 3 / 12, "feet"),
  15757. default: true
  15758. },
  15759. ]
  15760. ))
  15761. characterMakers.push(() => makeCharacter(
  15762. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  15763. {
  15764. side: {
  15765. height: math.unit(2 + 8 / 12, "feet"),
  15766. weight: math.unit(99, "lb"),
  15767. name: "Side",
  15768. image: {
  15769. source: "./media/characters/aspen/side.svg",
  15770. extra: 152 / 138,
  15771. bottom: 0.032
  15772. }
  15773. },
  15774. },
  15775. [
  15776. {
  15777. name: "Normal",
  15778. height: math.unit(2 + 8 / 12, "feet"),
  15779. default: true
  15780. },
  15781. ]
  15782. ))
  15783. characterMakers.push(() => makeCharacter(
  15784. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  15785. {
  15786. side: {
  15787. height: math.unit(3 + 2 / 12, "feet"),
  15788. weight: math.unit(224, "lb"),
  15789. name: "Side",
  15790. image: {
  15791. source: "./media/characters/sheila-feral-wolf/side.svg",
  15792. extra: 179 / 166,
  15793. bottom: 0.03
  15794. }
  15795. },
  15796. },
  15797. [
  15798. {
  15799. name: "Normal",
  15800. height: math.unit(3 + 2 / 12, "feet"),
  15801. default: true
  15802. },
  15803. ]
  15804. ))
  15805. characterMakers.push(() => makeCharacter(
  15806. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  15807. {
  15808. side: {
  15809. height: math.unit(1 + 9 / 12, "feet"),
  15810. weight: math.unit(38, "lb"),
  15811. name: "Side",
  15812. image: {
  15813. source: "./media/characters/michelle/side.svg",
  15814. extra: 147 / 136.7,
  15815. bottom: 0.03
  15816. }
  15817. },
  15818. },
  15819. [
  15820. {
  15821. name: "Normal",
  15822. height: math.unit(1 + 9 / 12, "feet"),
  15823. default: true
  15824. },
  15825. ]
  15826. ))
  15827. characterMakers.push(() => makeCharacter(
  15828. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  15829. {
  15830. front: {
  15831. height: math.unit(1 + 1 / 12, "feet"),
  15832. weight: math.unit(18, "lb"),
  15833. name: "Front",
  15834. image: {
  15835. source: "./media/characters/nino/front.svg"
  15836. }
  15837. },
  15838. },
  15839. [
  15840. {
  15841. name: "Normal",
  15842. height: math.unit(1 + 1 / 12, "feet"),
  15843. default: true
  15844. },
  15845. ]
  15846. ))
  15847. characterMakers.push(() => makeCharacter(
  15848. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  15849. {
  15850. front: {
  15851. height: math.unit(1, "feet"),
  15852. weight: math.unit(16, "lb"),
  15853. name: "Front",
  15854. image: {
  15855. source: "./media/characters/viola/front.svg"
  15856. }
  15857. },
  15858. },
  15859. [
  15860. {
  15861. name: "Normal",
  15862. height: math.unit(1, "feet"),
  15863. default: true
  15864. },
  15865. ]
  15866. ))
  15867. characterMakers.push(() => makeCharacter(
  15868. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  15869. {
  15870. front: {
  15871. height: math.unit(6 + 5 / 12, "feet"),
  15872. weight: math.unit(580, "lb"),
  15873. name: "Front",
  15874. image: {
  15875. source: "./media/characters/atlas/front.svg",
  15876. extra: 298.5 / 290,
  15877. bottom: 0.015
  15878. }
  15879. },
  15880. },
  15881. [
  15882. {
  15883. name: "Normal",
  15884. height: math.unit(6 + 5 / 12, "feet"),
  15885. default: true
  15886. },
  15887. ]
  15888. ))
  15889. characterMakers.push(() => makeCharacter(
  15890. { name: "Davy", species: ["cat"], tags: ["feral"] },
  15891. {
  15892. side: {
  15893. height: math.unit(1 + 10 / 12, "feet"),
  15894. weight: math.unit(25, "lb"),
  15895. name: "Side",
  15896. image: {
  15897. source: "./media/characters/davy/side.svg",
  15898. extra: 200 / 170,
  15899. bottom: 0.01
  15900. }
  15901. },
  15902. },
  15903. [
  15904. {
  15905. name: "Normal",
  15906. height: math.unit(1 + 10 / 12, "feet"),
  15907. default: true
  15908. },
  15909. ]
  15910. ))
  15911. characterMakers.push(() => makeCharacter(
  15912. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  15913. {
  15914. side: {
  15915. height: math.unit(4 + 8 / 12, "feet"),
  15916. weight: math.unit(166, "lb"),
  15917. name: "Side",
  15918. image: {
  15919. source: "./media/characters/fiona/side.svg",
  15920. extra: 232 / 220,
  15921. bottom: 0.03
  15922. }
  15923. },
  15924. },
  15925. [
  15926. {
  15927. name: "Normal",
  15928. height: math.unit(4 + 8 / 12, "feet"),
  15929. default: true
  15930. },
  15931. ]
  15932. ))
  15933. characterMakers.push(() => makeCharacter(
  15934. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  15935. {
  15936. front: {
  15937. height: math.unit(2, "feet"),
  15938. weight: math.unit(62, "lb"),
  15939. name: "Front",
  15940. image: {
  15941. source: "./media/characters/lyla/front.svg",
  15942. bottom: 0.1
  15943. }
  15944. },
  15945. },
  15946. [
  15947. {
  15948. name: "Normal",
  15949. height: math.unit(2, "feet"),
  15950. default: true
  15951. },
  15952. ]
  15953. ))
  15954. characterMakers.push(() => makeCharacter(
  15955. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  15956. {
  15957. side: {
  15958. height: math.unit(1.8, "feet"),
  15959. weight: math.unit(44, "lb"),
  15960. name: "Side",
  15961. image: {
  15962. source: "./media/characters/perseus/side.svg",
  15963. bottom: 0.21
  15964. }
  15965. },
  15966. },
  15967. [
  15968. {
  15969. name: "Normal",
  15970. height: math.unit(1.8, "feet"),
  15971. default: true
  15972. },
  15973. ]
  15974. ))
  15975. characterMakers.push(() => makeCharacter(
  15976. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  15977. {
  15978. side: {
  15979. height: math.unit(4 + 2 / 12, "feet"),
  15980. weight: math.unit(20, "lb"),
  15981. name: "Side",
  15982. image: {
  15983. source: "./media/characters/remus/side.svg"
  15984. }
  15985. },
  15986. },
  15987. [
  15988. {
  15989. name: "Normal",
  15990. height: math.unit(4 + 2 / 12, "feet"),
  15991. default: true
  15992. },
  15993. ]
  15994. ))
  15995. characterMakers.push(() => makeCharacter(
  15996. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  15997. {
  15998. front: {
  15999. height: math.unit(4 + 11 / 12, "feet"),
  16000. weight: math.unit(114, "lb"),
  16001. name: "Front",
  16002. image: {
  16003. source: "./media/characters/raf/front.svg",
  16004. bottom: 0.01
  16005. }
  16006. },
  16007. side: {
  16008. height: math.unit(4 + 11 / 12, "feet"),
  16009. weight: math.unit(114, "lb"),
  16010. name: "Side",
  16011. image: {
  16012. source: "./media/characters/raf/side.svg",
  16013. bottom: 0.005
  16014. }
  16015. },
  16016. },
  16017. [
  16018. {
  16019. name: "Micro",
  16020. height: math.unit(2, "inches")
  16021. },
  16022. {
  16023. name: "Normal",
  16024. height: math.unit(4 + 11 / 12, "feet"),
  16025. default: true
  16026. },
  16027. {
  16028. name: "Macro",
  16029. height: math.unit(70, "feet")
  16030. },
  16031. ]
  16032. ))
  16033. characterMakers.push(() => makeCharacter(
  16034. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16035. {
  16036. front: {
  16037. height: math.unit(1.5, "meters"),
  16038. weight: math.unit(68, "kg"),
  16039. name: "Front",
  16040. image: {
  16041. source: "./media/characters/liam-einarr/front.svg",
  16042. extra: 2822 / 2666
  16043. }
  16044. },
  16045. back: {
  16046. height: math.unit(1.5, "meters"),
  16047. weight: math.unit(68, "kg"),
  16048. name: "Back",
  16049. image: {
  16050. source: "./media/characters/liam-einarr/back.svg",
  16051. extra: 2822 / 2666,
  16052. bottom: 0.015
  16053. }
  16054. },
  16055. },
  16056. [
  16057. {
  16058. name: "Normal",
  16059. height: math.unit(1.5, "meters"),
  16060. default: true
  16061. },
  16062. {
  16063. name: "Macro",
  16064. height: math.unit(150, "meters")
  16065. },
  16066. {
  16067. name: "Megamacro",
  16068. height: math.unit(35, "km")
  16069. },
  16070. ]
  16071. ))
  16072. characterMakers.push(() => makeCharacter(
  16073. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16074. {
  16075. front: {
  16076. height: math.unit(6, "feet"),
  16077. weight: math.unit(75, "kg"),
  16078. name: "Front",
  16079. image: {
  16080. source: "./media/characters/linda/front.svg",
  16081. extra: 930 / 874,
  16082. bottom: 0.004
  16083. }
  16084. },
  16085. },
  16086. [
  16087. {
  16088. name: "Normal",
  16089. height: math.unit(6, "feet"),
  16090. default: true
  16091. },
  16092. ]
  16093. ))
  16094. characterMakers.push(() => makeCharacter(
  16095. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16096. {
  16097. front: {
  16098. height: math.unit(6 + 8 / 12, "feet"),
  16099. weight: math.unit(220, "lb"),
  16100. name: "Front",
  16101. image: {
  16102. source: "./media/characters/caylex/front.svg",
  16103. extra: 821 / 772,
  16104. bottom: 0.07
  16105. }
  16106. },
  16107. back: {
  16108. height: math.unit(6 + 8 / 12, "feet"),
  16109. weight: math.unit(220, "lb"),
  16110. name: "Back",
  16111. image: {
  16112. source: "./media/characters/caylex/back.svg",
  16113. extra: 821 / 772,
  16114. bottom: 0.022
  16115. }
  16116. },
  16117. hand: {
  16118. height: math.unit(1.25, "feet"),
  16119. name: "Hand",
  16120. image: {
  16121. source: "./media/characters/caylex/hand.svg"
  16122. }
  16123. },
  16124. foot: {
  16125. height: math.unit(1.6, "feet"),
  16126. name: "Foot",
  16127. image: {
  16128. source: "./media/characters/caylex/foot.svg"
  16129. }
  16130. },
  16131. armored: {
  16132. height: math.unit(6 + 8 / 12, "feet"),
  16133. weight: math.unit(250, "lb"),
  16134. name: "Armored",
  16135. image: {
  16136. source: "./media/characters/caylex/armored.svg",
  16137. extra: 1420 / 1310,
  16138. bottom: 0.045
  16139. }
  16140. },
  16141. },
  16142. [
  16143. {
  16144. name: "Normal",
  16145. height: math.unit(6 + 8 / 12, "feet"),
  16146. default: true
  16147. },
  16148. {
  16149. name: "Normal+",
  16150. height: math.unit(12, "feet")
  16151. },
  16152. ]
  16153. ))
  16154. characterMakers.push(() => makeCharacter(
  16155. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16156. {
  16157. front: {
  16158. height: math.unit(7 + 6 / 12, "feet"),
  16159. weight: math.unit(288, "lb"),
  16160. name: "Front",
  16161. image: {
  16162. source: "./media/characters/alana/front.svg",
  16163. extra: 679 / 653,
  16164. bottom: 22.5 / 701
  16165. }
  16166. },
  16167. },
  16168. [
  16169. {
  16170. name: "Normal",
  16171. height: math.unit(7 + 6 / 12, "feet")
  16172. },
  16173. {
  16174. name: "Large",
  16175. height: math.unit(50, "feet")
  16176. },
  16177. {
  16178. name: "Macro",
  16179. height: math.unit(100, "feet"),
  16180. default: true
  16181. },
  16182. {
  16183. name: "Macro+",
  16184. height: math.unit(200, "feet")
  16185. },
  16186. ]
  16187. ))
  16188. characterMakers.push(() => makeCharacter(
  16189. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16190. {
  16191. front: {
  16192. height: math.unit(6 + 1 / 12, "feet"),
  16193. weight: math.unit(210, "lb"),
  16194. name: "Front",
  16195. image: {
  16196. source: "./media/characters/hasani/front.svg",
  16197. extra: 244 / 232,
  16198. bottom: 0.01
  16199. }
  16200. },
  16201. back: {
  16202. height: math.unit(6 + 1 / 12, "feet"),
  16203. weight: math.unit(210, "lb"),
  16204. name: "Back",
  16205. image: {
  16206. source: "./media/characters/hasani/back.svg",
  16207. extra: 244 / 232,
  16208. bottom: 0.01
  16209. }
  16210. },
  16211. },
  16212. [
  16213. {
  16214. name: "Normal",
  16215. height: math.unit(6 + 1 / 12, "feet")
  16216. },
  16217. {
  16218. name: "Macro",
  16219. height: math.unit(175, "feet"),
  16220. default: true
  16221. },
  16222. ]
  16223. ))
  16224. characterMakers.push(() => makeCharacter(
  16225. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16226. {
  16227. front: {
  16228. height: math.unit(1.82, "meters"),
  16229. weight: math.unit(140, "lb"),
  16230. name: "Front",
  16231. image: {
  16232. source: "./media/characters/nita/front.svg",
  16233. extra: 2473 / 2363,
  16234. bottom: 0.01
  16235. }
  16236. },
  16237. },
  16238. [
  16239. {
  16240. name: "Normal",
  16241. height: math.unit(1.82, "m")
  16242. },
  16243. {
  16244. name: "Macro",
  16245. height: math.unit(300, "m")
  16246. },
  16247. {
  16248. name: "Mistake Canon",
  16249. height: math.unit(0.5, "miles"),
  16250. default: true
  16251. },
  16252. {
  16253. name: "Big Mistake",
  16254. height: math.unit(13, "miles")
  16255. },
  16256. {
  16257. name: "Playing God",
  16258. height: math.unit(2450, "miles")
  16259. },
  16260. ]
  16261. ))
  16262. characterMakers.push(() => makeCharacter(
  16263. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16264. {
  16265. front: {
  16266. height: math.unit(4, "feet"),
  16267. weight: math.unit(120, "lb"),
  16268. name: "Front",
  16269. image: {
  16270. source: "./media/characters/shiriko/front.svg",
  16271. extra: 195 / 188
  16272. }
  16273. },
  16274. },
  16275. [
  16276. {
  16277. name: "Normal",
  16278. height: math.unit(4, "feet"),
  16279. default: true
  16280. },
  16281. ]
  16282. ))
  16283. characterMakers.push(() => makeCharacter(
  16284. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16285. {
  16286. front: {
  16287. height: math.unit(6, "feet"),
  16288. name: "front",
  16289. image: {
  16290. source: "./media/characters/deja/front.svg",
  16291. extra: 926 / 840,
  16292. bottom: 0.07
  16293. }
  16294. },
  16295. },
  16296. [
  16297. {
  16298. name: "Planck Length",
  16299. height: math.unit(1.6e-35, "meters")
  16300. },
  16301. {
  16302. name: "Normal",
  16303. height: math.unit(30.48, "meters"),
  16304. default: true
  16305. },
  16306. {
  16307. name: "Universal",
  16308. height: math.unit(8.8e26, "meters")
  16309. },
  16310. ]
  16311. ))
  16312. characterMakers.push(() => makeCharacter(
  16313. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16314. {
  16315. side: {
  16316. height: math.unit(8, "feet"),
  16317. weight: math.unit(6300, "lb"),
  16318. name: "Side",
  16319. image: {
  16320. source: "./media/characters/anima/side.svg",
  16321. bottom: 0.035
  16322. }
  16323. },
  16324. },
  16325. [
  16326. {
  16327. name: "Normal",
  16328. height: math.unit(8, "feet"),
  16329. default: true
  16330. },
  16331. ]
  16332. ))
  16333. characterMakers.push(() => makeCharacter(
  16334. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16335. {
  16336. front: {
  16337. height: math.unit(8, "feet"),
  16338. weight: math.unit(350, "lb"),
  16339. name: "Front",
  16340. image: {
  16341. source: "./media/characters/bianca/front.svg",
  16342. extra: 234 / 225,
  16343. bottom: 0.03
  16344. }
  16345. },
  16346. },
  16347. [
  16348. {
  16349. name: "Normal",
  16350. height: math.unit(8, "feet"),
  16351. default: true
  16352. },
  16353. ]
  16354. ))
  16355. characterMakers.push(() => makeCharacter(
  16356. { name: "Adinia", species: ["kelpie"], tags: ["anthro"] },
  16357. {
  16358. front: {
  16359. height: math.unit(6, "feet"),
  16360. weight: math.unit(150, "lb"),
  16361. name: "Front",
  16362. image: {
  16363. source: "./media/characters/adinia/front.svg",
  16364. extra: 1845 / 1672,
  16365. bottom: 0.02
  16366. }
  16367. },
  16368. back: {
  16369. height: math.unit(6, "feet"),
  16370. weight: math.unit(150, "lb"),
  16371. name: "Back",
  16372. image: {
  16373. source: "./media/characters/adinia/back.svg",
  16374. extra: 1845 / 1672,
  16375. bottom: 0.002
  16376. }
  16377. },
  16378. },
  16379. [
  16380. {
  16381. name: "Normal",
  16382. height: math.unit(11 + 5 / 12, "feet"),
  16383. default: true
  16384. },
  16385. ]
  16386. ))
  16387. characterMakers.push(() => makeCharacter(
  16388. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16389. {
  16390. front: {
  16391. height: math.unit(3, "meters"),
  16392. weight: math.unit(200, "kg"),
  16393. name: "Front",
  16394. image: {
  16395. source: "./media/characters/lykasa/front.svg",
  16396. extra: 1076 / 976,
  16397. bottom: 0.06
  16398. }
  16399. },
  16400. },
  16401. [
  16402. {
  16403. name: "Normal",
  16404. height: math.unit(3, "meters")
  16405. },
  16406. {
  16407. name: "Kaiju",
  16408. height: math.unit(120, "meters"),
  16409. default: true
  16410. },
  16411. {
  16412. name: "Mega Kaiju",
  16413. height: math.unit(240, "km")
  16414. },
  16415. {
  16416. name: "Giga Kaiju",
  16417. height: math.unit(400, "megameters")
  16418. },
  16419. {
  16420. name: "Tera Kaiju",
  16421. height: math.unit(800, "gigameters")
  16422. },
  16423. {
  16424. name: "Kaiju Dragon Goddess",
  16425. height: math.unit(26, "zettaparsecs")
  16426. },
  16427. ]
  16428. ))
  16429. characterMakers.push(() => makeCharacter(
  16430. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16431. {
  16432. side: {
  16433. height: math.unit(283 / 124 * 6, "feet"),
  16434. weight: math.unit(35000, "lb"),
  16435. name: "Side",
  16436. image: {
  16437. source: "./media/characters/malfaren/side.svg",
  16438. extra: 2500 / 1010,
  16439. bottom: 0.01
  16440. }
  16441. },
  16442. front: {
  16443. height: math.unit(22.36, "feet"),
  16444. weight: math.unit(35000, "lb"),
  16445. name: "Front",
  16446. image: {
  16447. source: "./media/characters/malfaren/front.svg",
  16448. extra: 1631 / 1476,
  16449. bottom: 0.01
  16450. }
  16451. },
  16452. maw: {
  16453. height: math.unit(6.9, "feet"),
  16454. name: "Maw",
  16455. image: {
  16456. source: "./media/characters/malfaren/maw.svg"
  16457. }
  16458. },
  16459. },
  16460. [
  16461. {
  16462. name: "Big",
  16463. height: math.unit(283 / 162 * 6, "feet"),
  16464. },
  16465. {
  16466. name: "Bigger",
  16467. height: math.unit(283 / 124 * 6, "feet")
  16468. },
  16469. {
  16470. name: "Massive",
  16471. height: math.unit(283 / 92 * 6, "feet"),
  16472. default: true
  16473. },
  16474. {
  16475. name: "👀💦",
  16476. height: math.unit(283 / 73 * 6, "feet"),
  16477. },
  16478. ]
  16479. ))
  16480. characterMakers.push(() => makeCharacter(
  16481. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16482. {
  16483. front: {
  16484. height: math.unit(1.7, "m"),
  16485. weight: math.unit(70, "kg"),
  16486. name: "Front",
  16487. image: {
  16488. source: "./media/characters/kernel/front.svg",
  16489. extra: 222 / 210,
  16490. bottom: 0.007
  16491. }
  16492. },
  16493. },
  16494. [
  16495. {
  16496. name: "Nano",
  16497. height: math.unit(17, "micrometers")
  16498. },
  16499. {
  16500. name: "Micro",
  16501. height: math.unit(1.7, "mm")
  16502. },
  16503. {
  16504. name: "Small",
  16505. height: math.unit(1.7, "cm")
  16506. },
  16507. {
  16508. name: "Normal",
  16509. height: math.unit(1.7, "m"),
  16510. default: true
  16511. },
  16512. ]
  16513. ))
  16514. characterMakers.push(() => makeCharacter(
  16515. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16516. {
  16517. front: {
  16518. height: math.unit(1.75, "meters"),
  16519. weight: math.unit(65, "kg"),
  16520. name: "Front",
  16521. image: {
  16522. source: "./media/characters/jayne-folest/front.svg",
  16523. extra: 2115 / 2007,
  16524. bottom: 0.02
  16525. }
  16526. },
  16527. back: {
  16528. height: math.unit(1.75, "meters"),
  16529. weight: math.unit(65, "kg"),
  16530. name: "Back",
  16531. image: {
  16532. source: "./media/characters/jayne-folest/back.svg",
  16533. extra: 2115 / 2007,
  16534. bottom: 0.005
  16535. }
  16536. },
  16537. frontClothed: {
  16538. height: math.unit(1.75, "meters"),
  16539. weight: math.unit(65, "kg"),
  16540. name: "Front (Clothed)",
  16541. image: {
  16542. source: "./media/characters/jayne-folest/front-clothed.svg",
  16543. extra: 2115 / 2007,
  16544. bottom: 0.035
  16545. }
  16546. },
  16547. hand: {
  16548. height: math.unit(1 / 1.260, "feet"),
  16549. name: "Hand",
  16550. image: {
  16551. source: "./media/characters/jayne-folest/hand.svg"
  16552. }
  16553. },
  16554. foot: {
  16555. height: math.unit(1 / 0.918, "feet"),
  16556. name: "Foot",
  16557. image: {
  16558. source: "./media/characters/jayne-folest/foot.svg"
  16559. }
  16560. },
  16561. },
  16562. [
  16563. {
  16564. name: "Micro",
  16565. height: math.unit(4, "cm")
  16566. },
  16567. {
  16568. name: "Normal",
  16569. height: math.unit(1.75, "meters")
  16570. },
  16571. {
  16572. name: "Macro",
  16573. height: math.unit(47.5, "meters"),
  16574. default: true
  16575. },
  16576. ]
  16577. ))
  16578. characterMakers.push(() => makeCharacter(
  16579. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16580. {
  16581. front: {
  16582. height: math.unit(180, "cm"),
  16583. weight: math.unit(70, "kg"),
  16584. name: "Front",
  16585. image: {
  16586. source: "./media/characters/algier/front.svg",
  16587. extra: 596 / 572,
  16588. bottom: 0.04
  16589. }
  16590. },
  16591. back: {
  16592. height: math.unit(180, "cm"),
  16593. weight: math.unit(70, "kg"),
  16594. name: "Back",
  16595. image: {
  16596. source: "./media/characters/algier/back.svg",
  16597. extra: 596 / 572,
  16598. bottom: 0.025
  16599. }
  16600. },
  16601. frontdressed: {
  16602. height: math.unit(180, "cm"),
  16603. weight: math.unit(150, "kg"),
  16604. name: "Front-dressed",
  16605. image: {
  16606. source: "./media/characters/algier/front-dressed.svg",
  16607. extra: 596 / 572,
  16608. bottom: 0.038
  16609. }
  16610. },
  16611. },
  16612. [
  16613. {
  16614. name: "Micro",
  16615. height: math.unit(5, "cm")
  16616. },
  16617. {
  16618. name: "Normal",
  16619. height: math.unit(180, "cm"),
  16620. default: true
  16621. },
  16622. {
  16623. name: "Macro",
  16624. height: math.unit(64, "m")
  16625. },
  16626. ]
  16627. ))
  16628. characterMakers.push(() => makeCharacter(
  16629. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16630. {
  16631. upright: {
  16632. height: math.unit(7, "feet"),
  16633. weight: math.unit(300, "lb"),
  16634. name: "Upright",
  16635. image: {
  16636. source: "./media/characters/pretzel/upright.svg",
  16637. extra: 534 / 522,
  16638. bottom: 0.065
  16639. }
  16640. },
  16641. sprawling: {
  16642. height: math.unit(3.75, "feet"),
  16643. weight: math.unit(300, "lb"),
  16644. name: "Sprawling",
  16645. image: {
  16646. source: "./media/characters/pretzel/sprawling.svg",
  16647. extra: 314 / 281,
  16648. bottom: 0.1
  16649. }
  16650. },
  16651. tongue: {
  16652. height: math.unit(2, "feet"),
  16653. name: "Tongue",
  16654. image: {
  16655. source: "./media/characters/pretzel/tongue.svg"
  16656. }
  16657. },
  16658. },
  16659. [
  16660. {
  16661. name: "Normal",
  16662. height: math.unit(7, "feet"),
  16663. default: true
  16664. },
  16665. {
  16666. name: "Oversized",
  16667. height: math.unit(15, "feet")
  16668. },
  16669. {
  16670. name: "Huge",
  16671. height: math.unit(30, "feet")
  16672. },
  16673. {
  16674. name: "Macro",
  16675. height: math.unit(250, "feet")
  16676. },
  16677. ]
  16678. ))
  16679. characterMakers.push(() => makeCharacter(
  16680. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16681. {
  16682. sideFront: {
  16683. height: math.unit(5 + 2 / 12, "feet"),
  16684. weight: math.unit(120, "lb"),
  16685. name: "Front Side",
  16686. image: {
  16687. source: "./media/characters/roxi/side-front.svg",
  16688. extra: 2924 / 2717,
  16689. bottom: 0.08
  16690. }
  16691. },
  16692. sideBack: {
  16693. height: math.unit(5 + 2 / 12, "feet"),
  16694. weight: math.unit(120, "lb"),
  16695. name: "Back Side",
  16696. image: {
  16697. source: "./media/characters/roxi/side-back.svg",
  16698. extra: 2904 / 2693,
  16699. bottom: 0.06
  16700. }
  16701. },
  16702. front: {
  16703. height: math.unit(5 + 2 / 12, "feet"),
  16704. weight: math.unit(120, "lb"),
  16705. name: "Front",
  16706. image: {
  16707. source: "./media/characters/roxi/front.svg",
  16708. extra: 2028 / 1907,
  16709. bottom: 0.01
  16710. }
  16711. },
  16712. frontAlt: {
  16713. height: math.unit(5 + 2 / 12, "feet"),
  16714. weight: math.unit(120, "lb"),
  16715. name: "Front (Alt)",
  16716. image: {
  16717. source: "./media/characters/roxi/front-alt.svg",
  16718. extra: 1828 / 1798,
  16719. bottom: 0.01
  16720. }
  16721. },
  16722. sitting: {
  16723. height: math.unit(2.8, "feet"),
  16724. weight: math.unit(120, "lb"),
  16725. name: "Sitting",
  16726. image: {
  16727. source: "./media/characters/roxi/sitting.svg",
  16728. extra: 2660 / 2462,
  16729. bottom: 0.1
  16730. }
  16731. },
  16732. },
  16733. [
  16734. {
  16735. name: "Normal",
  16736. height: math.unit(5 + 2 / 12, "feet"),
  16737. default: true
  16738. },
  16739. ]
  16740. ))
  16741. characterMakers.push(() => makeCharacter(
  16742. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  16743. {
  16744. side: {
  16745. height: math.unit(55, "feet"),
  16746. weight: math.unit(153, "tons"),
  16747. name: "Side",
  16748. image: {
  16749. source: "./media/characters/shadow/side.svg",
  16750. extra: 701 / 628,
  16751. bottom: 0.02
  16752. }
  16753. },
  16754. flying: {
  16755. height: math.unit(145, "feet"),
  16756. weight: math.unit(153, "tons"),
  16757. name: "Flying",
  16758. image: {
  16759. source: "./media/characters/shadow/flying.svg"
  16760. }
  16761. },
  16762. },
  16763. [
  16764. {
  16765. name: "Normal",
  16766. height: math.unit(55, "feet"),
  16767. default: true
  16768. },
  16769. ]
  16770. ))
  16771. characterMakers.push(() => makeCharacter(
  16772. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  16773. {
  16774. front: {
  16775. height: math.unit(6, "feet"),
  16776. weight: math.unit(200, "lb"),
  16777. name: "Front",
  16778. image: {
  16779. source: "./media/characters/marcie/front.svg",
  16780. extra: 960 / 876,
  16781. bottom: 58 / 1017.87
  16782. }
  16783. },
  16784. },
  16785. [
  16786. {
  16787. name: "Macro",
  16788. height: math.unit(1, "mile"),
  16789. default: true
  16790. },
  16791. ]
  16792. ))
  16793. characterMakers.push(() => makeCharacter(
  16794. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  16795. {
  16796. front: {
  16797. height: math.unit(7, "feet"),
  16798. weight: math.unit(200, "lb"),
  16799. name: "Front",
  16800. image: {
  16801. source: "./media/characters/kachina/front.svg",
  16802. extra: 1290.68 / 1119,
  16803. bottom: 36.5 / 1327.18
  16804. }
  16805. },
  16806. },
  16807. [
  16808. {
  16809. name: "Normal",
  16810. height: math.unit(7, "feet"),
  16811. default: true
  16812. },
  16813. ]
  16814. ))
  16815. characterMakers.push(() => makeCharacter(
  16816. { name: "Kash", species: ["canine"], tags: ["feral"] },
  16817. {
  16818. looking: {
  16819. height: math.unit(2, "meters"),
  16820. weight: math.unit(300, "kg"),
  16821. name: "Looking",
  16822. image: {
  16823. source: "./media/characters/kash/looking.svg",
  16824. extra: 474 / 344,
  16825. bottom: 0.03
  16826. }
  16827. },
  16828. side: {
  16829. height: math.unit(2, "meters"),
  16830. weight: math.unit(300, "kg"),
  16831. name: "Side",
  16832. image: {
  16833. source: "./media/characters/kash/side.svg",
  16834. extra: 302 / 251,
  16835. bottom: 0.03
  16836. }
  16837. },
  16838. front: {
  16839. height: math.unit(2, "meters"),
  16840. weight: math.unit(300, "kg"),
  16841. name: "Front",
  16842. image: {
  16843. source: "./media/characters/kash/front.svg",
  16844. extra: 495 / 360,
  16845. bottom: 0.015
  16846. }
  16847. },
  16848. },
  16849. [
  16850. {
  16851. name: "Normal",
  16852. height: math.unit(2, "meters"),
  16853. default: true
  16854. },
  16855. {
  16856. name: "Big",
  16857. height: math.unit(3, "meters")
  16858. },
  16859. {
  16860. name: "Large",
  16861. height: math.unit(5, "meters")
  16862. },
  16863. ]
  16864. ))
  16865. characterMakers.push(() => makeCharacter(
  16866. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  16867. {
  16868. feeding: {
  16869. height: math.unit(6.7, "feet"),
  16870. weight: math.unit(350, "lb"),
  16871. name: "Feeding",
  16872. image: {
  16873. source: "./media/characters/lalim/feeding.svg",
  16874. }
  16875. },
  16876. },
  16877. [
  16878. {
  16879. name: "Normal",
  16880. height: math.unit(6.7, "feet"),
  16881. default: true
  16882. },
  16883. ]
  16884. ))
  16885. characterMakers.push(() => makeCharacter(
  16886. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  16887. {
  16888. front: {
  16889. height: math.unit(9.5, "feet"),
  16890. weight: math.unit(600, "lb"),
  16891. name: "Front",
  16892. image: {
  16893. source: "./media/characters/de'vout/front.svg",
  16894. extra: 1443 / 1328,
  16895. bottom: 0.025
  16896. }
  16897. },
  16898. back: {
  16899. height: math.unit(9.5, "feet"),
  16900. weight: math.unit(600, "lb"),
  16901. name: "Back",
  16902. image: {
  16903. source: "./media/characters/de'vout/back.svg",
  16904. extra: 1443 / 1328
  16905. }
  16906. },
  16907. frontDressed: {
  16908. height: math.unit(9.5, "feet"),
  16909. weight: math.unit(600, "lb"),
  16910. name: "Front (Dressed",
  16911. image: {
  16912. source: "./media/characters/de'vout/front-dressed.svg",
  16913. extra: 1443 / 1328,
  16914. bottom: 0.025
  16915. }
  16916. },
  16917. backDressed: {
  16918. height: math.unit(9.5, "feet"),
  16919. weight: math.unit(600, "lb"),
  16920. name: "Back (Dressed",
  16921. image: {
  16922. source: "./media/characters/de'vout/back-dressed.svg",
  16923. extra: 1443 / 1328
  16924. }
  16925. },
  16926. },
  16927. [
  16928. {
  16929. name: "Normal",
  16930. height: math.unit(9.5, "feet"),
  16931. default: true
  16932. },
  16933. ]
  16934. ))
  16935. characterMakers.push(() => makeCharacter(
  16936. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  16937. {
  16938. front: {
  16939. height: math.unit(8, "feet"),
  16940. weight: math.unit(225, "lb"),
  16941. name: "Front",
  16942. image: {
  16943. source: "./media/characters/talana/front.svg",
  16944. extra: 1410 / 1300,
  16945. bottom: 0.015
  16946. }
  16947. },
  16948. frontDressed: {
  16949. height: math.unit(8, "feet"),
  16950. weight: math.unit(225, "lb"),
  16951. name: "Front (Dressed",
  16952. image: {
  16953. source: "./media/characters/talana/front-dressed.svg",
  16954. extra: 1410 / 1300,
  16955. bottom: 0.015
  16956. }
  16957. },
  16958. },
  16959. [
  16960. {
  16961. name: "Normal",
  16962. height: math.unit(8, "feet"),
  16963. default: true
  16964. },
  16965. ]
  16966. ))
  16967. characterMakers.push(() => makeCharacter(
  16968. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  16969. {
  16970. side: {
  16971. height: math.unit(7.2, "feet"),
  16972. weight: math.unit(150, "lb"),
  16973. name: "Side",
  16974. image: {
  16975. source: "./media/characters/xeauvok/side.svg",
  16976. extra: 1975 / 1523,
  16977. bottom: 0.07
  16978. }
  16979. },
  16980. },
  16981. [
  16982. {
  16983. name: "Normal",
  16984. height: math.unit(7.2, "feet"),
  16985. default: true
  16986. },
  16987. ]
  16988. ))
  16989. characterMakers.push(() => makeCharacter(
  16990. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  16991. {
  16992. side: {
  16993. height: math.unit(10, "feet"),
  16994. weight: math.unit(900, "kg"),
  16995. name: "Side",
  16996. image: {
  16997. source: "./media/characters/zara/side.svg",
  16998. extra: 504 / 498
  16999. }
  17000. },
  17001. },
  17002. [
  17003. {
  17004. name: "Normal",
  17005. height: math.unit(10, "feet"),
  17006. default: true
  17007. },
  17008. ]
  17009. ))
  17010. characterMakers.push(() => makeCharacter(
  17011. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17012. {
  17013. side: {
  17014. height: math.unit(6, "feet"),
  17015. weight: math.unit(150, "lb"),
  17016. name: "Side",
  17017. image: {
  17018. source: "./media/characters/richard-dragon/side.svg",
  17019. extra: 845 / 340,
  17020. bottom: 0.017
  17021. }
  17022. },
  17023. maw: {
  17024. height: math.unit(2.97, "feet"),
  17025. name: "Maw",
  17026. image: {
  17027. source: "./media/characters/richard-dragon/maw.svg"
  17028. }
  17029. },
  17030. },
  17031. [
  17032. ]
  17033. ))
  17034. characterMakers.push(() => makeCharacter(
  17035. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17036. {
  17037. front: {
  17038. height: math.unit(4, "feet"),
  17039. weight: math.unit(100, "lb"),
  17040. name: "Front",
  17041. image: {
  17042. source: "./media/characters/richard-smeargle/front.svg",
  17043. extra: 2952 / 2820,
  17044. bottom: 0.028
  17045. }
  17046. },
  17047. },
  17048. [
  17049. {
  17050. name: "Normal",
  17051. height: math.unit(4, "feet"),
  17052. default: true
  17053. },
  17054. {
  17055. name: "Dynamax",
  17056. height: math.unit(20, "meters")
  17057. },
  17058. ]
  17059. ))
  17060. characterMakers.push(() => makeCharacter(
  17061. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17062. {
  17063. front: {
  17064. height: math.unit(6, "feet"),
  17065. weight: math.unit(110, "lb"),
  17066. name: "Front",
  17067. image: {
  17068. source: "./media/characters/klay/front.svg",
  17069. extra: 962 / 883,
  17070. bottom: 0.04
  17071. }
  17072. },
  17073. back: {
  17074. height: math.unit(6, "feet"),
  17075. weight: math.unit(110, "lb"),
  17076. name: "Back",
  17077. image: {
  17078. source: "./media/characters/klay/back.svg",
  17079. extra: 962 / 883
  17080. }
  17081. },
  17082. beans: {
  17083. height: math.unit(1.15, "feet"),
  17084. name: "Beans",
  17085. image: {
  17086. source: "./media/characters/klay/beans.svg"
  17087. }
  17088. },
  17089. },
  17090. [
  17091. {
  17092. name: "Micro",
  17093. height: math.unit(6, "inches")
  17094. },
  17095. {
  17096. name: "Mini",
  17097. height: math.unit(3, "feet")
  17098. },
  17099. {
  17100. name: "Normal",
  17101. height: math.unit(6, "feet"),
  17102. default: true
  17103. },
  17104. {
  17105. name: "Big",
  17106. height: math.unit(25, "feet")
  17107. },
  17108. {
  17109. name: "Macro",
  17110. height: math.unit(100, "feet")
  17111. },
  17112. {
  17113. name: "Megamacro",
  17114. height: math.unit(400, "feet")
  17115. },
  17116. ]
  17117. ))
  17118. characterMakers.push(() => makeCharacter(
  17119. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17120. {
  17121. front: {
  17122. height: math.unit(6, "feet"),
  17123. weight: math.unit(160, "lb"),
  17124. name: "Front",
  17125. image: {
  17126. source: "./media/characters/marcus/front.svg",
  17127. extra: 734 / 676,
  17128. bottom: 0.03
  17129. }
  17130. },
  17131. },
  17132. [
  17133. {
  17134. name: "Little",
  17135. height: math.unit(6, "feet")
  17136. },
  17137. {
  17138. name: "Normal",
  17139. height: math.unit(110, "feet"),
  17140. default: true
  17141. },
  17142. {
  17143. name: "Macro",
  17144. height: math.unit(250, "feet")
  17145. },
  17146. {
  17147. name: "Megamacro",
  17148. height: math.unit(1000, "feet")
  17149. },
  17150. ]
  17151. ))
  17152. characterMakers.push(() => makeCharacter(
  17153. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17154. {
  17155. front: {
  17156. height: math.unit(7, "feet"),
  17157. weight: math.unit(275, "lb"),
  17158. name: "Front",
  17159. image: {
  17160. source: "./media/characters/claude-delroute/front.svg",
  17161. extra: 230 / 214,
  17162. bottom: 0.007
  17163. }
  17164. },
  17165. side: {
  17166. height: math.unit(7, "feet"),
  17167. weight: math.unit(275, "lb"),
  17168. name: "Side",
  17169. image: {
  17170. source: "./media/characters/claude-delroute/side.svg",
  17171. extra: 222 / 214,
  17172. bottom: 0.01
  17173. }
  17174. },
  17175. back: {
  17176. height: math.unit(7, "feet"),
  17177. weight: math.unit(275, "lb"),
  17178. name: "Back",
  17179. image: {
  17180. source: "./media/characters/claude-delroute/back.svg",
  17181. extra: 230 / 214,
  17182. bottom: 0.015
  17183. }
  17184. },
  17185. maw: {
  17186. height: math.unit(0.6407, "meters"),
  17187. name: "Maw",
  17188. image: {
  17189. source: "./media/characters/claude-delroute/maw.svg"
  17190. }
  17191. },
  17192. },
  17193. [
  17194. {
  17195. name: "Normal",
  17196. height: math.unit(7, "feet"),
  17197. default: true
  17198. },
  17199. {
  17200. name: "Lorge",
  17201. height: math.unit(20, "feet")
  17202. },
  17203. ]
  17204. ))
  17205. characterMakers.push(() => makeCharacter(
  17206. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17207. {
  17208. front: {
  17209. height: math.unit(8 + 4 / 12, "feet"),
  17210. weight: math.unit(600, "lb"),
  17211. name: "Front",
  17212. image: {
  17213. source: "./media/characters/dragonien/front.svg",
  17214. extra: 100 / 94,
  17215. bottom: 3.3 / 103.3445
  17216. }
  17217. },
  17218. back: {
  17219. height: math.unit(8 + 4 / 12, "feet"),
  17220. weight: math.unit(600, "lb"),
  17221. name: "Back",
  17222. image: {
  17223. source: "./media/characters/dragonien/back.svg",
  17224. extra: 776 / 746,
  17225. bottom: 6.4 / 782.0616
  17226. }
  17227. },
  17228. foot: {
  17229. height: math.unit(1.54, "feet"),
  17230. name: "Foot",
  17231. image: {
  17232. source: "./media/characters/dragonien/foot.svg",
  17233. }
  17234. },
  17235. },
  17236. [
  17237. {
  17238. name: "Normal",
  17239. height: math.unit(8 + 4 / 12, "feet"),
  17240. default: true
  17241. },
  17242. {
  17243. name: "Macro",
  17244. height: math.unit(200, "feet")
  17245. },
  17246. {
  17247. name: "Megamacro",
  17248. height: math.unit(1, "mile")
  17249. },
  17250. {
  17251. name: "Gigamacro",
  17252. height: math.unit(1000, "miles")
  17253. },
  17254. ]
  17255. ))
  17256. characterMakers.push(() => makeCharacter(
  17257. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17258. {
  17259. front: {
  17260. height: math.unit(5 + 2 / 12, "feet"),
  17261. weight: math.unit(110, "lb"),
  17262. name: "Front",
  17263. image: {
  17264. source: "./media/characters/desta/front.svg",
  17265. extra: 767/726,
  17266. bottom: 11.7/779
  17267. }
  17268. },
  17269. back: {
  17270. height: math.unit(5 + 2 / 12, "feet"),
  17271. weight: math.unit(110, "lb"),
  17272. name: "Back",
  17273. image: {
  17274. source: "./media/characters/desta/back.svg",
  17275. extra: 777/728,
  17276. bottom: 6/784
  17277. }
  17278. },
  17279. frontAlt: {
  17280. height: math.unit(5 + 2 / 12, "feet"),
  17281. weight: math.unit(110, "lb"),
  17282. name: "Front",
  17283. image: {
  17284. source: "./media/characters/desta/front-alt.svg",
  17285. extra: 1482 / 1417
  17286. }
  17287. },
  17288. side: {
  17289. height: math.unit(5 + 2 / 12, "feet"),
  17290. weight: math.unit(110, "lb"),
  17291. name: "Side",
  17292. image: {
  17293. source: "./media/characters/desta/side.svg",
  17294. extra: 2579 / 2491,
  17295. bottom: 0.053
  17296. }
  17297. },
  17298. },
  17299. [
  17300. {
  17301. name: "Micro",
  17302. height: math.unit(6, "inches")
  17303. },
  17304. {
  17305. name: "Normal",
  17306. height: math.unit(5 + 2 / 12, "feet"),
  17307. default: true
  17308. },
  17309. {
  17310. name: "Macro",
  17311. height: math.unit(62, "feet")
  17312. },
  17313. {
  17314. name: "Megamacro",
  17315. height: math.unit(1800, "feet")
  17316. },
  17317. ]
  17318. ))
  17319. characterMakers.push(() => makeCharacter(
  17320. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17321. {
  17322. front: {
  17323. height: math.unit(10, "feet"),
  17324. weight: math.unit(700, "lb"),
  17325. name: "Front",
  17326. image: {
  17327. source: "./media/characters/storm-alystar/front.svg",
  17328. extra: 2112 / 1898,
  17329. bottom: 0.034
  17330. }
  17331. },
  17332. },
  17333. [
  17334. {
  17335. name: "Micro",
  17336. height: math.unit(3.5, "inches")
  17337. },
  17338. {
  17339. name: "Normal",
  17340. height: math.unit(10, "feet"),
  17341. default: true
  17342. },
  17343. {
  17344. name: "Macro",
  17345. height: math.unit(400, "feet")
  17346. },
  17347. {
  17348. name: "Deific",
  17349. height: math.unit(60, "miles")
  17350. },
  17351. ]
  17352. ))
  17353. characterMakers.push(() => makeCharacter(
  17354. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17355. {
  17356. front: {
  17357. height: math.unit(2.35, "meters"),
  17358. weight: math.unit(119, "kg"),
  17359. name: "Front",
  17360. image: {
  17361. source: "./media/characters/ilia/front.svg",
  17362. extra: 1285 / 1255,
  17363. bottom: 0.06
  17364. }
  17365. },
  17366. },
  17367. [
  17368. {
  17369. name: "Normal",
  17370. height: math.unit(2.35, "meters")
  17371. },
  17372. {
  17373. name: "Macro",
  17374. height: math.unit(140, "meters"),
  17375. default: true
  17376. },
  17377. {
  17378. name: "Megamacro",
  17379. height: math.unit(100, "miles")
  17380. },
  17381. ]
  17382. ))
  17383. characterMakers.push(() => makeCharacter(
  17384. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17385. {
  17386. front: {
  17387. height: math.unit(6 + 5 / 12, "feet"),
  17388. weight: math.unit(190, "lb"),
  17389. name: "Front",
  17390. image: {
  17391. source: "./media/characters/kingdead/front.svg",
  17392. extra: 1228 / 1177
  17393. }
  17394. },
  17395. },
  17396. [
  17397. {
  17398. name: "Micro",
  17399. height: math.unit(7, "inches")
  17400. },
  17401. {
  17402. name: "Normal",
  17403. height: math.unit(6 + 5 / 12, "feet")
  17404. },
  17405. {
  17406. name: "Macro",
  17407. height: math.unit(150, "feet"),
  17408. default: true
  17409. },
  17410. {
  17411. name: "Megamacro",
  17412. height: math.unit(200, "miles")
  17413. },
  17414. ]
  17415. ))
  17416. characterMakers.push(() => makeCharacter(
  17417. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17418. {
  17419. front: {
  17420. height: math.unit(8, "feet"),
  17421. weight: math.unit(600, "lb"),
  17422. name: "Front",
  17423. image: {
  17424. source: "./media/characters/kyrehx/front.svg",
  17425. extra: 1195 / 1095,
  17426. bottom: 0.034
  17427. }
  17428. },
  17429. },
  17430. [
  17431. {
  17432. name: "Micro",
  17433. height: math.unit(2, "inches")
  17434. },
  17435. {
  17436. name: "Normal",
  17437. height: math.unit(8, "feet"),
  17438. default: true
  17439. },
  17440. {
  17441. name: "Macro",
  17442. height: math.unit(255, "feet")
  17443. },
  17444. ]
  17445. ))
  17446. characterMakers.push(() => makeCharacter(
  17447. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17448. {
  17449. front: {
  17450. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17451. weight: math.unit(184, "lb"),
  17452. name: "Front",
  17453. image: {
  17454. source: "./media/characters/xang/front.svg",
  17455. extra: 845 / 755
  17456. }
  17457. },
  17458. },
  17459. [
  17460. {
  17461. name: "Normal",
  17462. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17463. default: true
  17464. },
  17465. {
  17466. name: "Macro",
  17467. height: math.unit(0.935 * 146, "feet")
  17468. },
  17469. {
  17470. name: "Megamacro",
  17471. height: math.unit(0.935 * 3, "miles")
  17472. },
  17473. ]
  17474. ))
  17475. characterMakers.push(() => makeCharacter(
  17476. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17477. {
  17478. frontDressed: {
  17479. height: math.unit(5 + 7 / 12, "feet"),
  17480. weight: math.unit(140, "lb"),
  17481. name: "Front (Dressed)",
  17482. image: {
  17483. source: "./media/characters/doc-weardno/front-dressed.svg",
  17484. extra: 263 / 234
  17485. }
  17486. },
  17487. backDressed: {
  17488. height: math.unit(5 + 7 / 12, "feet"),
  17489. weight: math.unit(140, "lb"),
  17490. name: "Back (Dressed)",
  17491. image: {
  17492. source: "./media/characters/doc-weardno/back-dressed.svg",
  17493. extra: 266 / 238
  17494. }
  17495. },
  17496. front: {
  17497. height: math.unit(5 + 7 / 12, "feet"),
  17498. weight: math.unit(140, "lb"),
  17499. name: "Front",
  17500. image: {
  17501. source: "./media/characters/doc-weardno/front.svg",
  17502. extra: 254 / 233
  17503. }
  17504. },
  17505. },
  17506. [
  17507. {
  17508. name: "Micro",
  17509. height: math.unit(3, "inches")
  17510. },
  17511. {
  17512. name: "Normal",
  17513. height: math.unit(5 + 7 / 12, "feet"),
  17514. default: true
  17515. },
  17516. {
  17517. name: "Macro",
  17518. height: math.unit(25, "feet")
  17519. },
  17520. {
  17521. name: "Megamacro",
  17522. height: math.unit(2, "miles")
  17523. },
  17524. ]
  17525. ))
  17526. characterMakers.push(() => makeCharacter(
  17527. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17528. {
  17529. front: {
  17530. height: math.unit(6 + 2 / 12, "feet"),
  17531. weight: math.unit(153, "lb"),
  17532. name: "Front",
  17533. image: {
  17534. source: "./media/characters/seth-whilst/front.svg",
  17535. bottom: 0.07
  17536. }
  17537. },
  17538. },
  17539. [
  17540. {
  17541. name: "Micro",
  17542. height: math.unit(5, "inches")
  17543. },
  17544. {
  17545. name: "Normal",
  17546. height: math.unit(6 + 2 / 12, "feet"),
  17547. default: true
  17548. },
  17549. ]
  17550. ))
  17551. characterMakers.push(() => makeCharacter(
  17552. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17553. {
  17554. front: {
  17555. height: math.unit(3, "inches"),
  17556. weight: math.unit(8, "grams"),
  17557. name: "Front",
  17558. image: {
  17559. source: "./media/characters/pocket-jabari/front.svg",
  17560. extra: 1024 / 974,
  17561. bottom: 0.039
  17562. }
  17563. },
  17564. },
  17565. [
  17566. {
  17567. name: "Minimicro",
  17568. height: math.unit(8, "mm")
  17569. },
  17570. {
  17571. name: "Micro",
  17572. height: math.unit(3, "inches"),
  17573. default: true
  17574. },
  17575. {
  17576. name: "Normal",
  17577. height: math.unit(3, "feet")
  17578. },
  17579. ]
  17580. ))
  17581. characterMakers.push(() => makeCharacter(
  17582. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17583. {
  17584. front: {
  17585. height: math.unit(15, "feet"),
  17586. weight: math.unit(3280, "lb"),
  17587. name: "Front",
  17588. image: {
  17589. source: "./media/characters/sapphy/front.svg",
  17590. extra: 671 / 577,
  17591. bottom: 0.085
  17592. }
  17593. },
  17594. back: {
  17595. height: math.unit(15, "feet"),
  17596. weight: math.unit(3280, "lb"),
  17597. name: "Back",
  17598. image: {
  17599. source: "./media/characters/sapphy/back.svg",
  17600. extra: 631 / 607,
  17601. bottom: 0.045
  17602. }
  17603. },
  17604. },
  17605. [
  17606. {
  17607. name: "Normal",
  17608. height: math.unit(15, "feet")
  17609. },
  17610. {
  17611. name: "Casual Macro",
  17612. height: math.unit(120, "feet")
  17613. },
  17614. {
  17615. name: "Macro",
  17616. height: math.unit(2150, "feet"),
  17617. default: true
  17618. },
  17619. {
  17620. name: "Megamacro",
  17621. height: math.unit(8, "miles")
  17622. },
  17623. {
  17624. name: "Galaxy Mom",
  17625. height: math.unit(6, "megalightyears")
  17626. },
  17627. ]
  17628. ))
  17629. characterMakers.push(() => makeCharacter(
  17630. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17631. {
  17632. front: {
  17633. height: math.unit(6, "feet"),
  17634. weight: math.unit(170, "lb"),
  17635. name: "Front",
  17636. image: {
  17637. source: "./media/characters/kiro/front.svg",
  17638. extra: 1064 / 1012,
  17639. bottom: 0.052
  17640. }
  17641. },
  17642. },
  17643. [
  17644. {
  17645. name: "Micro",
  17646. height: math.unit(6, "inches")
  17647. },
  17648. {
  17649. name: "Normal",
  17650. height: math.unit(6, "feet"),
  17651. default: true
  17652. },
  17653. {
  17654. name: "Macro",
  17655. height: math.unit(72, "feet")
  17656. },
  17657. ]
  17658. ))
  17659. characterMakers.push(() => makeCharacter(
  17660. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17661. {
  17662. front: {
  17663. height: math.unit(5 + 9 / 12, "feet"),
  17664. weight: math.unit(175, "lb"),
  17665. name: "Front",
  17666. image: {
  17667. source: "./media/characters/irishfox/front.svg",
  17668. extra: 1912 / 1680,
  17669. bottom: 0.02
  17670. }
  17671. },
  17672. },
  17673. [
  17674. {
  17675. name: "Nano",
  17676. height: math.unit(1, "mm")
  17677. },
  17678. {
  17679. name: "Micro",
  17680. height: math.unit(2, "inches")
  17681. },
  17682. {
  17683. name: "Normal",
  17684. height: math.unit(5 + 9 / 12, "feet"),
  17685. default: true
  17686. },
  17687. {
  17688. name: "Macro",
  17689. height: math.unit(45, "feet")
  17690. },
  17691. ]
  17692. ))
  17693. characterMakers.push(() => makeCharacter(
  17694. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  17695. {
  17696. front: {
  17697. height: math.unit(6 + 1 / 12, "feet"),
  17698. weight: math.unit(150, "lb"),
  17699. name: "Front",
  17700. image: {
  17701. source: "./media/characters/aronai-sieyes/front.svg",
  17702. extra: 1556 / 1480,
  17703. bottom: 0.015
  17704. }
  17705. },
  17706. side: {
  17707. height: math.unit(6 + 1 / 12, "feet"),
  17708. weight: math.unit(150, "lb"),
  17709. name: "Side",
  17710. image: {
  17711. source: "./media/characters/aronai-sieyes/side.svg",
  17712. extra: 1433 / 1390,
  17713. bottom: 0.0393
  17714. }
  17715. },
  17716. back: {
  17717. height: math.unit(6 + 1 / 12, "feet"),
  17718. weight: math.unit(150, "lb"),
  17719. name: "Back",
  17720. image: {
  17721. source: "./media/characters/aronai-sieyes/back.svg",
  17722. extra: 1544 / 1494,
  17723. bottom: 0.02
  17724. }
  17725. },
  17726. frontClothed: {
  17727. height: math.unit(6 + 1 / 12, "feet"),
  17728. weight: math.unit(150, "lb"),
  17729. name: "Front (Clothed)",
  17730. image: {
  17731. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17732. extra: 1582 / 1527
  17733. }
  17734. },
  17735. feral: {
  17736. height: math.unit(18, "feet"),
  17737. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17738. name: "Feral",
  17739. image: {
  17740. source: "./media/characters/aronai-sieyes/feral.svg",
  17741. extra: 1530 / 1240,
  17742. bottom: 0.035
  17743. }
  17744. },
  17745. },
  17746. [
  17747. {
  17748. name: "Micro",
  17749. height: math.unit(2, "inches")
  17750. },
  17751. {
  17752. name: "Normal",
  17753. height: math.unit(6 + 1 / 12, "feet"),
  17754. default: true
  17755. }
  17756. ]
  17757. ))
  17758. characterMakers.push(() => makeCharacter(
  17759. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  17760. {
  17761. front: {
  17762. height: math.unit(12, "feet"),
  17763. weight: math.unit(410, "kg"),
  17764. name: "Front",
  17765. image: {
  17766. source: "./media/characters/xuna/front.svg",
  17767. extra: 2184 / 1980
  17768. }
  17769. },
  17770. side: {
  17771. height: math.unit(12, "feet"),
  17772. weight: math.unit(410, "kg"),
  17773. name: "Side",
  17774. image: {
  17775. source: "./media/characters/xuna/side.svg",
  17776. extra: 2184 / 1980
  17777. }
  17778. },
  17779. back: {
  17780. height: math.unit(12, "feet"),
  17781. weight: math.unit(410, "kg"),
  17782. name: "Back",
  17783. image: {
  17784. source: "./media/characters/xuna/back.svg",
  17785. extra: 2184 / 1980
  17786. }
  17787. },
  17788. },
  17789. [
  17790. {
  17791. name: "Nano glow",
  17792. height: math.unit(10, "nm")
  17793. },
  17794. {
  17795. name: "Micro floof",
  17796. height: math.unit(0.3, "m")
  17797. },
  17798. {
  17799. name: "Huggable softy boi",
  17800. height: math.unit(3.6576, "m"),
  17801. default: true
  17802. },
  17803. {
  17804. name: "Admirable floof",
  17805. height: math.unit(80, "meters")
  17806. },
  17807. {
  17808. name: "Gentle macro",
  17809. height: math.unit(300, "meters")
  17810. },
  17811. {
  17812. name: "Very careful floof",
  17813. height: math.unit(3200, "meters")
  17814. },
  17815. {
  17816. name: "The mega floof",
  17817. height: math.unit(36000, "meters")
  17818. },
  17819. {
  17820. name: "Giga-fur-Wicker",
  17821. height: math.unit(4800000, "meters")
  17822. },
  17823. {
  17824. name: "Licky world",
  17825. height: math.unit(20000000, "meters")
  17826. },
  17827. {
  17828. name: "Floofy cyan sun",
  17829. height: math.unit(1500000000, "meters")
  17830. },
  17831. {
  17832. name: "Milky Wicker",
  17833. height: math.unit(1000000000000000000000, "meters")
  17834. },
  17835. {
  17836. name: "The observing Wicker",
  17837. height: math.unit(999999999999999999999999999, "meters")
  17838. },
  17839. ]
  17840. ))
  17841. characterMakers.push(() => makeCharacter(
  17842. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17843. {
  17844. front: {
  17845. height: math.unit(5 + 9 / 12, "feet"),
  17846. weight: math.unit(150, "lb"),
  17847. name: "Front",
  17848. image: {
  17849. source: "./media/characters/arokha-sieyes/front.svg",
  17850. extra: 1425 / 1284,
  17851. bottom: 0.05
  17852. }
  17853. },
  17854. },
  17855. [
  17856. {
  17857. name: "Normal",
  17858. height: math.unit(5 + 9 / 12, "feet")
  17859. },
  17860. {
  17861. name: "Macro",
  17862. height: math.unit(30, "meters"),
  17863. default: true
  17864. },
  17865. ]
  17866. ))
  17867. characterMakers.push(() => makeCharacter(
  17868. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17869. {
  17870. front: {
  17871. height: math.unit(6, "feet"),
  17872. weight: math.unit(180, "lb"),
  17873. name: "Front",
  17874. image: {
  17875. source: "./media/characters/arokh-sieyes/front.svg",
  17876. extra: 1830 / 1769,
  17877. bottom: 0.01
  17878. }
  17879. },
  17880. },
  17881. [
  17882. {
  17883. name: "Normal",
  17884. height: math.unit(6, "feet")
  17885. },
  17886. {
  17887. name: "Macro",
  17888. height: math.unit(30, "meters"),
  17889. default: true
  17890. },
  17891. ]
  17892. ))
  17893. characterMakers.push(() => makeCharacter(
  17894. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  17895. {
  17896. side: {
  17897. height: math.unit(13 + 1 / 12, "feet"),
  17898. weight: math.unit(8.5, "tonnes"),
  17899. name: "Side",
  17900. image: {
  17901. source: "./media/characters/goldeneye/side.svg",
  17902. extra: 1182 / 778,
  17903. bottom: 0.067
  17904. }
  17905. },
  17906. paw: {
  17907. height: math.unit(3.4, "feet"),
  17908. name: "Paw",
  17909. image: {
  17910. source: "./media/characters/goldeneye/paw.svg"
  17911. }
  17912. },
  17913. },
  17914. [
  17915. {
  17916. name: "Normal",
  17917. height: math.unit(13 + 1 / 12, "feet"),
  17918. default: true
  17919. },
  17920. ]
  17921. ))
  17922. characterMakers.push(() => makeCharacter(
  17923. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  17924. {
  17925. front: {
  17926. height: math.unit(6 + 1 / 12, "feet"),
  17927. weight: math.unit(210, "lb"),
  17928. name: "Front",
  17929. image: {
  17930. source: "./media/characters/leonardo-lycheborne/front.svg",
  17931. extra: 390 / 365,
  17932. bottom: 0.032
  17933. }
  17934. },
  17935. side: {
  17936. height: math.unit(6 + 1 / 12, "feet"),
  17937. weight: math.unit(210, "lb"),
  17938. name: "Side",
  17939. image: {
  17940. source: "./media/characters/leonardo-lycheborne/side.svg",
  17941. extra: 390 / 365,
  17942. bottom: 0.005
  17943. }
  17944. },
  17945. back: {
  17946. height: math.unit(6 + 1 / 12, "feet"),
  17947. weight: math.unit(210, "lb"),
  17948. name: "Back",
  17949. image: {
  17950. source: "./media/characters/leonardo-lycheborne/back.svg",
  17951. extra: 392 / 366,
  17952. bottom: 0.01
  17953. }
  17954. },
  17955. hand: {
  17956. height: math.unit(1.08, "feet"),
  17957. name: "Hand",
  17958. image: {
  17959. source: "./media/characters/leonardo-lycheborne/hand.svg"
  17960. }
  17961. },
  17962. foot: {
  17963. height: math.unit(1.32, "feet"),
  17964. name: "Foot",
  17965. image: {
  17966. source: "./media/characters/leonardo-lycheborne/foot.svg"
  17967. }
  17968. },
  17969. were: {
  17970. height: math.unit(20, "feet"),
  17971. weight: math.unit(7800, "lb"),
  17972. name: "Were",
  17973. image: {
  17974. source: "./media/characters/leonardo-lycheborne/were.svg",
  17975. extra: 308 / 294,
  17976. bottom: 0.048
  17977. }
  17978. },
  17979. feral: {
  17980. height: math.unit(7.5, "feet"),
  17981. weight: math.unit(600, "lb"),
  17982. name: "Feral",
  17983. image: {
  17984. source: "./media/characters/leonardo-lycheborne/feral.svg",
  17985. extra: 210 / 186,
  17986. bottom: 0.108
  17987. }
  17988. },
  17989. taur: {
  17990. height: math.unit(11, "feet"),
  17991. weight: math.unit(3300, "lb"),
  17992. name: "Taur",
  17993. image: {
  17994. source: "./media/characters/leonardo-lycheborne/taur.svg",
  17995. extra: 320 / 303,
  17996. bottom: 0.025
  17997. }
  17998. },
  17999. barghest: {
  18000. height: math.unit(11, "feet"),
  18001. weight: math.unit(1300, "lb"),
  18002. name: "Barghest",
  18003. image: {
  18004. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18005. extra: 323 / 302,
  18006. bottom: 0.027
  18007. }
  18008. },
  18009. dick: {
  18010. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18011. name: "Dick",
  18012. image: {
  18013. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18014. }
  18015. },
  18016. dickWere: {
  18017. height: math.unit((20) / 3.8, "feet"),
  18018. name: "Dick (Were)",
  18019. image: {
  18020. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18021. }
  18022. },
  18023. },
  18024. [
  18025. {
  18026. name: "Normal",
  18027. height: math.unit(6 + 1 / 12, "feet"),
  18028. default: true
  18029. },
  18030. ]
  18031. ))
  18032. characterMakers.push(() => makeCharacter(
  18033. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18034. {
  18035. front: {
  18036. height: math.unit(10, "feet"),
  18037. weight: math.unit(350, "lb"),
  18038. name: "Front",
  18039. image: {
  18040. source: "./media/characters/jet/front.svg",
  18041. extra: 2050 / 1980,
  18042. bottom: 0.013
  18043. }
  18044. },
  18045. back: {
  18046. height: math.unit(10, "feet"),
  18047. weight: math.unit(350, "lb"),
  18048. name: "Back",
  18049. image: {
  18050. source: "./media/characters/jet/back.svg",
  18051. extra: 2050 / 1980,
  18052. bottom: 0.013
  18053. }
  18054. },
  18055. },
  18056. [
  18057. {
  18058. name: "Micro",
  18059. height: math.unit(6, "inches")
  18060. },
  18061. {
  18062. name: "Normal",
  18063. height: math.unit(10, "feet"),
  18064. default: true
  18065. },
  18066. {
  18067. name: "Macro",
  18068. height: math.unit(100, "feet")
  18069. },
  18070. ]
  18071. ))
  18072. characterMakers.push(() => makeCharacter(
  18073. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18074. {
  18075. front: {
  18076. height: math.unit(15, "feet"),
  18077. weight: math.unit(2800, "lb"),
  18078. name: "Front",
  18079. image: {
  18080. source: "./media/characters/tanarath/front.svg",
  18081. extra: 2392 / 2220,
  18082. bottom: 0.03
  18083. }
  18084. },
  18085. back: {
  18086. height: math.unit(15, "feet"),
  18087. weight: math.unit(2800, "lb"),
  18088. name: "Back",
  18089. image: {
  18090. source: "./media/characters/tanarath/back.svg",
  18091. extra: 2392 / 2220,
  18092. bottom: 0.03
  18093. }
  18094. },
  18095. },
  18096. [
  18097. {
  18098. name: "Normal",
  18099. height: math.unit(15, "feet"),
  18100. default: true
  18101. },
  18102. ]
  18103. ))
  18104. characterMakers.push(() => makeCharacter(
  18105. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18106. {
  18107. front: {
  18108. height: math.unit(7 + 1 / 12, "feet"),
  18109. weight: math.unit(175, "lb"),
  18110. name: "Front",
  18111. image: {
  18112. source: "./media/characters/patty-cattybatty/front.svg",
  18113. extra: 908 / 874,
  18114. bottom: 0.025
  18115. }
  18116. },
  18117. },
  18118. [
  18119. {
  18120. name: "Micro",
  18121. height: math.unit(1, "inch")
  18122. },
  18123. {
  18124. name: "Normal",
  18125. height: math.unit(7 + 1 / 12, "feet")
  18126. },
  18127. {
  18128. name: "Mini Macro",
  18129. height: math.unit(155, "feet")
  18130. },
  18131. {
  18132. name: "Macro",
  18133. height: math.unit(1077, "feet")
  18134. },
  18135. {
  18136. name: "Mega Macro",
  18137. height: math.unit(47650, "feet"),
  18138. default: true
  18139. },
  18140. {
  18141. name: "Giga Macro",
  18142. height: math.unit(440, "miles")
  18143. },
  18144. {
  18145. name: "Tera Macro",
  18146. height: math.unit(8700, "miles")
  18147. },
  18148. {
  18149. name: "Planetary Macro",
  18150. height: math.unit(32700, "miles")
  18151. },
  18152. {
  18153. name: "Solar Macro",
  18154. height: math.unit(550000, "miles")
  18155. },
  18156. {
  18157. name: "Celestial Macro",
  18158. height: math.unit(2.5, "AU")
  18159. },
  18160. ]
  18161. ))
  18162. characterMakers.push(() => makeCharacter(
  18163. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18164. {
  18165. front: {
  18166. height: math.unit(4 + 5 / 12, "feet"),
  18167. weight: math.unit(90, "lb"),
  18168. name: "Front",
  18169. image: {
  18170. source: "./media/characters/cappu/front.svg",
  18171. extra: 1247 / 1152,
  18172. bottom: 0.012
  18173. }
  18174. },
  18175. },
  18176. [
  18177. {
  18178. name: "Normal",
  18179. height: math.unit(4 + 5 / 12, "feet"),
  18180. default: true
  18181. },
  18182. ]
  18183. ))
  18184. characterMakers.push(() => makeCharacter(
  18185. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18186. {
  18187. frontDressed: {
  18188. height: math.unit(70, "cm"),
  18189. weight: math.unit(6, "kg"),
  18190. name: "Front (Dressed)",
  18191. image: {
  18192. source: "./media/characters/sebi/front-dressed.svg",
  18193. extra: 713.5 / 686.5,
  18194. bottom: 0.003
  18195. }
  18196. },
  18197. front: {
  18198. height: math.unit(70, "cm"),
  18199. weight: math.unit(5, "kg"),
  18200. name: "Front",
  18201. image: {
  18202. source: "./media/characters/sebi/front.svg",
  18203. extra: 713.5 / 686.5,
  18204. bottom: 0.003
  18205. }
  18206. }
  18207. },
  18208. [
  18209. {
  18210. name: "Normal",
  18211. height: math.unit(70, "cm"),
  18212. default: true
  18213. },
  18214. {
  18215. name: "Macro",
  18216. height: math.unit(8, "meters")
  18217. },
  18218. ]
  18219. ))
  18220. characterMakers.push(() => makeCharacter(
  18221. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18222. {
  18223. front: {
  18224. height: math.unit(6, "feet"),
  18225. weight: math.unit(150, "lb"),
  18226. name: "Front",
  18227. image: {
  18228. source: "./media/characters/typhek/front.svg",
  18229. extra: 1948 / 1929,
  18230. bottom: 0.025
  18231. }
  18232. },
  18233. side: {
  18234. height: math.unit(6, "feet"),
  18235. weight: math.unit(150, "lb"),
  18236. name: "Side",
  18237. image: {
  18238. source: "./media/characters/typhek/side.svg",
  18239. extra: 2034 / 2010,
  18240. bottom: 0.003
  18241. }
  18242. },
  18243. back: {
  18244. height: math.unit(6, "feet"),
  18245. weight: math.unit(150, "lb"),
  18246. name: "Back",
  18247. image: {
  18248. source: "./media/characters/typhek/back.svg",
  18249. extra: 2005 / 1978,
  18250. bottom: 0.004
  18251. }
  18252. },
  18253. palm: {
  18254. height: math.unit(1.2, "feet"),
  18255. name: "Palm",
  18256. image: {
  18257. source: "./media/characters/typhek/palm.svg"
  18258. }
  18259. },
  18260. fist: {
  18261. height: math.unit(1.1, "feet"),
  18262. name: "Fist",
  18263. image: {
  18264. source: "./media/characters/typhek/fist.svg"
  18265. }
  18266. },
  18267. foot: {
  18268. height: math.unit(1.57, "feet"),
  18269. name: "Foot",
  18270. image: {
  18271. source: "./media/characters/typhek/foot.svg"
  18272. }
  18273. },
  18274. sole: {
  18275. height: math.unit(2.05, "feet"),
  18276. name: "Sole",
  18277. image: {
  18278. source: "./media/characters/typhek/sole.svg"
  18279. }
  18280. },
  18281. },
  18282. [
  18283. {
  18284. name: "Macro",
  18285. height: math.unit(40, "stories"),
  18286. default: true
  18287. },
  18288. {
  18289. name: "Megamacro",
  18290. height: math.unit(1, "mile")
  18291. },
  18292. {
  18293. name: "Gigamacro",
  18294. height: math.unit(4000, "solarradii")
  18295. },
  18296. {
  18297. name: "Universal",
  18298. height: math.unit(1.1, "universes")
  18299. }
  18300. ]
  18301. ))
  18302. characterMakers.push(() => makeCharacter(
  18303. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18304. {
  18305. side: {
  18306. height: math.unit(5 + 7 / 12, "feet"),
  18307. weight: math.unit(150, "lb"),
  18308. name: "Side",
  18309. image: {
  18310. source: "./media/characters/kassy/side.svg",
  18311. extra: 1280 / 1225,
  18312. bottom: 0.002
  18313. }
  18314. },
  18315. front: {
  18316. height: math.unit(5 + 7 / 12, "feet"),
  18317. weight: math.unit(150, "lb"),
  18318. name: "Front",
  18319. image: {
  18320. source: "./media/characters/kassy/front.svg",
  18321. extra: 1280 / 1225,
  18322. bottom: 0.025
  18323. }
  18324. },
  18325. back: {
  18326. height: math.unit(5 + 7 / 12, "feet"),
  18327. weight: math.unit(150, "lb"),
  18328. name: "Back",
  18329. image: {
  18330. source: "./media/characters/kassy/back.svg",
  18331. extra: 1280 / 1225,
  18332. bottom: 0.002
  18333. }
  18334. },
  18335. foot: {
  18336. height: math.unit(1.266, "feet"),
  18337. name: "Foot",
  18338. image: {
  18339. source: "./media/characters/kassy/foot.svg"
  18340. }
  18341. },
  18342. },
  18343. [
  18344. {
  18345. name: "Normal",
  18346. height: math.unit(5 + 7 / 12, "feet")
  18347. },
  18348. {
  18349. name: "Macro",
  18350. height: math.unit(137, "feet"),
  18351. default: true
  18352. },
  18353. {
  18354. name: "Megamacro",
  18355. height: math.unit(1, "mile")
  18356. },
  18357. ]
  18358. ))
  18359. characterMakers.push(() => makeCharacter(
  18360. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18361. {
  18362. front: {
  18363. height: math.unit(6 + 1 / 12, "feet"),
  18364. weight: math.unit(200, "lb"),
  18365. name: "Front",
  18366. image: {
  18367. source: "./media/characters/neil/front.svg",
  18368. extra: 1326 / 1250,
  18369. bottom: 0.023
  18370. }
  18371. },
  18372. },
  18373. [
  18374. {
  18375. name: "Normal",
  18376. height: math.unit(6 + 1 / 12, "feet"),
  18377. default: true
  18378. },
  18379. {
  18380. name: "Macro",
  18381. height: math.unit(200, "feet")
  18382. },
  18383. ]
  18384. ))
  18385. characterMakers.push(() => makeCharacter(
  18386. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18387. {
  18388. front: {
  18389. height: math.unit(5 + 9 / 12, "feet"),
  18390. weight: math.unit(190, "lb"),
  18391. name: "Front",
  18392. image: {
  18393. source: "./media/characters/atticus/front.svg",
  18394. extra: 2934 / 2785,
  18395. bottom: 0.025
  18396. }
  18397. },
  18398. },
  18399. [
  18400. {
  18401. name: "Normal",
  18402. height: math.unit(5 + 9 / 12, "feet"),
  18403. default: true
  18404. },
  18405. {
  18406. name: "Macro",
  18407. height: math.unit(180, "feet")
  18408. },
  18409. ]
  18410. ))
  18411. characterMakers.push(() => makeCharacter(
  18412. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18413. {
  18414. side: {
  18415. height: math.unit(9, "feet"),
  18416. weight: math.unit(650, "lb"),
  18417. name: "Side",
  18418. image: {
  18419. source: "./media/characters/milo/side.svg",
  18420. extra: 2644 / 2310,
  18421. bottom: 0.032
  18422. }
  18423. },
  18424. },
  18425. [
  18426. {
  18427. name: "Normal",
  18428. height: math.unit(9, "feet"),
  18429. default: true
  18430. },
  18431. {
  18432. name: "Macro",
  18433. height: math.unit(300, "feet")
  18434. },
  18435. ]
  18436. ))
  18437. characterMakers.push(() => makeCharacter(
  18438. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18439. {
  18440. side: {
  18441. height: math.unit(8, "meters"),
  18442. weight: math.unit(90000, "kg"),
  18443. name: "Side",
  18444. image: {
  18445. source: "./media/characters/ijzer/side.svg",
  18446. extra: 2756 / 1600,
  18447. bottom: 0.01
  18448. }
  18449. },
  18450. },
  18451. [
  18452. {
  18453. name: "Small",
  18454. height: math.unit(3, "meters")
  18455. },
  18456. {
  18457. name: "Normal",
  18458. height: math.unit(8, "meters"),
  18459. default: true
  18460. },
  18461. {
  18462. name: "Normal+",
  18463. height: math.unit(10, "meters")
  18464. },
  18465. {
  18466. name: "Bigger",
  18467. height: math.unit(24, "meters")
  18468. },
  18469. {
  18470. name: "Huge",
  18471. height: math.unit(80, "meters")
  18472. },
  18473. ]
  18474. ))
  18475. characterMakers.push(() => makeCharacter(
  18476. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18477. {
  18478. front: {
  18479. height: math.unit(6 + 2 / 12, "feet"),
  18480. weight: math.unit(153, "lb"),
  18481. name: "Front",
  18482. image: {
  18483. source: "./media/characters/luca-cervicum/front.svg",
  18484. extra: 370 / 327,
  18485. bottom: 0.015
  18486. }
  18487. },
  18488. back: {
  18489. height: math.unit(6 + 2 / 12, "feet"),
  18490. weight: math.unit(153, "lb"),
  18491. name: "Back",
  18492. image: {
  18493. source: "./media/characters/luca-cervicum/back.svg",
  18494. extra: 367 / 333,
  18495. bottom: 0.005
  18496. }
  18497. },
  18498. frontGear: {
  18499. height: math.unit(6 + 2 / 12, "feet"),
  18500. weight: math.unit(173, "lb"),
  18501. name: "Front (Gear)",
  18502. image: {
  18503. source: "./media/characters/luca-cervicum/front-gear.svg",
  18504. extra: 377 / 333,
  18505. bottom: 0.006
  18506. }
  18507. },
  18508. },
  18509. [
  18510. {
  18511. name: "Normal",
  18512. height: math.unit(6 + 2 / 12, "feet"),
  18513. default: true
  18514. },
  18515. ]
  18516. ))
  18517. characterMakers.push(() => makeCharacter(
  18518. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18519. {
  18520. front: {
  18521. height: math.unit(6 + 1 / 12, "feet"),
  18522. weight: math.unit(304, "lb"),
  18523. name: "Front",
  18524. image: {
  18525. source: "./media/characters/oliver/front.svg",
  18526. extra: 157 / 143,
  18527. bottom: 0.08
  18528. }
  18529. },
  18530. },
  18531. [
  18532. {
  18533. name: "Normal",
  18534. height: math.unit(6 + 1 / 12, "feet"),
  18535. default: true
  18536. },
  18537. ]
  18538. ))
  18539. characterMakers.push(() => makeCharacter(
  18540. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18541. {
  18542. front: {
  18543. height: math.unit(5 + 7 / 12, "feet"),
  18544. weight: math.unit(140, "lb"),
  18545. name: "Front",
  18546. image: {
  18547. source: "./media/characters/shane/front.svg",
  18548. extra: 304 / 289,
  18549. bottom: 0.005
  18550. }
  18551. },
  18552. },
  18553. [
  18554. {
  18555. name: "Normal",
  18556. height: math.unit(5 + 7 / 12, "feet"),
  18557. default: true
  18558. },
  18559. ]
  18560. ))
  18561. characterMakers.push(() => makeCharacter(
  18562. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18563. {
  18564. front: {
  18565. height: math.unit(5 + 9 / 12, "feet"),
  18566. weight: math.unit(178, "lb"),
  18567. name: "Front",
  18568. image: {
  18569. source: "./media/characters/shin/front.svg",
  18570. extra: 159 / 151,
  18571. bottom: 0.015
  18572. }
  18573. },
  18574. },
  18575. [
  18576. {
  18577. name: "Normal",
  18578. height: math.unit(5 + 9 / 12, "feet"),
  18579. default: true
  18580. },
  18581. ]
  18582. ))
  18583. characterMakers.push(() => makeCharacter(
  18584. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18585. {
  18586. front: {
  18587. height: math.unit(5 + 10 / 12, "feet"),
  18588. weight: math.unit(168, "lb"),
  18589. name: "Front",
  18590. image: {
  18591. source: "./media/characters/xerxes/front.svg",
  18592. extra: 282 / 260,
  18593. bottom: 0.045
  18594. }
  18595. },
  18596. },
  18597. [
  18598. {
  18599. name: "Normal",
  18600. height: math.unit(5 + 10 / 12, "feet"),
  18601. default: true
  18602. },
  18603. ]
  18604. ))
  18605. characterMakers.push(() => makeCharacter(
  18606. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18607. {
  18608. front: {
  18609. height: math.unit(6 + 7 / 12, "feet"),
  18610. weight: math.unit(208, "lb"),
  18611. name: "Front",
  18612. image: {
  18613. source: "./media/characters/chaska/front.svg",
  18614. extra: 332 / 319,
  18615. bottom: 0.015
  18616. }
  18617. },
  18618. },
  18619. [
  18620. {
  18621. name: "Normal",
  18622. height: math.unit(6 + 7 / 12, "feet"),
  18623. default: true
  18624. },
  18625. ]
  18626. ))
  18627. characterMakers.push(() => makeCharacter(
  18628. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18629. {
  18630. front: {
  18631. height: math.unit(5 + 8 / 12, "feet"),
  18632. weight: math.unit(208, "lb"),
  18633. name: "Front",
  18634. image: {
  18635. source: "./media/characters/enuk/front.svg",
  18636. extra: 437 / 406,
  18637. bottom: 0.02
  18638. }
  18639. },
  18640. },
  18641. [
  18642. {
  18643. name: "Normal",
  18644. height: math.unit(5 + 8 / 12, "feet"),
  18645. default: true
  18646. },
  18647. ]
  18648. ))
  18649. characterMakers.push(() => makeCharacter(
  18650. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18651. {
  18652. front: {
  18653. height: math.unit(5 + 10 / 12, "feet"),
  18654. weight: math.unit(252, "lb"),
  18655. name: "Front",
  18656. image: {
  18657. source: "./media/characters/bruun/front.svg",
  18658. extra: 197 / 187,
  18659. bottom: 0.012
  18660. }
  18661. },
  18662. },
  18663. [
  18664. {
  18665. name: "Normal",
  18666. height: math.unit(5 + 10 / 12, "feet"),
  18667. default: true
  18668. },
  18669. ]
  18670. ))
  18671. characterMakers.push(() => makeCharacter(
  18672. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18673. {
  18674. front: {
  18675. height: math.unit(6 + 10 / 12, "feet"),
  18676. weight: math.unit(255, "lb"),
  18677. name: "Front",
  18678. image: {
  18679. source: "./media/characters/alexeev/front.svg",
  18680. extra: 213 / 200,
  18681. bottom: 0.05
  18682. }
  18683. },
  18684. },
  18685. [
  18686. {
  18687. name: "Normal",
  18688. height: math.unit(6 + 10 / 12, "feet"),
  18689. default: true
  18690. },
  18691. ]
  18692. ))
  18693. characterMakers.push(() => makeCharacter(
  18694. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  18695. {
  18696. front: {
  18697. height: math.unit(2 + 8 / 12, "feet"),
  18698. weight: math.unit(22, "lb"),
  18699. name: "Front",
  18700. image: {
  18701. source: "./media/characters/evelyn/front.svg",
  18702. extra: 208 / 180
  18703. }
  18704. },
  18705. },
  18706. [
  18707. {
  18708. name: "Normal",
  18709. height: math.unit(2 + 8 / 12, "feet"),
  18710. default: true
  18711. },
  18712. ]
  18713. ))
  18714. characterMakers.push(() => makeCharacter(
  18715. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  18716. {
  18717. front: {
  18718. height: math.unit(5 + 9 / 12, "feet"),
  18719. weight: math.unit(139, "lb"),
  18720. name: "Front",
  18721. image: {
  18722. source: "./media/characters/inca/front.svg",
  18723. extra: 294 / 291,
  18724. bottom: 0.03
  18725. }
  18726. },
  18727. },
  18728. [
  18729. {
  18730. name: "Normal",
  18731. height: math.unit(5 + 9 / 12, "feet"),
  18732. default: true
  18733. },
  18734. ]
  18735. ))
  18736. characterMakers.push(() => makeCharacter(
  18737. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  18738. {
  18739. front: {
  18740. height: math.unit(5 + 1 / 12, "feet"),
  18741. weight: math.unit(84, "lb"),
  18742. name: "Front",
  18743. image: {
  18744. source: "./media/characters/magdalene/front.svg",
  18745. extra: 293 / 273
  18746. }
  18747. },
  18748. },
  18749. [
  18750. {
  18751. name: "Normal",
  18752. height: math.unit(5 + 1 / 12, "feet"),
  18753. default: true
  18754. },
  18755. ]
  18756. ))
  18757. characterMakers.push(() => makeCharacter(
  18758. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  18759. {
  18760. front: {
  18761. height: math.unit(6 + 3 / 12, "feet"),
  18762. weight: math.unit(185, "lb"),
  18763. name: "Front",
  18764. image: {
  18765. source: "./media/characters/mera/front.svg",
  18766. extra: 291 / 277,
  18767. bottom: 0.03
  18768. }
  18769. },
  18770. },
  18771. [
  18772. {
  18773. name: "Normal",
  18774. height: math.unit(6 + 3 / 12, "feet"),
  18775. default: true
  18776. },
  18777. ]
  18778. ))
  18779. characterMakers.push(() => makeCharacter(
  18780. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  18781. {
  18782. front: {
  18783. height: math.unit(6 + 7 / 12, "feet"),
  18784. weight: math.unit(160, "lb"),
  18785. name: "Front",
  18786. image: {
  18787. source: "./media/characters/ceres/front.svg",
  18788. extra: 1023 / 950,
  18789. bottom: 0.027
  18790. }
  18791. },
  18792. back: {
  18793. height: math.unit(6 + 7 / 12, "feet"),
  18794. weight: math.unit(160, "lb"),
  18795. name: "Back",
  18796. image: {
  18797. source: "./media/characters/ceres/back.svg",
  18798. extra: 1023 / 950
  18799. }
  18800. },
  18801. },
  18802. [
  18803. {
  18804. name: "Normal",
  18805. height: math.unit(6 + 7 / 12, "feet"),
  18806. default: true
  18807. },
  18808. ]
  18809. ))
  18810. characterMakers.push(() => makeCharacter(
  18811. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  18812. {
  18813. front: {
  18814. height: math.unit(5 + 10 / 12, "feet"),
  18815. weight: math.unit(150, "lb"),
  18816. name: "Front",
  18817. image: {
  18818. source: "./media/characters/kris/front.svg",
  18819. extra: 885 / 803,
  18820. bottom: 0.03
  18821. }
  18822. },
  18823. },
  18824. [
  18825. {
  18826. name: "Normal",
  18827. height: math.unit(5 + 10 / 12, "feet"),
  18828. default: true
  18829. },
  18830. ]
  18831. ))
  18832. characterMakers.push(() => makeCharacter(
  18833. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  18834. {
  18835. front: {
  18836. height: math.unit(7, "feet"),
  18837. weight: math.unit(120, "kg"),
  18838. name: "Front",
  18839. image: {
  18840. source: "./media/characters/taluthus/front.svg",
  18841. extra: 903 / 833,
  18842. bottom: 0.015
  18843. }
  18844. },
  18845. },
  18846. [
  18847. {
  18848. name: "Normal",
  18849. height: math.unit(7, "feet"),
  18850. default: true
  18851. },
  18852. {
  18853. name: "Macro",
  18854. height: math.unit(300, "feet")
  18855. },
  18856. ]
  18857. ))
  18858. characterMakers.push(() => makeCharacter(
  18859. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  18860. {
  18861. front: {
  18862. height: math.unit(5 + 9 / 12, "feet"),
  18863. weight: math.unit(145, "lb"),
  18864. name: "Front",
  18865. image: {
  18866. source: "./media/characters/dawn/front.svg",
  18867. extra: 2094 / 2016,
  18868. bottom: 0.025
  18869. }
  18870. },
  18871. back: {
  18872. height: math.unit(5 + 9 / 12, "feet"),
  18873. weight: math.unit(160, "lb"),
  18874. name: "Back",
  18875. image: {
  18876. source: "./media/characters/dawn/back.svg",
  18877. extra: 2112 / 2080,
  18878. bottom: 0.005
  18879. }
  18880. },
  18881. },
  18882. [
  18883. {
  18884. name: "Normal",
  18885. height: math.unit(6 + 7 / 12, "feet"),
  18886. default: true
  18887. },
  18888. ]
  18889. ))
  18890. characterMakers.push(() => makeCharacter(
  18891. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  18892. {
  18893. anthro: {
  18894. height: math.unit(8 + 3 / 12, "feet"),
  18895. weight: math.unit(450, "lb"),
  18896. name: "Anthro",
  18897. image: {
  18898. source: "./media/characters/arador/anthro.svg",
  18899. extra: 1835 / 1718,
  18900. bottom: 0.025
  18901. }
  18902. },
  18903. feral: {
  18904. height: math.unit(4, "feet"),
  18905. weight: math.unit(200, "lb"),
  18906. name: "Feral",
  18907. image: {
  18908. source: "./media/characters/arador/feral.svg",
  18909. extra: 1683 / 1514,
  18910. bottom: 0.07
  18911. }
  18912. },
  18913. },
  18914. [
  18915. {
  18916. name: "Normal",
  18917. height: math.unit(8 + 3 / 12, "feet")
  18918. },
  18919. {
  18920. name: "Macro",
  18921. height: math.unit(82.5, "feet"),
  18922. default: true
  18923. },
  18924. ]
  18925. ))
  18926. characterMakers.push(() => makeCharacter(
  18927. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  18928. {
  18929. front: {
  18930. height: math.unit(5 + 10 / 12, "feet"),
  18931. weight: math.unit(125, "lb"),
  18932. name: "Front",
  18933. image: {
  18934. source: "./media/characters/dharsi/front.svg",
  18935. extra: 716 / 630,
  18936. bottom: 0.035
  18937. }
  18938. },
  18939. },
  18940. [
  18941. {
  18942. name: "Nano",
  18943. height: math.unit(100, "nm")
  18944. },
  18945. {
  18946. name: "Micro",
  18947. height: math.unit(2, "inches")
  18948. },
  18949. {
  18950. name: "Normal",
  18951. height: math.unit(5 + 10 / 12, "feet"),
  18952. default: true
  18953. },
  18954. {
  18955. name: "Macro",
  18956. height: math.unit(1000, "feet")
  18957. },
  18958. {
  18959. name: "Megamacro",
  18960. height: math.unit(10, "miles")
  18961. },
  18962. {
  18963. name: "Gigamacro",
  18964. height: math.unit(3000, "miles")
  18965. },
  18966. {
  18967. name: "Teramacro",
  18968. height: math.unit(500000, "miles")
  18969. },
  18970. {
  18971. name: "Teramacro+",
  18972. height: math.unit(30, "galaxies")
  18973. },
  18974. ]
  18975. ))
  18976. characterMakers.push(() => makeCharacter(
  18977. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  18978. {
  18979. front: {
  18980. height: math.unit(6, "feet"),
  18981. weight: math.unit(150, "lb"),
  18982. name: "Front",
  18983. image: {
  18984. source: "./media/characters/deathy/front.svg",
  18985. extra: 1552 / 1463,
  18986. bottom: 0.025
  18987. }
  18988. },
  18989. side: {
  18990. height: math.unit(6, "feet"),
  18991. weight: math.unit(150, "lb"),
  18992. name: "Side",
  18993. image: {
  18994. source: "./media/characters/deathy/side.svg",
  18995. extra: 1604 / 1455,
  18996. bottom: 0.025
  18997. }
  18998. },
  18999. back: {
  19000. height: math.unit(6, "feet"),
  19001. weight: math.unit(150, "lb"),
  19002. name: "Back",
  19003. image: {
  19004. source: "./media/characters/deathy/back.svg",
  19005. extra: 1580 / 1463,
  19006. bottom: 0.005
  19007. }
  19008. },
  19009. },
  19010. [
  19011. {
  19012. name: "Micro",
  19013. height: math.unit(5, "millimeters")
  19014. },
  19015. {
  19016. name: "Normal",
  19017. height: math.unit(6 + 5 / 12, "feet"),
  19018. default: true
  19019. },
  19020. ]
  19021. ))
  19022. characterMakers.push(() => makeCharacter(
  19023. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19024. {
  19025. front: {
  19026. height: math.unit(16, "feet"),
  19027. weight: math.unit(4000, "lb"),
  19028. name: "Front",
  19029. image: {
  19030. source: "./media/characters/juniper/front.svg",
  19031. bottom: 0.04
  19032. }
  19033. },
  19034. },
  19035. [
  19036. {
  19037. name: "Normal",
  19038. height: math.unit(16, "feet"),
  19039. default: true
  19040. },
  19041. ]
  19042. ))
  19043. characterMakers.push(() => makeCharacter(
  19044. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19045. {
  19046. front: {
  19047. height: math.unit(6, "feet"),
  19048. weight: math.unit(150, "lb"),
  19049. name: "Front",
  19050. image: {
  19051. source: "./media/characters/hipster/front.svg",
  19052. extra: 1312 / 1209,
  19053. bottom: 0.025
  19054. }
  19055. },
  19056. back: {
  19057. height: math.unit(6, "feet"),
  19058. weight: math.unit(150, "lb"),
  19059. name: "Back",
  19060. image: {
  19061. source: "./media/characters/hipster/back.svg",
  19062. extra: 1281 / 1196,
  19063. bottom: 0.01
  19064. }
  19065. },
  19066. },
  19067. [
  19068. {
  19069. name: "Micro",
  19070. height: math.unit(1, "mm")
  19071. },
  19072. {
  19073. name: "Normal",
  19074. height: math.unit(4, "inches"),
  19075. default: true
  19076. },
  19077. {
  19078. name: "Macro",
  19079. height: math.unit(500, "feet")
  19080. },
  19081. {
  19082. name: "Megamacro",
  19083. height: math.unit(1000, "miles")
  19084. },
  19085. ]
  19086. ))
  19087. characterMakers.push(() => makeCharacter(
  19088. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19089. {
  19090. front: {
  19091. height: math.unit(6, "feet"),
  19092. weight: math.unit(150, "lb"),
  19093. name: "Front",
  19094. image: {
  19095. source: "./media/characters/tendirmuldr/front.svg",
  19096. extra: 1878 / 1772,
  19097. bottom: 0.015
  19098. }
  19099. },
  19100. },
  19101. [
  19102. {
  19103. name: "Megamacro",
  19104. height: math.unit(1500, "miles"),
  19105. default: true
  19106. },
  19107. ]
  19108. ))
  19109. characterMakers.push(() => makeCharacter(
  19110. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19111. {
  19112. front: {
  19113. height: math.unit(14, "feet"),
  19114. weight: math.unit(12000, "lb"),
  19115. name: "Front",
  19116. image: {
  19117. source: "./media/characters/mort/front.svg",
  19118. extra: 365 / 318,
  19119. bottom: 0.01
  19120. }
  19121. },
  19122. side: {
  19123. height: math.unit(14, "feet"),
  19124. weight: math.unit(12000, "lb"),
  19125. name: "Side",
  19126. image: {
  19127. source: "./media/characters/mort/side.svg",
  19128. extra: 365 / 318,
  19129. bottom: 0.052
  19130. },
  19131. default: true
  19132. },
  19133. back: {
  19134. height: math.unit(14, "feet"),
  19135. weight: math.unit(12000, "lb"),
  19136. name: "Back",
  19137. image: {
  19138. source: "./media/characters/mort/back.svg",
  19139. extra: 371 / 332,
  19140. bottom: 0.18
  19141. }
  19142. },
  19143. },
  19144. [
  19145. {
  19146. name: "Normal",
  19147. height: math.unit(14, "feet"),
  19148. default: true
  19149. },
  19150. ]
  19151. ))
  19152. characterMakers.push(() => makeCharacter(
  19153. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19154. {
  19155. front: {
  19156. height: math.unit(8, "feet"),
  19157. weight: math.unit(1, "ton"),
  19158. name: "Front",
  19159. image: {
  19160. source: "./media/characters/lycoa/front.svg",
  19161. extra: 1875 / 1789,
  19162. bottom: 0.022
  19163. }
  19164. },
  19165. back: {
  19166. height: math.unit(8, "feet"),
  19167. weight: math.unit(1, "ton"),
  19168. name: "Back",
  19169. image: {
  19170. source: "./media/characters/lycoa/back.svg",
  19171. extra: 1835 / 1781,
  19172. bottom: 0.03
  19173. }
  19174. },
  19175. head: {
  19176. height: math.unit(2.1, "feet"),
  19177. name: "Head",
  19178. image: {
  19179. source: "./media/characters/lycoa/head.svg"
  19180. }
  19181. },
  19182. tailmaw: {
  19183. height: math.unit(1.9, "feet"),
  19184. name: "Tailmaw",
  19185. image: {
  19186. source: "./media/characters/lycoa/tailmaw.svg"
  19187. }
  19188. },
  19189. tentacles: {
  19190. height: math.unit(2.1, "feet"),
  19191. name: "Tentacles",
  19192. image: {
  19193. source: "./media/characters/lycoa/tentacles.svg"
  19194. }
  19195. },
  19196. dick: {
  19197. height: math.unit(1.73, "feet"),
  19198. name: "Dick",
  19199. image: {
  19200. source: "./media/characters/lycoa/dick.svg"
  19201. }
  19202. },
  19203. },
  19204. [
  19205. {
  19206. name: "Normal",
  19207. height: math.unit(8, "feet"),
  19208. default: true
  19209. },
  19210. {
  19211. name: "Macro",
  19212. height: math.unit(30, "feet")
  19213. },
  19214. ]
  19215. ))
  19216. characterMakers.push(() => makeCharacter(
  19217. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19218. {
  19219. front: {
  19220. height: math.unit(4 + 2 / 12, "feet"),
  19221. weight: math.unit(70, "lb"),
  19222. name: "Front",
  19223. image: {
  19224. source: "./media/characters/naldara/front.svg",
  19225. extra: 841 / 720,
  19226. bottom: 0.04
  19227. }
  19228. },
  19229. naga: {
  19230. height: math.unit(23, "feet"),
  19231. weight: math.unit(15000, "kg"),
  19232. name: "Naga",
  19233. image: {
  19234. source: "./media/characters/naldara/naga.svg",
  19235. extra: 3290/2959,
  19236. bottom: 124/3432
  19237. }
  19238. },
  19239. },
  19240. [
  19241. {
  19242. name: "Normal",
  19243. height: math.unit(4 + 2 / 12, "feet"),
  19244. default: true
  19245. },
  19246. ]
  19247. ))
  19248. characterMakers.push(() => makeCharacter(
  19249. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19250. {
  19251. front: {
  19252. height: math.unit(13 + 7 / 12, "feet"),
  19253. weight: math.unit(1500, "lb"),
  19254. name: "Front",
  19255. image: {
  19256. source: "./media/characters/briar/front.svg",
  19257. extra: 626 / 596,
  19258. bottom: 0.08
  19259. }
  19260. },
  19261. },
  19262. [
  19263. {
  19264. name: "Normal",
  19265. height: math.unit(13 + 7 / 12, "feet"),
  19266. default: true
  19267. },
  19268. ]
  19269. ))
  19270. characterMakers.push(() => makeCharacter(
  19271. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19272. {
  19273. side: {
  19274. height: math.unit(10, "feet"),
  19275. weight: math.unit(500, "lb"),
  19276. name: "Side",
  19277. image: {
  19278. source: "./media/characters/vanguard/side.svg",
  19279. extra: 502 / 425,
  19280. bottom: 0.087
  19281. }
  19282. },
  19283. },
  19284. [
  19285. {
  19286. name: "Normal",
  19287. height: math.unit(10, "feet"),
  19288. default: true
  19289. },
  19290. ]
  19291. ))
  19292. characterMakers.push(() => makeCharacter(
  19293. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19294. {
  19295. front: {
  19296. height: math.unit(7.5, "feet"),
  19297. weight: math.unit(2, "lb"),
  19298. name: "Front",
  19299. image: {
  19300. source: "./media/characters/artemis/front.svg",
  19301. extra: 1192 / 1075,
  19302. bottom: 0.07
  19303. }
  19304. },
  19305. frontNsfw: {
  19306. height: math.unit(7.5, "feet"),
  19307. weight: math.unit(2, "lb"),
  19308. name: "Front (NSFW)",
  19309. image: {
  19310. source: "./media/characters/artemis/front-nsfw.svg",
  19311. extra: 1192 / 1075,
  19312. bottom: 0.07
  19313. }
  19314. },
  19315. frontNsfwer: {
  19316. height: math.unit(7.5, "feet"),
  19317. weight: math.unit(2, "lb"),
  19318. name: "Front (NSFW-er)",
  19319. image: {
  19320. source: "./media/characters/artemis/front-nsfwer.svg",
  19321. extra: 1192 / 1075,
  19322. bottom: 0.07
  19323. }
  19324. },
  19325. side: {
  19326. height: math.unit(7.5, "feet"),
  19327. weight: math.unit(2, "lb"),
  19328. name: "Side",
  19329. image: {
  19330. source: "./media/characters/artemis/side.svg",
  19331. extra: 1192 / 1075,
  19332. bottom: 0.07
  19333. }
  19334. },
  19335. sideNsfw: {
  19336. height: math.unit(7.5, "feet"),
  19337. weight: math.unit(2, "lb"),
  19338. name: "Side (NSFW)",
  19339. image: {
  19340. source: "./media/characters/artemis/side-nsfw.svg",
  19341. extra: 1192 / 1075,
  19342. bottom: 0.07
  19343. }
  19344. },
  19345. sideNsfwer: {
  19346. height: math.unit(7.5, "feet"),
  19347. weight: math.unit(2, "lb"),
  19348. name: "Side (NSFW-er)",
  19349. image: {
  19350. source: "./media/characters/artemis/side-nsfwer.svg",
  19351. extra: 1192 / 1075,
  19352. bottom: 0.07
  19353. }
  19354. },
  19355. maw: {
  19356. height: math.unit(1.1, "feet"),
  19357. name: "Maw",
  19358. image: {
  19359. source: "./media/characters/artemis/maw.svg"
  19360. }
  19361. },
  19362. stomach: {
  19363. height: math.unit(0.95, "feet"),
  19364. name: "Stomach",
  19365. image: {
  19366. source: "./media/characters/artemis/stomach.svg"
  19367. }
  19368. },
  19369. dickCanine: {
  19370. height: math.unit(1, "feet"),
  19371. name: "Dick (Canine)",
  19372. image: {
  19373. source: "./media/characters/artemis/dick-canine.svg"
  19374. }
  19375. },
  19376. dickEquine: {
  19377. height: math.unit(0.85, "feet"),
  19378. name: "Dick (Equine)",
  19379. image: {
  19380. source: "./media/characters/artemis/dick-equine.svg"
  19381. }
  19382. },
  19383. dickExotic: {
  19384. height: math.unit(0.85, "feet"),
  19385. name: "Dick (Exotic)",
  19386. image: {
  19387. source: "./media/characters/artemis/dick-exotic.svg"
  19388. }
  19389. },
  19390. },
  19391. [
  19392. {
  19393. name: "Normal",
  19394. height: math.unit(7.5, "feet"),
  19395. default: true
  19396. },
  19397. {
  19398. name: "Enlarged",
  19399. height: math.unit(12, "feet")
  19400. },
  19401. ]
  19402. ))
  19403. characterMakers.push(() => makeCharacter(
  19404. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19405. {
  19406. front: {
  19407. height: math.unit(5 + 3 / 12, "feet"),
  19408. weight: math.unit(160, "lb"),
  19409. name: "Front",
  19410. image: {
  19411. source: "./media/characters/kira/front.svg",
  19412. extra: 906 / 786,
  19413. bottom: 0.01
  19414. }
  19415. },
  19416. back: {
  19417. height: math.unit(5 + 3 / 12, "feet"),
  19418. weight: math.unit(160, "lb"),
  19419. name: "Back",
  19420. image: {
  19421. source: "./media/characters/kira/back.svg",
  19422. extra: 882 / 757,
  19423. bottom: 0.005
  19424. }
  19425. },
  19426. frontDressed: {
  19427. height: math.unit(5 + 3 / 12, "feet"),
  19428. weight: math.unit(160, "lb"),
  19429. name: "Front (Dressed)",
  19430. image: {
  19431. source: "./media/characters/kira/front-dressed.svg",
  19432. extra: 906 / 786,
  19433. bottom: 0.01
  19434. }
  19435. },
  19436. beans: {
  19437. height: math.unit(0.92, "feet"),
  19438. name: "Beans",
  19439. image: {
  19440. source: "./media/characters/kira/beans.svg"
  19441. }
  19442. },
  19443. },
  19444. [
  19445. {
  19446. name: "Normal",
  19447. height: math.unit(5 + 3 / 12, "feet"),
  19448. default: true
  19449. },
  19450. ]
  19451. ))
  19452. characterMakers.push(() => makeCharacter(
  19453. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19454. {
  19455. front: {
  19456. height: math.unit(5 + 4 / 12, "feet"),
  19457. weight: math.unit(145, "lb"),
  19458. name: "Front",
  19459. image: {
  19460. source: "./media/characters/scramble/front.svg",
  19461. extra: 763 / 727,
  19462. bottom: 0.05
  19463. }
  19464. },
  19465. back: {
  19466. height: math.unit(5 + 4 / 12, "feet"),
  19467. weight: math.unit(145, "lb"),
  19468. name: "Back",
  19469. image: {
  19470. source: "./media/characters/scramble/back.svg",
  19471. extra: 826 / 737,
  19472. bottom: 0.002
  19473. }
  19474. },
  19475. },
  19476. [
  19477. {
  19478. name: "Normal",
  19479. height: math.unit(5 + 4 / 12, "feet"),
  19480. default: true
  19481. },
  19482. ]
  19483. ))
  19484. characterMakers.push(() => makeCharacter(
  19485. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19486. {
  19487. side: {
  19488. height: math.unit(6 + 2 / 12, "feet"),
  19489. weight: math.unit(190, "lb"),
  19490. name: "Side",
  19491. image: {
  19492. source: "./media/characters/biscuit/side.svg",
  19493. extra: 858 / 791,
  19494. bottom: 0.044
  19495. }
  19496. },
  19497. },
  19498. [
  19499. {
  19500. name: "Normal",
  19501. height: math.unit(6 + 2 / 12, "feet"),
  19502. default: true
  19503. },
  19504. ]
  19505. ))
  19506. characterMakers.push(() => makeCharacter(
  19507. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19508. {
  19509. front: {
  19510. height: math.unit(5 + 2 / 12, "feet"),
  19511. weight: math.unit(120, "lb"),
  19512. name: "Front",
  19513. image: {
  19514. source: "./media/characters/poffin/front.svg",
  19515. extra: 786 / 680,
  19516. bottom: 0.005
  19517. }
  19518. },
  19519. },
  19520. [
  19521. {
  19522. name: "Normal",
  19523. height: math.unit(5 + 2 / 12, "feet"),
  19524. default: true
  19525. },
  19526. ]
  19527. ))
  19528. characterMakers.push(() => makeCharacter(
  19529. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19530. {
  19531. front: {
  19532. height: math.unit(6 + 3 / 12, "feet"),
  19533. weight: math.unit(519, "lb"),
  19534. name: "Front",
  19535. image: {
  19536. source: "./media/characters/dhari/front.svg",
  19537. extra: 1048 / 946,
  19538. bottom: 0.015
  19539. }
  19540. },
  19541. back: {
  19542. height: math.unit(6 + 3 / 12, "feet"),
  19543. weight: math.unit(519, "lb"),
  19544. name: "Back",
  19545. image: {
  19546. source: "./media/characters/dhari/back.svg",
  19547. extra: 1048 / 931,
  19548. bottom: 0.005
  19549. }
  19550. },
  19551. frontDressed: {
  19552. height: math.unit(6 + 3 / 12, "feet"),
  19553. weight: math.unit(519, "lb"),
  19554. name: "Front (Dressed)",
  19555. image: {
  19556. source: "./media/characters/dhari/front-dressed.svg",
  19557. extra: 1713 / 1546,
  19558. bottom: 0.02
  19559. }
  19560. },
  19561. backDressed: {
  19562. height: math.unit(6 + 3 / 12, "feet"),
  19563. weight: math.unit(519, "lb"),
  19564. name: "Back (Dressed)",
  19565. image: {
  19566. source: "./media/characters/dhari/back-dressed.svg",
  19567. extra: 1699 / 1537,
  19568. bottom: 0.01
  19569. }
  19570. },
  19571. maw: {
  19572. height: math.unit(0.95, "feet"),
  19573. name: "Maw",
  19574. image: {
  19575. source: "./media/characters/dhari/maw.svg"
  19576. }
  19577. },
  19578. wereFront: {
  19579. height: math.unit(12 + 8 / 12, "feet"),
  19580. weight: math.unit(4000, "lb"),
  19581. name: "Front (Were)",
  19582. image: {
  19583. source: "./media/characters/dhari/were-front.svg",
  19584. extra: 1065 / 969,
  19585. bottom: 0.015
  19586. }
  19587. },
  19588. wereBack: {
  19589. height: math.unit(12 + 8 / 12, "feet"),
  19590. weight: math.unit(4000, "lb"),
  19591. name: "Back (Were)",
  19592. image: {
  19593. source: "./media/characters/dhari/were-back.svg",
  19594. extra: 1065 / 969,
  19595. bottom: 0.012
  19596. }
  19597. },
  19598. wereMaw: {
  19599. height: math.unit(0.625, "meters"),
  19600. name: "Maw (Were)",
  19601. image: {
  19602. source: "./media/characters/dhari/were-maw.svg"
  19603. }
  19604. },
  19605. },
  19606. [
  19607. {
  19608. name: "Normal",
  19609. height: math.unit(6 + 3 / 12, "feet"),
  19610. default: true
  19611. },
  19612. ]
  19613. ))
  19614. characterMakers.push(() => makeCharacter(
  19615. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19616. {
  19617. anthro: {
  19618. height: math.unit(5 + 7 / 12, "feet"),
  19619. weight: math.unit(175, "lb"),
  19620. name: "Anthro",
  19621. image: {
  19622. source: "./media/characters/rena-dyne/anthro.svg",
  19623. extra: 1849 / 1785,
  19624. bottom: 0.005
  19625. }
  19626. },
  19627. taur: {
  19628. height: math.unit(15 + 6 / 12, "feet"),
  19629. weight: math.unit(8000, "lb"),
  19630. name: "Taur",
  19631. image: {
  19632. source: "./media/characters/rena-dyne/taur.svg",
  19633. extra: 2315 / 2234,
  19634. bottom: 0.033
  19635. }
  19636. },
  19637. },
  19638. [
  19639. {
  19640. name: "Normal",
  19641. height: math.unit(5 + 7 / 12, "feet"),
  19642. default: true
  19643. },
  19644. ]
  19645. ))
  19646. characterMakers.push(() => makeCharacter(
  19647. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19648. {
  19649. front: {
  19650. height: math.unit(8, "feet"),
  19651. weight: math.unit(600, "lb"),
  19652. name: "Front",
  19653. image: {
  19654. source: "./media/characters/weremeep/front.svg",
  19655. extra: 967 / 862,
  19656. bottom: 0.01
  19657. }
  19658. },
  19659. },
  19660. [
  19661. {
  19662. name: "Normal",
  19663. height: math.unit(8, "feet"),
  19664. default: true
  19665. },
  19666. {
  19667. name: "Lorg",
  19668. height: math.unit(12, "feet")
  19669. },
  19670. {
  19671. name: "Oh Lawd She Comin'",
  19672. height: math.unit(20, "feet")
  19673. },
  19674. ]
  19675. ))
  19676. characterMakers.push(() => makeCharacter(
  19677. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19678. {
  19679. front: {
  19680. height: math.unit(4, "feet"),
  19681. weight: math.unit(90, "lb"),
  19682. name: "Front",
  19683. image: {
  19684. source: "./media/characters/reza/front.svg",
  19685. extra: 1183 / 1111,
  19686. bottom: 0.017
  19687. }
  19688. },
  19689. back: {
  19690. height: math.unit(4, "feet"),
  19691. weight: math.unit(90, "lb"),
  19692. name: "Back",
  19693. image: {
  19694. source: "./media/characters/reza/back.svg",
  19695. extra: 1183 / 1111,
  19696. bottom: 0.01
  19697. }
  19698. },
  19699. drake: {
  19700. height: math.unit(30, "feet"),
  19701. weight: math.unit(246960, "lb"),
  19702. name: "Drake",
  19703. image: {
  19704. source: "./media/characters/reza/drake.svg",
  19705. extra: 2350 / 2024,
  19706. bottom: 60.7 / 2403
  19707. }
  19708. },
  19709. },
  19710. [
  19711. {
  19712. name: "Normal",
  19713. height: math.unit(4, "feet"),
  19714. default: true
  19715. },
  19716. ]
  19717. ))
  19718. characterMakers.push(() => makeCharacter(
  19719. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  19720. {
  19721. side: {
  19722. height: math.unit(15, "feet"),
  19723. weight: math.unit(14, "tons"),
  19724. name: "Side",
  19725. image: {
  19726. source: "./media/characters/athea/side.svg",
  19727. extra: 960 / 540,
  19728. bottom: 0.003
  19729. }
  19730. },
  19731. sitting: {
  19732. height: math.unit(6 * 2.85, "feet"),
  19733. weight: math.unit(14, "tons"),
  19734. name: "Sitting",
  19735. image: {
  19736. source: "./media/characters/athea/sitting.svg",
  19737. extra: 621 / 581,
  19738. bottom: 0.075
  19739. }
  19740. },
  19741. maw: {
  19742. height: math.unit(7.59498031496063, "feet"),
  19743. name: "Maw",
  19744. image: {
  19745. source: "./media/characters/athea/maw.svg"
  19746. }
  19747. },
  19748. },
  19749. [
  19750. {
  19751. name: "Lap Cat",
  19752. height: math.unit(2.5, "feet")
  19753. },
  19754. {
  19755. name: "Minimacro",
  19756. height: math.unit(15, "feet"),
  19757. default: true
  19758. },
  19759. {
  19760. name: "Macro",
  19761. height: math.unit(120, "feet")
  19762. },
  19763. {
  19764. name: "Macro+",
  19765. height: math.unit(640, "feet")
  19766. },
  19767. {
  19768. name: "Colossus",
  19769. height: math.unit(2.2, "miles")
  19770. },
  19771. ]
  19772. ))
  19773. characterMakers.push(() => makeCharacter(
  19774. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  19775. {
  19776. front: {
  19777. height: math.unit(8 + 8 / 12, "feet"),
  19778. weight: math.unit(130, "kg"),
  19779. name: "Front",
  19780. image: {
  19781. source: "./media/characters/seroko/front.svg",
  19782. extra: 1385 / 1280,
  19783. bottom: 0.025
  19784. }
  19785. },
  19786. back: {
  19787. height: math.unit(8 + 8 / 12, "feet"),
  19788. weight: math.unit(130, "kg"),
  19789. name: "Back",
  19790. image: {
  19791. source: "./media/characters/seroko/back.svg",
  19792. extra: 1369 / 1238,
  19793. bottom: 0.018
  19794. }
  19795. },
  19796. frontDressed: {
  19797. height: math.unit(8 + 8 / 12, "feet"),
  19798. weight: math.unit(130, "kg"),
  19799. name: "Front (Dressed)",
  19800. image: {
  19801. source: "./media/characters/seroko/front-dressed.svg",
  19802. extra: 1366 / 1275,
  19803. bottom: 0.03
  19804. }
  19805. },
  19806. },
  19807. [
  19808. {
  19809. name: "Normal",
  19810. height: math.unit(8 + 8 / 12, "feet"),
  19811. default: true
  19812. },
  19813. ]
  19814. ))
  19815. characterMakers.push(() => makeCharacter(
  19816. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  19817. {
  19818. front: {
  19819. height: math.unit(5.5, "feet"),
  19820. weight: math.unit(160, "lb"),
  19821. name: "Front",
  19822. image: {
  19823. source: "./media/characters/quatzi/front.svg",
  19824. extra: 2346 / 2242,
  19825. bottom: 0.015
  19826. }
  19827. },
  19828. },
  19829. [
  19830. {
  19831. name: "Normal",
  19832. height: math.unit(5.5, "feet"),
  19833. default: true
  19834. },
  19835. {
  19836. name: "Big",
  19837. height: math.unit(7.7, "feet")
  19838. },
  19839. ]
  19840. ))
  19841. characterMakers.push(() => makeCharacter(
  19842. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  19843. {
  19844. front: {
  19845. height: math.unit(5 + 11 / 12, "feet"),
  19846. weight: math.unit(180, "lb"),
  19847. name: "Front",
  19848. image: {
  19849. source: "./media/characters/sen/front.svg",
  19850. extra: 1321 / 1254,
  19851. bottom: 0.015
  19852. }
  19853. },
  19854. side: {
  19855. height: math.unit(5 + 11 / 12, "feet"),
  19856. weight: math.unit(180, "lb"),
  19857. name: "Side",
  19858. image: {
  19859. source: "./media/characters/sen/side.svg",
  19860. extra: 1321 / 1254,
  19861. bottom: 0.007
  19862. }
  19863. },
  19864. back: {
  19865. height: math.unit(5 + 11 / 12, "feet"),
  19866. weight: math.unit(180, "lb"),
  19867. name: "Back",
  19868. image: {
  19869. source: "./media/characters/sen/back.svg",
  19870. extra: 1321 / 1254
  19871. }
  19872. },
  19873. },
  19874. [
  19875. {
  19876. name: "Normal",
  19877. height: math.unit(5 + 11 / 12, "feet"),
  19878. default: true
  19879. },
  19880. ]
  19881. ))
  19882. characterMakers.push(() => makeCharacter(
  19883. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  19884. {
  19885. front: {
  19886. height: math.unit(166.6, "cm"),
  19887. weight: math.unit(66.6, "kg"),
  19888. name: "Front",
  19889. image: {
  19890. source: "./media/characters/fruity/front.svg",
  19891. extra: 1510 / 1386,
  19892. bottom: 0.04
  19893. }
  19894. },
  19895. back: {
  19896. height: math.unit(166.6, "cm"),
  19897. weight: math.unit(66.6, "lb"),
  19898. name: "Back",
  19899. image: {
  19900. source: "./media/characters/fruity/back.svg",
  19901. extra: 1563 / 1435,
  19902. bottom: 0.005
  19903. }
  19904. },
  19905. },
  19906. [
  19907. {
  19908. name: "Normal",
  19909. height: math.unit(166.6, "cm"),
  19910. default: true
  19911. },
  19912. {
  19913. name: "Demonic",
  19914. height: math.unit(166.6, "feet")
  19915. },
  19916. ]
  19917. ))
  19918. characterMakers.push(() => makeCharacter(
  19919. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  19920. {
  19921. side: {
  19922. height: math.unit(10, "feet"),
  19923. weight: math.unit(500, "lb"),
  19924. name: "Side",
  19925. image: {
  19926. source: "./media/characters/zost/side.svg",
  19927. extra: 966 / 880,
  19928. bottom: 0.075
  19929. }
  19930. },
  19931. mawFront: {
  19932. height: math.unit(1.08, "meters"),
  19933. name: "Maw (Front)",
  19934. image: {
  19935. source: "./media/characters/zost/maw-front.svg"
  19936. }
  19937. },
  19938. mawSide: {
  19939. height: math.unit(2.66, "feet"),
  19940. name: "Maw (Side)",
  19941. image: {
  19942. source: "./media/characters/zost/maw-side.svg"
  19943. }
  19944. },
  19945. },
  19946. [
  19947. {
  19948. name: "Normal",
  19949. height: math.unit(10, "feet"),
  19950. default: true
  19951. },
  19952. ]
  19953. ))
  19954. characterMakers.push(() => makeCharacter(
  19955. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  19956. {
  19957. front: {
  19958. height: math.unit(5 + 4 / 12, "feet"),
  19959. weight: math.unit(120, "lb"),
  19960. name: "Front",
  19961. image: {
  19962. source: "./media/characters/luci/front.svg",
  19963. extra: 1985 / 1884,
  19964. bottom: 0.04
  19965. }
  19966. },
  19967. back: {
  19968. height: math.unit(5 + 4 / 12, "feet"),
  19969. weight: math.unit(120, "lb"),
  19970. name: "Back",
  19971. image: {
  19972. source: "./media/characters/luci/back.svg",
  19973. extra: 1892 / 1791,
  19974. bottom: 0.002
  19975. }
  19976. },
  19977. },
  19978. [
  19979. {
  19980. name: "Normal",
  19981. height: math.unit(5 + 4 / 12, "feet"),
  19982. default: true
  19983. },
  19984. ]
  19985. ))
  19986. characterMakers.push(() => makeCharacter(
  19987. { name: "2th", species: ["monster"], tags: ["anthro"] },
  19988. {
  19989. front: {
  19990. height: math.unit(1500, "feet"),
  19991. weight: math.unit(3.8e6, "tons"),
  19992. name: "Front",
  19993. image: {
  19994. source: "./media/characters/2th/front.svg",
  19995. extra: 3489 / 3350,
  19996. bottom: 0.1
  19997. }
  19998. },
  19999. foot: {
  20000. height: math.unit(461, "feet"),
  20001. name: "Foot",
  20002. image: {
  20003. source: "./media/characters/2th/foot.svg"
  20004. }
  20005. },
  20006. },
  20007. [
  20008. {
  20009. name: "\"Micro\"",
  20010. height: math.unit(15 + 7 / 12, "feet")
  20011. },
  20012. {
  20013. name: "Normal",
  20014. height: math.unit(1500, "feet"),
  20015. default: true
  20016. },
  20017. {
  20018. name: "Macro",
  20019. height: math.unit(5000, "feet")
  20020. },
  20021. {
  20022. name: "Megamacro",
  20023. height: math.unit(15, "miles")
  20024. },
  20025. {
  20026. name: "Gigamacro",
  20027. height: math.unit(4000, "miles")
  20028. },
  20029. {
  20030. name: "Galactic",
  20031. height: math.unit(50, "AU")
  20032. },
  20033. ]
  20034. ))
  20035. characterMakers.push(() => makeCharacter(
  20036. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20037. {
  20038. front: {
  20039. height: math.unit(5 + 6 / 12, "feet"),
  20040. weight: math.unit(220, "lb"),
  20041. name: "Front",
  20042. image: {
  20043. source: "./media/characters/amethyst/front.svg",
  20044. extra: 2078 / 2040,
  20045. bottom: 0.045
  20046. }
  20047. },
  20048. back: {
  20049. height: math.unit(5 + 6 / 12, "feet"),
  20050. weight: math.unit(220, "lb"),
  20051. name: "Back",
  20052. image: {
  20053. source: "./media/characters/amethyst/back.svg",
  20054. extra: 2021 / 1989,
  20055. bottom: 0.02
  20056. }
  20057. },
  20058. },
  20059. [
  20060. {
  20061. name: "Normal",
  20062. height: math.unit(5 + 6 / 12, "feet"),
  20063. default: true
  20064. },
  20065. ]
  20066. ))
  20067. characterMakers.push(() => makeCharacter(
  20068. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20069. {
  20070. front: {
  20071. height: math.unit(4 + 11 / 12, "feet"),
  20072. weight: math.unit(120, "lb"),
  20073. name: "Front",
  20074. image: {
  20075. source: "./media/characters/yumi-akiyama/front.svg",
  20076. extra: 1327 / 1235,
  20077. bottom: 0.02
  20078. }
  20079. },
  20080. back: {
  20081. height: math.unit(4 + 11 / 12, "feet"),
  20082. weight: math.unit(120, "lb"),
  20083. name: "Back",
  20084. image: {
  20085. source: "./media/characters/yumi-akiyama/back.svg",
  20086. extra: 1287 / 1245,
  20087. bottom: 0.002
  20088. }
  20089. },
  20090. },
  20091. [
  20092. {
  20093. name: "Galactic",
  20094. height: math.unit(50, "galaxies"),
  20095. default: true
  20096. },
  20097. {
  20098. name: "Universal",
  20099. height: math.unit(100, "universes")
  20100. },
  20101. ]
  20102. ))
  20103. characterMakers.push(() => makeCharacter(
  20104. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20105. {
  20106. front: {
  20107. height: math.unit(8, "feet"),
  20108. weight: math.unit(500, "lb"),
  20109. name: "Front",
  20110. image: {
  20111. source: "./media/characters/rifter-yrmori/front.svg",
  20112. extra: 1180 / 1125,
  20113. bottom: 0.02
  20114. }
  20115. },
  20116. back: {
  20117. height: math.unit(8, "feet"),
  20118. weight: math.unit(500, "lb"),
  20119. name: "Back",
  20120. image: {
  20121. source: "./media/characters/rifter-yrmori/back.svg",
  20122. extra: 1190 / 1145,
  20123. bottom: 0.001
  20124. }
  20125. },
  20126. wings: {
  20127. height: math.unit(7.75, "feet"),
  20128. weight: math.unit(500, "lb"),
  20129. name: "Wings",
  20130. image: {
  20131. source: "./media/characters/rifter-yrmori/wings.svg",
  20132. extra: 1357 / 1285
  20133. }
  20134. },
  20135. maw: {
  20136. height: math.unit(0.8, "feet"),
  20137. name: "Maw",
  20138. image: {
  20139. source: "./media/characters/rifter-yrmori/maw.svg"
  20140. }
  20141. },
  20142. },
  20143. [
  20144. {
  20145. name: "Normal",
  20146. height: math.unit(8, "feet"),
  20147. default: true
  20148. },
  20149. {
  20150. name: "Macro",
  20151. height: math.unit(42, "meters")
  20152. },
  20153. ]
  20154. ))
  20155. characterMakers.push(() => makeCharacter(
  20156. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20157. {
  20158. were: {
  20159. height: math.unit(25 + 6 / 12, "feet"),
  20160. weight: math.unit(10000, "lb"),
  20161. name: "Were",
  20162. image: {
  20163. source: "./media/characters/tahajin/were.svg",
  20164. extra: 801 / 770,
  20165. bottom: 0.042
  20166. }
  20167. },
  20168. aquatic: {
  20169. height: math.unit(6 + 4 / 12, "feet"),
  20170. weight: math.unit(160, "lb"),
  20171. name: "Aquatic",
  20172. image: {
  20173. source: "./media/characters/tahajin/aquatic.svg",
  20174. extra: 572 / 542,
  20175. bottom: 0.04
  20176. }
  20177. },
  20178. chow: {
  20179. height: math.unit(8 + 11 / 12, "feet"),
  20180. weight: math.unit(450, "lb"),
  20181. name: "Chow",
  20182. image: {
  20183. source: "./media/characters/tahajin/chow.svg",
  20184. extra: 660 / 640,
  20185. bottom: 0.015
  20186. }
  20187. },
  20188. demiNaga: {
  20189. height: math.unit(6 + 8 / 12, "feet"),
  20190. weight: math.unit(300, "lb"),
  20191. name: "Demi Naga",
  20192. image: {
  20193. source: "./media/characters/tahajin/demi-naga.svg",
  20194. extra: 643 / 615,
  20195. bottom: 0.1
  20196. }
  20197. },
  20198. data: {
  20199. height: math.unit(5, "inches"),
  20200. weight: math.unit(0.1, "lb"),
  20201. name: "Data",
  20202. image: {
  20203. source: "./media/characters/tahajin/data.svg"
  20204. }
  20205. },
  20206. fluu: {
  20207. height: math.unit(5 + 7 / 12, "feet"),
  20208. weight: math.unit(140, "lb"),
  20209. name: "Fluu",
  20210. image: {
  20211. source: "./media/characters/tahajin/fluu.svg",
  20212. extra: 628 / 592,
  20213. bottom: 0.02
  20214. }
  20215. },
  20216. starWarrior: {
  20217. height: math.unit(4 + 5 / 12, "feet"),
  20218. weight: math.unit(50, "lb"),
  20219. name: "Star Warrior",
  20220. image: {
  20221. source: "./media/characters/tahajin/star-warrior.svg"
  20222. }
  20223. },
  20224. },
  20225. [
  20226. {
  20227. name: "Normal",
  20228. height: math.unit(25 + 6 / 12, "feet"),
  20229. default: true
  20230. },
  20231. ]
  20232. ))
  20233. characterMakers.push(() => makeCharacter(
  20234. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20235. {
  20236. front: {
  20237. height: math.unit(8, "feet"),
  20238. weight: math.unit(350, "lb"),
  20239. name: "Front",
  20240. image: {
  20241. source: "./media/characters/gabira/front.svg",
  20242. extra: 608 / 580,
  20243. bottom: 0.03
  20244. }
  20245. },
  20246. back: {
  20247. height: math.unit(8, "feet"),
  20248. weight: math.unit(350, "lb"),
  20249. name: "Back",
  20250. image: {
  20251. source: "./media/characters/gabira/back.svg",
  20252. extra: 608 / 580,
  20253. bottom: 0.03
  20254. }
  20255. },
  20256. },
  20257. [
  20258. {
  20259. name: "Normal",
  20260. height: math.unit(8, "feet"),
  20261. default: true
  20262. },
  20263. ]
  20264. ))
  20265. characterMakers.push(() => makeCharacter(
  20266. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20267. {
  20268. front: {
  20269. height: math.unit(5 + 3 / 12, "feet"),
  20270. weight: math.unit(137, "lb"),
  20271. name: "Front",
  20272. image: {
  20273. source: "./media/characters/sasha-katraine/front.svg",
  20274. bottom: 0.045
  20275. }
  20276. },
  20277. },
  20278. [
  20279. {
  20280. name: "Micro",
  20281. height: math.unit(5, "inches")
  20282. },
  20283. {
  20284. name: "Normal",
  20285. height: math.unit(5 + 3 / 12, "feet"),
  20286. default: true
  20287. },
  20288. ]
  20289. ))
  20290. characterMakers.push(() => makeCharacter(
  20291. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20292. {
  20293. side: {
  20294. height: math.unit(4, "inches"),
  20295. weight: math.unit(200, "grams"),
  20296. name: "Side",
  20297. image: {
  20298. source: "./media/characters/der/side.svg",
  20299. extra: 719 / 400,
  20300. bottom: 30.6 / 749.9187
  20301. }
  20302. },
  20303. },
  20304. [
  20305. {
  20306. name: "Micro",
  20307. height: math.unit(4, "inches"),
  20308. default: true
  20309. },
  20310. ]
  20311. ))
  20312. characterMakers.push(() => makeCharacter(
  20313. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20314. {
  20315. side: {
  20316. height: math.unit(30, "meters"),
  20317. weight: math.unit(700, "tonnes"),
  20318. name: "Side",
  20319. image: {
  20320. source: "./media/characters/fixerdragon/side.svg",
  20321. extra: (1293.0514 - 116.03) / 1106.86,
  20322. bottom: 116.03 / 1293.0514
  20323. }
  20324. },
  20325. },
  20326. [
  20327. {
  20328. name: "Planck",
  20329. height: math.unit(1.6e-35, "meters")
  20330. },
  20331. {
  20332. name: "Micro",
  20333. height: math.unit(0.4, "meters")
  20334. },
  20335. {
  20336. name: "Normal",
  20337. height: math.unit(30, "meters"),
  20338. default: true
  20339. },
  20340. {
  20341. name: "Megamacro",
  20342. height: math.unit(1.2, "megameters")
  20343. },
  20344. {
  20345. name: "Teramacro",
  20346. height: math.unit(130, "terameters")
  20347. },
  20348. {
  20349. name: "Yottamacro",
  20350. height: math.unit(6200, "yottameters")
  20351. },
  20352. ]
  20353. ));
  20354. characterMakers.push(() => makeCharacter(
  20355. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20356. {
  20357. front: {
  20358. height: math.unit(8, "feet"),
  20359. weight: math.unit(250, "lb"),
  20360. name: "Front",
  20361. image: {
  20362. source: "./media/characters/kite/front.svg",
  20363. extra: 2796 / 2659,
  20364. bottom: 0.002
  20365. }
  20366. },
  20367. },
  20368. [
  20369. {
  20370. name: "Normal",
  20371. height: math.unit(8, "feet"),
  20372. default: true
  20373. },
  20374. {
  20375. name: "Macro",
  20376. height: math.unit(360, "feet")
  20377. },
  20378. {
  20379. name: "Megamacro",
  20380. height: math.unit(1500, "feet")
  20381. },
  20382. ]
  20383. ))
  20384. characterMakers.push(() => makeCharacter(
  20385. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20386. {
  20387. front: {
  20388. height: math.unit(5 + 10 / 12, "feet"),
  20389. weight: math.unit(150, "lb"),
  20390. name: "Front",
  20391. image: {
  20392. source: "./media/characters/poojawa-vynar/front.svg",
  20393. extra: (1506.1547 - 55) / 1356.6,
  20394. bottom: 55 / 1506.1547
  20395. }
  20396. },
  20397. frontTailless: {
  20398. height: math.unit(5 + 10 / 12, "feet"),
  20399. weight: math.unit(150, "lb"),
  20400. name: "Front (Tailless)",
  20401. image: {
  20402. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20403. extra: (1506.1547 - 55) / 1356.6,
  20404. bottom: 55 / 1506.1547
  20405. }
  20406. },
  20407. },
  20408. [
  20409. {
  20410. name: "Normal",
  20411. height: math.unit(5 + 10 / 12, "feet"),
  20412. default: true
  20413. },
  20414. ]
  20415. ))
  20416. characterMakers.push(() => makeCharacter(
  20417. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20418. {
  20419. front: {
  20420. height: math.unit(293, "meters"),
  20421. weight: math.unit(70400, "tons"),
  20422. name: "Front",
  20423. image: {
  20424. source: "./media/characters/violette/front.svg",
  20425. extra: 1227 / 1180,
  20426. bottom: 0.005
  20427. }
  20428. },
  20429. back: {
  20430. height: math.unit(293, "meters"),
  20431. weight: math.unit(70400, "tons"),
  20432. name: "Back",
  20433. image: {
  20434. source: "./media/characters/violette/back.svg",
  20435. extra: 1227 / 1180,
  20436. bottom: 0.005
  20437. }
  20438. },
  20439. },
  20440. [
  20441. {
  20442. name: "Macro",
  20443. height: math.unit(293, "meters"),
  20444. default: true
  20445. },
  20446. ]
  20447. ))
  20448. characterMakers.push(() => makeCharacter(
  20449. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20450. {
  20451. front: {
  20452. height: math.unit(1050, "feet"),
  20453. weight: math.unit(200000, "tons"),
  20454. name: "Front",
  20455. image: {
  20456. source: "./media/characters/alessandra/front.svg",
  20457. extra: 960 / 912,
  20458. bottom: 0.06
  20459. }
  20460. },
  20461. },
  20462. [
  20463. {
  20464. name: "Macro",
  20465. height: math.unit(1050, "feet")
  20466. },
  20467. {
  20468. name: "Macro+",
  20469. height: math.unit(900, "meters"),
  20470. default: true
  20471. },
  20472. ]
  20473. ))
  20474. characterMakers.push(() => makeCharacter(
  20475. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20476. {
  20477. front: {
  20478. height: math.unit(5, "feet"),
  20479. weight: math.unit(187, "lb"),
  20480. name: "Front",
  20481. image: {
  20482. source: "./media/characters/person/front.svg",
  20483. extra: 3087 / 2945,
  20484. bottom: 91 / 3181
  20485. }
  20486. },
  20487. },
  20488. [
  20489. {
  20490. name: "Micro",
  20491. height: math.unit(3, "inches")
  20492. },
  20493. {
  20494. name: "Normal",
  20495. height: math.unit(5, "feet"),
  20496. default: true
  20497. },
  20498. {
  20499. name: "Macro",
  20500. height: math.unit(90, "feet")
  20501. },
  20502. {
  20503. name: "Max Size",
  20504. height: math.unit(280, "feet")
  20505. },
  20506. ]
  20507. ))
  20508. characterMakers.push(() => makeCharacter(
  20509. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20510. {
  20511. front: {
  20512. height: math.unit(4.5, "meters"),
  20513. weight: math.unit(3200, "lb"),
  20514. name: "Front",
  20515. image: {
  20516. source: "./media/characters/ty/front.svg",
  20517. extra: 1038 / 960,
  20518. bottom: 31.156 / 1068
  20519. }
  20520. },
  20521. back: {
  20522. height: math.unit(4.5, "meters"),
  20523. weight: math.unit(3200, "lb"),
  20524. name: "Back",
  20525. image: {
  20526. source: "./media/characters/ty/back.svg",
  20527. extra: 1044 / 966,
  20528. bottom: 7.48 / 1049
  20529. }
  20530. },
  20531. },
  20532. [
  20533. {
  20534. name: "Normal",
  20535. height: math.unit(4.5, "meters"),
  20536. default: true
  20537. },
  20538. ]
  20539. ))
  20540. characterMakers.push(() => makeCharacter(
  20541. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20542. {
  20543. front: {
  20544. height: math.unit(5 + 4 / 12, "feet"),
  20545. weight: math.unit(115, "lb"),
  20546. name: "Front",
  20547. image: {
  20548. source: "./media/characters/rocky/front.svg",
  20549. extra: 1012 / 975,
  20550. bottom: 54 / 1066
  20551. }
  20552. },
  20553. },
  20554. [
  20555. {
  20556. name: "Normal",
  20557. height: math.unit(5 + 4 / 12, "feet"),
  20558. default: true
  20559. },
  20560. ]
  20561. ))
  20562. characterMakers.push(() => makeCharacter(
  20563. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20564. {
  20565. upright: {
  20566. height: math.unit(6, "meters"),
  20567. weight: math.unit(4000, "kg"),
  20568. name: "Upright",
  20569. image: {
  20570. source: "./media/characters/ruin/upright.svg",
  20571. extra: 668 / 661,
  20572. bottom: 42 / 799.8396
  20573. }
  20574. },
  20575. },
  20576. [
  20577. {
  20578. name: "Normal",
  20579. height: math.unit(6, "meters"),
  20580. default: true
  20581. },
  20582. ]
  20583. ))
  20584. characterMakers.push(() => makeCharacter(
  20585. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20586. {
  20587. front: {
  20588. height: math.unit(5, "feet"),
  20589. weight: math.unit(106, "lb"),
  20590. name: "Front",
  20591. image: {
  20592. source: "./media/characters/robin/front.svg",
  20593. extra: 862 / 799,
  20594. bottom: 42.4 / 914.8856
  20595. }
  20596. },
  20597. },
  20598. [
  20599. {
  20600. name: "Normal",
  20601. height: math.unit(5, "feet"),
  20602. default: true
  20603. },
  20604. ]
  20605. ))
  20606. characterMakers.push(() => makeCharacter(
  20607. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20608. {
  20609. side: {
  20610. height: math.unit(3, "feet"),
  20611. weight: math.unit(225, "lb"),
  20612. name: "Side",
  20613. image: {
  20614. source: "./media/characters/saian/side.svg",
  20615. extra: 566 / 356,
  20616. bottom: 79.7 / 643
  20617. }
  20618. },
  20619. maw: {
  20620. height: math.unit(2.85, "feet"),
  20621. name: "Maw",
  20622. image: {
  20623. source: "./media/characters/saian/maw.svg"
  20624. }
  20625. },
  20626. },
  20627. [
  20628. {
  20629. name: "Normal",
  20630. height: math.unit(3, "feet"),
  20631. default: true
  20632. },
  20633. ]
  20634. ))
  20635. characterMakers.push(() => makeCharacter(
  20636. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20637. {
  20638. side: {
  20639. height: math.unit(8, "feet"),
  20640. weight: math.unit(300, "lb"),
  20641. name: "Side",
  20642. image: {
  20643. source: "./media/characters/equus-silvermane/side.svg",
  20644. extra: 2176 / 2050,
  20645. bottom: 65.7 / 2245
  20646. }
  20647. },
  20648. front: {
  20649. height: math.unit(8, "feet"),
  20650. weight: math.unit(300, "lb"),
  20651. name: "Front",
  20652. image: {
  20653. source: "./media/characters/equus-silvermane/front.svg",
  20654. extra: 4633 / 4400,
  20655. bottom: 71.3 / 4706.915
  20656. }
  20657. },
  20658. sideStepping: {
  20659. height: math.unit(8, "feet"),
  20660. weight: math.unit(300, "lb"),
  20661. name: "Side (Stepping)",
  20662. image: {
  20663. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20664. extra: 1968 / 1860,
  20665. bottom: 16.4 / 1989
  20666. }
  20667. },
  20668. },
  20669. [
  20670. {
  20671. name: "Normal",
  20672. height: math.unit(8, "feet")
  20673. },
  20674. {
  20675. name: "Minimacro",
  20676. height: math.unit(75, "feet"),
  20677. default: true
  20678. },
  20679. {
  20680. name: "Macro",
  20681. height: math.unit(150, "feet")
  20682. },
  20683. {
  20684. name: "Macro+",
  20685. height: math.unit(1000, "feet")
  20686. },
  20687. {
  20688. name: "Megamacro",
  20689. height: math.unit(1, "mile")
  20690. },
  20691. ]
  20692. ))
  20693. characterMakers.push(() => makeCharacter(
  20694. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  20695. {
  20696. side: {
  20697. height: math.unit(20, "feet"),
  20698. weight: math.unit(30000, "kg"),
  20699. name: "Side",
  20700. image: {
  20701. source: "./media/characters/windar/side.svg",
  20702. extra: 1491 / 1248,
  20703. bottom: 82.56 / 1568
  20704. }
  20705. },
  20706. },
  20707. [
  20708. {
  20709. name: "Normal",
  20710. height: math.unit(20, "feet"),
  20711. default: true
  20712. },
  20713. ]
  20714. ))
  20715. characterMakers.push(() => makeCharacter(
  20716. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  20717. {
  20718. side: {
  20719. height: math.unit(15.66, "feet"),
  20720. weight: math.unit(150, "lb"),
  20721. name: "Side",
  20722. image: {
  20723. source: "./media/characters/melody/side.svg",
  20724. extra: 1097 / 944,
  20725. bottom: 11.8 / 1109
  20726. }
  20727. },
  20728. sideOutfit: {
  20729. height: math.unit(15.66, "feet"),
  20730. weight: math.unit(150, "lb"),
  20731. name: "Side (Outfit)",
  20732. image: {
  20733. source: "./media/characters/melody/side-outfit.svg",
  20734. extra: 1097 / 944,
  20735. bottom: 11.8 / 1109
  20736. }
  20737. },
  20738. },
  20739. [
  20740. {
  20741. name: "Normal",
  20742. height: math.unit(15.66, "feet"),
  20743. default: true
  20744. },
  20745. ]
  20746. ))
  20747. characterMakers.push(() => makeCharacter(
  20748. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  20749. {
  20750. front: {
  20751. height: math.unit(8, "feet"),
  20752. weight: math.unit(325, "lb"),
  20753. name: "Front",
  20754. image: {
  20755. source: "./media/characters/windera/front.svg",
  20756. extra: 3180 / 2845,
  20757. bottom: 178 / 3365
  20758. }
  20759. },
  20760. },
  20761. [
  20762. {
  20763. name: "Normal",
  20764. height: math.unit(8, "feet"),
  20765. default: true
  20766. },
  20767. ]
  20768. ))
  20769. characterMakers.push(() => makeCharacter(
  20770. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  20771. {
  20772. front: {
  20773. height: math.unit(28.75, "feet"),
  20774. weight: math.unit(2000, "kg"),
  20775. name: "Front",
  20776. image: {
  20777. source: "./media/characters/sonear/front.svg",
  20778. extra: 1041.1 / 964.9,
  20779. bottom: 53.7 / 1096.6
  20780. }
  20781. },
  20782. },
  20783. [
  20784. {
  20785. name: "Normal",
  20786. height: math.unit(28.75, "feet"),
  20787. default: true
  20788. },
  20789. ]
  20790. ))
  20791. characterMakers.push(() => makeCharacter(
  20792. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  20793. {
  20794. side: {
  20795. height: math.unit(25.5, "feet"),
  20796. weight: math.unit(23000, "kg"),
  20797. name: "Side",
  20798. image: {
  20799. source: "./media/characters/kanara/side.svg"
  20800. }
  20801. },
  20802. },
  20803. [
  20804. {
  20805. name: "Normal",
  20806. height: math.unit(25.5, "feet"),
  20807. default: true
  20808. },
  20809. ]
  20810. ))
  20811. characterMakers.push(() => makeCharacter(
  20812. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  20813. {
  20814. side: {
  20815. height: math.unit(10, "feet"),
  20816. weight: math.unit(1000, "kg"),
  20817. name: "Side",
  20818. image: {
  20819. source: "./media/characters/ereus/side.svg",
  20820. extra: 1157 / 959,
  20821. bottom: 153 / 1312.5
  20822. }
  20823. },
  20824. },
  20825. [
  20826. {
  20827. name: "Normal",
  20828. height: math.unit(10, "feet"),
  20829. default: true
  20830. },
  20831. ]
  20832. ))
  20833. characterMakers.push(() => makeCharacter(
  20834. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  20835. {
  20836. side: {
  20837. height: math.unit(4.5, "feet"),
  20838. weight: math.unit(500, "lb"),
  20839. name: "Side",
  20840. image: {
  20841. source: "./media/characters/e-ter/side.svg",
  20842. extra: 1550 / 1248,
  20843. bottom: 146 / 1694
  20844. }
  20845. },
  20846. },
  20847. [
  20848. {
  20849. name: "Normal",
  20850. height: math.unit(4.5, "feet"),
  20851. default: true
  20852. },
  20853. ]
  20854. ))
  20855. characterMakers.push(() => makeCharacter(
  20856. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  20857. {
  20858. side: {
  20859. height: math.unit(9.7, "feet"),
  20860. weight: math.unit(4000, "kg"),
  20861. name: "Side",
  20862. image: {
  20863. source: "./media/characters/yamie/side.svg"
  20864. }
  20865. },
  20866. },
  20867. [
  20868. {
  20869. name: "Normal",
  20870. height: math.unit(9.7, "feet"),
  20871. default: true
  20872. },
  20873. ]
  20874. ))
  20875. characterMakers.push(() => makeCharacter(
  20876. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  20877. {
  20878. front: {
  20879. height: math.unit(50, "feet"),
  20880. weight: math.unit(50000, "kg"),
  20881. name: "Front",
  20882. image: {
  20883. source: "./media/characters/anders/front.svg",
  20884. extra: 570 / 539,
  20885. bottom: 14.7 / 586.7
  20886. }
  20887. },
  20888. },
  20889. [
  20890. {
  20891. name: "Large",
  20892. height: math.unit(50, "feet")
  20893. },
  20894. {
  20895. name: "Macro",
  20896. height: math.unit(2000, "feet"),
  20897. default: true
  20898. },
  20899. {
  20900. name: "Megamacro",
  20901. height: math.unit(12, "miles")
  20902. },
  20903. ]
  20904. ))
  20905. characterMakers.push(() => makeCharacter(
  20906. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  20907. {
  20908. front: {
  20909. height: math.unit(7 + 2 / 12, "feet"),
  20910. weight: math.unit(300, "lb"),
  20911. name: "Front",
  20912. image: {
  20913. source: "./media/characters/reban/front.svg",
  20914. extra: 516 / 487,
  20915. bottom: 42.82 / 558.356
  20916. }
  20917. },
  20918. dick: {
  20919. height: math.unit(7 / 5, "feet"),
  20920. name: "Dick",
  20921. image: {
  20922. source: "./media/characters/reban/dick.svg"
  20923. }
  20924. },
  20925. },
  20926. [
  20927. {
  20928. name: "Natural Height",
  20929. height: math.unit(7 + 2 / 12, "feet")
  20930. },
  20931. {
  20932. name: "Macro",
  20933. height: math.unit(500, "feet"),
  20934. default: true
  20935. },
  20936. {
  20937. name: "Canon Height",
  20938. height: math.unit(50, "AU")
  20939. },
  20940. ]
  20941. ))
  20942. characterMakers.push(() => makeCharacter(
  20943. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  20944. {
  20945. front: {
  20946. height: math.unit(6, "feet"),
  20947. weight: math.unit(150, "lb"),
  20948. name: "Front",
  20949. image: {
  20950. source: "./media/characters/terrance-keayes/front.svg",
  20951. extra: 1.005,
  20952. bottom: 151 / 1615
  20953. }
  20954. },
  20955. side: {
  20956. height: math.unit(6, "feet"),
  20957. weight: math.unit(150, "lb"),
  20958. name: "Side",
  20959. image: {
  20960. source: "./media/characters/terrance-keayes/side.svg",
  20961. extra: 1.005,
  20962. bottom: 129.4 / 1544
  20963. }
  20964. },
  20965. back: {
  20966. height: math.unit(6, "feet"),
  20967. weight: math.unit(150, "lb"),
  20968. name: "Back",
  20969. image: {
  20970. source: "./media/characters/terrance-keayes/back.svg",
  20971. extra: 1.005,
  20972. bottom: 58.4 / 1557.3
  20973. }
  20974. },
  20975. dick: {
  20976. height: math.unit(6 * 0.208, "feet"),
  20977. name: "Dick",
  20978. image: {
  20979. source: "./media/characters/terrance-keayes/dick.svg"
  20980. }
  20981. },
  20982. },
  20983. [
  20984. {
  20985. name: "Canon Height",
  20986. height: math.unit(35, "miles"),
  20987. default: true
  20988. },
  20989. ]
  20990. ))
  20991. characterMakers.push(() => makeCharacter(
  20992. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  20993. {
  20994. front: {
  20995. height: math.unit(6, "feet"),
  20996. weight: math.unit(150, "lb"),
  20997. name: "Front",
  20998. image: {
  20999. source: "./media/characters/ofelia/front.svg",
  21000. extra: 546 / 541,
  21001. bottom: 39 / 583
  21002. }
  21003. },
  21004. back: {
  21005. height: math.unit(6, "feet"),
  21006. weight: math.unit(150, "lb"),
  21007. name: "Back",
  21008. image: {
  21009. source: "./media/characters/ofelia/back.svg",
  21010. extra: 564 / 559.5,
  21011. bottom: 8.69 / 573.02
  21012. }
  21013. },
  21014. maw: {
  21015. height: math.unit(1, "feet"),
  21016. name: "Maw",
  21017. image: {
  21018. source: "./media/characters/ofelia/maw.svg"
  21019. }
  21020. },
  21021. foot: {
  21022. height: math.unit(1.949, "feet"),
  21023. name: "Foot",
  21024. image: {
  21025. source: "./media/characters/ofelia/foot.svg"
  21026. }
  21027. },
  21028. },
  21029. [
  21030. {
  21031. name: "Canon Height",
  21032. height: math.unit(2000, "miles"),
  21033. default: true
  21034. },
  21035. ]
  21036. ))
  21037. characterMakers.push(() => makeCharacter(
  21038. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21039. {
  21040. front: {
  21041. height: math.unit(6, "feet"),
  21042. weight: math.unit(150, "lb"),
  21043. name: "Front",
  21044. image: {
  21045. source: "./media/characters/samuel/front.svg",
  21046. extra: 265 / 258,
  21047. bottom: 2 / 266.1566
  21048. }
  21049. },
  21050. },
  21051. [
  21052. {
  21053. name: "Macro",
  21054. height: math.unit(100, "feet"),
  21055. default: true
  21056. },
  21057. {
  21058. name: "Full Size",
  21059. height: math.unit(1000, "miles")
  21060. },
  21061. ]
  21062. ))
  21063. characterMakers.push(() => makeCharacter(
  21064. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21065. {
  21066. front: {
  21067. height: math.unit(6, "feet"),
  21068. weight: math.unit(300, "lb"),
  21069. name: "Front",
  21070. image: {
  21071. source: "./media/characters/beishir-kiel/front.svg",
  21072. extra: 569 / 547,
  21073. bottom: 41.9 / 609
  21074. }
  21075. },
  21076. maw: {
  21077. height: math.unit(6 * 0.202, "feet"),
  21078. name: "Maw",
  21079. image: {
  21080. source: "./media/characters/beishir-kiel/maw.svg"
  21081. }
  21082. },
  21083. },
  21084. [
  21085. {
  21086. name: "Macro",
  21087. height: math.unit(300, "feet"),
  21088. default: true
  21089. },
  21090. ]
  21091. ))
  21092. characterMakers.push(() => makeCharacter(
  21093. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21094. {
  21095. front: {
  21096. height: math.unit(5 + 8 / 12, "feet"),
  21097. weight: math.unit(120, "lb"),
  21098. name: "Front",
  21099. image: {
  21100. source: "./media/characters/logan-grey/front.svg",
  21101. extra: 2539 / 2393,
  21102. bottom: 97.6 / 2636.37
  21103. }
  21104. },
  21105. frontAlt: {
  21106. height: math.unit(5 + 8 / 12, "feet"),
  21107. weight: math.unit(120, "lb"),
  21108. name: "Front (Alt)",
  21109. image: {
  21110. source: "./media/characters/logan-grey/front-alt.svg",
  21111. extra: 958 / 893,
  21112. bottom: 15 / 970.768
  21113. }
  21114. },
  21115. back: {
  21116. height: math.unit(5 + 8 / 12, "feet"),
  21117. weight: math.unit(120, "lb"),
  21118. name: "Back",
  21119. image: {
  21120. source: "./media/characters/logan-grey/back.svg",
  21121. extra: 958 / 893,
  21122. bottom: 2.1881 / 970.9788
  21123. }
  21124. },
  21125. dick: {
  21126. height: math.unit(1.437, "feet"),
  21127. name: "Dick",
  21128. image: {
  21129. source: "./media/characters/logan-grey/dick.svg"
  21130. }
  21131. },
  21132. },
  21133. [
  21134. {
  21135. name: "Normal",
  21136. height: math.unit(5 + 8 / 12, "feet")
  21137. },
  21138. {
  21139. name: "The 500 Foot Femboy",
  21140. height: math.unit(500, "feet"),
  21141. default: true
  21142. },
  21143. {
  21144. name: "Megmacro",
  21145. height: math.unit(20, "miles")
  21146. },
  21147. ]
  21148. ))
  21149. characterMakers.push(() => makeCharacter(
  21150. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21151. {
  21152. front: {
  21153. height: math.unit(8 + 2 / 12, "feet"),
  21154. weight: math.unit(275, "lb"),
  21155. name: "Front",
  21156. image: {
  21157. source: "./media/characters/draganta/front.svg",
  21158. extra: 1177 / 1135,
  21159. bottom: 33.46 / 1212.1
  21160. }
  21161. },
  21162. },
  21163. [
  21164. {
  21165. name: "Normal",
  21166. height: math.unit(8 + 6 / 12, "feet"),
  21167. default: true
  21168. },
  21169. {
  21170. name: "Macro",
  21171. height: math.unit(150, "feet")
  21172. },
  21173. {
  21174. name: "Megamacro",
  21175. height: math.unit(1000, "miles")
  21176. },
  21177. ]
  21178. ))
  21179. characterMakers.push(() => makeCharacter(
  21180. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21181. {
  21182. front: {
  21183. height: math.unit(1.72, "m"),
  21184. weight: math.unit(80, "lb"),
  21185. name: "Front",
  21186. image: {
  21187. source: "./media/characters/voski/front.svg",
  21188. extra: 2076.22 / 2022.4,
  21189. bottom: 102.7 / 2177.3866
  21190. }
  21191. },
  21192. frontNsfw: {
  21193. height: math.unit(1.72, "m"),
  21194. weight: math.unit(80, "lb"),
  21195. name: "Front (NSFW)",
  21196. image: {
  21197. source: "./media/characters/voski/front-nsfw.svg",
  21198. extra: 2076.22 / 2022.4,
  21199. bottom: 102.7 / 2177.3866
  21200. }
  21201. },
  21202. back: {
  21203. height: math.unit(1.72, "m"),
  21204. weight: math.unit(80, "lb"),
  21205. name: "Back",
  21206. image: {
  21207. source: "./media/characters/voski/back.svg",
  21208. extra: 2104 / 2051,
  21209. bottom: 10.45 / 2113.63
  21210. }
  21211. },
  21212. },
  21213. [
  21214. {
  21215. name: "Normal",
  21216. height: math.unit(1.72, "m")
  21217. },
  21218. {
  21219. name: "Macro",
  21220. height: math.unit(55, "m"),
  21221. default: true
  21222. },
  21223. {
  21224. name: "Macro+",
  21225. height: math.unit(300, "m")
  21226. },
  21227. {
  21228. name: "Macro++",
  21229. height: math.unit(700, "m")
  21230. },
  21231. {
  21232. name: "Macro+++",
  21233. height: math.unit(4500, "m")
  21234. },
  21235. {
  21236. name: "Macro++++",
  21237. height: math.unit(45, "km")
  21238. },
  21239. {
  21240. name: "Macro+++++",
  21241. height: math.unit(1220, "km")
  21242. },
  21243. ]
  21244. ))
  21245. characterMakers.push(() => makeCharacter(
  21246. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21247. {
  21248. front: {
  21249. height: math.unit(2.3, "m"),
  21250. weight: math.unit(304, "kg"),
  21251. name: "Front",
  21252. image: {
  21253. source: "./media/characters/icowom-lee/front.svg",
  21254. extra: 985 / 955,
  21255. bottom: 25.4 / 1012
  21256. }
  21257. },
  21258. fronttentacles: {
  21259. height: math.unit(2.3, "m"),
  21260. weight: math.unit(304, "kg"),
  21261. name: "Front-tentacles",
  21262. image: {
  21263. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21264. extra: 985 / 955,
  21265. bottom: 25.4 / 1012
  21266. }
  21267. },
  21268. back: {
  21269. height: math.unit(2.3, "m"),
  21270. weight: math.unit(304, "kg"),
  21271. name: "Back",
  21272. image: {
  21273. source: "./media/characters/icowom-lee/back.svg",
  21274. extra: 975 / 954,
  21275. bottom: 9.5 / 985
  21276. }
  21277. },
  21278. backtentacles: {
  21279. height: math.unit(2.3, "m"),
  21280. weight: math.unit(304, "kg"),
  21281. name: "Back-tentacles",
  21282. image: {
  21283. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21284. extra: 975 / 954,
  21285. bottom: 9.5 / 985
  21286. }
  21287. },
  21288. frontDressed: {
  21289. height: math.unit(2.3, "m"),
  21290. weight: math.unit(304, "kg"),
  21291. name: "Front (Dressed)",
  21292. image: {
  21293. source: "./media/characters/icowom-lee/front-dressed.svg",
  21294. extra: 3076 / 2933,
  21295. bottom: 51.4 / 3125.1889
  21296. }
  21297. },
  21298. rump: {
  21299. height: math.unit(0.776, "meters"),
  21300. name: "Rump",
  21301. image: {
  21302. source: "./media/characters/icowom-lee/rump.svg"
  21303. }
  21304. },
  21305. genitals: {
  21306. height: math.unit(0.78, "meters"),
  21307. name: "Genitals",
  21308. image: {
  21309. source: "./media/characters/icowom-lee/genitals.svg"
  21310. }
  21311. },
  21312. },
  21313. [
  21314. {
  21315. name: "Normal",
  21316. height: math.unit(2.3, "meters"),
  21317. default: true
  21318. },
  21319. {
  21320. name: "Macro",
  21321. height: math.unit(94, "meters"),
  21322. default: true
  21323. },
  21324. ]
  21325. ))
  21326. characterMakers.push(() => makeCharacter(
  21327. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21328. {
  21329. front: {
  21330. height: math.unit(22, "meters"),
  21331. weight: math.unit(21000, "kg"),
  21332. name: "Front",
  21333. image: {
  21334. source: "./media/characters/shock-diamond/front.svg",
  21335. extra: 2204 / 2053,
  21336. bottom: 65 / 2239.47
  21337. }
  21338. },
  21339. frontNude: {
  21340. height: math.unit(22, "meters"),
  21341. weight: math.unit(21000, "kg"),
  21342. name: "Front (Nude)",
  21343. image: {
  21344. source: "./media/characters/shock-diamond/front-nude.svg",
  21345. extra: 2514 / 2285,
  21346. bottom: 13 / 2527.56
  21347. }
  21348. },
  21349. },
  21350. [
  21351. {
  21352. name: "Normal",
  21353. height: math.unit(3, "meters")
  21354. },
  21355. {
  21356. name: "Macro",
  21357. height: math.unit(22, "meters"),
  21358. default: true
  21359. },
  21360. ]
  21361. ))
  21362. characterMakers.push(() => makeCharacter(
  21363. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21364. {
  21365. front: {
  21366. height: math.unit(5 + 4 / 12, "feet"),
  21367. weight: math.unit(120, "lb"),
  21368. name: "Front",
  21369. image: {
  21370. source: "./media/characters/rory/front.svg",
  21371. extra: 589 / 556,
  21372. bottom: 45.7 / 635.76
  21373. }
  21374. },
  21375. frontNude: {
  21376. height: math.unit(5 + 4 / 12, "feet"),
  21377. weight: math.unit(120, "lb"),
  21378. name: "Front (Nude)",
  21379. image: {
  21380. source: "./media/characters/rory/front-nude.svg",
  21381. extra: 589 / 556,
  21382. bottom: 45.7 / 635.76
  21383. }
  21384. },
  21385. side: {
  21386. height: math.unit(5 + 4 / 12, "feet"),
  21387. weight: math.unit(120, "lb"),
  21388. name: "Side",
  21389. image: {
  21390. source: "./media/characters/rory/side.svg",
  21391. extra: 597 / 564,
  21392. bottom: 55 / 653
  21393. }
  21394. },
  21395. back: {
  21396. height: math.unit(5 + 4 / 12, "feet"),
  21397. weight: math.unit(120, "lb"),
  21398. name: "Back",
  21399. image: {
  21400. source: "./media/characters/rory/back.svg",
  21401. extra: 620 / 585,
  21402. bottom: 8.86 / 630.43
  21403. }
  21404. },
  21405. dick: {
  21406. height: math.unit(0.86, "feet"),
  21407. name: "Dick",
  21408. image: {
  21409. source: "./media/characters/rory/dick.svg"
  21410. }
  21411. },
  21412. },
  21413. [
  21414. {
  21415. name: "Normal",
  21416. height: math.unit(5 + 4 / 12, "feet"),
  21417. default: true
  21418. },
  21419. {
  21420. name: "Macro",
  21421. height: math.unit(100, "feet")
  21422. },
  21423. {
  21424. name: "Macro+",
  21425. height: math.unit(140, "feet")
  21426. },
  21427. {
  21428. name: "Macro++",
  21429. height: math.unit(300, "feet")
  21430. },
  21431. ]
  21432. ))
  21433. characterMakers.push(() => makeCharacter(
  21434. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21435. {
  21436. front: {
  21437. height: math.unit(5 + 9 / 12, "feet"),
  21438. weight: math.unit(190, "lb"),
  21439. name: "Front",
  21440. image: {
  21441. source: "./media/characters/sprisk/front.svg",
  21442. extra: 1225 / 1180,
  21443. bottom: 42.7 / 1266.4
  21444. }
  21445. },
  21446. frontNsfw: {
  21447. height: math.unit(5 + 9 / 12, "feet"),
  21448. weight: math.unit(190, "lb"),
  21449. name: "Front (NSFW)",
  21450. image: {
  21451. source: "./media/characters/sprisk/front-nsfw.svg",
  21452. extra: 1225 / 1180,
  21453. bottom: 42.7 / 1266.4
  21454. }
  21455. },
  21456. back: {
  21457. height: math.unit(5 + 9 / 12, "feet"),
  21458. weight: math.unit(190, "lb"),
  21459. name: "Back",
  21460. image: {
  21461. source: "./media/characters/sprisk/back.svg",
  21462. extra: 1247 / 1200,
  21463. bottom: 5.6 / 1253.04
  21464. }
  21465. },
  21466. },
  21467. [
  21468. {
  21469. name: "Tiny",
  21470. height: math.unit(2, "inches")
  21471. },
  21472. {
  21473. name: "Normal",
  21474. height: math.unit(5 + 9 / 12, "feet"),
  21475. default: true
  21476. },
  21477. {
  21478. name: "Mini Macro",
  21479. height: math.unit(18, "feet")
  21480. },
  21481. {
  21482. name: "Macro",
  21483. height: math.unit(100, "feet")
  21484. },
  21485. {
  21486. name: "MACRO",
  21487. height: math.unit(50, "miles")
  21488. },
  21489. {
  21490. name: "M A C R O",
  21491. height: math.unit(300, "miles")
  21492. },
  21493. ]
  21494. ))
  21495. characterMakers.push(() => makeCharacter(
  21496. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21497. {
  21498. side: {
  21499. height: math.unit(15.6, "meters"),
  21500. weight: math.unit(700000, "kg"),
  21501. name: "Side",
  21502. image: {
  21503. source: "./media/characters/bunsen/side.svg",
  21504. extra: 1644 / 358
  21505. }
  21506. },
  21507. foot: {
  21508. height: math.unit(1.611 * 1644 / 358, "meter"),
  21509. name: "Foot",
  21510. image: {
  21511. source: "./media/characters/bunsen/foot.svg"
  21512. }
  21513. },
  21514. },
  21515. [
  21516. {
  21517. name: "Small",
  21518. height: math.unit(10, "feet")
  21519. },
  21520. {
  21521. name: "Normal",
  21522. height: math.unit(15.6, "meters"),
  21523. default: true
  21524. },
  21525. ]
  21526. ))
  21527. characterMakers.push(() => makeCharacter(
  21528. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21529. {
  21530. front: {
  21531. height: math.unit(4 + 11 / 12, "feet"),
  21532. weight: math.unit(140, "lb"),
  21533. name: "Front",
  21534. image: {
  21535. source: "./media/characters/sesh/front.svg",
  21536. extra: 3420 / 3231,
  21537. bottom: 72 / 3949.5
  21538. }
  21539. },
  21540. },
  21541. [
  21542. {
  21543. name: "Normal",
  21544. height: math.unit(4 + 11 / 12, "feet")
  21545. },
  21546. {
  21547. name: "Grown",
  21548. height: math.unit(15, "feet"),
  21549. default: true
  21550. },
  21551. {
  21552. name: "Macro",
  21553. height: math.unit(1500, "feet")
  21554. },
  21555. {
  21556. name: "Megamacro",
  21557. height: math.unit(30, "miles")
  21558. },
  21559. {
  21560. name: "Continental",
  21561. height: math.unit(3000, "miles")
  21562. },
  21563. {
  21564. name: "Gravity Mass",
  21565. height: math.unit(300000, "miles")
  21566. },
  21567. {
  21568. name: "Planet Buster",
  21569. height: math.unit(30000000, "miles")
  21570. },
  21571. {
  21572. name: "Big",
  21573. height: math.unit(3000000000, "miles")
  21574. },
  21575. ]
  21576. ))
  21577. characterMakers.push(() => makeCharacter(
  21578. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21579. {
  21580. front: {
  21581. height: math.unit(9, "feet"),
  21582. weight: math.unit(350, "lb"),
  21583. name: "Front",
  21584. image: {
  21585. source: "./media/characters/pepper/front.svg",
  21586. extra: 1448 / 1312,
  21587. bottom: 9.4 / 1457.88
  21588. }
  21589. },
  21590. back: {
  21591. height: math.unit(9, "feet"),
  21592. weight: math.unit(350, "lb"),
  21593. name: "Back",
  21594. image: {
  21595. source: "./media/characters/pepper/back.svg",
  21596. extra: 1423 / 1300,
  21597. bottom: 4.6 / 1429
  21598. }
  21599. },
  21600. maw: {
  21601. height: math.unit(0.932, "feet"),
  21602. name: "Maw",
  21603. image: {
  21604. source: "./media/characters/pepper/maw.svg"
  21605. }
  21606. },
  21607. },
  21608. [
  21609. {
  21610. name: "Normal",
  21611. height: math.unit(9, "feet"),
  21612. default: true
  21613. },
  21614. ]
  21615. ))
  21616. characterMakers.push(() => makeCharacter(
  21617. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21618. {
  21619. front: {
  21620. height: math.unit(6, "feet"),
  21621. weight: math.unit(150, "lb"),
  21622. name: "Front",
  21623. image: {
  21624. source: "./media/characters/maelstrom/front.svg",
  21625. extra: 2100 / 1883,
  21626. bottom: 94 / 2196.7
  21627. }
  21628. },
  21629. },
  21630. [
  21631. {
  21632. name: "Less Kaiju",
  21633. height: math.unit(200, "feet")
  21634. },
  21635. {
  21636. name: "Kaiju",
  21637. height: math.unit(400, "feet"),
  21638. default: true
  21639. },
  21640. {
  21641. name: "Kaiju-er",
  21642. height: math.unit(600, "feet")
  21643. },
  21644. ]
  21645. ))
  21646. characterMakers.push(() => makeCharacter(
  21647. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21648. {
  21649. front: {
  21650. height: math.unit(6 + 5 / 12, "feet"),
  21651. weight: math.unit(180, "lb"),
  21652. name: "Front",
  21653. image: {
  21654. source: "./media/characters/lexir/front.svg",
  21655. extra: 180 / 172,
  21656. bottom: 12 / 192
  21657. }
  21658. },
  21659. back: {
  21660. height: math.unit(6 + 5 / 12, "feet"),
  21661. weight: math.unit(180, "lb"),
  21662. name: "Back",
  21663. image: {
  21664. source: "./media/characters/lexir/back.svg",
  21665. extra: 183.84 / 175.5,
  21666. bottom: 3.1 / 187
  21667. }
  21668. },
  21669. },
  21670. [
  21671. {
  21672. name: "Very Smal",
  21673. height: math.unit(1, "nm")
  21674. },
  21675. {
  21676. name: "Normal",
  21677. height: math.unit(6 + 5 / 12, "feet"),
  21678. default: true
  21679. },
  21680. {
  21681. name: "Macro",
  21682. height: math.unit(1, "mile")
  21683. },
  21684. {
  21685. name: "Megamacro",
  21686. height: math.unit(50, "miles")
  21687. },
  21688. ]
  21689. ))
  21690. characterMakers.push(() => makeCharacter(
  21691. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  21692. {
  21693. front: {
  21694. height: math.unit(1.5, "meters"),
  21695. weight: math.unit(100, "lb"),
  21696. name: "Front",
  21697. image: {
  21698. source: "./media/characters/maksio/front.svg",
  21699. extra: 1549 / 1531,
  21700. bottom: 123.7 / 1674.5429
  21701. }
  21702. },
  21703. back: {
  21704. height: math.unit(1.5, "meters"),
  21705. weight: math.unit(100, "lb"),
  21706. name: "Back",
  21707. image: {
  21708. source: "./media/characters/maksio/back.svg",
  21709. extra: 1541 / 1509,
  21710. bottom: 97 / 1639
  21711. }
  21712. },
  21713. hand: {
  21714. height: math.unit(0.621, "feet"),
  21715. name: "Hand",
  21716. image: {
  21717. source: "./media/characters/maksio/hand.svg"
  21718. }
  21719. },
  21720. foot: {
  21721. height: math.unit(1.611, "feet"),
  21722. name: "Foot",
  21723. image: {
  21724. source: "./media/characters/maksio/foot.svg"
  21725. }
  21726. },
  21727. },
  21728. [
  21729. {
  21730. name: "Shrunken",
  21731. height: math.unit(10, "cm")
  21732. },
  21733. {
  21734. name: "Normal",
  21735. height: math.unit(150, "cm"),
  21736. default: true
  21737. },
  21738. ]
  21739. ))
  21740. characterMakers.push(() => makeCharacter(
  21741. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  21742. {
  21743. front: {
  21744. height: math.unit(100, "feet"),
  21745. name: "Front",
  21746. image: {
  21747. source: "./media/characters/erza-bear/front.svg",
  21748. extra: 2449 / 2390,
  21749. bottom: 46 / 2494
  21750. }
  21751. },
  21752. back: {
  21753. height: math.unit(100, "feet"),
  21754. name: "Back",
  21755. image: {
  21756. source: "./media/characters/erza-bear/back.svg",
  21757. extra: 2489 / 2430,
  21758. bottom: 85.4 / 2480
  21759. }
  21760. },
  21761. tail: {
  21762. height: math.unit(42, "feet"),
  21763. name: "Tail",
  21764. image: {
  21765. source: "./media/characters/erza-bear/tail.svg"
  21766. }
  21767. },
  21768. tongue: {
  21769. height: math.unit(8, "feet"),
  21770. name: "Tongue",
  21771. image: {
  21772. source: "./media/characters/erza-bear/tongue.svg"
  21773. }
  21774. },
  21775. dick: {
  21776. height: math.unit(10.5, "feet"),
  21777. name: "Dick",
  21778. image: {
  21779. source: "./media/characters/erza-bear/dick.svg"
  21780. }
  21781. },
  21782. dickVertical: {
  21783. height: math.unit(16.9, "feet"),
  21784. name: "Dick (Vertical)",
  21785. image: {
  21786. source: "./media/characters/erza-bear/dick-vertical.svg"
  21787. }
  21788. },
  21789. },
  21790. [
  21791. {
  21792. name: "Macro",
  21793. height: math.unit(100, "feet"),
  21794. default: true
  21795. },
  21796. ]
  21797. ))
  21798. characterMakers.push(() => makeCharacter(
  21799. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  21800. {
  21801. front: {
  21802. height: math.unit(172, "cm"),
  21803. weight: math.unit(73, "kg"),
  21804. name: "Front",
  21805. image: {
  21806. source: "./media/characters/violet-flor/front.svg",
  21807. extra: 1530 / 1442,
  21808. bottom: 61.9 / 1588.8
  21809. }
  21810. },
  21811. back: {
  21812. height: math.unit(180, "cm"),
  21813. weight: math.unit(73, "kg"),
  21814. name: "Back",
  21815. image: {
  21816. source: "./media/characters/violet-flor/back.svg",
  21817. extra: 1692 / 1630,
  21818. bottom: 20 / 1712
  21819. }
  21820. },
  21821. },
  21822. [
  21823. {
  21824. name: "Normal",
  21825. height: math.unit(172, "cm"),
  21826. default: true
  21827. },
  21828. ]
  21829. ))
  21830. characterMakers.push(() => makeCharacter(
  21831. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  21832. {
  21833. front: {
  21834. height: math.unit(6, "feet"),
  21835. weight: math.unit(220, "lb"),
  21836. name: "Front",
  21837. image: {
  21838. source: "./media/characters/lynn-rhea/front.svg",
  21839. extra: 310 / 273
  21840. }
  21841. },
  21842. back: {
  21843. height: math.unit(6, "feet"),
  21844. weight: math.unit(220, "lb"),
  21845. name: "Back",
  21846. image: {
  21847. source: "./media/characters/lynn-rhea/back.svg",
  21848. extra: 310 / 273
  21849. }
  21850. },
  21851. dicks: {
  21852. height: math.unit(0.9, "feet"),
  21853. name: "Dicks",
  21854. image: {
  21855. source: "./media/characters/lynn-rhea/dicks.svg"
  21856. }
  21857. },
  21858. slit: {
  21859. height: math.unit(0.4, "feet"),
  21860. name: "Slit",
  21861. image: {
  21862. source: "./media/characters/lynn-rhea/slit.svg"
  21863. }
  21864. },
  21865. },
  21866. [
  21867. {
  21868. name: "Micro",
  21869. height: math.unit(1, "inch")
  21870. },
  21871. {
  21872. name: "Macro",
  21873. height: math.unit(60, "feet"),
  21874. default: true
  21875. },
  21876. {
  21877. name: "Megamacro",
  21878. height: math.unit(2, "miles")
  21879. },
  21880. {
  21881. name: "Gigamacro",
  21882. height: math.unit(3, "earths")
  21883. },
  21884. {
  21885. name: "Galactic",
  21886. height: math.unit(0.8, "galaxies")
  21887. },
  21888. ]
  21889. ))
  21890. characterMakers.push(() => makeCharacter(
  21891. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  21892. {
  21893. front: {
  21894. height: math.unit(1600, "feet"),
  21895. weight: math.unit(85758785169, "kg"),
  21896. name: "Front",
  21897. image: {
  21898. source: "./media/characters/valathos/front.svg",
  21899. extra: 1451 / 1339
  21900. }
  21901. },
  21902. },
  21903. [
  21904. {
  21905. name: "Macro",
  21906. height: math.unit(1600, "feet"),
  21907. default: true
  21908. },
  21909. ]
  21910. ))
  21911. characterMakers.push(() => makeCharacter(
  21912. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  21913. {
  21914. front: {
  21915. height: math.unit(7 + 5 / 12, "feet"),
  21916. weight: math.unit(300, "lb"),
  21917. name: "Front",
  21918. image: {
  21919. source: "./media/characters/azula/front.svg",
  21920. extra: 3208 / 2880,
  21921. bottom: 80.2 / 3277
  21922. }
  21923. },
  21924. back: {
  21925. height: math.unit(7 + 5 / 12, "feet"),
  21926. weight: math.unit(300, "lb"),
  21927. name: "Back",
  21928. image: {
  21929. source: "./media/characters/azula/back.svg",
  21930. extra: 3169 / 2822,
  21931. bottom: 150.6 / 3321
  21932. }
  21933. },
  21934. },
  21935. [
  21936. {
  21937. name: "Normal",
  21938. height: math.unit(7 + 5 / 12, "feet"),
  21939. default: true
  21940. },
  21941. {
  21942. name: "Big",
  21943. height: math.unit(20, "feet")
  21944. },
  21945. ]
  21946. ))
  21947. characterMakers.push(() => makeCharacter(
  21948. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  21949. {
  21950. front: {
  21951. height: math.unit(5 + 1 / 12, "feet"),
  21952. weight: math.unit(110, "lb"),
  21953. name: "Front",
  21954. image: {
  21955. source: "./media/characters/rupert/front.svg",
  21956. extra: 1549 / 1495,
  21957. bottom: 54.2 / 1604.4
  21958. }
  21959. },
  21960. },
  21961. [
  21962. {
  21963. name: "Normal",
  21964. height: math.unit(5 + 1 / 12, "feet"),
  21965. default: true
  21966. },
  21967. ]
  21968. ))
  21969. characterMakers.push(() => makeCharacter(
  21970. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  21971. {
  21972. front: {
  21973. height: math.unit(8 + 4 / 12, "feet"),
  21974. weight: math.unit(350, "lb"),
  21975. name: "Front",
  21976. image: {
  21977. source: "./media/characters/sheera-castellar/front.svg",
  21978. extra: 1957 / 1894,
  21979. bottom: 26.97 / 1975.017
  21980. }
  21981. },
  21982. side: {
  21983. height: math.unit(8 + 4 / 12, "feet"),
  21984. weight: math.unit(350, "lb"),
  21985. name: "Side",
  21986. image: {
  21987. source: "./media/characters/sheera-castellar/side.svg",
  21988. extra: 1957 / 1894
  21989. }
  21990. },
  21991. back: {
  21992. height: math.unit(8 + 4 / 12, "feet"),
  21993. weight: math.unit(350, "lb"),
  21994. name: "Back",
  21995. image: {
  21996. source: "./media/characters/sheera-castellar/back.svg",
  21997. extra: 1957 / 1894
  21998. }
  21999. },
  22000. angled: {
  22001. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22002. weight: math.unit(350, "lb"),
  22003. name: "Angled",
  22004. image: {
  22005. source: "./media/characters/sheera-castellar/angled.svg",
  22006. extra: 1807 / 1707,
  22007. bottom: 68 / 1875
  22008. }
  22009. },
  22010. genitals: {
  22011. height: math.unit(2.2, "feet"),
  22012. name: "Genitals",
  22013. image: {
  22014. source: "./media/characters/sheera-castellar/genitals.svg"
  22015. }
  22016. },
  22017. },
  22018. [
  22019. {
  22020. name: "Normal",
  22021. height: math.unit(8 + 4 / 12, "feet")
  22022. },
  22023. {
  22024. name: "Macro",
  22025. height: math.unit(150, "feet"),
  22026. default: true
  22027. },
  22028. {
  22029. name: "Macro+",
  22030. height: math.unit(800, "feet")
  22031. },
  22032. ]
  22033. ))
  22034. characterMakers.push(() => makeCharacter(
  22035. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22036. {
  22037. front: {
  22038. height: math.unit(6, "feet"),
  22039. weight: math.unit(150, "lb"),
  22040. name: "Front",
  22041. image: {
  22042. source: "./media/characters/jaipur/front.svg",
  22043. extra: 3860 / 3731,
  22044. bottom: 287 / 4140
  22045. }
  22046. },
  22047. back: {
  22048. height: math.unit(6, "feet"),
  22049. weight: math.unit(150, "lb"),
  22050. name: "Back",
  22051. image: {
  22052. source: "./media/characters/jaipur/back.svg",
  22053. extra: 4060 / 3930,
  22054. bottom: 151 / 4200
  22055. }
  22056. },
  22057. },
  22058. [
  22059. {
  22060. name: "Normal",
  22061. height: math.unit(1.85, "meters"),
  22062. default: true
  22063. },
  22064. {
  22065. name: "Macro",
  22066. height: math.unit(150, "meters")
  22067. },
  22068. {
  22069. name: "Macro+",
  22070. height: math.unit(0.5, "miles")
  22071. },
  22072. {
  22073. name: "Macro++",
  22074. height: math.unit(2.5, "miles")
  22075. },
  22076. {
  22077. name: "Macro+++",
  22078. height: math.unit(12, "miles")
  22079. },
  22080. {
  22081. name: "Macro++++",
  22082. height: math.unit(120, "miles")
  22083. },
  22084. {
  22085. name: "Macro+++++",
  22086. height: math.unit(1200, "miles")
  22087. },
  22088. ]
  22089. ))
  22090. characterMakers.push(() => makeCharacter(
  22091. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22092. {
  22093. front: {
  22094. height: math.unit(6, "feet"),
  22095. weight: math.unit(150, "lb"),
  22096. name: "Front",
  22097. image: {
  22098. source: "./media/characters/sheila-wolf/front.svg",
  22099. extra: 1931 / 1808,
  22100. bottom: 29.5 / 1960
  22101. }
  22102. },
  22103. dick: {
  22104. height: math.unit(1.464, "feet"),
  22105. name: "Dick",
  22106. image: {
  22107. source: "./media/characters/sheila-wolf/dick.svg"
  22108. }
  22109. },
  22110. muzzle: {
  22111. height: math.unit(0.513, "feet"),
  22112. name: "Muzzle",
  22113. image: {
  22114. source: "./media/characters/sheila-wolf/muzzle.svg"
  22115. }
  22116. },
  22117. },
  22118. [
  22119. {
  22120. name: "Macro",
  22121. height: math.unit(70, "feet"),
  22122. default: true
  22123. },
  22124. ]
  22125. ))
  22126. characterMakers.push(() => makeCharacter(
  22127. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22128. {
  22129. front: {
  22130. height: math.unit(32, "meters"),
  22131. weight: math.unit(300000, "kg"),
  22132. name: "Front",
  22133. image: {
  22134. source: "./media/characters/almor/front.svg",
  22135. extra: 1408 / 1322,
  22136. bottom: 94.6 / 1506.5
  22137. }
  22138. },
  22139. },
  22140. [
  22141. {
  22142. name: "Macro",
  22143. height: math.unit(32, "meters"),
  22144. default: true
  22145. },
  22146. ]
  22147. ))
  22148. characterMakers.push(() => makeCharacter(
  22149. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22150. {
  22151. front: {
  22152. height: math.unit(7, "feet"),
  22153. weight: math.unit(200, "lb"),
  22154. name: "Front",
  22155. image: {
  22156. source: "./media/characters/silver/front.svg",
  22157. extra: 472.1 / 450.5,
  22158. bottom: 26.5 / 499.424
  22159. }
  22160. },
  22161. },
  22162. [
  22163. {
  22164. name: "Normal",
  22165. height: math.unit(7, "feet"),
  22166. default: true
  22167. },
  22168. {
  22169. name: "Macro",
  22170. height: math.unit(800, "feet")
  22171. },
  22172. {
  22173. name: "Megamacro",
  22174. height: math.unit(250, "miles")
  22175. },
  22176. ]
  22177. ))
  22178. characterMakers.push(() => makeCharacter(
  22179. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22180. {
  22181. front: {
  22182. height: math.unit(6, "feet"),
  22183. weight: math.unit(150, "lb"),
  22184. name: "Front",
  22185. image: {
  22186. source: "./media/characters/pliskin/front.svg",
  22187. extra: 1469 / 1359,
  22188. bottom: 70 / 1540
  22189. }
  22190. },
  22191. },
  22192. [
  22193. {
  22194. name: "Micro",
  22195. height: math.unit(3, "inches")
  22196. },
  22197. {
  22198. name: "Normal",
  22199. height: math.unit(5 + 11 / 12, "feet"),
  22200. default: true
  22201. },
  22202. {
  22203. name: "Macro",
  22204. height: math.unit(120, "feet")
  22205. },
  22206. ]
  22207. ))
  22208. characterMakers.push(() => makeCharacter(
  22209. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22210. {
  22211. front: {
  22212. height: math.unit(6, "feet"),
  22213. weight: math.unit(150, "lb"),
  22214. name: "Front",
  22215. image: {
  22216. source: "./media/characters/sammy/front.svg",
  22217. extra: 1193 / 1089,
  22218. bottom: 30.5 / 1226
  22219. }
  22220. },
  22221. },
  22222. [
  22223. {
  22224. name: "Macro",
  22225. height: math.unit(1700, "feet"),
  22226. default: true
  22227. },
  22228. {
  22229. name: "Examacro",
  22230. height: math.unit(2.5e9, "lightyears")
  22231. },
  22232. ]
  22233. ))
  22234. characterMakers.push(() => makeCharacter(
  22235. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22236. {
  22237. front: {
  22238. height: math.unit(21, "meters"),
  22239. weight: math.unit(12, "tonnes"),
  22240. name: "Front",
  22241. image: {
  22242. source: "./media/characters/kuru/front.svg",
  22243. extra: 4301 / 3785,
  22244. bottom: 371.3 / 4691
  22245. }
  22246. },
  22247. },
  22248. [
  22249. {
  22250. name: "Macro",
  22251. height: math.unit(21, "meters"),
  22252. default: true
  22253. },
  22254. ]
  22255. ))
  22256. characterMakers.push(() => makeCharacter(
  22257. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22258. {
  22259. front: {
  22260. height: math.unit(23, "meters"),
  22261. weight: math.unit(12.2, "tonnes"),
  22262. name: "Front",
  22263. image: {
  22264. source: "./media/characters/rakka/front.svg",
  22265. extra: 4670 / 4169,
  22266. bottom: 301 / 4968.7
  22267. }
  22268. },
  22269. },
  22270. [
  22271. {
  22272. name: "Macro",
  22273. height: math.unit(23, "meters"),
  22274. default: true
  22275. },
  22276. ]
  22277. ))
  22278. characterMakers.push(() => makeCharacter(
  22279. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22280. {
  22281. front: {
  22282. height: math.unit(6, "feet"),
  22283. weight: math.unit(150, "lb"),
  22284. name: "Front",
  22285. image: {
  22286. source: "./media/characters/rhys-feline/front.svg",
  22287. extra: 2488 / 2308,
  22288. bottom: 35.67 / 2519.19
  22289. }
  22290. },
  22291. },
  22292. [
  22293. {
  22294. name: "Really Small",
  22295. height: math.unit(1, "nm")
  22296. },
  22297. {
  22298. name: "Micro",
  22299. height: math.unit(4, "inches")
  22300. },
  22301. {
  22302. name: "Normal",
  22303. height: math.unit(4 + 10 / 12, "feet"),
  22304. default: true
  22305. },
  22306. {
  22307. name: "Macro",
  22308. height: math.unit(100, "feet")
  22309. },
  22310. {
  22311. name: "Megamacto",
  22312. height: math.unit(50, "miles")
  22313. },
  22314. ]
  22315. ))
  22316. characterMakers.push(() => makeCharacter(
  22317. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22318. {
  22319. side: {
  22320. height: math.unit(30, "feet"),
  22321. weight: math.unit(35000, "kg"),
  22322. name: "Side",
  22323. image: {
  22324. source: "./media/characters/alydar/side.svg",
  22325. extra: 234 / 222,
  22326. bottom: 6.5 / 241
  22327. }
  22328. },
  22329. front: {
  22330. height: math.unit(30, "feet"),
  22331. weight: math.unit(35000, "kg"),
  22332. name: "Front",
  22333. image: {
  22334. source: "./media/characters/alydar/front.svg",
  22335. extra: 223.37 / 210.2,
  22336. bottom: 22.3 / 246.76
  22337. }
  22338. },
  22339. top: {
  22340. height: math.unit(64.54, "feet"),
  22341. weight: math.unit(35000, "kg"),
  22342. name: "Top",
  22343. image: {
  22344. source: "./media/characters/alydar/top.svg"
  22345. }
  22346. },
  22347. anthro: {
  22348. height: math.unit(30, "feet"),
  22349. weight: math.unit(9000, "kg"),
  22350. name: "Anthro",
  22351. image: {
  22352. source: "./media/characters/alydar/anthro.svg",
  22353. extra: 432 / 421,
  22354. bottom: 7.18 / 440
  22355. }
  22356. },
  22357. maw: {
  22358. height: math.unit(11.693, "feet"),
  22359. name: "Maw",
  22360. image: {
  22361. source: "./media/characters/alydar/maw.svg"
  22362. }
  22363. },
  22364. head: {
  22365. height: math.unit(11.693, "feet"),
  22366. name: "Head",
  22367. image: {
  22368. source: "./media/characters/alydar/head.svg"
  22369. }
  22370. },
  22371. headAlt: {
  22372. height: math.unit(12.861, "feet"),
  22373. name: "Head (Alt)",
  22374. image: {
  22375. source: "./media/characters/alydar/head-alt.svg"
  22376. }
  22377. },
  22378. wing: {
  22379. height: math.unit(20.712, "feet"),
  22380. name: "Wing",
  22381. image: {
  22382. source: "./media/characters/alydar/wing.svg"
  22383. }
  22384. },
  22385. wingFeather: {
  22386. height: math.unit(9.662, "feet"),
  22387. name: "Wing Feather",
  22388. image: {
  22389. source: "./media/characters/alydar/wing-feather.svg"
  22390. }
  22391. },
  22392. countourFeather: {
  22393. height: math.unit(4.154, "feet"),
  22394. name: "Contour Feather",
  22395. image: {
  22396. source: "./media/characters/alydar/contour-feather.svg"
  22397. }
  22398. },
  22399. },
  22400. [
  22401. {
  22402. name: "Diplomatic",
  22403. height: math.unit(13, "feet"),
  22404. default: true
  22405. },
  22406. {
  22407. name: "Small",
  22408. height: math.unit(30, "feet")
  22409. },
  22410. {
  22411. name: "Normal",
  22412. height: math.unit(95, "feet"),
  22413. default: true
  22414. },
  22415. {
  22416. name: "Large",
  22417. height: math.unit(285, "feet")
  22418. },
  22419. {
  22420. name: "Incomprehensible",
  22421. height: math.unit(450, "megameters")
  22422. },
  22423. ]
  22424. ))
  22425. characterMakers.push(() => makeCharacter(
  22426. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22427. {
  22428. side: {
  22429. height: math.unit(11, "feet"),
  22430. weight: math.unit(1750, "kg"),
  22431. name: "Side",
  22432. image: {
  22433. source: "./media/characters/selicia/side.svg",
  22434. extra: 440 / 396,
  22435. bottom: 24.8 / 465.979
  22436. }
  22437. },
  22438. maw: {
  22439. height: math.unit(4.665, "feet"),
  22440. name: "Maw",
  22441. image: {
  22442. source: "./media/characters/selicia/maw.svg"
  22443. }
  22444. },
  22445. },
  22446. [
  22447. {
  22448. name: "Normal",
  22449. height: math.unit(11, "feet"),
  22450. default: true
  22451. },
  22452. ]
  22453. ))
  22454. characterMakers.push(() => makeCharacter(
  22455. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22456. {
  22457. side: {
  22458. height: math.unit(2 + 6 / 12, "feet"),
  22459. weight: math.unit(30, "lb"),
  22460. name: "Side",
  22461. image: {
  22462. source: "./media/characters/layla/side.svg",
  22463. extra: 244 / 188,
  22464. bottom: 18.2 / 262.1
  22465. }
  22466. },
  22467. back: {
  22468. height: math.unit(2 + 6 / 12, "feet"),
  22469. weight: math.unit(30, "lb"),
  22470. name: "Back",
  22471. image: {
  22472. source: "./media/characters/layla/back.svg",
  22473. extra: 308 / 241.5,
  22474. bottom: 8.9 / 316.8
  22475. }
  22476. },
  22477. cumming: {
  22478. height: math.unit(2 + 6 / 12, "feet"),
  22479. weight: math.unit(30, "lb"),
  22480. name: "Cumming",
  22481. image: {
  22482. source: "./media/characters/layla/cumming.svg",
  22483. extra: 342 / 279,
  22484. bottom: 595 / 938
  22485. }
  22486. },
  22487. dickFlaccid: {
  22488. height: math.unit(2.595, "feet"),
  22489. name: "Flaccid Genitals",
  22490. image: {
  22491. source: "./media/characters/layla/dick-flaccid.svg"
  22492. }
  22493. },
  22494. dickErect: {
  22495. height: math.unit(2.359, "feet"),
  22496. name: "Erect Genitals",
  22497. image: {
  22498. source: "./media/characters/layla/dick-erect.svg"
  22499. }
  22500. },
  22501. },
  22502. [
  22503. {
  22504. name: "Micro",
  22505. height: math.unit(1, "inch")
  22506. },
  22507. {
  22508. name: "Small",
  22509. height: math.unit(1, "foot")
  22510. },
  22511. {
  22512. name: "Normal",
  22513. height: math.unit(2 + 6 / 12, "feet"),
  22514. default: true
  22515. },
  22516. {
  22517. name: "Macro",
  22518. height: math.unit(200, "feet")
  22519. },
  22520. {
  22521. name: "Megamacro",
  22522. height: math.unit(1000, "miles")
  22523. },
  22524. {
  22525. name: "Planetary",
  22526. height: math.unit(8000, "miles")
  22527. },
  22528. {
  22529. name: "True Layla",
  22530. height: math.unit(200000 * 7, "multiverses")
  22531. },
  22532. ]
  22533. ))
  22534. characterMakers.push(() => makeCharacter(
  22535. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22536. {
  22537. back: {
  22538. height: math.unit(10.5, "feet"),
  22539. weight: math.unit(800, "lb"),
  22540. name: "Back",
  22541. image: {
  22542. source: "./media/characters/knox/back.svg",
  22543. extra: 1486 / 1089,
  22544. bottom: 107 / 1601.4
  22545. }
  22546. },
  22547. side: {
  22548. height: math.unit(10.5, "feet"),
  22549. weight: math.unit(800, "lb"),
  22550. name: "Side",
  22551. image: {
  22552. source: "./media/characters/knox/side.svg",
  22553. extra: 244 / 218,
  22554. bottom: 14 / 260
  22555. }
  22556. },
  22557. },
  22558. [
  22559. {
  22560. name: "Compact",
  22561. height: math.unit(10.5, "feet"),
  22562. default: true
  22563. },
  22564. {
  22565. name: "Dynamax",
  22566. height: math.unit(210, "feet")
  22567. },
  22568. {
  22569. name: "Full Macro",
  22570. height: math.unit(850, "feet")
  22571. },
  22572. ]
  22573. ))
  22574. characterMakers.push(() => makeCharacter(
  22575. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22576. {
  22577. front: {
  22578. height: math.unit(6, "feet"),
  22579. weight: math.unit(152, "lb"),
  22580. name: "Front",
  22581. image: {
  22582. source: "./media/characters/shin-pikachu/front.svg",
  22583. extra: 1574 / 1480,
  22584. bottom: 53.3 / 1626
  22585. }
  22586. },
  22587. hand: {
  22588. height: math.unit(1.055, "feet"),
  22589. name: "Hand",
  22590. image: {
  22591. source: "./media/characters/shin-pikachu/hand.svg"
  22592. }
  22593. },
  22594. foot: {
  22595. height: math.unit(1.1, "feet"),
  22596. name: "Foot",
  22597. image: {
  22598. source: "./media/characters/shin-pikachu/foot.svg"
  22599. }
  22600. },
  22601. collar: {
  22602. height: math.unit(0.386, "feet"),
  22603. name: "Collar",
  22604. image: {
  22605. source: "./media/characters/shin-pikachu/collar.svg"
  22606. }
  22607. },
  22608. },
  22609. [
  22610. {
  22611. name: "Smallest",
  22612. height: math.unit(0.5, "inches")
  22613. },
  22614. {
  22615. name: "Micro",
  22616. height: math.unit(6, "inches")
  22617. },
  22618. {
  22619. name: "Normal",
  22620. height: math.unit(6, "feet"),
  22621. default: true
  22622. },
  22623. {
  22624. name: "Macro",
  22625. height: math.unit(150, "feet")
  22626. },
  22627. ]
  22628. ))
  22629. characterMakers.push(() => makeCharacter(
  22630. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22631. {
  22632. front: {
  22633. height: math.unit(28, "feet"),
  22634. weight: math.unit(10500, "lb"),
  22635. name: "Front",
  22636. image: {
  22637. source: "./media/characters/kayda/front.svg",
  22638. extra: 1536 / 1428,
  22639. bottom: 68.7 / 1603
  22640. }
  22641. },
  22642. back: {
  22643. height: math.unit(28, "feet"),
  22644. weight: math.unit(10500, "lb"),
  22645. name: "Back",
  22646. image: {
  22647. source: "./media/characters/kayda/back.svg",
  22648. extra: 1557 / 1464,
  22649. bottom: 39.5 / 1597.49
  22650. }
  22651. },
  22652. dick: {
  22653. height: math.unit(3.858, "feet"),
  22654. name: "Dick",
  22655. image: {
  22656. source: "./media/characters/kayda/dick.svg"
  22657. }
  22658. },
  22659. },
  22660. [
  22661. {
  22662. name: "Macro",
  22663. height: math.unit(28, "feet"),
  22664. default: true
  22665. },
  22666. ]
  22667. ))
  22668. characterMakers.push(() => makeCharacter(
  22669. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22670. {
  22671. front: {
  22672. height: math.unit(10 + 11 / 12, "feet"),
  22673. weight: math.unit(1400, "lb"),
  22674. name: "Front",
  22675. image: {
  22676. source: "./media/characters/brian/front.svg",
  22677. extra: 737 / 692,
  22678. bottom: 55.4 / 785
  22679. }
  22680. },
  22681. },
  22682. [
  22683. {
  22684. name: "Normal",
  22685. height: math.unit(10 + 11 / 12, "feet"),
  22686. default: true
  22687. },
  22688. ]
  22689. ))
  22690. characterMakers.push(() => makeCharacter(
  22691. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  22692. {
  22693. front: {
  22694. height: math.unit(5 + 8 / 12, "feet"),
  22695. weight: math.unit(140, "lb"),
  22696. name: "Front",
  22697. image: {
  22698. source: "./media/characters/khemri/front.svg",
  22699. extra: 4780 / 4059,
  22700. bottom: 80.1 / 4859.25
  22701. }
  22702. },
  22703. },
  22704. [
  22705. {
  22706. name: "Micro",
  22707. height: math.unit(6, "inches")
  22708. },
  22709. {
  22710. name: "Normal",
  22711. height: math.unit(5 + 8 / 12, "feet"),
  22712. default: true
  22713. },
  22714. ]
  22715. ))
  22716. characterMakers.push(() => makeCharacter(
  22717. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  22718. {
  22719. front: {
  22720. height: math.unit(13, "feet"),
  22721. weight: math.unit(1700, "lb"),
  22722. name: "Front",
  22723. image: {
  22724. source: "./media/characters/felix-braveheart/front.svg",
  22725. extra: 1222 / 1157,
  22726. bottom: 53.2 / 1280
  22727. }
  22728. },
  22729. back: {
  22730. height: math.unit(13, "feet"),
  22731. weight: math.unit(1700, "lb"),
  22732. name: "Back",
  22733. image: {
  22734. source: "./media/characters/felix-braveheart/back.svg",
  22735. extra: 1277 / 1203,
  22736. bottom: 50.2 / 1327
  22737. }
  22738. },
  22739. feral: {
  22740. height: math.unit(6, "feet"),
  22741. weight: math.unit(400, "lb"),
  22742. name: "Feral",
  22743. image: {
  22744. source: "./media/characters/felix-braveheart/feral.svg",
  22745. extra: 682 / 625,
  22746. bottom: 6.9 / 688
  22747. }
  22748. },
  22749. },
  22750. [
  22751. {
  22752. name: "Normal",
  22753. height: math.unit(13, "feet"),
  22754. default: true
  22755. },
  22756. ]
  22757. ))
  22758. characterMakers.push(() => makeCharacter(
  22759. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  22760. {
  22761. side: {
  22762. height: math.unit(5 + 11 / 12, "feet"),
  22763. weight: math.unit(1400, "lb"),
  22764. name: "Side",
  22765. image: {
  22766. source: "./media/characters/shadow-blade/side.svg",
  22767. extra: 1726 / 1267,
  22768. bottom: 58.4 / 1785
  22769. }
  22770. },
  22771. },
  22772. [
  22773. {
  22774. name: "Normal",
  22775. height: math.unit(5 + 11 / 12, "feet"),
  22776. default: true
  22777. },
  22778. ]
  22779. ))
  22780. characterMakers.push(() => makeCharacter(
  22781. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  22782. {
  22783. front: {
  22784. height: math.unit(1 + 6 / 12, "feet"),
  22785. weight: math.unit(25, "lb"),
  22786. name: "Front",
  22787. image: {
  22788. source: "./media/characters/karla-halldor/front.svg",
  22789. extra: 1459 / 1383,
  22790. bottom: 12 / 1472
  22791. }
  22792. },
  22793. },
  22794. [
  22795. {
  22796. name: "Normal",
  22797. height: math.unit(1 + 6 / 12, "feet"),
  22798. default: true
  22799. },
  22800. ]
  22801. ))
  22802. characterMakers.push(() => makeCharacter(
  22803. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  22804. {
  22805. front: {
  22806. height: math.unit(6 + 2 / 12, "feet"),
  22807. weight: math.unit(160, "lb"),
  22808. name: "Front",
  22809. image: {
  22810. source: "./media/characters/ariam/front.svg",
  22811. extra: 714 / 617,
  22812. bottom: 23.4 / 737,
  22813. }
  22814. },
  22815. squatting: {
  22816. height: math.unit(4.1, "feet"),
  22817. weight: math.unit(160, "lb"),
  22818. name: "Squatting",
  22819. image: {
  22820. source: "./media/characters/ariam/squatting.svg",
  22821. extra: 2617 / 2112,
  22822. bottom: 61.2 / 2681,
  22823. }
  22824. },
  22825. },
  22826. [
  22827. {
  22828. name: "Normal",
  22829. height: math.unit(6 + 2 / 12, "feet"),
  22830. default: true
  22831. },
  22832. {
  22833. name: "Normal+",
  22834. height: math.unit(4, "meters")
  22835. },
  22836. {
  22837. name: "Macro",
  22838. height: math.unit(50, "meters")
  22839. },
  22840. {
  22841. name: "Macro+",
  22842. height: math.unit(100, "meters")
  22843. },
  22844. {
  22845. name: "Megamacro",
  22846. height: math.unit(20, "km")
  22847. },
  22848. ]
  22849. ))
  22850. characterMakers.push(() => makeCharacter(
  22851. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  22852. {
  22853. front: {
  22854. height: math.unit(1.67, "meters"),
  22855. weight: math.unit(140, "lb"),
  22856. name: "Front",
  22857. image: {
  22858. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  22859. extra: 438 / 410,
  22860. bottom: 0.75 / 439
  22861. }
  22862. },
  22863. },
  22864. [
  22865. {
  22866. name: "Shrunken",
  22867. height: math.unit(7.6, "cm")
  22868. },
  22869. {
  22870. name: "Human Scale",
  22871. height: math.unit(1.67, "meters")
  22872. },
  22873. {
  22874. name: "Wolxi Scale",
  22875. height: math.unit(36.7, "meters"),
  22876. default: true
  22877. },
  22878. ]
  22879. ))
  22880. characterMakers.push(() => makeCharacter(
  22881. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  22882. {
  22883. front: {
  22884. height: math.unit(1.73, "meters"),
  22885. weight: math.unit(240, "lb"),
  22886. name: "Front",
  22887. image: {
  22888. source: "./media/characters/izue-two-mothers/front.svg",
  22889. extra: 469 / 437,
  22890. bottom: 1.24 / 470.6
  22891. }
  22892. },
  22893. },
  22894. [
  22895. {
  22896. name: "Shrunken",
  22897. height: math.unit(7.86, "cm")
  22898. },
  22899. {
  22900. name: "Human Scale",
  22901. height: math.unit(1.73, "meters")
  22902. },
  22903. {
  22904. name: "Wolxi Scale",
  22905. height: math.unit(38, "meters"),
  22906. default: true
  22907. },
  22908. ]
  22909. ))
  22910. characterMakers.push(() => makeCharacter(
  22911. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  22912. {
  22913. front: {
  22914. height: math.unit(1.55, "meters"),
  22915. weight: math.unit(120, "lb"),
  22916. name: "Front",
  22917. image: {
  22918. source: "./media/characters/teeku-love-shack/front.svg",
  22919. extra: 387 / 362,
  22920. bottom: 1.51 / 388
  22921. }
  22922. },
  22923. },
  22924. [
  22925. {
  22926. name: "Shrunken",
  22927. height: math.unit(7, "cm")
  22928. },
  22929. {
  22930. name: "Human Scale",
  22931. height: math.unit(1.55, "meters")
  22932. },
  22933. {
  22934. name: "Wolxi Scale",
  22935. height: math.unit(34.1, "meters"),
  22936. default: true
  22937. },
  22938. ]
  22939. ))
  22940. characterMakers.push(() => makeCharacter(
  22941. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  22942. {
  22943. front: {
  22944. height: math.unit(1.83, "meters"),
  22945. weight: math.unit(135, "lb"),
  22946. name: "Front",
  22947. image: {
  22948. source: "./media/characters/dejma-the-red/front.svg",
  22949. extra: 480 / 458,
  22950. bottom: 1.8 / 482
  22951. }
  22952. },
  22953. },
  22954. [
  22955. {
  22956. name: "Shrunken",
  22957. height: math.unit(8.3, "cm")
  22958. },
  22959. {
  22960. name: "Human Scale",
  22961. height: math.unit(1.83, "meters")
  22962. },
  22963. {
  22964. name: "Wolxi Scale",
  22965. height: math.unit(40, "meters"),
  22966. default: true
  22967. },
  22968. ]
  22969. ))
  22970. characterMakers.push(() => makeCharacter(
  22971. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  22972. {
  22973. front: {
  22974. height: math.unit(1.78, "meters"),
  22975. weight: math.unit(65, "kg"),
  22976. name: "Front",
  22977. image: {
  22978. source: "./media/characters/aki/front.svg",
  22979. extra: 452 / 415
  22980. }
  22981. },
  22982. frontNsfw: {
  22983. height: math.unit(1.78, "meters"),
  22984. weight: math.unit(65, "kg"),
  22985. name: "Front (NSFW)",
  22986. image: {
  22987. source: "./media/characters/aki/front-nsfw.svg",
  22988. extra: 452 / 415
  22989. }
  22990. },
  22991. back: {
  22992. height: math.unit(1.78, "meters"),
  22993. weight: math.unit(65, "kg"),
  22994. name: "Back",
  22995. image: {
  22996. source: "./media/characters/aki/back.svg",
  22997. extra: 452 / 415
  22998. }
  22999. },
  23000. rump: {
  23001. height: math.unit(2.05, "feet"),
  23002. name: "Rump",
  23003. image: {
  23004. source: "./media/characters/aki/rump.svg"
  23005. }
  23006. },
  23007. dick: {
  23008. height: math.unit(0.95, "feet"),
  23009. name: "Dick",
  23010. image: {
  23011. source: "./media/characters/aki/dick.svg"
  23012. }
  23013. },
  23014. },
  23015. [
  23016. {
  23017. name: "Micro",
  23018. height: math.unit(15, "cm")
  23019. },
  23020. {
  23021. name: "Normal",
  23022. height: math.unit(178, "cm"),
  23023. default: true
  23024. },
  23025. {
  23026. name: "Macro",
  23027. height: math.unit(214, "m")
  23028. },
  23029. {
  23030. name: "Macro+",
  23031. height: math.unit(534, "m")
  23032. },
  23033. ]
  23034. ))
  23035. characterMakers.push(() => makeCharacter(
  23036. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23037. {
  23038. front: {
  23039. height: math.unit(5 + 5 / 12, "feet"),
  23040. weight: math.unit(120, "lb"),
  23041. name: "Front",
  23042. image: {
  23043. source: "./media/characters/ari/front.svg",
  23044. extra: 714.5 / 682,
  23045. bottom: 8 / 722.5
  23046. }
  23047. },
  23048. },
  23049. [
  23050. {
  23051. name: "Normal",
  23052. height: math.unit(5 + 5 / 12, "feet")
  23053. },
  23054. {
  23055. name: "Macro",
  23056. height: math.unit(100, "feet"),
  23057. default: true
  23058. },
  23059. {
  23060. name: "Megamacro",
  23061. height: math.unit(100, "miles")
  23062. },
  23063. {
  23064. name: "Gigamacro",
  23065. height: math.unit(80000, "miles")
  23066. },
  23067. ]
  23068. ))
  23069. characterMakers.push(() => makeCharacter(
  23070. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23071. {
  23072. side: {
  23073. height: math.unit(9, "feet"),
  23074. weight: math.unit(400, "kg"),
  23075. name: "Side",
  23076. image: {
  23077. source: "./media/characters/bolt/side.svg",
  23078. extra: 1126 / 896,
  23079. bottom: 60 / 1187.3,
  23080. }
  23081. },
  23082. },
  23083. [
  23084. {
  23085. name: "Micro",
  23086. height: math.unit(5, "inches")
  23087. },
  23088. {
  23089. name: "Normal",
  23090. height: math.unit(9, "feet"),
  23091. default: true
  23092. },
  23093. {
  23094. name: "Macro",
  23095. height: math.unit(700, "feet")
  23096. },
  23097. {
  23098. name: "Max Size",
  23099. height: math.unit(1.52e22, "yottameters")
  23100. },
  23101. ]
  23102. ))
  23103. characterMakers.push(() => makeCharacter(
  23104. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23105. {
  23106. front: {
  23107. height: math.unit(4.53, "meters"),
  23108. weight: math.unit(3, "tons"),
  23109. name: "Front",
  23110. image: {
  23111. source: "./media/characters/draekon-sylviar/front.svg",
  23112. extra: 1228 / 1068,
  23113. bottom: 41 / 1270
  23114. }
  23115. },
  23116. tail: {
  23117. height: math.unit(1.772, "meter"),
  23118. name: "Tail",
  23119. image: {
  23120. source: "./media/characters/draekon-sylviar/tail.svg"
  23121. }
  23122. },
  23123. head: {
  23124. height: math.unit(1.331, "meter"),
  23125. name: "Head",
  23126. image: {
  23127. source: "./media/characters/draekon-sylviar/head.svg"
  23128. }
  23129. },
  23130. hand: {
  23131. height: math.unit(0.564, "meter"),
  23132. name: "Hand",
  23133. image: {
  23134. source: "./media/characters/draekon-sylviar/hand.svg"
  23135. }
  23136. },
  23137. foot: {
  23138. height: math.unit(0.621, "meter"),
  23139. name: "Foot",
  23140. image: {
  23141. source: "./media/characters/draekon-sylviar/foot.svg",
  23142. bottom: 32 / 324
  23143. }
  23144. },
  23145. dick: {
  23146. height: math.unit(61, "cm"),
  23147. name: "Dick",
  23148. image: {
  23149. source: "./media/characters/draekon-sylviar/dick.svg"
  23150. }
  23151. },
  23152. dickseparated: {
  23153. height: math.unit(61, "cm"),
  23154. name: "Dick-separated",
  23155. image: {
  23156. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23157. }
  23158. },
  23159. },
  23160. [
  23161. {
  23162. name: "Small",
  23163. height: math.unit(4.53 / 2, "meters"),
  23164. default: true
  23165. },
  23166. {
  23167. name: "Normal",
  23168. height: math.unit(4.53, "meters"),
  23169. default: true
  23170. },
  23171. {
  23172. name: "Large",
  23173. height: math.unit(4.53 * 2, "meters"),
  23174. },
  23175. ]
  23176. ))
  23177. characterMakers.push(() => makeCharacter(
  23178. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23179. {
  23180. front: {
  23181. height: math.unit(6 + 2 / 12, "feet"),
  23182. weight: math.unit(180, "lb"),
  23183. name: "Front",
  23184. image: {
  23185. source: "./media/characters/brawler/front.svg",
  23186. extra: 3301 / 3027,
  23187. bottom: 138 / 3439
  23188. }
  23189. },
  23190. },
  23191. [
  23192. {
  23193. name: "Normal",
  23194. height: math.unit(6 + 2 / 12, "feet"),
  23195. default: true
  23196. },
  23197. ]
  23198. ))
  23199. characterMakers.push(() => makeCharacter(
  23200. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23201. {
  23202. front: {
  23203. height: math.unit(11, "feet"),
  23204. weight: math.unit(1000, "lb"),
  23205. name: "Front",
  23206. image: {
  23207. source: "./media/characters/alex/front.svg",
  23208. bottom: 44.5 / 620
  23209. }
  23210. },
  23211. },
  23212. [
  23213. {
  23214. name: "Micro",
  23215. height: math.unit(5, "inches")
  23216. },
  23217. {
  23218. name: "Normal",
  23219. height: math.unit(11, "feet"),
  23220. default: true
  23221. },
  23222. {
  23223. name: "Macro",
  23224. height: math.unit(9.5e9, "feet")
  23225. },
  23226. {
  23227. name: "Max Size",
  23228. height: math.unit(1.4e283, "yottameters")
  23229. },
  23230. ]
  23231. ))
  23232. characterMakers.push(() => makeCharacter(
  23233. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23234. {
  23235. female: {
  23236. height: math.unit(29.9, "m"),
  23237. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23238. name: "Female",
  23239. image: {
  23240. source: "./media/characters/zenari/female.svg",
  23241. extra: 3281.6 / 3217,
  23242. bottom: 72.2 / 3353
  23243. }
  23244. },
  23245. male: {
  23246. height: math.unit(27.7, "m"),
  23247. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23248. name: "Male",
  23249. image: {
  23250. source: "./media/characters/zenari/male.svg",
  23251. extra: 3008 / 2991,
  23252. bottom: 54.6 / 3069
  23253. }
  23254. },
  23255. },
  23256. [
  23257. {
  23258. name: "Macro",
  23259. height: math.unit(29.7, "meters"),
  23260. default: true
  23261. },
  23262. ]
  23263. ))
  23264. characterMakers.push(() => makeCharacter(
  23265. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23266. {
  23267. female: {
  23268. height: math.unit(23.8, "m"),
  23269. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23270. name: "Female",
  23271. image: {
  23272. source: "./media/characters/mactarian/female.svg",
  23273. extra: 2662 / 2569,
  23274. bottom: 73 / 2736
  23275. }
  23276. },
  23277. male: {
  23278. height: math.unit(23.8, "m"),
  23279. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23280. name: "Male",
  23281. image: {
  23282. source: "./media/characters/mactarian/male.svg",
  23283. extra: 2673 / 2600,
  23284. bottom: 76 / 2750
  23285. }
  23286. },
  23287. },
  23288. [
  23289. {
  23290. name: "Macro",
  23291. height: math.unit(23.8, "meters"),
  23292. default: true
  23293. },
  23294. ]
  23295. ))
  23296. characterMakers.push(() => makeCharacter(
  23297. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23298. {
  23299. female: {
  23300. height: math.unit(19.3, "m"),
  23301. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23302. name: "Female",
  23303. image: {
  23304. source: "./media/characters/umok/female.svg",
  23305. extra: 2186 / 2078,
  23306. bottom: 87 / 2277
  23307. }
  23308. },
  23309. male: {
  23310. height: math.unit(19.5, "m"),
  23311. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23312. name: "Male",
  23313. image: {
  23314. source: "./media/characters/umok/male.svg",
  23315. extra: 2233 / 2140,
  23316. bottom: 24.4 / 2258
  23317. }
  23318. },
  23319. },
  23320. [
  23321. {
  23322. name: "Macro",
  23323. height: math.unit(19.3, "meters"),
  23324. default: true
  23325. },
  23326. ]
  23327. ))
  23328. characterMakers.push(() => makeCharacter(
  23329. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23330. {
  23331. female: {
  23332. height: math.unit(26.15, "m"),
  23333. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23334. name: "Female",
  23335. image: {
  23336. source: "./media/characters/joraxian/female.svg",
  23337. extra: 2912 / 2824,
  23338. bottom: 36 / 2956
  23339. }
  23340. },
  23341. male: {
  23342. height: math.unit(25.4, "m"),
  23343. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23344. name: "Male",
  23345. image: {
  23346. source: "./media/characters/joraxian/male.svg",
  23347. extra: 2877 / 2721,
  23348. bottom: 82 / 2967
  23349. }
  23350. },
  23351. },
  23352. [
  23353. {
  23354. name: "Macro",
  23355. height: math.unit(26.15, "meters"),
  23356. default: true
  23357. },
  23358. ]
  23359. ))
  23360. characterMakers.push(() => makeCharacter(
  23361. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23362. {
  23363. female: {
  23364. height: math.unit(21.6, "m"),
  23365. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23366. name: "Female",
  23367. image: {
  23368. source: "./media/characters/sthara/female.svg",
  23369. extra: 2516 / 2347,
  23370. bottom: 21.5 / 2537
  23371. }
  23372. },
  23373. male: {
  23374. height: math.unit(24, "m"),
  23375. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23376. name: "Male",
  23377. image: {
  23378. source: "./media/characters/sthara/male.svg",
  23379. extra: 2732 / 2607,
  23380. bottom: 23 / 2732
  23381. }
  23382. },
  23383. },
  23384. [
  23385. {
  23386. name: "Macro",
  23387. height: math.unit(21.6, "meters"),
  23388. default: true
  23389. },
  23390. ]
  23391. ))
  23392. characterMakers.push(() => makeCharacter(
  23393. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23394. {
  23395. front: {
  23396. height: math.unit(6 + 4 / 12, "feet"),
  23397. weight: math.unit(175, "lb"),
  23398. name: "Front",
  23399. image: {
  23400. source: "./media/characters/luka-bryzant/front.svg",
  23401. extra: 311 / 289,
  23402. bottom: 4 / 315
  23403. }
  23404. },
  23405. back: {
  23406. height: math.unit(6 + 4 / 12, "feet"),
  23407. weight: math.unit(175, "lb"),
  23408. name: "Back",
  23409. image: {
  23410. source: "./media/characters/luka-bryzant/back.svg",
  23411. extra: 311 / 289,
  23412. bottom: 3.8 / 313.7
  23413. }
  23414. },
  23415. },
  23416. [
  23417. {
  23418. name: "Micro",
  23419. height: math.unit(10, "inches")
  23420. },
  23421. {
  23422. name: "Normal",
  23423. height: math.unit(6 + 4 / 12, "feet"),
  23424. default: true
  23425. },
  23426. {
  23427. name: "Large",
  23428. height: math.unit(12, "feet")
  23429. },
  23430. ]
  23431. ))
  23432. characterMakers.push(() => makeCharacter(
  23433. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23434. {
  23435. front: {
  23436. height: math.unit(5 + 7 / 12, "feet"),
  23437. weight: math.unit(185, "lb"),
  23438. name: "Front",
  23439. image: {
  23440. source: "./media/characters/aman-aquila/front.svg",
  23441. extra: 1013 / 976,
  23442. bottom: 45.6 / 1057
  23443. }
  23444. },
  23445. side: {
  23446. height: math.unit(5 + 7 / 12, "feet"),
  23447. weight: math.unit(185, "lb"),
  23448. name: "Side",
  23449. image: {
  23450. source: "./media/characters/aman-aquila/side.svg",
  23451. extra: 1054 / 1011,
  23452. bottom: 15 / 1070
  23453. }
  23454. },
  23455. back: {
  23456. height: math.unit(5 + 7 / 12, "feet"),
  23457. weight: math.unit(185, "lb"),
  23458. name: "Back",
  23459. image: {
  23460. source: "./media/characters/aman-aquila/back.svg",
  23461. extra: 1026 / 970,
  23462. bottom: 12 / 1039
  23463. }
  23464. },
  23465. head: {
  23466. height: math.unit(1.211, "feet"),
  23467. name: "Head",
  23468. image: {
  23469. source: "./media/characters/aman-aquila/head.svg",
  23470. }
  23471. },
  23472. },
  23473. [
  23474. {
  23475. name: "Minimicro",
  23476. height: math.unit(0.057, "inches")
  23477. },
  23478. {
  23479. name: "Micro",
  23480. height: math.unit(7, "inches")
  23481. },
  23482. {
  23483. name: "Mini",
  23484. height: math.unit(3 + 7 / 12, "feet")
  23485. },
  23486. {
  23487. name: "Normal",
  23488. height: math.unit(5 + 7 / 12, "feet"),
  23489. default: true
  23490. },
  23491. {
  23492. name: "Macro",
  23493. height: math.unit(157 + 7 / 12, "feet")
  23494. },
  23495. {
  23496. name: "Megamacro",
  23497. height: math.unit(1557 + 7 / 12, "feet")
  23498. },
  23499. {
  23500. name: "Gigamacro",
  23501. height: math.unit(15557 + 7 / 12, "feet")
  23502. },
  23503. ]
  23504. ))
  23505. characterMakers.push(() => makeCharacter(
  23506. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23507. {
  23508. front: {
  23509. height: math.unit(3 + 2 / 12, "inches"),
  23510. weight: math.unit(0.3, "ounces"),
  23511. name: "Front",
  23512. image: {
  23513. source: "./media/characters/hiphae/front.svg",
  23514. extra: 1931 / 1683,
  23515. bottom: 24 / 1955
  23516. }
  23517. },
  23518. },
  23519. [
  23520. {
  23521. name: "Normal",
  23522. height: math.unit(3 + 1 / 2, "inches"),
  23523. default: true
  23524. },
  23525. ]
  23526. ))
  23527. characterMakers.push(() => makeCharacter(
  23528. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23529. {
  23530. front: {
  23531. height: math.unit(5 + 10 / 12, "feet"),
  23532. weight: math.unit(165, "lb"),
  23533. name: "Front",
  23534. image: {
  23535. source: "./media/characters/nicky/front.svg",
  23536. extra: 3144 / 2886,
  23537. bottom: 45.6 / 3192
  23538. }
  23539. },
  23540. back: {
  23541. height: math.unit(5 + 10 / 12, "feet"),
  23542. weight: math.unit(165, "lb"),
  23543. name: "Back",
  23544. image: {
  23545. source: "./media/characters/nicky/back.svg",
  23546. extra: 3055 / 2804,
  23547. bottom: 28.4 / 3087
  23548. }
  23549. },
  23550. frontclothed: {
  23551. height: math.unit(5 + 10 / 12, "feet"),
  23552. weight: math.unit(165, "lb"),
  23553. name: "Front-clothed",
  23554. image: {
  23555. source: "./media/characters/nicky/front-clothed.svg",
  23556. extra: 3184.9 / 2926.9,
  23557. bottom: 86.5 / 3239.9
  23558. }
  23559. },
  23560. foot: {
  23561. height: math.unit(1.16, "feet"),
  23562. name: "Foot",
  23563. image: {
  23564. source: "./media/characters/nicky/foot.svg"
  23565. }
  23566. },
  23567. feet: {
  23568. height: math.unit(1.34, "feet"),
  23569. name: "Feet",
  23570. image: {
  23571. source: "./media/characters/nicky/feet.svg"
  23572. }
  23573. },
  23574. maw: {
  23575. height: math.unit(0.9, "feet"),
  23576. name: "Maw",
  23577. image: {
  23578. source: "./media/characters/nicky/maw.svg"
  23579. }
  23580. },
  23581. },
  23582. [
  23583. {
  23584. name: "Normal",
  23585. height: math.unit(5 + 10 / 12, "feet"),
  23586. default: true
  23587. },
  23588. {
  23589. name: "Macro",
  23590. height: math.unit(60, "feet")
  23591. },
  23592. {
  23593. name: "Megamacro",
  23594. height: math.unit(1, "mile")
  23595. },
  23596. ]
  23597. ))
  23598. characterMakers.push(() => makeCharacter(
  23599. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23600. {
  23601. side: {
  23602. height: math.unit(10, "feet"),
  23603. weight: math.unit(600, "lb"),
  23604. name: "Side",
  23605. image: {
  23606. source: "./media/characters/blair/side.svg",
  23607. bottom: 16.6 / 475,
  23608. extra: 458 / 431
  23609. }
  23610. },
  23611. },
  23612. [
  23613. {
  23614. name: "Micro",
  23615. height: math.unit(8, "inches")
  23616. },
  23617. {
  23618. name: "Normal",
  23619. height: math.unit(10, "feet"),
  23620. default: true
  23621. },
  23622. {
  23623. name: "Macro",
  23624. height: math.unit(180, "feet")
  23625. },
  23626. ]
  23627. ))
  23628. characterMakers.push(() => makeCharacter(
  23629. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23630. {
  23631. front: {
  23632. height: math.unit(5 + 4 / 12, "feet"),
  23633. weight: math.unit(125, "lb"),
  23634. name: "Front",
  23635. image: {
  23636. source: "./media/characters/fisher/front.svg",
  23637. extra: 444 / 390,
  23638. bottom: 2 / 444.8
  23639. }
  23640. },
  23641. },
  23642. [
  23643. {
  23644. name: "Micro",
  23645. height: math.unit(4, "inches")
  23646. },
  23647. {
  23648. name: "Normal",
  23649. height: math.unit(5 + 4 / 12, "feet"),
  23650. default: true
  23651. },
  23652. {
  23653. name: "Macro",
  23654. height: math.unit(100, "feet")
  23655. },
  23656. ]
  23657. ))
  23658. characterMakers.push(() => makeCharacter(
  23659. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23660. {
  23661. front: {
  23662. height: math.unit(6.71, "feet"),
  23663. weight: math.unit(200, "lb"),
  23664. capacity: math.unit(1000000, "people"),
  23665. name: "Front",
  23666. image: {
  23667. source: "./media/characters/gliss/front.svg",
  23668. extra: 2347 / 2231,
  23669. bottom: 113 / 2462
  23670. }
  23671. },
  23672. hammerspaceSize: {
  23673. height: math.unit(6.71 * 717, "feet"),
  23674. weight: math.unit(200, "lb"),
  23675. capacity: math.unit(1000000, "people"),
  23676. name: "Hammerspace Size",
  23677. image: {
  23678. source: "./media/characters/gliss/front.svg",
  23679. extra: 2347 / 2231,
  23680. bottom: 113 / 2462
  23681. }
  23682. },
  23683. },
  23684. [
  23685. {
  23686. name: "Normal",
  23687. height: math.unit(6.71, "feet"),
  23688. default: true
  23689. },
  23690. ]
  23691. ))
  23692. characterMakers.push(() => makeCharacter(
  23693. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  23694. {
  23695. side: {
  23696. height: math.unit(1.44, "m"),
  23697. weight: math.unit(80, "kg"),
  23698. name: "Side",
  23699. image: {
  23700. source: "./media/characters/dune-anderson/side.svg",
  23701. bottom: 49 / 1426
  23702. }
  23703. },
  23704. },
  23705. [
  23706. {
  23707. name: "Wolf-sized",
  23708. height: math.unit(1.44, "meters")
  23709. },
  23710. {
  23711. name: "Normal",
  23712. height: math.unit(5.05, "meters"),
  23713. default: true
  23714. },
  23715. {
  23716. name: "Big",
  23717. height: math.unit(14.4, "meters")
  23718. },
  23719. {
  23720. name: "Huge",
  23721. height: math.unit(144, "meters")
  23722. },
  23723. ]
  23724. ))
  23725. characterMakers.push(() => makeCharacter(
  23726. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  23727. {
  23728. front: {
  23729. height: math.unit(7, "feet"),
  23730. weight: math.unit(425, "lb"),
  23731. name: "Front",
  23732. image: {
  23733. source: "./media/characters/hind/front.svg",
  23734. extra: 2091 / 1860,
  23735. bottom: 129 / 2220
  23736. }
  23737. },
  23738. back: {
  23739. height: math.unit(7, "feet"),
  23740. weight: math.unit(425, "lb"),
  23741. name: "Back",
  23742. image: {
  23743. source: "./media/characters/hind/back.svg",
  23744. extra: 2091 / 1860,
  23745. bottom: 24.6 / 2309
  23746. }
  23747. },
  23748. tail: {
  23749. height: math.unit(2.8, "feet"),
  23750. name: "Tail",
  23751. image: {
  23752. source: "./media/characters/hind/tail.svg"
  23753. }
  23754. },
  23755. head: {
  23756. height: math.unit(2.55, "feet"),
  23757. name: "Head",
  23758. image: {
  23759. source: "./media/characters/hind/head.svg"
  23760. }
  23761. },
  23762. },
  23763. [
  23764. {
  23765. name: "XS",
  23766. height: math.unit(0.7, "feet")
  23767. },
  23768. {
  23769. name: "Normal",
  23770. height: math.unit(7, "feet"),
  23771. default: true
  23772. },
  23773. {
  23774. name: "XL",
  23775. height: math.unit(70, "feet")
  23776. },
  23777. ]
  23778. ))
  23779. characterMakers.push(() => makeCharacter(
  23780. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  23781. {
  23782. front: {
  23783. height: math.unit(6, "feet"),
  23784. weight: math.unit(150, "lb"),
  23785. name: "Front",
  23786. image: {
  23787. source: "./media/characters/dylan-skaven/front.svg",
  23788. extra: 2318 / 2063,
  23789. bottom: 93.4 / 2410
  23790. }
  23791. },
  23792. },
  23793. [
  23794. {
  23795. name: "Nano",
  23796. height: math.unit(1, "mm")
  23797. },
  23798. {
  23799. name: "Micro",
  23800. height: math.unit(1, "cm")
  23801. },
  23802. {
  23803. name: "Normal",
  23804. height: math.unit(2.1, "meters"),
  23805. default: true
  23806. },
  23807. ]
  23808. ))
  23809. characterMakers.push(() => makeCharacter(
  23810. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  23811. {
  23812. front: {
  23813. height: math.unit(7 + 5 / 12, "feet"),
  23814. weight: math.unit(357, "lb"),
  23815. name: "Front",
  23816. image: {
  23817. source: "./media/characters/solex-draconov/front.svg",
  23818. extra: 1993 / 1865,
  23819. bottom: 117 / 2111
  23820. }
  23821. },
  23822. },
  23823. [
  23824. {
  23825. name: "Natural Height",
  23826. height: math.unit(7 + 5 / 12, "feet"),
  23827. default: true
  23828. },
  23829. {
  23830. name: "Macro",
  23831. height: math.unit(350, "feet")
  23832. },
  23833. {
  23834. name: "Macro+",
  23835. height: math.unit(1000, "feet")
  23836. },
  23837. {
  23838. name: "Megamacro",
  23839. height: math.unit(20, "km")
  23840. },
  23841. {
  23842. name: "Megamacro+",
  23843. height: math.unit(1000, "km")
  23844. },
  23845. {
  23846. name: "Gigamacro",
  23847. height: math.unit(2.5, "Gm")
  23848. },
  23849. {
  23850. name: "Teramacro",
  23851. height: math.unit(15, "Tm")
  23852. },
  23853. {
  23854. name: "Galactic",
  23855. height: math.unit(30, "Zm")
  23856. },
  23857. {
  23858. name: "Universal",
  23859. height: math.unit(21000, "Ym")
  23860. },
  23861. {
  23862. name: "Omniversal",
  23863. height: math.unit(9.861e50, "Ym")
  23864. },
  23865. {
  23866. name: "Existential",
  23867. height: math.unit(1e300, "meters")
  23868. },
  23869. ]
  23870. ))
  23871. characterMakers.push(() => makeCharacter(
  23872. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  23873. {
  23874. side: {
  23875. height: math.unit(25, "feet"),
  23876. weight: math.unit(90000, "lb"),
  23877. name: "Side",
  23878. image: {
  23879. source: "./media/characters/mandarax/side.svg",
  23880. extra: 614 / 332,
  23881. bottom: 55 / 630
  23882. }
  23883. },
  23884. head: {
  23885. height: math.unit(11.4, "feet"),
  23886. name: "Head",
  23887. image: {
  23888. source: "./media/characters/mandarax/head.svg"
  23889. }
  23890. },
  23891. belly: {
  23892. height: math.unit(33, "feet"),
  23893. name: "Belly",
  23894. capacity: math.unit(500, "people"),
  23895. image: {
  23896. source: "./media/characters/mandarax/belly.svg"
  23897. }
  23898. },
  23899. dick: {
  23900. height: math.unit(8.46, "feet"),
  23901. name: "Dick",
  23902. image: {
  23903. source: "./media/characters/mandarax/dick.svg"
  23904. }
  23905. },
  23906. top: {
  23907. height: math.unit(28, "meters"),
  23908. name: "Top",
  23909. image: {
  23910. source: "./media/characters/mandarax/top.svg"
  23911. }
  23912. },
  23913. },
  23914. [
  23915. {
  23916. name: "Normal",
  23917. height: math.unit(25, "feet"),
  23918. default: true
  23919. },
  23920. ]
  23921. ))
  23922. characterMakers.push(() => makeCharacter(
  23923. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  23924. {
  23925. front: {
  23926. height: math.unit(5, "feet"),
  23927. weight: math.unit(90, "lb"),
  23928. name: "Front",
  23929. image: {
  23930. source: "./media/characters/pixil/front.svg",
  23931. extra: 2000 / 1618,
  23932. bottom: 12.3 / 2011
  23933. }
  23934. },
  23935. },
  23936. [
  23937. {
  23938. name: "Normal",
  23939. height: math.unit(5, "feet"),
  23940. default: true
  23941. },
  23942. {
  23943. name: "Megamacro",
  23944. height: math.unit(10, "miles"),
  23945. },
  23946. ]
  23947. ))
  23948. characterMakers.push(() => makeCharacter(
  23949. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  23950. {
  23951. front: {
  23952. height: math.unit(7 + 2 / 12, "feet"),
  23953. weight: math.unit(200, "lb"),
  23954. name: "Front",
  23955. image: {
  23956. source: "./media/characters/angel/front.svg",
  23957. extra: 1830 / 1737,
  23958. bottom: 22.6 / 1854,
  23959. }
  23960. },
  23961. },
  23962. [
  23963. {
  23964. name: "Normal",
  23965. height: math.unit(7 + 2 / 12, "feet"),
  23966. default: true
  23967. },
  23968. {
  23969. name: "Macro",
  23970. height: math.unit(1000, "feet")
  23971. },
  23972. {
  23973. name: "Megamacro",
  23974. height: math.unit(2, "miles")
  23975. },
  23976. {
  23977. name: "Gigamacro",
  23978. height: math.unit(20, "earths")
  23979. },
  23980. ]
  23981. ))
  23982. characterMakers.push(() => makeCharacter(
  23983. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  23984. {
  23985. front: {
  23986. height: math.unit(5, "feet"),
  23987. weight: math.unit(180, "lb"),
  23988. name: "Front",
  23989. image: {
  23990. source: "./media/characters/mekana/front.svg",
  23991. extra: 1671 / 1605,
  23992. bottom: 3.5 / 1691
  23993. }
  23994. },
  23995. side: {
  23996. height: math.unit(5, "feet"),
  23997. weight: math.unit(180, "lb"),
  23998. name: "Side",
  23999. image: {
  24000. source: "./media/characters/mekana/side.svg",
  24001. extra: 1671 / 1605,
  24002. bottom: 3.5 / 1691
  24003. }
  24004. },
  24005. back: {
  24006. height: math.unit(5, "feet"),
  24007. weight: math.unit(180, "lb"),
  24008. name: "Back",
  24009. image: {
  24010. source: "./media/characters/mekana/back.svg",
  24011. extra: 1671 / 1605,
  24012. bottom: 3.5 / 1691
  24013. }
  24014. },
  24015. },
  24016. [
  24017. {
  24018. name: "Normal",
  24019. height: math.unit(5, "feet"),
  24020. default: true
  24021. },
  24022. ]
  24023. ))
  24024. characterMakers.push(() => makeCharacter(
  24025. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24026. {
  24027. front: {
  24028. height: math.unit(4 + 6 / 12, "feet"),
  24029. weight: math.unit(80, "lb"),
  24030. name: "Front",
  24031. image: {
  24032. source: "./media/characters/pixie/front.svg",
  24033. extra: 1924 / 1825,
  24034. bottom: 22.4 / 1946
  24035. }
  24036. },
  24037. },
  24038. [
  24039. {
  24040. name: "Normal",
  24041. height: math.unit(4 + 6 / 12, "feet"),
  24042. default: true
  24043. },
  24044. {
  24045. name: "Macro",
  24046. height: math.unit(40, "feet")
  24047. },
  24048. ]
  24049. ))
  24050. characterMakers.push(() => makeCharacter(
  24051. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24052. {
  24053. front: {
  24054. height: math.unit(2.1, "meters"),
  24055. weight: math.unit(200, "lb"),
  24056. name: "Front",
  24057. image: {
  24058. source: "./media/characters/the-lascivious/front.svg",
  24059. extra: 1 / 0.893,
  24060. bottom: 3.5 / 573.7
  24061. }
  24062. },
  24063. },
  24064. [
  24065. {
  24066. name: "Human Scale",
  24067. height: math.unit(2.1, "meters")
  24068. },
  24069. {
  24070. name: "Wolxi Scale",
  24071. height: math.unit(46.2, "m"),
  24072. default: true
  24073. },
  24074. {
  24075. name: "Boinker of Buildings",
  24076. height: math.unit(10, "km")
  24077. },
  24078. {
  24079. name: "Shagger of Skyscrapers",
  24080. height: math.unit(40, "km")
  24081. },
  24082. {
  24083. name: "Banger of Boroughs",
  24084. height: math.unit(4000, "km")
  24085. },
  24086. {
  24087. name: "Screwer of States",
  24088. height: math.unit(100000, "km")
  24089. },
  24090. {
  24091. name: "Pounder of Planets",
  24092. height: math.unit(2000000, "km")
  24093. },
  24094. ]
  24095. ))
  24096. characterMakers.push(() => makeCharacter(
  24097. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24098. {
  24099. front: {
  24100. height: math.unit(6, "feet"),
  24101. weight: math.unit(150, "lb"),
  24102. name: "Front",
  24103. image: {
  24104. source: "./media/characters/aj/front.svg",
  24105. extra: 2039 / 1562,
  24106. bottom: 40 / 2079
  24107. }
  24108. },
  24109. },
  24110. [
  24111. {
  24112. name: "Normal",
  24113. height: math.unit(11 + 6 / 12, "feet"),
  24114. default: true
  24115. },
  24116. {
  24117. name: "Megamacro",
  24118. height: math.unit(60, "megameters")
  24119. },
  24120. ]
  24121. ))
  24122. characterMakers.push(() => makeCharacter(
  24123. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24124. {
  24125. side: {
  24126. height: math.unit(31 + 8/12, "feet"),
  24127. weight: math.unit(75000, "kg"),
  24128. name: "Side",
  24129. image: {
  24130. source: "./media/characters/koros/side.svg",
  24131. extra: 1442/1297,
  24132. bottom: 122.7/1562
  24133. }
  24134. },
  24135. dicksKingsCrown: {
  24136. height: math.unit(6, "feet"),
  24137. name: "Dicks (King's Crown)",
  24138. image: {
  24139. source: "./media/characters/koros/dicks-kings-crown.svg"
  24140. }
  24141. },
  24142. dicksTailSet: {
  24143. height: math.unit(3, "feet"),
  24144. name: "Dicks (Tail Set)",
  24145. image: {
  24146. source: "./media/characters/koros/dicks-tail-set.svg"
  24147. }
  24148. },
  24149. dickCumming: {
  24150. height: math.unit(7.98, "feet"),
  24151. name: "Dick (Cumming)",
  24152. image: {
  24153. source: "./media/characters/koros/dick-cumming.svg"
  24154. }
  24155. },
  24156. dicksBack: {
  24157. height: math.unit(5.9, "feet"),
  24158. name: "Dicks (Back)",
  24159. image: {
  24160. source: "./media/characters/koros/dicks-back.svg"
  24161. }
  24162. },
  24163. dicksFront: {
  24164. height: math.unit(3.72, "feet"),
  24165. name: "Dicks (Front)",
  24166. image: {
  24167. source: "./media/characters/koros/dicks-front.svg"
  24168. }
  24169. },
  24170. dicksPeeking: {
  24171. height: math.unit(3.0, "feet"),
  24172. name: "Dicks (Peeking)",
  24173. image: {
  24174. source: "./media/characters/koros/dicks-peeking.svg"
  24175. }
  24176. },
  24177. eye: {
  24178. height: math.unit(1.7, "feet"),
  24179. name: "Eye",
  24180. image: {
  24181. source: "./media/characters/koros/eye.svg"
  24182. }
  24183. },
  24184. headFront: {
  24185. height: math.unit(11.69, "feet"),
  24186. name: "Head (Front)",
  24187. image: {
  24188. source: "./media/characters/koros/head-front.svg"
  24189. }
  24190. },
  24191. headSide: {
  24192. height: math.unit(14, "feet"),
  24193. name: "Head (Side)",
  24194. image: {
  24195. source: "./media/characters/koros/head-side.svg"
  24196. }
  24197. },
  24198. leg: {
  24199. height: math.unit(17, "feet"),
  24200. name: "Leg",
  24201. image: {
  24202. source: "./media/characters/koros/leg.svg"
  24203. }
  24204. },
  24205. mawSide: {
  24206. height: math.unit(12.8, "feet"),
  24207. name: "Maw (Side)",
  24208. image: {
  24209. source: "./media/characters/koros/maw-side.svg"
  24210. }
  24211. },
  24212. mawSpitting: {
  24213. height: math.unit(17, "feet"),
  24214. name: "Maw (Spitting)",
  24215. image: {
  24216. source: "./media/characters/koros/maw-spitting.svg"
  24217. }
  24218. },
  24219. slit: {
  24220. height: math.unit(2.8, "feet"),
  24221. name: "Slit",
  24222. image: {
  24223. source: "./media/characters/koros/slit.svg"
  24224. }
  24225. },
  24226. stomach: {
  24227. height: math.unit(6.8, "feet"),
  24228. capacity: math.unit(20, "people"),
  24229. name: "Stomach",
  24230. image: {
  24231. source: "./media/characters/koros/stomach.svg"
  24232. }
  24233. },
  24234. wingspanBottom: {
  24235. height: math.unit(114, "feet"),
  24236. name: "Wingspan (Bottom)",
  24237. image: {
  24238. source: "./media/characters/koros/wingspan-bottom.svg"
  24239. }
  24240. },
  24241. wingspanTop: {
  24242. height: math.unit(104, "feet"),
  24243. name: "Wingspan (Top)",
  24244. image: {
  24245. source: "./media/characters/koros/wingspan-top.svg"
  24246. }
  24247. },
  24248. },
  24249. [
  24250. {
  24251. name: "Normal",
  24252. height: math.unit(31 + 8/12, "feet"),
  24253. default: true
  24254. },
  24255. ]
  24256. ))
  24257. characterMakers.push(() => makeCharacter(
  24258. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24259. {
  24260. front: {
  24261. height: math.unit(18 + 5/12, "feet"),
  24262. weight: math.unit(3750, "kg"),
  24263. name: "Front",
  24264. image: {
  24265. source: "./media/characters/vexx/front.svg",
  24266. extra: 426/396,
  24267. bottom: 31.5/458
  24268. }
  24269. },
  24270. maw: {
  24271. height: math.unit(6, "feet"),
  24272. name: "Maw",
  24273. image: {
  24274. source: "./media/characters/vexx/maw.svg"
  24275. }
  24276. },
  24277. },
  24278. [
  24279. {
  24280. name: "Normal",
  24281. height: math.unit(18 + 5/12, "feet"),
  24282. default: true
  24283. },
  24284. ]
  24285. ))
  24286. characterMakers.push(() => makeCharacter(
  24287. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24288. {
  24289. front: {
  24290. height: math.unit(17 + 6/12, "feet"),
  24291. weight: math.unit(150, "lb"),
  24292. name: "Front",
  24293. image: {
  24294. source: "./media/characters/baadra/front.svg",
  24295. extra: 3137/2890,
  24296. bottom: 168.4/3305
  24297. }
  24298. },
  24299. back: {
  24300. height: math.unit(17 + 6/12, "feet"),
  24301. weight: math.unit(150, "lb"),
  24302. name: "Back",
  24303. image: {
  24304. source: "./media/characters/baadra/back.svg",
  24305. extra: 3142/2890,
  24306. bottom: 220/3371
  24307. }
  24308. },
  24309. head: {
  24310. height: math.unit(5.45, "feet"),
  24311. name: "Head",
  24312. image: {
  24313. source: "./media/characters/baadra/head.svg"
  24314. }
  24315. },
  24316. headAngry: {
  24317. height: math.unit(4.95, "feet"),
  24318. name: "Head (Angry)",
  24319. image: {
  24320. source: "./media/characters/baadra/head-angry.svg"
  24321. }
  24322. },
  24323. headOpen: {
  24324. height: math.unit(6, "feet"),
  24325. name: "Head (Open)",
  24326. image: {
  24327. source: "./media/characters/baadra/head-open.svg"
  24328. }
  24329. },
  24330. },
  24331. [
  24332. {
  24333. name: "Normal",
  24334. height: math.unit(17 + 6/12, "feet"),
  24335. default: true
  24336. },
  24337. ]
  24338. ))
  24339. characterMakers.push(() => makeCharacter(
  24340. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24341. {
  24342. front: {
  24343. height: math.unit(7 + 3/12, "feet"),
  24344. weight: math.unit(180, "lb"),
  24345. name: "Front",
  24346. image: {
  24347. source: "./media/characters/juri/front.svg",
  24348. extra: 1401/1237,
  24349. bottom: 18.5/1418
  24350. }
  24351. },
  24352. side: {
  24353. height: math.unit(7 + 3/12, "feet"),
  24354. weight: math.unit(180, "lb"),
  24355. name: "Side",
  24356. image: {
  24357. source: "./media/characters/juri/side.svg",
  24358. extra: 1424/1242,
  24359. bottom: 18.5/1447
  24360. }
  24361. },
  24362. sitting: {
  24363. height: math.unit(6, "feet"),
  24364. weight: math.unit(180, "lb"),
  24365. name: "Sitting",
  24366. image: {
  24367. source: "./media/characters/juri/sitting.svg",
  24368. extra: 1270/1143,
  24369. bottom: 100/1343
  24370. }
  24371. },
  24372. back: {
  24373. height: math.unit(7 + 3/12, "feet"),
  24374. weight: math.unit(180, "lb"),
  24375. name: "Back",
  24376. image: {
  24377. source: "./media/characters/juri/back.svg",
  24378. extra: 1377/1240,
  24379. bottom: 23.7/1405
  24380. }
  24381. },
  24382. maw: {
  24383. height: math.unit(2.8, "feet"),
  24384. name: "Maw",
  24385. image: {
  24386. source: "./media/characters/juri/maw.svg"
  24387. }
  24388. },
  24389. stomach: {
  24390. height: math.unit(0.89, "feet"),
  24391. capacity: math.unit(4, "liters"),
  24392. name: "Stomach",
  24393. image: {
  24394. source: "./media/characters/juri/stomach.svg"
  24395. }
  24396. },
  24397. },
  24398. [
  24399. {
  24400. name: "Normal",
  24401. height: math.unit(7 + 3/12, "feet"),
  24402. default: true
  24403. },
  24404. ]
  24405. ))
  24406. characterMakers.push(() => makeCharacter(
  24407. { name: "Maxene Sita", species: ["fox"], tags: ["anthro"] },
  24408. {
  24409. fox: {
  24410. height: math.unit(5 + 6/12, "feet"),
  24411. weight: math.unit(140, "lb"),
  24412. name: "Fox",
  24413. image: {
  24414. source: "./media/characters/maxene-sita/fox.svg",
  24415. extra: 146/138,
  24416. bottom: 2.1/148.19
  24417. }
  24418. },
  24419. kitsune: {
  24420. height: math.unit(10, "feet"),
  24421. weight: math.unit(800, "lb"),
  24422. name: "Kitsune",
  24423. image: {
  24424. source: "./media/characters/maxene-sita/kitsune.svg",
  24425. extra: 185/176,
  24426. bottom: 4.7/189.9
  24427. }
  24428. },
  24429. },
  24430. [
  24431. {
  24432. name: "Normal",
  24433. height: math.unit(5 + 6/12, "feet"),
  24434. default: true
  24435. },
  24436. ]
  24437. ))
  24438. characterMakers.push(() => makeCharacter(
  24439. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24440. {
  24441. front: {
  24442. height: math.unit(3 + 4/12, "feet"),
  24443. weight: math.unit(70, "lb"),
  24444. name: "Front",
  24445. image: {
  24446. source: "./media/characters/maia/front.svg",
  24447. extra: 227/219.5,
  24448. bottom: 40 / 267
  24449. }
  24450. },
  24451. back: {
  24452. height: math.unit(3 + 4/12, "feet"),
  24453. weight: math.unit(70, "lb"),
  24454. name: "Back",
  24455. image: {
  24456. source: "./media/characters/maia/back.svg",
  24457. extra: 237/225
  24458. }
  24459. },
  24460. },
  24461. [
  24462. {
  24463. name: "Normal",
  24464. height: math.unit(3 + 4/12, "feet"),
  24465. default: true
  24466. },
  24467. ]
  24468. ))
  24469. characterMakers.push(() => makeCharacter(
  24470. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24471. {
  24472. front: {
  24473. height: math.unit(5 + 10/12, "feet"),
  24474. weight: math.unit(197, "lb"),
  24475. name: "Front",
  24476. image: {
  24477. source: "./media/characters/jabaro/front.svg",
  24478. extra: 225/216,
  24479. bottom: 5.06/230
  24480. }
  24481. },
  24482. back: {
  24483. height: math.unit(5 + 10/12, "feet"),
  24484. weight: math.unit(197, "lb"),
  24485. name: "Back",
  24486. image: {
  24487. source: "./media/characters/jabaro/back.svg",
  24488. extra: 225/219,
  24489. bottom: 1.9/227
  24490. }
  24491. },
  24492. },
  24493. [
  24494. {
  24495. name: "Normal",
  24496. height: math.unit(5 + 10/12, "feet"),
  24497. default: true
  24498. },
  24499. ]
  24500. ))
  24501. characterMakers.push(() => makeCharacter(
  24502. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24503. {
  24504. front: {
  24505. height: math.unit(5 + 8/12, "feet"),
  24506. weight: math.unit(139, "lb"),
  24507. name: "Front",
  24508. image: {
  24509. source: "./media/characters/risa/front.svg",
  24510. extra: 270/260,
  24511. bottom: 11.2/282
  24512. }
  24513. },
  24514. back: {
  24515. height: math.unit(5 + 8/12, "feet"),
  24516. weight: math.unit(139, "lb"),
  24517. name: "Back",
  24518. image: {
  24519. source: "./media/characters/risa/back.svg",
  24520. extra: 264/255,
  24521. bottom: 4/268
  24522. }
  24523. },
  24524. },
  24525. [
  24526. {
  24527. name: "Normal",
  24528. height: math.unit(5 + 8/12, "feet"),
  24529. default: true
  24530. },
  24531. ]
  24532. ))
  24533. characterMakers.push(() => makeCharacter(
  24534. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  24535. {
  24536. front: {
  24537. height: math.unit(2 + 11/12, "feet"),
  24538. weight: math.unit(30, "lb"),
  24539. name: "Front",
  24540. image: {
  24541. source: "./media/characters/weatley/front.svg",
  24542. bottom: 10.7/414,
  24543. extra: 403.5/362
  24544. }
  24545. },
  24546. back: {
  24547. height: math.unit(2 + 11/12, "feet"),
  24548. weight: math.unit(30, "lb"),
  24549. name: "Back",
  24550. image: {
  24551. source: "./media/characters/weatley/back.svg",
  24552. bottom: 10.7/414,
  24553. extra: 403.5/362
  24554. }
  24555. },
  24556. },
  24557. [
  24558. {
  24559. name: "Normal",
  24560. height: math.unit(2 + 11/12, "feet"),
  24561. default: true
  24562. },
  24563. ]
  24564. ))
  24565. characterMakers.push(() => makeCharacter(
  24566. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  24567. {
  24568. front: {
  24569. height: math.unit(5 + 2/12, "feet"),
  24570. weight: math.unit(50, "kg"),
  24571. name: "Front",
  24572. image: {
  24573. source: "./media/characters/mercury-crescent/front.svg",
  24574. extra: 1088/1033,
  24575. bottom: 18.9/1109
  24576. }
  24577. },
  24578. },
  24579. [
  24580. {
  24581. name: "Normal",
  24582. height: math.unit(5 + 2/12, "feet"),
  24583. default: true
  24584. },
  24585. ]
  24586. ))
  24587. characterMakers.push(() => makeCharacter(
  24588. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  24589. {
  24590. front: {
  24591. height: math.unit(2, "feet"),
  24592. weight: math.unit(15, "kg"),
  24593. name: "Front",
  24594. image: {
  24595. source: "./media/characters/diamond-jones/front.svg",
  24596. bottom: 16/568
  24597. }
  24598. },
  24599. },
  24600. [
  24601. {
  24602. name: "Normal",
  24603. height: math.unit(2, "feet"),
  24604. default: true
  24605. },
  24606. ]
  24607. ))
  24608. characterMakers.push(() => makeCharacter(
  24609. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  24610. {
  24611. front: {
  24612. height: math.unit(3, "feet"),
  24613. weight: math.unit(30, "kg"),
  24614. name: "Front",
  24615. image: {
  24616. source: "./media/characters/sweet-bit/front.svg",
  24617. extra: 675/567,
  24618. bottom: 27.7/703
  24619. }
  24620. },
  24621. },
  24622. [
  24623. {
  24624. name: "Normal",
  24625. height: math.unit(3, "feet"),
  24626. default: true
  24627. },
  24628. ]
  24629. ))
  24630. characterMakers.push(() => makeCharacter(
  24631. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  24632. {
  24633. side: {
  24634. height: math.unit(9.178, "feet"),
  24635. weight: math.unit(500, "lb"),
  24636. name: "Side",
  24637. image: {
  24638. source: "./media/characters/umbrazen/side.svg",
  24639. extra: 1730/1473,
  24640. bottom: 34.6/1765
  24641. }
  24642. },
  24643. },
  24644. [
  24645. {
  24646. name: "Normal",
  24647. height: math.unit(9.178, "feet"),
  24648. default: true
  24649. },
  24650. ]
  24651. ))
  24652. characterMakers.push(() => makeCharacter(
  24653. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  24654. {
  24655. front: {
  24656. height: math.unit(10, "feet"),
  24657. weight: math.unit(750, "lb"),
  24658. name: "Front",
  24659. image: {
  24660. source: "./media/characters/arlist/front.svg",
  24661. extra: 961/778,
  24662. bottom: 6.2/986
  24663. }
  24664. },
  24665. },
  24666. [
  24667. {
  24668. name: "Normal",
  24669. height: math.unit(10, "feet"),
  24670. default: true
  24671. },
  24672. ]
  24673. ))
  24674. characterMakers.push(() => makeCharacter(
  24675. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  24676. {
  24677. front: {
  24678. height: math.unit(5 + 1/12, "feet"),
  24679. weight: math.unit(110, "lb"),
  24680. name: "Front",
  24681. image: {
  24682. source: "./media/characters/aradel/front.svg",
  24683. extra: 324/303,
  24684. bottom: 3.6/329.4
  24685. }
  24686. },
  24687. },
  24688. [
  24689. {
  24690. name: "Normal",
  24691. height: math.unit(5 + 1/12, "feet"),
  24692. default: true
  24693. },
  24694. ]
  24695. ))
  24696. characterMakers.push(() => makeCharacter(
  24697. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  24698. {
  24699. front: {
  24700. height: math.unit(3 + 8/12, "feet"),
  24701. weight: math.unit(50, "lb"),
  24702. name: "Front",
  24703. image: {
  24704. source: "./media/characters/serryn/front.svg",
  24705. extra: 1792/1656,
  24706. bottom: 43.5/1840
  24707. }
  24708. },
  24709. },
  24710. [
  24711. {
  24712. name: "Normal",
  24713. height: math.unit(3 + 8/12, "feet"),
  24714. default: true
  24715. },
  24716. ]
  24717. ))
  24718. characterMakers.push(() => makeCharacter(
  24719. { name: "Xavier Thyme" },
  24720. {
  24721. front: {
  24722. height: math.unit(7 + 10/12, "feet"),
  24723. weight: math.unit(255, "lb"),
  24724. name: "Front",
  24725. image: {
  24726. source: "./media/characters/xavier-thyme/front.svg",
  24727. extra: 3733/3642,
  24728. bottom: 131/3869
  24729. }
  24730. },
  24731. frontRaven: {
  24732. height: math.unit(7 + 10/12, "feet"),
  24733. weight: math.unit(255, "lb"),
  24734. name: "Front (Raven)",
  24735. image: {
  24736. source: "./media/characters/xavier-thyme/front-raven.svg",
  24737. extra: 4385/3642,
  24738. bottom: 131/4517
  24739. }
  24740. },
  24741. },
  24742. [
  24743. {
  24744. name: "Normal",
  24745. height: math.unit(7 + 10/12, "feet"),
  24746. default: true
  24747. },
  24748. ]
  24749. ))
  24750. characterMakers.push(() => makeCharacter(
  24751. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  24752. {
  24753. front: {
  24754. height: math.unit(1.6, "m"),
  24755. weight: math.unit(50, "kg"),
  24756. name: "Front",
  24757. image: {
  24758. source: "./media/characters/kiki/front.svg",
  24759. extra: 4682/3610,
  24760. bottom: 115/4777
  24761. }
  24762. },
  24763. },
  24764. [
  24765. {
  24766. name: "Normal",
  24767. height: math.unit(1.6, "meters"),
  24768. default: true
  24769. },
  24770. ]
  24771. ))
  24772. characterMakers.push(() => makeCharacter(
  24773. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  24774. {
  24775. front: {
  24776. height: math.unit(50, "m"),
  24777. weight: math.unit(500, "tonnes"),
  24778. name: "Front",
  24779. image: {
  24780. source: "./media/characters/ryoko/front.svg",
  24781. extra: 4632/3926,
  24782. bottom: 193/4823
  24783. }
  24784. },
  24785. },
  24786. [
  24787. {
  24788. name: "Normal",
  24789. height: math.unit(50, "meters"),
  24790. default: true
  24791. },
  24792. ]
  24793. ))
  24794. characterMakers.push(() => makeCharacter(
  24795. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  24796. {
  24797. front: {
  24798. height: math.unit(30, "m"),
  24799. weight: math.unit(22, "tonnes"),
  24800. name: "Front",
  24801. image: {
  24802. source: "./media/characters/elio/front.svg",
  24803. extra: 4582/3720,
  24804. bottom: 236/4828
  24805. }
  24806. },
  24807. },
  24808. [
  24809. {
  24810. name: "Normal",
  24811. height: math.unit(30, "meters"),
  24812. default: true
  24813. },
  24814. ]
  24815. ))
  24816. characterMakers.push(() => makeCharacter(
  24817. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  24818. {
  24819. front: {
  24820. height: math.unit(6 + 3/12, "feet"),
  24821. weight: math.unit(120, "lb"),
  24822. name: "Front",
  24823. image: {
  24824. source: "./media/characters/azura/front.svg",
  24825. extra: 1149/1135,
  24826. bottom: 45/1194
  24827. }
  24828. },
  24829. frontClothed: {
  24830. height: math.unit(6 + 3/12, "feet"),
  24831. weight: math.unit(120, "lb"),
  24832. name: "Front (Clothed)",
  24833. image: {
  24834. source: "./media/characters/azura/front-clothed.svg",
  24835. extra: 1149/1135,
  24836. bottom: 45/1194
  24837. }
  24838. },
  24839. },
  24840. [
  24841. {
  24842. name: "Normal",
  24843. height: math.unit(6 + 3/12, "feet"),
  24844. default: true
  24845. },
  24846. {
  24847. name: "Macro",
  24848. height: math.unit(20 + 6/12, "feet")
  24849. },
  24850. {
  24851. name: "Megamacro",
  24852. height: math.unit(12, "miles")
  24853. },
  24854. {
  24855. name: "Gigamacro",
  24856. height: math.unit(10000, "miles")
  24857. },
  24858. {
  24859. name: "Teramacro",
  24860. height: math.unit(900000, "miles")
  24861. },
  24862. ]
  24863. ))
  24864. characterMakers.push(() => makeCharacter(
  24865. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  24866. {
  24867. front: {
  24868. height: math.unit(12, "feet"),
  24869. weight: math.unit(1, "ton"),
  24870. capacity: math.unit(660000, "gallons"),
  24871. name: "Front",
  24872. image: {
  24873. source: "./media/characters/zeus/front.svg",
  24874. extra: 5005/4717,
  24875. bottom: 363/5388
  24876. }
  24877. },
  24878. },
  24879. [
  24880. {
  24881. name: "Normal",
  24882. height: math.unit(12, "feet")
  24883. },
  24884. {
  24885. name: "Preferred Size",
  24886. height: math.unit(0.5, "miles"),
  24887. default: true
  24888. },
  24889. {
  24890. name: "Giga Horse",
  24891. height: math.unit(300, "miles")
  24892. },
  24893. {
  24894. name: "Riding Planets",
  24895. height: math.unit(30, "megameters")
  24896. },
  24897. {
  24898. name: "Cosmic Giant",
  24899. height: math.unit(3, "zettameters")
  24900. },
  24901. {
  24902. name: "Breeding God",
  24903. height: math.unit(9.92e22, "yottameters")
  24904. },
  24905. ]
  24906. ))
  24907. characterMakers.push(() => makeCharacter(
  24908. { name: "Fang", species: ["monster"], tags: ["feral"] },
  24909. {
  24910. side: {
  24911. height: math.unit(9, "feet"),
  24912. weight: math.unit(1500, "kg"),
  24913. name: "Side",
  24914. image: {
  24915. source: "./media/characters/fang/side.svg",
  24916. extra: 924/866,
  24917. bottom: 47.5/972.3
  24918. }
  24919. },
  24920. },
  24921. [
  24922. {
  24923. name: "Normal",
  24924. height: math.unit(9, "feet"),
  24925. default: true
  24926. },
  24927. {
  24928. name: "Macro",
  24929. height: math.unit(75 + 6/12, "feet")
  24930. },
  24931. {
  24932. name: "Teramacro",
  24933. height: math.unit(50000, "miles")
  24934. },
  24935. ]
  24936. ))
  24937. characterMakers.push(() => makeCharacter(
  24938. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  24939. {
  24940. front: {
  24941. height: math.unit(10, "feet"),
  24942. weight: math.unit(2, "tons"),
  24943. name: "Front",
  24944. image: {
  24945. source: "./media/characters/rekhit/front.svg",
  24946. extra: 2796/2590,
  24947. bottom: 225/3022
  24948. }
  24949. },
  24950. },
  24951. [
  24952. {
  24953. name: "Normal",
  24954. height: math.unit(10, "feet"),
  24955. default: true
  24956. },
  24957. {
  24958. name: "Macro",
  24959. height: math.unit(500, "feet")
  24960. },
  24961. ]
  24962. ))
  24963. characterMakers.push(() => makeCharacter(
  24964. { name: "Dahlia Verrick" },
  24965. {
  24966. front: {
  24967. height: math.unit(7 + 6.451/12, "feet"),
  24968. weight: math.unit(200, "lb"),
  24969. name: "Front",
  24970. image: {
  24971. source: "./media/characters/dahlia-verrick/front.svg",
  24972. extra: 1488/1365,
  24973. bottom: 6.2/1495
  24974. }
  24975. },
  24976. back: {
  24977. height: math.unit(7 + 6.451/12, "feet"),
  24978. weight: math.unit(200, "lb"),
  24979. name: "Back",
  24980. image: {
  24981. source: "./media/characters/dahlia-verrick/back.svg",
  24982. extra: 1472/1351,
  24983. bottom: 5.28/1477
  24984. }
  24985. },
  24986. frontBusiness: {
  24987. height: math.unit(7 + 6.451/12, "feet"),
  24988. weight: math.unit(200, "lb"),
  24989. name: "Front (Business)",
  24990. image: {
  24991. source: "./media/characters/dahlia-verrick/front-business.svg",
  24992. extra: 1478/1381,
  24993. bottom: 5.5/1484
  24994. }
  24995. },
  24996. frontCasual: {
  24997. height: math.unit(7 + 6.451/12, "feet"),
  24998. weight: math.unit(200, "lb"),
  24999. name: "Front (Casual)",
  25000. image: {
  25001. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25002. extra: 1478/1381,
  25003. bottom: 5.5/1484
  25004. }
  25005. },
  25006. },
  25007. [
  25008. {
  25009. name: "Travel-Sized",
  25010. height: math.unit(7.45, "inches")
  25011. },
  25012. {
  25013. name: "Normal",
  25014. height: math.unit(7 + 6.451/12, "feet"),
  25015. default: true
  25016. },
  25017. {
  25018. name: "Hitting the Town",
  25019. height: math.unit(37 + 8/12, "feet")
  25020. },
  25021. {
  25022. name: "Stomp in the Suburbs",
  25023. height: math.unit(964 + 9.728/12, "feet")
  25024. },
  25025. {
  25026. name: "Sit on the City",
  25027. height: math.unit(61747 + 10.592/12, "feet")
  25028. },
  25029. {
  25030. name: "Glomp the Globe",
  25031. height: math.unit(252919327 + 4.832/12, "feet")
  25032. },
  25033. ]
  25034. ))
  25035. characterMakers.push(() => makeCharacter(
  25036. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25037. {
  25038. front: {
  25039. height: math.unit(6 + 4/12, "feet"),
  25040. weight: math.unit(300, "lb"),
  25041. name: "Front",
  25042. image: {
  25043. source: "./media/characters/balina-mahigan/front.svg",
  25044. extra: 447/428,
  25045. bottom: 18/466
  25046. }
  25047. },
  25048. back: {
  25049. height: math.unit(6 + 4/12, "feet"),
  25050. weight: math.unit(300, "lb"),
  25051. name: "Back",
  25052. image: {
  25053. source: "./media/characters/balina-mahigan/back.svg",
  25054. extra: 445/428,
  25055. bottom: 4.07/448
  25056. }
  25057. },
  25058. arm: {
  25059. height: math.unit(1.88, "feet"),
  25060. name: "Arm",
  25061. image: {
  25062. source: "./media/characters/balina-mahigan/arm.svg"
  25063. }
  25064. },
  25065. backPort: {
  25066. height: math.unit(0.685, "feet"),
  25067. name: "Back Port",
  25068. image: {
  25069. source: "./media/characters/balina-mahigan/back-port.svg"
  25070. }
  25071. },
  25072. hoofpaw: {
  25073. height: math.unit(1.41, "feet"),
  25074. name: "Hoofpaw",
  25075. image: {
  25076. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25077. }
  25078. },
  25079. leftHandBack: {
  25080. height: math.unit(0.938, "feet"),
  25081. name: "Left Hand (Back)",
  25082. image: {
  25083. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25084. }
  25085. },
  25086. leftHandFront: {
  25087. height: math.unit(0.938, "feet"),
  25088. name: "Left Hand (Front)",
  25089. image: {
  25090. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25091. }
  25092. },
  25093. rightHandBack: {
  25094. height: math.unit(0.95, "feet"),
  25095. name: "Right Hand (Back)",
  25096. image: {
  25097. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25098. }
  25099. },
  25100. rightHandFront: {
  25101. height: math.unit(0.95, "feet"),
  25102. name: "Right Hand (Front)",
  25103. image: {
  25104. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25105. }
  25106. },
  25107. },
  25108. [
  25109. {
  25110. name: "Normal",
  25111. height: math.unit(6 + 4/12, "feet"),
  25112. default: true
  25113. },
  25114. ]
  25115. ))
  25116. characterMakers.push(() => makeCharacter(
  25117. { name: "Balina Mejeri" },
  25118. {
  25119. front: {
  25120. height: math.unit(6, "feet"),
  25121. weight: math.unit(275, "lb"),
  25122. name: "Front",
  25123. image: {
  25124. source: "./media/characters/balina-mejeri/front.svg",
  25125. extra: 517/488,
  25126. bottom: 44.2/561
  25127. }
  25128. },
  25129. },
  25130. [
  25131. {
  25132. name: "Business",
  25133. height: math.unit(155, "feet"),
  25134. default: true
  25135. },
  25136. ]
  25137. ))
  25138. //characters
  25139. function makeCharacters() {
  25140. const results = [];
  25141. characterMakers.forEach(character => {
  25142. results.push(character());
  25143. });
  25144. return results;
  25145. }