less copy protection, more size visualization
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 

28015 lines
698 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.capacity) {
  29. views[key].attributes.capacity = {
  30. name: "Capacity",
  31. power: 3,
  32. type: "volume",
  33. base: value.capacity
  34. }
  35. }
  36. });
  37. return createEntityMaker(info, views, defaultSizes);
  38. }
  39. const speciesData = {
  40. animal: {
  41. name: "Animal"
  42. },
  43. dog: {
  44. name: "Dog",
  45. parents: [
  46. "canine"
  47. ]
  48. },
  49. canine: {
  50. name: "Canine",
  51. parents: [
  52. "mammal"
  53. ]
  54. },
  55. crux: {
  56. name: "Crux",
  57. parents: [
  58. "mammal"
  59. ]
  60. },
  61. mammal: {
  62. name: "Mammal",
  63. parents: [
  64. "animal"
  65. ]
  66. },
  67. "rough-collie": {
  68. name: "Rough Collie",
  69. parents: [
  70. "dog"
  71. ]
  72. },
  73. dragon: {
  74. name: "Dragon",
  75. parents: [
  76. "reptile"
  77. ]
  78. },
  79. reptile: {
  80. name: "Reptile",
  81. parents: [
  82. "animal"
  83. ]
  84. },
  85. woodpecker: {
  86. name: "Woodpecker",
  87. parents: [
  88. "avian"
  89. ]
  90. },
  91. avian: {
  92. name: "Avian",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. kitsune: {
  98. name: "Kitsune",
  99. parents: [
  100. "fox"
  101. ]
  102. },
  103. fox: {
  104. name: "Fox",
  105. parents: [
  106. "mammal"
  107. ]
  108. },
  109. pokemon: {
  110. name: "Pokemon"
  111. },
  112. tiger: {
  113. name: "Tiger",
  114. parents: [
  115. "cat"
  116. ]
  117. },
  118. cat: {
  119. name: "Cat",
  120. parents: [
  121. "mammal"
  122. ]
  123. },
  124. "blue-jay": {
  125. name: "Blue Jay",
  126. parents: [
  127. "avian"
  128. ]
  129. },
  130. wolf: {
  131. name: "Wolf",
  132. parents: [
  133. "mammal"
  134. ]
  135. },
  136. coyote: {
  137. name: "Coyote",
  138. parents: [
  139. "mammal"
  140. ]
  141. },
  142. raccoon: {
  143. name: "Raccoon",
  144. parents: [
  145. "mammal"
  146. ]
  147. },
  148. weasel: {
  149. name: "Weasel",
  150. parents: [
  151. "mammal"
  152. ]
  153. },
  154. "red-panda": {
  155. name: "Red Panda",
  156. parents: [
  157. "mammal"
  158. ]
  159. },
  160. dolphin: {
  161. name: "Dolphin",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. "african-wild-dog": {
  167. name: "African Wild Dog",
  168. parents: [
  169. "canine"
  170. ]
  171. },
  172. "hyena": {
  173. name: "Hyena",
  174. parents: [
  175. "canine"
  176. ]
  177. },
  178. "carbuncle": {
  179. name: "Carbuncle",
  180. parents: [
  181. "animal"
  182. ]
  183. },
  184. bat: {
  185. name: "Bat",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. "leaf-nosed-bat": {
  191. name: "Leaf-Nosed Bat",
  192. parents: [
  193. "bat"
  194. ]
  195. },
  196. "fish": {
  197. name: "Fish",
  198. parents: [
  199. "animal"
  200. ]
  201. },
  202. "ram": {
  203. name: "Ram",
  204. parents: [
  205. "mammal"
  206. ]
  207. },
  208. "demon": {
  209. name: "Demon"
  210. },
  211. "cougar": {
  212. name: "Cougar",
  213. parents: [
  214. "cat"
  215. ]
  216. },
  217. "goat": {
  218. name: "Goat",
  219. parents: [
  220. "mammal"
  221. ]
  222. },
  223. "lion": {
  224. name: "Lion",
  225. parents: [
  226. "cat"
  227. ]
  228. },
  229. "harpy-eager": {
  230. name: "Harpy Eagle",
  231. parents: [
  232. "avian"
  233. ]
  234. },
  235. "deer": {
  236. name: "Deer",
  237. parents: [
  238. "mammal"
  239. ]
  240. },
  241. "phoenix": {
  242. name: "Phoenix",
  243. parents: [
  244. "avian"
  245. ]
  246. },
  247. "aeromorph": {
  248. name: "Aeromorph",
  249. parents: [
  250. "machine"
  251. ]
  252. },
  253. "machine": {
  254. name: "Machine",
  255. },
  256. "android": {
  257. name: "Android",
  258. parents: [
  259. "machine"
  260. ]
  261. },
  262. "jackal": {
  263. name: "Jackal",
  264. parents: [
  265. "canine"
  266. ]
  267. },
  268. "corvid": {
  269. name: "Corvid",
  270. parents: [
  271. "avian"
  272. ]
  273. },
  274. "pharaoh-hound": {
  275. name: "Pharaoh Hound",
  276. parents: [
  277. "dog"
  278. ]
  279. },
  280. "skunk": {
  281. name: "Skunk",
  282. parents: [
  283. "mammal"
  284. ]
  285. },
  286. "shark": {
  287. name: "Shark",
  288. parents: [
  289. "fish"
  290. ]
  291. },
  292. "black-panther": {
  293. name: "Black Panther",
  294. parents: [
  295. "cat"
  296. ]
  297. },
  298. "umbra": {
  299. name: "Umbra",
  300. parents: [
  301. "animal"
  302. ]
  303. },
  304. "raven": {
  305. name: "Raven",
  306. parents: [
  307. "corvid"
  308. ]
  309. },
  310. "snow-leopard": {
  311. name: "Snow Leopard",
  312. parents: [
  313. "cat"
  314. ]
  315. },
  316. "barbary-lion": {
  317. name: "Barbary Lion",
  318. parents: [
  319. "lion"
  320. ]
  321. },
  322. "dra'gal": {
  323. name: "Dra'Gal",
  324. parents: [
  325. "mammal"
  326. ]
  327. },
  328. "german-shepherd": {
  329. name: "German Shepherd",
  330. parents: [
  331. "dog"
  332. ]
  333. },
  334. "bayleef": {
  335. name: "Bayleef",
  336. parents: [
  337. "pokemon"
  338. ]
  339. },
  340. "mouse": {
  341. name: "Mouse",
  342. parents: [
  343. "rodent"
  344. ]
  345. },
  346. "rat": {
  347. name: "Rat",
  348. parents: [
  349. "mammal"
  350. ]
  351. },
  352. "hoshiko-beast": {
  353. name: "Hoshiko Beast",
  354. parents: ["animal"]
  355. },
  356. "snow-jugani": {
  357. name: "Snow Jugani",
  358. parents: ["cat"]
  359. },
  360. "patamon": {
  361. name: "Patamon",
  362. parents: ["digimon"]
  363. },
  364. "digimon": {
  365. name: "Digimon",
  366. },
  367. "jugani": {
  368. name: "Jugani",
  369. parents: ["cat"]
  370. },
  371. "luxray": {
  372. name: "Luxray",
  373. parents: ["pokemon"]
  374. },
  375. "mech": {
  376. name: "Mech",
  377. parents: ["machine"]
  378. },
  379. "zoid": {
  380. name: "Zoid",
  381. parents: ["mech"]
  382. },
  383. "monster": {
  384. name: "Monster",
  385. parents: ["animal"]
  386. },
  387. "foo-dog": {
  388. name: "Foo Dog",
  389. parents: ["mammal"]
  390. },
  391. "elephant": {
  392. name: "Elephant",
  393. parents: ["mammal"]
  394. },
  395. "eagle": {
  396. name: "Eagle",
  397. parents: ["avian"]
  398. },
  399. "cow": {
  400. name: "Cow",
  401. parents: ["mammal"]
  402. },
  403. "crocodile": {
  404. name: "Crocodile",
  405. parents: ["reptile"]
  406. },
  407. "borzoi": {
  408. name: "Borzoi",
  409. parents: ["dog"]
  410. },
  411. "snake": {
  412. name: "Snake",
  413. parents: ["reptile"]
  414. },
  415. "horned-bush-viper": {
  416. name: "Horned Bush Viper",
  417. parents: ["snake"]
  418. },
  419. "cobra": {
  420. name: "Cobra",
  421. parents: ["snake"]
  422. },
  423. "harpy-eagle": {
  424. name: "Harpy Eagle",
  425. parents: ["eagle"]
  426. },
  427. "raptor": {
  428. name: "Raptor",
  429. parents: ["dinosaur"]
  430. },
  431. "dinosaur": {
  432. name: "Dinosaur",
  433. parents: ["reptile"]
  434. },
  435. "veilhound": {
  436. name: "Veilhound",
  437. parents: ["hellhound", "demon"]
  438. },
  439. "hellhound": {
  440. name: "Hellhound",
  441. parents: ["canine"]
  442. },
  443. "insect": {
  444. name: "Insect",
  445. parents: ["animal"]
  446. },
  447. "beetle": {
  448. name: "Beetle",
  449. parents: ["insect"]
  450. },
  451. "moth": {
  452. name: "Moth",
  453. parents: ["insect"]
  454. },
  455. "eastern-dragon": {
  456. name: "Eastern Dragon",
  457. parents: ["dragon"]
  458. },
  459. "jaguar": {
  460. name: "Jaguar",
  461. parents: ["cat"]
  462. },
  463. "horse": {
  464. name: "Horse",
  465. parents: ["mammal"]
  466. },
  467. "sergal": {
  468. name: "Sergal",
  469. parents: ["mammal"]
  470. },
  471. "gryphon": {
  472. name: "Gryphon",
  473. parents: ["lion", "eagle"]
  474. },
  475. "robot": {
  476. name: "Robot",
  477. parents: ["machine"]
  478. },
  479. "medihound": {
  480. name: "Medihound",
  481. parents: ["robot", "dog"]
  482. },
  483. "sylveon": {
  484. name: "Sylveon",
  485. parents: ["pokemon"]
  486. },
  487. "catgirl": {
  488. name: "Catgirl",
  489. parents: ["mammal"]
  490. },
  491. "cowgirl": {
  492. name: "Cowgirl",
  493. parents: ["mammal"]
  494. },
  495. "pony": {
  496. name: "Pony",
  497. parents: ["horse"]
  498. },
  499. "rabbit": {
  500. name: "Rabbit",
  501. parents: ["mammal"]
  502. },
  503. "fennec-fox": {
  504. name: "Fennec Fox",
  505. parents: ["fox"]
  506. },
  507. "azodian": {
  508. name: "Azodian",
  509. parents: ["mouse"]
  510. },
  511. "shiba-inu": {
  512. name: "Shiba Inu",
  513. parents: ["dog"]
  514. },
  515. "changeling": {
  516. name: "Changeling",
  517. parents: ["insect"]
  518. },
  519. "cheetah": {
  520. name: "Cheetah",
  521. parents: ["cat"]
  522. },
  523. "golden-jackal": {
  524. name: "Golden Jackal",
  525. parents: ["jackal"]
  526. },
  527. "manectric": {
  528. name: "Manectric",
  529. parents: ["pokemon"]
  530. },
  531. "rat": {
  532. name: "Rat",
  533. parents: ["rodent"]
  534. },
  535. "rodent": {
  536. name: "Rodent",
  537. parents: ["mammal"]
  538. },
  539. "octocoon": {
  540. name: "Octocoon",
  541. parents: ["raccoon", "octopus"]
  542. },
  543. "octopus": {
  544. name: "Octopus",
  545. parents: ["fish"]
  546. },
  547. "werewolf": {
  548. name: "Werewolf",
  549. parents: ["wolf"]
  550. },
  551. "meerkat": {
  552. name: "Meerkat",
  553. parents: ["mammal"]
  554. },
  555. "human": {
  556. name: "Human",
  557. parents: ["mammal"]
  558. },
  559. "geth": {
  560. name: "Geth",
  561. parents: ["android"]
  562. },
  563. "husky": {
  564. name: "Husky",
  565. parents: ["dog"]
  566. },
  567. "long-eared-bat": {
  568. name: "Long Eared Bat",
  569. parents: ["bat"]
  570. },
  571. "lizard": {
  572. name: "Lizard",
  573. parents: ["reptile"]
  574. },
  575. "salamander": {
  576. name: "Salamander",
  577. parents: ["lizard"]
  578. },
  579. "chameleon": {
  580. name: "Chameleon",
  581. parents: ["lizard"]
  582. },
  583. "gecko": {
  584. name: "Gecko",
  585. parents: ["lizard"]
  586. },
  587. "kobold": {
  588. name: "Kobold",
  589. parents: ["reptile"]
  590. },
  591. "charizard": {
  592. name: "Charizard",
  593. parents: ["pokemon"]
  594. },
  595. "lugia": {
  596. name: "Lugia",
  597. parents: ["pokemon"]
  598. },
  599. "cerberus": {
  600. name: "Cerberus",
  601. parents: ["dog"]
  602. },
  603. "tyrantrum": {
  604. name: "Tyrantrum",
  605. parents: ["pokemon"]
  606. },
  607. "lemur": {
  608. name: "Lemur",
  609. parents: ["mammal"]
  610. },
  611. "kelpie": {
  612. name: "Kelpie",
  613. parents: ["horse", "monster"]
  614. },
  615. "labrador": {
  616. name: "Labrador",
  617. parents: ["dog"]
  618. },
  619. "sylveon": {
  620. name: "Sylveon",
  621. parents: ["eeveelution"]
  622. },
  623. "eeveelution": {
  624. name: "Eeveelution",
  625. parents: ["pokemon"]
  626. },
  627. "polar-bear": {
  628. name: "Polar Bear",
  629. parents: ["bear"]
  630. },
  631. "bear": {
  632. name: "Bear",
  633. parents: ["mammal"]
  634. },
  635. "absol": {
  636. name: "Absol",
  637. parents: ["pokemon"]
  638. },
  639. "wolver": {
  640. name: "Wolver",
  641. parents: ["mammal"]
  642. },
  643. "rottweiler": {
  644. name: "Rottweiler",
  645. parents: ["dog"]
  646. },
  647. "zebra": {
  648. name: "Zebra",
  649. parents: ["horse"]
  650. },
  651. "yoshi": {
  652. name: "Yoshi",
  653. parents: ["lizard"]
  654. },
  655. "lynx": {
  656. name: "Lynx",
  657. parents: ["cat"]
  658. },
  659. "unknown": {
  660. name: "Unknown",
  661. parents: []
  662. },
  663. "thylacine": {
  664. name: "Thylacine",
  665. parents: ["mammal"]
  666. },
  667. "gabumon": {
  668. name: "Gabumon",
  669. parents: ["digimon"]
  670. },
  671. "border-collie": {
  672. name: "Border Collie",
  673. parents: ["dog"]
  674. },
  675. "imp": {
  676. name: "Imp",
  677. parents: ["demon"]
  678. },
  679. "kangaroo": {
  680. name: "Kangaroo",
  681. parents: ["mammal"]
  682. },
  683. "renamon": {
  684. name: "Renamon",
  685. parents: ["digimon"]
  686. },
  687. "candy-orca-dragon": {
  688. name: "Candy Orca Dragon",
  689. parents: ["fish", "dragon", "candy"]
  690. },
  691. "sabertooth-tiger": {
  692. name: "Sabertooth Tiger",
  693. parents: ["cat"]
  694. },
  695. "espurr": {
  696. name: "Espurr",
  697. parents: ["pokemon"]
  698. },
  699. "otter": {
  700. name: "Otter",
  701. parents: ["mammal"]
  702. },
  703. "elemental": {
  704. name: "Elemental",
  705. parents: ["mammal"]
  706. },
  707. "mew": {
  708. name: "Mew",
  709. parents: ["pokemon"]
  710. },
  711. "goodra": {
  712. name: "Goodra",
  713. parents: ["pokemon"]
  714. },
  715. "fairy": {
  716. name: "Fairy",
  717. parents: ["magical"]
  718. },
  719. "typhlosion": {
  720. name: "Typhlosion",
  721. parents: ["pokemon"]
  722. },
  723. "magical": {
  724. name: "Magical",
  725. parents: []
  726. },
  727. "xenomorph": {
  728. name: "Xenomorph",
  729. parents: ["monster", "alien"]
  730. },
  731. "charr": {
  732. name: "Charr",
  733. parents: ["cat"]
  734. },
  735. "siberian-husky": {
  736. name: "Siberian Husky",
  737. parents: ["husky"]
  738. },
  739. "alligator": {
  740. name: "Alligator",
  741. parents: ["reptile"]
  742. },
  743. "bernese-mountain-dog": {
  744. name: "Bernese Mountain Dog",
  745. parents: ["dog"]
  746. },
  747. "reshiram": {
  748. name: "Reshiram",
  749. parents: ["pokemon"]
  750. },
  751. "grizzly-bear": {
  752. name: "Grizzly Bear",
  753. parents: ["bear"]
  754. },
  755. "water-monitor": {
  756. name: "Water Monitor",
  757. parents: ["lizard"]
  758. },
  759. "banchofossa": {
  760. name: "Banchofossa",
  761. parents: ["mammal"]
  762. },
  763. "kirin": {
  764. name: "Kirin",
  765. parents: ["monster"]
  766. },
  767. "quilava": {
  768. name: "Quilava",
  769. parents: ["pokemon"]
  770. },
  771. "seviper": {
  772. name: "Seviper",
  773. parents: ["pokemon"]
  774. },
  775. "flying-fox": {
  776. name: "Flying Fox",
  777. parents: ["bat"]
  778. },
  779. "keynain": {
  780. name: "Keynain",
  781. parents: ["avian"]
  782. },
  783. "lucario": {
  784. name: "Lucario",
  785. parents: ["pokemon"]
  786. },
  787. "siamese-cat": {
  788. name: "Siamese Cat",
  789. parents: ["cat"]
  790. },
  791. "spider": {
  792. name: "Spider",
  793. parents: ["insect"]
  794. },
  795. "samurott": {
  796. name: "Samurott",
  797. parents: ["pokemon"]
  798. },
  799. "megalodon": {
  800. name: "Megalodon",
  801. parents: ["shark"]
  802. },
  803. "unicorn": {
  804. name: "Unicorn",
  805. parents: ["horse"]
  806. },
  807. "greninja": {
  808. name: "Greninja",
  809. parents: ["pokemon"]
  810. },
  811. "water-dragon": {
  812. name: "Water Dragon",
  813. parents: ["dragon"]
  814. },
  815. "cross-fox": {
  816. name: "Cross Fox",
  817. parents: ["fox"]
  818. },
  819. "synth": {
  820. name: "Synth",
  821. parents: ["machine"]
  822. },
  823. "construct": {
  824. name: "Construct",
  825. parents: []
  826. },
  827. "mexican-wolf": {
  828. name: "Mexican Wolf",
  829. parents: ["wolf"]
  830. },
  831. "leopard": {
  832. name: "Leopard",
  833. parents: ["cat"]
  834. },
  835. "pig": {
  836. name: "Pig",
  837. parents: ["mammal"]
  838. },
  839. "ampharos": {
  840. name: "Ampharos",
  841. parents: ["pokemon"]
  842. },
  843. "orca": {
  844. name: "Orca",
  845. parents: ["fish"]
  846. },
  847. "lycanroc": {
  848. name: "Lycanroc",
  849. parents: ["pokemon"]
  850. },
  851. "surkanu": {
  852. name: "Surkanu",
  853. parents: ["monster"]
  854. },
  855. "seal": {
  856. name: "Seal",
  857. parents: ["mammal"]
  858. },
  859. "keldeo": {
  860. name: "Keldeo",
  861. parents: ["pokemon"]
  862. },
  863. "great-dane": {
  864. name: "Great Dane",
  865. parents: ["dog"]
  866. },
  867. "black-backed-jackal": {
  868. name: "Black Backed Jackal",
  869. parents: ["jackal"]
  870. },
  871. "sheep": {
  872. name: "Sheep",
  873. parents: ["mammal"]
  874. },
  875. "leopard-seal": {
  876. name: "Leopard Seal",
  877. parents: ["seal"]
  878. },
  879. "zoroark": {
  880. name: "Zoroark",
  881. parents: ["pokemon"]
  882. },
  883. "maned-wolf": {
  884. name: "Maned Wolf",
  885. parents: ["canine"]
  886. },
  887. "dracha": {
  888. name: "Dracha",
  889. parents: ["dragon"]
  890. },
  891. "wolxi": {
  892. name: "Wolxi",
  893. parents: ["mammal", "alien"]
  894. },
  895. "dratini": {
  896. name: "Dratini",
  897. parents: ["pokemon", "dragon"]
  898. },
  899. "skaven": {
  900. name: "Skaven",
  901. parents: ["rat"]
  902. },
  903. "mongoose": {
  904. name: "Mongoose",
  905. parents: ["mammal"]
  906. },
  907. "lopunny": {
  908. name: "Lopunny",
  909. parents: ["pokemon", "rabbit"]
  910. },
  911. "feraligatr": {
  912. name: "Feraligatr",
  913. parents: ["pokemon", "alligator"]
  914. },
  915. "houndoom": {
  916. name: "Houndoom",
  917. parents: ["pokemon", "dog"]
  918. },
  919. "protogen": {
  920. name: "Protogen",
  921. parents: ["machine"]
  922. },
  923. "saint-bernard": {
  924. name: "Saint Bernard",
  925. parents: ["dog"]
  926. },
  927. "crow": {
  928. name: "Crow",
  929. parents: ["corvid"]
  930. },
  931. "delphox": {
  932. name: "Delphox",
  933. parents: ["pokemon", "fox"]
  934. },
  935. "moose": {
  936. name: "Moose",
  937. parents: ["mammal"]
  938. },
  939. "joraxian": {
  940. name: "Joraxian",
  941. parents: ["monster", "canine", "demon"]
  942. },
  943. "nimbat": {
  944. name: "Nimbat",
  945. parents: ["mammal"]
  946. },
  947. "aardwolf": {
  948. name: "Aardwolf",
  949. parents: ["canine"]
  950. },
  951. "fluudrani": {
  952. name: "Fluudrani",
  953. parents: ["animal"]
  954. },
  955. "arcanine": {
  956. name: "Arcanine",
  957. parents: ["pokemon", "dog"]
  958. },
  959. "inteleon": {
  960. name: "Inteleon",
  961. parents: ["pokemon", "fish"]
  962. },
  963. "ninetales": {
  964. name: "Ninetales",
  965. parents: ["pokemon", "kitsune"]
  966. },
  967. "tigrex": {
  968. name: "Tigrex",
  969. parents: ["tiger"]
  970. },
  971. "zorua": {
  972. name: "Zorua",
  973. parents: ["pokemon", "fox"]
  974. },
  975. "vulpix": {
  976. name: "Vulpix",
  977. parents: ["pokemon", "fox"]
  978. },
  979. "barghest": {
  980. name: "Barghest",
  981. parents: ["monster"]
  982. },
  983. "gray-wolf": {
  984. name: "Gray Wolf",
  985. parents: ["wolf"]
  986. },
  987. "ruppells-fox": {
  988. name: "Rüppell's Fox",
  989. parents: ["fox"]
  990. },
  991. "bull-terrier": {
  992. name: "Bull Terrier",
  993. parents: ["dog"]
  994. },
  995. "european-honey-buzzard": {
  996. name: "European Honey Buzzard",
  997. parents: ["avian"]
  998. },
  999. "t-rex": {
  1000. name: "T Rex",
  1001. parents: ["dinosaur"]
  1002. },
  1003. "mactarian": {
  1004. name: "Mactarian",
  1005. parents: ["shark", "monster"]
  1006. },
  1007. "mewtwo-y": {
  1008. name: "Mewtwo Y",
  1009. parents: ["mewtwo"]
  1010. },
  1011. "mewtwo": {
  1012. name: "Mewtwo",
  1013. parents: ["pokemon"]
  1014. },
  1015. "mew": {
  1016. name: "Mew",
  1017. parents: ["pokemon"]
  1018. },
  1019. "eevee": {
  1020. name: "Eevee",
  1021. parents: ["eeveelution"]
  1022. },
  1023. "mienshao": {
  1024. name: "Mienshao",
  1025. parents: ["pokemon"]
  1026. },
  1027. "sugar-glider": {
  1028. name: "Sugar Glider",
  1029. parents: ["opossum"]
  1030. },
  1031. "spectral-bat": {
  1032. name: "Spectral Bat",
  1033. parents: ["bat"]
  1034. },
  1035. "scolipede": {
  1036. name: "Scolipede",
  1037. parents: ["pokemon", "insect"]
  1038. },
  1039. "jackalope": {
  1040. name: "Jackalope",
  1041. parents: ["rabbit", "antelope"]
  1042. },
  1043. "caracal": {
  1044. name: "Caracal",
  1045. parents: ["cat"]
  1046. },
  1047. "stoat": {
  1048. name: "Stoat",
  1049. parents: ["mammal"]
  1050. },
  1051. "african-golden-cat": {
  1052. name: "African Golden Cat",
  1053. parents: ["cat"]
  1054. },
  1055. "gigantosaurus": {
  1056. name: "Gigantosaurus",
  1057. parents: ["dinosaur"]
  1058. },
  1059. "zorgoia": {
  1060. name: "Zorgoia",
  1061. parents: ["mammal"]
  1062. },
  1063. "monitor-lizard": {
  1064. name: "Monitor Lizard",
  1065. parents: ["lizard"]
  1066. },
  1067. "ziralkia": {
  1068. name: "Ziralkia",
  1069. parents: ["mammal"]
  1070. },
  1071. "kiiasi": {
  1072. name: "Kiiasi",
  1073. parents: ["animal"]
  1074. },
  1075. "synx": {
  1076. name: "Synx",
  1077. parents: ["monster"]
  1078. },
  1079. "panther": {
  1080. name: "Panther",
  1081. parents: ["cat"]
  1082. },
  1083. "azumarill": {
  1084. name: "Azumarill",
  1085. parents: ["pokemon"]
  1086. },
  1087. "river-snaptail": {
  1088. name: "River Snaptail",
  1089. parents: ["otter", "crocodile"]
  1090. },
  1091. "great-blue-heron": {
  1092. name: "Great Blue Heron",
  1093. parents: ["avian"]
  1094. },
  1095. "smeargle": {
  1096. name: "Smeargle",
  1097. parents: ["pokemon"]
  1098. },
  1099. "vendeilen": {
  1100. name: "Vendeilen",
  1101. parents: ["monster"]
  1102. },
  1103. "ventura": {
  1104. name: "Ventura",
  1105. parents: ["canine"]
  1106. },
  1107. "clouded-leopard": {
  1108. name: "Clouded Leopard",
  1109. parents: ["leopard"]
  1110. },
  1111. "argonian": {
  1112. name: "Argonian",
  1113. parents: ["lizard"]
  1114. },
  1115. "salazzle": {
  1116. name: "Salazzle",
  1117. parents: ["pokemon", "lizard"]
  1118. },
  1119. "je-stoff-drachen": {
  1120. name: "Je-Stoff Drachen",
  1121. parents: ["dragon"]
  1122. },
  1123. "finnish-spitz-dog": {
  1124. name: "Finnish Spitz Dog",
  1125. parents: ["dog"]
  1126. },
  1127. "gray-fox": {
  1128. name: "Gray Fox",
  1129. parents: ["fox"]
  1130. },
  1131. "opossum": {
  1132. name: "opossum",
  1133. parents: ["mammal"]
  1134. },
  1135. "antelope": {
  1136. name: "Antelope",
  1137. parents: ["mammal"]
  1138. },
  1139. "weavile": {
  1140. name: "Weavile",
  1141. parents: ["pokemon"]
  1142. },
  1143. "pikachu": {
  1144. name: "Pikachu",
  1145. parents: ["pokemon", "mouse"]
  1146. },
  1147. "grovyle": {
  1148. name: "Grovyle",
  1149. parents: ["pokemon", "plant"]
  1150. },
  1151. "sthara": {
  1152. name: "Sthara",
  1153. parents: ["snow-leopard", "reptile"]
  1154. },
  1155. "star-warrior": {
  1156. name: "Star Warrior",
  1157. parents: ["magical"]
  1158. },
  1159. "dragonoid": {
  1160. name: "Dragonoid",
  1161. parents: ["dragon"]
  1162. },
  1163. "suicune": {
  1164. name: "Suicune",
  1165. parents: ["pokemon"]
  1166. },
  1167. "vole": {
  1168. name: "Vole",
  1169. parents: ["mammal"]
  1170. },
  1171. "blaziken": {
  1172. name: "Blaziken",
  1173. parents: ["pokemon", "avian"]
  1174. },
  1175. "buizel": {
  1176. name: "Buizel",
  1177. parents: ["pokemon", "fish"]
  1178. },
  1179. "floatzel": {
  1180. name: "Floatzel",
  1181. parents: ["pokemon", "fish"]
  1182. },
  1183. "umok": {
  1184. name: "Umok",
  1185. parents: ["avian"]
  1186. },
  1187. "sea-monster": {
  1188. name: "Sea Monster",
  1189. parents: ["monster", "fish"]
  1190. },
  1191. "egyptian-vulture": {
  1192. name: "Egyptian Vulture",
  1193. parents: ["avian"]
  1194. },
  1195. "doberman": {
  1196. name: "Doberman",
  1197. parents: ["dog"]
  1198. },
  1199. "zangoose": {
  1200. name: "Zangoose",
  1201. parents: ["pokemon", "mongoose"]
  1202. },
  1203. "mongoose": {
  1204. name: "Mongoose",
  1205. parents: ["mammal"]
  1206. },
  1207. "wickerbeast": {
  1208. name: "Wickerbeast",
  1209. parents: ["monster"]
  1210. },
  1211. "zenari": {
  1212. name: "Zenari",
  1213. parents: ["lizard"]
  1214. },
  1215. "plant": {
  1216. name: "Plant",
  1217. parents: []
  1218. },
  1219. "raskatox": {
  1220. name: "Raskatox",
  1221. parents: ["raccoon", "skunk", "cat", "fox"]
  1222. },
  1223. "mikromare": {
  1224. name: "mikromare",
  1225. parents: ["alien"]
  1226. },
  1227. "alien": {
  1228. name: "Alien",
  1229. parents: ["animal"]
  1230. },
  1231. "deity": {
  1232. name: "Deity",
  1233. parents: []
  1234. },
  1235. "skarlan": {
  1236. name: "Skarlan",
  1237. parents: ["slug", "dragon"]
  1238. },
  1239. "slug": {
  1240. name: "Slug",
  1241. parents: ["mollusk"]
  1242. },
  1243. "mollusk": {
  1244. name: "Mollusk",
  1245. parents: ["animal"]
  1246. },
  1247. "chimera": {
  1248. name: "Chimera",
  1249. parents: ["monster"]
  1250. },
  1251. "gestalt": {
  1252. name: "Gestalt",
  1253. parents: ["construct"]
  1254. },
  1255. "mimic": {
  1256. name: "Mimic",
  1257. parents: ["monster"]
  1258. },
  1259. "calico-rat": {
  1260. name: "Calico Rat",
  1261. parents: ["rat"]
  1262. },
  1263. "panda": {
  1264. name: "Panda",
  1265. parents: ["mammal"]
  1266. },
  1267. "oni": {
  1268. name: "Oni",
  1269. parents: ["monster"]
  1270. },
  1271. "pegasus": {
  1272. name: "Pegasus",
  1273. parents: ["horse"]
  1274. },
  1275. "vulpera": {
  1276. name: "Vulpera",
  1277. parents: ["fennec-fox"]
  1278. },
  1279. "ceratosaurus": {
  1280. name: "Ceratosaurus",
  1281. parents: ["dinosaur"]
  1282. },
  1283. "nykur": {
  1284. name: "Nykur",
  1285. parents: ["horse", "monster"]
  1286. },
  1287. "giraffe": {
  1288. name: "Giraffe",
  1289. parents: ["mammal"]
  1290. },
  1291. "tauren": {
  1292. name: "Tauren",
  1293. parents: ["cow"]
  1294. },
  1295. "draconi": {
  1296. name: "Draconi",
  1297. parents: ["alien", "cat", "cyborg"]
  1298. },
  1299. "dire-wolf": {
  1300. name: "Dire Wolf",
  1301. parents: ["wolf"]
  1302. },
  1303. "ferromorph": {
  1304. name: "Ferromorph",
  1305. parents: ["construct"]
  1306. },
  1307. "meowth": {
  1308. name: "Meowth",
  1309. parents: ["cat", "pokemon"]
  1310. },
  1311. "pavodragon": {
  1312. name: "Pavodragon",
  1313. parents: ["dragon"]
  1314. },
  1315. "aaltranae": {
  1316. name: "Aaltranae",
  1317. parents: ["dragon"]
  1318. },
  1319. "cyborg": {
  1320. name: "Cyborg",
  1321. parents: ["machine"]
  1322. },
  1323. "draptor": {
  1324. name: "Draptor",
  1325. parents: ["dragon"]
  1326. },
  1327. "candy": {
  1328. name: "Candy",
  1329. parents: []
  1330. },
  1331. }
  1332. //species
  1333. function getSpeciesInfo(speciesList) {
  1334. let result = new Set();
  1335. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1336. result.add(entry)
  1337. });
  1338. return Array.from(result);
  1339. };
  1340. function getSpeciesInfoHelper(species) {
  1341. if (!speciesData[species]) {
  1342. console.warn(species + " doesn't exist");
  1343. return [];
  1344. }
  1345. if (speciesData[species].parents) {
  1346. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1347. } else {
  1348. return [species];
  1349. }
  1350. }
  1351. characterMakers.push(() => makeCharacter(
  1352. {
  1353. name: "Fen",
  1354. species: ["crux"],
  1355. description: {
  1356. title: "Bio",
  1357. text: "Very furry. Sheds on everything."
  1358. },
  1359. tags: [
  1360. "anthro",
  1361. "goo"
  1362. ]
  1363. },
  1364. {
  1365. back: {
  1366. height: math.unit(2.2428, "meter"),
  1367. weight: math.unit(124.738, "kg"),
  1368. name: "Back",
  1369. image: {
  1370. source: "./media/characters/fen/back.svg",
  1371. extra: 1025 / 935,
  1372. bottom: 0.01
  1373. },
  1374. info: {
  1375. description: {
  1376. mode: "append",
  1377. text: "\n\nHe is not currently looking at you."
  1378. }
  1379. }
  1380. },
  1381. full: {
  1382. height: math.unit(1.34, "meter"),
  1383. weight: math.unit(225, "kg"),
  1384. name: "Full",
  1385. image: {
  1386. source: "./media/characters/fen/full.svg"
  1387. },
  1388. info: {
  1389. description: {
  1390. mode: "append",
  1391. text: "\n\nMunch."
  1392. }
  1393. }
  1394. },
  1395. kneeling: {
  1396. height: math.unit(5.4, "feet"),
  1397. weight: math.unit(124.738, "kg"),
  1398. name: "Kneeling",
  1399. image: {
  1400. source: "./media/characters/fen/kneeling.svg",
  1401. extra: 563 / 507
  1402. }
  1403. },
  1404. goo: {
  1405. height: math.unit(2.8, "feet"),
  1406. weight: math.unit(125, "kg"),
  1407. capacity: math.unit(1, "people"),
  1408. name: "Goo",
  1409. image: {
  1410. source: "./media/characters/fen/goo.svg",
  1411. bottom: 116 / 613
  1412. }
  1413. },
  1414. lounging: {
  1415. height: math.unit(6.5, "feet"),
  1416. weight: math.unit(125, "kg"),
  1417. name: "Lounging",
  1418. image: {
  1419. source: "./media/characters/fen/lounging.svg"
  1420. }
  1421. },
  1422. },
  1423. [
  1424. {
  1425. name: "Normal",
  1426. height: math.unit(2.2428, "meter")
  1427. },
  1428. {
  1429. name: "Big",
  1430. height: math.unit(12, "feet")
  1431. },
  1432. {
  1433. name: "Minimacro",
  1434. height: math.unit(40, "feet"),
  1435. default: true,
  1436. info: {
  1437. description: {
  1438. mode: "append",
  1439. text: "\n\nTOO DAMN BIG"
  1440. }
  1441. }
  1442. },
  1443. {
  1444. name: "Macro",
  1445. height: math.unit(100, "feet"),
  1446. info: {
  1447. description: {
  1448. mode: "append",
  1449. text: "\n\nTOO DAMN BIG"
  1450. }
  1451. }
  1452. },
  1453. {
  1454. name: "Macro+",
  1455. height: math.unit(300, "feet")
  1456. },
  1457. {
  1458. name: "Megamacro",
  1459. height: math.unit(2, "miles")
  1460. }
  1461. ]
  1462. ))
  1463. characterMakers.push(() => makeCharacter(
  1464. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1465. {
  1466. front: {
  1467. height: math.unit(183, "cm"),
  1468. weight: math.unit(80, "kg"),
  1469. name: "Front",
  1470. image: {
  1471. source: "./media/characters/sofia-fluttertail/front.svg",
  1472. bottom: 0.01,
  1473. extra: 2154 / 2081
  1474. }
  1475. },
  1476. frontAlt: {
  1477. height: math.unit(183, "cm"),
  1478. weight: math.unit(80, "kg"),
  1479. name: "Front (alt)",
  1480. image: {
  1481. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1482. }
  1483. },
  1484. back: {
  1485. height: math.unit(183, "cm"),
  1486. weight: math.unit(80, "kg"),
  1487. name: "Back",
  1488. image: {
  1489. source: "./media/characters/sofia-fluttertail/back.svg"
  1490. }
  1491. },
  1492. kneeling: {
  1493. height: math.unit(125, "cm"),
  1494. weight: math.unit(80, "kg"),
  1495. name: "Kneeling",
  1496. image: {
  1497. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1498. extra: 1033 / 977,
  1499. bottom: 23.7 / 1057
  1500. }
  1501. },
  1502. maw: {
  1503. height: math.unit(183 / 5, "cm"),
  1504. name: "Maw",
  1505. image: {
  1506. source: "./media/characters/sofia-fluttertail/maw.svg"
  1507. }
  1508. },
  1509. mawcloseup: {
  1510. height: math.unit(183 / 5 * 0.41, "cm"),
  1511. name: "Maw (Closeup)",
  1512. image: {
  1513. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1514. }
  1515. },
  1516. },
  1517. [
  1518. {
  1519. name: "Normal",
  1520. height: math.unit(1.83, "meter")
  1521. },
  1522. {
  1523. name: "Size Thief",
  1524. height: math.unit(18, "feet")
  1525. },
  1526. {
  1527. name: "50 Foot Collie",
  1528. height: math.unit(50, "feet")
  1529. },
  1530. {
  1531. name: "Macro",
  1532. height: math.unit(96, "feet"),
  1533. default: true
  1534. },
  1535. {
  1536. name: "Megamerger",
  1537. height: math.unit(650, "feet")
  1538. },
  1539. ]
  1540. ))
  1541. characterMakers.push(() => makeCharacter(
  1542. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1543. {
  1544. front: {
  1545. height: math.unit(7, "feet"),
  1546. weight: math.unit(100, "kg"),
  1547. name: "Front",
  1548. image: {
  1549. source: "./media/characters/march/front.svg",
  1550. extra: 1,
  1551. bottom: 0.015
  1552. }
  1553. },
  1554. foot: {
  1555. height: math.unit(0.9, "feet"),
  1556. name: "Foot",
  1557. image: {
  1558. source: "./media/characters/march/foot.svg"
  1559. }
  1560. },
  1561. },
  1562. [
  1563. {
  1564. name: "Normal",
  1565. height: math.unit(7.9, "feet")
  1566. },
  1567. {
  1568. name: "Macro",
  1569. height: math.unit(220, "meters")
  1570. },
  1571. {
  1572. name: "Megamacro",
  1573. height: math.unit(2.98, "km"),
  1574. default: true
  1575. },
  1576. {
  1577. name: "Gigamacro",
  1578. height: math.unit(15963, "km")
  1579. },
  1580. {
  1581. name: "Teramacro",
  1582. height: math.unit(2980000000, "km")
  1583. },
  1584. {
  1585. name: "Examacro",
  1586. height: math.unit(250, "parsecs")
  1587. },
  1588. ]
  1589. ))
  1590. characterMakers.push(() => makeCharacter(
  1591. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1592. {
  1593. front: {
  1594. height: math.unit(6, "feet"),
  1595. weight: math.unit(60, "kg"),
  1596. name: "Front",
  1597. image: {
  1598. source: "./media/characters/noir/front.svg",
  1599. extra: 1,
  1600. bottom: 0.032
  1601. }
  1602. },
  1603. },
  1604. [
  1605. {
  1606. name: "Normal",
  1607. height: math.unit(6.6, "feet")
  1608. },
  1609. {
  1610. name: "Macro",
  1611. height: math.unit(500, "feet")
  1612. },
  1613. {
  1614. name: "Megamacro",
  1615. height: math.unit(2.5, "km"),
  1616. default: true
  1617. },
  1618. {
  1619. name: "Gigamacro",
  1620. height: math.unit(22500, "km")
  1621. },
  1622. {
  1623. name: "Teramacro",
  1624. height: math.unit(2500000000, "km")
  1625. },
  1626. {
  1627. name: "Examacro",
  1628. height: math.unit(200, "parsecs")
  1629. },
  1630. ]
  1631. ))
  1632. characterMakers.push(() => makeCharacter(
  1633. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1634. {
  1635. front: {
  1636. height: math.unit(7, "feet"),
  1637. weight: math.unit(100, "kg"),
  1638. name: "Front",
  1639. image: {
  1640. source: "./media/characters/okuri/front.svg",
  1641. extra: 1,
  1642. bottom: 0.037
  1643. }
  1644. },
  1645. back: {
  1646. height: math.unit(7, "feet"),
  1647. weight: math.unit(100, "kg"),
  1648. name: "Back",
  1649. image: {
  1650. source: "./media/characters/okuri/back.svg",
  1651. extra: 1,
  1652. bottom: 0.007
  1653. }
  1654. },
  1655. },
  1656. [
  1657. {
  1658. name: "Megamacro",
  1659. height: math.unit(100, "miles"),
  1660. default: true
  1661. },
  1662. ]
  1663. ))
  1664. characterMakers.push(() => makeCharacter(
  1665. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1666. {
  1667. front: {
  1668. height: math.unit(7, "feet"),
  1669. weight: math.unit(100, "kg"),
  1670. name: "Front",
  1671. image: {
  1672. source: "./media/characters/manny/front.svg",
  1673. extra: 1,
  1674. bottom: 0.06
  1675. }
  1676. },
  1677. back: {
  1678. height: math.unit(7, "feet"),
  1679. weight: math.unit(100, "kg"),
  1680. name: "Back",
  1681. image: {
  1682. source: "./media/characters/manny/back.svg",
  1683. extra: 1,
  1684. bottom: 0.014
  1685. }
  1686. },
  1687. },
  1688. [
  1689. {
  1690. name: "Normal",
  1691. height: math.unit(7, "feet"),
  1692. },
  1693. {
  1694. name: "Macro",
  1695. height: math.unit(78, "feet"),
  1696. default: true
  1697. },
  1698. {
  1699. name: "Macro+",
  1700. height: math.unit(300, "meters")
  1701. },
  1702. {
  1703. name: "Macro++",
  1704. height: math.unit(2400, "meters")
  1705. },
  1706. {
  1707. name: "Megamacro",
  1708. height: math.unit(5167, "meters")
  1709. },
  1710. {
  1711. name: "Gigamacro",
  1712. height: math.unit(41769, "miles")
  1713. },
  1714. ]
  1715. ))
  1716. characterMakers.push(() => makeCharacter(
  1717. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1718. {
  1719. front: {
  1720. height: math.unit(7, "feet"),
  1721. weight: math.unit(100, "kg"),
  1722. name: "Front",
  1723. image: {
  1724. source: "./media/characters/adake/front-1.svg"
  1725. }
  1726. },
  1727. frontAlt: {
  1728. height: math.unit(7, "feet"),
  1729. weight: math.unit(100, "kg"),
  1730. name: "Front (Alt)",
  1731. image: {
  1732. source: "./media/characters/adake/front-2.svg",
  1733. extra: 1,
  1734. bottom: 0.01
  1735. }
  1736. },
  1737. back: {
  1738. height: math.unit(7, "feet"),
  1739. weight: math.unit(100, "kg"),
  1740. name: "Back",
  1741. image: {
  1742. source: "./media/characters/adake/back.svg",
  1743. }
  1744. },
  1745. kneel: {
  1746. height: math.unit(5.385, "feet"),
  1747. weight: math.unit(100, "kg"),
  1748. name: "Kneeling",
  1749. image: {
  1750. source: "./media/characters/adake/kneel.svg",
  1751. bottom: 0.052
  1752. }
  1753. },
  1754. },
  1755. [
  1756. {
  1757. name: "Normal",
  1758. height: math.unit(7, "feet"),
  1759. },
  1760. {
  1761. name: "Macro",
  1762. height: math.unit(78, "feet"),
  1763. default: true
  1764. },
  1765. {
  1766. name: "Macro+",
  1767. height: math.unit(300, "meters")
  1768. },
  1769. {
  1770. name: "Macro++",
  1771. height: math.unit(2400, "meters")
  1772. },
  1773. {
  1774. name: "Megamacro",
  1775. height: math.unit(5167, "meters")
  1776. },
  1777. {
  1778. name: "Gigamacro",
  1779. height: math.unit(41769, "miles")
  1780. },
  1781. ]
  1782. ))
  1783. characterMakers.push(() => makeCharacter(
  1784. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1785. {
  1786. front: {
  1787. height: math.unit(1.65, "meters"),
  1788. weight: math.unit(50, "kg"),
  1789. name: "Front",
  1790. image: {
  1791. source: "./media/characters/elijah/front.svg",
  1792. extra: 858 / 830,
  1793. bottom: 95.5 / 953.8559
  1794. }
  1795. },
  1796. back: {
  1797. height: math.unit(1.65, "meters"),
  1798. weight: math.unit(50, "kg"),
  1799. name: "Back",
  1800. image: {
  1801. source: "./media/characters/elijah/back.svg",
  1802. extra: 895 / 850,
  1803. bottom: 5.3 / 897.956
  1804. }
  1805. },
  1806. frontNsfw: {
  1807. height: math.unit(1.65, "meters"),
  1808. weight: math.unit(50, "kg"),
  1809. name: "Front (NSFW)",
  1810. image: {
  1811. source: "./media/characters/elijah/front-nsfw.svg",
  1812. extra: 858 / 830,
  1813. bottom: 95.5 / 953.8559
  1814. }
  1815. },
  1816. backNsfw: {
  1817. height: math.unit(1.65, "meters"),
  1818. weight: math.unit(50, "kg"),
  1819. name: "Back (NSFW)",
  1820. image: {
  1821. source: "./media/characters/elijah/back-nsfw.svg",
  1822. extra: 895 / 850,
  1823. bottom: 5.3 / 897.956
  1824. }
  1825. },
  1826. dick: {
  1827. height: math.unit(1, "feet"),
  1828. name: "Dick",
  1829. image: {
  1830. source: "./media/characters/elijah/dick.svg"
  1831. }
  1832. },
  1833. beakOpen: {
  1834. height: math.unit(1.25, "feet"),
  1835. name: "Beak (Open)",
  1836. image: {
  1837. source: "./media/characters/elijah/beak-open.svg"
  1838. }
  1839. },
  1840. beakShut: {
  1841. height: math.unit(1.25, "feet"),
  1842. name: "Beak (Shut)",
  1843. image: {
  1844. source: "./media/characters/elijah/beak-shut.svg"
  1845. }
  1846. },
  1847. footFlexing: {
  1848. height: math.unit(1.61, "feet"),
  1849. name: "Foot (Flexing)",
  1850. image: {
  1851. source: "./media/characters/elijah/foot-flexing.svg"
  1852. }
  1853. },
  1854. footStepping: {
  1855. height: math.unit(1.44, "feet"),
  1856. name: "Foot (Stepping)",
  1857. image: {
  1858. source: "./media/characters/elijah/foot-stepping.svg"
  1859. }
  1860. },
  1861. plantigradeLeg: {
  1862. height: math.unit(2.34, "feet"),
  1863. name: "Plantigrade Leg",
  1864. image: {
  1865. source: "./media/characters/elijah/plantigrade-leg.svg"
  1866. }
  1867. },
  1868. plantigradeFootLeft: {
  1869. height: math.unit(0.9, "feet"),
  1870. name: "Plantigrade Foot (Left)",
  1871. image: {
  1872. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1873. }
  1874. },
  1875. plantigradeFootRight: {
  1876. height: math.unit(0.9, "feet"),
  1877. name: "Plantigrade Foot (Right)",
  1878. image: {
  1879. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1880. }
  1881. },
  1882. },
  1883. [
  1884. {
  1885. name: "Normal",
  1886. height: math.unit(1.65, "meters")
  1887. },
  1888. {
  1889. name: "Macro",
  1890. height: math.unit(55, "meters"),
  1891. default: true
  1892. },
  1893. {
  1894. name: "Macro+",
  1895. height: math.unit(105, "meters")
  1896. },
  1897. ]
  1898. ))
  1899. characterMakers.push(() => makeCharacter(
  1900. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1901. {
  1902. front: {
  1903. height: math.unit(11, "feet"),
  1904. weight: math.unit(80, "kg"),
  1905. name: "Front",
  1906. image: {
  1907. source: "./media/characters/rai/front.svg",
  1908. extra: 1,
  1909. bottom: 0.03
  1910. }
  1911. },
  1912. side: {
  1913. height: math.unit(11, "feet"),
  1914. weight: math.unit(80, "kg"),
  1915. name: "Side",
  1916. image: {
  1917. source: "./media/characters/rai/side.svg"
  1918. }
  1919. },
  1920. back: {
  1921. height: math.unit(11, "feet"),
  1922. weight: math.unit(80, "lb"),
  1923. name: "Back",
  1924. image: {
  1925. source: "./media/characters/rai/back.svg",
  1926. extra: 1,
  1927. bottom: 0.01
  1928. }
  1929. },
  1930. feral: {
  1931. height: math.unit(11, "feet"),
  1932. weight: math.unit(800, "lb"),
  1933. name: "Feral",
  1934. image: {
  1935. source: "./media/characters/rai/feral.svg",
  1936. extra: 1050 / 659,
  1937. bottom: 0.07
  1938. }
  1939. },
  1940. dragon: {
  1941. height: math.unit(23, "feet"),
  1942. weight: math.unit(50000, "lb"),
  1943. name: "Dragon",
  1944. image: {
  1945. source: "./media/characters/rai/dragon.svg",
  1946. extra: 2498 / 2030,
  1947. bottom: 85.2 / 2584
  1948. }
  1949. },
  1950. maw: {
  1951. height: math.unit(6 / 3.81416, "feet"),
  1952. name: "Maw",
  1953. image: {
  1954. source: "./media/characters/rai/maw.svg"
  1955. }
  1956. },
  1957. },
  1958. [
  1959. {
  1960. name: "Normal",
  1961. height: math.unit(11, "feet")
  1962. },
  1963. {
  1964. name: "Macro",
  1965. height: math.unit(302, "feet"),
  1966. default: true
  1967. },
  1968. ]
  1969. ))
  1970. characterMakers.push(() => makeCharacter(
  1971. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  1972. {
  1973. frontDressed: {
  1974. height: math.unit(216, "feet"),
  1975. weight: math.unit(7000000, "lb"),
  1976. name: "Front (Dressed)",
  1977. image: {
  1978. source: "./media/characters/jazzy/front-dressed.svg",
  1979. extra: 2738 / 2651,
  1980. bottom: 41.8 / 2786
  1981. }
  1982. },
  1983. backDressed: {
  1984. height: math.unit(216, "feet"),
  1985. weight: math.unit(7000000, "lb"),
  1986. name: "Back (Dressed)",
  1987. image: {
  1988. source: "./media/characters/jazzy/back-dressed.svg",
  1989. extra: 2775 / 2673,
  1990. bottom: 36.8 / 2817
  1991. }
  1992. },
  1993. front: {
  1994. height: math.unit(216, "feet"),
  1995. weight: math.unit(7000000, "lb"),
  1996. name: "Front",
  1997. image: {
  1998. source: "./media/characters/jazzy/front.svg",
  1999. extra: 2738 / 2651,
  2000. bottom: 41.8 / 2786
  2001. }
  2002. },
  2003. back: {
  2004. height: math.unit(216, "feet"),
  2005. weight: math.unit(7000000, "lb"),
  2006. name: "Back",
  2007. image: {
  2008. source: "./media/characters/jazzy/back.svg",
  2009. extra: 2775 / 2673,
  2010. bottom: 36.8 / 2817
  2011. }
  2012. },
  2013. maw: {
  2014. height: math.unit(20, "feet"),
  2015. name: "Maw",
  2016. image: {
  2017. source: "./media/characters/jazzy/maw.svg"
  2018. }
  2019. },
  2020. paws: {
  2021. height: math.unit(27.5, "feet"),
  2022. name: "Paws",
  2023. image: {
  2024. source: "./media/characters/jazzy/paws.svg"
  2025. }
  2026. },
  2027. eye: {
  2028. height: math.unit(4.4, "feet"),
  2029. name: "Eye",
  2030. image: {
  2031. source: "./media/characters/jazzy/eye.svg"
  2032. }
  2033. },
  2034. droneOffense: {
  2035. height: math.unit(9.5, "inches"),
  2036. name: "Drone (Offense)",
  2037. image: {
  2038. source: "./media/characters/jazzy/drone-offense.svg"
  2039. }
  2040. },
  2041. droneRecon: {
  2042. height: math.unit(9.5, "inches"),
  2043. name: "Drone (Recon)",
  2044. image: {
  2045. source: "./media/characters/jazzy/drone-recon.svg"
  2046. }
  2047. },
  2048. droneDefense: {
  2049. height: math.unit(9.5, "inches"),
  2050. name: "Drone (Defense)",
  2051. image: {
  2052. source: "./media/characters/jazzy/drone-defense.svg"
  2053. }
  2054. },
  2055. },
  2056. [
  2057. {
  2058. name: "Macro",
  2059. height: math.unit(216, "feet"),
  2060. default: true
  2061. },
  2062. ]
  2063. ))
  2064. characterMakers.push(() => makeCharacter(
  2065. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2066. {
  2067. front: {
  2068. height: math.unit(7, "feet"),
  2069. weight: math.unit(80, "kg"),
  2070. name: "Front",
  2071. image: {
  2072. source: "./media/characters/flamm/front.svg",
  2073. extra: 1794 / 1677,
  2074. bottom: 31.7 / 1828.5
  2075. }
  2076. },
  2077. },
  2078. [
  2079. {
  2080. name: "Normal",
  2081. height: math.unit(9.5, "feet")
  2082. },
  2083. {
  2084. name: "Macro",
  2085. height: math.unit(200, "feet"),
  2086. default: true
  2087. },
  2088. ]
  2089. ))
  2090. characterMakers.push(() => makeCharacter(
  2091. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2092. {
  2093. front: {
  2094. height: math.unit(7, "feet"),
  2095. weight: math.unit(80, "kg"),
  2096. name: "Front",
  2097. image: {
  2098. source: "./media/characters/zephiro/front.svg",
  2099. extra: 2309 / 2162,
  2100. bottom: 0.069
  2101. }
  2102. },
  2103. side: {
  2104. height: math.unit(7, "feet"),
  2105. weight: math.unit(80, "kg"),
  2106. name: "Side",
  2107. image: {
  2108. source: "./media/characters/zephiro/side.svg",
  2109. extra: 2403 / 2279,
  2110. bottom: 0.015
  2111. }
  2112. },
  2113. back: {
  2114. height: math.unit(7, "feet"),
  2115. weight: math.unit(80, "kg"),
  2116. name: "Back",
  2117. image: {
  2118. source: "./media/characters/zephiro/back.svg",
  2119. extra: 2373 / 2244,
  2120. bottom: 0.013
  2121. }
  2122. },
  2123. },
  2124. [
  2125. {
  2126. name: "Micro",
  2127. height: math.unit(3, "inches")
  2128. },
  2129. {
  2130. name: "Normal",
  2131. height: math.unit(5 + 3 / 12, "feet"),
  2132. default: true
  2133. },
  2134. {
  2135. name: "Macro",
  2136. height: math.unit(118, "feet")
  2137. },
  2138. ]
  2139. ))
  2140. characterMakers.push(() => makeCharacter(
  2141. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2142. {
  2143. front: {
  2144. height: math.unit(5, "feet"),
  2145. weight: math.unit(90, "kg"),
  2146. name: "Front",
  2147. image: {
  2148. source: "./media/characters/fory/front.svg",
  2149. extra: 2862 / 2674,
  2150. bottom: 180 / 3043.8
  2151. }
  2152. },
  2153. back: {
  2154. height: math.unit(5, "feet"),
  2155. weight: math.unit(90, "kg"),
  2156. name: "Back",
  2157. image: {
  2158. source: "./media/characters/fory/back.svg",
  2159. extra: 2962 / 2791,
  2160. bottom: 106 / 3071.8
  2161. }
  2162. },
  2163. foot: {
  2164. height: math.unit(2.14, "feet"),
  2165. name: "Foot",
  2166. image: {
  2167. source: "./media/characters/fory/foot.svg"
  2168. }
  2169. },
  2170. },
  2171. [
  2172. {
  2173. name: "Normal",
  2174. height: math.unit(5, "feet")
  2175. },
  2176. {
  2177. name: "Macro",
  2178. height: math.unit(50, "feet"),
  2179. default: true
  2180. },
  2181. {
  2182. name: "Megamacro",
  2183. height: math.unit(10, "miles")
  2184. },
  2185. {
  2186. name: "Gigamacro",
  2187. height: math.unit(5, "earths")
  2188. },
  2189. ]
  2190. ))
  2191. characterMakers.push(() => makeCharacter(
  2192. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2193. {
  2194. front: {
  2195. height: math.unit(7, "feet"),
  2196. weight: math.unit(90, "kg"),
  2197. name: "Front",
  2198. image: {
  2199. source: "./media/characters/kurrikage/front.svg",
  2200. extra: 1,
  2201. bottom: 0.035
  2202. }
  2203. },
  2204. back: {
  2205. height: math.unit(7, "feet"),
  2206. weight: math.unit(90, "lb"),
  2207. name: "Back",
  2208. image: {
  2209. source: "./media/characters/kurrikage/back.svg"
  2210. }
  2211. },
  2212. paw: {
  2213. height: math.unit(1.5, "feet"),
  2214. name: "Paw",
  2215. image: {
  2216. source: "./media/characters/kurrikage/paw.svg"
  2217. }
  2218. },
  2219. staff: {
  2220. height: math.unit(6.7, "feet"),
  2221. name: "Staff",
  2222. image: {
  2223. source: "./media/characters/kurrikage/staff.svg"
  2224. }
  2225. },
  2226. peek: {
  2227. height: math.unit(1.05, "feet"),
  2228. name: "Peeking",
  2229. image: {
  2230. source: "./media/characters/kurrikage/peek.svg",
  2231. bottom: 0.08
  2232. }
  2233. },
  2234. },
  2235. [
  2236. {
  2237. name: "Normal",
  2238. height: math.unit(12, "feet"),
  2239. default: true
  2240. },
  2241. {
  2242. name: "Big",
  2243. height: math.unit(20, "feet")
  2244. },
  2245. {
  2246. name: "Macro",
  2247. height: math.unit(500, "feet")
  2248. },
  2249. {
  2250. name: "Megamacro",
  2251. height: math.unit(20, "miles")
  2252. },
  2253. ]
  2254. ))
  2255. characterMakers.push(() => makeCharacter(
  2256. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2257. {
  2258. front: {
  2259. height: math.unit(6, "feet"),
  2260. weight: math.unit(75, "kg"),
  2261. name: "Front",
  2262. image: {
  2263. source: "./media/characters/shingo/front.svg",
  2264. extra: 3511 / 3338,
  2265. bottom: 0.005
  2266. }
  2267. },
  2268. paw: {
  2269. height: math.unit(1, "feet"),
  2270. name: "Paw",
  2271. image: {
  2272. source: "./media/characters/shingo/paw.svg"
  2273. }
  2274. },
  2275. },
  2276. [
  2277. {
  2278. name: "Micro",
  2279. height: math.unit(4, "inches")
  2280. },
  2281. {
  2282. name: "Normal",
  2283. height: math.unit(6, "feet"),
  2284. default: true
  2285. },
  2286. {
  2287. name: "Macro",
  2288. height: math.unit(108, "feet")
  2289. }
  2290. ]
  2291. ))
  2292. characterMakers.push(() => makeCharacter(
  2293. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2294. {
  2295. side: {
  2296. height: math.unit(6, "feet"),
  2297. weight: math.unit(75, "kg"),
  2298. name: "Side",
  2299. image: {
  2300. source: "./media/characters/aigey/side.svg"
  2301. }
  2302. },
  2303. },
  2304. [
  2305. {
  2306. name: "Macro",
  2307. height: math.unit(200, "feet"),
  2308. default: true
  2309. },
  2310. {
  2311. name: "Megamacro",
  2312. height: math.unit(100, "miles")
  2313. },
  2314. ]
  2315. )
  2316. )
  2317. characterMakers.push(() => makeCharacter(
  2318. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2319. {
  2320. front: {
  2321. height: math.unit(5 + 5 / 12, "feet"),
  2322. weight: math.unit(75, "kg"),
  2323. name: "Front",
  2324. image: {
  2325. source: "./media/characters/natasha/front.svg",
  2326. extra: 859 / 824,
  2327. bottom: 23 / 879.6
  2328. }
  2329. },
  2330. frontNsfw: {
  2331. height: math.unit(5 + 5 / 12, "feet"),
  2332. weight: math.unit(75, "kg"),
  2333. name: "Front (NSFW)",
  2334. image: {
  2335. source: "./media/characters/natasha/front-nsfw.svg",
  2336. extra: 859 / 824,
  2337. bottom: 23 / 879.6
  2338. }
  2339. },
  2340. frontErect: {
  2341. height: math.unit(5 + 5 / 12, "feet"),
  2342. weight: math.unit(75, "kg"),
  2343. name: "Front (Erect)",
  2344. image: {
  2345. source: "./media/characters/natasha/front-erect.svg",
  2346. extra: 859 / 824,
  2347. bottom: 23 / 879.6
  2348. }
  2349. },
  2350. back: {
  2351. height: math.unit(5 + 5 / 12, "feet"),
  2352. weight: math.unit(75, "kg"),
  2353. name: "Back",
  2354. image: {
  2355. source: "./media/characters/natasha/back.svg",
  2356. extra: 887.9 / 852.6,
  2357. bottom: 9.7 / 896.4
  2358. }
  2359. },
  2360. backAlt: {
  2361. height: math.unit(5 + 5 / 12, "feet"),
  2362. weight: math.unit(75, "kg"),
  2363. name: "Back (Alt)",
  2364. image: {
  2365. source: "./media/characters/natasha/back-alt.svg",
  2366. extra: 1236.7 / 1192,
  2367. bottom: 22.3 / 1258.2
  2368. }
  2369. },
  2370. dick: {
  2371. height: math.unit(1.772, "feet"),
  2372. name: "Dick",
  2373. image: {
  2374. source: "./media/characters/natasha/dick.svg"
  2375. }
  2376. },
  2377. },
  2378. [
  2379. {
  2380. name: "Normal",
  2381. height: math.unit(5 + 5 / 12, "feet")
  2382. },
  2383. {
  2384. name: "Large",
  2385. height: math.unit(12, "feet")
  2386. },
  2387. {
  2388. name: "Macro",
  2389. height: math.unit(100, "feet"),
  2390. default: true
  2391. },
  2392. {
  2393. name: "Macro+",
  2394. height: math.unit(260, "feet")
  2395. },
  2396. {
  2397. name: "Macro++",
  2398. height: math.unit(1, "mile")
  2399. },
  2400. ]
  2401. ))
  2402. characterMakers.push(() => makeCharacter(
  2403. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2404. {
  2405. front: {
  2406. height: math.unit(6, "feet"),
  2407. weight: math.unit(75, "kg"),
  2408. name: "Front",
  2409. image: {
  2410. source: "./media/characters/malik/front.svg"
  2411. }
  2412. },
  2413. side: {
  2414. height: math.unit(6, "feet"),
  2415. weight: math.unit(75, "kg"),
  2416. name: "Side",
  2417. image: {
  2418. source: "./media/characters/malik/side.svg",
  2419. extra: 1.1539
  2420. }
  2421. },
  2422. back: {
  2423. height: math.unit(6, "feet"),
  2424. weight: math.unit(75, "kg"),
  2425. name: "Back",
  2426. image: {
  2427. source: "./media/characters/malik/back.svg"
  2428. }
  2429. },
  2430. },
  2431. [
  2432. {
  2433. name: "Macro",
  2434. height: math.unit(156, "feet"),
  2435. default: true
  2436. },
  2437. {
  2438. name: "Macro+",
  2439. height: math.unit(1188, "feet")
  2440. },
  2441. ]
  2442. ))
  2443. characterMakers.push(() => makeCharacter(
  2444. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2445. {
  2446. front: {
  2447. height: math.unit(6, "feet"),
  2448. weight: math.unit(75, "kg"),
  2449. name: "Front",
  2450. image: {
  2451. source: "./media/characters/sefer/front.svg",
  2452. extra: 848 / 659,
  2453. bottom: 28.3 / 876.442
  2454. }
  2455. },
  2456. back: {
  2457. height: math.unit(6, "feet"),
  2458. weight: math.unit(75, "kg"),
  2459. name: "Back",
  2460. image: {
  2461. source: "./media/characters/sefer/back.svg",
  2462. extra: 864 / 695,
  2463. bottom: 10 / 871
  2464. }
  2465. },
  2466. frontDressed: {
  2467. height: math.unit(6, "feet"),
  2468. weight: math.unit(75, "kg"),
  2469. name: "Front (Dressed)",
  2470. image: {
  2471. source: "./media/characters/sefer/front-dressed.svg",
  2472. extra: 839 / 653,
  2473. bottom: 37.6 / 878
  2474. }
  2475. },
  2476. },
  2477. [
  2478. {
  2479. name: "Normal",
  2480. height: math.unit(6, "feet"),
  2481. default: true
  2482. },
  2483. ]
  2484. ))
  2485. characterMakers.push(() => makeCharacter(
  2486. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2487. {
  2488. body: {
  2489. height: math.unit(2.2428, "meter"),
  2490. weight: math.unit(124.738, "kg"),
  2491. name: "Body",
  2492. image: {
  2493. extra: 1225 / 1050,
  2494. source: "./media/characters/north/front.svg"
  2495. }
  2496. }
  2497. },
  2498. [
  2499. {
  2500. name: "Micro",
  2501. height: math.unit(4, "inches")
  2502. },
  2503. {
  2504. name: "Macro",
  2505. height: math.unit(63, "meters")
  2506. },
  2507. {
  2508. name: "Megamacro",
  2509. height: math.unit(101, "miles"),
  2510. default: true
  2511. }
  2512. ]
  2513. ))
  2514. characterMakers.push(() => makeCharacter(
  2515. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2516. {
  2517. angled: {
  2518. height: math.unit(4, "meter"),
  2519. weight: math.unit(150, "kg"),
  2520. name: "Angled",
  2521. image: {
  2522. source: "./media/characters/talan/angled-sfw.svg",
  2523. bottom: 29 / 3734
  2524. }
  2525. },
  2526. angledNsfw: {
  2527. height: math.unit(4, "meter"),
  2528. weight: math.unit(150, "kg"),
  2529. name: "Angled (NSFW)",
  2530. image: {
  2531. source: "./media/characters/talan/angled-nsfw.svg",
  2532. bottom: 29 / 3734
  2533. }
  2534. },
  2535. frontNsfw: {
  2536. height: math.unit(4, "meter"),
  2537. weight: math.unit(150, "kg"),
  2538. name: "Front (NSFW)",
  2539. image: {
  2540. source: "./media/characters/talan/front-nsfw.svg",
  2541. bottom: 29 / 3734
  2542. }
  2543. },
  2544. sideNsfw: {
  2545. height: math.unit(4, "meter"),
  2546. weight: math.unit(150, "kg"),
  2547. name: "Side (NSFW)",
  2548. image: {
  2549. source: "./media/characters/talan/side-nsfw.svg",
  2550. bottom: 29 / 3734
  2551. }
  2552. },
  2553. back: {
  2554. height: math.unit(4, "meter"),
  2555. weight: math.unit(150, "kg"),
  2556. name: "Back",
  2557. image: {
  2558. source: "./media/characters/talan/back.svg"
  2559. }
  2560. },
  2561. dickBottom: {
  2562. height: math.unit(0.621, "meter"),
  2563. name: "Dick (Bottom)",
  2564. image: {
  2565. source: "./media/characters/talan/dick-bottom.svg"
  2566. }
  2567. },
  2568. dickTop: {
  2569. height: math.unit(0.621, "meter"),
  2570. name: "Dick (Top)",
  2571. image: {
  2572. source: "./media/characters/talan/dick-top.svg"
  2573. }
  2574. },
  2575. dickSide: {
  2576. height: math.unit(0.305, "meter"),
  2577. name: "Dick (Side)",
  2578. image: {
  2579. source: "./media/characters/talan/dick-side.svg"
  2580. }
  2581. },
  2582. dickFront: {
  2583. height: math.unit(0.305, "meter"),
  2584. name: "Dick (Front)",
  2585. image: {
  2586. source: "./media/characters/talan/dick-front.svg"
  2587. }
  2588. },
  2589. },
  2590. [
  2591. {
  2592. name: "Normal",
  2593. height: math.unit(4, "meters")
  2594. },
  2595. {
  2596. name: "Macro",
  2597. height: math.unit(100, "meters")
  2598. },
  2599. {
  2600. name: "Megamacro",
  2601. height: math.unit(2, "miles"),
  2602. default: true
  2603. },
  2604. {
  2605. name: "Gigamacro",
  2606. height: math.unit(5000, "miles")
  2607. },
  2608. {
  2609. name: "Teramacro",
  2610. height: math.unit(100, "parsecs")
  2611. }
  2612. ]
  2613. ))
  2614. characterMakers.push(() => makeCharacter(
  2615. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2616. {
  2617. front: {
  2618. height: math.unit(2, "meter"),
  2619. weight: math.unit(90, "kg"),
  2620. name: "Front",
  2621. image: {
  2622. source: "./media/characters/gael'rathus/front.svg"
  2623. }
  2624. },
  2625. frontAlt: {
  2626. height: math.unit(2, "meter"),
  2627. weight: math.unit(90, "kg"),
  2628. name: "Front (alt)",
  2629. image: {
  2630. source: "./media/characters/gael'rathus/front-alt.svg"
  2631. }
  2632. },
  2633. frontAlt2: {
  2634. height: math.unit(2, "meter"),
  2635. weight: math.unit(90, "kg"),
  2636. name: "Front (alt 2)",
  2637. image: {
  2638. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2639. }
  2640. }
  2641. },
  2642. [
  2643. {
  2644. name: "Normal",
  2645. height: math.unit(9, "feet"),
  2646. default: true
  2647. },
  2648. {
  2649. name: "Large",
  2650. height: math.unit(25, "feet")
  2651. },
  2652. {
  2653. name: "Macro",
  2654. height: math.unit(0.25, "miles")
  2655. },
  2656. {
  2657. name: "Megamacro",
  2658. height: math.unit(10, "miles")
  2659. }
  2660. ]
  2661. ))
  2662. characterMakers.push(() => makeCharacter(
  2663. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2664. {
  2665. side: {
  2666. height: math.unit(2, "meter"),
  2667. weight: math.unit(140, "kg"),
  2668. name: "Side",
  2669. image: {
  2670. source: "./media/characters/sosha/side.svg",
  2671. bottom: 0.042
  2672. }
  2673. },
  2674. },
  2675. [
  2676. {
  2677. name: "Normal",
  2678. height: math.unit(12, "feet"),
  2679. default: true
  2680. }
  2681. ]
  2682. ))
  2683. characterMakers.push(() => makeCharacter(
  2684. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2685. {
  2686. side: {
  2687. height: math.unit(5 + 5 / 12, "feet"),
  2688. weight: math.unit(170, "kg"),
  2689. name: "Side",
  2690. image: {
  2691. source: "./media/characters/runnola/side.svg",
  2692. extra: 741 / 448,
  2693. bottom: 0.05
  2694. }
  2695. },
  2696. },
  2697. [
  2698. {
  2699. name: "Small",
  2700. height: math.unit(3, "feet")
  2701. },
  2702. {
  2703. name: "Normal",
  2704. height: math.unit(5 + 5 / 12, "feet"),
  2705. default: true
  2706. },
  2707. {
  2708. name: "Big",
  2709. height: math.unit(10, "feet")
  2710. },
  2711. ]
  2712. ))
  2713. characterMakers.push(() => makeCharacter(
  2714. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2715. {
  2716. front: {
  2717. height: math.unit(2, "meter"),
  2718. weight: math.unit(50, "kg"),
  2719. name: "Front",
  2720. image: {
  2721. source: "./media/characters/kurribird/front.svg",
  2722. bottom: 0.015
  2723. }
  2724. },
  2725. frontAlt: {
  2726. height: math.unit(1.5, "meter"),
  2727. weight: math.unit(50, "kg"),
  2728. name: "Front (Alt)",
  2729. image: {
  2730. source: "./media/characters/kurribird/front-alt.svg",
  2731. extra: 1.45
  2732. }
  2733. },
  2734. },
  2735. [
  2736. {
  2737. name: "Normal",
  2738. height: math.unit(7, "feet")
  2739. },
  2740. {
  2741. name: "Big",
  2742. height: math.unit(12, "feet"),
  2743. default: true
  2744. },
  2745. {
  2746. name: "Macro",
  2747. height: math.unit(1500, "feet")
  2748. },
  2749. {
  2750. name: "Megamacro",
  2751. height: math.unit(2, "miles")
  2752. }
  2753. ]
  2754. ))
  2755. characterMakers.push(() => makeCharacter(
  2756. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2757. {
  2758. front: {
  2759. height: math.unit(2, "meter"),
  2760. weight: math.unit(80, "kg"),
  2761. name: "Front",
  2762. image: {
  2763. source: "./media/characters/elbial/front.svg",
  2764. extra: 1643 / 1556,
  2765. bottom: 60.2 / 1696
  2766. }
  2767. },
  2768. side: {
  2769. height: math.unit(2, "meter"),
  2770. weight: math.unit(80, "kg"),
  2771. name: "Side",
  2772. image: {
  2773. source: "./media/characters/elbial/side.svg",
  2774. extra: 1630 / 1565,
  2775. bottom: 71.5 / 1697
  2776. }
  2777. },
  2778. back: {
  2779. height: math.unit(2, "meter"),
  2780. weight: math.unit(80, "kg"),
  2781. name: "Back",
  2782. image: {
  2783. source: "./media/characters/elbial/back.svg",
  2784. extra: 1668 / 1595,
  2785. bottom: 5.6 / 1672
  2786. }
  2787. },
  2788. frontDressed: {
  2789. height: math.unit(2, "meter"),
  2790. weight: math.unit(80, "kg"),
  2791. name: "Front (Dressed)",
  2792. image: {
  2793. source: "./media/characters/elbial/front-dressed.svg",
  2794. extra: 1653 / 1584,
  2795. bottom: 57 / 1708
  2796. }
  2797. },
  2798. genitals: {
  2799. height: math.unit(2 / 3.367, "meter"),
  2800. name: "Genitals",
  2801. image: {
  2802. source: "./media/characters/elbial/genitals.svg"
  2803. }
  2804. },
  2805. },
  2806. [
  2807. {
  2808. name: "Large",
  2809. height: math.unit(100, "feet")
  2810. },
  2811. {
  2812. name: "Macro",
  2813. height: math.unit(500, "feet"),
  2814. default: true
  2815. },
  2816. {
  2817. name: "Megamacro",
  2818. height: math.unit(10, "miles")
  2819. },
  2820. {
  2821. name: "Gigamacro",
  2822. height: math.unit(25000, "miles")
  2823. },
  2824. {
  2825. name: "Full-Size",
  2826. height: math.unit(8000000, "gigaparsecs")
  2827. }
  2828. ]
  2829. ))
  2830. characterMakers.push(() => makeCharacter(
  2831. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2832. {
  2833. front: {
  2834. height: math.unit(2, "meter"),
  2835. weight: math.unit(60, "kg"),
  2836. name: "Front",
  2837. image: {
  2838. source: "./media/characters/noah/front.svg"
  2839. }
  2840. },
  2841. talons: {
  2842. height: math.unit(0.315, "meter"),
  2843. name: "Talons",
  2844. image: {
  2845. source: "./media/characters/noah/talons.svg"
  2846. }
  2847. }
  2848. },
  2849. [
  2850. {
  2851. name: "Large",
  2852. height: math.unit(50, "feet")
  2853. },
  2854. {
  2855. name: "Macro",
  2856. height: math.unit(750, "feet"),
  2857. default: true
  2858. },
  2859. {
  2860. name: "Megamacro",
  2861. height: math.unit(50, "miles")
  2862. },
  2863. {
  2864. name: "Gigamacro",
  2865. height: math.unit(100000, "miles")
  2866. },
  2867. {
  2868. name: "Full-Size",
  2869. height: math.unit(3000000000, "miles")
  2870. }
  2871. ]
  2872. ))
  2873. characterMakers.push(() => makeCharacter(
  2874. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2875. {
  2876. front: {
  2877. height: math.unit(2, "meter"),
  2878. weight: math.unit(80, "kg"),
  2879. name: "Front",
  2880. image: {
  2881. source: "./media/characters/natalya/front.svg"
  2882. }
  2883. },
  2884. back: {
  2885. height: math.unit(2, "meter"),
  2886. weight: math.unit(80, "kg"),
  2887. name: "Back",
  2888. image: {
  2889. source: "./media/characters/natalya/back.svg"
  2890. }
  2891. }
  2892. },
  2893. [
  2894. {
  2895. name: "Normal",
  2896. height: math.unit(150, "feet"),
  2897. default: true
  2898. },
  2899. {
  2900. name: "Megamacro",
  2901. height: math.unit(5, "miles")
  2902. },
  2903. {
  2904. name: "Full-Size",
  2905. height: math.unit(600, "kiloparsecs")
  2906. }
  2907. ]
  2908. ))
  2909. characterMakers.push(() => makeCharacter(
  2910. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2911. {
  2912. front: {
  2913. height: math.unit(2, "meter"),
  2914. weight: math.unit(50, "kg"),
  2915. name: "Front",
  2916. image: {
  2917. source: "./media/characters/erestrebah/front.svg",
  2918. extra: 208 / 193,
  2919. bottom: 0.055
  2920. }
  2921. },
  2922. back: {
  2923. height: math.unit(2, "meter"),
  2924. weight: math.unit(50, "kg"),
  2925. name: "Back",
  2926. image: {
  2927. source: "./media/characters/erestrebah/back.svg",
  2928. extra: 1.3
  2929. }
  2930. }
  2931. },
  2932. [
  2933. {
  2934. name: "Normal",
  2935. height: math.unit(10, "feet")
  2936. },
  2937. {
  2938. name: "Large",
  2939. height: math.unit(50, "feet"),
  2940. default: true
  2941. },
  2942. {
  2943. name: "Macro",
  2944. height: math.unit(300, "feet")
  2945. },
  2946. {
  2947. name: "Macro+",
  2948. height: math.unit(750, "feet")
  2949. },
  2950. {
  2951. name: "Megamacro",
  2952. height: math.unit(3, "miles")
  2953. }
  2954. ]
  2955. ))
  2956. characterMakers.push(() => makeCharacter(
  2957. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2958. {
  2959. front: {
  2960. height: math.unit(2, "meter"),
  2961. weight: math.unit(80, "kg"),
  2962. name: "Front",
  2963. image: {
  2964. source: "./media/characters/jennifer/front.svg",
  2965. bottom: 0.11,
  2966. extra: 1.16
  2967. }
  2968. },
  2969. frontAlt: {
  2970. height: math.unit(2, "meter"),
  2971. weight: math.unit(80, "kg"),
  2972. name: "Front (Alt)",
  2973. image: {
  2974. source: "./media/characters/jennifer/front-alt.svg"
  2975. }
  2976. }
  2977. },
  2978. [
  2979. {
  2980. name: "Canon Height",
  2981. height: math.unit(120, "feet"),
  2982. default: true
  2983. },
  2984. {
  2985. name: "Macro+",
  2986. height: math.unit(300, "feet")
  2987. },
  2988. {
  2989. name: "Megamacro",
  2990. height: math.unit(20000, "feet")
  2991. }
  2992. ]
  2993. ))
  2994. characterMakers.push(() => makeCharacter(
  2995. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  2996. {
  2997. front: {
  2998. height: math.unit(2, "meter"),
  2999. weight: math.unit(50, "kg"),
  3000. name: "Front",
  3001. image: {
  3002. source: "./media/characters/kalista/front.svg",
  3003. extra: 1947 / 1700,
  3004. bottom: 76.6 / 1412.98
  3005. }
  3006. },
  3007. back: {
  3008. height: math.unit(2, "meter"),
  3009. weight: math.unit(50, "kg"),
  3010. name: "Back",
  3011. image: {
  3012. source: "./media/characters/kalista/back.svg",
  3013. extra: 1366 / 1156,
  3014. bottom: 33.9 / 1362.78
  3015. }
  3016. }
  3017. },
  3018. [
  3019. {
  3020. name: "Uncomfortably Small",
  3021. height: math.unit(10, "feet")
  3022. },
  3023. {
  3024. name: "Small",
  3025. height: math.unit(30, "feet")
  3026. },
  3027. {
  3028. name: "Macro",
  3029. height: math.unit(100, "feet"),
  3030. default: true
  3031. },
  3032. {
  3033. name: "Macro+",
  3034. height: math.unit(2000, "feet")
  3035. },
  3036. {
  3037. name: "True Form",
  3038. height: math.unit(8924, "miles")
  3039. }
  3040. ]
  3041. ))
  3042. characterMakers.push(() => makeCharacter(
  3043. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3044. {
  3045. front: {
  3046. height: math.unit(2, "meter"),
  3047. weight: math.unit(120, "kg"),
  3048. name: "Front",
  3049. image: {
  3050. source: "./media/characters/ggv/front.svg"
  3051. }
  3052. },
  3053. side: {
  3054. height: math.unit(2, "meter"),
  3055. weight: math.unit(120, "kg"),
  3056. name: "Side",
  3057. image: {
  3058. source: "./media/characters/ggv/side.svg"
  3059. }
  3060. }
  3061. },
  3062. [
  3063. {
  3064. name: "Extremely Puny",
  3065. height: math.unit(9 + 5 / 12, "feet")
  3066. },
  3067. {
  3068. name: "Horribly Small",
  3069. height: math.unit(47.7, "miles"),
  3070. default: true
  3071. },
  3072. {
  3073. name: "Reasonably Sized",
  3074. height: math.unit(25000, "parsecs")
  3075. },
  3076. {
  3077. name: "Slightly Uncompressed",
  3078. height: math.unit(7.77e31, "parsecs")
  3079. },
  3080. {
  3081. name: "Omniversal",
  3082. height: math.unit(1e300, "meters")
  3083. },
  3084. ]
  3085. ))
  3086. characterMakers.push(() => makeCharacter(
  3087. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3088. {
  3089. front: {
  3090. height: math.unit(2, "meter"),
  3091. weight: math.unit(75, "lb"),
  3092. name: "Front",
  3093. image: {
  3094. source: "./media/characters/napalm/front.svg"
  3095. }
  3096. },
  3097. back: {
  3098. height: math.unit(2, "meter"),
  3099. weight: math.unit(75, "lb"),
  3100. name: "Back",
  3101. image: {
  3102. source: "./media/characters/napalm/back.svg"
  3103. }
  3104. }
  3105. },
  3106. [
  3107. {
  3108. name: "Standard",
  3109. height: math.unit(55, "feet"),
  3110. default: true
  3111. }
  3112. ]
  3113. ))
  3114. characterMakers.push(() => makeCharacter(
  3115. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3116. {
  3117. front: {
  3118. height: math.unit(7 + 5 / 6, "feet"),
  3119. weight: math.unit(325, "lb"),
  3120. name: "Front",
  3121. image: {
  3122. source: "./media/characters/asana/front.svg",
  3123. extra: 1133 / 1060,
  3124. bottom: 15.2/1148.6
  3125. }
  3126. },
  3127. back: {
  3128. height: math.unit(7 + 5 / 6, "feet"),
  3129. weight: math.unit(325, "lb"),
  3130. name: "Back",
  3131. image: {
  3132. source: "./media/characters/asana/back.svg",
  3133. extra: 1114 / 1043,
  3134. bottom: 5/1120
  3135. }
  3136. },
  3137. dressedDark: {
  3138. height: math.unit(7 + 5 / 6, "feet"),
  3139. weight: math.unit(325, "lb"),
  3140. name: "Dressed (Dark)",
  3141. image: {
  3142. source: "./media/characters/asana/dressed-dark.svg",
  3143. extra: 1133 / 1060,
  3144. bottom: 15.2/1148.6
  3145. }
  3146. },
  3147. dressedLight: {
  3148. height: math.unit(7 + 5 / 6, "feet"),
  3149. weight: math.unit(325, "lb"),
  3150. name: "Dressed (Light)",
  3151. image: {
  3152. source: "./media/characters/asana/dressed-light.svg",
  3153. extra: 1133 / 1060,
  3154. bottom: 15.2/1148.6
  3155. }
  3156. },
  3157. },
  3158. [
  3159. {
  3160. name: "Standard",
  3161. height: math.unit(7 + 5 / 6, "feet"),
  3162. default: true
  3163. },
  3164. {
  3165. name: "Large",
  3166. height: math.unit(10, "meters")
  3167. },
  3168. {
  3169. name: "Macro",
  3170. height: math.unit(2500, "meters")
  3171. },
  3172. {
  3173. name: "Megamacro",
  3174. height: math.unit(5e6, "meters")
  3175. },
  3176. {
  3177. name: "Examacro",
  3178. height: math.unit(5e12, "lightyears")
  3179. },
  3180. {
  3181. name: "Max Size",
  3182. height: math.unit(1e31, "lightyears")
  3183. }
  3184. ]
  3185. ))
  3186. characterMakers.push(() => makeCharacter(
  3187. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3188. {
  3189. front: {
  3190. height: math.unit(2, "meter"),
  3191. weight: math.unit(60, "kg"),
  3192. name: "Front",
  3193. image: {
  3194. source: "./media/characters/ebony/front.svg",
  3195. bottom: 0.03,
  3196. extra: 1045 / 810 + 0.03
  3197. }
  3198. },
  3199. side: {
  3200. height: math.unit(2, "meter"),
  3201. weight: math.unit(60, "kg"),
  3202. name: "Side",
  3203. image: {
  3204. source: "./media/characters/ebony/side.svg",
  3205. bottom: 0.03,
  3206. extra: 1045 / 810 + 0.03
  3207. }
  3208. },
  3209. back: {
  3210. height: math.unit(2, "meter"),
  3211. weight: math.unit(60, "kg"),
  3212. name: "Back",
  3213. image: {
  3214. source: "./media/characters/ebony/back.svg",
  3215. bottom: 0.01,
  3216. extra: 1045 / 810 + 0.01
  3217. }
  3218. },
  3219. },
  3220. [
  3221. // TODO check why I did this lol
  3222. {
  3223. name: "Standard",
  3224. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3225. default: true
  3226. },
  3227. {
  3228. name: "Macro",
  3229. height: math.unit(200, "feet")
  3230. },
  3231. {
  3232. name: "Gigamacro",
  3233. height: math.unit(13000, "km")
  3234. }
  3235. ]
  3236. ))
  3237. characterMakers.push(() => makeCharacter(
  3238. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3239. {
  3240. front: {
  3241. height: math.unit(6, "feet"),
  3242. weight: math.unit(175, "lb"),
  3243. name: "Front",
  3244. image: {
  3245. source: "./media/characters/mountain/front.svg",
  3246. extra: 972/955,
  3247. bottom: 64/1036.6
  3248. }
  3249. },
  3250. back: {
  3251. height: math.unit(6, "feet"),
  3252. weight: math.unit(175, "lb"),
  3253. name: "Back",
  3254. image: {
  3255. source: "./media/characters/mountain/back.svg",
  3256. extra: 970/950,
  3257. bottom: 28.25/999
  3258. }
  3259. },
  3260. },
  3261. [
  3262. {
  3263. name: "Large",
  3264. height: math.unit(20, "meters")
  3265. },
  3266. {
  3267. name: "Macro",
  3268. height: math.unit(300, "meters")
  3269. },
  3270. {
  3271. name: "Gigamacro",
  3272. height: math.unit(10000, "km"),
  3273. default: true
  3274. },
  3275. {
  3276. name: "Examacro",
  3277. height: math.unit(10e9, "lightyears")
  3278. }
  3279. ]
  3280. ))
  3281. characterMakers.push(() => makeCharacter(
  3282. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3283. {
  3284. front: {
  3285. height: math.unit(8, "feet"),
  3286. weight: math.unit(500, "lb"),
  3287. name: "Front",
  3288. image: {
  3289. source: "./media/characters/rick/front.svg"
  3290. }
  3291. }
  3292. },
  3293. [
  3294. {
  3295. name: "Normal",
  3296. height: math.unit(8, "feet"),
  3297. default: true
  3298. },
  3299. {
  3300. name: "Macro",
  3301. height: math.unit(5, "km")
  3302. }
  3303. ]
  3304. ))
  3305. characterMakers.push(() => makeCharacter(
  3306. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3307. {
  3308. front: {
  3309. height: math.unit(8, "feet"),
  3310. weight: math.unit(120, "lb"),
  3311. name: "Front",
  3312. image: {
  3313. source: "./media/characters/ona/front.svg"
  3314. }
  3315. },
  3316. frontAlt: {
  3317. height: math.unit(8, "feet"),
  3318. weight: math.unit(120, "lb"),
  3319. name: "Front (Alt)",
  3320. image: {
  3321. source: "./media/characters/ona/front-alt.svg"
  3322. }
  3323. },
  3324. back: {
  3325. height: math.unit(8, "feet"),
  3326. weight: math.unit(120, "lb"),
  3327. name: "Back",
  3328. image: {
  3329. source: "./media/characters/ona/back.svg"
  3330. }
  3331. },
  3332. foot: {
  3333. height: math.unit(1.1, "feet"),
  3334. name: "Foot",
  3335. image: {
  3336. source: "./media/characters/ona/foot.svg"
  3337. }
  3338. }
  3339. },
  3340. [
  3341. {
  3342. name: "Megamacro",
  3343. height: math.unit(70, "km"),
  3344. default: true
  3345. },
  3346. {
  3347. name: "Gigamacro",
  3348. height: math.unit(681818, "miles")
  3349. },
  3350. {
  3351. name: "Examacro",
  3352. height: math.unit(3800000, "lightyears")
  3353. },
  3354. ]
  3355. ))
  3356. characterMakers.push(() => makeCharacter(
  3357. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3358. {
  3359. front: {
  3360. height: math.unit(12, "feet"),
  3361. weight: math.unit(3000, "lb"),
  3362. name: "Front",
  3363. image: {
  3364. source: "./media/characters/mech/front.svg",
  3365. bottom: 0.025,
  3366. }
  3367. },
  3368. back: {
  3369. height: math.unit(12, "feet"),
  3370. weight: math.unit(3000, "lb"),
  3371. name: "Back",
  3372. image: {
  3373. source: "./media/characters/mech/back.svg",
  3374. bottom: 0.03,
  3375. }
  3376. }
  3377. },
  3378. [
  3379. {
  3380. name: "Normal",
  3381. height: math.unit(12, "feet")
  3382. },
  3383. {
  3384. name: "Macro",
  3385. height: math.unit(300, "feet"),
  3386. default: true
  3387. },
  3388. {
  3389. name: "Macro+",
  3390. height: math.unit(1500, "feet")
  3391. },
  3392. ]
  3393. ))
  3394. characterMakers.push(() => makeCharacter(
  3395. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3396. {
  3397. front: {
  3398. height: math.unit(1.3, "meter"),
  3399. weight: math.unit(30, "kg"),
  3400. name: "Front",
  3401. image: {
  3402. source: "./media/characters/gregory/front.svg",
  3403. }
  3404. }
  3405. },
  3406. [
  3407. {
  3408. name: "Normal",
  3409. height: math.unit(1.3, "meter"),
  3410. default: true
  3411. },
  3412. {
  3413. name: "Macro",
  3414. height: math.unit(20, "meter")
  3415. }
  3416. ]
  3417. ))
  3418. characterMakers.push(() => makeCharacter(
  3419. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3420. {
  3421. front: {
  3422. height: math.unit(2.8, "meter"),
  3423. weight: math.unit(200, "kg"),
  3424. name: "Front",
  3425. image: {
  3426. source: "./media/characters/elory/front.svg",
  3427. }
  3428. }
  3429. },
  3430. [
  3431. {
  3432. name: "Normal",
  3433. height: math.unit(2.8, "meter"),
  3434. default: true
  3435. },
  3436. {
  3437. name: "Macro",
  3438. height: math.unit(38, "meter")
  3439. }
  3440. ]
  3441. ))
  3442. characterMakers.push(() => makeCharacter(
  3443. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3444. {
  3445. front: {
  3446. height: math.unit(470, "feet"),
  3447. weight: math.unit(924, "tons"),
  3448. name: "Front",
  3449. image: {
  3450. source: "./media/characters/angelpatamon/front.svg",
  3451. }
  3452. }
  3453. },
  3454. [
  3455. {
  3456. name: "Normal",
  3457. height: math.unit(470, "feet"),
  3458. default: true
  3459. },
  3460. {
  3461. name: "Deity Size I",
  3462. height: math.unit(28651.2, "km")
  3463. },
  3464. {
  3465. name: "Deity Size II",
  3466. height: math.unit(171907.2, "km")
  3467. }
  3468. ]
  3469. ))
  3470. characterMakers.push(() => makeCharacter(
  3471. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3472. {
  3473. side: {
  3474. height: math.unit(7.2, "meter"),
  3475. weight: math.unit(8.2, "tons"),
  3476. name: "Side",
  3477. image: {
  3478. source: "./media/characters/cryae/side.svg",
  3479. extra: 3500 / 1500
  3480. }
  3481. }
  3482. },
  3483. [
  3484. {
  3485. name: "Normal",
  3486. height: math.unit(7.2, "meter"),
  3487. default: true
  3488. }
  3489. ]
  3490. ))
  3491. characterMakers.push(() => makeCharacter(
  3492. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3493. {
  3494. front: {
  3495. height: math.unit(6, "feet"),
  3496. weight: math.unit(175, "lb"),
  3497. name: "Front",
  3498. image: {
  3499. source: "./media/characters/xera/front.svg",
  3500. extra: 2377 / 1972,
  3501. bottom: 75.5/2452
  3502. }
  3503. },
  3504. side: {
  3505. height: math.unit(6, "feet"),
  3506. weight: math.unit(175, "lb"),
  3507. name: "Side",
  3508. image: {
  3509. source: "./media/characters/xera/side.svg",
  3510. extra: 2345/2019,
  3511. bottom: 39.7/2384
  3512. }
  3513. },
  3514. back: {
  3515. height: math.unit(6, "feet"),
  3516. weight: math.unit(175, "lb"),
  3517. name: "Back",
  3518. image: {
  3519. source: "./media/characters/xera/back.svg",
  3520. extra: 2095/1984,
  3521. bottom: 67/2166
  3522. }
  3523. },
  3524. },
  3525. [
  3526. {
  3527. name: "Small",
  3528. height: math.unit(10, "feet")
  3529. },
  3530. {
  3531. name: "Macro",
  3532. height: math.unit(500, "meters"),
  3533. default: true
  3534. },
  3535. {
  3536. name: "Macro+",
  3537. height: math.unit(10, "km")
  3538. },
  3539. {
  3540. name: "Gigamacro",
  3541. height: math.unit(25000, "km")
  3542. },
  3543. {
  3544. name: "Teramacro",
  3545. height: math.unit(3e6, "km")
  3546. }
  3547. ]
  3548. ))
  3549. characterMakers.push(() => makeCharacter(
  3550. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3551. {
  3552. front: {
  3553. height: math.unit(6, "feet"),
  3554. weight: math.unit(175, "lb"),
  3555. name: "Front",
  3556. image: {
  3557. source: "./media/characters/nebula/front.svg",
  3558. extra: 2566/2362,
  3559. bottom: 81/2644
  3560. }
  3561. }
  3562. },
  3563. [
  3564. {
  3565. name: "Small",
  3566. height: math.unit(4.5, "meters")
  3567. },
  3568. {
  3569. name: "Macro",
  3570. height: math.unit(1500, "meters"),
  3571. default: true
  3572. },
  3573. {
  3574. name: "Megamacro",
  3575. height: math.unit(150, "km")
  3576. },
  3577. {
  3578. name: "Gigamacro",
  3579. height: math.unit(27000, "km")
  3580. }
  3581. ]
  3582. ))
  3583. characterMakers.push(() => makeCharacter(
  3584. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3585. {
  3586. front: {
  3587. height: math.unit(6, "feet"),
  3588. weight: math.unit(225, "lb"),
  3589. name: "Front",
  3590. image: {
  3591. source: "./media/characters/abysgar/front.svg"
  3592. }
  3593. }
  3594. },
  3595. [
  3596. {
  3597. name: "Small",
  3598. height: math.unit(4.5, "meters")
  3599. },
  3600. {
  3601. name: "Macro",
  3602. height: math.unit(1250, "meters"),
  3603. default: true
  3604. },
  3605. {
  3606. name: "Megamacro",
  3607. height: math.unit(125, "km")
  3608. },
  3609. {
  3610. name: "Gigamacro",
  3611. height: math.unit(26000, "km")
  3612. }
  3613. ]
  3614. ))
  3615. characterMakers.push(() => makeCharacter(
  3616. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3617. {
  3618. front: {
  3619. height: math.unit(6, "feet"),
  3620. weight: math.unit(180, "lb"),
  3621. name: "Front",
  3622. image: {
  3623. source: "./media/characters/yakuz/front.svg"
  3624. }
  3625. }
  3626. },
  3627. [
  3628. {
  3629. name: "Small",
  3630. height: math.unit(5, "meters")
  3631. },
  3632. {
  3633. name: "Macro",
  3634. height: math.unit(1500, "meters"),
  3635. default: true
  3636. },
  3637. {
  3638. name: "Megamacro",
  3639. height: math.unit(200, "km")
  3640. },
  3641. {
  3642. name: "Gigamacro",
  3643. height: math.unit(100000, "km")
  3644. }
  3645. ]
  3646. ))
  3647. characterMakers.push(() => makeCharacter(
  3648. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3649. {
  3650. front: {
  3651. height: math.unit(6, "feet"),
  3652. weight: math.unit(175, "lb"),
  3653. name: "Front",
  3654. image: {
  3655. source: "./media/characters/mirova/front.svg",
  3656. extra: 3334/3071,
  3657. bottom: 42/3375.6
  3658. }
  3659. }
  3660. },
  3661. [
  3662. {
  3663. name: "Small",
  3664. height: math.unit(5, "meters")
  3665. },
  3666. {
  3667. name: "Macro",
  3668. height: math.unit(900, "meters"),
  3669. default: true
  3670. },
  3671. {
  3672. name: "Megamacro",
  3673. height: math.unit(135, "km")
  3674. },
  3675. {
  3676. name: "Gigamacro",
  3677. height: math.unit(20000, "km")
  3678. }
  3679. ]
  3680. ))
  3681. characterMakers.push(() => makeCharacter(
  3682. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3683. {
  3684. side: {
  3685. height: math.unit(28.35, "feet"),
  3686. weight: math.unit(99.75, "tons"),
  3687. name: "Side",
  3688. image: {
  3689. source: "./media/characters/asana-mech/side.svg",
  3690. extra: 923/699,
  3691. bottom: 50/975
  3692. }
  3693. },
  3694. chaingun: {
  3695. height: math.unit(7, "feet"),
  3696. weight: math.unit(2400, "lb"),
  3697. name: "Chaingun",
  3698. image: {
  3699. source: "./media/characters/asana-mech/chaingun.svg"
  3700. }
  3701. },
  3702. laser: {
  3703. height: math.unit(7.12, "feet"),
  3704. weight: math.unit(2000, "lb"),
  3705. name: "Laser",
  3706. image: {
  3707. source: "./media/characters/asana-mech/laser.svg"
  3708. }
  3709. },
  3710. },
  3711. [
  3712. {
  3713. name: "Normal",
  3714. height: math.unit(28.35, "feet"),
  3715. default: true
  3716. },
  3717. {
  3718. name: "Macro",
  3719. height: math.unit(2500, "feet")
  3720. },
  3721. {
  3722. name: "Megamacro",
  3723. height: math.unit(25, "miles")
  3724. },
  3725. {
  3726. name: "Examacro",
  3727. height: math.unit(6e8, "lightyears")
  3728. },
  3729. ]
  3730. ))
  3731. characterMakers.push(() => makeCharacter(
  3732. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3733. {
  3734. front: {
  3735. height: math.unit(5, "meters"),
  3736. weight: math.unit(1000, "kg"),
  3737. name: "Front",
  3738. image: {
  3739. source: "./media/characters/asche/front.svg",
  3740. extra: 1258/1190,
  3741. bottom: 47/1305
  3742. }
  3743. },
  3744. frontUnderwear: {
  3745. height: math.unit(5, "meters"),
  3746. weight: math.unit(1000, "kg"),
  3747. name: "Front (Underwear)",
  3748. image: {
  3749. source: "./media/characters/asche/front-underwear.svg",
  3750. extra: 1258/1190,
  3751. bottom: 47/1305
  3752. }
  3753. },
  3754. frontDressed: {
  3755. height: math.unit(5, "meters"),
  3756. weight: math.unit(1000, "kg"),
  3757. name: "Front (Dressed)",
  3758. image: {
  3759. source: "./media/characters/asche/front-dressed.svg",
  3760. extra: 1258/1190,
  3761. bottom: 47/1305
  3762. }
  3763. },
  3764. frontArmor: {
  3765. height: math.unit(5, "meters"),
  3766. weight: math.unit(1000, "kg"),
  3767. name: "Front (Armored)",
  3768. image: {
  3769. source: "./media/characters/asche/front-armored.svg",
  3770. extra: 1374 / 1308,
  3771. bottom: 23/1397
  3772. }
  3773. },
  3774. mp724: {
  3775. height: math.unit(0.96, "meters"),
  3776. weight: math.unit(38, "kg"),
  3777. name: "H&K MP724",
  3778. image: {
  3779. source: "./media/characters/asche/h&k-mp724.svg"
  3780. }
  3781. },
  3782. side: {
  3783. height: math.unit(5, "meters"),
  3784. weight: math.unit(1000, "kg"),
  3785. name: "Side",
  3786. image: {
  3787. source: "./media/characters/asche/side.svg",
  3788. extra: 1717 / 1609,
  3789. bottom: 0.005
  3790. }
  3791. },
  3792. back: {
  3793. height: math.unit(5, "meters"),
  3794. weight: math.unit(1000, "kg"),
  3795. name: "Back",
  3796. image: {
  3797. source: "./media/characters/asche/back.svg",
  3798. extra: 1570 / 1501
  3799. }
  3800. },
  3801. },
  3802. [
  3803. {
  3804. name: "DEFCON 5",
  3805. height: math.unit(5, "meters")
  3806. },
  3807. {
  3808. name: "DEFCON 4",
  3809. height: math.unit(500, "meters"),
  3810. default: true
  3811. },
  3812. {
  3813. name: "DEFCON 3",
  3814. height: math.unit(5, "km")
  3815. },
  3816. {
  3817. name: "DEFCON 2",
  3818. height: math.unit(500, "km")
  3819. },
  3820. {
  3821. name: "DEFCON 1",
  3822. height: math.unit(500000, "km")
  3823. },
  3824. {
  3825. name: "DEFCON 0",
  3826. height: math.unit(3, "gigaparsecs")
  3827. },
  3828. ]
  3829. ))
  3830. characterMakers.push(() => makeCharacter(
  3831. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3832. {
  3833. front: {
  3834. height: math.unit(2, "meters"),
  3835. weight: math.unit(76, "kg"),
  3836. name: "Front",
  3837. image: {
  3838. source: "./media/characters/gale/front.svg"
  3839. }
  3840. },
  3841. frontAlt1: {
  3842. height: math.unit(2, "meters"),
  3843. weight: math.unit(76, "kg"),
  3844. name: "Front (Alt 1)",
  3845. image: {
  3846. source: "./media/characters/gale/front-alt-1.svg"
  3847. }
  3848. },
  3849. frontAlt2: {
  3850. height: math.unit(2, "meters"),
  3851. weight: math.unit(76, "kg"),
  3852. name: "Front (Alt 2)",
  3853. image: {
  3854. source: "./media/characters/gale/front-alt-2.svg"
  3855. }
  3856. },
  3857. },
  3858. [
  3859. {
  3860. name: "Normal",
  3861. height: math.unit(7, "feet")
  3862. },
  3863. {
  3864. name: "Macro",
  3865. height: math.unit(150, "feet"),
  3866. default: true
  3867. },
  3868. {
  3869. name: "Macro+",
  3870. height: math.unit(300, "feet")
  3871. },
  3872. ]
  3873. ))
  3874. characterMakers.push(() => makeCharacter(
  3875. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3876. {
  3877. front: {
  3878. height: math.unit(2, "meters"),
  3879. weight: math.unit(76, "kg"),
  3880. name: "Front",
  3881. image: {
  3882. source: "./media/characters/draylen/front.svg"
  3883. }
  3884. }
  3885. },
  3886. [
  3887. {
  3888. name: "Macro",
  3889. height: math.unit(150, "feet"),
  3890. default: true
  3891. }
  3892. ]
  3893. ))
  3894. characterMakers.push(() => makeCharacter(
  3895. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3896. {
  3897. front: {
  3898. height: math.unit(7 + 9 / 12, "feet"),
  3899. weight: math.unit(379, "lbs"),
  3900. name: "Front",
  3901. image: {
  3902. source: "./media/characters/chez/front.svg"
  3903. }
  3904. },
  3905. side: {
  3906. height: math.unit(7 + 9 / 12, "feet"),
  3907. weight: math.unit(379, "lbs"),
  3908. name: "Side",
  3909. image: {
  3910. source: "./media/characters/chez/side.svg"
  3911. }
  3912. }
  3913. },
  3914. [
  3915. {
  3916. name: "Normal",
  3917. height: math.unit(7 + 9 / 12, "feet"),
  3918. default: true
  3919. },
  3920. {
  3921. name: "God King",
  3922. height: math.unit(9750000, "meters")
  3923. }
  3924. ]
  3925. ))
  3926. characterMakers.push(() => makeCharacter(
  3927. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  3928. {
  3929. front: {
  3930. height: math.unit(6, "feet"),
  3931. weight: math.unit(275, "lbs"),
  3932. name: "Front",
  3933. image: {
  3934. source: "./media/characters/kaylum/front.svg",
  3935. bottom: 0.01,
  3936. extra: 1166 / 1031
  3937. }
  3938. },
  3939. frontWingless: {
  3940. height: math.unit(6, "feet"),
  3941. weight: math.unit(275, "lbs"),
  3942. name: "Front (Wingless)",
  3943. image: {
  3944. source: "./media/characters/kaylum/front-wingless.svg",
  3945. bottom: 0.01,
  3946. extra: 1117 / 1031
  3947. }
  3948. }
  3949. },
  3950. [
  3951. {
  3952. name: "Normal",
  3953. height: math.unit(3.05, "meters")
  3954. },
  3955. {
  3956. name: "Master",
  3957. height: math.unit(5.5, "meters")
  3958. },
  3959. {
  3960. name: "Rampage",
  3961. height: math.unit(19, "meters")
  3962. },
  3963. {
  3964. name: "Macro Lite",
  3965. height: math.unit(37, "meters")
  3966. },
  3967. {
  3968. name: "Hyper Predator",
  3969. height: math.unit(61, "meters")
  3970. },
  3971. {
  3972. name: "Macro",
  3973. height: math.unit(138, "meters"),
  3974. default: true
  3975. }
  3976. ]
  3977. ))
  3978. characterMakers.push(() => makeCharacter(
  3979. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  3980. {
  3981. front: {
  3982. height: math.unit(6, "feet"),
  3983. weight: math.unit(150, "lbs"),
  3984. name: "Front",
  3985. image: {
  3986. source: "./media/characters/geta/front.svg"
  3987. }
  3988. }
  3989. },
  3990. [
  3991. {
  3992. name: "Micro",
  3993. height: math.unit(3, "inches"),
  3994. default: true
  3995. },
  3996. {
  3997. name: "Normal",
  3998. height: math.unit(5 + 5 / 12, "feet")
  3999. }
  4000. ]
  4001. ))
  4002. characterMakers.push(() => makeCharacter(
  4003. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4004. {
  4005. front: {
  4006. height: math.unit(6, "feet"),
  4007. weight: math.unit(300, "lbs"),
  4008. name: "Front",
  4009. image: {
  4010. source: "./media/characters/tyrnn/front.svg"
  4011. }
  4012. }
  4013. },
  4014. [
  4015. {
  4016. name: "Main Height",
  4017. height: math.unit(355, "feet"),
  4018. default: true
  4019. },
  4020. {
  4021. name: "Fave. Height",
  4022. height: math.unit(2400, "feet")
  4023. }
  4024. ]
  4025. ))
  4026. characterMakers.push(() => makeCharacter(
  4027. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4028. {
  4029. front: {
  4030. height: math.unit(6, "feet"),
  4031. weight: math.unit(300, "lbs"),
  4032. name: "Front",
  4033. image: {
  4034. source: "./media/characters/appledectomy/front.svg"
  4035. }
  4036. }
  4037. },
  4038. [
  4039. {
  4040. name: "Macro",
  4041. height: math.unit(2500, "feet")
  4042. },
  4043. {
  4044. name: "Megamacro",
  4045. height: math.unit(50, "miles"),
  4046. default: true
  4047. },
  4048. {
  4049. name: "Gigamacro",
  4050. height: math.unit(5000, "miles")
  4051. },
  4052. {
  4053. name: "Teramacro",
  4054. height: math.unit(250000, "miles")
  4055. },
  4056. ]
  4057. ))
  4058. characterMakers.push(() => makeCharacter(
  4059. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4060. {
  4061. front: {
  4062. height: math.unit(6, "feet"),
  4063. weight: math.unit(200, "lbs"),
  4064. name: "Front",
  4065. image: {
  4066. source: "./media/characters/vulpes/front.svg",
  4067. extra: 573 / 543,
  4068. bottom: 0.033
  4069. }
  4070. },
  4071. side: {
  4072. height: math.unit(6, "feet"),
  4073. weight: math.unit(200, "lbs"),
  4074. name: "Side",
  4075. image: {
  4076. source: "./media/characters/vulpes/side.svg",
  4077. extra: 573 / 543,
  4078. bottom: 0.01
  4079. }
  4080. },
  4081. back: {
  4082. height: math.unit(6, "feet"),
  4083. weight: math.unit(200, "lbs"),
  4084. name: "Back",
  4085. image: {
  4086. source: "./media/characters/vulpes/back.svg",
  4087. extra: 573 / 543,
  4088. }
  4089. },
  4090. feet: {
  4091. height: math.unit(1.276, "feet"),
  4092. name: "Feet",
  4093. image: {
  4094. source: "./media/characters/vulpes/feet.svg"
  4095. }
  4096. },
  4097. maw: {
  4098. height: math.unit(1.18, "feet"),
  4099. name: "Maw",
  4100. image: {
  4101. source: "./media/characters/vulpes/maw.svg"
  4102. }
  4103. },
  4104. },
  4105. [
  4106. {
  4107. name: "Micro",
  4108. height: math.unit(2, "inches")
  4109. },
  4110. {
  4111. name: "Normal",
  4112. height: math.unit(6.3, "feet")
  4113. },
  4114. {
  4115. name: "Macro",
  4116. height: math.unit(850, "feet")
  4117. },
  4118. {
  4119. name: "Megamacro",
  4120. height: math.unit(7500, "feet"),
  4121. default: true
  4122. },
  4123. {
  4124. name: "Gigamacro",
  4125. height: math.unit(570000, "miles")
  4126. }
  4127. ]
  4128. ))
  4129. characterMakers.push(() => makeCharacter(
  4130. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4131. {
  4132. front: {
  4133. height: math.unit(6, "feet"),
  4134. weight: math.unit(210, "lbs"),
  4135. name: "Front",
  4136. image: {
  4137. source: "./media/characters/rain-fallen/front.svg"
  4138. }
  4139. },
  4140. side: {
  4141. height: math.unit(6, "feet"),
  4142. weight: math.unit(210, "lbs"),
  4143. name: "Side",
  4144. image: {
  4145. source: "./media/characters/rain-fallen/side.svg"
  4146. }
  4147. },
  4148. back: {
  4149. height: math.unit(6, "feet"),
  4150. weight: math.unit(210, "lbs"),
  4151. name: "Back",
  4152. image: {
  4153. source: "./media/characters/rain-fallen/back.svg"
  4154. }
  4155. },
  4156. feral: {
  4157. height: math.unit(9, "feet"),
  4158. weight: math.unit(700, "lbs"),
  4159. name: "Feral",
  4160. image: {
  4161. source: "./media/characters/rain-fallen/feral.svg"
  4162. }
  4163. },
  4164. },
  4165. [
  4166. {
  4167. name: "Normal",
  4168. height: math.unit(5, "meter")
  4169. },
  4170. {
  4171. name: "Macro",
  4172. height: math.unit(150, "meter"),
  4173. default: true
  4174. },
  4175. {
  4176. name: "Megamacro",
  4177. height: math.unit(278e6, "meter")
  4178. },
  4179. {
  4180. name: "Gigamacro",
  4181. height: math.unit(2e9, "meter")
  4182. },
  4183. {
  4184. name: "Teramacro",
  4185. height: math.unit(8e12, "meter")
  4186. },
  4187. {
  4188. name: "Devourer",
  4189. height: math.unit(14, "zettameters")
  4190. },
  4191. {
  4192. name: "Scarlet King",
  4193. height: math.unit(18, "yottameters")
  4194. },
  4195. {
  4196. name: "Void",
  4197. height: math.unit(6.66e66, "yottameters")
  4198. }
  4199. ]
  4200. ))
  4201. characterMakers.push(() => makeCharacter(
  4202. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4203. {
  4204. standing: {
  4205. height: math.unit(6, "feet"),
  4206. weight: math.unit(180, "lbs"),
  4207. name: "Standing",
  4208. image: {
  4209. source: "./media/characters/zaakira/standing.svg"
  4210. }
  4211. },
  4212. laying: {
  4213. height: math.unit(3, "feet"),
  4214. weight: math.unit(180, "lbs"),
  4215. name: "Laying",
  4216. image: {
  4217. source: "./media/characters/zaakira/laying.svg"
  4218. }
  4219. },
  4220. },
  4221. [
  4222. {
  4223. name: "Normal",
  4224. height: math.unit(12, "feet")
  4225. },
  4226. {
  4227. name: "Macro",
  4228. height: math.unit(279, "feet"),
  4229. default: true
  4230. }
  4231. ]
  4232. ))
  4233. characterMakers.push(() => makeCharacter(
  4234. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4235. {
  4236. femSfw: {
  4237. height: math.unit(8, "feet"),
  4238. weight: math.unit(350, "lb"),
  4239. name: "Fem",
  4240. image: {
  4241. source: "./media/characters/sigvald/fem-sfw.svg",
  4242. extra: 182/164,
  4243. bottom: 8.7/190.5
  4244. }
  4245. },
  4246. femNsfw: {
  4247. height: math.unit(8, "feet"),
  4248. weight: math.unit(350, "lb"),
  4249. name: "Fem (NSFW)",
  4250. image: {
  4251. source: "./media/characters/sigvald/fem-nsfw.svg",
  4252. extra: 182/164,
  4253. bottom: 8.7/190.5
  4254. }
  4255. },
  4256. maleNsfw: {
  4257. height: math.unit(8, "feet"),
  4258. weight: math.unit(350, "lb"),
  4259. name: "Male (NSFW)",
  4260. image: {
  4261. source: "./media/characters/sigvald/male-nsfw.svg",
  4262. extra: 182/164,
  4263. bottom: 8.7/190.5
  4264. }
  4265. },
  4266. hermNsfw: {
  4267. height: math.unit(8, "feet"),
  4268. weight: math.unit(350, "lb"),
  4269. name: "Herm (NSFW)",
  4270. image: {
  4271. source: "./media/characters/sigvald/herm-nsfw.svg",
  4272. extra: 182/164,
  4273. bottom: 8.7/190.5
  4274. }
  4275. },
  4276. dick: {
  4277. height: math.unit(2.36, "feet"),
  4278. name: "Dick",
  4279. image: {
  4280. source: "./media/characters/sigvald/dick.svg"
  4281. }
  4282. },
  4283. eye: {
  4284. height: math.unit(0.31, "feet"),
  4285. name: "Eye",
  4286. image: {
  4287. source: "./media/characters/sigvald/eye.svg"
  4288. }
  4289. },
  4290. mouth: {
  4291. height: math.unit(0.92, "feet"),
  4292. name: "Mouth",
  4293. image: {
  4294. source: "./media/characters/sigvald/mouth.svg"
  4295. }
  4296. },
  4297. paws: {
  4298. height: math.unit(2.2, "feet"),
  4299. name: "Paws",
  4300. image: {
  4301. source: "./media/characters/sigvald/paws.svg"
  4302. }
  4303. }
  4304. },
  4305. [
  4306. {
  4307. name: "Normal",
  4308. height: math.unit(8, "feet")
  4309. },
  4310. {
  4311. name: "Large",
  4312. height: math.unit(12, "feet")
  4313. },
  4314. {
  4315. name: "Larger",
  4316. height: math.unit(20, "feet")
  4317. },
  4318. {
  4319. name: "Macro",
  4320. height: math.unit(150, "feet")
  4321. },
  4322. {
  4323. name: "Macro+",
  4324. height: math.unit(200, "feet"),
  4325. default: true
  4326. },
  4327. ]
  4328. ))
  4329. characterMakers.push(() => makeCharacter(
  4330. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4331. {
  4332. side: {
  4333. height: math.unit(12, "feet"),
  4334. weight: math.unit(2000, "kg"),
  4335. name: "Side",
  4336. image: {
  4337. source: "./media/characters/scott/side.svg",
  4338. extra: 754 / 724,
  4339. bottom: 0.069
  4340. }
  4341. },
  4342. upright: {
  4343. height: math.unit(12, "feet"),
  4344. weight: math.unit(2000, "kg"),
  4345. name: "Upright",
  4346. image: {
  4347. source: "./media/characters/scott/upright.svg",
  4348. extra: 3881 / 3722,
  4349. bottom: 0.05
  4350. }
  4351. },
  4352. },
  4353. [
  4354. {
  4355. name: "Normal",
  4356. height: math.unit(12, "feet"),
  4357. default: true
  4358. },
  4359. ]
  4360. ))
  4361. characterMakers.push(() => makeCharacter(
  4362. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4363. {
  4364. side: {
  4365. height: math.unit(8, "meters"),
  4366. weight: math.unit(84755, "lbs"),
  4367. name: "Side",
  4368. image: {
  4369. source: "./media/characters/tobias/side.svg",
  4370. extra: 1474 / 1096,
  4371. bottom: 38.9 / 1513.1235
  4372. }
  4373. },
  4374. },
  4375. [
  4376. {
  4377. name: "Normal",
  4378. height: math.unit(8, "meters"),
  4379. default: true
  4380. },
  4381. ]
  4382. ))
  4383. characterMakers.push(() => makeCharacter(
  4384. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4385. {
  4386. front: {
  4387. height: math.unit(5.5, "feet"),
  4388. weight: math.unit(400, "lbs"),
  4389. name: "Front",
  4390. image: {
  4391. source: "./media/characters/kieran/front.svg",
  4392. extra: 2694 / 2364,
  4393. bottom: 217 / 2908
  4394. }
  4395. },
  4396. side: {
  4397. height: math.unit(5.5, "feet"),
  4398. weight: math.unit(400, "lbs"),
  4399. name: "Side",
  4400. image: {
  4401. source: "./media/characters/kieran/side.svg",
  4402. extra: 875 / 777,
  4403. bottom: 84.6 / 959
  4404. }
  4405. },
  4406. },
  4407. [
  4408. {
  4409. name: "Normal",
  4410. height: math.unit(5.5, "feet"),
  4411. default: true
  4412. },
  4413. ]
  4414. ))
  4415. characterMakers.push(() => makeCharacter(
  4416. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4417. {
  4418. side: {
  4419. height: math.unit(2, "meters"),
  4420. weight: math.unit(70, "kg"),
  4421. name: "Side",
  4422. image: {
  4423. source: "./media/characters/sanya/side.svg",
  4424. bottom: 0.02,
  4425. extra: 1.02
  4426. }
  4427. },
  4428. },
  4429. [
  4430. {
  4431. name: "Small",
  4432. height: math.unit(2, "meters")
  4433. },
  4434. {
  4435. name: "Normal",
  4436. height: math.unit(3, "meters")
  4437. },
  4438. {
  4439. name: "Macro",
  4440. height: math.unit(16, "meters"),
  4441. default: true
  4442. },
  4443. ]
  4444. ))
  4445. characterMakers.push(() => makeCharacter(
  4446. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4447. {
  4448. front: {
  4449. height: math.unit(2, "meters"),
  4450. weight: math.unit(120, "kg"),
  4451. name: "Front",
  4452. image: {
  4453. source: "./media/characters/miranda/front.svg",
  4454. extra: 195/185,
  4455. bottom: 10.9/206.5
  4456. }
  4457. },
  4458. back: {
  4459. height: math.unit(2, "meters"),
  4460. weight: math.unit(120, "kg"),
  4461. name: "Back",
  4462. image: {
  4463. source: "./media/characters/miranda/back.svg",
  4464. extra: 201/193,
  4465. bottom: 2.3/203.7
  4466. }
  4467. },
  4468. },
  4469. [
  4470. {
  4471. name: "Normal",
  4472. height: math.unit(10, "feet"),
  4473. default: true
  4474. }
  4475. ]
  4476. ))
  4477. characterMakers.push(() => makeCharacter(
  4478. { name: "James", species: ["deer"], tags: ["anthro"] },
  4479. {
  4480. side: {
  4481. height: math.unit(2, "meters"),
  4482. weight: math.unit(100, "kg"),
  4483. name: "Front",
  4484. image: {
  4485. source: "./media/characters/james/front.svg",
  4486. extra: 10 / 8.5
  4487. }
  4488. },
  4489. },
  4490. [
  4491. {
  4492. name: "Normal",
  4493. height: math.unit(8.5, "feet"),
  4494. default: true
  4495. }
  4496. ]
  4497. ))
  4498. characterMakers.push(() => makeCharacter(
  4499. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4500. {
  4501. side: {
  4502. height: math.unit(9.5, "feet"),
  4503. weight: math.unit(2500, "lbs"),
  4504. name: "Side",
  4505. image: {
  4506. source: "./media/characters/heather/side.svg"
  4507. }
  4508. },
  4509. },
  4510. [
  4511. {
  4512. name: "Normal",
  4513. height: math.unit(9.5, "feet"),
  4514. default: true
  4515. }
  4516. ]
  4517. ))
  4518. characterMakers.push(() => makeCharacter(
  4519. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4520. {
  4521. side: {
  4522. height: math.unit(6.5, "feet"),
  4523. weight: math.unit(400, "lbs"),
  4524. name: "Side",
  4525. image: {
  4526. source: "./media/characters/lukas/side.svg",
  4527. extra: 7.25 / 6.5
  4528. }
  4529. },
  4530. },
  4531. [
  4532. {
  4533. name: "Normal",
  4534. height: math.unit(6.5, "feet"),
  4535. default: true
  4536. }
  4537. ]
  4538. ))
  4539. characterMakers.push(() => makeCharacter(
  4540. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4541. {
  4542. side: {
  4543. height: math.unit(5, "feet"),
  4544. weight: math.unit(3000, "lbs"),
  4545. name: "Side",
  4546. image: {
  4547. source: "./media/characters/louise/side.svg"
  4548. }
  4549. },
  4550. },
  4551. [
  4552. {
  4553. name: "Normal",
  4554. height: math.unit(5, "feet"),
  4555. default: true
  4556. }
  4557. ]
  4558. ))
  4559. characterMakers.push(() => makeCharacter(
  4560. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4561. {
  4562. side: {
  4563. height: math.unit(6, "feet"),
  4564. weight: math.unit(150, "lbs"),
  4565. name: "Side",
  4566. image: {
  4567. source: "./media/characters/ramona/side.svg"
  4568. }
  4569. },
  4570. },
  4571. [
  4572. {
  4573. name: "Normal",
  4574. height: math.unit(5.3, "meters"),
  4575. default: true
  4576. },
  4577. {
  4578. name: "Macro",
  4579. height: math.unit(20, "stories")
  4580. },
  4581. {
  4582. name: "Macro+",
  4583. height: math.unit(50, "stories")
  4584. },
  4585. ]
  4586. ))
  4587. characterMakers.push(() => makeCharacter(
  4588. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4589. {
  4590. standing: {
  4591. height: math.unit(5.75, "feet"),
  4592. weight: math.unit(160, "lbs"),
  4593. name: "Standing",
  4594. image: {
  4595. source: "./media/characters/deerpuff/standing.svg",
  4596. extra: 682 / 624
  4597. }
  4598. },
  4599. sitting: {
  4600. height: math.unit(5.75 / 1.79, "feet"),
  4601. weight: math.unit(160, "lbs"),
  4602. name: "Sitting",
  4603. image: {
  4604. source: "./media/characters/deerpuff/sitting.svg",
  4605. bottom: 44 / 400,
  4606. extra: 1
  4607. }
  4608. },
  4609. taurLaying: {
  4610. height: math.unit(6, "feet"),
  4611. weight: math.unit(400, "lbs"),
  4612. name: "Taur (Laying)",
  4613. image: {
  4614. source: "./media/characters/deerpuff/taur-laying.svg"
  4615. }
  4616. },
  4617. },
  4618. [
  4619. {
  4620. name: "Puffball",
  4621. height: math.unit(6, "inches")
  4622. },
  4623. {
  4624. name: "Normalpuff",
  4625. height: math.unit(5.75, "feet")
  4626. },
  4627. {
  4628. name: "Macropuff",
  4629. height: math.unit(1500, "feet"),
  4630. default: true
  4631. },
  4632. {
  4633. name: "Megapuff",
  4634. height: math.unit(500, "miles")
  4635. },
  4636. {
  4637. name: "Gigapuff",
  4638. height: math.unit(250000, "miles")
  4639. },
  4640. {
  4641. name: "Omegapuff",
  4642. height: math.unit(1000, "lightyears")
  4643. },
  4644. ]
  4645. ))
  4646. characterMakers.push(() => makeCharacter(
  4647. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4648. {
  4649. stomping: {
  4650. height: math.unit(6, "feet"),
  4651. weight: math.unit(170, "lbs"),
  4652. name: "Stomping",
  4653. image: {
  4654. source: "./media/characters/vivian/stomping.svg"
  4655. }
  4656. },
  4657. sitting: {
  4658. height: math.unit(6 / 1.75, "feet"),
  4659. weight: math.unit(170, "lbs"),
  4660. name: "Sitting",
  4661. image: {
  4662. source: "./media/characters/vivian/sitting.svg",
  4663. bottom: 1 / 6.4,
  4664. extra: 1,
  4665. }
  4666. },
  4667. },
  4668. [
  4669. {
  4670. name: "Normal",
  4671. height: math.unit(7, "feet"),
  4672. default: true
  4673. },
  4674. {
  4675. name: "Macro",
  4676. height: math.unit(10, "stories")
  4677. },
  4678. {
  4679. name: "Macro+",
  4680. height: math.unit(30, "stories")
  4681. },
  4682. {
  4683. name: "Megamacro",
  4684. height: math.unit(10, "miles")
  4685. },
  4686. {
  4687. name: "Megamacro+",
  4688. height: math.unit(2750000, "meters")
  4689. },
  4690. ]
  4691. ))
  4692. characterMakers.push(() => makeCharacter(
  4693. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4694. {
  4695. front: {
  4696. height: math.unit(6, "feet"),
  4697. weight: math.unit(160, "lbs"),
  4698. name: "Front",
  4699. image: {
  4700. source: "./media/characters/prince/front.svg",
  4701. extra: 3400 / 3000
  4702. }
  4703. },
  4704. jumping: {
  4705. height: math.unit(6, "feet"),
  4706. weight: math.unit(160, "lbs"),
  4707. name: "Jumping",
  4708. image: {
  4709. source: "./media/characters/prince/jump.svg",
  4710. extra: 2555 / 2134
  4711. }
  4712. },
  4713. },
  4714. [
  4715. {
  4716. name: "Normal",
  4717. height: math.unit(7.75, "feet"),
  4718. default: true
  4719. },
  4720. {
  4721. name: "Not cute",
  4722. height: math.unit(17, "feet")
  4723. },
  4724. {
  4725. name: "I said NOT",
  4726. height: math.unit(91, "feet")
  4727. },
  4728. {
  4729. name: "Please stop",
  4730. height: math.unit(560, "feet")
  4731. },
  4732. {
  4733. name: "What have you done",
  4734. height: math.unit(2200, "feet")
  4735. },
  4736. {
  4737. name: "Deer God",
  4738. height: math.unit(3.6, "miles")
  4739. },
  4740. ]
  4741. ))
  4742. characterMakers.push(() => makeCharacter(
  4743. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4744. {
  4745. standing: {
  4746. height: math.unit(6, "feet"),
  4747. weight: math.unit(300, "lbs"),
  4748. name: "Standing",
  4749. image: {
  4750. source: "./media/characters/psymon/standing.svg",
  4751. extra: 1888 / 1810,
  4752. bottom: 0.05
  4753. }
  4754. },
  4755. slithering: {
  4756. height: math.unit(6, "feet"),
  4757. weight: math.unit(300, "lbs"),
  4758. name: "Slithering",
  4759. image: {
  4760. source: "./media/characters/psymon/slithering.svg",
  4761. extra: 1330 / 1224
  4762. }
  4763. },
  4764. slitheringAlt: {
  4765. height: math.unit(6, "feet"),
  4766. weight: math.unit(300, "lbs"),
  4767. name: "Slithering (Alt)",
  4768. image: {
  4769. source: "./media/characters/psymon/slithering-alt.svg",
  4770. extra: 1330 / 1224
  4771. }
  4772. },
  4773. },
  4774. [
  4775. {
  4776. name: "Normal",
  4777. height: math.unit(11.25, "feet"),
  4778. default: true
  4779. },
  4780. {
  4781. name: "Large",
  4782. height: math.unit(27, "feet")
  4783. },
  4784. {
  4785. name: "Giant",
  4786. height: math.unit(87, "feet")
  4787. },
  4788. {
  4789. name: "Macro",
  4790. height: math.unit(365, "feet")
  4791. },
  4792. {
  4793. name: "Megamacro",
  4794. height: math.unit(3, "miles")
  4795. },
  4796. {
  4797. name: "World Serpent",
  4798. height: math.unit(8000, "miles")
  4799. },
  4800. ]
  4801. ))
  4802. characterMakers.push(() => makeCharacter(
  4803. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4804. {
  4805. front: {
  4806. height: math.unit(6, "feet"),
  4807. weight: math.unit(180, "lbs"),
  4808. name: "Front",
  4809. image: {
  4810. source: "./media/characters/daimos/front.svg",
  4811. extra: 4160 / 3897,
  4812. bottom: 0.021
  4813. }
  4814. }
  4815. },
  4816. [
  4817. {
  4818. name: "Normal",
  4819. height: math.unit(8, "feet"),
  4820. default: true
  4821. },
  4822. {
  4823. name: "Big Dog",
  4824. height: math.unit(22, "feet")
  4825. },
  4826. {
  4827. name: "Macro",
  4828. height: math.unit(127, "feet")
  4829. },
  4830. {
  4831. name: "Megamacro",
  4832. height: math.unit(3600, "feet")
  4833. },
  4834. ]
  4835. ))
  4836. characterMakers.push(() => makeCharacter(
  4837. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4838. {
  4839. side: {
  4840. height: math.unit(6, "feet"),
  4841. weight: math.unit(180, "lbs"),
  4842. name: "Side",
  4843. image: {
  4844. source: "./media/characters/blake/side.svg",
  4845. extra: 1212 / 1120,
  4846. bottom: 0.05
  4847. }
  4848. },
  4849. crouched: {
  4850. height: math.unit(6 * 0.57, "feet"),
  4851. weight: math.unit(180, "lbs"),
  4852. name: "Crouched",
  4853. image: {
  4854. source: "./media/characters/blake/crouched.svg",
  4855. extra: 840 / 587,
  4856. bottom: 0.04
  4857. }
  4858. },
  4859. bent: {
  4860. height: math.unit(6 * 0.75, "feet"),
  4861. weight: math.unit(180, "lbs"),
  4862. name: "Bent",
  4863. image: {
  4864. source: "./media/characters/blake/bent.svg",
  4865. extra: 592 / 544,
  4866. bottom: 0.035
  4867. }
  4868. },
  4869. },
  4870. [
  4871. {
  4872. name: "Normal",
  4873. height: math.unit(8 + 1 / 6, "feet"),
  4874. default: true
  4875. },
  4876. {
  4877. name: "Big Backside",
  4878. height: math.unit(37, "feet")
  4879. },
  4880. {
  4881. name: "Subway Shredder",
  4882. height: math.unit(72, "feet")
  4883. },
  4884. {
  4885. name: "City Carver",
  4886. height: math.unit(1675, "feet")
  4887. },
  4888. {
  4889. name: "Tectonic Tweaker",
  4890. height: math.unit(2300, "miles")
  4891. },
  4892. ]
  4893. ))
  4894. characterMakers.push(() => makeCharacter(
  4895. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4896. {
  4897. front: {
  4898. height: math.unit(6, "feet"),
  4899. weight: math.unit(180, "lbs"),
  4900. name: "Front",
  4901. image: {
  4902. source: "./media/characters/guisetto/front.svg",
  4903. extra: 856 / 817,
  4904. bottom: 0.06
  4905. }
  4906. },
  4907. airborne: {
  4908. height: math.unit(6, "feet"),
  4909. weight: math.unit(180, "lbs"),
  4910. name: "Airborne",
  4911. image: {
  4912. source: "./media/characters/guisetto/airborne.svg",
  4913. extra: 584 / 525
  4914. }
  4915. },
  4916. },
  4917. [
  4918. {
  4919. name: "Normal",
  4920. height: math.unit(10 + 11 / 12, "feet"),
  4921. default: true
  4922. },
  4923. {
  4924. name: "Large",
  4925. height: math.unit(35, "feet")
  4926. },
  4927. {
  4928. name: "Macro",
  4929. height: math.unit(475, "feet")
  4930. },
  4931. ]
  4932. ))
  4933. characterMakers.push(() => makeCharacter(
  4934. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  4935. {
  4936. front: {
  4937. height: math.unit(6, "feet"),
  4938. weight: math.unit(180, "lbs"),
  4939. name: "Front",
  4940. image: {
  4941. source: "./media/characters/luxor/front.svg",
  4942. extra: 2940 / 2152
  4943. }
  4944. },
  4945. back: {
  4946. height: math.unit(6, "feet"),
  4947. weight: math.unit(180, "lbs"),
  4948. name: "Back",
  4949. image: {
  4950. source: "./media/characters/luxor/back.svg",
  4951. extra: 1083 / 960
  4952. }
  4953. },
  4954. },
  4955. [
  4956. {
  4957. name: "Normal",
  4958. height: math.unit(5 + 5 / 6, "feet"),
  4959. default: true
  4960. },
  4961. {
  4962. name: "Lamp",
  4963. height: math.unit(50, "feet")
  4964. },
  4965. {
  4966. name: "Lämp",
  4967. height: math.unit(300, "feet")
  4968. },
  4969. {
  4970. name: "The sun is a lamp",
  4971. height: math.unit(250000, "miles")
  4972. },
  4973. ]
  4974. ))
  4975. characterMakers.push(() => makeCharacter(
  4976. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  4977. {
  4978. front: {
  4979. height: math.unit(6, "feet"),
  4980. weight: math.unit(50, "lbs"),
  4981. name: "Front",
  4982. image: {
  4983. source: "./media/characters/huoyan/front.svg"
  4984. }
  4985. },
  4986. side: {
  4987. height: math.unit(6, "feet"),
  4988. weight: math.unit(180, "lbs"),
  4989. name: "Side",
  4990. image: {
  4991. source: "./media/characters/huoyan/side.svg"
  4992. }
  4993. },
  4994. },
  4995. [
  4996. {
  4997. name: "Chef",
  4998. height: math.unit(9, "feet")
  4999. },
  5000. {
  5001. name: "Normal",
  5002. height: math.unit(65, "feet"),
  5003. default: true
  5004. },
  5005. {
  5006. name: "Macro",
  5007. height: math.unit(780, "feet")
  5008. },
  5009. {
  5010. name: "Flaming Mountain",
  5011. height: math.unit(4.8, "miles")
  5012. },
  5013. {
  5014. name: "Celestial",
  5015. height: math.unit(765000, "miles")
  5016. },
  5017. ]
  5018. ))
  5019. characterMakers.push(() => makeCharacter(
  5020. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5021. {
  5022. front: {
  5023. height: math.unit(5 + 3 / 4, "feet"),
  5024. weight: math.unit(120, "lbs"),
  5025. name: "Front",
  5026. image: {
  5027. source: "./media/characters/tails/front.svg"
  5028. }
  5029. }
  5030. },
  5031. [
  5032. {
  5033. name: "Normal",
  5034. height: math.unit(5 + 3 / 4, "feet"),
  5035. default: true
  5036. }
  5037. ]
  5038. ))
  5039. characterMakers.push(() => makeCharacter(
  5040. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5041. {
  5042. front: {
  5043. height: math.unit(4, "feet"),
  5044. weight: math.unit(50, "lbs"),
  5045. name: "Front",
  5046. image: {
  5047. source: "./media/characters/rainy/front.svg"
  5048. }
  5049. }
  5050. },
  5051. [
  5052. {
  5053. name: "Macro",
  5054. height: math.unit(800, "feet"),
  5055. default: true
  5056. }
  5057. ]
  5058. ))
  5059. characterMakers.push(() => makeCharacter(
  5060. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5061. {
  5062. front: {
  5063. height: math.unit(6, "feet"),
  5064. weight: math.unit(150, "lbs"),
  5065. name: "Front",
  5066. image: {
  5067. source: "./media/characters/rainier/front.svg"
  5068. }
  5069. }
  5070. },
  5071. [
  5072. {
  5073. name: "Micro",
  5074. height: math.unit(2, "mm"),
  5075. default: true
  5076. }
  5077. ]
  5078. ))
  5079. characterMakers.push(() => makeCharacter(
  5080. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5081. {
  5082. front: {
  5083. height: math.unit(6, "feet"),
  5084. weight: math.unit(180, "lbs"),
  5085. name: "Front",
  5086. image: {
  5087. source: "./media/characters/andy/front.svg"
  5088. }
  5089. }
  5090. },
  5091. [
  5092. {
  5093. name: "Normal",
  5094. height: math.unit(8, "feet"),
  5095. default: true
  5096. },
  5097. {
  5098. name: "Macro",
  5099. height: math.unit(1000, "feet")
  5100. },
  5101. {
  5102. name: "Megamacro",
  5103. height: math.unit(5, "miles")
  5104. },
  5105. {
  5106. name: "Gigamacro",
  5107. height: math.unit(5000, "miles")
  5108. },
  5109. ]
  5110. ))
  5111. characterMakers.push(() => makeCharacter(
  5112. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5113. {
  5114. front: {
  5115. height: math.unit(6, "feet"),
  5116. weight: math.unit(210, "lbs"),
  5117. name: "Front",
  5118. image: {
  5119. source: "./media/characters/cimmaron/front-sfw.svg",
  5120. extra: 701 / 676,
  5121. bottom: 0.046
  5122. }
  5123. },
  5124. back: {
  5125. height: math.unit(6, "feet"),
  5126. weight: math.unit(210, "lbs"),
  5127. name: "Back",
  5128. image: {
  5129. source: "./media/characters/cimmaron/back-sfw.svg",
  5130. extra: 701 / 676,
  5131. bottom: 0.046
  5132. }
  5133. },
  5134. frontNsfw: {
  5135. height: math.unit(6, "feet"),
  5136. weight: math.unit(210, "lbs"),
  5137. name: "Front (NSFW)",
  5138. image: {
  5139. source: "./media/characters/cimmaron/front-nsfw.svg",
  5140. extra: 701 / 676,
  5141. bottom: 0.046
  5142. }
  5143. },
  5144. backNsfw: {
  5145. height: math.unit(6, "feet"),
  5146. weight: math.unit(210, "lbs"),
  5147. name: "Back (NSFW)",
  5148. image: {
  5149. source: "./media/characters/cimmaron/back-nsfw.svg",
  5150. extra: 701 / 676,
  5151. bottom: 0.046
  5152. }
  5153. },
  5154. dick: {
  5155. height: math.unit(1.714, "feet"),
  5156. name: "Dick",
  5157. image: {
  5158. source: "./media/characters/cimmaron/dick.svg"
  5159. }
  5160. },
  5161. },
  5162. [
  5163. {
  5164. name: "Normal",
  5165. height: math.unit(6, "feet"),
  5166. default: true
  5167. },
  5168. {
  5169. name: "Macro Mayor",
  5170. height: math.unit(350, "meters")
  5171. },
  5172. ]
  5173. ))
  5174. characterMakers.push(() => makeCharacter(
  5175. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5176. {
  5177. front: {
  5178. height: math.unit(6, "feet"),
  5179. weight: math.unit(200, "lbs"),
  5180. name: "Front",
  5181. image: {
  5182. source: "./media/characters/akari/front.svg",
  5183. extra: 962 / 901,
  5184. bottom: 0.04
  5185. }
  5186. }
  5187. },
  5188. [
  5189. {
  5190. name: "Micro",
  5191. height: math.unit(5, "inches"),
  5192. default: true
  5193. },
  5194. {
  5195. name: "Normal",
  5196. height: math.unit(7, "feet")
  5197. },
  5198. ]
  5199. ))
  5200. characterMakers.push(() => makeCharacter(
  5201. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5202. {
  5203. front: {
  5204. height: math.unit(6, "feet"),
  5205. weight: math.unit(140, "lbs"),
  5206. name: "Front",
  5207. image: {
  5208. source: "./media/characters/cynosura/front.svg",
  5209. extra: 896 / 847
  5210. }
  5211. },
  5212. back: {
  5213. height: math.unit(6, "feet"),
  5214. weight: math.unit(140, "lbs"),
  5215. name: "Back",
  5216. image: {
  5217. source: "./media/characters/cynosura/back.svg",
  5218. extra: 1365 / 1250
  5219. }
  5220. },
  5221. },
  5222. [
  5223. {
  5224. name: "Micro",
  5225. height: math.unit(4, "inches")
  5226. },
  5227. {
  5228. name: "Normal",
  5229. height: math.unit(5.75, "feet"),
  5230. default: true
  5231. },
  5232. {
  5233. name: "Tall",
  5234. height: math.unit(10, "feet")
  5235. },
  5236. {
  5237. name: "Big",
  5238. height: math.unit(20, "feet")
  5239. },
  5240. {
  5241. name: "Macro",
  5242. height: math.unit(50, "feet")
  5243. },
  5244. ]
  5245. ))
  5246. characterMakers.push(() => makeCharacter(
  5247. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5248. {
  5249. front: {
  5250. height: math.unit(6, "feet"),
  5251. weight: math.unit(170, "lbs"),
  5252. name: "Front",
  5253. image: {
  5254. source: "./media/characters/gin/front.svg",
  5255. extra: 1.053,
  5256. bottom: 0.025
  5257. }
  5258. },
  5259. foot: {
  5260. height: math.unit(6 / 4.25, "feet"),
  5261. name: "Foot",
  5262. image: {
  5263. source: "./media/characters/gin/foot.svg"
  5264. }
  5265. },
  5266. sole: {
  5267. height: math.unit(6 / 4.40, "feet"),
  5268. name: "Sole",
  5269. image: {
  5270. source: "./media/characters/gin/sole.svg"
  5271. }
  5272. },
  5273. },
  5274. [
  5275. {
  5276. name: "Normal",
  5277. height: math.unit(13 + 2 / 12, "feet")
  5278. },
  5279. {
  5280. name: "Macro",
  5281. height: math.unit(1500, "feet")
  5282. },
  5283. {
  5284. name: "Megamacro",
  5285. height: math.unit(200, "miles"),
  5286. default: true
  5287. },
  5288. {
  5289. name: "Gigamacro",
  5290. height: math.unit(500, "megameters")
  5291. },
  5292. {
  5293. name: "Teramacro",
  5294. height: math.unit(15, "lightyears")
  5295. }
  5296. ]
  5297. ))
  5298. characterMakers.push(() => makeCharacter(
  5299. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5300. {
  5301. front: {
  5302. height: math.unit(6 + 1 / 6, "feet"),
  5303. weight: math.unit(178, "lbs"),
  5304. name: "Front",
  5305. image: {
  5306. source: "./media/characters/guy/front.svg"
  5307. }
  5308. }
  5309. },
  5310. [
  5311. {
  5312. name: "Normal",
  5313. height: math.unit(6 + 1 / 6, "feet"),
  5314. default: true
  5315. },
  5316. {
  5317. name: "Large",
  5318. height: math.unit(25 + 7 / 12, "feet")
  5319. },
  5320. {
  5321. name: "Macro",
  5322. height: math.unit(60 + 9 / 12, "feet")
  5323. },
  5324. {
  5325. name: "Macro+",
  5326. height: math.unit(246, "feet")
  5327. },
  5328. {
  5329. name: "Macro++",
  5330. height: math.unit(878, "feet")
  5331. }
  5332. ]
  5333. ))
  5334. characterMakers.push(() => makeCharacter(
  5335. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5336. {
  5337. front: {
  5338. height: math.unit(9, "feet"),
  5339. weight: math.unit(800, "lbs"),
  5340. name: "Front",
  5341. image: {
  5342. source: "./media/characters/tiberius/front.svg",
  5343. extra: 2295 / 2071
  5344. }
  5345. },
  5346. back: {
  5347. height: math.unit(9, "feet"),
  5348. weight: math.unit(800, "lbs"),
  5349. name: "Back",
  5350. image: {
  5351. source: "./media/characters/tiberius/back.svg",
  5352. extra: 2373 / 2160
  5353. }
  5354. },
  5355. },
  5356. [
  5357. {
  5358. name: "Normal",
  5359. height: math.unit(9, "feet"),
  5360. default: true
  5361. }
  5362. ]
  5363. ))
  5364. characterMakers.push(() => makeCharacter(
  5365. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5366. {
  5367. front: {
  5368. height: math.unit(6, "feet"),
  5369. weight: math.unit(600, "lbs"),
  5370. name: "Front",
  5371. image: {
  5372. source: "./media/characters/surgo/front.svg",
  5373. extra: 3591 / 2227
  5374. }
  5375. },
  5376. back: {
  5377. height: math.unit(6, "feet"),
  5378. weight: math.unit(600, "lbs"),
  5379. name: "Back",
  5380. image: {
  5381. source: "./media/characters/surgo/back.svg",
  5382. extra: 3557 / 2228
  5383. }
  5384. },
  5385. laying: {
  5386. height: math.unit(6 * 0.85, "feet"),
  5387. weight: math.unit(600, "lbs"),
  5388. name: "Laying",
  5389. image: {
  5390. source: "./media/characters/surgo/laying.svg"
  5391. }
  5392. },
  5393. },
  5394. [
  5395. {
  5396. name: "Normal",
  5397. height: math.unit(6, "feet"),
  5398. default: true
  5399. }
  5400. ]
  5401. ))
  5402. characterMakers.push(() => makeCharacter(
  5403. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5404. {
  5405. side: {
  5406. height: math.unit(6, "feet"),
  5407. weight: math.unit(150, "lbs"),
  5408. name: "Side",
  5409. image: {
  5410. source: "./media/characters/cibus/side.svg",
  5411. extra: 800 / 400
  5412. }
  5413. },
  5414. },
  5415. [
  5416. {
  5417. name: "Normal",
  5418. height: math.unit(6, "feet"),
  5419. default: true
  5420. }
  5421. ]
  5422. ))
  5423. characterMakers.push(() => makeCharacter(
  5424. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5425. {
  5426. front: {
  5427. height: math.unit(6, "feet"),
  5428. weight: math.unit(240, "lbs"),
  5429. name: "Front",
  5430. image: {
  5431. source: "./media/characters/nibbles/front.svg"
  5432. }
  5433. },
  5434. side: {
  5435. height: math.unit(6, "feet"),
  5436. weight: math.unit(240, "lbs"),
  5437. name: "Side",
  5438. image: {
  5439. source: "./media/characters/nibbles/side.svg"
  5440. }
  5441. },
  5442. },
  5443. [
  5444. {
  5445. name: "Normal",
  5446. height: math.unit(9, "feet"),
  5447. default: true
  5448. }
  5449. ]
  5450. ))
  5451. characterMakers.push(() => makeCharacter(
  5452. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5453. {
  5454. side: {
  5455. height: math.unit(5 + 1 / 6, "feet"),
  5456. weight: math.unit(130, "lbs"),
  5457. name: "Side",
  5458. image: {
  5459. source: "./media/characters/rikky/side.svg",
  5460. extra: 851/801
  5461. }
  5462. },
  5463. },
  5464. [
  5465. {
  5466. name: "Normal",
  5467. height: math.unit(5 + 1 / 6, "feet")
  5468. },
  5469. {
  5470. name: "Macro",
  5471. height: math.unit(152, "feet"),
  5472. default: true
  5473. },
  5474. {
  5475. name: "Megamacro",
  5476. height: math.unit(7, "miles")
  5477. }
  5478. ]
  5479. ))
  5480. characterMakers.push(() => makeCharacter(
  5481. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5482. {
  5483. side: {
  5484. height: math.unit(370, "cm"),
  5485. weight: math.unit(350, "lbs"),
  5486. name: "Side",
  5487. image: {
  5488. source: "./media/characters/malfressa/side.svg"
  5489. }
  5490. },
  5491. walking: {
  5492. height: math.unit(370, "cm"),
  5493. weight: math.unit(350, "lbs"),
  5494. name: "Walking",
  5495. image: {
  5496. source: "./media/characters/malfressa/walking.svg"
  5497. }
  5498. },
  5499. feral: {
  5500. height: math.unit(2500, "cm"),
  5501. weight: math.unit(100000, "lbs"),
  5502. name: "Feral",
  5503. image: {
  5504. source: "./media/characters/malfressa/feral.svg",
  5505. extra: 2108 / 837,
  5506. bottom: 0.02
  5507. }
  5508. },
  5509. },
  5510. [
  5511. {
  5512. name: "Normal",
  5513. height: math.unit(370, "cm")
  5514. },
  5515. {
  5516. name: "Macro",
  5517. height: math.unit(300, "meters"),
  5518. default: true
  5519. }
  5520. ]
  5521. ))
  5522. characterMakers.push(() => makeCharacter(
  5523. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5524. {
  5525. front: {
  5526. height: math.unit(6, "feet"),
  5527. weight: math.unit(60, "kg"),
  5528. name: "Front",
  5529. image: {
  5530. source: "./media/characters/jaro/front.svg"
  5531. }
  5532. },
  5533. back: {
  5534. height: math.unit(6, "feet"),
  5535. weight: math.unit(60, "kg"),
  5536. name: "Back",
  5537. image: {
  5538. source: "./media/characters/jaro/back.svg"
  5539. }
  5540. },
  5541. },
  5542. [
  5543. {
  5544. name: "Micro",
  5545. height: math.unit(7, "inches")
  5546. },
  5547. {
  5548. name: "Normal",
  5549. height: math.unit(5.5, "feet"),
  5550. default: true
  5551. },
  5552. {
  5553. name: "Minimacro",
  5554. height: math.unit(20, "feet")
  5555. },
  5556. {
  5557. name: "Macro",
  5558. height: math.unit(200, "meters")
  5559. }
  5560. ]
  5561. ))
  5562. characterMakers.push(() => makeCharacter(
  5563. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5564. {
  5565. front: {
  5566. height: math.unit(6, "feet"),
  5567. weight: math.unit(195, "lb"),
  5568. name: "Front",
  5569. image: {
  5570. source: "./media/characters/rogue/front.svg"
  5571. }
  5572. },
  5573. },
  5574. [
  5575. {
  5576. name: "Macro",
  5577. height: math.unit(90, "feet"),
  5578. default: true
  5579. },
  5580. ]
  5581. ))
  5582. characterMakers.push(() => makeCharacter(
  5583. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5584. {
  5585. front: {
  5586. height: math.unit(5 + 8 / 12, "feet"),
  5587. weight: math.unit(140, "lb"),
  5588. name: "Front",
  5589. image: {
  5590. source: "./media/characters/piper/front.svg",
  5591. extra: 3928 / 3681
  5592. }
  5593. },
  5594. },
  5595. [
  5596. {
  5597. name: "Micro",
  5598. height: math.unit(2, "inches")
  5599. },
  5600. {
  5601. name: "Normal",
  5602. height: math.unit(5 + 8 / 12, "feet")
  5603. },
  5604. {
  5605. name: "Macro",
  5606. height: math.unit(250, "feet"),
  5607. default: true
  5608. },
  5609. {
  5610. name: "Megamacro",
  5611. height: math.unit(7, "miles")
  5612. },
  5613. ]
  5614. ))
  5615. characterMakers.push(() => makeCharacter(
  5616. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5617. {
  5618. front: {
  5619. height: math.unit(6, "feet"),
  5620. weight: math.unit(220, "lb"),
  5621. name: "Front",
  5622. image: {
  5623. source: "./media/characters/gemini/front.svg"
  5624. }
  5625. },
  5626. back: {
  5627. height: math.unit(6, "feet"),
  5628. weight: math.unit(220, "lb"),
  5629. name: "Back",
  5630. image: {
  5631. source: "./media/characters/gemini/back.svg"
  5632. }
  5633. },
  5634. kneeling: {
  5635. height: math.unit(6 / 1.5, "feet"),
  5636. weight: math.unit(220, "lb"),
  5637. name: "Kneeling",
  5638. image: {
  5639. source: "./media/characters/gemini/kneeling.svg",
  5640. bottom: 0.02
  5641. }
  5642. },
  5643. },
  5644. [
  5645. {
  5646. name: "Macro",
  5647. height: math.unit(300, "meters"),
  5648. default: true
  5649. },
  5650. {
  5651. name: "Megamacro",
  5652. height: math.unit(6900, "meters")
  5653. },
  5654. ]
  5655. ))
  5656. characterMakers.push(() => makeCharacter(
  5657. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5658. {
  5659. anthro: {
  5660. height: math.unit(2.35, "meters"),
  5661. weight: math.unit(73, "kg"),
  5662. name: "Anthro",
  5663. image: {
  5664. source: "./media/characters/alicia/anthro.svg",
  5665. extra: 2571 / 2385,
  5666. bottom: 75 / 2648
  5667. }
  5668. },
  5669. paw: {
  5670. height: math.unit(1.32, "feet"),
  5671. name: "Paw",
  5672. image: {
  5673. source: "./media/characters/alicia/paw.svg"
  5674. }
  5675. },
  5676. feral: {
  5677. height: math.unit(1.69, "meters"),
  5678. weight: math.unit(73, "kg"),
  5679. name: "Feral",
  5680. image: {
  5681. source: "./media/characters/alicia/feral.svg",
  5682. extra: 2123 / 1715,
  5683. bottom: 222 / 2349
  5684. }
  5685. },
  5686. },
  5687. [
  5688. {
  5689. name: "Normal",
  5690. height: math.unit(2.35, "meters")
  5691. },
  5692. {
  5693. name: "Macro",
  5694. height: math.unit(60, "meters"),
  5695. default: true
  5696. },
  5697. {
  5698. name: "Megamacro",
  5699. height: math.unit(10000, "kilometers")
  5700. },
  5701. ]
  5702. ))
  5703. characterMakers.push(() => makeCharacter(
  5704. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5705. {
  5706. front: {
  5707. height: math.unit(7, "feet"),
  5708. weight: math.unit(250, "lbs"),
  5709. name: "Front",
  5710. image: {
  5711. source: "./media/characters/archy/front.svg"
  5712. }
  5713. }
  5714. },
  5715. [
  5716. {
  5717. name: "Micro",
  5718. height: math.unit(1, "inch")
  5719. },
  5720. {
  5721. name: "Shorty",
  5722. height: math.unit(5, "feet")
  5723. },
  5724. {
  5725. name: "Normal",
  5726. height: math.unit(7, "feet")
  5727. },
  5728. {
  5729. name: "Macro",
  5730. height: math.unit(600, "meters"),
  5731. default: true
  5732. },
  5733. {
  5734. name: "Megamacro",
  5735. height: math.unit(1, "mile")
  5736. },
  5737. ]
  5738. ))
  5739. characterMakers.push(() => makeCharacter(
  5740. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5741. {
  5742. front: {
  5743. height: math.unit(1.65, "meters"),
  5744. weight: math.unit(74, "kg"),
  5745. name: "Front",
  5746. image: {
  5747. source: "./media/characters/berri/front.svg",
  5748. extra: 857 / 837,
  5749. bottom: 18 / 877
  5750. }
  5751. },
  5752. bum: {
  5753. height: math.unit(1.46, "feet"),
  5754. name: "Bum",
  5755. image: {
  5756. source: "./media/characters/berri/bum.svg"
  5757. }
  5758. },
  5759. mouth: {
  5760. height: math.unit(0.44, "feet"),
  5761. name: "Mouth",
  5762. image: {
  5763. source: "./media/characters/berri/mouth.svg"
  5764. }
  5765. },
  5766. paw: {
  5767. height: math.unit(0.826, "feet"),
  5768. name: "Paw",
  5769. image: {
  5770. source: "./media/characters/berri/paw.svg"
  5771. }
  5772. },
  5773. },
  5774. [
  5775. {
  5776. name: "Normal",
  5777. height: math.unit(1.65, "meters")
  5778. },
  5779. {
  5780. name: "Macro",
  5781. height: math.unit(60, "m"),
  5782. default: true
  5783. },
  5784. {
  5785. name: "Megamacro",
  5786. height: math.unit(9.213, "km")
  5787. },
  5788. {
  5789. name: "Planet Eater",
  5790. height: math.unit(489, "megameters")
  5791. },
  5792. {
  5793. name: "Teramacro",
  5794. height: math.unit(2471635000000, "meters")
  5795. },
  5796. {
  5797. name: "Examacro",
  5798. height: math.unit(8.0624e+26, "meters")
  5799. }
  5800. ]
  5801. ))
  5802. characterMakers.push(() => makeCharacter(
  5803. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5804. {
  5805. front: {
  5806. height: math.unit(1.72, "meters"),
  5807. weight: math.unit(68, "kg"),
  5808. name: "Front",
  5809. image: {
  5810. source: "./media/characters/lexi/front.svg"
  5811. }
  5812. }
  5813. },
  5814. [
  5815. {
  5816. name: "Very Smol",
  5817. height: math.unit(10, "mm")
  5818. },
  5819. {
  5820. name: "Micro",
  5821. height: math.unit(6.8, "cm"),
  5822. default: true
  5823. },
  5824. {
  5825. name: "Normal",
  5826. height: math.unit(1.72, "m")
  5827. }
  5828. ]
  5829. ))
  5830. characterMakers.push(() => makeCharacter(
  5831. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5832. {
  5833. front: {
  5834. height: math.unit(1.69, "meters"),
  5835. weight: math.unit(68, "kg"),
  5836. name: "Front",
  5837. image: {
  5838. source: "./media/characters/martin/front.svg",
  5839. extra: 596 / 581
  5840. }
  5841. }
  5842. },
  5843. [
  5844. {
  5845. name: "Micro",
  5846. height: math.unit(6.85, "cm"),
  5847. default: true
  5848. },
  5849. {
  5850. name: "Normal",
  5851. height: math.unit(1.69, "m")
  5852. }
  5853. ]
  5854. ))
  5855. characterMakers.push(() => makeCharacter(
  5856. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5857. {
  5858. front: {
  5859. height: math.unit(1.69, "meters"),
  5860. weight: math.unit(68, "kg"),
  5861. name: "Front",
  5862. image: {
  5863. source: "./media/characters/juno/front.svg"
  5864. }
  5865. }
  5866. },
  5867. [
  5868. {
  5869. name: "Micro",
  5870. height: math.unit(7, "cm")
  5871. },
  5872. {
  5873. name: "Normal",
  5874. height: math.unit(1.89, "m")
  5875. },
  5876. {
  5877. name: "Macro",
  5878. height: math.unit(353, "meters"),
  5879. default: true
  5880. }
  5881. ]
  5882. ))
  5883. characterMakers.push(() => makeCharacter(
  5884. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5885. {
  5886. front: {
  5887. height: math.unit(1.93, "meters"),
  5888. weight: math.unit(83, "kg"),
  5889. name: "Front",
  5890. image: {
  5891. source: "./media/characters/samantha/front.svg"
  5892. }
  5893. },
  5894. frontClothed: {
  5895. height: math.unit(1.93, "meters"),
  5896. weight: math.unit(83, "kg"),
  5897. name: "Front (Clothed)",
  5898. image: {
  5899. source: "./media/characters/samantha/front-clothed.svg"
  5900. }
  5901. },
  5902. back: {
  5903. height: math.unit(1.93, "meters"),
  5904. weight: math.unit(83, "kg"),
  5905. name: "Back",
  5906. image: {
  5907. source: "./media/characters/samantha/back.svg"
  5908. }
  5909. },
  5910. },
  5911. [
  5912. {
  5913. name: "Normal",
  5914. height: math.unit(1.93, "m")
  5915. },
  5916. {
  5917. name: "Macro",
  5918. height: math.unit(74, "meters"),
  5919. default: true
  5920. },
  5921. {
  5922. name: "Macro+",
  5923. height: math.unit(223, "meters"),
  5924. },
  5925. {
  5926. name: "Megamacro",
  5927. height: math.unit(8381, "meters"),
  5928. },
  5929. {
  5930. name: "Megamacro+",
  5931. height: math.unit(12000, "kilometers")
  5932. },
  5933. ]
  5934. ))
  5935. characterMakers.push(() => makeCharacter(
  5936. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  5937. {
  5938. front: {
  5939. height: math.unit(1.92, "meters"),
  5940. weight: math.unit(80, "kg"),
  5941. name: "Front",
  5942. image: {
  5943. source: "./media/characters/dr-clay/front.svg"
  5944. }
  5945. },
  5946. frontClothed: {
  5947. height: math.unit(1.92, "meters"),
  5948. weight: math.unit(80, "kg"),
  5949. name: "Front (Clothed)",
  5950. image: {
  5951. source: "./media/characters/dr-clay/front-clothed.svg"
  5952. }
  5953. }
  5954. },
  5955. [
  5956. {
  5957. name: "Normal",
  5958. height: math.unit(1.92, "m")
  5959. },
  5960. {
  5961. name: "Macro",
  5962. height: math.unit(214, "meters"),
  5963. default: true
  5964. },
  5965. {
  5966. name: "Macro+",
  5967. height: math.unit(12.237, "meters"),
  5968. },
  5969. {
  5970. name: "Megamacro",
  5971. height: math.unit(557, "megameters"),
  5972. },
  5973. {
  5974. name: "Unimaginable",
  5975. height: math.unit(120e9, "lightyears")
  5976. },
  5977. ]
  5978. ))
  5979. characterMakers.push(() => makeCharacter(
  5980. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  5981. {
  5982. front: {
  5983. height: math.unit(2, "meters"),
  5984. weight: math.unit(80, "kg"),
  5985. name: "Front",
  5986. image: {
  5987. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  5988. }
  5989. }
  5990. },
  5991. [
  5992. {
  5993. name: "Teramacro",
  5994. height: math.unit(500000, "lightyears"),
  5995. default: true
  5996. },
  5997. ]
  5998. ))
  5999. characterMakers.push(() => makeCharacter(
  6000. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6001. {
  6002. front: {
  6003. height: math.unit(2, "meters"),
  6004. weight: math.unit(150, "kg"),
  6005. name: "Front",
  6006. image: {
  6007. source: "./media/characters/vemus/front.svg",
  6008. extra: 2384 / 2084,
  6009. bottom: 0.0123
  6010. }
  6011. }
  6012. },
  6013. [
  6014. {
  6015. name: "Normal",
  6016. height: math.unit(3.75, "meters"),
  6017. default: true
  6018. },
  6019. {
  6020. name: "Big",
  6021. height: math.unit(8, "meters")
  6022. },
  6023. {
  6024. name: "Macro",
  6025. height: math.unit(100, "meters")
  6026. },
  6027. {
  6028. name: "Macro+",
  6029. height: math.unit(1500, "meters")
  6030. },
  6031. {
  6032. name: "Stellar",
  6033. height: math.unit(14e8, "meters")
  6034. },
  6035. ]
  6036. ))
  6037. characterMakers.push(() => makeCharacter(
  6038. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6039. {
  6040. front: {
  6041. height: math.unit(2, "meters"),
  6042. weight: math.unit(70, "kg"),
  6043. name: "Front",
  6044. image: {
  6045. source: "./media/characters/beherit/front.svg",
  6046. extra: 1408 / 1242
  6047. }
  6048. }
  6049. },
  6050. [
  6051. {
  6052. name: "Normal",
  6053. height: math.unit(6, "feet")
  6054. },
  6055. {
  6056. name: "Lorg",
  6057. height: math.unit(25, "feet"),
  6058. default: true
  6059. },
  6060. {
  6061. name: "Lorger",
  6062. height: math.unit(75, "feet")
  6063. },
  6064. {
  6065. name: "Macro",
  6066. height: math.unit(200, "meters")
  6067. },
  6068. ]
  6069. ))
  6070. characterMakers.push(() => makeCharacter(
  6071. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6072. {
  6073. front: {
  6074. height: math.unit(2, "meters"),
  6075. weight: math.unit(150, "kg"),
  6076. name: "Front",
  6077. image: {
  6078. source: "./media/characters/everett/front.svg",
  6079. extra: 2038 / 1737,
  6080. bottom: 0.03
  6081. }
  6082. },
  6083. paw: {
  6084. height: math.unit(2 / 3.6, "meters"),
  6085. name: "Paw",
  6086. image: {
  6087. source: "./media/characters/everett/paw.svg"
  6088. }
  6089. },
  6090. },
  6091. [
  6092. {
  6093. name: "Normal",
  6094. height: math.unit(15, "feet"),
  6095. default: true
  6096. },
  6097. {
  6098. name: "Lorg",
  6099. height: math.unit(70, "feet"),
  6100. default: true
  6101. },
  6102. {
  6103. name: "Lorger",
  6104. height: math.unit(250, "feet")
  6105. },
  6106. {
  6107. name: "Macro",
  6108. height: math.unit(500, "meters")
  6109. },
  6110. ]
  6111. ))
  6112. characterMakers.push(() => makeCharacter(
  6113. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  6114. {
  6115. front: {
  6116. height: math.unit(2, "meters"),
  6117. weight: math.unit(86, "kg"),
  6118. name: "Front",
  6119. image: {
  6120. source: "./media/characters/rose-lion/front.svg"
  6121. }
  6122. },
  6123. bent: {
  6124. height: math.unit(2 / 1.4288, "meters"),
  6125. weight: math.unit(86, "kg"),
  6126. name: "Bent",
  6127. image: {
  6128. source: "./media/characters/rose-lion/bent.svg"
  6129. }
  6130. }
  6131. },
  6132. [
  6133. {
  6134. name: "Mini-Micro",
  6135. height: math.unit(1, "cm")
  6136. },
  6137. {
  6138. name: "Micro",
  6139. height: math.unit(3.5, "inches"),
  6140. default: true
  6141. },
  6142. {
  6143. name: "Normal",
  6144. height: math.unit(6 + 1 / 6, "feet")
  6145. },
  6146. {
  6147. name: "Mini-Macro",
  6148. height: math.unit(9 + 10 / 12, "feet")
  6149. },
  6150. ]
  6151. ))
  6152. characterMakers.push(() => makeCharacter(
  6153. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6154. {
  6155. front: {
  6156. height: math.unit(2, "meters"),
  6157. weight: math.unit(350, "lbs"),
  6158. name: "Front",
  6159. image: {
  6160. source: "./media/characters/regal/front.svg"
  6161. }
  6162. },
  6163. back: {
  6164. height: math.unit(2, "meters"),
  6165. weight: math.unit(350, "lbs"),
  6166. name: "Back",
  6167. image: {
  6168. source: "./media/characters/regal/back.svg"
  6169. }
  6170. },
  6171. },
  6172. [
  6173. {
  6174. name: "Macro",
  6175. height: math.unit(350, "feet"),
  6176. default: true
  6177. }
  6178. ]
  6179. ))
  6180. characterMakers.push(() => makeCharacter(
  6181. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6182. {
  6183. front: {
  6184. height: math.unit(4 + 11 / 12, "feet"),
  6185. weight: math.unit(100, "lbs"),
  6186. name: "Front",
  6187. image: {
  6188. source: "./media/characters/opal/front.svg"
  6189. }
  6190. },
  6191. frontAlt: {
  6192. height: math.unit(4 + 11 / 12, "feet"),
  6193. weight: math.unit(100, "lbs"),
  6194. name: "Front (Alt)",
  6195. image: {
  6196. source: "./media/characters/opal/front-alt.svg"
  6197. }
  6198. },
  6199. },
  6200. [
  6201. {
  6202. name: "Small",
  6203. height: math.unit(4 + 11 / 12, "feet")
  6204. },
  6205. {
  6206. name: "Normal",
  6207. height: math.unit(20, "feet"),
  6208. default: true
  6209. },
  6210. {
  6211. name: "Macro",
  6212. height: math.unit(120, "feet")
  6213. },
  6214. {
  6215. name: "Megamacro",
  6216. height: math.unit(80, "miles")
  6217. },
  6218. {
  6219. name: "True Size",
  6220. height: math.unit(100000, "lightyears")
  6221. },
  6222. ]
  6223. ))
  6224. characterMakers.push(() => makeCharacter(
  6225. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6226. {
  6227. front: {
  6228. height: math.unit(6, "feet"),
  6229. weight: math.unit(200, "lbs"),
  6230. name: "Front",
  6231. image: {
  6232. source: "./media/characters/vector-wuff/front.svg"
  6233. }
  6234. }
  6235. },
  6236. [
  6237. {
  6238. name: "Normal",
  6239. height: math.unit(2.8, "meters")
  6240. },
  6241. {
  6242. name: "Macro",
  6243. height: math.unit(450, "meters"),
  6244. default: true
  6245. },
  6246. {
  6247. name: "Megamacro",
  6248. height: math.unit(15, "kilometers")
  6249. }
  6250. ]
  6251. ))
  6252. characterMakers.push(() => makeCharacter(
  6253. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6254. {
  6255. front: {
  6256. height: math.unit(6, "feet"),
  6257. weight: math.unit(256, "lbs"),
  6258. name: "Front",
  6259. image: {
  6260. source: "./media/characters/dannik/front.svg"
  6261. }
  6262. }
  6263. },
  6264. [
  6265. {
  6266. name: "Macro",
  6267. height: math.unit(69.57, "meters"),
  6268. default: true
  6269. },
  6270. ]
  6271. ))
  6272. characterMakers.push(() => makeCharacter(
  6273. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6274. {
  6275. front: {
  6276. height: math.unit(6, "feet"),
  6277. weight: math.unit(120, "lbs"),
  6278. name: "Front",
  6279. image: {
  6280. source: "./media/characters/azura-saharah/front.svg"
  6281. }
  6282. },
  6283. back: {
  6284. height: math.unit(6, "feet"),
  6285. weight: math.unit(120, "lbs"),
  6286. name: "Back",
  6287. image: {
  6288. source: "./media/characters/azura-saharah/back.svg"
  6289. }
  6290. },
  6291. },
  6292. [
  6293. {
  6294. name: "Macro",
  6295. height: math.unit(100, "feet"),
  6296. default: true
  6297. },
  6298. ]
  6299. ))
  6300. characterMakers.push(() => makeCharacter(
  6301. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6302. {
  6303. side: {
  6304. height: math.unit(5 + 4 / 12, "feet"),
  6305. weight: math.unit(163, "lbs"),
  6306. name: "Side",
  6307. image: {
  6308. source: "./media/characters/kennedy/side.svg"
  6309. }
  6310. }
  6311. },
  6312. [
  6313. {
  6314. name: "Standard Doggo",
  6315. height: math.unit(5 + 4 / 12, "feet")
  6316. },
  6317. {
  6318. name: "Big Doggo",
  6319. height: math.unit(25 + 3 / 12, "feet"),
  6320. default: true
  6321. },
  6322. ]
  6323. ))
  6324. characterMakers.push(() => makeCharacter(
  6325. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6326. {
  6327. front: {
  6328. height: math.unit(6, "feet"),
  6329. weight: math.unit(90, "lbs"),
  6330. name: "Front",
  6331. image: {
  6332. source: "./media/characters/odi-lunar/front.svg"
  6333. }
  6334. }
  6335. },
  6336. [
  6337. {
  6338. name: "Micro",
  6339. height: math.unit(3, "inches"),
  6340. default: true
  6341. },
  6342. {
  6343. name: "Normal",
  6344. height: math.unit(5.5, "feet")
  6345. }
  6346. ]
  6347. ))
  6348. characterMakers.push(() => makeCharacter(
  6349. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6350. {
  6351. back: {
  6352. height: math.unit(6, "feet"),
  6353. weight: math.unit(220, "lbs"),
  6354. name: "Back",
  6355. image: {
  6356. source: "./media/characters/mandake/back.svg"
  6357. }
  6358. }
  6359. },
  6360. [
  6361. {
  6362. name: "Normal",
  6363. height: math.unit(7, "feet"),
  6364. default: true
  6365. },
  6366. {
  6367. name: "Macro",
  6368. height: math.unit(78, "feet")
  6369. },
  6370. {
  6371. name: "Macro+",
  6372. height: math.unit(300, "meters")
  6373. },
  6374. {
  6375. name: "Macro++",
  6376. height: math.unit(2400, "feet")
  6377. },
  6378. {
  6379. name: "Megamacro",
  6380. height: math.unit(5167, "meters")
  6381. },
  6382. {
  6383. name: "Gigamacro",
  6384. height: math.unit(41769, "miles")
  6385. },
  6386. ]
  6387. ))
  6388. characterMakers.push(() => makeCharacter(
  6389. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6390. {
  6391. front: {
  6392. height: math.unit(6, "feet"),
  6393. weight: math.unit(120, "lbs"),
  6394. name: "Front",
  6395. image: {
  6396. source: "./media/characters/yozey/front.svg"
  6397. }
  6398. },
  6399. frontAlt: {
  6400. height: math.unit(6, "feet"),
  6401. weight: math.unit(120, "lbs"),
  6402. name: "Front (Alt)",
  6403. image: {
  6404. source: "./media/characters/yozey/front-alt.svg"
  6405. }
  6406. },
  6407. side: {
  6408. height: math.unit(6, "feet"),
  6409. weight: math.unit(120, "lbs"),
  6410. name: "Side",
  6411. image: {
  6412. source: "./media/characters/yozey/side.svg"
  6413. }
  6414. },
  6415. },
  6416. [
  6417. {
  6418. name: "Micro",
  6419. height: math.unit(3, "inches"),
  6420. default: true
  6421. },
  6422. {
  6423. name: "Normal",
  6424. height: math.unit(6, "feet")
  6425. }
  6426. ]
  6427. ))
  6428. characterMakers.push(() => makeCharacter(
  6429. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6430. {
  6431. front: {
  6432. height: math.unit(6, "feet"),
  6433. weight: math.unit(103, "lbs"),
  6434. name: "Front",
  6435. image: {
  6436. source: "./media/characters/valeska-voss/front.svg"
  6437. }
  6438. }
  6439. },
  6440. [
  6441. {
  6442. name: "Mini-Sized Sub",
  6443. height: math.unit(3.1, "inches")
  6444. },
  6445. {
  6446. name: "Mid-Sized Sub",
  6447. height: math.unit(6.2, "inches")
  6448. },
  6449. {
  6450. name: "Full-Sized Sub",
  6451. height: math.unit(9.3, "inches")
  6452. },
  6453. {
  6454. name: "Normal",
  6455. height: math.unit(5 + 2 / 12, "foot"),
  6456. default: true
  6457. },
  6458. ]
  6459. ))
  6460. characterMakers.push(() => makeCharacter(
  6461. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6462. {
  6463. front: {
  6464. height: math.unit(6, "feet"),
  6465. weight: math.unit(160, "lbs"),
  6466. name: "Front",
  6467. image: {
  6468. source: "./media/characters/gene-zeta/front.svg",
  6469. bottom: 0.03,
  6470. extra: 1
  6471. }
  6472. }
  6473. },
  6474. [
  6475. {
  6476. name: "Normal",
  6477. height: math.unit(6.25, "foot"),
  6478. default: true
  6479. },
  6480. ]
  6481. ))
  6482. characterMakers.push(() => makeCharacter(
  6483. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6484. {
  6485. front: {
  6486. height: math.unit(6, "feet"),
  6487. weight: math.unit(350, "lbs"),
  6488. name: "Front",
  6489. image: {
  6490. source: "./media/characters/razinox/front.svg",
  6491. extra: 1686 / 1548,
  6492. bottom: 28.2 / 1868
  6493. }
  6494. },
  6495. back: {
  6496. height: math.unit(6, "feet"),
  6497. weight: math.unit(350, "lbs"),
  6498. name: "Back",
  6499. image: {
  6500. source: "./media/characters/razinox/back.svg",
  6501. extra: 1660 / 1590,
  6502. bottom: 15 / 1665
  6503. }
  6504. },
  6505. },
  6506. [
  6507. {
  6508. name: "Normal",
  6509. height: math.unit(10 + 8 / 12, "foot")
  6510. },
  6511. {
  6512. name: "Minimacro",
  6513. height: math.unit(15, "foot")
  6514. },
  6515. {
  6516. name: "Macro",
  6517. height: math.unit(60, "foot"),
  6518. default: true
  6519. },
  6520. {
  6521. name: "Megamacro",
  6522. height: math.unit(5, "miles")
  6523. },
  6524. {
  6525. name: "Gigamacro",
  6526. height: math.unit(6000, "miles")
  6527. },
  6528. ]
  6529. ))
  6530. characterMakers.push(() => makeCharacter(
  6531. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6532. {
  6533. front: {
  6534. height: math.unit(6, "feet"),
  6535. weight: math.unit(150, "lbs"),
  6536. name: "Front",
  6537. image: {
  6538. source: "./media/characters/cobalt/front.svg"
  6539. }
  6540. }
  6541. },
  6542. [
  6543. {
  6544. name: "Normal",
  6545. height: math.unit(8 + 1 / 12, "foot")
  6546. },
  6547. {
  6548. name: "Macro",
  6549. height: math.unit(111, "foot"),
  6550. default: true
  6551. },
  6552. {
  6553. name: "Supracosmic",
  6554. height: math.unit(1e42, "feet")
  6555. },
  6556. ]
  6557. ))
  6558. characterMakers.push(() => makeCharacter(
  6559. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6560. {
  6561. front: {
  6562. height: math.unit(6, "feet"),
  6563. weight: math.unit(140, "lbs"),
  6564. name: "Front",
  6565. image: {
  6566. source: "./media/characters/amanda/front.svg"
  6567. }
  6568. }
  6569. },
  6570. [
  6571. {
  6572. name: "Micro",
  6573. height: math.unit(5, "inches"),
  6574. default: true
  6575. },
  6576. ]
  6577. ))
  6578. characterMakers.push(() => makeCharacter(
  6579. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6580. {
  6581. front: {
  6582. height: math.unit(5.59, "feet"),
  6583. weight: math.unit(250, "lbs"),
  6584. name: "Front",
  6585. image: {
  6586. source: "./media/characters/teal/front.svg"
  6587. }
  6588. },
  6589. frontAlt: {
  6590. height: math.unit(6, "feet"),
  6591. weight: math.unit(250, "lbs"),
  6592. name: "Front (Alt)",
  6593. image: {
  6594. source: "./media/characters/teal/front-alt.svg",
  6595. bottom: 0.04,
  6596. extra: 1
  6597. }
  6598. },
  6599. },
  6600. [
  6601. {
  6602. name: "Normal",
  6603. height: math.unit(12, "feet"),
  6604. default: true
  6605. },
  6606. {
  6607. name: "Macro",
  6608. height: math.unit(300, "feet")
  6609. },
  6610. ]
  6611. ))
  6612. characterMakers.push(() => makeCharacter(
  6613. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6614. {
  6615. frontCat: {
  6616. height: math.unit(6, "feet"),
  6617. weight: math.unit(180, "lbs"),
  6618. name: "Front (Cat)",
  6619. image: {
  6620. source: "./media/characters/ravin-amulet/front-cat.svg"
  6621. }
  6622. },
  6623. frontCatAlt: {
  6624. height: math.unit(6, "feet"),
  6625. weight: math.unit(180, "lbs"),
  6626. name: "Front (Alt, Cat)",
  6627. image: {
  6628. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6629. }
  6630. },
  6631. frontWerewolf: {
  6632. height: math.unit(6 * 1.2, "feet"),
  6633. weight: math.unit(225, "lbs"),
  6634. name: "Front (Werewolf)",
  6635. image: {
  6636. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6637. }
  6638. },
  6639. backWerewolf: {
  6640. height: math.unit(6 * 1.2, "feet"),
  6641. weight: math.unit(225, "lbs"),
  6642. name: "Back (Werewolf)",
  6643. image: {
  6644. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6645. }
  6646. },
  6647. },
  6648. [
  6649. {
  6650. name: "Nano",
  6651. height: math.unit(1, "micrometer")
  6652. },
  6653. {
  6654. name: "Micro",
  6655. height: math.unit(1, "inch")
  6656. },
  6657. {
  6658. name: "Normal",
  6659. height: math.unit(6, "feet"),
  6660. default: true
  6661. },
  6662. {
  6663. name: "Macro",
  6664. height: math.unit(60, "feet")
  6665. }
  6666. ]
  6667. ))
  6668. characterMakers.push(() => makeCharacter(
  6669. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6670. {
  6671. front: {
  6672. height: math.unit(6, "feet"),
  6673. weight: math.unit(165, "lbs"),
  6674. name: "Front",
  6675. image: {
  6676. source: "./media/characters/fluoresce/front.svg"
  6677. }
  6678. }
  6679. },
  6680. [
  6681. {
  6682. name: "Micro",
  6683. height: math.unit(6, "cm")
  6684. },
  6685. {
  6686. name: "Normal",
  6687. height: math.unit(5 + 7 / 12, "feet"),
  6688. default: true
  6689. },
  6690. {
  6691. name: "Macro",
  6692. height: math.unit(56, "feet")
  6693. },
  6694. {
  6695. name: "Megamacro",
  6696. height: math.unit(1.9, "miles")
  6697. },
  6698. ]
  6699. ))
  6700. characterMakers.push(() => makeCharacter(
  6701. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6702. {
  6703. front: {
  6704. height: math.unit(9 + 6 / 12, "feet"),
  6705. weight: math.unit(523, "lbs"),
  6706. name: "Side",
  6707. image: {
  6708. source: "./media/characters/aurora/side.svg"
  6709. }
  6710. }
  6711. },
  6712. [
  6713. {
  6714. name: "Normal",
  6715. height: math.unit(9 + 6 / 12, "feet")
  6716. },
  6717. {
  6718. name: "Macro",
  6719. height: math.unit(96, "feet"),
  6720. default: true
  6721. },
  6722. {
  6723. name: "Macro+",
  6724. height: math.unit(243, "feet")
  6725. },
  6726. ]
  6727. ))
  6728. characterMakers.push(() => makeCharacter(
  6729. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6730. {
  6731. front: {
  6732. height: math.unit(194, "cm"),
  6733. weight: math.unit(90, "kg"),
  6734. name: "Front",
  6735. image: {
  6736. source: "./media/characters/ranek/front.svg"
  6737. }
  6738. },
  6739. side: {
  6740. height: math.unit(194, "cm"),
  6741. weight: math.unit(90, "kg"),
  6742. name: "Side",
  6743. image: {
  6744. source: "./media/characters/ranek/side.svg"
  6745. }
  6746. },
  6747. back: {
  6748. height: math.unit(194, "cm"),
  6749. weight: math.unit(90, "kg"),
  6750. name: "Back",
  6751. image: {
  6752. source: "./media/characters/ranek/back.svg"
  6753. }
  6754. },
  6755. feral: {
  6756. height: math.unit(30, "cm"),
  6757. weight: math.unit(1.6, "lbs"),
  6758. name: "Feral",
  6759. image: {
  6760. source: "./media/characters/ranek/feral.svg"
  6761. }
  6762. },
  6763. },
  6764. [
  6765. {
  6766. name: "Normal",
  6767. height: math.unit(194, "cm"),
  6768. default: true
  6769. },
  6770. {
  6771. name: "Macro",
  6772. height: math.unit(100, "meters")
  6773. },
  6774. ]
  6775. ))
  6776. characterMakers.push(() => makeCharacter(
  6777. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6778. {
  6779. front: {
  6780. height: math.unit(5 + 6 / 12, "feet"),
  6781. weight: math.unit(153, "lbs"),
  6782. name: "Front",
  6783. image: {
  6784. source: "./media/characters/andrew-cooper/front.svg"
  6785. }
  6786. },
  6787. },
  6788. [
  6789. {
  6790. name: "Nano",
  6791. height: math.unit(1, "mm")
  6792. },
  6793. {
  6794. name: "Micro",
  6795. height: math.unit(2, "inches")
  6796. },
  6797. {
  6798. name: "Normal",
  6799. height: math.unit(5 + 6 / 12, "feet"),
  6800. default: true
  6801. }
  6802. ]
  6803. ))
  6804. characterMakers.push(() => makeCharacter(
  6805. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6806. {
  6807. front: {
  6808. height: math.unit(6, "feet"),
  6809. weight: math.unit(180, "lbs"),
  6810. name: "Front",
  6811. image: {
  6812. source: "./media/characters/akane-sato/front.svg",
  6813. extra: 1219 / 1140
  6814. }
  6815. },
  6816. back: {
  6817. height: math.unit(6, "feet"),
  6818. weight: math.unit(180, "lbs"),
  6819. name: "Back",
  6820. image: {
  6821. source: "./media/characters/akane-sato/back.svg",
  6822. extra: 1219 / 1170
  6823. }
  6824. },
  6825. },
  6826. [
  6827. {
  6828. name: "Normal",
  6829. height: math.unit(2.5, "meters")
  6830. },
  6831. {
  6832. name: "Macro",
  6833. height: math.unit(250, "meters"),
  6834. default: true
  6835. },
  6836. {
  6837. name: "Megamacro",
  6838. height: math.unit(25, "km")
  6839. },
  6840. ]
  6841. ))
  6842. characterMakers.push(() => makeCharacter(
  6843. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6844. {
  6845. front: {
  6846. height: math.unit(6, "feet"),
  6847. weight: math.unit(65, "kg"),
  6848. name: "Front",
  6849. image: {
  6850. source: "./media/characters/rook/front.svg",
  6851. extra: 960 / 950
  6852. }
  6853. }
  6854. },
  6855. [
  6856. {
  6857. name: "Normal",
  6858. height: math.unit(8.8, "feet")
  6859. },
  6860. {
  6861. name: "Macro",
  6862. height: math.unit(88, "feet"),
  6863. default: true
  6864. },
  6865. {
  6866. name: "Megamacro",
  6867. height: math.unit(8, "miles")
  6868. },
  6869. ]
  6870. ))
  6871. characterMakers.push(() => makeCharacter(
  6872. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6873. {
  6874. front: {
  6875. height: math.unit(12 + 2 / 12, "feet"),
  6876. weight: math.unit(808, "lbs"),
  6877. name: "Front",
  6878. image: {
  6879. source: "./media/characters/prodigy/front.svg"
  6880. }
  6881. }
  6882. },
  6883. [
  6884. {
  6885. name: "Normal",
  6886. height: math.unit(12 + 2 / 12, "feet"),
  6887. default: true
  6888. },
  6889. {
  6890. name: "Macro",
  6891. height: math.unit(143, "feet")
  6892. },
  6893. {
  6894. name: "Macro+",
  6895. height: math.unit(400, "feet")
  6896. },
  6897. ]
  6898. ))
  6899. characterMakers.push(() => makeCharacter(
  6900. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6901. {
  6902. front: {
  6903. height: math.unit(6, "feet"),
  6904. weight: math.unit(225, "lbs"),
  6905. name: "Front",
  6906. image: {
  6907. source: "./media/characters/daniel/front.svg"
  6908. }
  6909. },
  6910. leaning: {
  6911. height: math.unit(6, "feet"),
  6912. weight: math.unit(225, "lbs"),
  6913. name: "Leaning",
  6914. image: {
  6915. source: "./media/characters/daniel/leaning.svg"
  6916. }
  6917. },
  6918. },
  6919. [
  6920. {
  6921. name: "Macro",
  6922. height: math.unit(1000, "feet"),
  6923. default: true
  6924. },
  6925. ]
  6926. ))
  6927. characterMakers.push(() => makeCharacter(
  6928. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  6929. {
  6930. front: {
  6931. height: math.unit(6, "feet"),
  6932. weight: math.unit(88, "lbs"),
  6933. name: "Front",
  6934. image: {
  6935. source: "./media/characters/chiros/front.svg",
  6936. extra: 306 / 226
  6937. }
  6938. },
  6939. side: {
  6940. height: math.unit(6, "feet"),
  6941. weight: math.unit(88, "lbs"),
  6942. name: "Side",
  6943. image: {
  6944. source: "./media/characters/chiros/side.svg",
  6945. extra: 306 / 226
  6946. }
  6947. },
  6948. },
  6949. [
  6950. {
  6951. name: "Normal",
  6952. height: math.unit(6, "cm"),
  6953. default: true
  6954. },
  6955. ]
  6956. ))
  6957. characterMakers.push(() => makeCharacter(
  6958. { name: "Selka", species: ["snake"], tags: ["naga"] },
  6959. {
  6960. front: {
  6961. height: math.unit(6, "feet"),
  6962. weight: math.unit(100, "lbs"),
  6963. name: "Front",
  6964. image: {
  6965. source: "./media/characters/selka/front.svg",
  6966. extra: 947 / 887
  6967. }
  6968. }
  6969. },
  6970. [
  6971. {
  6972. name: "Normal",
  6973. height: math.unit(5, "cm"),
  6974. default: true
  6975. },
  6976. ]
  6977. ))
  6978. characterMakers.push(() => makeCharacter(
  6979. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  6980. {
  6981. front: {
  6982. height: math.unit(8 + 3 / 12, "feet"),
  6983. weight: math.unit(424, "lbs"),
  6984. name: "Front",
  6985. image: {
  6986. source: "./media/characters/verin/front.svg",
  6987. extra: 1845 / 1550
  6988. }
  6989. },
  6990. frontArmored: {
  6991. height: math.unit(8 + 3 / 12, "feet"),
  6992. weight: math.unit(424, "lbs"),
  6993. name: "Front (Armored)",
  6994. image: {
  6995. source: "./media/characters/verin/front-armor.svg",
  6996. extra: 1845 / 1550,
  6997. bottom: 0.01
  6998. }
  6999. },
  7000. back: {
  7001. height: math.unit(8 + 3 / 12, "feet"),
  7002. weight: math.unit(424, "lbs"),
  7003. name: "Back",
  7004. image: {
  7005. source: "./media/characters/verin/back.svg",
  7006. bottom: 0.1,
  7007. extra: 1
  7008. }
  7009. },
  7010. foot: {
  7011. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7012. name: "Foot",
  7013. image: {
  7014. source: "./media/characters/verin/foot.svg"
  7015. }
  7016. },
  7017. },
  7018. [
  7019. {
  7020. name: "Normal",
  7021. height: math.unit(8 + 3 / 12, "feet")
  7022. },
  7023. {
  7024. name: "Minimacro",
  7025. height: math.unit(21, "feet"),
  7026. default: true
  7027. },
  7028. {
  7029. name: "Macro",
  7030. height: math.unit(626, "feet")
  7031. },
  7032. ]
  7033. ))
  7034. characterMakers.push(() => makeCharacter(
  7035. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7036. {
  7037. front: {
  7038. height: math.unit(2.718, "meters"),
  7039. weight: math.unit(150, "lbs"),
  7040. name: "Front",
  7041. image: {
  7042. source: "./media/characters/sovrim-terraquian/front.svg"
  7043. }
  7044. },
  7045. back: {
  7046. height: math.unit(2.718, "meters"),
  7047. weight: math.unit(150, "lbs"),
  7048. name: "Back",
  7049. image: {
  7050. source: "./media/characters/sovrim-terraquian/back.svg"
  7051. }
  7052. }
  7053. },
  7054. [
  7055. {
  7056. name: "Micro",
  7057. height: math.unit(2, "inches")
  7058. },
  7059. {
  7060. name: "Small",
  7061. height: math.unit(1, "meter")
  7062. },
  7063. {
  7064. name: "Normal",
  7065. height: math.unit(Math.E, "meters"),
  7066. default: true
  7067. },
  7068. {
  7069. name: "Macro",
  7070. height: math.unit(20, "meters")
  7071. },
  7072. {
  7073. name: "Macro+",
  7074. height: math.unit(400, "meters")
  7075. },
  7076. ]
  7077. ))
  7078. characterMakers.push(() => makeCharacter(
  7079. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7080. {
  7081. front: {
  7082. height: math.unit(7, "feet"),
  7083. weight: math.unit(489, "lbs"),
  7084. name: "Front",
  7085. image: {
  7086. source: "./media/characters/reece-silvermane/front.svg",
  7087. bottom: 0.02,
  7088. extra: 1
  7089. }
  7090. },
  7091. },
  7092. [
  7093. {
  7094. name: "Macro",
  7095. height: math.unit(1.5, "miles"),
  7096. default: true
  7097. },
  7098. ]
  7099. ))
  7100. characterMakers.push(() => makeCharacter(
  7101. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7102. {
  7103. front: {
  7104. height: math.unit(6, "feet"),
  7105. weight: math.unit(78, "kg"),
  7106. name: "Front",
  7107. image: {
  7108. source: "./media/characters/kane/front.svg",
  7109. extra: 978 / 899
  7110. }
  7111. },
  7112. },
  7113. [
  7114. {
  7115. name: "Normal",
  7116. height: math.unit(2.1, "m"),
  7117. },
  7118. {
  7119. name: "Macro",
  7120. height: math.unit(1, "km"),
  7121. default: true
  7122. },
  7123. ]
  7124. ))
  7125. characterMakers.push(() => makeCharacter(
  7126. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7127. {
  7128. front: {
  7129. height: math.unit(6, "feet"),
  7130. weight: math.unit(200, "kg"),
  7131. name: "Front",
  7132. image: {
  7133. source: "./media/characters/tegon/front.svg",
  7134. bottom: 0.01,
  7135. extra: 1
  7136. }
  7137. },
  7138. },
  7139. [
  7140. {
  7141. name: "Micro",
  7142. height: math.unit(1, "inch")
  7143. },
  7144. {
  7145. name: "Normal",
  7146. height: math.unit(6 + 3 / 12, "feet"),
  7147. default: true
  7148. },
  7149. {
  7150. name: "Macro",
  7151. height: math.unit(300, "feet")
  7152. },
  7153. {
  7154. name: "Megamacro",
  7155. height: math.unit(69, "miles")
  7156. },
  7157. ]
  7158. ))
  7159. characterMakers.push(() => makeCharacter(
  7160. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7161. {
  7162. side: {
  7163. height: math.unit(6, "feet"),
  7164. weight: math.unit(2304, "lbs"),
  7165. name: "Side",
  7166. image: {
  7167. source: "./media/characters/arcturax/side.svg",
  7168. extra: 790 / 376,
  7169. bottom: 0.01
  7170. }
  7171. },
  7172. },
  7173. [
  7174. {
  7175. name: "Micro",
  7176. height: math.unit(2, "inch")
  7177. },
  7178. {
  7179. name: "Normal",
  7180. height: math.unit(6, "feet")
  7181. },
  7182. {
  7183. name: "Macro",
  7184. height: math.unit(39, "feet"),
  7185. default: true
  7186. },
  7187. {
  7188. name: "Megamacro",
  7189. height: math.unit(7, "miles")
  7190. },
  7191. ]
  7192. ))
  7193. characterMakers.push(() => makeCharacter(
  7194. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7195. {
  7196. front: {
  7197. height: math.unit(6, "feet"),
  7198. weight: math.unit(50, "lbs"),
  7199. name: "Front",
  7200. image: {
  7201. source: "./media/characters/sentri/front.svg",
  7202. extra: 1750 / 1570,
  7203. bottom: 0.025
  7204. }
  7205. },
  7206. frontAlt: {
  7207. height: math.unit(6, "feet"),
  7208. weight: math.unit(50, "lbs"),
  7209. name: "Front (Alt)",
  7210. image: {
  7211. source: "./media/characters/sentri/front-alt.svg",
  7212. extra: 1750 / 1570,
  7213. bottom: 0.025
  7214. }
  7215. },
  7216. },
  7217. [
  7218. {
  7219. name: "Normal",
  7220. height: math.unit(15, "feet"),
  7221. default: true
  7222. },
  7223. {
  7224. name: "Macro",
  7225. height: math.unit(2500, "feet")
  7226. }
  7227. ]
  7228. ))
  7229. characterMakers.push(() => makeCharacter(
  7230. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7231. {
  7232. front: {
  7233. height: math.unit(5 + 8 / 12, "feet"),
  7234. weight: math.unit(130, "lbs"),
  7235. name: "Front",
  7236. image: {
  7237. source: "./media/characters/corvin/front.svg",
  7238. extra: 1803 / 1629
  7239. }
  7240. },
  7241. frontShirt: {
  7242. height: math.unit(5 + 8 / 12, "feet"),
  7243. weight: math.unit(130, "lbs"),
  7244. name: "Front (Shirt)",
  7245. image: {
  7246. source: "./media/characters/corvin/front-shirt.svg",
  7247. extra: 1803 / 1629
  7248. }
  7249. },
  7250. frontPoncho: {
  7251. height: math.unit(5 + 8 / 12, "feet"),
  7252. weight: math.unit(130, "lbs"),
  7253. name: "Front (Poncho)",
  7254. image: {
  7255. source: "./media/characters/corvin/front-poncho.svg",
  7256. extra: 1803 / 1629
  7257. }
  7258. },
  7259. side: {
  7260. height: math.unit(5 + 8 / 12, "feet"),
  7261. weight: math.unit(130, "lbs"),
  7262. name: "Side",
  7263. image: {
  7264. source: "./media/characters/corvin/side.svg",
  7265. extra: 1012 / 945
  7266. }
  7267. },
  7268. back: {
  7269. height: math.unit(5 + 8 / 12, "feet"),
  7270. weight: math.unit(130, "lbs"),
  7271. name: "Back",
  7272. image: {
  7273. source: "./media/characters/corvin/back.svg",
  7274. extra: 1803 / 1629
  7275. }
  7276. },
  7277. },
  7278. [
  7279. {
  7280. name: "Micro",
  7281. height: math.unit(3, "inches")
  7282. },
  7283. {
  7284. name: "Normal",
  7285. height: math.unit(5 + 8 / 12, "feet")
  7286. },
  7287. {
  7288. name: "Macro",
  7289. height: math.unit(300, "feet"),
  7290. default: true
  7291. },
  7292. {
  7293. name: "Megamacro",
  7294. height: math.unit(500, "miles")
  7295. }
  7296. ]
  7297. ))
  7298. characterMakers.push(() => makeCharacter(
  7299. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7300. {
  7301. front: {
  7302. height: math.unit(6, "feet"),
  7303. weight: math.unit(135, "lbs"),
  7304. name: "Front",
  7305. image: {
  7306. source: "./media/characters/q/front.svg",
  7307. extra: 854 / 752,
  7308. bottom: 0.005
  7309. }
  7310. },
  7311. back: {
  7312. height: math.unit(6, "feet"),
  7313. weight: math.unit(130, "lbs"),
  7314. name: "Back",
  7315. image: {
  7316. source: "./media/characters/q/back.svg",
  7317. extra: 854 / 752
  7318. }
  7319. },
  7320. },
  7321. [
  7322. {
  7323. name: "Macro",
  7324. height: math.unit(90, "feet"),
  7325. default: true
  7326. },
  7327. {
  7328. name: "Extra Macro",
  7329. height: math.unit(300, "feet"),
  7330. },
  7331. {
  7332. name: "BIG WALF",
  7333. height: math.unit(750, "feet"),
  7334. },
  7335. ]
  7336. ))
  7337. characterMakers.push(() => makeCharacter(
  7338. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7339. {
  7340. front: {
  7341. height: math.unit(6, "feet"),
  7342. weight: math.unit(150, "lbs"),
  7343. name: "Front",
  7344. image: {
  7345. source: "./media/characters/carley/front.svg",
  7346. extra: 3927 / 3540,
  7347. bottom: 29.2/735
  7348. }
  7349. }
  7350. },
  7351. [
  7352. {
  7353. name: "Normal",
  7354. height: math.unit(6 + 3 / 12, "feet")
  7355. },
  7356. {
  7357. name: "Macro",
  7358. height: math.unit(185, "feet"),
  7359. default: true
  7360. },
  7361. {
  7362. name: "Megamacro",
  7363. height: math.unit(8, "miles"),
  7364. },
  7365. ]
  7366. ))
  7367. characterMakers.push(() => makeCharacter(
  7368. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7369. {
  7370. front: {
  7371. height: math.unit(3, "feet"),
  7372. weight: math.unit(28, "lbs"),
  7373. name: "Front",
  7374. image: {
  7375. source: "./media/characters/citrine/front.svg"
  7376. }
  7377. }
  7378. },
  7379. [
  7380. {
  7381. name: "Normal",
  7382. height: math.unit(3, "feet"),
  7383. default: true
  7384. }
  7385. ]
  7386. ))
  7387. characterMakers.push(() => makeCharacter(
  7388. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7389. {
  7390. front: {
  7391. height: math.unit(14, "feet"),
  7392. weight: math.unit(1450, "kg"),
  7393. capacity: math.unit(15, "people"),
  7394. name: "Front",
  7395. image: {
  7396. source: "./media/characters/aura-starwind/front.svg",
  7397. extra: 1455 / 1335
  7398. }
  7399. },
  7400. side: {
  7401. height: math.unit(14, "feet"),
  7402. weight: math.unit(1450, "kg"),
  7403. capacity: math.unit(15, "people"),
  7404. name: "Side",
  7405. image: {
  7406. source: "./media/characters/aura-starwind/side.svg",
  7407. extra: 1654 / 1497
  7408. }
  7409. },
  7410. taur: {
  7411. height: math.unit(18, "feet"),
  7412. weight: math.unit(5500, "kg"),
  7413. capacity: math.unit(50, "people"),
  7414. name: "Taur",
  7415. image: {
  7416. source: "./media/characters/aura-starwind/taur.svg",
  7417. extra: 1760 / 1650
  7418. }
  7419. },
  7420. feral: {
  7421. height: math.unit(46, "feet"),
  7422. weight: math.unit(25000, "kg"),
  7423. capacity: math.unit(120, "people"),
  7424. name: "Feral",
  7425. image: {
  7426. source: "./media/characters/aura-starwind/feral.svg"
  7427. }
  7428. },
  7429. },
  7430. [
  7431. {
  7432. name: "Normal",
  7433. height: math.unit(14, "feet"),
  7434. default: true
  7435. },
  7436. {
  7437. name: "Macro",
  7438. height: math.unit(50, "meters")
  7439. },
  7440. {
  7441. name: "Megamacro",
  7442. height: math.unit(5000, "meters")
  7443. },
  7444. {
  7445. name: "Gigamacro",
  7446. height: math.unit(100000, "kilometers")
  7447. },
  7448. ]
  7449. ))
  7450. characterMakers.push(() => makeCharacter(
  7451. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7452. {
  7453. front: {
  7454. height: math.unit(2 + 7 / 12, "feet"),
  7455. weight: math.unit(32, "lbs"),
  7456. name: "Front",
  7457. image: {
  7458. source: "./media/characters/rivet/front.svg",
  7459. extra: 1716 / 1658,
  7460. bottom: 0.03
  7461. }
  7462. },
  7463. foot: {
  7464. height: math.unit(0.551, "feet"),
  7465. name: "Rivet's Foot",
  7466. image: {
  7467. source: "./media/characters/rivet/foot.svg"
  7468. },
  7469. rename: true
  7470. }
  7471. },
  7472. [
  7473. {
  7474. name: "Micro",
  7475. height: math.unit(1.5, "inches"),
  7476. },
  7477. {
  7478. name: "Normal",
  7479. height: math.unit(2 + 7 / 12, "feet"),
  7480. default: true
  7481. },
  7482. {
  7483. name: "Macro",
  7484. height: math.unit(85, "feet")
  7485. },
  7486. {
  7487. name: "Megamacro",
  7488. height: math.unit(2.2, "km")
  7489. }
  7490. ]
  7491. ))
  7492. characterMakers.push(() => makeCharacter(
  7493. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7494. {
  7495. front: {
  7496. height: math.unit(5 + 9 / 12, "feet"),
  7497. weight: math.unit(150, "lbs"),
  7498. name: "Front",
  7499. image: {
  7500. source: "./media/characters/coffee/front.svg",
  7501. extra: 3666 / 3032,
  7502. bottom: 0.04
  7503. }
  7504. },
  7505. foot: {
  7506. height: math.unit(1.29, "feet"),
  7507. name: "Foot",
  7508. image: {
  7509. source: "./media/characters/coffee/foot.svg"
  7510. }
  7511. },
  7512. },
  7513. [
  7514. {
  7515. name: "Micro",
  7516. height: math.unit(2, "inches"),
  7517. },
  7518. {
  7519. name: "Normal",
  7520. height: math.unit(5 + 9 / 12, "feet"),
  7521. default: true
  7522. },
  7523. {
  7524. name: "Macro",
  7525. height: math.unit(800, "feet")
  7526. },
  7527. {
  7528. name: "Megamacro",
  7529. height: math.unit(25, "miles")
  7530. }
  7531. ]
  7532. ))
  7533. characterMakers.push(() => makeCharacter(
  7534. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7535. {
  7536. front: {
  7537. height: math.unit(6, "feet"),
  7538. weight: math.unit(200, "lbs"),
  7539. name: "Front",
  7540. image: {
  7541. source: "./media/characters/chari-gal/front.svg",
  7542. extra: 1568 / 1385,
  7543. bottom: 0.047
  7544. }
  7545. },
  7546. gigantamax: {
  7547. height: math.unit(6 * 16, "feet"),
  7548. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7549. name: "Gigantamax",
  7550. image: {
  7551. source: "./media/characters/chari-gal/gigantamax.svg",
  7552. extra: 1124 / 888,
  7553. bottom: 0.03
  7554. }
  7555. },
  7556. },
  7557. [
  7558. {
  7559. name: "Normal",
  7560. height: math.unit(5 + 7 / 12, "feet")
  7561. },
  7562. {
  7563. name: "Macro",
  7564. height: math.unit(200, "feet"),
  7565. default: true
  7566. }
  7567. ]
  7568. ))
  7569. characterMakers.push(() => makeCharacter(
  7570. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7571. {
  7572. front: {
  7573. height: math.unit(6, "feet"),
  7574. weight: math.unit(150, "lbs"),
  7575. name: "Front",
  7576. image: {
  7577. source: "./media/characters/nova/front.svg",
  7578. extra: 5000 / 4722,
  7579. bottom: 0.02
  7580. }
  7581. }
  7582. },
  7583. [
  7584. {
  7585. name: "Micro-",
  7586. height: math.unit(0.8, "inches")
  7587. },
  7588. {
  7589. name: "Micro",
  7590. height: math.unit(2, "inches"),
  7591. default: true
  7592. },
  7593. ]
  7594. ))
  7595. characterMakers.push(() => makeCharacter(
  7596. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7597. {
  7598. front: {
  7599. height: math.unit(3 + 1 / 12, "feet"),
  7600. weight: math.unit(21.7, "lbs"),
  7601. name: "Front",
  7602. image: {
  7603. source: "./media/characters/argent/front.svg",
  7604. extra: 1471 / 1331,
  7605. bottom: 100.8 / 1575.5
  7606. }
  7607. }
  7608. },
  7609. [
  7610. {
  7611. name: "Micro",
  7612. height: math.unit(2, "inches")
  7613. },
  7614. {
  7615. name: "Normal",
  7616. height: math.unit(3 + 1 / 12, "feet"),
  7617. default: true
  7618. },
  7619. {
  7620. name: "Macro",
  7621. height: math.unit(120, "feet")
  7622. },
  7623. ]
  7624. ))
  7625. characterMakers.push(() => makeCharacter(
  7626. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7627. {
  7628. lamp: {
  7629. height: math.unit(7 * 1559 / 989, "feet"),
  7630. name: "Magic Lamp",
  7631. image: {
  7632. source: "./media/characters/mira-al-cul/lamp.svg",
  7633. extra: 1617 / 1559
  7634. }
  7635. },
  7636. front: {
  7637. height: math.unit(7, "feet"),
  7638. name: "Front",
  7639. image: {
  7640. source: "./media/characters/mira-al-cul/front.svg",
  7641. extra: 1044 / 990
  7642. }
  7643. },
  7644. },
  7645. [
  7646. {
  7647. name: "Heavily Restricted",
  7648. height: math.unit(7 * 1559 / 989, "feet")
  7649. },
  7650. {
  7651. name: "Freshly Freed",
  7652. height: math.unit(50 * 1559 / 989, "feet")
  7653. },
  7654. {
  7655. name: "World Encompassing",
  7656. height: math.unit(10000 * 1559 / 989, "miles")
  7657. },
  7658. {
  7659. name: "Galactic",
  7660. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7661. },
  7662. {
  7663. name: "Palmed Universe",
  7664. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7665. default: true
  7666. },
  7667. {
  7668. name: "Multiversal Matriarch",
  7669. height: math.unit(8.87e10, "yottameters")
  7670. },
  7671. {
  7672. name: "Void Mother",
  7673. height: math.unit(3.14e110, "yottaparsecs")
  7674. },
  7675. {
  7676. name: "Toying with Transcendence",
  7677. height: math.unit(1e307, "meters")
  7678. },
  7679. ]
  7680. ))
  7681. characterMakers.push(() => makeCharacter(
  7682. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7683. {
  7684. front: {
  7685. height: math.unit(17 + 1 / 12, "feet"),
  7686. weight: math.unit(476.2 * 5, "lbs"),
  7687. name: "Front",
  7688. image: {
  7689. source: "./media/characters/kuro-shi-uchū/front.svg",
  7690. extra: 2329 / 1835,
  7691. bottom: 0.02
  7692. }
  7693. },
  7694. },
  7695. [
  7696. {
  7697. name: "Micro",
  7698. height: math.unit(2, "inches")
  7699. },
  7700. {
  7701. name: "Normal",
  7702. height: math.unit(12, "meters")
  7703. },
  7704. {
  7705. name: "Planetary",
  7706. height: math.unit(0.00929, "AU"),
  7707. default: true
  7708. },
  7709. {
  7710. name: "Universal",
  7711. height: math.unit(20, "gigaparsecs")
  7712. },
  7713. ]
  7714. ))
  7715. characterMakers.push(() => makeCharacter(
  7716. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7717. {
  7718. front: {
  7719. height: math.unit(5 + 2 / 12, "feet"),
  7720. weight: math.unit(120, "lbs"),
  7721. name: "Front",
  7722. image: {
  7723. source: "./media/characters/katherine/front.svg",
  7724. extra: 2075 / 1969
  7725. }
  7726. },
  7727. dress: {
  7728. height: math.unit(5 + 2 / 12, "feet"),
  7729. weight: math.unit(120, "lbs"),
  7730. name: "Dress",
  7731. image: {
  7732. source: "./media/characters/katherine/dress.svg",
  7733. extra: 2258 / 2064
  7734. }
  7735. },
  7736. },
  7737. [
  7738. {
  7739. name: "Micro",
  7740. height: math.unit(1, "inches"),
  7741. default: true
  7742. },
  7743. {
  7744. name: "Normal",
  7745. height: math.unit(5 + 2 / 12, "feet")
  7746. },
  7747. {
  7748. name: "Macro",
  7749. height: math.unit(100, "meters")
  7750. },
  7751. {
  7752. name: "Megamacro",
  7753. height: math.unit(80, "miles")
  7754. },
  7755. ]
  7756. ))
  7757. characterMakers.push(() => makeCharacter(
  7758. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7759. {
  7760. front: {
  7761. height: math.unit(7 + 8 / 12, "feet"),
  7762. weight: math.unit(250, "lbs"),
  7763. name: "Front",
  7764. image: {
  7765. source: "./media/characters/yevis/front.svg",
  7766. extra: 1938 / 1755
  7767. }
  7768. }
  7769. },
  7770. [
  7771. {
  7772. name: "Mortal",
  7773. height: math.unit(7 + 8 / 12, "feet")
  7774. },
  7775. {
  7776. name: "Battle",
  7777. height: math.unit(25 + 11 / 12, "feet")
  7778. },
  7779. {
  7780. name: "Wrath",
  7781. height: math.unit(1654 + 11 / 12, "feet")
  7782. },
  7783. {
  7784. name: "Planet Destroyer",
  7785. height: math.unit(12000, "miles")
  7786. },
  7787. {
  7788. name: "Galaxy Conqueror",
  7789. height: math.unit(1.45, "zettameters"),
  7790. default: true
  7791. },
  7792. {
  7793. name: "Universal War",
  7794. height: math.unit(184, "gigaparsecs")
  7795. },
  7796. {
  7797. name: "Eternity War",
  7798. height: math.unit(1.98e55, "yottaparsecs")
  7799. },
  7800. ]
  7801. ))
  7802. characterMakers.push(() => makeCharacter(
  7803. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7804. {
  7805. front: {
  7806. height: math.unit(5 + 8 / 12, "feet"),
  7807. weight: math.unit(63, "kg"),
  7808. name: "Front",
  7809. image: {
  7810. source: "./media/characters/xavier/front.svg",
  7811. extra: 944 / 883
  7812. }
  7813. },
  7814. frontStretch: {
  7815. height: math.unit(5 + 8 / 12, "feet"),
  7816. weight: math.unit(63, "kg"),
  7817. name: "Stretching",
  7818. image: {
  7819. source: "./media/characters/xavier/front-stretch.svg",
  7820. extra: 962 / 820
  7821. }
  7822. },
  7823. },
  7824. [
  7825. {
  7826. name: "Normal",
  7827. height: math.unit(5 + 8 / 12, "feet")
  7828. },
  7829. {
  7830. name: "Macro",
  7831. height: math.unit(100, "meters"),
  7832. default: true
  7833. },
  7834. {
  7835. name: "McLargeHuge",
  7836. height: math.unit(10, "miles")
  7837. },
  7838. ]
  7839. ))
  7840. characterMakers.push(() => makeCharacter(
  7841. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7842. {
  7843. front: {
  7844. height: math.unit(5 + 5 / 12, "feet"),
  7845. weight: math.unit(150, "lb"),
  7846. name: "Front",
  7847. image: {
  7848. source: "./media/characters/joshii/front.svg"
  7849. }
  7850. },
  7851. foot: {
  7852. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7853. name: "Foot",
  7854. image: {
  7855. source: "./media/characters/joshii/foot.svg"
  7856. }
  7857. },
  7858. },
  7859. [
  7860. {
  7861. name: "Micro",
  7862. height: math.unit(2, "inches")
  7863. },
  7864. {
  7865. name: "Normal",
  7866. height: math.unit(5 + 5 / 12, "feet"),
  7867. default: true
  7868. },
  7869. {
  7870. name: "Macro",
  7871. height: math.unit(785, "feet")
  7872. },
  7873. {
  7874. name: "Megamacro",
  7875. height: math.unit(24.5, "miles")
  7876. },
  7877. ]
  7878. ))
  7879. characterMakers.push(() => makeCharacter(
  7880. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  7881. {
  7882. front: {
  7883. height: math.unit(6, "feet"),
  7884. weight: math.unit(150, "lb"),
  7885. name: "Front",
  7886. image: {
  7887. source: "./media/characters/goddess-elizabeth/front.svg",
  7888. extra: 1800 / 1525,
  7889. bottom: 0.005
  7890. }
  7891. },
  7892. foot: {
  7893. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7894. name: "Foot",
  7895. image: {
  7896. source: "./media/characters/goddess-elizabeth/foot.svg"
  7897. }
  7898. },
  7899. mouth: {
  7900. height: math.unit(6, "feet"),
  7901. name: "Mouth",
  7902. image: {
  7903. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7904. }
  7905. },
  7906. },
  7907. [
  7908. {
  7909. name: "Micro",
  7910. height: math.unit(12, "feet")
  7911. },
  7912. {
  7913. name: "Normal",
  7914. height: math.unit(80, "miles"),
  7915. default: true
  7916. },
  7917. {
  7918. name: "Macro",
  7919. height: math.unit(15000, "parsecs")
  7920. },
  7921. ]
  7922. ))
  7923. characterMakers.push(() => makeCharacter(
  7924. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  7925. {
  7926. front: {
  7927. height: math.unit(5 + 9 / 12, "feet"),
  7928. weight: math.unit(144, "lb"),
  7929. name: "Front",
  7930. image: {
  7931. source: "./media/characters/kara/front.svg"
  7932. }
  7933. },
  7934. feet: {
  7935. height: math.unit(6 / 6.765, "feet"),
  7936. name: "Kara's Feet",
  7937. rename: true,
  7938. image: {
  7939. source: "./media/characters/kara/feet.svg"
  7940. }
  7941. },
  7942. },
  7943. [
  7944. {
  7945. name: "Normal",
  7946. height: math.unit(5 + 9 / 12, "feet")
  7947. },
  7948. {
  7949. name: "Macro",
  7950. height: math.unit(174, "feet"),
  7951. default: true
  7952. },
  7953. ]
  7954. ))
  7955. characterMakers.push(() => makeCharacter(
  7956. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  7957. {
  7958. front: {
  7959. height: math.unit(18, "feet"),
  7960. weight: math.unit(4050, "lb"),
  7961. name: "Front",
  7962. image: {
  7963. source: "./media/characters/tyrone/front.svg",
  7964. extra: 2520 / 2402,
  7965. bottom: 0.025
  7966. }
  7967. },
  7968. },
  7969. [
  7970. {
  7971. name: "Normal",
  7972. height: math.unit(18, "feet"),
  7973. default: true
  7974. },
  7975. {
  7976. name: "Macro",
  7977. height: math.unit(300, "feet")
  7978. },
  7979. ]
  7980. ))
  7981. characterMakers.push(() => makeCharacter(
  7982. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  7983. {
  7984. front: {
  7985. height: math.unit(7 + 8 / 12, "feet"),
  7986. weight: math.unit(120, "lb"),
  7987. name: "Front",
  7988. image: {
  7989. source: "./media/characters/danny/front.svg",
  7990. extra: 1490 / 1350
  7991. }
  7992. },
  7993. back: {
  7994. height: math.unit(7 + 8 / 12, "feet"),
  7995. weight: math.unit(120, "lb"),
  7996. name: "Back",
  7997. image: {
  7998. source: "./media/characters/danny/back.svg",
  7999. extra: 1490 / 1350
  8000. }
  8001. },
  8002. },
  8003. [
  8004. {
  8005. name: "Normal",
  8006. height: math.unit(7 + 8 / 12, "feet"),
  8007. default: true
  8008. },
  8009. ]
  8010. ))
  8011. characterMakers.push(() => makeCharacter(
  8012. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8013. {
  8014. front: {
  8015. height: math.unit(3.5, "inches"),
  8016. weight: math.unit(19, "grams"),
  8017. name: "Front",
  8018. image: {
  8019. source: "./media/characters/mallow/front.svg",
  8020. extra: 471 / 431
  8021. }
  8022. },
  8023. back: {
  8024. height: math.unit(3.5, "inches"),
  8025. weight: math.unit(19, "grams"),
  8026. name: "Back",
  8027. image: {
  8028. source: "./media/characters/mallow/back.svg",
  8029. extra: 471 / 431
  8030. }
  8031. },
  8032. },
  8033. [
  8034. {
  8035. name: "Normal",
  8036. height: math.unit(3.5, "inches"),
  8037. default: true
  8038. },
  8039. ]
  8040. ))
  8041. characterMakers.push(() => makeCharacter(
  8042. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8043. {
  8044. front: {
  8045. height: math.unit(9, "feet"),
  8046. weight: math.unit(230, "kg"),
  8047. name: "Front",
  8048. image: {
  8049. source: "./media/characters/starry-aqua/front.svg"
  8050. }
  8051. },
  8052. back: {
  8053. height: math.unit(9, "feet"),
  8054. weight: math.unit(230, "kg"),
  8055. name: "Back",
  8056. image: {
  8057. source: "./media/characters/starry-aqua/back.svg"
  8058. }
  8059. },
  8060. hand: {
  8061. height: math.unit(9 * 0.1168, "feet"),
  8062. name: "Hand",
  8063. image: {
  8064. source: "./media/characters/starry-aqua/hand.svg"
  8065. }
  8066. },
  8067. foot: {
  8068. height: math.unit(9 * 0.18, "feet"),
  8069. name: "Foot",
  8070. image: {
  8071. source: "./media/characters/starry-aqua/foot.svg"
  8072. }
  8073. }
  8074. },
  8075. [
  8076. {
  8077. name: "Micro",
  8078. height: math.unit(3, "inches")
  8079. },
  8080. {
  8081. name: "Normal",
  8082. height: math.unit(9, "feet")
  8083. },
  8084. {
  8085. name: "Macro",
  8086. height: math.unit(300, "feet"),
  8087. default: true
  8088. },
  8089. {
  8090. name: "Megamacro",
  8091. height: math.unit(3200, "feet")
  8092. }
  8093. ]
  8094. ))
  8095. characterMakers.push(() => makeCharacter(
  8096. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8097. {
  8098. front: {
  8099. height: math.unit(6, "feet"),
  8100. weight: math.unit(230, "lb"),
  8101. name: "Front",
  8102. image: {
  8103. source: "./media/characters/luka/front.svg",
  8104. extra: 1,
  8105. bottom: 0.025
  8106. }
  8107. },
  8108. },
  8109. [
  8110. {
  8111. name: "Normal",
  8112. height: math.unit(12 + 8 / 12, "feet"),
  8113. default: true
  8114. },
  8115. {
  8116. name: "Minimacro",
  8117. height: math.unit(20, "feet")
  8118. },
  8119. {
  8120. name: "Macro",
  8121. height: math.unit(250, "feet")
  8122. },
  8123. {
  8124. name: "Megamacro",
  8125. height: math.unit(5, "miles")
  8126. },
  8127. {
  8128. name: "Gigamacro",
  8129. height: math.unit(8000, "miles")
  8130. },
  8131. ]
  8132. ))
  8133. characterMakers.push(() => makeCharacter(
  8134. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8135. {
  8136. front: {
  8137. height: math.unit(6, "feet"),
  8138. weight: math.unit(150, "lb"),
  8139. name: "Front",
  8140. image: {
  8141. source: "./media/characters/natalie-nightring/front.svg",
  8142. extra: 1,
  8143. bottom: 0.06
  8144. }
  8145. },
  8146. },
  8147. [
  8148. {
  8149. name: "Uh Oh",
  8150. height: math.unit(0.1, "mm")
  8151. },
  8152. {
  8153. name: "Small",
  8154. height: math.unit(3, "inches")
  8155. },
  8156. {
  8157. name: "Human Scale",
  8158. height: math.unit(6, "feet")
  8159. },
  8160. {
  8161. name: "Librarian",
  8162. height: math.unit(50, "feet"),
  8163. default: true
  8164. },
  8165. {
  8166. name: "Immense",
  8167. height: math.unit(200, "miles")
  8168. },
  8169. ]
  8170. ))
  8171. characterMakers.push(() => makeCharacter(
  8172. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8173. {
  8174. front: {
  8175. height: math.unit(6, "feet"),
  8176. weight: math.unit(180, "lbs"),
  8177. name: "Front",
  8178. image: {
  8179. source: "./media/characters/danni-rosie/front.svg",
  8180. extra: 1260 / 1128,
  8181. bottom: 0.022
  8182. }
  8183. },
  8184. },
  8185. [
  8186. {
  8187. name: "Micro",
  8188. height: math.unit(2, "inches"),
  8189. default: true
  8190. },
  8191. ]
  8192. ))
  8193. characterMakers.push(() => makeCharacter(
  8194. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8195. {
  8196. front: {
  8197. height: math.unit(5 + 9 / 12, "feet"),
  8198. weight: math.unit(220, "lb"),
  8199. name: "Front",
  8200. image: {
  8201. source: "./media/characters/samantha-kruse/front.svg",
  8202. extra: (985 / 935),
  8203. bottom: 0.03
  8204. }
  8205. },
  8206. frontUndressed: {
  8207. height: math.unit(5 + 9 / 12, "feet"),
  8208. weight: math.unit(220, "lb"),
  8209. name: "Front (Undressed)",
  8210. image: {
  8211. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8212. extra: (973 / 923),
  8213. bottom: 0.025
  8214. }
  8215. },
  8216. fat: {
  8217. height: math.unit(5 + 9 / 12, "feet"),
  8218. weight: math.unit(900, "lb"),
  8219. name: "Front (Fat)",
  8220. image: {
  8221. source: "./media/characters/samantha-kruse/fat.svg",
  8222. extra: 2688 / 2561
  8223. }
  8224. },
  8225. },
  8226. [
  8227. {
  8228. name: "Normal",
  8229. height: math.unit(5 + 9 / 12, "feet"),
  8230. default: true
  8231. }
  8232. ]
  8233. ))
  8234. characterMakers.push(() => makeCharacter(
  8235. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8236. {
  8237. back: {
  8238. height: math.unit(5 + 4 / 12, "feet"),
  8239. weight: math.unit(4963, "lb"),
  8240. name: "Back",
  8241. image: {
  8242. source: "./media/characters/amelia-rosie/back.svg",
  8243. extra: 1113 / 963,
  8244. bottom: 0.01
  8245. }
  8246. },
  8247. },
  8248. [
  8249. {
  8250. name: "Level 0",
  8251. height: math.unit(5 + 4 / 12, "feet")
  8252. },
  8253. {
  8254. name: "Level 1",
  8255. height: math.unit(164597, "feet"),
  8256. default: true
  8257. },
  8258. {
  8259. name: "Level 2",
  8260. height: math.unit(956243, "miles")
  8261. },
  8262. {
  8263. name: "Level 3",
  8264. height: math.unit(29421709423, "miles")
  8265. },
  8266. {
  8267. name: "Level 4",
  8268. height: math.unit(154, "lightyears")
  8269. },
  8270. {
  8271. name: "Level 5",
  8272. height: math.unit(4738272, "lightyears")
  8273. },
  8274. {
  8275. name: "Level 6",
  8276. height: math.unit(145787152896, "lightyears")
  8277. },
  8278. ]
  8279. ))
  8280. characterMakers.push(() => makeCharacter(
  8281. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8282. {
  8283. front: {
  8284. height: math.unit(5 + 11 / 12, "feet"),
  8285. weight: math.unit(65, "kg"),
  8286. name: "Front",
  8287. image: {
  8288. source: "./media/characters/rook-kitara/front.svg",
  8289. extra: 1347 / 1274,
  8290. bottom: 0.005
  8291. }
  8292. },
  8293. },
  8294. [
  8295. {
  8296. name: "Totally Unfair",
  8297. height: math.unit(1.8, "mm")
  8298. },
  8299. {
  8300. name: "Lap Rookie",
  8301. height: math.unit(1.4, "feet")
  8302. },
  8303. {
  8304. name: "Normal",
  8305. height: math.unit(5 + 11 / 12, "feet"),
  8306. default: true
  8307. },
  8308. {
  8309. name: "How Did This Happen",
  8310. height: math.unit(80, "miles")
  8311. }
  8312. ]
  8313. ))
  8314. characterMakers.push(() => makeCharacter(
  8315. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8316. {
  8317. front: {
  8318. height: math.unit(7, "feet"),
  8319. weight: math.unit(300, "lb"),
  8320. name: "Front",
  8321. image: {
  8322. source: "./media/characters/pisces/front.svg",
  8323. extra: 2255 / 2115,
  8324. bottom: 0.03
  8325. }
  8326. },
  8327. back: {
  8328. height: math.unit(7, "feet"),
  8329. weight: math.unit(300, "lb"),
  8330. name: "Back",
  8331. image: {
  8332. source: "./media/characters/pisces/back.svg",
  8333. extra: 2146 / 2055,
  8334. bottom: 0.04
  8335. }
  8336. },
  8337. },
  8338. [
  8339. {
  8340. name: "Normal",
  8341. height: math.unit(7, "feet"),
  8342. default: true
  8343. },
  8344. {
  8345. name: "Swimming Pool",
  8346. height: math.unit(12.2, "meters")
  8347. },
  8348. {
  8349. name: "Olympic Swimming Pool",
  8350. height: math.unit(56.3, "meters")
  8351. },
  8352. {
  8353. name: "Lake Superior",
  8354. height: math.unit(93900, "meters")
  8355. },
  8356. {
  8357. name: "Mediterranean Sea",
  8358. height: math.unit(644457, "meters")
  8359. },
  8360. {
  8361. name: "World's Oceans",
  8362. height: math.unit(4567491, "meters")
  8363. },
  8364. ]
  8365. ))
  8366. characterMakers.push(() => makeCharacter(
  8367. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8368. {
  8369. front: {
  8370. height: math.unit(2.3, "meters"),
  8371. weight: math.unit(120, "kg"),
  8372. name: "Front",
  8373. image: {
  8374. source: "./media/characters/zelas/front.svg"
  8375. }
  8376. },
  8377. side: {
  8378. height: math.unit(2.3, "meters"),
  8379. weight: math.unit(120, "kg"),
  8380. name: "Side",
  8381. image: {
  8382. source: "./media/characters/zelas/side.svg"
  8383. }
  8384. },
  8385. back: {
  8386. height: math.unit(2.3, "meters"),
  8387. weight: math.unit(120, "kg"),
  8388. name: "Back",
  8389. image: {
  8390. source: "./media/characters/zelas/back.svg"
  8391. }
  8392. },
  8393. foot: {
  8394. height: math.unit(1.116, "feet"),
  8395. name: "Foot",
  8396. image: {
  8397. source: "./media/characters/zelas/foot.svg"
  8398. }
  8399. },
  8400. },
  8401. [
  8402. {
  8403. name: "Normal",
  8404. height: math.unit(2.3, "meters")
  8405. },
  8406. {
  8407. name: "Macro",
  8408. height: math.unit(30, "meters"),
  8409. default: true
  8410. },
  8411. ]
  8412. ))
  8413. characterMakers.push(() => makeCharacter(
  8414. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8415. {
  8416. front: {
  8417. height: math.unit(1, "inch"),
  8418. weight: math.unit(0.21, "grams"),
  8419. name: "Front",
  8420. image: {
  8421. source: "./media/characters/talbot/front.svg",
  8422. extra: 594 / 544
  8423. }
  8424. },
  8425. },
  8426. [
  8427. {
  8428. name: "Micro",
  8429. height: math.unit(1, "inch"),
  8430. default: true
  8431. },
  8432. ]
  8433. ))
  8434. characterMakers.push(() => makeCharacter(
  8435. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8436. {
  8437. front: {
  8438. height: math.unit(3 + 3 / 12, "feet"),
  8439. weight: math.unit(51.8, "lb"),
  8440. name: "Front",
  8441. image: {
  8442. source: "./media/characters/fliss/front.svg",
  8443. extra: 840 / 640
  8444. }
  8445. },
  8446. },
  8447. [
  8448. {
  8449. name: "Teeny Tiny",
  8450. height: math.unit(1, "mm")
  8451. },
  8452. {
  8453. name: "Small",
  8454. height: math.unit(1, "inch"),
  8455. default: true
  8456. },
  8457. {
  8458. name: "Standard Sylveon",
  8459. height: math.unit(3 + 3 / 12, "feet")
  8460. },
  8461. {
  8462. name: "Large Nuisance",
  8463. height: math.unit(33, "feet")
  8464. },
  8465. {
  8466. name: "City Filler",
  8467. height: math.unit(3000, "feet")
  8468. },
  8469. {
  8470. name: "New Horizon",
  8471. height: math.unit(6000, "miles")
  8472. },
  8473. ]
  8474. ))
  8475. characterMakers.push(() => makeCharacter(
  8476. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8477. {
  8478. front: {
  8479. height: math.unit(5, "cm"),
  8480. weight: math.unit(1.94, "g"),
  8481. name: "Front",
  8482. image: {
  8483. source: "./media/characters/fleta/front.svg",
  8484. extra: 835 / 803
  8485. }
  8486. },
  8487. back: {
  8488. height: math.unit(5, "cm"),
  8489. weight: math.unit(1.94, "g"),
  8490. name: "Back",
  8491. image: {
  8492. source: "./media/characters/fleta/back.svg",
  8493. extra: 835 / 803
  8494. }
  8495. },
  8496. },
  8497. [
  8498. {
  8499. name: "Micro",
  8500. height: math.unit(5, "cm"),
  8501. default: true
  8502. },
  8503. ]
  8504. ))
  8505. characterMakers.push(() => makeCharacter(
  8506. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8507. {
  8508. front: {
  8509. height: math.unit(6, "feet"),
  8510. weight: math.unit(225, "lb"),
  8511. name: "Front",
  8512. image: {
  8513. source: "./media/characters/dominic/front.svg",
  8514. extra: 1770 / 1620,
  8515. bottom: 0.025
  8516. }
  8517. },
  8518. back: {
  8519. height: math.unit(6, "feet"),
  8520. weight: math.unit(225, "lb"),
  8521. name: "Back",
  8522. image: {
  8523. source: "./media/characters/dominic/back.svg",
  8524. extra: 1745 / 1620,
  8525. bottom: 0.065
  8526. }
  8527. },
  8528. },
  8529. [
  8530. {
  8531. name: "Nano",
  8532. height: math.unit(0.1, "mm")
  8533. },
  8534. {
  8535. name: "Micro-",
  8536. height: math.unit(1, "mm")
  8537. },
  8538. {
  8539. name: "Micro",
  8540. height: math.unit(4, "inches")
  8541. },
  8542. {
  8543. name: "Normal",
  8544. height: math.unit(6 + 4 / 12, "feet"),
  8545. default: true
  8546. },
  8547. {
  8548. name: "Macro",
  8549. height: math.unit(115, "feet")
  8550. },
  8551. {
  8552. name: "Macro+",
  8553. height: math.unit(955, "feet")
  8554. },
  8555. {
  8556. name: "Megamacro",
  8557. height: math.unit(8990, "feet")
  8558. },
  8559. {
  8560. name: "Gigmacro",
  8561. height: math.unit(9310, "miles")
  8562. },
  8563. {
  8564. name: "Teramacro",
  8565. height: math.unit(1567005010, "miles")
  8566. },
  8567. {
  8568. name: "Examacro",
  8569. height: math.unit(1425, "parsecs")
  8570. },
  8571. ]
  8572. ))
  8573. characterMakers.push(() => makeCharacter(
  8574. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8575. {
  8576. front: {
  8577. height: math.unit(400, "feet"),
  8578. weight: math.unit(44444444, "lb"),
  8579. name: "Front",
  8580. image: {
  8581. source: "./media/characters/major-colonel/front.svg"
  8582. }
  8583. },
  8584. back: {
  8585. height: math.unit(400, "feet"),
  8586. weight: math.unit(44444444, "lb"),
  8587. name: "Back",
  8588. image: {
  8589. source: "./media/characters/major-colonel/back.svg"
  8590. }
  8591. },
  8592. },
  8593. [
  8594. {
  8595. name: "Macro",
  8596. height: math.unit(400, "feet"),
  8597. default: true
  8598. },
  8599. ]
  8600. ))
  8601. characterMakers.push(() => makeCharacter(
  8602. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8603. {
  8604. catFront: {
  8605. height: math.unit(6, "feet"),
  8606. weight: math.unit(120, "lb"),
  8607. name: "Front (Cat Side)",
  8608. image: {
  8609. source: "./media/characters/axel-lycan/cat-front.svg",
  8610. extra: 430 / 402,
  8611. bottom: 43 / 472.35
  8612. }
  8613. },
  8614. catBack: {
  8615. height: math.unit(6, "feet"),
  8616. weight: math.unit(120, "lb"),
  8617. name: "Back (Cat Side)",
  8618. image: {
  8619. source: "./media/characters/axel-lycan/cat-back.svg",
  8620. extra: 447 / 419,
  8621. bottom: 23.3 / 469
  8622. }
  8623. },
  8624. wolfFront: {
  8625. height: math.unit(6, "feet"),
  8626. weight: math.unit(120, "lb"),
  8627. name: "Front (Wolf Side)",
  8628. image: {
  8629. source: "./media/characters/axel-lycan/wolf-front.svg",
  8630. extra: 485 / 456,
  8631. bottom: 19 / 504
  8632. }
  8633. },
  8634. wolfBack: {
  8635. height: math.unit(6, "feet"),
  8636. weight: math.unit(120, "lb"),
  8637. name: "Back (Wolf Side)",
  8638. image: {
  8639. source: "./media/characters/axel-lycan/wolf-back.svg",
  8640. extra: 475 / 438,
  8641. bottom: 39.2 / 514
  8642. }
  8643. },
  8644. },
  8645. [
  8646. {
  8647. name: "Macro",
  8648. height: math.unit(1, "km"),
  8649. default: true
  8650. },
  8651. ]
  8652. ))
  8653. characterMakers.push(() => makeCharacter(
  8654. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8655. {
  8656. front: {
  8657. height: math.unit(5 + 9 / 12, "feet"),
  8658. weight: math.unit(175, "lb"),
  8659. name: "Front",
  8660. image: {
  8661. source: "./media/characters/vanrel-hyena/front.svg",
  8662. extra: 1086 / 1010,
  8663. bottom: 0.04
  8664. }
  8665. },
  8666. },
  8667. [
  8668. {
  8669. name: "Normal",
  8670. height: math.unit(5 + 9 / 12, "feet"),
  8671. default: true
  8672. },
  8673. ]
  8674. ))
  8675. characterMakers.push(() => makeCharacter(
  8676. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8677. {
  8678. front: {
  8679. height: math.unit(6, "feet"),
  8680. weight: math.unit(103, "lb"),
  8681. name: "Front",
  8682. image: {
  8683. source: "./media/characters/abbott-absol/front.svg",
  8684. extra: 2010 / 1842
  8685. }
  8686. },
  8687. },
  8688. [
  8689. {
  8690. name: "Megamicro",
  8691. height: math.unit(0.1, "mm")
  8692. },
  8693. {
  8694. name: "Micro",
  8695. height: math.unit(1, "inch")
  8696. },
  8697. {
  8698. name: "Normal",
  8699. height: math.unit(6, "feet"),
  8700. default: true
  8701. },
  8702. ]
  8703. ))
  8704. characterMakers.push(() => makeCharacter(
  8705. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8706. {
  8707. front: {
  8708. height: math.unit(6, "feet"),
  8709. weight: math.unit(264, "lb"),
  8710. name: "Front",
  8711. image: {
  8712. source: "./media/characters/hector/front.svg",
  8713. extra: 2280 / 2130,
  8714. bottom: 0.07
  8715. }
  8716. },
  8717. },
  8718. [
  8719. {
  8720. name: "Normal",
  8721. height: math.unit(12.25, "foot"),
  8722. default: true
  8723. },
  8724. {
  8725. name: "Macro",
  8726. height: math.unit(160, "feet")
  8727. },
  8728. ]
  8729. ))
  8730. characterMakers.push(() => makeCharacter(
  8731. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8732. {
  8733. front: {
  8734. height: math.unit(6, "feet"),
  8735. weight: math.unit(150, "lb"),
  8736. name: "Front",
  8737. image: {
  8738. source: "./media/characters/sal/front.svg",
  8739. extra: 1846 / 1699,
  8740. bottom: 0.04
  8741. }
  8742. },
  8743. },
  8744. [
  8745. {
  8746. name: "Megamacro",
  8747. height: math.unit(10, "miles"),
  8748. default: true
  8749. },
  8750. ]
  8751. ))
  8752. characterMakers.push(() => makeCharacter(
  8753. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8754. {
  8755. front: {
  8756. height: math.unit(3, "meters"),
  8757. weight: math.unit(450, "kg"),
  8758. name: "front",
  8759. image: {
  8760. source: "./media/characters/ranger/front.svg",
  8761. extra: 2401 / 2243,
  8762. bottom: 0.05
  8763. }
  8764. },
  8765. },
  8766. [
  8767. {
  8768. name: "Normal",
  8769. height: math.unit(3, "meters"),
  8770. default: true
  8771. },
  8772. ]
  8773. ))
  8774. characterMakers.push(() => makeCharacter(
  8775. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8776. {
  8777. front: {
  8778. height: math.unit(14, "feet"),
  8779. weight: math.unit(800, "kg"),
  8780. name: "Front",
  8781. image: {
  8782. source: "./media/characters/theresa/front.svg",
  8783. extra: 3575 / 3346,
  8784. bottom: 0.03
  8785. }
  8786. },
  8787. },
  8788. [
  8789. {
  8790. name: "Normal",
  8791. height: math.unit(14, "feet"),
  8792. default: true
  8793. },
  8794. ]
  8795. ))
  8796. characterMakers.push(() => makeCharacter(
  8797. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8798. {
  8799. front: {
  8800. height: math.unit(6, "feet"),
  8801. weight: math.unit(3, "kg"),
  8802. name: "Front",
  8803. image: {
  8804. source: "./media/characters/ine/front.svg",
  8805. extra: 678 / 539,
  8806. bottom: 0.023
  8807. }
  8808. },
  8809. },
  8810. [
  8811. {
  8812. name: "Normal",
  8813. height: math.unit(2.265, "feet"),
  8814. default: true
  8815. },
  8816. ]
  8817. ))
  8818. characterMakers.push(() => makeCharacter(
  8819. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8820. {
  8821. front: {
  8822. height: math.unit(5, "feet"),
  8823. weight: math.unit(30, "kg"),
  8824. name: "Front",
  8825. image: {
  8826. source: "./media/characters/vial/front.svg",
  8827. extra: 1365 / 1277,
  8828. bottom: 0.04
  8829. }
  8830. },
  8831. },
  8832. [
  8833. {
  8834. name: "Normal",
  8835. height: math.unit(5, "feet"),
  8836. default: true
  8837. },
  8838. ]
  8839. ))
  8840. characterMakers.push(() => makeCharacter(
  8841. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8842. {
  8843. side: {
  8844. height: math.unit(3.4, "meters"),
  8845. weight: math.unit(1000, "lb"),
  8846. name: "Side",
  8847. image: {
  8848. source: "./media/characters/rovoska/side.svg",
  8849. extra: 4403 / 1515
  8850. }
  8851. },
  8852. },
  8853. [
  8854. {
  8855. name: "Normal",
  8856. height: math.unit(3.4, "meters"),
  8857. default: true
  8858. },
  8859. ]
  8860. ))
  8861. characterMakers.push(() => makeCharacter(
  8862. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8863. {
  8864. front: {
  8865. height: math.unit(8, "feet"),
  8866. weight: math.unit(315, "lb"),
  8867. name: "Front",
  8868. image: {
  8869. source: "./media/characters/gunner-rotthbauer/front.svg"
  8870. }
  8871. },
  8872. back: {
  8873. height: math.unit(8, "feet"),
  8874. weight: math.unit(315, "lb"),
  8875. name: "Back",
  8876. image: {
  8877. source: "./media/characters/gunner-rotthbauer/back.svg"
  8878. }
  8879. },
  8880. },
  8881. [
  8882. {
  8883. name: "Micro",
  8884. height: math.unit(3.5, "inches")
  8885. },
  8886. {
  8887. name: "Normal",
  8888. height: math.unit(8, "feet"),
  8889. default: true
  8890. },
  8891. {
  8892. name: "Macro",
  8893. height: math.unit(250, "feet")
  8894. },
  8895. {
  8896. name: "Megamacro",
  8897. height: math.unit(1, "AU")
  8898. },
  8899. ]
  8900. ))
  8901. characterMakers.push(() => makeCharacter(
  8902. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8903. {
  8904. front: {
  8905. height: math.unit(5 + 5 / 12, "feet"),
  8906. weight: math.unit(140, "lb"),
  8907. name: "Front",
  8908. image: {
  8909. source: "./media/characters/allatia/front.svg",
  8910. extra: 1227 / 1180,
  8911. bottom: 0.027
  8912. }
  8913. },
  8914. },
  8915. [
  8916. {
  8917. name: "Normal",
  8918. height: math.unit(5 + 5 / 12, "feet")
  8919. },
  8920. {
  8921. name: "Macro",
  8922. height: math.unit(250, "feet"),
  8923. default: true
  8924. },
  8925. {
  8926. name: "Megamacro",
  8927. height: math.unit(8, "miles")
  8928. }
  8929. ]
  8930. ))
  8931. characterMakers.push(() => makeCharacter(
  8932. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  8933. {
  8934. front: {
  8935. height: math.unit(6, "feet"),
  8936. weight: math.unit(120, "lb"),
  8937. name: "Front",
  8938. image: {
  8939. source: "./media/characters/tene/front.svg",
  8940. extra: 1728 / 1578,
  8941. bottom: 0.022
  8942. }
  8943. },
  8944. stomping: {
  8945. height: math.unit(2.025, "meters"),
  8946. weight: math.unit(120, "lb"),
  8947. name: "Stomping",
  8948. image: {
  8949. source: "./media/characters/tene/stomping.svg",
  8950. extra: 938 / 873,
  8951. bottom: 0.01
  8952. }
  8953. },
  8954. sitting: {
  8955. height: math.unit(1, "meter"),
  8956. weight: math.unit(120, "lb"),
  8957. name: "Sitting",
  8958. image: {
  8959. source: "./media/characters/tene/sitting.svg",
  8960. extra: 437 / 415,
  8961. bottom: 0.1
  8962. }
  8963. },
  8964. feral: {
  8965. height: math.unit(3.9, "feet"),
  8966. weight: math.unit(250, "lb"),
  8967. name: "Feral",
  8968. image: {
  8969. source: "./media/characters/tene/feral.svg",
  8970. extra: 717 / 458,
  8971. bottom: 0.179
  8972. }
  8973. },
  8974. },
  8975. [
  8976. {
  8977. name: "Normal",
  8978. height: math.unit(6, "feet")
  8979. },
  8980. {
  8981. name: "Macro",
  8982. height: math.unit(300, "feet"),
  8983. default: true
  8984. },
  8985. {
  8986. name: "Megamacro",
  8987. height: math.unit(5, "miles")
  8988. },
  8989. ]
  8990. ))
  8991. characterMakers.push(() => makeCharacter(
  8992. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  8993. {
  8994. side: {
  8995. height: math.unit(6, "feet"),
  8996. name: "Side",
  8997. image: {
  8998. source: "./media/characters/evander/side.svg",
  8999. extra: 877 / 477
  9000. }
  9001. },
  9002. },
  9003. [
  9004. {
  9005. name: "Normal",
  9006. height: math.unit(0.83, "meters"),
  9007. default: true
  9008. },
  9009. ]
  9010. ))
  9011. characterMakers.push(() => makeCharacter(
  9012. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9013. {
  9014. front: {
  9015. height: math.unit(12, "feet"),
  9016. weight: math.unit(1000, "lb"),
  9017. name: "Front",
  9018. image: {
  9019. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9020. extra: 1762 / 1611
  9021. }
  9022. },
  9023. back: {
  9024. height: math.unit(12, "feet"),
  9025. weight: math.unit(1000, "lb"),
  9026. name: "Back",
  9027. image: {
  9028. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9029. extra: 1762 / 1611
  9030. }
  9031. },
  9032. },
  9033. [
  9034. {
  9035. name: "Normal",
  9036. height: math.unit(12, "feet"),
  9037. default: true
  9038. },
  9039. {
  9040. name: "Kaiju",
  9041. height: math.unit(150, "feet")
  9042. },
  9043. ]
  9044. ))
  9045. characterMakers.push(() => makeCharacter(
  9046. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9047. {
  9048. front: {
  9049. height: math.unit(6, "feet"),
  9050. weight: math.unit(150, "lb"),
  9051. name: "Front",
  9052. image: {
  9053. source: "./media/characters/zero-alurus/front.svg"
  9054. }
  9055. },
  9056. back: {
  9057. height: math.unit(6, "feet"),
  9058. weight: math.unit(150, "lb"),
  9059. name: "Back",
  9060. image: {
  9061. source: "./media/characters/zero-alurus/back.svg"
  9062. }
  9063. },
  9064. },
  9065. [
  9066. {
  9067. name: "Normal",
  9068. height: math.unit(5 + 10 / 12, "feet")
  9069. },
  9070. {
  9071. name: "Macro",
  9072. height: math.unit(60, "feet"),
  9073. default: true
  9074. },
  9075. {
  9076. name: "Macro+",
  9077. height: math.unit(450, "feet")
  9078. },
  9079. ]
  9080. ))
  9081. characterMakers.push(() => makeCharacter(
  9082. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9083. {
  9084. front: {
  9085. height: math.unit(6, "feet"),
  9086. weight: math.unit(200, "lb"),
  9087. name: "Front",
  9088. image: {
  9089. source: "./media/characters/mega-shi/front.svg",
  9090. extra: 1279 / 1250,
  9091. bottom: 0.02
  9092. }
  9093. },
  9094. back: {
  9095. height: math.unit(6, "feet"),
  9096. weight: math.unit(200, "lb"),
  9097. name: "Back",
  9098. image: {
  9099. source: "./media/characters/mega-shi/back.svg",
  9100. extra: 1279 / 1250,
  9101. bottom: 0.02
  9102. }
  9103. },
  9104. },
  9105. [
  9106. {
  9107. name: "Micro",
  9108. height: math.unit(16 + 6 / 12, "feet")
  9109. },
  9110. {
  9111. name: "Third Dimension",
  9112. height: math.unit(40, "meters")
  9113. },
  9114. {
  9115. name: "Normal",
  9116. height: math.unit(660, "feet"),
  9117. default: true
  9118. },
  9119. {
  9120. name: "Megamacro",
  9121. height: math.unit(10, "miles")
  9122. },
  9123. {
  9124. name: "Planetary Launch",
  9125. height: math.unit(500, "miles")
  9126. },
  9127. {
  9128. name: "Interstellar",
  9129. height: math.unit(1e9, "miles")
  9130. },
  9131. {
  9132. name: "Leaving the Universe",
  9133. height: math.unit(1, "gigaparsec")
  9134. },
  9135. {
  9136. name: "Travelling Universes",
  9137. height: math.unit(30e15, "parsecs")
  9138. },
  9139. ]
  9140. ))
  9141. characterMakers.push(() => makeCharacter(
  9142. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9143. {
  9144. front: {
  9145. height: math.unit(6, "feet"),
  9146. weight: math.unit(150, "lb"),
  9147. name: "Front",
  9148. image: {
  9149. source: "./media/characters/odyssey/front.svg",
  9150. extra: 1782 / 1582,
  9151. bottom: 0.01
  9152. }
  9153. },
  9154. side: {
  9155. height: math.unit(5.7, "feet"),
  9156. weight: math.unit(140, "lb"),
  9157. name: "Side",
  9158. image: {
  9159. source: "./media/characters/odyssey/side.svg",
  9160. extra: 6462 / 5700
  9161. }
  9162. },
  9163. },
  9164. [
  9165. {
  9166. name: "Normal",
  9167. height: math.unit(5 + 4 / 12, "feet")
  9168. },
  9169. {
  9170. name: "Macro",
  9171. height: math.unit(1, "km")
  9172. },
  9173. {
  9174. name: "Megamacro",
  9175. height: math.unit(3000, "km")
  9176. },
  9177. {
  9178. name: "Gigamacro",
  9179. height: math.unit(1, "AU"),
  9180. default: true
  9181. },
  9182. {
  9183. name: "Omniversal",
  9184. height: math.unit(100e14, "lightyears")
  9185. },
  9186. ]
  9187. ))
  9188. characterMakers.push(() => makeCharacter(
  9189. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9190. {
  9191. front: {
  9192. height: math.unit(6, "feet"),
  9193. weight: math.unit(300, "lb"),
  9194. name: "Front",
  9195. image: {
  9196. source: "./media/characters/mekuto/front.svg",
  9197. extra: 921 / 832,
  9198. bottom: 0.03
  9199. }
  9200. },
  9201. hand: {
  9202. height: math.unit(6 / 10.24, "feet"),
  9203. name: "Hand",
  9204. image: {
  9205. source: "./media/characters/mekuto/hand.svg"
  9206. }
  9207. },
  9208. foot: {
  9209. height: math.unit(6 / 5.05, "feet"),
  9210. name: "Foot",
  9211. image: {
  9212. source: "./media/characters/mekuto/foot.svg"
  9213. }
  9214. },
  9215. },
  9216. [
  9217. {
  9218. name: "Minimicro",
  9219. height: math.unit(0.2, "inches")
  9220. },
  9221. {
  9222. name: "Micro",
  9223. height: math.unit(1.5, "inches")
  9224. },
  9225. {
  9226. name: "Normal",
  9227. height: math.unit(5 + 11 / 12, "feet"),
  9228. default: true
  9229. },
  9230. {
  9231. name: "Minimacro",
  9232. height: math.unit(17 + 9 / 12, "feet")
  9233. },
  9234. {
  9235. name: "Macro",
  9236. height: math.unit(177.5, "feet")
  9237. },
  9238. {
  9239. name: "Megamacro",
  9240. height: math.unit(152, "miles")
  9241. },
  9242. ]
  9243. ))
  9244. characterMakers.push(() => makeCharacter(
  9245. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9246. {
  9247. front: {
  9248. height: math.unit(6.5, "inches"),
  9249. weight: math.unit(13, "oz"),
  9250. name: "Front",
  9251. image: {
  9252. source: "./media/characters/dafydd-tomos/front.svg",
  9253. extra: 2990 / 2603,
  9254. bottom: 0.03
  9255. }
  9256. },
  9257. },
  9258. [
  9259. {
  9260. name: "Micro",
  9261. height: math.unit(6.5, "inches"),
  9262. default: true
  9263. },
  9264. ]
  9265. ))
  9266. characterMakers.push(() => makeCharacter(
  9267. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9268. {
  9269. front: {
  9270. height: math.unit(6, "feet"),
  9271. weight: math.unit(150, "lb"),
  9272. name: "Front",
  9273. image: {
  9274. source: "./media/characters/splinter/front.svg",
  9275. extra: 2990 / 2882,
  9276. bottom: 0.04
  9277. }
  9278. },
  9279. back: {
  9280. height: math.unit(6, "feet"),
  9281. weight: math.unit(150, "lb"),
  9282. name: "Back",
  9283. image: {
  9284. source: "./media/characters/splinter/back.svg",
  9285. extra: 2990 / 2882,
  9286. bottom: 0.04
  9287. }
  9288. },
  9289. },
  9290. [
  9291. {
  9292. name: "Normal",
  9293. height: math.unit(6, "feet")
  9294. },
  9295. {
  9296. name: "Macro",
  9297. height: math.unit(230, "meters"),
  9298. default: true
  9299. },
  9300. ]
  9301. ))
  9302. characterMakers.push(() => makeCharacter(
  9303. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9304. {
  9305. front: {
  9306. height: math.unit(4 + 10 / 12, "feet"),
  9307. weight: math.unit(480, "lb"),
  9308. name: "Front",
  9309. image: {
  9310. source: "./media/characters/snow-gabumon/front.svg",
  9311. extra: 1140 / 963,
  9312. bottom: 0.058
  9313. }
  9314. },
  9315. back: {
  9316. height: math.unit(4 + 10 / 12, "feet"),
  9317. weight: math.unit(480, "lb"),
  9318. name: "Back",
  9319. image: {
  9320. source: "./media/characters/snow-gabumon/back.svg",
  9321. extra: 1115 / 962,
  9322. bottom: 0.041
  9323. }
  9324. },
  9325. frontUndresed: {
  9326. height: math.unit(4 + 10 / 12, "feet"),
  9327. weight: math.unit(480, "lb"),
  9328. name: "Front (Undressed)",
  9329. image: {
  9330. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9331. extra: 1061 / 960,
  9332. bottom: 0.045
  9333. }
  9334. },
  9335. },
  9336. [
  9337. {
  9338. name: "Micro",
  9339. height: math.unit(1, "inch")
  9340. },
  9341. {
  9342. name: "Normal",
  9343. height: math.unit(4 + 10 / 12, "feet"),
  9344. default: true
  9345. },
  9346. {
  9347. name: "Macro",
  9348. height: math.unit(200, "feet")
  9349. },
  9350. {
  9351. name: "Megamacro",
  9352. height: math.unit(120, "miles")
  9353. },
  9354. {
  9355. name: "Gigamacro",
  9356. height: math.unit(9800, "miles")
  9357. },
  9358. ]
  9359. ))
  9360. characterMakers.push(() => makeCharacter(
  9361. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9362. {
  9363. front: {
  9364. height: math.unit(1.7, "meters"),
  9365. weight: math.unit(140, "lb"),
  9366. name: "Front",
  9367. image: {
  9368. source: "./media/characters/moody/front.svg",
  9369. extra: 3226 / 3007,
  9370. bottom: 0.087
  9371. }
  9372. },
  9373. },
  9374. [
  9375. {
  9376. name: "Micro",
  9377. height: math.unit(1, "mm")
  9378. },
  9379. {
  9380. name: "Normal",
  9381. height: math.unit(1.7, "meters"),
  9382. default: true
  9383. },
  9384. {
  9385. name: "Macro",
  9386. height: math.unit(80, "meters")
  9387. },
  9388. {
  9389. name: "Macro+",
  9390. height: math.unit(500, "meters")
  9391. },
  9392. ]
  9393. ))
  9394. characterMakers.push(() => makeCharacter(
  9395. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9396. {
  9397. front: {
  9398. height: math.unit(6, "feet"),
  9399. weight: math.unit(150, "lb"),
  9400. name: "Front",
  9401. image: {
  9402. source: "./media/characters/zyas/front.svg",
  9403. extra: 1180 / 1120,
  9404. bottom: 0.045
  9405. }
  9406. },
  9407. },
  9408. [
  9409. {
  9410. name: "Normal",
  9411. height: math.unit(10, "feet"),
  9412. default: true
  9413. },
  9414. {
  9415. name: "Macro",
  9416. height: math.unit(500, "feet")
  9417. },
  9418. {
  9419. name: "Megamacro",
  9420. height: math.unit(5, "miles")
  9421. },
  9422. {
  9423. name: "Teramacro",
  9424. height: math.unit(150000, "miles")
  9425. },
  9426. ]
  9427. ))
  9428. characterMakers.push(() => makeCharacter(
  9429. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9430. {
  9431. front: {
  9432. height: math.unit(6, "feet"),
  9433. weight: math.unit(150, "lb"),
  9434. name: "Front",
  9435. image: {
  9436. source: "./media/characters/cuon/front.svg",
  9437. extra: 1390 / 1320,
  9438. bottom: 0.008
  9439. }
  9440. },
  9441. },
  9442. [
  9443. {
  9444. name: "Micro",
  9445. height: math.unit(3, "inches")
  9446. },
  9447. {
  9448. name: "Normal",
  9449. height: math.unit(18 + 9 / 12, "feet"),
  9450. default: true
  9451. },
  9452. {
  9453. name: "Macro",
  9454. height: math.unit(360, "feet")
  9455. },
  9456. {
  9457. name: "Megamacro",
  9458. height: math.unit(360, "miles")
  9459. },
  9460. ]
  9461. ))
  9462. characterMakers.push(() => makeCharacter(
  9463. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9464. {
  9465. front: {
  9466. height: math.unit(2.4, "meters"),
  9467. weight: math.unit(70, "kg"),
  9468. name: "Front",
  9469. image: {
  9470. source: "./media/characters/nyanuxk/front.svg",
  9471. extra: 1172 / 1084,
  9472. bottom: 0.065
  9473. }
  9474. },
  9475. side: {
  9476. height: math.unit(2.4, "meters"),
  9477. weight: math.unit(70, "kg"),
  9478. name: "Side",
  9479. image: {
  9480. source: "./media/characters/nyanuxk/side.svg",
  9481. extra: 1190 / 1132,
  9482. bottom: 0.007
  9483. }
  9484. },
  9485. back: {
  9486. height: math.unit(2.4, "meters"),
  9487. weight: math.unit(70, "kg"),
  9488. name: "Back",
  9489. image: {
  9490. source: "./media/characters/nyanuxk/back.svg",
  9491. extra: 1200 / 1141,
  9492. bottom: 0.015
  9493. }
  9494. },
  9495. foot: {
  9496. height: math.unit(0.52, "meters"),
  9497. name: "Foot",
  9498. image: {
  9499. source: "./media/characters/nyanuxk/foot.svg"
  9500. }
  9501. },
  9502. },
  9503. [
  9504. {
  9505. name: "Micro",
  9506. height: math.unit(2, "cm")
  9507. },
  9508. {
  9509. name: "Normal",
  9510. height: math.unit(2.4, "meters"),
  9511. default: true
  9512. },
  9513. {
  9514. name: "Smaller Macro",
  9515. height: math.unit(120, "meters")
  9516. },
  9517. {
  9518. name: "Bigger Macro",
  9519. height: math.unit(1.2, "km")
  9520. },
  9521. {
  9522. name: "Megamacro",
  9523. height: math.unit(15, "kilometers")
  9524. },
  9525. {
  9526. name: "Gigamacro",
  9527. height: math.unit(2000, "km")
  9528. },
  9529. {
  9530. name: "Teramacro",
  9531. height: math.unit(500000, "km")
  9532. },
  9533. ]
  9534. ))
  9535. characterMakers.push(() => makeCharacter(
  9536. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9537. {
  9538. side: {
  9539. height: math.unit(6, "feet"),
  9540. name: "Side",
  9541. image: {
  9542. source: "./media/characters/ailbhe/side.svg",
  9543. extra: 757 / 464,
  9544. bottom: 0.041
  9545. }
  9546. },
  9547. },
  9548. [
  9549. {
  9550. name: "Normal",
  9551. height: math.unit(1.07, "meters"),
  9552. default: true
  9553. },
  9554. ]
  9555. ))
  9556. characterMakers.push(() => makeCharacter(
  9557. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9558. {
  9559. front: {
  9560. height: math.unit(6, "feet"),
  9561. weight: math.unit(120, "kg"),
  9562. name: "Front",
  9563. image: {
  9564. source: "./media/characters/zevulfius/front.svg",
  9565. extra: 965 / 903
  9566. }
  9567. },
  9568. side: {
  9569. height: math.unit(6, "feet"),
  9570. weight: math.unit(120, "kg"),
  9571. name: "Side",
  9572. image: {
  9573. source: "./media/characters/zevulfius/side.svg",
  9574. extra: 939 / 900
  9575. }
  9576. },
  9577. back: {
  9578. height: math.unit(6, "feet"),
  9579. weight: math.unit(120, "kg"),
  9580. name: "Back",
  9581. image: {
  9582. source: "./media/characters/zevulfius/back.svg",
  9583. extra: 918 / 854,
  9584. bottom: 0.005
  9585. }
  9586. },
  9587. foot: {
  9588. height: math.unit(6 / 3.72, "feet"),
  9589. name: "Foot",
  9590. image: {
  9591. source: "./media/characters/zevulfius/foot.svg"
  9592. }
  9593. },
  9594. },
  9595. [
  9596. {
  9597. name: "Macro",
  9598. height: math.unit(750, "meters")
  9599. },
  9600. {
  9601. name: "Megamacro",
  9602. height: math.unit(20, "km"),
  9603. default: true
  9604. },
  9605. {
  9606. name: "Gigamacro",
  9607. height: math.unit(2000, "km")
  9608. },
  9609. {
  9610. name: "Teramacro",
  9611. height: math.unit(250000, "km")
  9612. },
  9613. ]
  9614. ))
  9615. characterMakers.push(() => makeCharacter(
  9616. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9617. {
  9618. front: {
  9619. height: math.unit(100, "feet"),
  9620. weight: math.unit(350, "kg"),
  9621. name: "Front",
  9622. image: {
  9623. source: "./media/characters/rikes/front.svg",
  9624. extra: 1565 / 1483,
  9625. bottom: 0.017
  9626. }
  9627. },
  9628. },
  9629. [
  9630. {
  9631. name: "Macro",
  9632. height: math.unit(100, "feet"),
  9633. default: true
  9634. },
  9635. ]
  9636. ))
  9637. characterMakers.push(() => makeCharacter(
  9638. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9639. {
  9640. anthro: {
  9641. height: math.unit(8, "feet"),
  9642. weight: math.unit(120, "kg"),
  9643. name: "Anthro",
  9644. image: {
  9645. source: "./media/characters/adam-silver-mane/anthro.svg",
  9646. extra: 5743 / 5339,
  9647. bottom: 0.07
  9648. }
  9649. },
  9650. taur: {
  9651. height: math.unit(16, "feet"),
  9652. weight: math.unit(1500, "kg"),
  9653. name: "Taur",
  9654. image: {
  9655. source: "./media/characters/adam-silver-mane/taur.svg",
  9656. extra: 1713 / 1571,
  9657. bottom: 0.01
  9658. }
  9659. },
  9660. },
  9661. [
  9662. {
  9663. name: "Normal",
  9664. height: math.unit(8, "feet")
  9665. },
  9666. {
  9667. name: "Minimacro",
  9668. height: math.unit(80, "feet")
  9669. },
  9670. {
  9671. name: "Macro",
  9672. height: math.unit(800, "feet"),
  9673. default: true
  9674. },
  9675. {
  9676. name: "Megamacro",
  9677. height: math.unit(8000, "feet")
  9678. },
  9679. {
  9680. name: "Gigamacro",
  9681. height: math.unit(800, "miles")
  9682. },
  9683. {
  9684. name: "Teramacro",
  9685. height: math.unit(80000, "miles")
  9686. },
  9687. {
  9688. name: "Celestial",
  9689. height: math.unit(8e6, "miles")
  9690. },
  9691. {
  9692. name: "Star Dragon",
  9693. height: math.unit(800000, "parsecs")
  9694. },
  9695. {
  9696. name: "Godly",
  9697. height: math.unit(800, "teraparsecs")
  9698. },
  9699. ]
  9700. ))
  9701. characterMakers.push(() => makeCharacter(
  9702. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9703. {
  9704. front: {
  9705. height: math.unit(6, "feet"),
  9706. weight: math.unit(150, "lb"),
  9707. name: "Front",
  9708. image: {
  9709. source: "./media/characters/ky'owin/front.svg",
  9710. extra: 3888 / 3068,
  9711. bottom: 0.015
  9712. }
  9713. },
  9714. },
  9715. [
  9716. {
  9717. name: "Normal",
  9718. height: math.unit(6 + 8 / 12, "feet")
  9719. },
  9720. {
  9721. name: "Large",
  9722. height: math.unit(68, "feet")
  9723. },
  9724. {
  9725. name: "Macro",
  9726. height: math.unit(132, "feet")
  9727. },
  9728. {
  9729. name: "Macro+",
  9730. height: math.unit(340, "feet")
  9731. },
  9732. {
  9733. name: "Macro++",
  9734. height: math.unit(680, "feet"),
  9735. default: true
  9736. },
  9737. {
  9738. name: "Megamacro",
  9739. height: math.unit(1, "mile")
  9740. },
  9741. {
  9742. name: "Megamacro+",
  9743. height: math.unit(10, "miles")
  9744. },
  9745. ]
  9746. ))
  9747. characterMakers.push(() => makeCharacter(
  9748. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9749. {
  9750. front: {
  9751. height: math.unit(4, "feet"),
  9752. weight: math.unit(50, "lb"),
  9753. name: "Front",
  9754. image: {
  9755. source: "./media/characters/mal/front.svg",
  9756. extra: 785 / 724,
  9757. bottom: 0.07
  9758. }
  9759. },
  9760. },
  9761. [
  9762. {
  9763. name: "Micro",
  9764. height: math.unit(4, "inches")
  9765. },
  9766. {
  9767. name: "Normal",
  9768. height: math.unit(4, "feet"),
  9769. default: true
  9770. },
  9771. {
  9772. name: "Macro",
  9773. height: math.unit(200, "feet")
  9774. },
  9775. ]
  9776. ))
  9777. characterMakers.push(() => makeCharacter(
  9778. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9779. {
  9780. front: {
  9781. height: math.unit(6, "feet"),
  9782. weight: math.unit(150, "lb"),
  9783. name: "Front",
  9784. image: {
  9785. source: "./media/characters/jordan-deware/front.svg",
  9786. extra: 1191 / 1012
  9787. }
  9788. },
  9789. },
  9790. [
  9791. {
  9792. name: "Nano",
  9793. height: math.unit(0.01, "mm")
  9794. },
  9795. {
  9796. name: "Minimicro",
  9797. height: math.unit(1, "mm")
  9798. },
  9799. {
  9800. name: "Micro",
  9801. height: math.unit(0.5, "inches")
  9802. },
  9803. {
  9804. name: "Normal",
  9805. height: math.unit(4, "feet"),
  9806. default: true
  9807. },
  9808. {
  9809. name: "Minimacro",
  9810. height: math.unit(40, "meters")
  9811. },
  9812. {
  9813. name: "Small Macro",
  9814. height: math.unit(400, "meters")
  9815. },
  9816. {
  9817. name: "Macro",
  9818. height: math.unit(4, "miles")
  9819. },
  9820. {
  9821. name: "Megamacro",
  9822. height: math.unit(40, "miles")
  9823. },
  9824. {
  9825. name: "Megamacro+",
  9826. height: math.unit(400, "miles")
  9827. },
  9828. {
  9829. name: "Gigamacro",
  9830. height: math.unit(400000, "miles")
  9831. },
  9832. ]
  9833. ))
  9834. characterMakers.push(() => makeCharacter(
  9835. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9836. {
  9837. side: {
  9838. height: math.unit(6, "feet"),
  9839. weight: math.unit(150, "lb"),
  9840. name: "Side",
  9841. image: {
  9842. source: "./media/characters/kimiko/side.svg",
  9843. extra: 600 / 358
  9844. }
  9845. },
  9846. },
  9847. [
  9848. {
  9849. name: "Normal",
  9850. height: math.unit(15, "feet"),
  9851. default: true
  9852. },
  9853. {
  9854. name: "Macro",
  9855. height: math.unit(220, "feet")
  9856. },
  9857. {
  9858. name: "Macro+",
  9859. height: math.unit(1450, "feet")
  9860. },
  9861. {
  9862. name: "Megamacro",
  9863. height: math.unit(11500, "feet")
  9864. },
  9865. {
  9866. name: "Gigamacro",
  9867. height: math.unit(9500, "miles")
  9868. },
  9869. {
  9870. name: "Teramacro",
  9871. height: math.unit(2208005005, "miles")
  9872. },
  9873. {
  9874. name: "Examacro",
  9875. height: math.unit(2750, "parsecs")
  9876. },
  9877. {
  9878. name: "Zettamacro",
  9879. height: math.unit(101500, "parsecs")
  9880. },
  9881. ]
  9882. ))
  9883. characterMakers.push(() => makeCharacter(
  9884. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9885. {
  9886. front: {
  9887. height: math.unit(6, "feet"),
  9888. weight: math.unit(70, "kg"),
  9889. name: "Front",
  9890. image: {
  9891. source: "./media/characters/andrew-sleepy/front.svg"
  9892. }
  9893. },
  9894. side: {
  9895. height: math.unit(6, "feet"),
  9896. weight: math.unit(70, "kg"),
  9897. name: "Side",
  9898. image: {
  9899. source: "./media/characters/andrew-sleepy/side.svg"
  9900. }
  9901. },
  9902. },
  9903. [
  9904. {
  9905. name: "Micro",
  9906. height: math.unit(1, "mm"),
  9907. default: true
  9908. },
  9909. ]
  9910. ))
  9911. characterMakers.push(() => makeCharacter(
  9912. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  9913. {
  9914. front: {
  9915. height: math.unit(6, "feet"),
  9916. weight: math.unit(150, "lb"),
  9917. name: "Front",
  9918. image: {
  9919. source: "./media/characters/judio/front.svg",
  9920. extra: 1258 / 1110
  9921. }
  9922. },
  9923. },
  9924. [
  9925. {
  9926. name: "Normal",
  9927. height: math.unit(5 + 6 / 12, "feet")
  9928. },
  9929. {
  9930. name: "Macro",
  9931. height: math.unit(1000, "feet"),
  9932. default: true
  9933. },
  9934. {
  9935. name: "Megamacro",
  9936. height: math.unit(10, "miles")
  9937. },
  9938. ]
  9939. ))
  9940. characterMakers.push(() => makeCharacter(
  9941. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  9942. {
  9943. front: {
  9944. height: math.unit(6, "feet"),
  9945. weight: math.unit(68, "kg"),
  9946. name: "Front",
  9947. image: {
  9948. source: "./media/characters/nomaxice/front.svg",
  9949. extra: 1498 / 1073,
  9950. bottom: 0.075
  9951. }
  9952. },
  9953. foot: {
  9954. height: math.unit(1.1, "feet"),
  9955. name: "Foot",
  9956. image: {
  9957. source: "./media/characters/nomaxice/foot.svg"
  9958. }
  9959. },
  9960. },
  9961. [
  9962. {
  9963. name: "Micro",
  9964. height: math.unit(8, "cm")
  9965. },
  9966. {
  9967. name: "Norm",
  9968. height: math.unit(1.82, "m")
  9969. },
  9970. {
  9971. name: "Norm+",
  9972. height: math.unit(8.8, "feet")
  9973. },
  9974. {
  9975. name: "Big",
  9976. height: math.unit(8, "meters"),
  9977. default: true
  9978. },
  9979. {
  9980. name: "Macro",
  9981. height: math.unit(18, "meters")
  9982. },
  9983. {
  9984. name: "Macro+",
  9985. height: math.unit(88, "meters")
  9986. },
  9987. ]
  9988. ))
  9989. characterMakers.push(() => makeCharacter(
  9990. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  9991. {
  9992. front: {
  9993. height: math.unit(12, "feet"),
  9994. weight: math.unit(1.5, "tons"),
  9995. name: "Front",
  9996. image: {
  9997. source: "./media/characters/dydros/front.svg",
  9998. extra: 863 / 800,
  9999. bottom: 0.015
  10000. }
  10001. },
  10002. back: {
  10003. height: math.unit(12, "feet"),
  10004. weight: math.unit(1.5, "tons"),
  10005. name: "Back",
  10006. image: {
  10007. source: "./media/characters/dydros/back.svg",
  10008. extra: 900 / 843,
  10009. bottom: 0.005
  10010. }
  10011. },
  10012. },
  10013. [
  10014. {
  10015. name: "Normal",
  10016. height: math.unit(12, "feet"),
  10017. default: true
  10018. },
  10019. ]
  10020. ))
  10021. characterMakers.push(() => makeCharacter(
  10022. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10023. {
  10024. front: {
  10025. height: math.unit(6, "feet"),
  10026. weight: math.unit(100, "kg"),
  10027. name: "Front",
  10028. image: {
  10029. source: "./media/characters/riggi/front.svg",
  10030. extra: 5787 / 5303
  10031. }
  10032. },
  10033. hyper: {
  10034. height: math.unit(6 * 5 / 3, "feet"),
  10035. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10036. name: "Hyper",
  10037. image: {
  10038. source: "./media/characters/riggi/hyper.svg",
  10039. extra: 3595 / 3485
  10040. }
  10041. },
  10042. },
  10043. [
  10044. {
  10045. name: "Small Macro",
  10046. height: math.unit(50, "feet")
  10047. },
  10048. {
  10049. name: "Default",
  10050. height: math.unit(200, "feet"),
  10051. default: true
  10052. },
  10053. {
  10054. name: "Loom",
  10055. height: math.unit(10000, "feet")
  10056. },
  10057. {
  10058. name: "Cruising Altitude",
  10059. height: math.unit(30000, "feet")
  10060. },
  10061. {
  10062. name: "Megamacro",
  10063. height: math.unit(100, "miles")
  10064. },
  10065. {
  10066. name: "Continent Sized",
  10067. height: math.unit(2800, "miles")
  10068. },
  10069. {
  10070. name: "Earth Sized",
  10071. height: math.unit(8000, "miles")
  10072. },
  10073. ]
  10074. ))
  10075. characterMakers.push(() => makeCharacter(
  10076. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10077. {
  10078. front: {
  10079. height: math.unit(6, "feet"),
  10080. weight: math.unit(250, "lb"),
  10081. name: "Front",
  10082. image: {
  10083. source: "./media/characters/alexi/front.svg",
  10084. extra: 3483 / 3291,
  10085. bottom: 0.04
  10086. }
  10087. },
  10088. back: {
  10089. height: math.unit(6, "feet"),
  10090. weight: math.unit(250, "lb"),
  10091. name: "Back",
  10092. image: {
  10093. source: "./media/characters/alexi/back.svg",
  10094. extra: 3533 / 3356,
  10095. bottom: 0.021
  10096. }
  10097. },
  10098. frontTransforming: {
  10099. height: math.unit(8.58, "feet"),
  10100. weight: math.unit(1300, "lb"),
  10101. name: "Transforming",
  10102. image: {
  10103. source: "./media/characters/alexi/front-transforming.svg",
  10104. extra: 437 / 409,
  10105. bottom: 19 / 458.66
  10106. }
  10107. },
  10108. frontTransformed: {
  10109. height: math.unit(12.5, "feet"),
  10110. weight: math.unit(4000, "lb"),
  10111. name: "Transformed",
  10112. image: {
  10113. source: "./media/characters/alexi/front-transformed.svg",
  10114. extra: 639 / 614,
  10115. bottom: 30.55 / 671
  10116. }
  10117. },
  10118. },
  10119. [
  10120. {
  10121. name: "Normal",
  10122. height: math.unit(3, "meters"),
  10123. default: true
  10124. },
  10125. {
  10126. name: "Minimacro",
  10127. height: math.unit(30, "meters")
  10128. },
  10129. {
  10130. name: "Macro",
  10131. height: math.unit(500, "meters")
  10132. },
  10133. {
  10134. name: "Megamacro",
  10135. height: math.unit(9000, "km")
  10136. },
  10137. {
  10138. name: "Teramacro",
  10139. height: math.unit(384000, "km")
  10140. },
  10141. ]
  10142. ))
  10143. characterMakers.push(() => makeCharacter(
  10144. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10145. {
  10146. front: {
  10147. height: math.unit(6, "feet"),
  10148. weight: math.unit(150, "lb"),
  10149. name: "Front",
  10150. image: {
  10151. source: "./media/characters/kayroo/front.svg",
  10152. extra: 1153 / 1038,
  10153. bottom: 0.06
  10154. }
  10155. },
  10156. foot: {
  10157. height: math.unit(6, "feet"),
  10158. weight: math.unit(150, "lb"),
  10159. name: "Foot",
  10160. image: {
  10161. source: "./media/characters/kayroo/foot.svg"
  10162. }
  10163. },
  10164. },
  10165. [
  10166. {
  10167. name: "Normal",
  10168. height: math.unit(8, "feet"),
  10169. default: true
  10170. },
  10171. {
  10172. name: "Minimacro",
  10173. height: math.unit(250, "feet")
  10174. },
  10175. {
  10176. name: "Macro",
  10177. height: math.unit(2800, "feet")
  10178. },
  10179. {
  10180. name: "Megamacro",
  10181. height: math.unit(5200, "feet")
  10182. },
  10183. {
  10184. name: "Gigamacro",
  10185. height: math.unit(27000, "feet")
  10186. },
  10187. {
  10188. name: "Omega",
  10189. height: math.unit(45000, "feet")
  10190. },
  10191. ]
  10192. ))
  10193. characterMakers.push(() => makeCharacter(
  10194. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10195. {
  10196. front: {
  10197. height: math.unit(18, "feet"),
  10198. weight: math.unit(5800, "lb"),
  10199. name: "Front",
  10200. image: {
  10201. source: "./media/characters/rhys/front.svg",
  10202. extra: 3386 / 3090,
  10203. bottom: 0.07
  10204. }
  10205. },
  10206. },
  10207. [
  10208. {
  10209. name: "Normal",
  10210. height: math.unit(18, "feet"),
  10211. default: true
  10212. },
  10213. {
  10214. name: "Working Size",
  10215. height: math.unit(200, "feet")
  10216. },
  10217. {
  10218. name: "Demolition Size",
  10219. height: math.unit(2000, "feet")
  10220. },
  10221. {
  10222. name: "Maximum Licensed Size",
  10223. height: math.unit(5, "miles")
  10224. },
  10225. {
  10226. name: "Maximum Observed Size",
  10227. height: math.unit(10, "yottameters")
  10228. },
  10229. ]
  10230. ))
  10231. characterMakers.push(() => makeCharacter(
  10232. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10233. {
  10234. front: {
  10235. height: math.unit(6, "feet"),
  10236. weight: math.unit(250, "lb"),
  10237. name: "Front",
  10238. image: {
  10239. source: "./media/characters/toto/front.svg",
  10240. extra: 527 / 479,
  10241. bottom: 0.05
  10242. }
  10243. },
  10244. },
  10245. [
  10246. {
  10247. name: "Micro",
  10248. height: math.unit(3, "feet")
  10249. },
  10250. {
  10251. name: "Normal",
  10252. height: math.unit(10, "feet")
  10253. },
  10254. {
  10255. name: "Macro",
  10256. height: math.unit(150, "feet"),
  10257. default: true
  10258. },
  10259. {
  10260. name: "Megamacro",
  10261. height: math.unit(1200, "feet")
  10262. },
  10263. ]
  10264. ))
  10265. characterMakers.push(() => makeCharacter(
  10266. { name: "King", species: ["lion"], tags: ["anthro"] },
  10267. {
  10268. back: {
  10269. height: math.unit(6, "feet"),
  10270. weight: math.unit(150, "lb"),
  10271. name: "Back",
  10272. image: {
  10273. source: "./media/characters/king/back.svg"
  10274. }
  10275. },
  10276. },
  10277. [
  10278. {
  10279. name: "Micro",
  10280. height: math.unit(2, "inches")
  10281. },
  10282. {
  10283. name: "Normal",
  10284. height: math.unit(8, "feet")
  10285. },
  10286. {
  10287. name: "Macro",
  10288. height: math.unit(200, "feet"),
  10289. default: true
  10290. },
  10291. {
  10292. name: "Megamacro",
  10293. height: math.unit(50, "miles")
  10294. },
  10295. ]
  10296. ))
  10297. characterMakers.push(() => makeCharacter(
  10298. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10299. {
  10300. anthro: {
  10301. height: math.unit(6 + 5 / 12, "feet"),
  10302. weight: math.unit(280, "lb"),
  10303. name: "Anthro",
  10304. image: {
  10305. source: "./media/characters/cordite/anthro.svg",
  10306. extra: 1986 / 1905,
  10307. bottom: 0.025
  10308. }
  10309. },
  10310. feral: {
  10311. height: math.unit(2, "feet"),
  10312. weight: math.unit(90, "lb"),
  10313. name: "Feral",
  10314. image: {
  10315. source: "./media/characters/cordite/feral.svg",
  10316. extra: 1260 / 755,
  10317. bottom: 0.05
  10318. }
  10319. },
  10320. },
  10321. [
  10322. {
  10323. name: "Normal",
  10324. height: math.unit(6 + 5 / 12, "feet"),
  10325. default: true
  10326. },
  10327. ]
  10328. ))
  10329. characterMakers.push(() => makeCharacter(
  10330. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10331. {
  10332. front: {
  10333. height: math.unit(6, "feet"),
  10334. weight: math.unit(150, "lb"),
  10335. name: "Front",
  10336. image: {
  10337. source: "./media/characters/pianostrong/front.svg",
  10338. extra: 6577 / 6254,
  10339. bottom: 0.02
  10340. }
  10341. },
  10342. side: {
  10343. height: math.unit(6, "feet"),
  10344. weight: math.unit(150, "lb"),
  10345. name: "Side",
  10346. image: {
  10347. source: "./media/characters/pianostrong/side.svg",
  10348. extra: 6106 / 5730
  10349. }
  10350. },
  10351. back: {
  10352. height: math.unit(6, "feet"),
  10353. weight: math.unit(150, "lb"),
  10354. name: "Back",
  10355. image: {
  10356. source: "./media/characters/pianostrong/back.svg",
  10357. extra: 6085 / 5733,
  10358. bottom: 0.01
  10359. }
  10360. },
  10361. },
  10362. [
  10363. {
  10364. name: "Macro",
  10365. height: math.unit(100, "feet")
  10366. },
  10367. {
  10368. name: "Macro+",
  10369. height: math.unit(300, "feet"),
  10370. default: true
  10371. },
  10372. {
  10373. name: "Macro++",
  10374. height: math.unit(1000, "feet")
  10375. },
  10376. ]
  10377. ))
  10378. characterMakers.push(() => makeCharacter(
  10379. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10380. {
  10381. front: {
  10382. height: math.unit(6, "feet"),
  10383. weight: math.unit(150, "lb"),
  10384. name: "Front",
  10385. image: {
  10386. source: "./media/characters/kona/front.svg",
  10387. extra: 2960 / 2629,
  10388. bottom: 0.005
  10389. }
  10390. },
  10391. },
  10392. [
  10393. {
  10394. name: "Normal",
  10395. height: math.unit(11 + 8 / 12, "feet")
  10396. },
  10397. {
  10398. name: "Macro",
  10399. height: math.unit(850, "feet"),
  10400. default: true
  10401. },
  10402. {
  10403. name: "Macro+",
  10404. height: math.unit(1.5, "km"),
  10405. default: true
  10406. },
  10407. {
  10408. name: "Megamacro",
  10409. height: math.unit(80, "miles")
  10410. },
  10411. {
  10412. name: "Gigamacro",
  10413. height: math.unit(3500, "miles")
  10414. },
  10415. ]
  10416. ))
  10417. characterMakers.push(() => makeCharacter(
  10418. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10419. {
  10420. side: {
  10421. height: math.unit(1.9, "meters"),
  10422. weight: math.unit(326, "kg"),
  10423. name: "Side",
  10424. image: {
  10425. source: "./media/characters/levi/side.svg",
  10426. extra: 1704 / 1334,
  10427. bottom: 0.02
  10428. }
  10429. },
  10430. },
  10431. [
  10432. {
  10433. name: "Normal",
  10434. height: math.unit(1.9, "meters"),
  10435. default: true
  10436. },
  10437. {
  10438. name: "Macro",
  10439. height: math.unit(20, "meters")
  10440. },
  10441. {
  10442. name: "Macro+",
  10443. height: math.unit(200, "meters")
  10444. },
  10445. {
  10446. name: "Megamacro",
  10447. height: math.unit(2, "km")
  10448. },
  10449. {
  10450. name: "Megamacro+",
  10451. height: math.unit(20, "km")
  10452. },
  10453. {
  10454. name: "Gigamacro",
  10455. height: math.unit(2500, "km")
  10456. },
  10457. {
  10458. name: "Gigamacro+",
  10459. height: math.unit(120000, "km")
  10460. },
  10461. {
  10462. name: "Teramacro",
  10463. height: math.unit(7.77e6, "km")
  10464. },
  10465. ]
  10466. ))
  10467. characterMakers.push(() => makeCharacter(
  10468. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10469. {
  10470. front: {
  10471. height: math.unit(6 + 4 / 12, "feet"),
  10472. weight: math.unit(188, "lb"),
  10473. name: "Front",
  10474. image: {
  10475. source: "./media/characters/bmc/front.svg",
  10476. extra: 1067 / 1022,
  10477. bottom: 0.047
  10478. }
  10479. },
  10480. },
  10481. [
  10482. {
  10483. name: "Human-sized",
  10484. height: math.unit(6 + 4 / 12, "feet")
  10485. },
  10486. {
  10487. name: "Small",
  10488. height: math.unit(250, "feet")
  10489. },
  10490. {
  10491. name: "Normal",
  10492. height: math.unit(1250, "feet"),
  10493. default: true
  10494. },
  10495. {
  10496. name: "Good Day",
  10497. height: math.unit(88, "miles")
  10498. },
  10499. {
  10500. name: "Largest Measured Size",
  10501. height: math.unit(11.2e6, "lightyears")
  10502. },
  10503. ]
  10504. ))
  10505. characterMakers.push(() => makeCharacter(
  10506. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10507. {
  10508. front: {
  10509. height: math.unit(20, "feet"),
  10510. weight: math.unit(2016, "kg"),
  10511. name: "Front",
  10512. image: {
  10513. source: "./media/characters/sven-the-kaiju/front.svg",
  10514. extra: 1479 / 1449,
  10515. bottom: 0.05
  10516. }
  10517. },
  10518. },
  10519. [
  10520. {
  10521. name: "Fairy",
  10522. height: math.unit(6, "inches")
  10523. },
  10524. {
  10525. name: "Normal",
  10526. height: math.unit(20, "feet"),
  10527. default: true
  10528. },
  10529. {
  10530. name: "Rampage",
  10531. height: math.unit(200, "feet")
  10532. },
  10533. {
  10534. name: "Archfey Forest Guardian",
  10535. height: math.unit(1, "mile")
  10536. },
  10537. ]
  10538. ))
  10539. characterMakers.push(() => makeCharacter(
  10540. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10541. {
  10542. front: {
  10543. height: math.unit(4, "meters"),
  10544. weight: math.unit(2, "tons"),
  10545. name: "Front",
  10546. image: {
  10547. source: "./media/characters/marik/front.svg",
  10548. extra: 1057 / 1003,
  10549. bottom: 0.08
  10550. }
  10551. },
  10552. },
  10553. [
  10554. {
  10555. name: "Normal",
  10556. height: math.unit(4, "meters"),
  10557. default: true
  10558. },
  10559. {
  10560. name: "Macro",
  10561. height: math.unit(20, "meters")
  10562. },
  10563. {
  10564. name: "Megamacro",
  10565. height: math.unit(50, "km")
  10566. },
  10567. {
  10568. name: "Gigamacro",
  10569. height: math.unit(100, "km")
  10570. },
  10571. {
  10572. name: "Alpha Macro",
  10573. height: math.unit(7.88e7, "yottameters")
  10574. },
  10575. ]
  10576. ))
  10577. characterMakers.push(() => makeCharacter(
  10578. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10579. {
  10580. front: {
  10581. height: math.unit(6, "feet"),
  10582. weight: math.unit(110, "lb"),
  10583. name: "Front",
  10584. image: {
  10585. source: "./media/characters/mel/front.svg",
  10586. extra: 736 / 617,
  10587. bottom: 0.017
  10588. }
  10589. },
  10590. },
  10591. [
  10592. {
  10593. name: "Pico",
  10594. height: math.unit(3, "pm")
  10595. },
  10596. {
  10597. name: "Nano",
  10598. height: math.unit(3, "nm")
  10599. },
  10600. {
  10601. name: "Micro",
  10602. height: math.unit(0.3, "mm"),
  10603. default: true
  10604. },
  10605. {
  10606. name: "Micro+",
  10607. height: math.unit(3, "mm")
  10608. },
  10609. {
  10610. name: "Normal",
  10611. height: math.unit(5 + 10.5 / 12, "feet")
  10612. },
  10613. ]
  10614. ))
  10615. characterMakers.push(() => makeCharacter(
  10616. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10617. {
  10618. kaiju: {
  10619. height: math.unit(1.75, "meters"),
  10620. weight: math.unit(55, "kg"),
  10621. name: "Kaiju",
  10622. image: {
  10623. source: "./media/characters/lykonous/kaiju.svg",
  10624. extra: 1055 / 946,
  10625. bottom: 0.135
  10626. }
  10627. },
  10628. },
  10629. [
  10630. {
  10631. name: "Normal",
  10632. height: math.unit(2.5, "meters"),
  10633. default: true
  10634. },
  10635. {
  10636. name: "Kaiju Dragon",
  10637. height: math.unit(60, "meters")
  10638. },
  10639. {
  10640. name: "Mega Kaiju",
  10641. height: math.unit(120, "km")
  10642. },
  10643. {
  10644. name: "Giga Kaiju",
  10645. height: math.unit(200, "megameters")
  10646. },
  10647. {
  10648. name: "Terra Kaiju",
  10649. height: math.unit(400, "gigameters")
  10650. },
  10651. {
  10652. name: "Kaiju Dragon God",
  10653. height: math.unit(13000, "exaparsecs")
  10654. },
  10655. ]
  10656. ))
  10657. characterMakers.push(() => makeCharacter(
  10658. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10659. {
  10660. front: {
  10661. height: math.unit(6, "feet"),
  10662. weight: math.unit(150, "lb"),
  10663. name: "Front",
  10664. image: {
  10665. source: "./media/characters/blü/front.svg",
  10666. extra: 1883 / 1564,
  10667. bottom: 0.031
  10668. }
  10669. },
  10670. },
  10671. [
  10672. {
  10673. name: "Normal",
  10674. height: math.unit(13, "feet"),
  10675. default: true
  10676. },
  10677. {
  10678. name: "Big Boi",
  10679. height: math.unit(150, "meters")
  10680. },
  10681. {
  10682. name: "Mini Stomper",
  10683. height: math.unit(300, "meters")
  10684. },
  10685. {
  10686. name: "Macro",
  10687. height: math.unit(1000, "meters")
  10688. },
  10689. {
  10690. name: "Megamacro",
  10691. height: math.unit(11000, "meters")
  10692. },
  10693. {
  10694. name: "Gigamacro",
  10695. height: math.unit(11000, "km")
  10696. },
  10697. {
  10698. name: "Teramacro",
  10699. height: math.unit(420000, "km")
  10700. },
  10701. {
  10702. name: "Examacro",
  10703. height: math.unit(120, "parsecs")
  10704. },
  10705. {
  10706. name: "God Tho",
  10707. height: math.unit(98000000000, "parsecs")
  10708. },
  10709. ]
  10710. ))
  10711. characterMakers.push(() => makeCharacter(
  10712. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10713. {
  10714. taurFront: {
  10715. height: math.unit(6, "feet"),
  10716. weight: math.unit(200, "lb"),
  10717. name: "Taur (Front)",
  10718. image: {
  10719. source: "./media/characters/scales/taur-front.svg",
  10720. extra: 1,
  10721. bottom: 0.05
  10722. }
  10723. },
  10724. taurBack: {
  10725. height: math.unit(6, "feet"),
  10726. weight: math.unit(200, "lb"),
  10727. name: "Taur (Back)",
  10728. image: {
  10729. source: "./media/characters/scales/taur-back.svg",
  10730. extra: 1,
  10731. bottom: 0.08
  10732. }
  10733. },
  10734. anthro: {
  10735. height: math.unit(6 * 7 / 12, "feet"),
  10736. weight: math.unit(100, "lb"),
  10737. name: "Anthro",
  10738. image: {
  10739. source: "./media/characters/scales/anthro.svg",
  10740. extra: 1,
  10741. bottom: 0.06
  10742. }
  10743. },
  10744. },
  10745. [
  10746. {
  10747. name: "Normal",
  10748. height: math.unit(12, "feet"),
  10749. default: true
  10750. },
  10751. ]
  10752. ))
  10753. characterMakers.push(() => makeCharacter(
  10754. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10755. {
  10756. front: {
  10757. height: math.unit(6, "feet"),
  10758. weight: math.unit(150, "lb"),
  10759. name: "Front",
  10760. image: {
  10761. source: "./media/characters/koragos/front.svg",
  10762. extra: 841 / 794,
  10763. bottom: 0.035
  10764. }
  10765. },
  10766. back: {
  10767. height: math.unit(6, "feet"),
  10768. weight: math.unit(150, "lb"),
  10769. name: "Back",
  10770. image: {
  10771. source: "./media/characters/koragos/back.svg",
  10772. extra: 841 / 810,
  10773. bottom: 0.022
  10774. }
  10775. },
  10776. },
  10777. [
  10778. {
  10779. name: "Normal",
  10780. height: math.unit(6 + 11 / 12, "feet"),
  10781. default: true
  10782. },
  10783. {
  10784. name: "Macro",
  10785. height: math.unit(490, "feet")
  10786. },
  10787. {
  10788. name: "Megamacro",
  10789. height: math.unit(10, "miles")
  10790. },
  10791. {
  10792. name: "Gigamacro",
  10793. height: math.unit(50, "miles")
  10794. },
  10795. ]
  10796. ))
  10797. characterMakers.push(() => makeCharacter(
  10798. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10799. {
  10800. front: {
  10801. height: math.unit(6, "feet"),
  10802. weight: math.unit(250, "lb"),
  10803. name: "Front",
  10804. image: {
  10805. source: "./media/characters/xylrem/front.svg",
  10806. extra: 3323 / 3050,
  10807. bottom: 0.065
  10808. }
  10809. },
  10810. },
  10811. [
  10812. {
  10813. name: "Micro",
  10814. height: math.unit(4, "feet")
  10815. },
  10816. {
  10817. name: "Normal",
  10818. height: math.unit(16, "feet"),
  10819. default: true
  10820. },
  10821. {
  10822. name: "Macro",
  10823. height: math.unit(2720, "feet")
  10824. },
  10825. {
  10826. name: "Megamacro",
  10827. height: math.unit(25000, "miles")
  10828. },
  10829. ]
  10830. ))
  10831. characterMakers.push(() => makeCharacter(
  10832. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10833. {
  10834. front: {
  10835. height: math.unit(8, "feet"),
  10836. weight: math.unit(250, "kg"),
  10837. name: "Front",
  10838. image: {
  10839. source: "./media/characters/ikideru/front.svg",
  10840. extra: 930 / 870,
  10841. bottom: 0.087
  10842. }
  10843. },
  10844. back: {
  10845. height: math.unit(8, "feet"),
  10846. weight: math.unit(250, "kg"),
  10847. name: "Back",
  10848. image: {
  10849. source: "./media/characters/ikideru/back.svg",
  10850. extra: 919 / 852,
  10851. bottom: 0.055
  10852. }
  10853. },
  10854. },
  10855. [
  10856. {
  10857. name: "Rare",
  10858. height: math.unit(8, "feet"),
  10859. default: true
  10860. },
  10861. {
  10862. name: "Playful Loom",
  10863. height: math.unit(80, "feet")
  10864. },
  10865. {
  10866. name: "City Leaner",
  10867. height: math.unit(230, "feet")
  10868. },
  10869. {
  10870. name: "Megamacro",
  10871. height: math.unit(2500, "feet")
  10872. },
  10873. {
  10874. name: "Gigamacro",
  10875. height: math.unit(26400, "feet")
  10876. },
  10877. {
  10878. name: "Tectonic Shifter",
  10879. height: math.unit(1.7, "megameters")
  10880. },
  10881. {
  10882. name: "Planet Carer",
  10883. height: math.unit(21, "megameters")
  10884. },
  10885. {
  10886. name: "God",
  10887. height: math.unit(11157.22, "parsecs")
  10888. },
  10889. ]
  10890. ))
  10891. characterMakers.push(() => makeCharacter(
  10892. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10893. {
  10894. front: {
  10895. height: math.unit(6, "feet"),
  10896. weight: math.unit(120, "lb"),
  10897. name: "Front",
  10898. image: {
  10899. source: "./media/characters/neo/front.svg"
  10900. }
  10901. },
  10902. },
  10903. [
  10904. {
  10905. name: "Micro",
  10906. height: math.unit(2, "inches"),
  10907. default: true
  10908. },
  10909. {
  10910. name: "Human Size",
  10911. height: math.unit(5 + 8 / 12, "feet")
  10912. },
  10913. ]
  10914. ))
  10915. characterMakers.push(() => makeCharacter(
  10916. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  10917. {
  10918. front: {
  10919. height: math.unit(13 + 10 / 12, "feet"),
  10920. weight: math.unit(5320, "lb"),
  10921. name: "Front",
  10922. image: {
  10923. source: "./media/characters/chauncey-chantz/front.svg",
  10924. extra: 1587 / 1435,
  10925. bottom: 0.02
  10926. }
  10927. },
  10928. },
  10929. [
  10930. {
  10931. name: "Normal",
  10932. height: math.unit(13 + 10 / 12, "feet"),
  10933. default: true
  10934. },
  10935. {
  10936. name: "Macro",
  10937. height: math.unit(45, "feet")
  10938. },
  10939. {
  10940. name: "Megamacro",
  10941. height: math.unit(250, "miles")
  10942. },
  10943. {
  10944. name: "Planetary",
  10945. height: math.unit(10000, "miles")
  10946. },
  10947. {
  10948. name: "Galactic",
  10949. height: math.unit(40000, "parsecs")
  10950. },
  10951. {
  10952. name: "Universal",
  10953. height: math.unit(1, "yottameter")
  10954. },
  10955. ]
  10956. ))
  10957. characterMakers.push(() => makeCharacter(
  10958. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  10959. {
  10960. front: {
  10961. height: math.unit(6, "feet"),
  10962. weight: math.unit(150, "lb"),
  10963. name: "Front",
  10964. image: {
  10965. source: "./media/characters/epifox/front.svg",
  10966. extra: 1,
  10967. bottom: 0.075
  10968. }
  10969. },
  10970. },
  10971. [
  10972. {
  10973. name: "Micro",
  10974. height: math.unit(6, "inches")
  10975. },
  10976. {
  10977. name: "Normal",
  10978. height: math.unit(12, "feet"),
  10979. default: true
  10980. },
  10981. {
  10982. name: "Macro",
  10983. height: math.unit(3810, "feet")
  10984. },
  10985. {
  10986. name: "Megamacro",
  10987. height: math.unit(500, "miles")
  10988. },
  10989. ]
  10990. ))
  10991. characterMakers.push(() => makeCharacter(
  10992. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  10993. {
  10994. front: {
  10995. height: math.unit(1.8796, "m"),
  10996. weight: math.unit(230, "lb"),
  10997. name: "Front",
  10998. image: {
  10999. source: "./media/characters/colin-t/front.svg",
  11000. extra: 1272 / 1193,
  11001. bottom: 0.07
  11002. }
  11003. },
  11004. },
  11005. [
  11006. {
  11007. name: "Micro",
  11008. height: math.unit(0.571, "meters")
  11009. },
  11010. {
  11011. name: "Normal",
  11012. height: math.unit(1.8796, "meters"),
  11013. default: true
  11014. },
  11015. {
  11016. name: "Tall",
  11017. height: math.unit(4, "meters")
  11018. },
  11019. {
  11020. name: "Macro",
  11021. height: math.unit(67.241, "meters")
  11022. },
  11023. {
  11024. name: "Megamacro",
  11025. height: math.unit(371.856, "meters")
  11026. },
  11027. {
  11028. name: "Planetary",
  11029. height: math.unit(12631.5689, "km")
  11030. },
  11031. ]
  11032. ))
  11033. characterMakers.push(() => makeCharacter(
  11034. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11035. {
  11036. front: {
  11037. height: math.unit(1.85, "meters"),
  11038. weight: math.unit(80, "kg"),
  11039. name: "Front",
  11040. image: {
  11041. source: "./media/characters/matvei/front.svg",
  11042. extra: 614 / 594,
  11043. bottom: 0.01
  11044. }
  11045. },
  11046. },
  11047. [
  11048. {
  11049. name: "Normal",
  11050. height: math.unit(1.85, "meters"),
  11051. default: true
  11052. },
  11053. ]
  11054. ))
  11055. characterMakers.push(() => makeCharacter(
  11056. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11057. {
  11058. front: {
  11059. height: math.unit(5 + 9 / 12, "feet"),
  11060. weight: math.unit(70, "lb"),
  11061. name: "Front",
  11062. image: {
  11063. source: "./media/characters/quincy/front.svg",
  11064. extra: 3041 / 2751
  11065. }
  11066. },
  11067. back: {
  11068. height: math.unit(5 + 9 / 12, "feet"),
  11069. weight: math.unit(70, "lb"),
  11070. name: "Back",
  11071. image: {
  11072. source: "./media/characters/quincy/back.svg",
  11073. extra: 3041 / 2751
  11074. }
  11075. },
  11076. flying: {
  11077. height: math.unit(5 + 4 / 12, "feet"),
  11078. weight: math.unit(70, "lb"),
  11079. name: "Flying",
  11080. image: {
  11081. source: "./media/characters/quincy/flying.svg",
  11082. extra: 1044 / 930
  11083. }
  11084. },
  11085. },
  11086. [
  11087. {
  11088. name: "Micro",
  11089. height: math.unit(3, "cm")
  11090. },
  11091. {
  11092. name: "Normal",
  11093. height: math.unit(5 + 9 / 12, "feet")
  11094. },
  11095. {
  11096. name: "Macro",
  11097. height: math.unit(200, "meters"),
  11098. default: true
  11099. },
  11100. {
  11101. name: "Megamacro",
  11102. height: math.unit(1000, "meters")
  11103. },
  11104. ]
  11105. ))
  11106. characterMakers.push(() => makeCharacter(
  11107. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11108. {
  11109. front: {
  11110. height: math.unit(4 + 7 / 12, "feet"),
  11111. weight: math.unit(150, "lb"),
  11112. name: "Front",
  11113. image: {
  11114. source: "./media/characters/vanrel/front.svg",
  11115. extra: 1,
  11116. bottom: 0.02
  11117. }
  11118. },
  11119. elemental: {
  11120. height: math.unit(3, "feet"),
  11121. weight: math.unit(150, "lb"),
  11122. name: "Elemental",
  11123. image: {
  11124. source: "./media/characters/vanrel/elemental.svg",
  11125. extra: 192.3 / 162.8,
  11126. bottom: 1.79 / 194.17
  11127. }
  11128. },
  11129. side: {
  11130. height: math.unit(4 + 7 / 12, "feet"),
  11131. weight: math.unit(150, "lb"),
  11132. name: "Side",
  11133. image: {
  11134. source: "./media/characters/vanrel/side.svg",
  11135. extra: 1,
  11136. bottom: 0.025
  11137. }
  11138. },
  11139. tome: {
  11140. height: math.unit(1.35, "feet"),
  11141. weight: math.unit(10, "lb"),
  11142. name: "Vanrel's Tome",
  11143. rename: true,
  11144. image: {
  11145. source: "./media/characters/vanrel/tome.svg"
  11146. }
  11147. },
  11148. beans: {
  11149. height: math.unit(0.89, "feet"),
  11150. name: "Beans",
  11151. image: {
  11152. source: "./media/characters/vanrel/beans.svg"
  11153. }
  11154. },
  11155. },
  11156. [
  11157. {
  11158. name: "Normal",
  11159. height: math.unit(4 + 7 / 12, "feet"),
  11160. default: true
  11161. },
  11162. ]
  11163. ))
  11164. characterMakers.push(() => makeCharacter(
  11165. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11166. {
  11167. front: {
  11168. height: math.unit(7 + 5 / 12, "feet"),
  11169. weight: math.unit(150, "lb"),
  11170. name: "Front",
  11171. image: {
  11172. source: "./media/characters/kuiper-vanrel/front.svg",
  11173. extra: 1118 / 1068,
  11174. bottom: 0.09
  11175. }
  11176. },
  11177. foot: {
  11178. height: math.unit(0.55, "meters"),
  11179. name: "Foot",
  11180. image: {
  11181. source: "./media/characters/kuiper-vanrel/foot.svg",
  11182. }
  11183. },
  11184. battle: {
  11185. height: math.unit(6.824, "feet"),
  11186. weight: math.unit(150, "lb"),
  11187. name: "Battle",
  11188. image: {
  11189. source: "./media/characters/kuiper-vanrel/battle.svg",
  11190. extra: 1466 / 1327,
  11191. bottom: 29 / 1492.5
  11192. }
  11193. },
  11194. },
  11195. [
  11196. {
  11197. name: "Normal",
  11198. height: math.unit(7 + 5 / 12, "feet"),
  11199. default: true
  11200. },
  11201. ]
  11202. ))
  11203. characterMakers.push(() => makeCharacter(
  11204. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11205. {
  11206. front: {
  11207. height: math.unit(8 + 5 / 12, "feet"),
  11208. weight: math.unit(150, "lb"),
  11209. name: "Front",
  11210. image: {
  11211. source: "./media/characters/keset-vanrel/front.svg",
  11212. extra: 1150 / 1084,
  11213. bottom: 0.05
  11214. }
  11215. },
  11216. hand: {
  11217. height: math.unit(0.6, "meters"),
  11218. name: "Hand",
  11219. image: {
  11220. source: "./media/characters/keset-vanrel/hand.svg"
  11221. }
  11222. },
  11223. foot: {
  11224. height: math.unit(0.94978, "meters"),
  11225. name: "Foot",
  11226. image: {
  11227. source: "./media/characters/keset-vanrel/foot.svg"
  11228. }
  11229. },
  11230. battle: {
  11231. height: math.unit(7.408, "feet"),
  11232. weight: math.unit(150, "lb"),
  11233. name: "Battle",
  11234. image: {
  11235. source: "./media/characters/keset-vanrel/battle.svg",
  11236. extra: 1890 / 1386,
  11237. bottom: 73.28 / 1970
  11238. }
  11239. },
  11240. },
  11241. [
  11242. {
  11243. name: "Normal",
  11244. height: math.unit(8 + 5 / 12, "feet"),
  11245. default: true
  11246. },
  11247. ]
  11248. ))
  11249. characterMakers.push(() => makeCharacter(
  11250. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11251. {
  11252. front: {
  11253. height: math.unit(6, "feet"),
  11254. weight: math.unit(150, "lb"),
  11255. name: "Front",
  11256. image: {
  11257. source: "./media/characters/neos/front.svg",
  11258. extra: 1696 / 992,
  11259. bottom: 0.14
  11260. }
  11261. },
  11262. },
  11263. [
  11264. {
  11265. name: "Normal",
  11266. height: math.unit(54, "cm"),
  11267. default: true
  11268. },
  11269. {
  11270. name: "Macro",
  11271. height: math.unit(100, "m")
  11272. },
  11273. {
  11274. name: "Megamacro",
  11275. height: math.unit(10, "km")
  11276. },
  11277. {
  11278. name: "Megamacro+",
  11279. height: math.unit(100, "km")
  11280. },
  11281. {
  11282. name: "Gigamacro",
  11283. height: math.unit(100, "Mm")
  11284. },
  11285. {
  11286. name: "Teramacro",
  11287. height: math.unit(100, "Gm")
  11288. },
  11289. {
  11290. name: "Examacro",
  11291. height: math.unit(100, "Em")
  11292. },
  11293. {
  11294. name: "Godly",
  11295. height: math.unit(10000, "Ym")
  11296. },
  11297. {
  11298. name: "Beyond Godly",
  11299. height: math.unit(25, "multiverses")
  11300. },
  11301. ]
  11302. ))
  11303. characterMakers.push(() => makeCharacter(
  11304. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11305. {
  11306. feminine: {
  11307. height: math.unit(5, "feet"),
  11308. weight: math.unit(100, "lb"),
  11309. name: "Feminine",
  11310. image: {
  11311. source: "./media/characters/sammy-mouse/feminine.svg",
  11312. extra: 2526 / 2425,
  11313. bottom: 0.123
  11314. }
  11315. },
  11316. masculine: {
  11317. height: math.unit(5, "feet"),
  11318. weight: math.unit(100, "lb"),
  11319. name: "Masculine",
  11320. image: {
  11321. source: "./media/characters/sammy-mouse/masculine.svg",
  11322. extra: 2526 / 2425,
  11323. bottom: 0.123
  11324. }
  11325. },
  11326. },
  11327. [
  11328. {
  11329. name: "Micro",
  11330. height: math.unit(5, "inches")
  11331. },
  11332. {
  11333. name: "Normal",
  11334. height: math.unit(5, "feet"),
  11335. default: true
  11336. },
  11337. {
  11338. name: "Macro",
  11339. height: math.unit(60, "feet")
  11340. },
  11341. ]
  11342. ))
  11343. characterMakers.push(() => makeCharacter(
  11344. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11345. {
  11346. front: {
  11347. height: math.unit(4, "feet"),
  11348. weight: math.unit(50, "lb"),
  11349. name: "Front",
  11350. image: {
  11351. source: "./media/characters/kole/front.svg",
  11352. extra: 1423 / 1303,
  11353. bottom: 0.025
  11354. }
  11355. },
  11356. back: {
  11357. height: math.unit(4, "feet"),
  11358. weight: math.unit(50, "lb"),
  11359. name: "Back",
  11360. image: {
  11361. source: "./media/characters/kole/back.svg",
  11362. extra: 1426 / 1280,
  11363. bottom: 0.02
  11364. }
  11365. },
  11366. },
  11367. [
  11368. {
  11369. name: "Normal",
  11370. height: math.unit(4, "feet"),
  11371. default: true
  11372. },
  11373. ]
  11374. ))
  11375. characterMakers.push(() => makeCharacter(
  11376. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11377. {
  11378. front: {
  11379. height: math.unit(2 + 6 / 12, "feet"),
  11380. weight: math.unit(20, "lb"),
  11381. name: "Front",
  11382. image: {
  11383. source: "./media/characters/rufran/front.svg",
  11384. extra: 2041 / 1839,
  11385. bottom: 0.055
  11386. }
  11387. },
  11388. back: {
  11389. height: math.unit(2 + 6 / 12, "feet"),
  11390. weight: math.unit(20, "lb"),
  11391. name: "Back",
  11392. image: {
  11393. source: "./media/characters/rufran/back.svg",
  11394. extra: 2054 / 1839,
  11395. bottom: 0.01
  11396. }
  11397. },
  11398. hand: {
  11399. height: math.unit(0.2166, "meters"),
  11400. name: "Hand",
  11401. image: {
  11402. source: "./media/characters/rufran/hand.svg"
  11403. }
  11404. },
  11405. foot: {
  11406. height: math.unit(0.185, "meters"),
  11407. name: "Foot",
  11408. image: {
  11409. source: "./media/characters/rufran/foot.svg"
  11410. }
  11411. },
  11412. },
  11413. [
  11414. {
  11415. name: "Micro",
  11416. height: math.unit(1, "inch")
  11417. },
  11418. {
  11419. name: "Normal",
  11420. height: math.unit(2 + 6 / 12, "feet"),
  11421. default: true
  11422. },
  11423. {
  11424. name: "Big",
  11425. height: math.unit(60, "feet")
  11426. },
  11427. {
  11428. name: "Macro",
  11429. height: math.unit(325, "feet")
  11430. },
  11431. ]
  11432. ))
  11433. characterMakers.push(() => makeCharacter(
  11434. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11435. {
  11436. front: {
  11437. height: math.unit(0.3, "meters"),
  11438. weight: math.unit(3.5, "kg"),
  11439. name: "Front",
  11440. image: {
  11441. source: "./media/characters/chip/front.svg",
  11442. extra: 748 / 674
  11443. }
  11444. },
  11445. },
  11446. [
  11447. {
  11448. name: "Micro",
  11449. height: math.unit(1, "inch"),
  11450. default: true
  11451. },
  11452. ]
  11453. ))
  11454. characterMakers.push(() => makeCharacter(
  11455. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11456. {
  11457. side: {
  11458. height: math.unit(2.3, "meters"),
  11459. weight: math.unit(3500, "lb"),
  11460. name: "Side",
  11461. image: {
  11462. source: "./media/characters/torvid/side.svg",
  11463. extra: 1972 / 722,
  11464. bottom: 0.035
  11465. }
  11466. },
  11467. },
  11468. [
  11469. {
  11470. name: "Normal",
  11471. height: math.unit(2.3, "meters"),
  11472. default: true
  11473. },
  11474. ]
  11475. ))
  11476. characterMakers.push(() => makeCharacter(
  11477. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11478. {
  11479. front: {
  11480. height: math.unit(2, "meters"),
  11481. weight: math.unit(150.5, "kg"),
  11482. name: "Front",
  11483. image: {
  11484. source: "./media/characters/susan/front.svg",
  11485. extra: 693 / 635,
  11486. bottom: 0.05
  11487. }
  11488. },
  11489. },
  11490. [
  11491. {
  11492. name: "Megamacro",
  11493. height: math.unit(505, "miles"),
  11494. default: true
  11495. },
  11496. ]
  11497. ))
  11498. characterMakers.push(() => makeCharacter(
  11499. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11500. {
  11501. front: {
  11502. height: math.unit(6, "feet"),
  11503. weight: math.unit(150, "lb"),
  11504. name: "Front",
  11505. image: {
  11506. source: "./media/characters/raindrops/front.svg",
  11507. extra: 2655 / 2461,
  11508. bottom: 49/2705
  11509. }
  11510. },
  11511. back: {
  11512. height: math.unit(6, "feet"),
  11513. weight: math.unit(150, "lb"),
  11514. name: "Back",
  11515. image: {
  11516. source: "./media/characters/raindrops/back.svg",
  11517. extra: 2574 / 2400,
  11518. bottom: 65/2634
  11519. }
  11520. },
  11521. },
  11522. [
  11523. {
  11524. name: "Micro",
  11525. height: math.unit(6, "inches")
  11526. },
  11527. {
  11528. name: "Normal",
  11529. height: math.unit(6 + 2 / 12, "feet")
  11530. },
  11531. {
  11532. name: "Macro",
  11533. height: math.unit(131, "feet"),
  11534. default: true
  11535. },
  11536. {
  11537. name: "Megamacro",
  11538. height: math.unit(15, "miles")
  11539. },
  11540. {
  11541. name: "Gigamacro",
  11542. height: math.unit(4000, "miles")
  11543. },
  11544. {
  11545. name: "Teramacro",
  11546. height: math.unit(315000, "miles")
  11547. },
  11548. ]
  11549. ))
  11550. characterMakers.push(() => makeCharacter(
  11551. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11552. {
  11553. front: {
  11554. height: math.unit(2.794, "meters"),
  11555. weight: math.unit(325, "kg"),
  11556. name: "Front",
  11557. image: {
  11558. source: "./media/characters/tezwa/front.svg",
  11559. extra: 2083 / 1906,
  11560. bottom: 0.031
  11561. }
  11562. },
  11563. foot: {
  11564. height: math.unit(0.687, "meters"),
  11565. name: "Foot",
  11566. image: {
  11567. source: "./media/characters/tezwa/foot.svg"
  11568. }
  11569. },
  11570. },
  11571. [
  11572. {
  11573. name: "Normal",
  11574. height: math.unit(9 + 2 / 12, "feet"),
  11575. default: true
  11576. },
  11577. ]
  11578. ))
  11579. characterMakers.push(() => makeCharacter(
  11580. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11581. {
  11582. front: {
  11583. height: math.unit(58, "feet"),
  11584. weight: math.unit(89000, "lb"),
  11585. name: "Front",
  11586. image: {
  11587. source: "./media/characters/typhus/front.svg",
  11588. extra: 816 / 800,
  11589. bottom: 0.065
  11590. }
  11591. },
  11592. },
  11593. [
  11594. {
  11595. name: "Macro",
  11596. height: math.unit(58, "feet"),
  11597. default: true
  11598. },
  11599. ]
  11600. ))
  11601. characterMakers.push(() => makeCharacter(
  11602. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11603. {
  11604. front: {
  11605. height: math.unit(12, "feet"),
  11606. weight: math.unit(6, "tonnes"),
  11607. name: "Front",
  11608. image: {
  11609. source: "./media/characters/lyra-von-wulf/front.svg",
  11610. extra: 1,
  11611. bottom: 0.10
  11612. }
  11613. },
  11614. frontMecha: {
  11615. height: math.unit(12, "feet"),
  11616. weight: math.unit(12, "tonnes"),
  11617. name: "Front (Mecha)",
  11618. image: {
  11619. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11620. extra: 1,
  11621. bottom: 0.042
  11622. }
  11623. },
  11624. maw: {
  11625. height: math.unit(2.2, "feet"),
  11626. name: "Maw",
  11627. image: {
  11628. source: "./media/characters/lyra-von-wulf/maw.svg"
  11629. }
  11630. },
  11631. },
  11632. [
  11633. {
  11634. name: "Normal",
  11635. height: math.unit(12, "feet"),
  11636. default: true
  11637. },
  11638. {
  11639. name: "Classic",
  11640. height: math.unit(50, "feet")
  11641. },
  11642. {
  11643. name: "Macro",
  11644. height: math.unit(500, "feet")
  11645. },
  11646. {
  11647. name: "Megamacro",
  11648. height: math.unit(1, "mile")
  11649. },
  11650. {
  11651. name: "Gigamacro",
  11652. height: math.unit(400, "miles")
  11653. },
  11654. {
  11655. name: "Teramacro",
  11656. height: math.unit(22000, "miles")
  11657. },
  11658. {
  11659. name: "Solarmacro",
  11660. height: math.unit(8600000, "miles")
  11661. },
  11662. {
  11663. name: "Galactic",
  11664. height: math.unit(1057000, "lightyears")
  11665. },
  11666. ]
  11667. ))
  11668. characterMakers.push(() => makeCharacter(
  11669. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11670. {
  11671. front: {
  11672. height: math.unit(6 + 10 / 12, "feet"),
  11673. weight: math.unit(150, "lb"),
  11674. name: "Front",
  11675. image: {
  11676. source: "./media/characters/dixon/front.svg",
  11677. extra: 3361 / 3209,
  11678. bottom: 0.01
  11679. }
  11680. },
  11681. },
  11682. [
  11683. {
  11684. name: "Normal",
  11685. height: math.unit(6 + 10 / 12, "feet"),
  11686. default: true
  11687. },
  11688. {
  11689. name: "Big",
  11690. height: math.unit(12, "meters")
  11691. },
  11692. {
  11693. name: "Macro",
  11694. height: math.unit(500, "meters")
  11695. },
  11696. {
  11697. name: "Megamacro",
  11698. height: math.unit(2, "km")
  11699. },
  11700. ]
  11701. ))
  11702. characterMakers.push(() => makeCharacter(
  11703. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11704. {
  11705. front: {
  11706. height: math.unit(185, "cm"),
  11707. weight: math.unit(68, "kg"),
  11708. name: "Front",
  11709. image: {
  11710. source: "./media/characters/kauko/front.svg",
  11711. extra: 1455 / 1421,
  11712. bottom: 0.03
  11713. }
  11714. },
  11715. back: {
  11716. height: math.unit(185, "cm"),
  11717. weight: math.unit(68, "kg"),
  11718. name: "Back",
  11719. image: {
  11720. source: "./media/characters/kauko/back.svg",
  11721. extra: 1455 / 1421,
  11722. bottom: 0.004
  11723. }
  11724. },
  11725. },
  11726. [
  11727. {
  11728. name: "Normal",
  11729. height: math.unit(185, "cm"),
  11730. default: true
  11731. },
  11732. ]
  11733. ))
  11734. characterMakers.push(() => makeCharacter(
  11735. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11736. {
  11737. front: {
  11738. height: math.unit(6, "feet"),
  11739. weight: math.unit(150, "kg"),
  11740. name: "Front",
  11741. image: {
  11742. source: "./media/characters/varg/front.svg",
  11743. extra: 1108 / 1018,
  11744. bottom: 0.0375
  11745. }
  11746. },
  11747. },
  11748. [
  11749. {
  11750. name: "Normal",
  11751. height: math.unit(5, "meters")
  11752. },
  11753. {
  11754. name: "Macro",
  11755. height: math.unit(200, "meters")
  11756. },
  11757. {
  11758. name: "Megamacro",
  11759. height: math.unit(20, "kilometers")
  11760. },
  11761. {
  11762. name: "True Size",
  11763. height: math.unit(211, "km"),
  11764. default: true
  11765. },
  11766. {
  11767. name: "Gigamacro",
  11768. height: math.unit(1000, "km")
  11769. },
  11770. {
  11771. name: "Gigamacro+",
  11772. height: math.unit(8000, "km")
  11773. },
  11774. {
  11775. name: "Teramacro",
  11776. height: math.unit(1000000, "km")
  11777. },
  11778. ]
  11779. ))
  11780. characterMakers.push(() => makeCharacter(
  11781. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11782. {
  11783. front: {
  11784. height: math.unit(7 + 7 / 12, "feet"),
  11785. weight: math.unit(267, "lb"),
  11786. name: "Front",
  11787. image: {
  11788. source: "./media/characters/dayza/front.svg",
  11789. extra: 1262 / 1200,
  11790. bottom: 0.035
  11791. }
  11792. },
  11793. side: {
  11794. height: math.unit(7 + 7 / 12, "feet"),
  11795. weight: math.unit(267, "lb"),
  11796. name: "Side",
  11797. image: {
  11798. source: "./media/characters/dayza/side.svg",
  11799. extra: 1295 / 1245,
  11800. bottom: 0.05
  11801. }
  11802. },
  11803. back: {
  11804. height: math.unit(7 + 7 / 12, "feet"),
  11805. weight: math.unit(267, "lb"),
  11806. name: "Back",
  11807. image: {
  11808. source: "./media/characters/dayza/back.svg",
  11809. extra: 1241 / 1170
  11810. }
  11811. },
  11812. },
  11813. [
  11814. {
  11815. name: "Normal",
  11816. height: math.unit(7 + 7 / 12, "feet"),
  11817. default: true
  11818. },
  11819. {
  11820. name: "Macro",
  11821. height: math.unit(155, "feet")
  11822. },
  11823. ]
  11824. ))
  11825. characterMakers.push(() => makeCharacter(
  11826. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11827. {
  11828. front: {
  11829. height: math.unit(6 + 5 / 12, "feet"),
  11830. weight: math.unit(160, "lb"),
  11831. name: "Front",
  11832. image: {
  11833. source: "./media/characters/xanthos/front.svg",
  11834. extra: 1,
  11835. bottom: 0.04
  11836. }
  11837. },
  11838. back: {
  11839. height: math.unit(6 + 5 / 12, "feet"),
  11840. weight: math.unit(160, "lb"),
  11841. name: "Back",
  11842. image: {
  11843. source: "./media/characters/xanthos/back.svg",
  11844. extra: 1,
  11845. bottom: 0.03
  11846. }
  11847. },
  11848. hand: {
  11849. height: math.unit(0.928, "feet"),
  11850. name: "Hand",
  11851. image: {
  11852. source: "./media/characters/xanthos/hand.svg"
  11853. }
  11854. },
  11855. foot: {
  11856. height: math.unit(1.286, "feet"),
  11857. name: "Foot",
  11858. image: {
  11859. source: "./media/characters/xanthos/foot.svg"
  11860. }
  11861. },
  11862. },
  11863. [
  11864. {
  11865. name: "Normal",
  11866. height: math.unit(6 + 5 / 12, "feet"),
  11867. default: true
  11868. },
  11869. {
  11870. name: "Normal+",
  11871. height: math.unit(6, "meters")
  11872. },
  11873. {
  11874. name: "Macro",
  11875. height: math.unit(40, "feet")
  11876. },
  11877. {
  11878. name: "Macro+",
  11879. height: math.unit(200, "meters")
  11880. },
  11881. {
  11882. name: "Megamacro",
  11883. height: math.unit(20, "km")
  11884. },
  11885. {
  11886. name: "Megamacro+",
  11887. height: math.unit(100, "km")
  11888. },
  11889. ]
  11890. ))
  11891. characterMakers.push(() => makeCharacter(
  11892. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11893. {
  11894. front: {
  11895. height: math.unit(6 + 3 / 12, "feet"),
  11896. weight: math.unit(215, "lb"),
  11897. name: "Front",
  11898. image: {
  11899. source: "./media/characters/grynn/front.svg",
  11900. extra: 4627 / 4209,
  11901. bottom: 0.047
  11902. }
  11903. },
  11904. },
  11905. [
  11906. {
  11907. name: "Micro",
  11908. height: math.unit(6, "inches")
  11909. },
  11910. {
  11911. name: "Normal",
  11912. height: math.unit(6 + 3 / 12, "feet"),
  11913. default: true
  11914. },
  11915. {
  11916. name: "Big",
  11917. height: math.unit(104, "feet")
  11918. },
  11919. {
  11920. name: "Macro",
  11921. height: math.unit(944, "feet")
  11922. },
  11923. {
  11924. name: "Macro+",
  11925. height: math.unit(9480, "feet")
  11926. },
  11927. {
  11928. name: "Megamacro",
  11929. height: math.unit(78752, "feet")
  11930. },
  11931. {
  11932. name: "Megamacro+",
  11933. height: math.unit(630128, "feet")
  11934. },
  11935. {
  11936. name: "Megamacro++",
  11937. height: math.unit(3150695, "feet")
  11938. },
  11939. ]
  11940. ))
  11941. characterMakers.push(() => makeCharacter(
  11942. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  11943. {
  11944. front: {
  11945. height: math.unit(7 + 5 / 12, "feet"),
  11946. weight: math.unit(450, "lb"),
  11947. name: "Front",
  11948. image: {
  11949. source: "./media/characters/mocha-aura/front.svg",
  11950. extra: 1907 / 1817,
  11951. bottom: 0.04
  11952. }
  11953. },
  11954. back: {
  11955. height: math.unit(7 + 5 / 12, "feet"),
  11956. weight: math.unit(450, "lb"),
  11957. name: "Back",
  11958. image: {
  11959. source: "./media/characters/mocha-aura/back.svg",
  11960. extra: 1900 / 1825,
  11961. bottom: 0.045
  11962. }
  11963. },
  11964. },
  11965. [
  11966. {
  11967. name: "Nano",
  11968. height: math.unit(1, "nm")
  11969. },
  11970. {
  11971. name: "Megamicro",
  11972. height: math.unit(1, "mm")
  11973. },
  11974. {
  11975. name: "Micro",
  11976. height: math.unit(3, "inches")
  11977. },
  11978. {
  11979. name: "Normal",
  11980. height: math.unit(7 + 5 / 12, "feet"),
  11981. default: true
  11982. },
  11983. {
  11984. name: "Macro",
  11985. height: math.unit(30, "feet")
  11986. },
  11987. {
  11988. name: "Megamacro",
  11989. height: math.unit(3500, "feet")
  11990. },
  11991. {
  11992. name: "Teramacro",
  11993. height: math.unit(500000, "miles")
  11994. },
  11995. {
  11996. name: "Petamacro",
  11997. height: math.unit(50000000000000000, "parsecs")
  11998. },
  11999. ]
  12000. ))
  12001. characterMakers.push(() => makeCharacter(
  12002. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12003. {
  12004. front: {
  12005. height: math.unit(6, "feet"),
  12006. weight: math.unit(150, "lb"),
  12007. name: "Front",
  12008. image: {
  12009. source: "./media/characters/ilisha-devya/front.svg",
  12010. extra: 1,
  12011. bottom: 0.175
  12012. }
  12013. },
  12014. back: {
  12015. height: math.unit(6, "feet"),
  12016. weight: math.unit(150, "lb"),
  12017. name: "Back",
  12018. image: {
  12019. source: "./media/characters/ilisha-devya/back.svg",
  12020. extra: 1,
  12021. bottom: 0.015
  12022. }
  12023. },
  12024. },
  12025. [
  12026. {
  12027. name: "Macro",
  12028. height: math.unit(500, "feet"),
  12029. default: true
  12030. },
  12031. {
  12032. name: "Megamacro",
  12033. height: math.unit(10, "miles")
  12034. },
  12035. {
  12036. name: "Gigamacro",
  12037. height: math.unit(100000, "miles")
  12038. },
  12039. {
  12040. name: "Examacro",
  12041. height: math.unit(1e9, "lightyears")
  12042. },
  12043. {
  12044. name: "Omniversal",
  12045. height: math.unit(1e33, "lightyears")
  12046. },
  12047. {
  12048. name: "Beyond Infinite",
  12049. height: math.unit(1e100, "lightyears")
  12050. },
  12051. ]
  12052. ))
  12053. characterMakers.push(() => makeCharacter(
  12054. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12055. {
  12056. Side: {
  12057. height: math.unit(6, "feet"),
  12058. weight: math.unit(150, "lb"),
  12059. name: "Side",
  12060. image: {
  12061. source: "./media/characters/mira/side.svg",
  12062. extra: 900 / 799,
  12063. bottom: 0.02
  12064. }
  12065. },
  12066. },
  12067. [
  12068. {
  12069. name: "Human Size",
  12070. height: math.unit(6, "feet")
  12071. },
  12072. {
  12073. name: "Macro",
  12074. height: math.unit(100, "feet"),
  12075. default: true
  12076. },
  12077. {
  12078. name: "Megamacro",
  12079. height: math.unit(10, "miles")
  12080. },
  12081. {
  12082. name: "Gigamacro",
  12083. height: math.unit(25000, "miles")
  12084. },
  12085. {
  12086. name: "Teramacro",
  12087. height: math.unit(300, "AU")
  12088. },
  12089. {
  12090. name: "Full Size",
  12091. height: math.unit(4.5e10, "lightyears")
  12092. },
  12093. ]
  12094. ))
  12095. characterMakers.push(() => makeCharacter(
  12096. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12097. {
  12098. front: {
  12099. height: math.unit(6, "feet"),
  12100. weight: math.unit(150, "lb"),
  12101. name: "Front",
  12102. image: {
  12103. source: "./media/characters/holly/front.svg",
  12104. extra: 639 / 606
  12105. }
  12106. },
  12107. back: {
  12108. height: math.unit(6, "feet"),
  12109. weight: math.unit(150, "lb"),
  12110. name: "Back",
  12111. image: {
  12112. source: "./media/characters/holly/back.svg",
  12113. extra: 623 / 598
  12114. }
  12115. },
  12116. frontWorking: {
  12117. height: math.unit(6, "feet"),
  12118. weight: math.unit(150, "lb"),
  12119. name: "Front (Working)",
  12120. image: {
  12121. source: "./media/characters/holly/front-working.svg",
  12122. extra: 607 / 577,
  12123. bottom: 0.048
  12124. }
  12125. },
  12126. },
  12127. [
  12128. {
  12129. name: "Normal",
  12130. height: math.unit(12 + 3 / 12, "feet"),
  12131. default: true
  12132. },
  12133. ]
  12134. ))
  12135. characterMakers.push(() => makeCharacter(
  12136. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12137. {
  12138. front: {
  12139. height: math.unit(6, "feet"),
  12140. weight: math.unit(150, "lb"),
  12141. name: "Front",
  12142. image: {
  12143. source: "./media/characters/porter/front.svg",
  12144. extra: 1,
  12145. bottom: 0.01
  12146. }
  12147. },
  12148. frontRobes: {
  12149. height: math.unit(6, "feet"),
  12150. weight: math.unit(150, "lb"),
  12151. name: "Front (Robes)",
  12152. image: {
  12153. source: "./media/characters/porter/front-robes.svg",
  12154. extra: 1.01,
  12155. bottom: 0.01
  12156. }
  12157. },
  12158. },
  12159. [
  12160. {
  12161. name: "Normal",
  12162. height: math.unit(11 + 9 / 12, "feet"),
  12163. default: true
  12164. },
  12165. ]
  12166. ))
  12167. characterMakers.push(() => makeCharacter(
  12168. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12169. {
  12170. legendary: {
  12171. height: math.unit(6, "feet"),
  12172. weight: math.unit(150, "lb"),
  12173. name: "Legendary",
  12174. image: {
  12175. source: "./media/characters/lucy/legendary.svg",
  12176. extra: 1355 / 1100,
  12177. bottom: 0.045
  12178. }
  12179. },
  12180. },
  12181. [
  12182. {
  12183. name: "Legendary",
  12184. height: math.unit(86882 * 2, "miles"),
  12185. default: true
  12186. },
  12187. ]
  12188. ))
  12189. characterMakers.push(() => makeCharacter(
  12190. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12191. {
  12192. front: {
  12193. height: math.unit(6, "feet"),
  12194. weight: math.unit(150, "lb"),
  12195. name: "Front",
  12196. image: {
  12197. source: "./media/characters/drusilla/front.svg",
  12198. extra: 678 / 635,
  12199. bottom: 0.03
  12200. }
  12201. },
  12202. back: {
  12203. height: math.unit(6, "feet"),
  12204. weight: math.unit(150, "lb"),
  12205. name: "Back",
  12206. image: {
  12207. source: "./media/characters/drusilla/back.svg",
  12208. extra: 678 / 635,
  12209. bottom: 0.005
  12210. }
  12211. },
  12212. },
  12213. [
  12214. {
  12215. name: "Macro",
  12216. height: math.unit(100, "feet")
  12217. },
  12218. {
  12219. name: "Canon Height",
  12220. height: math.unit(2000, "feet"),
  12221. default: true
  12222. },
  12223. ]
  12224. ))
  12225. characterMakers.push(() => makeCharacter(
  12226. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12227. {
  12228. front: {
  12229. height: math.unit(6, "feet"),
  12230. weight: math.unit(180, "lb"),
  12231. name: "Front",
  12232. image: {
  12233. source: "./media/characters/renard-thatch/front.svg",
  12234. extra: 2411 / 2275,
  12235. bottom: 0.01
  12236. }
  12237. },
  12238. frontPosing: {
  12239. height: math.unit(6, "feet"),
  12240. weight: math.unit(180, "lb"),
  12241. name: "Front (Posing)",
  12242. image: {
  12243. source: "./media/characters/renard-thatch/front-posing.svg",
  12244. extra: 2381 / 2261,
  12245. bottom: 0.01
  12246. }
  12247. },
  12248. back: {
  12249. height: math.unit(6, "feet"),
  12250. weight: math.unit(180, "lb"),
  12251. name: "Back",
  12252. image: {
  12253. source: "./media/characters/renard-thatch/back.svg",
  12254. extra: 2428 / 2288
  12255. }
  12256. },
  12257. },
  12258. [
  12259. {
  12260. name: "Micro",
  12261. height: math.unit(3, "inches")
  12262. },
  12263. {
  12264. name: "Default",
  12265. height: math.unit(6, "feet"),
  12266. default: true
  12267. },
  12268. {
  12269. name: "Macro",
  12270. height: math.unit(75, "feet")
  12271. },
  12272. ]
  12273. ))
  12274. characterMakers.push(() => makeCharacter(
  12275. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12276. {
  12277. front: {
  12278. height: math.unit(1450, "feet"),
  12279. weight: math.unit(1.21e6, "tons"),
  12280. name: "Front",
  12281. image: {
  12282. source: "./media/characters/sekvra/front.svg",
  12283. extra: 1,
  12284. bottom: 0.03
  12285. }
  12286. },
  12287. frontClothed: {
  12288. height: math.unit(1450, "feet"),
  12289. weight: math.unit(1.21e6, "tons"),
  12290. name: "Front (Clothed)",
  12291. image: {
  12292. source: "./media/characters/sekvra/front-clothed.svg",
  12293. extra: 1,
  12294. bottom: 0.03
  12295. }
  12296. },
  12297. side: {
  12298. height: math.unit(1450, "feet"),
  12299. weight: math.unit(1.21e6, "tons"),
  12300. name: "Side",
  12301. image: {
  12302. source: "./media/characters/sekvra/side.svg",
  12303. extra: 1,
  12304. bottom: 0.025
  12305. }
  12306. },
  12307. back: {
  12308. height: math.unit(1450, "feet"),
  12309. weight: math.unit(1.21e6, "tons"),
  12310. name: "Back",
  12311. image: {
  12312. source: "./media/characters/sekvra/back.svg",
  12313. extra: 1,
  12314. bottom: 0.005
  12315. }
  12316. },
  12317. },
  12318. [
  12319. {
  12320. name: "Macro",
  12321. height: math.unit(1450, "feet"),
  12322. default: true
  12323. },
  12324. {
  12325. name: "Megamacro",
  12326. height: math.unit(15000, "feet")
  12327. },
  12328. ]
  12329. ))
  12330. characterMakers.push(() => makeCharacter(
  12331. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12332. {
  12333. front: {
  12334. height: math.unit(6, "feet"),
  12335. weight: math.unit(150, "lb"),
  12336. name: "Front",
  12337. image: {
  12338. source: "./media/characters/carmine/front.svg",
  12339. extra: 1,
  12340. bottom: 0.035
  12341. }
  12342. },
  12343. frontArmor: {
  12344. height: math.unit(6, "feet"),
  12345. weight: math.unit(150, "lb"),
  12346. name: "Front (Armor)",
  12347. image: {
  12348. source: "./media/characters/carmine/front-armor.svg",
  12349. extra: 1,
  12350. bottom: 0.035
  12351. }
  12352. },
  12353. },
  12354. [
  12355. {
  12356. name: "Large",
  12357. height: math.unit(1, "mile")
  12358. },
  12359. {
  12360. name: "Huge",
  12361. height: math.unit(40, "miles"),
  12362. default: true
  12363. },
  12364. {
  12365. name: "Colossal",
  12366. height: math.unit(2500, "miles")
  12367. },
  12368. ]
  12369. ))
  12370. characterMakers.push(() => makeCharacter(
  12371. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12372. {
  12373. front: {
  12374. height: math.unit(6, "feet"),
  12375. weight: math.unit(150, "lb"),
  12376. name: "Front",
  12377. image: {
  12378. source: "./media/characters/elyssia/front.svg",
  12379. extra: 2201 / 2035,
  12380. bottom: 0.05
  12381. }
  12382. },
  12383. frontClothed: {
  12384. height: math.unit(6, "feet"),
  12385. weight: math.unit(150, "lb"),
  12386. name: "Front (Clothed)",
  12387. image: {
  12388. source: "./media/characters/elyssia/front-clothed.svg",
  12389. extra: 2201 / 2035,
  12390. bottom: 0.05
  12391. }
  12392. },
  12393. back: {
  12394. height: math.unit(6, "feet"),
  12395. weight: math.unit(150, "lb"),
  12396. name: "Back",
  12397. image: {
  12398. source: "./media/characters/elyssia/back.svg",
  12399. extra: 2201 / 2035,
  12400. bottom: 0.013
  12401. }
  12402. },
  12403. },
  12404. [
  12405. {
  12406. name: "Smaller",
  12407. height: math.unit(150, "feet")
  12408. },
  12409. {
  12410. name: "Standard",
  12411. height: math.unit(1400, "feet"),
  12412. default: true
  12413. },
  12414. {
  12415. name: "Distracted",
  12416. height: math.unit(15000, "feet")
  12417. },
  12418. ]
  12419. ))
  12420. characterMakers.push(() => makeCharacter(
  12421. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12422. {
  12423. front: {
  12424. height: math.unit(7 + 4 / 12, "feet"),
  12425. weight: math.unit(500, "lb"),
  12426. name: "Front",
  12427. image: {
  12428. source: "./media/characters/geno-maxwell/front.svg",
  12429. extra: 2207 / 2040,
  12430. bottom: 0.015
  12431. }
  12432. },
  12433. },
  12434. [
  12435. {
  12436. name: "Micro",
  12437. height: math.unit(3, "inches")
  12438. },
  12439. {
  12440. name: "Normal",
  12441. height: math.unit(7 + 4 / 12, "feet"),
  12442. default: true
  12443. },
  12444. {
  12445. name: "Macro",
  12446. height: math.unit(220, "feet")
  12447. },
  12448. {
  12449. name: "Megamacro",
  12450. height: math.unit(11, "miles")
  12451. },
  12452. ]
  12453. ))
  12454. characterMakers.push(() => makeCharacter(
  12455. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12456. {
  12457. front: {
  12458. height: math.unit(7 + 4 / 12, "feet"),
  12459. weight: math.unit(500, "lb"),
  12460. name: "Front",
  12461. image: {
  12462. source: "./media/characters/regena-maxwell/front.svg",
  12463. extra: 3115 / 2770,
  12464. bottom: 0.02
  12465. }
  12466. },
  12467. },
  12468. [
  12469. {
  12470. name: "Normal",
  12471. height: math.unit(7 + 4 / 12, "feet"),
  12472. default: true
  12473. },
  12474. {
  12475. name: "Macro",
  12476. height: math.unit(220, "feet")
  12477. },
  12478. {
  12479. name: "Megamacro",
  12480. height: math.unit(11, "miles")
  12481. },
  12482. ]
  12483. ))
  12484. characterMakers.push(() => makeCharacter(
  12485. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12486. {
  12487. front: {
  12488. height: math.unit(6, "feet"),
  12489. weight: math.unit(150, "lb"),
  12490. name: "Front",
  12491. image: {
  12492. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12493. extra: 860 / 690,
  12494. bottom: 0.03
  12495. }
  12496. },
  12497. },
  12498. [
  12499. {
  12500. name: "Normal",
  12501. height: math.unit(1.7, "meters"),
  12502. default: true
  12503. },
  12504. ]
  12505. ))
  12506. characterMakers.push(() => makeCharacter(
  12507. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12508. {
  12509. front: {
  12510. height: math.unit(6, "feet"),
  12511. weight: math.unit(150, "lb"),
  12512. name: "Front",
  12513. image: {
  12514. source: "./media/characters/quilly/front.svg",
  12515. extra: 890 / 776
  12516. }
  12517. },
  12518. },
  12519. [
  12520. {
  12521. name: "Gigamacro",
  12522. height: math.unit(404090, "miles"),
  12523. default: true
  12524. },
  12525. ]
  12526. ))
  12527. characterMakers.push(() => makeCharacter(
  12528. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12529. {
  12530. front: {
  12531. height: math.unit(7 + 8 / 12, "feet"),
  12532. weight: math.unit(350, "lb"),
  12533. name: "Front",
  12534. image: {
  12535. source: "./media/characters/tempest/front.svg",
  12536. extra: 1175 / 1086,
  12537. bottom: 0.02
  12538. }
  12539. },
  12540. },
  12541. [
  12542. {
  12543. name: "Normal",
  12544. height: math.unit(7 + 8 / 12, "feet"),
  12545. default: true
  12546. },
  12547. ]
  12548. ))
  12549. characterMakers.push(() => makeCharacter(
  12550. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12551. {
  12552. side: {
  12553. height: math.unit(4 + 5 / 12, "feet"),
  12554. weight: math.unit(80, "lb"),
  12555. name: "Side",
  12556. image: {
  12557. source: "./media/characters/rodger/side.svg",
  12558. extra: 1235 / 1118
  12559. }
  12560. },
  12561. },
  12562. [
  12563. {
  12564. name: "Micro",
  12565. height: math.unit(1, "inch")
  12566. },
  12567. {
  12568. name: "Normal",
  12569. height: math.unit(4 + 5 / 12, "feet"),
  12570. default: true
  12571. },
  12572. {
  12573. name: "Macro",
  12574. height: math.unit(120, "feet")
  12575. },
  12576. ]
  12577. ))
  12578. characterMakers.push(() => makeCharacter(
  12579. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12580. {
  12581. front: {
  12582. height: math.unit(6, "feet"),
  12583. weight: math.unit(150, "lb"),
  12584. name: "Front",
  12585. image: {
  12586. source: "./media/characters/danyel/front.svg",
  12587. extra: 1185 / 1123,
  12588. bottom: 0.05
  12589. }
  12590. },
  12591. },
  12592. [
  12593. {
  12594. name: "Shrunken",
  12595. height: math.unit(0.5, "mm")
  12596. },
  12597. {
  12598. name: "Micro",
  12599. height: math.unit(1, "mm"),
  12600. default: true
  12601. },
  12602. {
  12603. name: "Upsized",
  12604. height: math.unit(5 + 5 / 12, "feet")
  12605. },
  12606. ]
  12607. ))
  12608. characterMakers.push(() => makeCharacter(
  12609. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12610. {
  12611. front: {
  12612. height: math.unit(5 + 6 / 12, "feet"),
  12613. weight: math.unit(200, "lb"),
  12614. name: "Front",
  12615. image: {
  12616. source: "./media/characters/vivian-bijoux/front.svg",
  12617. extra: 1,
  12618. bottom: 0.072
  12619. }
  12620. },
  12621. },
  12622. [
  12623. {
  12624. name: "Normal",
  12625. height: math.unit(5 + 6 / 12, "feet"),
  12626. default: true
  12627. },
  12628. {
  12629. name: "Bad Dream",
  12630. height: math.unit(500, "feet")
  12631. },
  12632. {
  12633. name: "Nightmare",
  12634. height: math.unit(500, "miles")
  12635. },
  12636. ]
  12637. ))
  12638. characterMakers.push(() => makeCharacter(
  12639. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12640. {
  12641. front: {
  12642. height: math.unit(6 + 1 / 12, "feet"),
  12643. weight: math.unit(260, "lb"),
  12644. name: "Front",
  12645. image: {
  12646. source: "./media/characters/zeta/front.svg",
  12647. extra: 1968 / 1889,
  12648. bottom: 0.06
  12649. }
  12650. },
  12651. back: {
  12652. height: math.unit(6 + 1 / 12, "feet"),
  12653. weight: math.unit(260, "lb"),
  12654. name: "Back",
  12655. image: {
  12656. source: "./media/characters/zeta/back.svg",
  12657. extra: 1944 / 1858,
  12658. bottom: 0.03
  12659. }
  12660. },
  12661. hand: {
  12662. height: math.unit(1.112, "feet"),
  12663. name: "Hand",
  12664. image: {
  12665. source: "./media/characters/zeta/hand.svg"
  12666. }
  12667. },
  12668. foot: {
  12669. height: math.unit(1.48, "feet"),
  12670. name: "Foot",
  12671. image: {
  12672. source: "./media/characters/zeta/foot.svg"
  12673. }
  12674. },
  12675. },
  12676. [
  12677. {
  12678. name: "Micro",
  12679. height: math.unit(6, "inches")
  12680. },
  12681. {
  12682. name: "Normal",
  12683. height: math.unit(6 + 1 / 12, "feet"),
  12684. default: true
  12685. },
  12686. {
  12687. name: "Macro",
  12688. height: math.unit(20, "feet")
  12689. },
  12690. ]
  12691. ))
  12692. characterMakers.push(() => makeCharacter(
  12693. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12694. {
  12695. front: {
  12696. height: math.unit(6, "feet"),
  12697. weight: math.unit(150, "lb"),
  12698. name: "Front",
  12699. image: {
  12700. source: "./media/characters/jamie-larsen/front.svg",
  12701. extra: 962 / 933,
  12702. bottom: 0.02
  12703. }
  12704. },
  12705. back: {
  12706. height: math.unit(6, "feet"),
  12707. weight: math.unit(150, "lb"),
  12708. name: "Back",
  12709. image: {
  12710. source: "./media/characters/jamie-larsen/back.svg",
  12711. extra: 997 / 946
  12712. }
  12713. },
  12714. },
  12715. [
  12716. {
  12717. name: "Macro",
  12718. height: math.unit(28 + 7 / 12, "feet"),
  12719. default: true
  12720. },
  12721. {
  12722. name: "Macro+",
  12723. height: math.unit(180, "feet")
  12724. },
  12725. {
  12726. name: "Megamacro",
  12727. height: math.unit(10, "miles")
  12728. },
  12729. {
  12730. name: "Gigamacro",
  12731. height: math.unit(200000, "miles")
  12732. },
  12733. ]
  12734. ))
  12735. characterMakers.push(() => makeCharacter(
  12736. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12737. {
  12738. front: {
  12739. height: math.unit(6, "feet"),
  12740. weight: math.unit(120, "lb"),
  12741. name: "Front",
  12742. image: {
  12743. source: "./media/characters/vance/front.svg",
  12744. extra: 1980 / 1890,
  12745. bottom: 0.09
  12746. }
  12747. },
  12748. back: {
  12749. height: math.unit(6, "feet"),
  12750. weight: math.unit(120, "lb"),
  12751. name: "Back",
  12752. image: {
  12753. source: "./media/characters/vance/back.svg",
  12754. extra: 2081 / 1994,
  12755. bottom: 0.014
  12756. }
  12757. },
  12758. hand: {
  12759. height: math.unit(0.88, "feet"),
  12760. name: "Hand",
  12761. image: {
  12762. source: "./media/characters/vance/hand.svg"
  12763. }
  12764. },
  12765. foot: {
  12766. height: math.unit(0.64, "feet"),
  12767. name: "Foot",
  12768. image: {
  12769. source: "./media/characters/vance/foot.svg"
  12770. }
  12771. },
  12772. },
  12773. [
  12774. {
  12775. name: "Small",
  12776. height: math.unit(90, "feet"),
  12777. default: true
  12778. },
  12779. {
  12780. name: "Macro",
  12781. height: math.unit(100, "meters")
  12782. },
  12783. {
  12784. name: "Megamacro",
  12785. height: math.unit(15, "miles")
  12786. },
  12787. ]
  12788. ))
  12789. characterMakers.push(() => makeCharacter(
  12790. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12791. {
  12792. front: {
  12793. height: math.unit(6, "feet"),
  12794. weight: math.unit(180, "lb"),
  12795. name: "Front",
  12796. image: {
  12797. source: "./media/characters/xochitl/front.svg",
  12798. extra: 2297 / 2261,
  12799. bottom: 0.065
  12800. }
  12801. },
  12802. back: {
  12803. height: math.unit(6, "feet"),
  12804. weight: math.unit(180, "lb"),
  12805. name: "Back",
  12806. image: {
  12807. source: "./media/characters/xochitl/back.svg",
  12808. extra: 2386 / 2354,
  12809. bottom: 0.01
  12810. }
  12811. },
  12812. foot: {
  12813. height: math.unit(6 / 5 * 1.15, "feet"),
  12814. weight: math.unit(150, "lb"),
  12815. name: "Foot",
  12816. image: {
  12817. source: "./media/characters/xochitl/foot.svg"
  12818. }
  12819. },
  12820. },
  12821. [
  12822. {
  12823. name: "Macro",
  12824. height: math.unit(80, "feet")
  12825. },
  12826. {
  12827. name: "Macro+",
  12828. height: math.unit(400, "feet"),
  12829. default: true
  12830. },
  12831. {
  12832. name: "Gigamacro",
  12833. height: math.unit(80000, "miles")
  12834. },
  12835. {
  12836. name: "Gigamacro+",
  12837. height: math.unit(400000, "miles")
  12838. },
  12839. {
  12840. name: "Teramacro",
  12841. height: math.unit(300, "AU")
  12842. },
  12843. ]
  12844. ))
  12845. characterMakers.push(() => makeCharacter(
  12846. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12847. {
  12848. front: {
  12849. height: math.unit(6, "feet"),
  12850. weight: math.unit(150, "lb"),
  12851. name: "Front",
  12852. image: {
  12853. source: "./media/characters/vincent/front.svg",
  12854. extra: 1130 / 1080,
  12855. bottom: 0.055
  12856. }
  12857. },
  12858. beak: {
  12859. height: math.unit(6 * 0.1, "feet"),
  12860. name: "Beak",
  12861. image: {
  12862. source: "./media/characters/vincent/beak.svg"
  12863. }
  12864. },
  12865. hand: {
  12866. height: math.unit(6 * 0.85, "feet"),
  12867. weight: math.unit(150, "lb"),
  12868. name: "Hand",
  12869. image: {
  12870. source: "./media/characters/vincent/hand.svg"
  12871. }
  12872. },
  12873. foot: {
  12874. height: math.unit(6 * 0.19, "feet"),
  12875. weight: math.unit(150, "lb"),
  12876. name: "Foot",
  12877. image: {
  12878. source: "./media/characters/vincent/foot.svg"
  12879. }
  12880. },
  12881. },
  12882. [
  12883. {
  12884. name: "Base",
  12885. height: math.unit(6 + 5 / 12, "feet"),
  12886. default: true
  12887. },
  12888. {
  12889. name: "Macro",
  12890. height: math.unit(300, "feet")
  12891. },
  12892. {
  12893. name: "Megamacro",
  12894. height: math.unit(2, "miles")
  12895. },
  12896. {
  12897. name: "Gigamacro",
  12898. height: math.unit(1000, "miles")
  12899. },
  12900. ]
  12901. ))
  12902. characterMakers.push(() => makeCharacter(
  12903. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  12904. {
  12905. front: {
  12906. height: math.unit(6 + 2 / 12, "feet"),
  12907. weight: math.unit(265, "lb"),
  12908. name: "Front",
  12909. image: {
  12910. source: "./media/characters/jay/front.svg",
  12911. extra: 1510 / 1430,
  12912. bottom: 0.042
  12913. }
  12914. },
  12915. back: {
  12916. height: math.unit(6 + 2 / 12, "feet"),
  12917. weight: math.unit(265, "lb"),
  12918. name: "Back",
  12919. image: {
  12920. source: "./media/characters/jay/back.svg",
  12921. extra: 1510 / 1430,
  12922. bottom: 0.025
  12923. }
  12924. },
  12925. clothed: {
  12926. height: math.unit(6 + 2 / 12, "feet"),
  12927. weight: math.unit(265, "lb"),
  12928. name: "Front (Clothed)",
  12929. image: {
  12930. source: "./media/characters/jay/clothed.svg",
  12931. extra: 744 / 699,
  12932. bottom: 0.043
  12933. }
  12934. },
  12935. head: {
  12936. height: math.unit(1.772, "feet"),
  12937. name: "Head",
  12938. image: {
  12939. source: "./media/characters/jay/head.svg"
  12940. }
  12941. },
  12942. sizeRay: {
  12943. height: math.unit(1.331, "feet"),
  12944. name: "Size Ray",
  12945. image: {
  12946. source: "./media/characters/jay/size-ray.svg"
  12947. }
  12948. },
  12949. },
  12950. [
  12951. {
  12952. name: "Micro",
  12953. height: math.unit(1, "inch")
  12954. },
  12955. {
  12956. name: "Normal",
  12957. height: math.unit(6 + 2 / 12, "feet"),
  12958. default: true
  12959. },
  12960. {
  12961. name: "Macro",
  12962. height: math.unit(1, "mile")
  12963. },
  12964. {
  12965. name: "Megamacro",
  12966. height: math.unit(100, "miles")
  12967. },
  12968. ]
  12969. ))
  12970. characterMakers.push(() => makeCharacter(
  12971. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  12972. {
  12973. front: {
  12974. height: math.unit(2, "meters"),
  12975. weight: math.unit(500, "kg"),
  12976. name: "Front",
  12977. image: {
  12978. source: "./media/characters/coatl/front.svg",
  12979. extra: 3948 / 3500,
  12980. bottom: 0.082
  12981. }
  12982. },
  12983. },
  12984. [
  12985. {
  12986. name: "Normal",
  12987. height: math.unit(4, "meters")
  12988. },
  12989. {
  12990. name: "Macro",
  12991. height: math.unit(100, "meters"),
  12992. default: true
  12993. },
  12994. {
  12995. name: "Macro+",
  12996. height: math.unit(300, "meters")
  12997. },
  12998. {
  12999. name: "Megamacro",
  13000. height: math.unit(3, "gigameters")
  13001. },
  13002. {
  13003. name: "Megamacro+",
  13004. height: math.unit(300, "terameters")
  13005. },
  13006. {
  13007. name: "Megamacro++",
  13008. height: math.unit(3, "lightyears")
  13009. },
  13010. ]
  13011. ))
  13012. characterMakers.push(() => makeCharacter(
  13013. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13014. {
  13015. front: {
  13016. height: math.unit(6, "feet"),
  13017. weight: math.unit(50, "kg"),
  13018. name: "front",
  13019. image: {
  13020. source: "./media/characters/shiroryu/front.svg",
  13021. extra: 1990 / 1935
  13022. }
  13023. },
  13024. },
  13025. [
  13026. {
  13027. name: "Mortal Mingling",
  13028. height: math.unit(3, "meters")
  13029. },
  13030. {
  13031. name: "Kaiju-ish",
  13032. height: math.unit(250, "meters")
  13033. },
  13034. {
  13035. name: "Somewhat Godly",
  13036. height: math.unit(400, "km"),
  13037. default: true
  13038. },
  13039. {
  13040. name: "Planetary",
  13041. height: math.unit(300, "megameters")
  13042. },
  13043. {
  13044. name: "Galaxy-dwarfing",
  13045. height: math.unit(450, "kiloparsecs")
  13046. },
  13047. {
  13048. name: "Universe Eater",
  13049. height: math.unit(150, "gigaparsecs")
  13050. },
  13051. {
  13052. name: "Almost Immeasurable",
  13053. height: math.unit(1.3e266, "yottaparsecs")
  13054. },
  13055. ]
  13056. ))
  13057. characterMakers.push(() => makeCharacter(
  13058. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13059. {
  13060. front: {
  13061. height: math.unit(6, "feet"),
  13062. weight: math.unit(150, "lb"),
  13063. name: "Front",
  13064. image: {
  13065. source: "./media/characters/umeko/front.svg",
  13066. extra: 1,
  13067. bottom: 0.019
  13068. }
  13069. },
  13070. frontArmored: {
  13071. height: math.unit(6, "feet"),
  13072. weight: math.unit(150, "lb"),
  13073. name: "Front (Armored)",
  13074. image: {
  13075. source: "./media/characters/umeko/front-armored.svg",
  13076. extra: 1,
  13077. bottom: 0.021
  13078. }
  13079. },
  13080. },
  13081. [
  13082. {
  13083. name: "Macro",
  13084. height: math.unit(220, "feet"),
  13085. default: true
  13086. },
  13087. {
  13088. name: "Guardian Dragon",
  13089. height: math.unit(50, "miles")
  13090. },
  13091. {
  13092. name: "Cosmic",
  13093. height: math.unit(800000, "miles")
  13094. },
  13095. ]
  13096. ))
  13097. characterMakers.push(() => makeCharacter(
  13098. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13099. {
  13100. front: {
  13101. height: math.unit(6, "feet"),
  13102. weight: math.unit(150, "lb"),
  13103. name: "Front",
  13104. image: {
  13105. source: "./media/characters/cassidy/front.svg",
  13106. extra: 1,
  13107. bottom: 0.043
  13108. }
  13109. },
  13110. },
  13111. [
  13112. {
  13113. name: "Canon Height",
  13114. height: math.unit(120, "feet"),
  13115. default: true
  13116. },
  13117. {
  13118. name: "Macro+",
  13119. height: math.unit(400, "feet")
  13120. },
  13121. {
  13122. name: "Macro++",
  13123. height: math.unit(4000, "feet")
  13124. },
  13125. {
  13126. name: "Megamacro",
  13127. height: math.unit(3, "miles")
  13128. },
  13129. ]
  13130. ))
  13131. characterMakers.push(() => makeCharacter(
  13132. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13133. {
  13134. front: {
  13135. height: math.unit(6, "feet"),
  13136. weight: math.unit(150, "lb"),
  13137. name: "Front",
  13138. image: {
  13139. source: "./media/characters/isaac/front.svg",
  13140. extra: 896 / 815,
  13141. bottom: 0.11
  13142. }
  13143. },
  13144. },
  13145. [
  13146. {
  13147. name: "Human Size",
  13148. height: math.unit(8, "feet"),
  13149. default: true
  13150. },
  13151. {
  13152. name: "Macro",
  13153. height: math.unit(400, "feet")
  13154. },
  13155. {
  13156. name: "Megamacro",
  13157. height: math.unit(50, "miles")
  13158. },
  13159. {
  13160. name: "Canon Height",
  13161. height: math.unit(200, "AU")
  13162. },
  13163. ]
  13164. ))
  13165. characterMakers.push(() => makeCharacter(
  13166. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13167. {
  13168. front: {
  13169. height: math.unit(6, "feet"),
  13170. weight: math.unit(72, "kg"),
  13171. name: "Front",
  13172. image: {
  13173. source: "./media/characters/sleekit/front.svg",
  13174. extra: 4693 / 4487,
  13175. bottom: 0.012
  13176. }
  13177. },
  13178. },
  13179. [
  13180. {
  13181. name: "Minimum Height",
  13182. height: math.unit(10, "meters")
  13183. },
  13184. {
  13185. name: "Smaller",
  13186. height: math.unit(25, "meters")
  13187. },
  13188. {
  13189. name: "Larger",
  13190. height: math.unit(38, "meters"),
  13191. default: true
  13192. },
  13193. {
  13194. name: "Maximum height",
  13195. height: math.unit(100, "meters")
  13196. },
  13197. ]
  13198. ))
  13199. characterMakers.push(() => makeCharacter(
  13200. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13201. {
  13202. front: {
  13203. height: math.unit(6, "feet"),
  13204. weight: math.unit(150, "lb"),
  13205. name: "Front",
  13206. image: {
  13207. source: "./media/characters/nillia/front.svg",
  13208. extra: 2195 / 2037,
  13209. bottom: 0.005
  13210. }
  13211. },
  13212. back: {
  13213. height: math.unit(6, "feet"),
  13214. weight: math.unit(150, "lb"),
  13215. name: "Back",
  13216. image: {
  13217. source: "./media/characters/nillia/back.svg",
  13218. extra: 2195 / 2037,
  13219. bottom: 0.005
  13220. }
  13221. },
  13222. },
  13223. [
  13224. {
  13225. name: "Canon Height",
  13226. height: math.unit(489, "feet"),
  13227. default: true
  13228. }
  13229. ]
  13230. ))
  13231. characterMakers.push(() => makeCharacter(
  13232. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13233. {
  13234. front: {
  13235. height: math.unit(6, "feet"),
  13236. weight: math.unit(150, "lb"),
  13237. name: "Front",
  13238. image: {
  13239. source: "./media/characters/mesmyriza/front.svg",
  13240. extra: 2067 / 1784,
  13241. bottom: 0.035
  13242. }
  13243. },
  13244. foot: {
  13245. height: math.unit(6 / (250 / 35), "feet"),
  13246. name: "Foot",
  13247. image: {
  13248. source: "./media/characters/mesmyriza/foot.svg"
  13249. }
  13250. },
  13251. },
  13252. [
  13253. {
  13254. name: "Macro",
  13255. height: math.unit(457, "meters"),
  13256. default: true
  13257. },
  13258. {
  13259. name: "Megamacro",
  13260. height: math.unit(8, "megameters")
  13261. },
  13262. ]
  13263. ))
  13264. characterMakers.push(() => makeCharacter(
  13265. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13266. {
  13267. front: {
  13268. height: math.unit(6, "feet"),
  13269. weight: math.unit(250, "lb"),
  13270. name: "Front",
  13271. image: {
  13272. source: "./media/characters/saudade/front.svg",
  13273. extra: 1172 / 1139,
  13274. bottom: 0.035
  13275. }
  13276. },
  13277. },
  13278. [
  13279. {
  13280. name: "Micro",
  13281. height: math.unit(3, "inches")
  13282. },
  13283. {
  13284. name: "Normal",
  13285. height: math.unit(6, "feet"),
  13286. default: true
  13287. },
  13288. {
  13289. name: "Macro",
  13290. height: math.unit(50, "feet")
  13291. },
  13292. {
  13293. name: "Megamacro",
  13294. height: math.unit(2800, "feet")
  13295. },
  13296. ]
  13297. ))
  13298. characterMakers.push(() => makeCharacter(
  13299. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13300. {
  13301. front: {
  13302. height: math.unit(5 + 4 / 12, "feet"),
  13303. weight: math.unit(100, "lb"),
  13304. name: "Front",
  13305. image: {
  13306. source: "./media/characters/keireer/front.svg",
  13307. extra: 716 / 666,
  13308. bottom: 0.05
  13309. }
  13310. },
  13311. },
  13312. [
  13313. {
  13314. name: "Normal",
  13315. height: math.unit(5 + 4 / 12, "feet"),
  13316. default: true
  13317. },
  13318. ]
  13319. ))
  13320. characterMakers.push(() => makeCharacter(
  13321. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13322. {
  13323. front: {
  13324. height: math.unit(6, "feet"),
  13325. weight: math.unit(90, "kg"),
  13326. name: "Front",
  13327. image: {
  13328. source: "./media/characters/mirja/front.svg",
  13329. extra: 1789 / 1683,
  13330. bottom: 0.05
  13331. }
  13332. },
  13333. frontDressed: {
  13334. height: math.unit(6, "feet"),
  13335. weight: math.unit(90, "lb"),
  13336. name: "Front (Dressed)",
  13337. image: {
  13338. source: "./media/characters/mirja/front-dressed.svg",
  13339. extra: 1789 / 1683,
  13340. bottom: 0.05
  13341. }
  13342. },
  13343. back: {
  13344. height: math.unit(6, "feet"),
  13345. weight: math.unit(90, "lb"),
  13346. name: "Back",
  13347. image: {
  13348. source: "./media/characters/mirja/back.svg",
  13349. extra: 953 / 917,
  13350. bottom: 0.017
  13351. }
  13352. },
  13353. },
  13354. [
  13355. {
  13356. name: "\"Incognito\"",
  13357. height: math.unit(3, "meters")
  13358. },
  13359. {
  13360. name: "Strolling Size",
  13361. height: math.unit(15, "km")
  13362. },
  13363. {
  13364. name: "Larger Strolling Size",
  13365. height: math.unit(400, "km")
  13366. },
  13367. {
  13368. name: "Preferred Size",
  13369. height: math.unit(5000, "km")
  13370. },
  13371. {
  13372. name: "True Size",
  13373. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13374. default: true
  13375. },
  13376. ]
  13377. ))
  13378. characterMakers.push(() => makeCharacter(
  13379. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13380. {
  13381. front: {
  13382. height: math.unit(15, "feet"),
  13383. weight: math.unit(880, "kg"),
  13384. name: "Front",
  13385. image: {
  13386. source: "./media/characters/nightraver/front.svg",
  13387. extra: 2444 / 2160,
  13388. bottom: 0.027
  13389. }
  13390. },
  13391. back: {
  13392. height: math.unit(15, "feet"),
  13393. weight: math.unit(880, "kg"),
  13394. name: "Back",
  13395. image: {
  13396. source: "./media/characters/nightraver/back.svg",
  13397. extra: 2309 / 2180,
  13398. bottom: 0.005
  13399. }
  13400. },
  13401. sole: {
  13402. height: math.unit(2.878, "feet"),
  13403. name: "Sole",
  13404. image: {
  13405. source: "./media/characters/nightraver/sole.svg"
  13406. }
  13407. },
  13408. foot: {
  13409. height: math.unit(2.285, "feet"),
  13410. name: "Foot",
  13411. image: {
  13412. source: "./media/characters/nightraver/foot.svg"
  13413. }
  13414. },
  13415. maw: {
  13416. height: math.unit(2.67, "feet"),
  13417. name: "Maw",
  13418. image: {
  13419. source: "./media/characters/nightraver/maw.svg"
  13420. }
  13421. },
  13422. },
  13423. [
  13424. {
  13425. name: "Micro",
  13426. height: math.unit(1, "cm")
  13427. },
  13428. {
  13429. name: "Normal",
  13430. height: math.unit(15, "feet"),
  13431. default: true
  13432. },
  13433. {
  13434. name: "Macro",
  13435. height: math.unit(300, "feet")
  13436. },
  13437. {
  13438. name: "Megamacro",
  13439. height: math.unit(300, "miles")
  13440. },
  13441. {
  13442. name: "Gigamacro",
  13443. height: math.unit(10000, "miles")
  13444. },
  13445. ]
  13446. ))
  13447. characterMakers.push(() => makeCharacter(
  13448. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13449. {
  13450. side: {
  13451. height: math.unit(2, "inches"),
  13452. weight: math.unit(5, "grams"),
  13453. name: "Side",
  13454. image: {
  13455. source: "./media/characters/arc/side.svg"
  13456. }
  13457. },
  13458. },
  13459. [
  13460. {
  13461. name: "Micro",
  13462. height: math.unit(2, "inches"),
  13463. default: true
  13464. },
  13465. ]
  13466. ))
  13467. characterMakers.push(() => makeCharacter(
  13468. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13469. {
  13470. front: {
  13471. height: math.unit(1.1938, "meters"),
  13472. weight: math.unit(54, "kg"),
  13473. name: "Front",
  13474. image: {
  13475. source: "./media/characters/nebula-shahar/front.svg",
  13476. extra: 1642 / 1436,
  13477. bottom: 0.06
  13478. }
  13479. },
  13480. },
  13481. [
  13482. {
  13483. name: "Megamicro",
  13484. height: math.unit(0.3, "mm")
  13485. },
  13486. {
  13487. name: "Micro",
  13488. height: math.unit(3, "cm")
  13489. },
  13490. {
  13491. name: "Normal",
  13492. height: math.unit(138, "cm"),
  13493. default: true
  13494. },
  13495. {
  13496. name: "Macro",
  13497. height: math.unit(30, "m")
  13498. },
  13499. ]
  13500. ))
  13501. characterMakers.push(() => makeCharacter(
  13502. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13503. {
  13504. front: {
  13505. height: math.unit(5.24, "feet"),
  13506. weight: math.unit(150, "lb"),
  13507. name: "Front",
  13508. image: {
  13509. source: "./media/characters/shayla/front.svg",
  13510. extra: 1512 / 1414,
  13511. bottom: 0.01
  13512. }
  13513. },
  13514. back: {
  13515. height: math.unit(5.24, "feet"),
  13516. weight: math.unit(150, "lb"),
  13517. name: "Back",
  13518. image: {
  13519. source: "./media/characters/shayla/back.svg",
  13520. extra: 1512 / 1414
  13521. }
  13522. },
  13523. hand: {
  13524. height: math.unit(0.7781496062992126, "feet"),
  13525. name: "Hand",
  13526. image: {
  13527. source: "./media/characters/shayla/hand.svg"
  13528. }
  13529. },
  13530. foot: {
  13531. height: math.unit(1.4206036745406823, "feet"),
  13532. name: "Foot",
  13533. image: {
  13534. source: "./media/characters/shayla/foot.svg"
  13535. }
  13536. },
  13537. },
  13538. [
  13539. {
  13540. name: "Micro",
  13541. height: math.unit(0.32, "feet")
  13542. },
  13543. {
  13544. name: "Normal",
  13545. height: math.unit(5.24, "feet"),
  13546. default: true
  13547. },
  13548. {
  13549. name: "Macro",
  13550. height: math.unit(492.12, "feet")
  13551. },
  13552. {
  13553. name: "Megamacro",
  13554. height: math.unit(186.41, "miles")
  13555. },
  13556. ]
  13557. ))
  13558. characterMakers.push(() => makeCharacter(
  13559. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13560. {
  13561. front: {
  13562. height: math.unit(2.2, "m"),
  13563. weight: math.unit(120, "kg"),
  13564. name: "Front",
  13565. image: {
  13566. source: "./media/characters/pia-jr/front.svg",
  13567. extra: 1000 / 970,
  13568. bottom: 0.035
  13569. }
  13570. },
  13571. hand: {
  13572. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13573. name: "Hand",
  13574. image: {
  13575. source: "./media/characters/pia-jr/hand.svg"
  13576. }
  13577. },
  13578. paw: {
  13579. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13580. name: "Paw",
  13581. image: {
  13582. source: "./media/characters/pia-jr/paw.svg"
  13583. }
  13584. },
  13585. },
  13586. [
  13587. {
  13588. name: "Micro",
  13589. height: math.unit(1.2, "cm")
  13590. },
  13591. {
  13592. name: "Normal",
  13593. height: math.unit(2.2, "m"),
  13594. default: true
  13595. },
  13596. {
  13597. name: "Macro",
  13598. height: math.unit(180, "m")
  13599. },
  13600. {
  13601. name: "Megamacro",
  13602. height: math.unit(420, "km")
  13603. },
  13604. ]
  13605. ))
  13606. characterMakers.push(() => makeCharacter(
  13607. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13608. {
  13609. front: {
  13610. height: math.unit(2, "m"),
  13611. weight: math.unit(115, "kg"),
  13612. name: "Front",
  13613. image: {
  13614. source: "./media/characters/pia-sr/front.svg",
  13615. extra: 760 / 730,
  13616. bottom: 0.015
  13617. }
  13618. },
  13619. back: {
  13620. height: math.unit(2, "m"),
  13621. weight: math.unit(115, "kg"),
  13622. name: "Back",
  13623. image: {
  13624. source: "./media/characters/pia-sr/back.svg",
  13625. extra: 760 / 730,
  13626. bottom: 0.01
  13627. }
  13628. },
  13629. hand: {
  13630. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13631. name: "Hand",
  13632. image: {
  13633. source: "./media/characters/pia-sr/hand.svg"
  13634. }
  13635. },
  13636. foot: {
  13637. height: math.unit(1.83, "feet"),
  13638. name: "Foot",
  13639. image: {
  13640. source: "./media/characters/pia-sr/foot.svg"
  13641. }
  13642. },
  13643. },
  13644. [
  13645. {
  13646. name: "Micro",
  13647. height: math.unit(88, "mm")
  13648. },
  13649. {
  13650. name: "Normal",
  13651. height: math.unit(2, "m"),
  13652. default: true
  13653. },
  13654. {
  13655. name: "Macro",
  13656. height: math.unit(200, "m")
  13657. },
  13658. {
  13659. name: "Megamacro",
  13660. height: math.unit(420, "km")
  13661. },
  13662. ]
  13663. ))
  13664. characterMakers.push(() => makeCharacter(
  13665. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13666. {
  13667. front: {
  13668. height: math.unit(8 + 2 / 12, "feet"),
  13669. weight: math.unit(300, "lb"),
  13670. name: "Front",
  13671. image: {
  13672. source: "./media/characters/kibibyte/front.svg",
  13673. extra: 2221 / 2098,
  13674. bottom: 0.04
  13675. }
  13676. },
  13677. },
  13678. [
  13679. {
  13680. name: "Normal",
  13681. height: math.unit(8 + 2 / 12, "feet"),
  13682. default: true
  13683. },
  13684. {
  13685. name: "Socialable Macro",
  13686. height: math.unit(50, "feet")
  13687. },
  13688. {
  13689. name: "Macro",
  13690. height: math.unit(300, "feet")
  13691. },
  13692. {
  13693. name: "Megamacro",
  13694. height: math.unit(500, "miles")
  13695. },
  13696. ]
  13697. ))
  13698. characterMakers.push(() => makeCharacter(
  13699. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13700. {
  13701. front: {
  13702. height: math.unit(6, "feet"),
  13703. weight: math.unit(150, "lb"),
  13704. name: "Front",
  13705. image: {
  13706. source: "./media/characters/felix/front.svg",
  13707. extra: 762 / 722,
  13708. bottom: 0.02
  13709. }
  13710. },
  13711. frontClothed: {
  13712. height: math.unit(6, "feet"),
  13713. weight: math.unit(150, "lb"),
  13714. name: "Front (Clothed)",
  13715. image: {
  13716. source: "./media/characters/felix/front-clothed.svg",
  13717. extra: 762 / 722,
  13718. bottom: 0.02
  13719. }
  13720. },
  13721. },
  13722. [
  13723. {
  13724. name: "Normal",
  13725. height: math.unit(6 + 8 / 12, "feet"),
  13726. default: true
  13727. },
  13728. {
  13729. name: "Macro",
  13730. height: math.unit(2600, "feet")
  13731. },
  13732. {
  13733. name: "Megamacro",
  13734. height: math.unit(450, "miles")
  13735. },
  13736. ]
  13737. ))
  13738. characterMakers.push(() => makeCharacter(
  13739. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13740. {
  13741. front: {
  13742. height: math.unit(6 + 1 / 12, "feet"),
  13743. weight: math.unit(250, "lb"),
  13744. name: "Front",
  13745. image: {
  13746. source: "./media/characters/tobo/front.svg",
  13747. extra: 608 / 586,
  13748. bottom: 0.023
  13749. }
  13750. },
  13751. back: {
  13752. height: math.unit(6 + 1 / 12, "feet"),
  13753. weight: math.unit(250, "lb"),
  13754. name: "Back",
  13755. image: {
  13756. source: "./media/characters/tobo/back.svg",
  13757. extra: 608 / 586
  13758. }
  13759. },
  13760. },
  13761. [
  13762. {
  13763. name: "Nano",
  13764. height: math.unit(2, "nm")
  13765. },
  13766. {
  13767. name: "Megamicro",
  13768. height: math.unit(0.1, "mm")
  13769. },
  13770. {
  13771. name: "Micro",
  13772. height: math.unit(1, "inch"),
  13773. default: true
  13774. },
  13775. {
  13776. name: "Human-sized",
  13777. height: math.unit(6 + 1 / 12, "feet")
  13778. },
  13779. {
  13780. name: "Macro",
  13781. height: math.unit(250, "feet")
  13782. },
  13783. {
  13784. name: "Megamacro",
  13785. height: math.unit(75, "miles")
  13786. },
  13787. {
  13788. name: "Texas-sized",
  13789. height: math.unit(750, "miles")
  13790. },
  13791. {
  13792. name: "Teramacro",
  13793. height: math.unit(50000, "miles")
  13794. },
  13795. ]
  13796. ))
  13797. characterMakers.push(() => makeCharacter(
  13798. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13799. {
  13800. front: {
  13801. height: math.unit(6, "feet"),
  13802. weight: math.unit(269, "lb"),
  13803. name: "Front",
  13804. image: {
  13805. source: "./media/characters/danny-kapowsky/front.svg",
  13806. extra: 766 / 736,
  13807. bottom: 0.044
  13808. }
  13809. },
  13810. back: {
  13811. height: math.unit(6, "feet"),
  13812. weight: math.unit(269, "lb"),
  13813. name: "Back",
  13814. image: {
  13815. source: "./media/characters/danny-kapowsky/back.svg",
  13816. extra: 797 / 760,
  13817. bottom: 0.025
  13818. }
  13819. },
  13820. },
  13821. [
  13822. {
  13823. name: "Macro",
  13824. height: math.unit(150, "feet"),
  13825. default: true
  13826. },
  13827. {
  13828. name: "Macro+",
  13829. height: math.unit(200, "feet")
  13830. },
  13831. {
  13832. name: "Macro++",
  13833. height: math.unit(300, "feet")
  13834. },
  13835. {
  13836. name: "Macro+++",
  13837. height: math.unit(400, "feet")
  13838. },
  13839. ]
  13840. ))
  13841. characterMakers.push(() => makeCharacter(
  13842. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13843. {
  13844. side: {
  13845. height: math.unit(6, "feet"),
  13846. weight: math.unit(170, "lb"),
  13847. name: "Side",
  13848. image: {
  13849. source: "./media/characters/finn/side.svg",
  13850. extra: 1953 / 1807,
  13851. bottom: 0.057
  13852. }
  13853. },
  13854. },
  13855. [
  13856. {
  13857. name: "Megamacro",
  13858. height: math.unit(14445, "feet"),
  13859. default: true
  13860. },
  13861. ]
  13862. ))
  13863. characterMakers.push(() => makeCharacter(
  13864. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13865. {
  13866. front: {
  13867. height: math.unit(5 + 6 / 12, "feet"),
  13868. weight: math.unit(125, "lb"),
  13869. name: "Front",
  13870. image: {
  13871. source: "./media/characters/roy/front.svg",
  13872. extra: 1,
  13873. bottom: 0.11
  13874. }
  13875. },
  13876. },
  13877. [
  13878. {
  13879. name: "Micro",
  13880. height: math.unit(3, "inches"),
  13881. default: true
  13882. },
  13883. {
  13884. name: "Normal",
  13885. height: math.unit(5 + 6 / 12, "feet")
  13886. },
  13887. {
  13888. name: "Lesser Macro",
  13889. height: math.unit(60, "feet")
  13890. },
  13891. {
  13892. name: "Greater Macro",
  13893. height: math.unit(120, "feet")
  13894. },
  13895. ]
  13896. ))
  13897. characterMakers.push(() => makeCharacter(
  13898. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  13899. {
  13900. front: {
  13901. height: math.unit(6, "feet"),
  13902. weight: math.unit(100, "lb"),
  13903. name: "Front",
  13904. image: {
  13905. source: "./media/characters/aevsivs/front.svg",
  13906. extra: 1,
  13907. bottom: 0.03
  13908. }
  13909. },
  13910. back: {
  13911. height: math.unit(6, "feet"),
  13912. weight: math.unit(100, "lb"),
  13913. name: "Back",
  13914. image: {
  13915. source: "./media/characters/aevsivs/back.svg"
  13916. }
  13917. },
  13918. },
  13919. [
  13920. {
  13921. name: "Micro",
  13922. height: math.unit(2, "inches"),
  13923. default: true
  13924. },
  13925. {
  13926. name: "Normal",
  13927. height: math.unit(5, "feet")
  13928. },
  13929. ]
  13930. ))
  13931. characterMakers.push(() => makeCharacter(
  13932. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  13933. {
  13934. front: {
  13935. height: math.unit(5 + 7 / 12, "feet"),
  13936. weight: math.unit(159, "lb"),
  13937. name: "Front",
  13938. image: {
  13939. source: "./media/characters/hildegard/front.svg",
  13940. extra: 289 / 269,
  13941. bottom: 7.63/297.8
  13942. }
  13943. },
  13944. back: {
  13945. height: math.unit(5 + 7 / 12, "feet"),
  13946. weight: math.unit(159, "lb"),
  13947. name: "Back",
  13948. image: {
  13949. source: "./media/characters/hildegard/back.svg",
  13950. extra: 280/260,
  13951. bottom: 2.3/282
  13952. }
  13953. },
  13954. },
  13955. [
  13956. {
  13957. name: "Normal",
  13958. height: math.unit(5 + 7 / 12, "feet"),
  13959. default: true
  13960. },
  13961. ]
  13962. ))
  13963. characterMakers.push(() => makeCharacter(
  13964. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  13965. {
  13966. bernard: {
  13967. height: math.unit(2 + 7 / 12, "feet"),
  13968. weight: math.unit(66, "lb"),
  13969. name: "Bernard",
  13970. rename: true,
  13971. image: {
  13972. source: "./media/characters/bernard-wilder/bernard.svg",
  13973. extra: 192 / 128,
  13974. bottom: 0.05
  13975. }
  13976. },
  13977. wilder: {
  13978. height: math.unit(5 + 8 / 12, "feet"),
  13979. weight: math.unit(143, "lb"),
  13980. name: "Wilder",
  13981. rename: true,
  13982. image: {
  13983. source: "./media/characters/bernard-wilder/wilder.svg",
  13984. extra: 361 / 312,
  13985. bottom: 0.02
  13986. }
  13987. },
  13988. },
  13989. [
  13990. {
  13991. name: "Normal",
  13992. height: math.unit(2 + 7 / 12, "feet"),
  13993. default: true
  13994. },
  13995. ]
  13996. ))
  13997. characterMakers.push(() => makeCharacter(
  13998. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  13999. {
  14000. anthro: {
  14001. height: math.unit(6 + 1 / 12, "feet"),
  14002. weight: math.unit(155, "lb"),
  14003. name: "Anthro",
  14004. image: {
  14005. source: "./media/characters/hearth/anthro.svg",
  14006. extra: 260 / 250,
  14007. bottom: 0.02
  14008. }
  14009. },
  14010. feral: {
  14011. height: math.unit(3.78, "feet"),
  14012. weight: math.unit(35, "kg"),
  14013. name: "Feral",
  14014. image: {
  14015. source: "./media/characters/hearth/feral.svg",
  14016. extra: 153 / 135,
  14017. bottom: 0.03
  14018. }
  14019. },
  14020. },
  14021. [
  14022. {
  14023. name: "Normal",
  14024. height: math.unit(6 + 1 / 12, "feet"),
  14025. default: true
  14026. },
  14027. ]
  14028. ))
  14029. characterMakers.push(() => makeCharacter(
  14030. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14031. {
  14032. front: {
  14033. height: math.unit(6, "feet"),
  14034. weight: math.unit(182, "lb"),
  14035. name: "Front",
  14036. image: {
  14037. source: "./media/characters/ingrid/front.svg",
  14038. extra: 294 / 268,
  14039. bottom: 0.027
  14040. }
  14041. },
  14042. },
  14043. [
  14044. {
  14045. name: "Normal",
  14046. height: math.unit(6, "feet"),
  14047. default: true
  14048. },
  14049. ]
  14050. ))
  14051. characterMakers.push(() => makeCharacter(
  14052. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14053. {
  14054. eevee: {
  14055. height: math.unit(2 + 10 / 12, "feet"),
  14056. weight: math.unit(86, "lb"),
  14057. name: "Malgam",
  14058. image: {
  14059. source: "./media/characters/malgam/eevee.svg",
  14060. extra: 218 / 180,
  14061. bottom: 0.2
  14062. }
  14063. },
  14064. sylveon: {
  14065. height: math.unit(4, "feet"),
  14066. weight: math.unit(101, "lb"),
  14067. name: "Future Malgam",
  14068. rename: true,
  14069. image: {
  14070. source: "./media/characters/malgam/sylveon.svg",
  14071. extra: 371 / 325,
  14072. bottom: 0.015
  14073. }
  14074. },
  14075. gigantamax: {
  14076. height: math.unit(50, "feet"),
  14077. name: "Gigantamax Malgam",
  14078. rename: true,
  14079. image: {
  14080. source: "./media/characters/malgam/gigantamax.svg"
  14081. }
  14082. },
  14083. },
  14084. [
  14085. {
  14086. name: "Normal",
  14087. height: math.unit(2 + 10 / 12, "feet"),
  14088. default: true
  14089. },
  14090. ]
  14091. ))
  14092. characterMakers.push(() => makeCharacter(
  14093. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14094. {
  14095. front: {
  14096. height: math.unit(5 + 11 / 12, "feet"),
  14097. weight: math.unit(188, "lb"),
  14098. name: "Front",
  14099. image: {
  14100. source: "./media/characters/fleur/front.svg",
  14101. extra: 309 / 283,
  14102. bottom: 0.007
  14103. }
  14104. },
  14105. },
  14106. [
  14107. {
  14108. name: "Normal",
  14109. height: math.unit(5 + 11 / 12, "feet"),
  14110. default: true
  14111. },
  14112. ]
  14113. ))
  14114. characterMakers.push(() => makeCharacter(
  14115. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14116. {
  14117. front: {
  14118. height: math.unit(5 + 4 / 12, "feet"),
  14119. weight: math.unit(122, "lb"),
  14120. name: "Front",
  14121. image: {
  14122. source: "./media/characters/jude/front.svg",
  14123. extra: 288 / 273,
  14124. bottom: 0.03
  14125. }
  14126. },
  14127. },
  14128. [
  14129. {
  14130. name: "Normal",
  14131. height: math.unit(5 + 4 / 12, "feet"),
  14132. default: true
  14133. },
  14134. ]
  14135. ))
  14136. characterMakers.push(() => makeCharacter(
  14137. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14138. {
  14139. front: {
  14140. height: math.unit(5 + 11 / 12, "feet"),
  14141. weight: math.unit(190, "lb"),
  14142. name: "Front",
  14143. image: {
  14144. source: "./media/characters/seara/front.svg",
  14145. extra: 1,
  14146. bottom: 0.05
  14147. }
  14148. },
  14149. },
  14150. [
  14151. {
  14152. name: "Normal",
  14153. height: math.unit(5 + 11 / 12, "feet"),
  14154. default: true
  14155. },
  14156. ]
  14157. ))
  14158. characterMakers.push(() => makeCharacter(
  14159. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14160. {
  14161. front: {
  14162. height: math.unit(16 + 5 / 12, "feet"),
  14163. weight: math.unit(524, "lb"),
  14164. name: "Front",
  14165. image: {
  14166. source: "./media/characters/caspian/front.svg",
  14167. extra: 1,
  14168. bottom: 0.04
  14169. }
  14170. },
  14171. },
  14172. [
  14173. {
  14174. name: "Normal",
  14175. height: math.unit(16 + 5 / 12, "feet"),
  14176. default: true
  14177. },
  14178. ]
  14179. ))
  14180. characterMakers.push(() => makeCharacter(
  14181. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14182. {
  14183. front: {
  14184. height: math.unit(5 + 7 / 12, "feet"),
  14185. weight: math.unit(170, "lb"),
  14186. name: "Front",
  14187. image: {
  14188. source: "./media/characters/mika/front.svg",
  14189. extra: 1,
  14190. bottom: 0.016
  14191. }
  14192. },
  14193. },
  14194. [
  14195. {
  14196. name: "Normal",
  14197. height: math.unit(5 + 7 / 12, "feet"),
  14198. default: true
  14199. },
  14200. ]
  14201. ))
  14202. characterMakers.push(() => makeCharacter(
  14203. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14204. {
  14205. front: {
  14206. height: math.unit(6 + 2 / 12, "feet"),
  14207. weight: math.unit(268, "lb"),
  14208. name: "Front",
  14209. image: {
  14210. source: "./media/characters/sol/front.svg",
  14211. extra: 247 / 231,
  14212. bottom: 0.05
  14213. }
  14214. },
  14215. },
  14216. [
  14217. {
  14218. name: "Normal",
  14219. height: math.unit(6 + 2 / 12, "feet"),
  14220. default: true
  14221. },
  14222. ]
  14223. ))
  14224. characterMakers.push(() => makeCharacter(
  14225. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14226. {
  14227. buizel: {
  14228. height: math.unit(2 + 5 / 12, "feet"),
  14229. weight: math.unit(87, "lb"),
  14230. name: "Buizel",
  14231. image: {
  14232. source: "./media/characters/umiko/buizel.svg",
  14233. extra: 172 / 157,
  14234. bottom: 0.01
  14235. }
  14236. },
  14237. floatzel: {
  14238. height: math.unit(5 + 9 / 12, "feet"),
  14239. weight: math.unit(250, "lb"),
  14240. name: "Floatzel",
  14241. image: {
  14242. source: "./media/characters/umiko/floatzel.svg",
  14243. extra: 262 / 248
  14244. }
  14245. },
  14246. },
  14247. [
  14248. {
  14249. name: "Normal",
  14250. height: math.unit(2 + 5 / 12, "feet"),
  14251. default: true
  14252. },
  14253. ]
  14254. ))
  14255. characterMakers.push(() => makeCharacter(
  14256. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14257. {
  14258. front: {
  14259. height: math.unit(6 + 2 / 12, "feet"),
  14260. weight: math.unit(146, "lb"),
  14261. name: "Front",
  14262. image: {
  14263. source: "./media/characters/iliac/front.svg",
  14264. extra: 389 / 365,
  14265. bottom: 0.035
  14266. }
  14267. },
  14268. },
  14269. [
  14270. {
  14271. name: "Normal",
  14272. height: math.unit(6 + 2 / 12, "feet"),
  14273. default: true
  14274. },
  14275. ]
  14276. ))
  14277. characterMakers.push(() => makeCharacter(
  14278. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14279. {
  14280. front: {
  14281. height: math.unit(6, "feet"),
  14282. weight: math.unit(170, "lb"),
  14283. name: "Front",
  14284. image: {
  14285. source: "./media/characters/topaz/front.svg",
  14286. extra: 317 / 303,
  14287. bottom: 0.055
  14288. }
  14289. },
  14290. },
  14291. [
  14292. {
  14293. name: "Normal",
  14294. height: math.unit(6, "feet"),
  14295. default: true
  14296. },
  14297. ]
  14298. ))
  14299. characterMakers.push(() => makeCharacter(
  14300. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14301. {
  14302. front: {
  14303. height: math.unit(5 + 11 / 12, "feet"),
  14304. weight: math.unit(144, "lb"),
  14305. name: "Front",
  14306. image: {
  14307. source: "./media/characters/gabriel/front.svg",
  14308. extra: 285 / 262,
  14309. bottom: 0.004
  14310. }
  14311. },
  14312. },
  14313. [
  14314. {
  14315. name: "Normal",
  14316. height: math.unit(5 + 11 / 12, "feet"),
  14317. default: true
  14318. },
  14319. ]
  14320. ))
  14321. characterMakers.push(() => makeCharacter(
  14322. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14323. {
  14324. side: {
  14325. height: math.unit(6 + 5 / 12, "feet"),
  14326. weight: math.unit(300, "lb"),
  14327. name: "Side",
  14328. image: {
  14329. source: "./media/characters/tempest-suicune/side.svg",
  14330. extra: 195 / 154,
  14331. bottom: 0.04
  14332. }
  14333. },
  14334. },
  14335. [
  14336. {
  14337. name: "Normal",
  14338. height: math.unit(6 + 5 / 12, "feet"),
  14339. default: true
  14340. },
  14341. ]
  14342. ))
  14343. characterMakers.push(() => makeCharacter(
  14344. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14345. {
  14346. front: {
  14347. height: math.unit(7 + 2 / 12, "feet"),
  14348. weight: math.unit(322, "lb"),
  14349. name: "Front",
  14350. image: {
  14351. source: "./media/characters/vulcan/front.svg",
  14352. extra: 154 / 147,
  14353. bottom: 0.04
  14354. }
  14355. },
  14356. },
  14357. [
  14358. {
  14359. name: "Normal",
  14360. height: math.unit(7 + 2 / 12, "feet"),
  14361. default: true
  14362. },
  14363. ]
  14364. ))
  14365. characterMakers.push(() => makeCharacter(
  14366. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14367. {
  14368. front: {
  14369. height: math.unit(5 + 10 / 12, "feet"),
  14370. weight: math.unit(264, "lb"),
  14371. name: "Front",
  14372. image: {
  14373. source: "./media/characters/gault/front.svg",
  14374. extra: 161 / 140,
  14375. bottom: 0.028
  14376. }
  14377. },
  14378. },
  14379. [
  14380. {
  14381. name: "Normal",
  14382. height: math.unit(5 + 10 / 12, "feet"),
  14383. default: true
  14384. },
  14385. ]
  14386. ))
  14387. characterMakers.push(() => makeCharacter(
  14388. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14389. {
  14390. front: {
  14391. height: math.unit(6, "feet"),
  14392. weight: math.unit(150, "lb"),
  14393. name: "Front",
  14394. image: {
  14395. source: "./media/characters/shard/front.svg",
  14396. extra: 273 / 238,
  14397. bottom: 0.02
  14398. }
  14399. },
  14400. },
  14401. [
  14402. {
  14403. name: "Normal",
  14404. height: math.unit(3 + 6 / 12, "feet"),
  14405. default: true
  14406. },
  14407. ]
  14408. ))
  14409. characterMakers.push(() => makeCharacter(
  14410. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14411. {
  14412. front: {
  14413. height: math.unit(5 + 11 / 12, "feet"),
  14414. weight: math.unit(146, "lb"),
  14415. name: "Front",
  14416. image: {
  14417. source: "./media/characters/ashe/front.svg",
  14418. extra: 400 / 373,
  14419. bottom: 0.01
  14420. }
  14421. },
  14422. },
  14423. [
  14424. {
  14425. name: "Normal",
  14426. height: math.unit(5 + 11 / 12, "feet"),
  14427. default: true
  14428. },
  14429. ]
  14430. ))
  14431. characterMakers.push(() => makeCharacter(
  14432. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14433. {
  14434. front: {
  14435. height: math.unit(5 + 5 / 12, "feet"),
  14436. weight: math.unit(135, "lb"),
  14437. name: "Front",
  14438. image: {
  14439. source: "./media/characters/beatrix/front.svg",
  14440. extra: 392 / 379,
  14441. bottom: 0.01
  14442. }
  14443. },
  14444. },
  14445. [
  14446. {
  14447. name: "Normal",
  14448. height: math.unit(6, "feet"),
  14449. default: true
  14450. },
  14451. ]
  14452. ))
  14453. characterMakers.push(() => makeCharacter(
  14454. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14455. {
  14456. front: {
  14457. height: math.unit(6, "feet"),
  14458. weight: math.unit(150, "lb"),
  14459. name: "Front",
  14460. image: {
  14461. source: "./media/characters/ignatius/front.svg",
  14462. extra: 245 / 222,
  14463. bottom: 0.01
  14464. }
  14465. },
  14466. },
  14467. [
  14468. {
  14469. name: "Normal",
  14470. height: math.unit(5 + 5 / 12, "feet"),
  14471. default: true
  14472. },
  14473. ]
  14474. ))
  14475. characterMakers.push(() => makeCharacter(
  14476. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14477. {
  14478. front: {
  14479. height: math.unit(6 + 2 / 12, "feet"),
  14480. weight: math.unit(138, "lb"),
  14481. name: "Front",
  14482. image: {
  14483. source: "./media/characters/mei-li/front.svg",
  14484. extra: 237 / 229,
  14485. bottom: 0.03
  14486. }
  14487. },
  14488. },
  14489. [
  14490. {
  14491. name: "Normal",
  14492. height: math.unit(6 + 2 / 12, "feet"),
  14493. default: true
  14494. },
  14495. ]
  14496. ))
  14497. characterMakers.push(() => makeCharacter(
  14498. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14499. {
  14500. front: {
  14501. height: math.unit(2 + 4 / 12, "feet"),
  14502. weight: math.unit(62, "lb"),
  14503. name: "Front",
  14504. image: {
  14505. source: "./media/characters/puru/front.svg",
  14506. extra: 206 / 149,
  14507. bottom: 0.06
  14508. }
  14509. },
  14510. },
  14511. [
  14512. {
  14513. name: "Normal",
  14514. height: math.unit(2 + 4 / 12, "feet"),
  14515. default: true
  14516. },
  14517. ]
  14518. ))
  14519. characterMakers.push(() => makeCharacter(
  14520. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14521. {
  14522. taur: {
  14523. height: math.unit(11, "feet"),
  14524. weight: math.unit(500, "lb"),
  14525. name: "Taur",
  14526. image: {
  14527. source: "./media/characters/kee/taur.svg",
  14528. extra: 1,
  14529. bottom: 0.04
  14530. }
  14531. },
  14532. },
  14533. [
  14534. {
  14535. name: "Normal",
  14536. height: math.unit(11, "feet"),
  14537. default: true
  14538. },
  14539. ]
  14540. ))
  14541. characterMakers.push(() => makeCharacter(
  14542. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14543. {
  14544. anthro: {
  14545. height: math.unit(7, "feet"),
  14546. weight: math.unit(190, "lb"),
  14547. name: "Anthro",
  14548. image: {
  14549. source: "./media/characters/cobalt-dracha/anthro.svg",
  14550. extra: 231 / 225,
  14551. bottom: 0.04
  14552. }
  14553. },
  14554. feral: {
  14555. height: math.unit(9 + 7 / 12, "feet"),
  14556. weight: math.unit(294, "lb"),
  14557. name: "Feral",
  14558. image: {
  14559. source: "./media/characters/cobalt-dracha/feral.svg",
  14560. extra: 692 / 633,
  14561. bottom: 0.05
  14562. }
  14563. },
  14564. },
  14565. [
  14566. {
  14567. name: "Normal",
  14568. height: math.unit(7, "feet"),
  14569. default: true
  14570. },
  14571. ]
  14572. ))
  14573. characterMakers.push(() => makeCharacter(
  14574. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14575. {
  14576. fallen: {
  14577. height: math.unit(11 + 8 / 12, "feet"),
  14578. weight: math.unit(485, "lb"),
  14579. name: "Java (Fallen)",
  14580. rename: true,
  14581. image: {
  14582. source: "./media/characters/java/fallen.svg",
  14583. extra: 226 / 208,
  14584. bottom: 0.005
  14585. }
  14586. },
  14587. godkin: {
  14588. height: math.unit(10 + 6 / 12, "feet"),
  14589. weight: math.unit(328, "lb"),
  14590. name: "Java (Godkin)",
  14591. rename: true,
  14592. image: {
  14593. source: "./media/characters/java/godkin.svg",
  14594. extra: 270 / 262,
  14595. bottom: 0.02
  14596. }
  14597. },
  14598. },
  14599. [
  14600. {
  14601. name: "Normal",
  14602. height: math.unit(11 + 8 / 12, "feet"),
  14603. default: true
  14604. },
  14605. ]
  14606. ))
  14607. characterMakers.push(() => makeCharacter(
  14608. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14609. {
  14610. front: {
  14611. height: math.unit(7 + 8 / 12, "feet"),
  14612. weight: math.unit(320, "lb"),
  14613. name: "Front",
  14614. image: {
  14615. source: "./media/characters/skoll/front.svg",
  14616. extra: 232 / 220,
  14617. bottom: 0.02
  14618. }
  14619. },
  14620. },
  14621. [
  14622. {
  14623. name: "Normal",
  14624. height: math.unit(7 + 8 / 12, "feet"),
  14625. default: true
  14626. },
  14627. ]
  14628. ))
  14629. characterMakers.push(() => makeCharacter(
  14630. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14631. {
  14632. front: {
  14633. height: math.unit(5 + 9 / 12, "feet"),
  14634. weight: math.unit(170, "lb"),
  14635. name: "Front",
  14636. image: {
  14637. source: "./media/characters/purna/front.svg",
  14638. extra: 239 / 229,
  14639. bottom: 0.01
  14640. }
  14641. },
  14642. },
  14643. [
  14644. {
  14645. name: "Normal",
  14646. height: math.unit(5 + 9 / 12, "feet"),
  14647. default: true
  14648. },
  14649. ]
  14650. ))
  14651. characterMakers.push(() => makeCharacter(
  14652. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14653. {
  14654. front: {
  14655. height: math.unit(5 + 9 / 12, "feet"),
  14656. weight: math.unit(142, "lb"),
  14657. name: "Front",
  14658. image: {
  14659. source: "./media/characters/kuva/front.svg",
  14660. extra: 281 / 271,
  14661. bottom: 0.006
  14662. }
  14663. },
  14664. },
  14665. [
  14666. {
  14667. name: "Normal",
  14668. height: math.unit(5 + 9 / 12, "feet"),
  14669. default: true
  14670. },
  14671. ]
  14672. ))
  14673. characterMakers.push(() => makeCharacter(
  14674. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14675. {
  14676. anthro: {
  14677. height: math.unit(9 + 2 / 12, "feet"),
  14678. weight: math.unit(270, "lb"),
  14679. name: "Anthro",
  14680. image: {
  14681. source: "./media/characters/embra/anthro.svg",
  14682. extra: 200 / 187,
  14683. bottom: 0.02
  14684. }
  14685. },
  14686. feral: {
  14687. height: math.unit(18 + 8 / 12, "feet"),
  14688. weight: math.unit(576, "lb"),
  14689. name: "Feral",
  14690. image: {
  14691. source: "./media/characters/embra/feral.svg",
  14692. extra: 152 / 137,
  14693. bottom: 0.037
  14694. }
  14695. },
  14696. },
  14697. [
  14698. {
  14699. name: "Normal",
  14700. height: math.unit(9 + 2 / 12, "feet"),
  14701. default: true
  14702. },
  14703. ]
  14704. ))
  14705. characterMakers.push(() => makeCharacter(
  14706. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14707. {
  14708. anthro: {
  14709. height: math.unit(10 + 9 / 12, "feet"),
  14710. weight: math.unit(224, "lb"),
  14711. name: "Anthro",
  14712. image: {
  14713. source: "./media/characters/grottos/anthro.svg",
  14714. extra: 350 / 332,
  14715. bottom: 0.045
  14716. }
  14717. },
  14718. feral: {
  14719. height: math.unit(20 + 7 / 12, "feet"),
  14720. weight: math.unit(629, "lb"),
  14721. name: "Feral",
  14722. image: {
  14723. source: "./media/characters/grottos/feral.svg",
  14724. extra: 207 / 190,
  14725. bottom: 0.05
  14726. }
  14727. },
  14728. },
  14729. [
  14730. {
  14731. name: "Normal",
  14732. height: math.unit(10 + 9 / 12, "feet"),
  14733. default: true
  14734. },
  14735. ]
  14736. ))
  14737. characterMakers.push(() => makeCharacter(
  14738. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14739. {
  14740. anthro: {
  14741. height: math.unit(9 + 6 / 12, "feet"),
  14742. weight: math.unit(298, "lb"),
  14743. name: "Anthro",
  14744. image: {
  14745. source: "./media/characters/frifna/anthro.svg",
  14746. extra: 282 / 269,
  14747. bottom: 0.015
  14748. }
  14749. },
  14750. feral: {
  14751. height: math.unit(16 + 2 / 12, "feet"),
  14752. weight: math.unit(624, "lb"),
  14753. name: "Feral",
  14754. image: {
  14755. source: "./media/characters/frifna/feral.svg"
  14756. }
  14757. },
  14758. },
  14759. [
  14760. {
  14761. name: "Normal",
  14762. height: math.unit(9 + 6 / 12, "feet"),
  14763. default: true
  14764. },
  14765. ]
  14766. ))
  14767. characterMakers.push(() => makeCharacter(
  14768. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14769. {
  14770. front: {
  14771. height: math.unit(6 + 2 / 12, "feet"),
  14772. weight: math.unit(168, "lb"),
  14773. name: "Front",
  14774. image: {
  14775. source: "./media/characters/elise/front.svg",
  14776. extra: 276 / 271
  14777. }
  14778. },
  14779. },
  14780. [
  14781. {
  14782. name: "Normal",
  14783. height: math.unit(6 + 2 / 12, "feet"),
  14784. default: true
  14785. },
  14786. ]
  14787. ))
  14788. characterMakers.push(() => makeCharacter(
  14789. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14790. {
  14791. front: {
  14792. height: math.unit(5 + 10 / 12, "feet"),
  14793. weight: math.unit(210, "lb"),
  14794. name: "Front",
  14795. image: {
  14796. source: "./media/characters/glade/front.svg",
  14797. extra: 258 / 247,
  14798. bottom: 0.008
  14799. }
  14800. },
  14801. },
  14802. [
  14803. {
  14804. name: "Normal",
  14805. height: math.unit(5 + 10 / 12, "feet"),
  14806. default: true
  14807. },
  14808. ]
  14809. ))
  14810. characterMakers.push(() => makeCharacter(
  14811. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14812. {
  14813. front: {
  14814. height: math.unit(5 + 10 / 12, "feet"),
  14815. weight: math.unit(129, "lb"),
  14816. name: "Front",
  14817. image: {
  14818. source: "./media/characters/rina/front.svg",
  14819. extra: 266 / 255,
  14820. bottom: 0.005
  14821. }
  14822. },
  14823. },
  14824. [
  14825. {
  14826. name: "Normal",
  14827. height: math.unit(5 + 10 / 12, "feet"),
  14828. default: true
  14829. },
  14830. ]
  14831. ))
  14832. characterMakers.push(() => makeCharacter(
  14833. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14834. {
  14835. front: {
  14836. height: math.unit(6 + 1 / 12, "feet"),
  14837. weight: math.unit(192, "lb"),
  14838. name: "Front",
  14839. image: {
  14840. source: "./media/characters/veronica/front.svg",
  14841. extra: 319 / 309,
  14842. bottom: 0.005
  14843. }
  14844. },
  14845. },
  14846. [
  14847. {
  14848. name: "Normal",
  14849. height: math.unit(6 + 1 / 12, "feet"),
  14850. default: true
  14851. },
  14852. ]
  14853. ))
  14854. characterMakers.push(() => makeCharacter(
  14855. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14856. {
  14857. front: {
  14858. height: math.unit(9 + 3 / 12, "feet"),
  14859. weight: math.unit(1100, "lb"),
  14860. name: "Front",
  14861. image: {
  14862. source: "./media/characters/braxton/front.svg",
  14863. extra: 1057 / 984,
  14864. bottom: 0.05
  14865. }
  14866. },
  14867. },
  14868. [
  14869. {
  14870. name: "Normal",
  14871. height: math.unit(9 + 3 / 12, "feet")
  14872. },
  14873. {
  14874. name: "Giant",
  14875. height: math.unit(300, "feet"),
  14876. default: true
  14877. },
  14878. {
  14879. name: "Macro",
  14880. height: math.unit(700, "feet")
  14881. },
  14882. {
  14883. name: "Megamacro",
  14884. height: math.unit(6000, "feet")
  14885. },
  14886. ]
  14887. ))
  14888. characterMakers.push(() => makeCharacter(
  14889. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14890. {
  14891. front: {
  14892. height: math.unit(6 + 7 / 12, "feet"),
  14893. weight: math.unit(150, "lb"),
  14894. name: "Front",
  14895. image: {
  14896. source: "./media/characters/blue-feyonics/front.svg",
  14897. extra: 1403 / 1306,
  14898. bottom: 0.047
  14899. }
  14900. },
  14901. },
  14902. [
  14903. {
  14904. name: "Normal",
  14905. height: math.unit(6 + 7 / 12, "feet"),
  14906. default: true
  14907. },
  14908. ]
  14909. ))
  14910. characterMakers.push(() => makeCharacter(
  14911. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  14912. {
  14913. front: {
  14914. height: math.unit(1.8, "meters"),
  14915. weight: math.unit(60, "kg"),
  14916. name: "Front",
  14917. image: {
  14918. source: "./media/characters/maxwell/front.svg",
  14919. extra: 2060 / 1873
  14920. }
  14921. },
  14922. },
  14923. [
  14924. {
  14925. name: "Micro",
  14926. height: math.unit(1, "mm")
  14927. },
  14928. {
  14929. name: "Normal",
  14930. height: math.unit(1.8, "meter"),
  14931. default: true
  14932. },
  14933. {
  14934. name: "Macro",
  14935. height: math.unit(30, "meters")
  14936. },
  14937. {
  14938. name: "Megamacro",
  14939. height: math.unit(10, "km")
  14940. },
  14941. ]
  14942. ))
  14943. characterMakers.push(() => makeCharacter(
  14944. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  14945. {
  14946. front: {
  14947. height: math.unit(6, "feet"),
  14948. weight: math.unit(150, "lb"),
  14949. name: "Front",
  14950. image: {
  14951. source: "./media/characters/jack/front.svg",
  14952. extra: 1754 / 1640,
  14953. bottom: 0.01
  14954. }
  14955. },
  14956. },
  14957. [
  14958. {
  14959. name: "Normal",
  14960. height: math.unit(80000, "feet"),
  14961. default: true
  14962. },
  14963. {
  14964. name: "Max size",
  14965. height: math.unit(10, "lightyears")
  14966. },
  14967. ]
  14968. ))
  14969. characterMakers.push(() => makeCharacter(
  14970. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  14971. {
  14972. upright: {
  14973. height: math.unit(7, "feet"),
  14974. weight: math.unit(170, "lb"),
  14975. name: "Upright",
  14976. image: {
  14977. source: "./media/characters/cafat/upright.svg",
  14978. bottom: 0.01
  14979. }
  14980. },
  14981. uprightFull: {
  14982. height: math.unit(7, "feet"),
  14983. weight: math.unit(170, "lb"),
  14984. name: "Upright (Full)",
  14985. image: {
  14986. source: "./media/characters/cafat/upright-full.svg",
  14987. bottom: 0.01
  14988. }
  14989. },
  14990. side: {
  14991. height: math.unit(5, "feet"),
  14992. weight: math.unit(150, "lb"),
  14993. name: "Side",
  14994. image: {
  14995. source: "./media/characters/cafat/side.svg"
  14996. }
  14997. },
  14998. },
  14999. [
  15000. {
  15001. name: "Small",
  15002. height: math.unit(7, "feet"),
  15003. default: true
  15004. },
  15005. {
  15006. name: "Large",
  15007. height: math.unit(15.5, "feet")
  15008. },
  15009. ]
  15010. ))
  15011. characterMakers.push(() => makeCharacter(
  15012. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15013. {
  15014. front: {
  15015. height: math.unit(6, "feet"),
  15016. weight: math.unit(150, "lb"),
  15017. name: "Front",
  15018. image: {
  15019. source: "./media/characters/verin-raharra/front.svg",
  15020. extra: 5019 / 4835,
  15021. bottom: 0.023
  15022. }
  15023. },
  15024. },
  15025. [
  15026. {
  15027. name: "Normal",
  15028. height: math.unit(7 + 5 / 12, "feet"),
  15029. default: true
  15030. },
  15031. {
  15032. name: "Upsized",
  15033. height: math.unit(20, "feet")
  15034. },
  15035. ]
  15036. ))
  15037. characterMakers.push(() => makeCharacter(
  15038. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15039. {
  15040. front: {
  15041. height: math.unit(7, "feet"),
  15042. weight: math.unit(230, "lb"),
  15043. name: "Front",
  15044. image: {
  15045. source: "./media/characters/nakata/front.svg",
  15046. extra: 1.005,
  15047. bottom: 0.01
  15048. }
  15049. },
  15050. },
  15051. [
  15052. {
  15053. name: "Normal",
  15054. height: math.unit(7, "feet"),
  15055. default: true
  15056. },
  15057. {
  15058. name: "Big",
  15059. height: math.unit(14, "feet")
  15060. },
  15061. {
  15062. name: "Macro",
  15063. height: math.unit(400, "feet")
  15064. },
  15065. ]
  15066. ))
  15067. characterMakers.push(() => makeCharacter(
  15068. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15069. {
  15070. front: {
  15071. height: math.unit(4.91, "feet"),
  15072. weight: math.unit(100, "lb"),
  15073. name: "Front",
  15074. image: {
  15075. source: "./media/characters/lily/front.svg",
  15076. extra: 1585 / 1415,
  15077. bottom: 0.02
  15078. }
  15079. },
  15080. },
  15081. [
  15082. {
  15083. name: "Normal",
  15084. height: math.unit(4.91, "feet"),
  15085. default: true
  15086. },
  15087. ]
  15088. ))
  15089. characterMakers.push(() => makeCharacter(
  15090. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15091. {
  15092. laying: {
  15093. height: math.unit(4 + 4 / 12, "feet"),
  15094. weight: math.unit(600, "lb"),
  15095. name: "Laying",
  15096. image: {
  15097. source: "./media/characters/sheila/laying.svg",
  15098. extra: 1333 / 1265,
  15099. bottom: 0.16
  15100. }
  15101. },
  15102. },
  15103. [
  15104. {
  15105. name: "Normal",
  15106. height: math.unit(4 + 4 / 12, "feet"),
  15107. default: true
  15108. },
  15109. ]
  15110. ))
  15111. characterMakers.push(() => makeCharacter(
  15112. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15113. {
  15114. front: {
  15115. height: math.unit(6, "feet"),
  15116. weight: math.unit(190, "lb"),
  15117. name: "Front",
  15118. image: {
  15119. source: "./media/characters/sax/front.svg",
  15120. extra: 1187 / 973,
  15121. bottom: 0.042
  15122. }
  15123. },
  15124. },
  15125. [
  15126. {
  15127. name: "Micro",
  15128. height: math.unit(4, "inches"),
  15129. default: true
  15130. },
  15131. ]
  15132. ))
  15133. characterMakers.push(() => makeCharacter(
  15134. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15135. {
  15136. front: {
  15137. height: math.unit(6, "feet"),
  15138. weight: math.unit(150, "lb"),
  15139. name: "Front",
  15140. image: {
  15141. source: "./media/characters/pandora/front.svg",
  15142. extra: 2720 / 2556,
  15143. bottom: 0.015
  15144. }
  15145. },
  15146. back: {
  15147. height: math.unit(6, "feet"),
  15148. weight: math.unit(150, "lb"),
  15149. name: "Back",
  15150. image: {
  15151. source: "./media/characters/pandora/back.svg",
  15152. extra: 2720 / 2556,
  15153. bottom: 0.01
  15154. }
  15155. },
  15156. beans: {
  15157. height: math.unit(6 / 8, "feet"),
  15158. name: "Beans",
  15159. image: {
  15160. source: "./media/characters/pandora/beans.svg"
  15161. }
  15162. },
  15163. skirt: {
  15164. height: math.unit(6, "feet"),
  15165. weight: math.unit(150, "lb"),
  15166. name: "Skirt",
  15167. image: {
  15168. source: "./media/characters/pandora/skirt.svg",
  15169. extra: 1622 / 1525,
  15170. bottom: 0.015
  15171. }
  15172. },
  15173. hoodie: {
  15174. height: math.unit(6, "feet"),
  15175. weight: math.unit(150, "lb"),
  15176. name: "Hoodie",
  15177. image: {
  15178. source: "./media/characters/pandora/hoodie.svg",
  15179. extra: 1622 / 1525,
  15180. bottom: 0.015
  15181. }
  15182. },
  15183. casual: {
  15184. height: math.unit(6, "feet"),
  15185. weight: math.unit(150, "lb"),
  15186. name: "Casual",
  15187. image: {
  15188. source: "./media/characters/pandora/casual.svg",
  15189. extra: 1622 / 1525,
  15190. bottom: 0.015
  15191. }
  15192. },
  15193. },
  15194. [
  15195. {
  15196. name: "Normal",
  15197. height: math.unit(6, "feet")
  15198. },
  15199. {
  15200. name: "Big Steppy",
  15201. height: math.unit(1, "km"),
  15202. default: true
  15203. },
  15204. ]
  15205. ))
  15206. characterMakers.push(() => makeCharacter(
  15207. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15208. {
  15209. side: {
  15210. height: math.unit(10, "feet"),
  15211. weight: math.unit(800, "kg"),
  15212. name: "Side",
  15213. image: {
  15214. source: "./media/characters/venio-darcony/side.svg",
  15215. extra: 1373 / 1003,
  15216. bottom: 0.037
  15217. }
  15218. },
  15219. front: {
  15220. height: math.unit(19, "feet"),
  15221. weight: math.unit(800, "kg"),
  15222. name: "Front",
  15223. image: {
  15224. source: "./media/characters/venio-darcony/front.svg"
  15225. }
  15226. },
  15227. back: {
  15228. height: math.unit(19, "feet"),
  15229. weight: math.unit(800, "kg"),
  15230. name: "Back",
  15231. image: {
  15232. source: "./media/characters/venio-darcony/back.svg"
  15233. }
  15234. },
  15235. sideNsfw: {
  15236. height: math.unit(10, "feet"),
  15237. weight: math.unit(800, "kg"),
  15238. name: "Side (NSFW)",
  15239. image: {
  15240. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15241. extra: 1373 / 1003,
  15242. bottom: 0.037
  15243. }
  15244. },
  15245. frontNsfw: {
  15246. height: math.unit(19, "feet"),
  15247. weight: math.unit(800, "kg"),
  15248. name: "Front (NSFW)",
  15249. image: {
  15250. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15251. }
  15252. },
  15253. backNsfw: {
  15254. height: math.unit(19, "feet"),
  15255. weight: math.unit(800, "kg"),
  15256. name: "Back (NSFW)",
  15257. image: {
  15258. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15259. }
  15260. },
  15261. sideArmored: {
  15262. height: math.unit(10, "feet"),
  15263. weight: math.unit(800, "kg"),
  15264. name: "Side (Armored)",
  15265. image: {
  15266. source: "./media/characters/venio-darcony/side-armored.svg",
  15267. extra: 1373 / 1003,
  15268. bottom: 0.037
  15269. }
  15270. },
  15271. frontArmored: {
  15272. height: math.unit(19, "feet"),
  15273. weight: math.unit(900, "kg"),
  15274. name: "Front (Armored)",
  15275. image: {
  15276. source: "./media/characters/venio-darcony/front-armored.svg"
  15277. }
  15278. },
  15279. backArmored: {
  15280. height: math.unit(19, "feet"),
  15281. weight: math.unit(900, "kg"),
  15282. name: "Back (Armored)",
  15283. image: {
  15284. source: "./media/characters/venio-darcony/back-armored.svg"
  15285. }
  15286. },
  15287. sword: {
  15288. height: math.unit(10, "feet"),
  15289. weight: math.unit(50, "lb"),
  15290. name: "Sword",
  15291. image: {
  15292. source: "./media/characters/venio-darcony/sword.svg"
  15293. }
  15294. },
  15295. },
  15296. [
  15297. {
  15298. name: "Normal",
  15299. height: math.unit(10, "feet")
  15300. },
  15301. {
  15302. name: "Macro",
  15303. height: math.unit(130, "feet"),
  15304. default: true
  15305. },
  15306. {
  15307. name: "Macro+",
  15308. height: math.unit(240, "feet")
  15309. },
  15310. ]
  15311. ))
  15312. characterMakers.push(() => makeCharacter(
  15313. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15314. {
  15315. front: {
  15316. height: math.unit(6, "feet"),
  15317. weight: math.unit(150, "lb"),
  15318. name: "Front",
  15319. image: {
  15320. source: "./media/characters/veski/front.svg",
  15321. extra: 1299 / 1225,
  15322. bottom: 0.04
  15323. }
  15324. },
  15325. back: {
  15326. height: math.unit(6, "feet"),
  15327. weight: math.unit(150, "lb"),
  15328. name: "Back",
  15329. image: {
  15330. source: "./media/characters/veski/back.svg",
  15331. extra: 1299 / 1225,
  15332. bottom: 0.008
  15333. }
  15334. },
  15335. maw: {
  15336. height: math.unit(1.5 * 1.21, "feet"),
  15337. name: "Maw",
  15338. image: {
  15339. source: "./media/characters/veski/maw.svg"
  15340. }
  15341. },
  15342. },
  15343. [
  15344. {
  15345. name: "Macro",
  15346. height: math.unit(2, "km"),
  15347. default: true
  15348. },
  15349. ]
  15350. ))
  15351. characterMakers.push(() => makeCharacter(
  15352. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15353. {
  15354. front: {
  15355. height: math.unit(5 + 7 / 12, "feet"),
  15356. name: "Front",
  15357. image: {
  15358. source: "./media/characters/isabelle/front.svg",
  15359. extra: 2130 / 1976,
  15360. bottom: 0.05
  15361. }
  15362. },
  15363. },
  15364. [
  15365. {
  15366. name: "Supermicro",
  15367. height: math.unit(10, "micrometers")
  15368. },
  15369. {
  15370. name: "Micro",
  15371. height: math.unit(1, "inch")
  15372. },
  15373. {
  15374. name: "Tiny",
  15375. height: math.unit(5, "inches")
  15376. },
  15377. {
  15378. name: "Standard",
  15379. height: math.unit(5 + 7 / 12, "inches")
  15380. },
  15381. {
  15382. name: "Macro",
  15383. height: math.unit(80, "meters"),
  15384. default: true
  15385. },
  15386. {
  15387. name: "Megamacro",
  15388. height: math.unit(250, "meters")
  15389. },
  15390. {
  15391. name: "Gigamacro",
  15392. height: math.unit(5, "km")
  15393. },
  15394. {
  15395. name: "Cosmic",
  15396. height: math.unit(2.5e6, "miles")
  15397. },
  15398. ]
  15399. ))
  15400. characterMakers.push(() => makeCharacter(
  15401. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15402. {
  15403. front: {
  15404. height: math.unit(6, "feet"),
  15405. weight: math.unit(150, "lb"),
  15406. name: "Front",
  15407. image: {
  15408. source: "./media/characters/hanzo/front.svg",
  15409. extra: 374 / 344,
  15410. bottom: 0.02
  15411. }
  15412. },
  15413. },
  15414. [
  15415. {
  15416. name: "Normal",
  15417. height: math.unit(8, "feet"),
  15418. default: true
  15419. },
  15420. ]
  15421. ))
  15422. characterMakers.push(() => makeCharacter(
  15423. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15424. {
  15425. front: {
  15426. height: math.unit(7, "feet"),
  15427. weight: math.unit(130, "lb"),
  15428. name: "Front",
  15429. image: {
  15430. source: "./media/characters/anna/front.svg",
  15431. extra: 169 / 145,
  15432. bottom: 0.06
  15433. }
  15434. },
  15435. full: {
  15436. height: math.unit(4.96, "feet"),
  15437. weight: math.unit(220, "lb"),
  15438. name: "Full",
  15439. image: {
  15440. source: "./media/characters/anna/full.svg",
  15441. extra: 138 / 114,
  15442. bottom: 0.15
  15443. }
  15444. },
  15445. tongue: {
  15446. height: math.unit(2.53, "feet"),
  15447. name: "Tongue",
  15448. image: {
  15449. source: "./media/characters/anna/tongue.svg"
  15450. }
  15451. },
  15452. },
  15453. [
  15454. {
  15455. name: "Normal",
  15456. height: math.unit(7, "feet"),
  15457. default: true
  15458. },
  15459. ]
  15460. ))
  15461. characterMakers.push(() => makeCharacter(
  15462. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15463. {
  15464. front: {
  15465. height: math.unit(7, "feet"),
  15466. weight: math.unit(150, "lb"),
  15467. name: "Front",
  15468. image: {
  15469. source: "./media/characters/ian-corvid/front.svg",
  15470. extra: 150 / 142,
  15471. bottom: 0.02
  15472. }
  15473. },
  15474. back: {
  15475. height: math.unit(7, "feet"),
  15476. weight: math.unit(150, "lb"),
  15477. name: "Back",
  15478. image: {
  15479. source: "./media/characters/ian-corvid/back.svg",
  15480. extra: 150 / 143,
  15481. bottom: 0.01
  15482. }
  15483. },
  15484. stomping: {
  15485. height: math.unit(7, "feet"),
  15486. weight: math.unit(150, "lb"),
  15487. name: "Stomping",
  15488. image: {
  15489. source: "./media/characters/ian-corvid/stomping.svg",
  15490. extra: 76 / 72
  15491. }
  15492. },
  15493. sitting: {
  15494. height: math.unit(7 / 1.8, "feet"),
  15495. weight: math.unit(150, "lb"),
  15496. name: "Sitting",
  15497. image: {
  15498. source: "./media/characters/ian-corvid/sitting.svg",
  15499. extra: 1400 / 1269,
  15500. bottom: 0.15
  15501. }
  15502. },
  15503. },
  15504. [
  15505. {
  15506. name: "Tiny Microw",
  15507. height: math.unit(1, "inch")
  15508. },
  15509. {
  15510. name: "Microw",
  15511. height: math.unit(6, "inches")
  15512. },
  15513. {
  15514. name: "Crow",
  15515. height: math.unit(7 + 1 / 12, "feet"),
  15516. default: true
  15517. },
  15518. {
  15519. name: "Macrow",
  15520. height: math.unit(176, "feet")
  15521. },
  15522. ]
  15523. ))
  15524. characterMakers.push(() => makeCharacter(
  15525. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15526. {
  15527. front: {
  15528. height: math.unit(5 + 7 / 12, "feet"),
  15529. weight: math.unit(147, "lb"),
  15530. name: "Front",
  15531. image: {
  15532. source: "./media/characters/natalie-kellon/front.svg",
  15533. extra: 1214 / 1141,
  15534. bottom: 0.02
  15535. }
  15536. },
  15537. },
  15538. [
  15539. {
  15540. name: "Micro",
  15541. height: math.unit(1 / 16, "inch")
  15542. },
  15543. {
  15544. name: "Tiny",
  15545. height: math.unit(4, "inches")
  15546. },
  15547. {
  15548. name: "Normal",
  15549. height: math.unit(5 + 7 / 12, "feet"),
  15550. default: true
  15551. },
  15552. {
  15553. name: "Amazon",
  15554. height: math.unit(12, "feet")
  15555. },
  15556. {
  15557. name: "Giantess",
  15558. height: math.unit(160, "meters")
  15559. },
  15560. {
  15561. name: "Titaness",
  15562. height: math.unit(800, "meters")
  15563. },
  15564. ]
  15565. ))
  15566. characterMakers.push(() => makeCharacter(
  15567. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15568. {
  15569. front: {
  15570. height: math.unit(6, "feet"),
  15571. weight: math.unit(150, "lb"),
  15572. name: "Front",
  15573. image: {
  15574. source: "./media/characters/alluria/front.svg",
  15575. extra: 806 / 738,
  15576. bottom: 0.01
  15577. }
  15578. },
  15579. side: {
  15580. height: math.unit(6, "feet"),
  15581. weight: math.unit(150, "lb"),
  15582. name: "Side",
  15583. image: {
  15584. source: "./media/characters/alluria/side.svg",
  15585. extra: 800 / 750,
  15586. }
  15587. },
  15588. back: {
  15589. height: math.unit(6, "feet"),
  15590. weight: math.unit(150, "lb"),
  15591. name: "Back",
  15592. image: {
  15593. source: "./media/characters/alluria/back.svg",
  15594. extra: 806 / 738,
  15595. }
  15596. },
  15597. frontMaid: {
  15598. height: math.unit(6, "feet"),
  15599. weight: math.unit(150, "lb"),
  15600. name: "Front (Maid)",
  15601. image: {
  15602. source: "./media/characters/alluria/front-maid.svg",
  15603. extra: 806 / 738,
  15604. bottom: 0.01
  15605. }
  15606. },
  15607. sideMaid: {
  15608. height: math.unit(6, "feet"),
  15609. weight: math.unit(150, "lb"),
  15610. name: "Side (Maid)",
  15611. image: {
  15612. source: "./media/characters/alluria/side-maid.svg",
  15613. extra: 800 / 750,
  15614. bottom: 0.005
  15615. }
  15616. },
  15617. backMaid: {
  15618. height: math.unit(6, "feet"),
  15619. weight: math.unit(150, "lb"),
  15620. name: "Back (Maid)",
  15621. image: {
  15622. source: "./media/characters/alluria/back-maid.svg",
  15623. extra: 806 / 738,
  15624. }
  15625. },
  15626. },
  15627. [
  15628. {
  15629. name: "Micro",
  15630. height: math.unit(6, "inches"),
  15631. default: true
  15632. },
  15633. ]
  15634. ))
  15635. characterMakers.push(() => makeCharacter(
  15636. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15637. {
  15638. front: {
  15639. height: math.unit(6, "feet"),
  15640. weight: math.unit(150, "lb"),
  15641. name: "Front",
  15642. image: {
  15643. source: "./media/characters/kyle/front.svg",
  15644. extra: 1069 / 962,
  15645. bottom: 77.228 / 1727.45
  15646. }
  15647. },
  15648. },
  15649. [
  15650. {
  15651. name: "Macro",
  15652. height: math.unit(150, "feet"),
  15653. default: true
  15654. },
  15655. ]
  15656. ))
  15657. characterMakers.push(() => makeCharacter(
  15658. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15659. {
  15660. front: {
  15661. height: math.unit(6, "feet"),
  15662. weight: math.unit(300, "lb"),
  15663. name: "Front",
  15664. image: {
  15665. source: "./media/characters/duncan/front.svg",
  15666. extra: 1650 / 1482,
  15667. bottom: 0.05
  15668. }
  15669. },
  15670. },
  15671. [
  15672. {
  15673. name: "Macro",
  15674. height: math.unit(100, "feet"),
  15675. default: true
  15676. },
  15677. ]
  15678. ))
  15679. characterMakers.push(() => makeCharacter(
  15680. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15681. {
  15682. front: {
  15683. height: math.unit(5 + 4 / 12, "feet"),
  15684. weight: math.unit(220, "lb"),
  15685. name: "Front",
  15686. image: {
  15687. source: "./media/characters/memory/front.svg",
  15688. extra: 3641 / 3545,
  15689. bottom: 0.03
  15690. }
  15691. },
  15692. back: {
  15693. height: math.unit(5 + 4 / 12, "feet"),
  15694. weight: math.unit(220, "lb"),
  15695. name: "Back",
  15696. image: {
  15697. source: "./media/characters/memory/back.svg",
  15698. extra: 3641 / 3545,
  15699. bottom: 0.025
  15700. }
  15701. },
  15702. frontSkirt: {
  15703. height: math.unit(5 + 4 / 12, "feet"),
  15704. weight: math.unit(220, "lb"),
  15705. name: "Front (Skirt)",
  15706. image: {
  15707. source: "./media/characters/memory/front-skirt.svg",
  15708. extra: 3641 / 3545,
  15709. bottom: 0.03
  15710. }
  15711. },
  15712. frontDress: {
  15713. height: math.unit(5 + 4 / 12, "feet"),
  15714. weight: math.unit(220, "lb"),
  15715. name: "Front (Dress)",
  15716. image: {
  15717. source: "./media/characters/memory/front-dress.svg",
  15718. extra: 3641 / 3545,
  15719. bottom: 0.03
  15720. }
  15721. },
  15722. },
  15723. [
  15724. {
  15725. name: "Micro",
  15726. height: math.unit(6, "inches"),
  15727. default: true
  15728. },
  15729. {
  15730. name: "Normal",
  15731. height: math.unit(5 + 4 / 12, "feet")
  15732. },
  15733. ]
  15734. ))
  15735. characterMakers.push(() => makeCharacter(
  15736. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15737. {
  15738. front: {
  15739. height: math.unit(4 + 11 / 12, "feet"),
  15740. weight: math.unit(100, "lb"),
  15741. name: "Front",
  15742. image: {
  15743. source: "./media/characters/luno/front.svg",
  15744. extra: 1535 / 1487,
  15745. bottom: 0.03
  15746. }
  15747. },
  15748. },
  15749. [
  15750. {
  15751. name: "Micro",
  15752. height: math.unit(3, "inches")
  15753. },
  15754. {
  15755. name: "Normal",
  15756. height: math.unit(4 + 11 / 12, "feet"),
  15757. default: true
  15758. },
  15759. {
  15760. name: "Macro",
  15761. height: math.unit(300, "feet")
  15762. },
  15763. {
  15764. name: "Megamacro",
  15765. height: math.unit(700, "miles")
  15766. },
  15767. ]
  15768. ))
  15769. characterMakers.push(() => makeCharacter(
  15770. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15771. {
  15772. front: {
  15773. height: math.unit(6 + 2 / 12, "feet"),
  15774. weight: math.unit(170, "lb"),
  15775. name: "Front",
  15776. image: {
  15777. source: "./media/characters/jamesy/front.svg",
  15778. extra: 440 / 382,
  15779. bottom: 0.005
  15780. }
  15781. },
  15782. },
  15783. [
  15784. {
  15785. name: "Micro",
  15786. height: math.unit(3, "inches")
  15787. },
  15788. {
  15789. name: "Normal",
  15790. height: math.unit(6 + 2 / 12, "feet"),
  15791. default: true
  15792. },
  15793. {
  15794. name: "Macro",
  15795. height: math.unit(300, "feet")
  15796. },
  15797. {
  15798. name: "Megamacro",
  15799. height: math.unit(700, "miles")
  15800. },
  15801. ]
  15802. ))
  15803. characterMakers.push(() => makeCharacter(
  15804. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15805. {
  15806. front: {
  15807. height: math.unit(6, "feet"),
  15808. weight: math.unit(160, "lb"),
  15809. name: "Front",
  15810. image: {
  15811. source: "./media/characters/mark/front.svg",
  15812. extra: 3300 / 3100,
  15813. bottom: 136.42 / 3440.47
  15814. }
  15815. },
  15816. },
  15817. [
  15818. {
  15819. name: "Macro",
  15820. height: math.unit(120, "meters")
  15821. },
  15822. {
  15823. name: "Bigger Macro",
  15824. height: math.unit(350, "meters")
  15825. },
  15826. {
  15827. name: "Megamacro",
  15828. height: math.unit(8, "km"),
  15829. default: true
  15830. },
  15831. {
  15832. name: "Continental",
  15833. height: math.unit(4550, "km")
  15834. },
  15835. {
  15836. name: "Planetary",
  15837. height: math.unit(65000, "km")
  15838. },
  15839. ]
  15840. ))
  15841. characterMakers.push(() => makeCharacter(
  15842. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15843. {
  15844. front: {
  15845. height: math.unit(6, "feet"),
  15846. weight: math.unit(400, "lb"),
  15847. name: "Front",
  15848. image: {
  15849. source: "./media/characters/mac/front.svg",
  15850. extra: 1048 / 987.7,
  15851. bottom: 60 / 1107.6,
  15852. }
  15853. },
  15854. },
  15855. [
  15856. {
  15857. name: "Macro",
  15858. height: math.unit(500, "feet"),
  15859. default: true
  15860. },
  15861. ]
  15862. ))
  15863. characterMakers.push(() => makeCharacter(
  15864. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15865. {
  15866. front: {
  15867. height: math.unit(5 + 2 / 12, "feet"),
  15868. weight: math.unit(190, "lb"),
  15869. name: "Front",
  15870. image: {
  15871. source: "./media/characters/bari/front.svg",
  15872. extra: 3156 / 2880,
  15873. bottom: 0.03
  15874. }
  15875. },
  15876. back: {
  15877. height: math.unit(5 + 2 / 12, "feet"),
  15878. weight: math.unit(190, "lb"),
  15879. name: "Back",
  15880. image: {
  15881. source: "./media/characters/bari/back.svg",
  15882. extra: 3260 / 2834,
  15883. bottom: 0.025
  15884. }
  15885. },
  15886. frontPlush: {
  15887. height: math.unit(5 + 2 / 12, "feet"),
  15888. weight: math.unit(190, "lb"),
  15889. name: "Front (Plush)",
  15890. image: {
  15891. source: "./media/characters/bari/front-plush.svg",
  15892. extra: 1112 / 1061,
  15893. bottom: 0.002
  15894. }
  15895. },
  15896. },
  15897. [
  15898. {
  15899. name: "Micro",
  15900. height: math.unit(3, "inches")
  15901. },
  15902. {
  15903. name: "Normal",
  15904. height: math.unit(5 + 2 / 12, "feet"),
  15905. default: true
  15906. },
  15907. {
  15908. name: "Macro",
  15909. height: math.unit(20, "feet")
  15910. },
  15911. ]
  15912. ))
  15913. characterMakers.push(() => makeCharacter(
  15914. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  15915. {
  15916. front: {
  15917. height: math.unit(6 + 1 / 12, "feet"),
  15918. weight: math.unit(275, "lb"),
  15919. name: "Front",
  15920. image: {
  15921. source: "./media/characters/hunter-misha-raven/front.svg"
  15922. }
  15923. },
  15924. },
  15925. [
  15926. {
  15927. name: "Mortal",
  15928. height: math.unit(6 + 1 / 12, "feet")
  15929. },
  15930. {
  15931. name: "Divine",
  15932. height: math.unit(1.12134e34, "parsecs"),
  15933. default: true
  15934. },
  15935. ]
  15936. ))
  15937. characterMakers.push(() => makeCharacter(
  15938. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  15939. {
  15940. front: {
  15941. height: math.unit(6 + 3 / 12, "feet"),
  15942. weight: math.unit(220, "lb"),
  15943. name: "Front",
  15944. image: {
  15945. source: "./media/characters/max-calore/front.svg",
  15946. extra: 1700 / 1648,
  15947. bottom: 0.01
  15948. }
  15949. },
  15950. back: {
  15951. height: math.unit(6 + 3 / 12, "feet"),
  15952. weight: math.unit(220, "lb"),
  15953. name: "Back",
  15954. image: {
  15955. source: "./media/characters/max-calore/back.svg",
  15956. extra: 1700 / 1648,
  15957. bottom: 0.01
  15958. }
  15959. },
  15960. },
  15961. [
  15962. {
  15963. name: "Normal",
  15964. height: math.unit(6 + 3 / 12, "feet"),
  15965. default: true
  15966. },
  15967. ]
  15968. ))
  15969. characterMakers.push(() => makeCharacter(
  15970. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  15971. {
  15972. side: {
  15973. height: math.unit(2 + 8 / 12, "feet"),
  15974. weight: math.unit(99, "lb"),
  15975. name: "Side",
  15976. image: {
  15977. source: "./media/characters/aspen/side.svg",
  15978. extra: 152 / 138,
  15979. bottom: 0.032
  15980. }
  15981. },
  15982. },
  15983. [
  15984. {
  15985. name: "Normal",
  15986. height: math.unit(2 + 8 / 12, "feet"),
  15987. default: true
  15988. },
  15989. ]
  15990. ))
  15991. characterMakers.push(() => makeCharacter(
  15992. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  15993. {
  15994. side: {
  15995. height: math.unit(3 + 2 / 12, "feet"),
  15996. weight: math.unit(224, "lb"),
  15997. name: "Side",
  15998. image: {
  15999. source: "./media/characters/sheila-feral-wolf/side.svg",
  16000. extra: 179 / 166,
  16001. bottom: 0.03
  16002. }
  16003. },
  16004. },
  16005. [
  16006. {
  16007. name: "Normal",
  16008. height: math.unit(3 + 2 / 12, "feet"),
  16009. default: true
  16010. },
  16011. ]
  16012. ))
  16013. characterMakers.push(() => makeCharacter(
  16014. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16015. {
  16016. side: {
  16017. height: math.unit(1 + 9 / 12, "feet"),
  16018. weight: math.unit(38, "lb"),
  16019. name: "Side",
  16020. image: {
  16021. source: "./media/characters/michelle/side.svg",
  16022. extra: 147 / 136.7,
  16023. bottom: 0.03
  16024. }
  16025. },
  16026. },
  16027. [
  16028. {
  16029. name: "Normal",
  16030. height: math.unit(1 + 9 / 12, "feet"),
  16031. default: true
  16032. },
  16033. ]
  16034. ))
  16035. characterMakers.push(() => makeCharacter(
  16036. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16037. {
  16038. front: {
  16039. height: math.unit(1 + 1 / 12, "feet"),
  16040. weight: math.unit(18, "lb"),
  16041. name: "Front",
  16042. image: {
  16043. source: "./media/characters/nino/front.svg"
  16044. }
  16045. },
  16046. },
  16047. [
  16048. {
  16049. name: "Normal",
  16050. height: math.unit(1 + 1 / 12, "feet"),
  16051. default: true
  16052. },
  16053. ]
  16054. ))
  16055. characterMakers.push(() => makeCharacter(
  16056. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16057. {
  16058. front: {
  16059. height: math.unit(1, "feet"),
  16060. weight: math.unit(16, "lb"),
  16061. name: "Front",
  16062. image: {
  16063. source: "./media/characters/viola/front.svg"
  16064. }
  16065. },
  16066. },
  16067. [
  16068. {
  16069. name: "Normal",
  16070. height: math.unit(1, "feet"),
  16071. default: true
  16072. },
  16073. ]
  16074. ))
  16075. characterMakers.push(() => makeCharacter(
  16076. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16077. {
  16078. front: {
  16079. height: math.unit(6 + 5 / 12, "feet"),
  16080. weight: math.unit(580, "lb"),
  16081. name: "Front",
  16082. image: {
  16083. source: "./media/characters/atlas/front.svg",
  16084. extra: 298.5 / 290,
  16085. bottom: 0.015
  16086. }
  16087. },
  16088. },
  16089. [
  16090. {
  16091. name: "Normal",
  16092. height: math.unit(6 + 5 / 12, "feet"),
  16093. default: true
  16094. },
  16095. ]
  16096. ))
  16097. characterMakers.push(() => makeCharacter(
  16098. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16099. {
  16100. side: {
  16101. height: math.unit(1 + 10 / 12, "feet"),
  16102. weight: math.unit(25, "lb"),
  16103. name: "Side",
  16104. image: {
  16105. source: "./media/characters/davy/side.svg",
  16106. extra: 200 / 170,
  16107. bottom: 0.01
  16108. }
  16109. },
  16110. },
  16111. [
  16112. {
  16113. name: "Normal",
  16114. height: math.unit(1 + 10 / 12, "feet"),
  16115. default: true
  16116. },
  16117. ]
  16118. ))
  16119. characterMakers.push(() => makeCharacter(
  16120. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16121. {
  16122. side: {
  16123. height: math.unit(4 + 8 / 12, "feet"),
  16124. weight: math.unit(166, "lb"),
  16125. name: "Side",
  16126. image: {
  16127. source: "./media/characters/fiona/side.svg",
  16128. extra: 232 / 220,
  16129. bottom: 0.03
  16130. }
  16131. },
  16132. },
  16133. [
  16134. {
  16135. name: "Normal",
  16136. height: math.unit(4 + 8 / 12, "feet"),
  16137. default: true
  16138. },
  16139. ]
  16140. ))
  16141. characterMakers.push(() => makeCharacter(
  16142. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16143. {
  16144. front: {
  16145. height: math.unit(2, "feet"),
  16146. weight: math.unit(62, "lb"),
  16147. name: "Front",
  16148. image: {
  16149. source: "./media/characters/lyla/front.svg",
  16150. bottom: 0.1
  16151. }
  16152. },
  16153. },
  16154. [
  16155. {
  16156. name: "Normal",
  16157. height: math.unit(2, "feet"),
  16158. default: true
  16159. },
  16160. ]
  16161. ))
  16162. characterMakers.push(() => makeCharacter(
  16163. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16164. {
  16165. side: {
  16166. height: math.unit(1.8, "feet"),
  16167. weight: math.unit(44, "lb"),
  16168. name: "Side",
  16169. image: {
  16170. source: "./media/characters/perseus/side.svg",
  16171. bottom: 0.21
  16172. }
  16173. },
  16174. },
  16175. [
  16176. {
  16177. name: "Normal",
  16178. height: math.unit(1.8, "feet"),
  16179. default: true
  16180. },
  16181. ]
  16182. ))
  16183. characterMakers.push(() => makeCharacter(
  16184. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16185. {
  16186. side: {
  16187. height: math.unit(4 + 2 / 12, "feet"),
  16188. weight: math.unit(20, "lb"),
  16189. name: "Side",
  16190. image: {
  16191. source: "./media/characters/remus/side.svg"
  16192. }
  16193. },
  16194. },
  16195. [
  16196. {
  16197. name: "Normal",
  16198. height: math.unit(4 + 2 / 12, "feet"),
  16199. default: true
  16200. },
  16201. ]
  16202. ))
  16203. characterMakers.push(() => makeCharacter(
  16204. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16205. {
  16206. front: {
  16207. height: math.unit(4 + 11 / 12, "feet"),
  16208. weight: math.unit(114, "lb"),
  16209. name: "Front",
  16210. image: {
  16211. source: "./media/characters/raf/front.svg",
  16212. bottom: 20.5/1863
  16213. }
  16214. },
  16215. side: {
  16216. height: math.unit(4 + 11 / 12, "feet"),
  16217. weight: math.unit(114, "lb"),
  16218. name: "Side",
  16219. image: {
  16220. source: "./media/characters/raf/side.svg",
  16221. bottom: 22/1822
  16222. }
  16223. },
  16224. },
  16225. [
  16226. {
  16227. name: "Micro",
  16228. height: math.unit(2, "inches")
  16229. },
  16230. {
  16231. name: "Normal",
  16232. height: math.unit(4 + 11 / 12, "feet"),
  16233. default: true
  16234. },
  16235. {
  16236. name: "Macro",
  16237. height: math.unit(70, "feet")
  16238. },
  16239. ]
  16240. ))
  16241. characterMakers.push(() => makeCharacter(
  16242. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16243. {
  16244. front: {
  16245. height: math.unit(1.5, "meters"),
  16246. weight: math.unit(68, "kg"),
  16247. name: "Front",
  16248. image: {
  16249. source: "./media/characters/liam-einarr/front.svg",
  16250. extra: 2822 / 2666
  16251. }
  16252. },
  16253. back: {
  16254. height: math.unit(1.5, "meters"),
  16255. weight: math.unit(68, "kg"),
  16256. name: "Back",
  16257. image: {
  16258. source: "./media/characters/liam-einarr/back.svg",
  16259. extra: 2822 / 2666,
  16260. bottom: 0.015
  16261. }
  16262. },
  16263. },
  16264. [
  16265. {
  16266. name: "Normal",
  16267. height: math.unit(1.5, "meters"),
  16268. default: true
  16269. },
  16270. {
  16271. name: "Macro",
  16272. height: math.unit(150, "meters")
  16273. },
  16274. {
  16275. name: "Megamacro",
  16276. height: math.unit(35, "km")
  16277. },
  16278. ]
  16279. ))
  16280. characterMakers.push(() => makeCharacter(
  16281. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16282. {
  16283. front: {
  16284. height: math.unit(6, "feet"),
  16285. weight: math.unit(75, "kg"),
  16286. name: "Front",
  16287. image: {
  16288. source: "./media/characters/linda/front.svg",
  16289. extra: 930 / 874,
  16290. bottom: 0.004
  16291. }
  16292. },
  16293. },
  16294. [
  16295. {
  16296. name: "Normal",
  16297. height: math.unit(6, "feet"),
  16298. default: true
  16299. },
  16300. ]
  16301. ))
  16302. characterMakers.push(() => makeCharacter(
  16303. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16304. {
  16305. front: {
  16306. height: math.unit(6 + 8 / 12, "feet"),
  16307. weight: math.unit(220, "lb"),
  16308. name: "Front",
  16309. image: {
  16310. source: "./media/characters/caylex/front.svg",
  16311. extra: 821 / 772,
  16312. bottom: 0.07
  16313. }
  16314. },
  16315. back: {
  16316. height: math.unit(6 + 8 / 12, "feet"),
  16317. weight: math.unit(220, "lb"),
  16318. name: "Back",
  16319. image: {
  16320. source: "./media/characters/caylex/back.svg",
  16321. extra: 821 / 772,
  16322. bottom: 0.022
  16323. }
  16324. },
  16325. hand: {
  16326. height: math.unit(1.25, "feet"),
  16327. name: "Hand",
  16328. image: {
  16329. source: "./media/characters/caylex/hand.svg"
  16330. }
  16331. },
  16332. foot: {
  16333. height: math.unit(1.6, "feet"),
  16334. name: "Foot",
  16335. image: {
  16336. source: "./media/characters/caylex/foot.svg"
  16337. }
  16338. },
  16339. armored: {
  16340. height: math.unit(6 + 8 / 12, "feet"),
  16341. weight: math.unit(250, "lb"),
  16342. name: "Armored",
  16343. image: {
  16344. source: "./media/characters/caylex/armored.svg",
  16345. extra: 1420 / 1310,
  16346. bottom: 0.045
  16347. }
  16348. },
  16349. },
  16350. [
  16351. {
  16352. name: "Normal",
  16353. height: math.unit(6 + 8 / 12, "feet"),
  16354. default: true
  16355. },
  16356. {
  16357. name: "Normal+",
  16358. height: math.unit(12, "feet")
  16359. },
  16360. ]
  16361. ))
  16362. characterMakers.push(() => makeCharacter(
  16363. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16364. {
  16365. front: {
  16366. height: math.unit(7 + 6 / 12, "feet"),
  16367. weight: math.unit(288, "lb"),
  16368. name: "Front",
  16369. image: {
  16370. source: "./media/characters/alana/front.svg",
  16371. extra: 679 / 653,
  16372. bottom: 22.5 / 701
  16373. }
  16374. },
  16375. },
  16376. [
  16377. {
  16378. name: "Normal",
  16379. height: math.unit(7 + 6 / 12, "feet")
  16380. },
  16381. {
  16382. name: "Large",
  16383. height: math.unit(50, "feet")
  16384. },
  16385. {
  16386. name: "Macro",
  16387. height: math.unit(100, "feet"),
  16388. default: true
  16389. },
  16390. {
  16391. name: "Macro+",
  16392. height: math.unit(200, "feet")
  16393. },
  16394. ]
  16395. ))
  16396. characterMakers.push(() => makeCharacter(
  16397. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16398. {
  16399. front: {
  16400. height: math.unit(6 + 1 / 12, "feet"),
  16401. weight: math.unit(210, "lb"),
  16402. name: "Front",
  16403. image: {
  16404. source: "./media/characters/hasani/front.svg",
  16405. extra: 244 / 232,
  16406. bottom: 0.01
  16407. }
  16408. },
  16409. back: {
  16410. height: math.unit(6 + 1 / 12, "feet"),
  16411. weight: math.unit(210, "lb"),
  16412. name: "Back",
  16413. image: {
  16414. source: "./media/characters/hasani/back.svg",
  16415. extra: 244 / 232,
  16416. bottom: 0.01
  16417. }
  16418. },
  16419. },
  16420. [
  16421. {
  16422. name: "Normal",
  16423. height: math.unit(6 + 1 / 12, "feet")
  16424. },
  16425. {
  16426. name: "Macro",
  16427. height: math.unit(175, "feet"),
  16428. default: true
  16429. },
  16430. ]
  16431. ))
  16432. characterMakers.push(() => makeCharacter(
  16433. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16434. {
  16435. front: {
  16436. height: math.unit(1.82, "meters"),
  16437. weight: math.unit(140, "lb"),
  16438. name: "Front",
  16439. image: {
  16440. source: "./media/characters/nita/front.svg",
  16441. extra: 2473 / 2363,
  16442. bottom: 0.01
  16443. }
  16444. },
  16445. },
  16446. [
  16447. {
  16448. name: "Normal",
  16449. height: math.unit(1.82, "m")
  16450. },
  16451. {
  16452. name: "Macro",
  16453. height: math.unit(300, "m")
  16454. },
  16455. {
  16456. name: "Mistake Canon",
  16457. height: math.unit(0.5, "miles"),
  16458. default: true
  16459. },
  16460. {
  16461. name: "Big Mistake",
  16462. height: math.unit(13, "miles")
  16463. },
  16464. {
  16465. name: "Playing God",
  16466. height: math.unit(2450, "miles")
  16467. },
  16468. ]
  16469. ))
  16470. characterMakers.push(() => makeCharacter(
  16471. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16472. {
  16473. front: {
  16474. height: math.unit(4, "feet"),
  16475. weight: math.unit(120, "lb"),
  16476. name: "Front",
  16477. image: {
  16478. source: "./media/characters/shiriko/front.svg",
  16479. extra: 195 / 188
  16480. }
  16481. },
  16482. },
  16483. [
  16484. {
  16485. name: "Normal",
  16486. height: math.unit(4, "feet"),
  16487. default: true
  16488. },
  16489. ]
  16490. ))
  16491. characterMakers.push(() => makeCharacter(
  16492. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16493. {
  16494. front: {
  16495. height: math.unit(6, "feet"),
  16496. name: "front",
  16497. image: {
  16498. source: "./media/characters/deja/front.svg",
  16499. extra: 926 / 840,
  16500. bottom: 0.07
  16501. }
  16502. },
  16503. },
  16504. [
  16505. {
  16506. name: "Planck Length",
  16507. height: math.unit(1.6e-35, "meters")
  16508. },
  16509. {
  16510. name: "Normal",
  16511. height: math.unit(30.48, "meters"),
  16512. default: true
  16513. },
  16514. {
  16515. name: "Universal",
  16516. height: math.unit(8.8e26, "meters")
  16517. },
  16518. ]
  16519. ))
  16520. characterMakers.push(() => makeCharacter(
  16521. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16522. {
  16523. side: {
  16524. height: math.unit(8, "feet"),
  16525. weight: math.unit(6300, "lb"),
  16526. name: "Side",
  16527. image: {
  16528. source: "./media/characters/anima/side.svg",
  16529. bottom: 0.035
  16530. }
  16531. },
  16532. },
  16533. [
  16534. {
  16535. name: "Normal",
  16536. height: math.unit(8, "feet"),
  16537. default: true
  16538. },
  16539. ]
  16540. ))
  16541. characterMakers.push(() => makeCharacter(
  16542. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16543. {
  16544. front: {
  16545. height: math.unit(8, "feet"),
  16546. weight: math.unit(350, "lb"),
  16547. name: "Front",
  16548. image: {
  16549. source: "./media/characters/bianca/front.svg",
  16550. extra: 234 / 225,
  16551. bottom: 0.03
  16552. }
  16553. },
  16554. },
  16555. [
  16556. {
  16557. name: "Normal",
  16558. height: math.unit(8, "feet"),
  16559. default: true
  16560. },
  16561. ]
  16562. ))
  16563. characterMakers.push(() => makeCharacter(
  16564. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16565. {
  16566. front: {
  16567. height: math.unit(6, "feet"),
  16568. weight: math.unit(150, "lb"),
  16569. name: "Front",
  16570. image: {
  16571. source: "./media/characters/adinia/front.svg",
  16572. extra: 1845 / 1672,
  16573. bottom: 0.02
  16574. }
  16575. },
  16576. back: {
  16577. height: math.unit(6, "feet"),
  16578. weight: math.unit(150, "lb"),
  16579. name: "Back",
  16580. image: {
  16581. source: "./media/characters/adinia/back.svg",
  16582. extra: 1845 / 1672,
  16583. bottom: 0.002
  16584. }
  16585. },
  16586. },
  16587. [
  16588. {
  16589. name: "Normal",
  16590. height: math.unit(11 + 5 / 12, "feet"),
  16591. default: true
  16592. },
  16593. ]
  16594. ))
  16595. characterMakers.push(() => makeCharacter(
  16596. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16597. {
  16598. front: {
  16599. height: math.unit(3, "meters"),
  16600. weight: math.unit(200, "kg"),
  16601. name: "Front",
  16602. image: {
  16603. source: "./media/characters/lykasa/front.svg",
  16604. extra: 1076 / 976,
  16605. bottom: 0.06
  16606. }
  16607. },
  16608. },
  16609. [
  16610. {
  16611. name: "Normal",
  16612. height: math.unit(3, "meters")
  16613. },
  16614. {
  16615. name: "Kaiju",
  16616. height: math.unit(120, "meters"),
  16617. default: true
  16618. },
  16619. {
  16620. name: "Mega Kaiju",
  16621. height: math.unit(240, "km")
  16622. },
  16623. {
  16624. name: "Giga Kaiju",
  16625. height: math.unit(400, "megameters")
  16626. },
  16627. {
  16628. name: "Tera Kaiju",
  16629. height: math.unit(800, "gigameters")
  16630. },
  16631. {
  16632. name: "Kaiju Dragon Goddess",
  16633. height: math.unit(26, "zettaparsecs")
  16634. },
  16635. ]
  16636. ))
  16637. characterMakers.push(() => makeCharacter(
  16638. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16639. {
  16640. side: {
  16641. height: math.unit(283 / 124 * 6, "feet"),
  16642. weight: math.unit(35000, "lb"),
  16643. name: "Side",
  16644. image: {
  16645. source: "./media/characters/malfaren/side.svg",
  16646. extra: 2500 / 1010,
  16647. bottom: 0.01
  16648. }
  16649. },
  16650. front: {
  16651. height: math.unit(22.36, "feet"),
  16652. weight: math.unit(35000, "lb"),
  16653. name: "Front",
  16654. image: {
  16655. source: "./media/characters/malfaren/front.svg",
  16656. extra: 1631 / 1476,
  16657. bottom: 0.01
  16658. }
  16659. },
  16660. maw: {
  16661. height: math.unit(6.9, "feet"),
  16662. name: "Maw",
  16663. image: {
  16664. source: "./media/characters/malfaren/maw.svg"
  16665. }
  16666. },
  16667. },
  16668. [
  16669. {
  16670. name: "Big",
  16671. height: math.unit(283 / 162 * 6, "feet"),
  16672. },
  16673. {
  16674. name: "Bigger",
  16675. height: math.unit(283 / 124 * 6, "feet")
  16676. },
  16677. {
  16678. name: "Massive",
  16679. height: math.unit(283 / 92 * 6, "feet"),
  16680. default: true
  16681. },
  16682. {
  16683. name: "👀💦",
  16684. height: math.unit(283 / 73 * 6, "feet"),
  16685. },
  16686. ]
  16687. ))
  16688. characterMakers.push(() => makeCharacter(
  16689. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16690. {
  16691. front: {
  16692. height: math.unit(1.7, "m"),
  16693. weight: math.unit(70, "kg"),
  16694. name: "Front",
  16695. image: {
  16696. source: "./media/characters/kernel/front.svg",
  16697. extra: 222 / 210,
  16698. bottom: 0.007
  16699. }
  16700. },
  16701. },
  16702. [
  16703. {
  16704. name: "Nano",
  16705. height: math.unit(17, "micrometers")
  16706. },
  16707. {
  16708. name: "Micro",
  16709. height: math.unit(1.7, "mm")
  16710. },
  16711. {
  16712. name: "Small",
  16713. height: math.unit(1.7, "cm")
  16714. },
  16715. {
  16716. name: "Normal",
  16717. height: math.unit(1.7, "m"),
  16718. default: true
  16719. },
  16720. ]
  16721. ))
  16722. characterMakers.push(() => makeCharacter(
  16723. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16724. {
  16725. front: {
  16726. height: math.unit(1.75, "meters"),
  16727. weight: math.unit(65, "kg"),
  16728. name: "Front",
  16729. image: {
  16730. source: "./media/characters/jayne-folest/front.svg",
  16731. extra: 2115 / 2007,
  16732. bottom: 0.02
  16733. }
  16734. },
  16735. back: {
  16736. height: math.unit(1.75, "meters"),
  16737. weight: math.unit(65, "kg"),
  16738. name: "Back",
  16739. image: {
  16740. source: "./media/characters/jayne-folest/back.svg",
  16741. extra: 2115 / 2007,
  16742. bottom: 0.005
  16743. }
  16744. },
  16745. frontClothed: {
  16746. height: math.unit(1.75, "meters"),
  16747. weight: math.unit(65, "kg"),
  16748. name: "Front (Clothed)",
  16749. image: {
  16750. source: "./media/characters/jayne-folest/front-clothed.svg",
  16751. extra: 2115 / 2007,
  16752. bottom: 0.035
  16753. }
  16754. },
  16755. hand: {
  16756. height: math.unit(1 / 1.260, "feet"),
  16757. name: "Hand",
  16758. image: {
  16759. source: "./media/characters/jayne-folest/hand.svg"
  16760. }
  16761. },
  16762. foot: {
  16763. height: math.unit(1 / 0.918, "feet"),
  16764. name: "Foot",
  16765. image: {
  16766. source: "./media/characters/jayne-folest/foot.svg"
  16767. }
  16768. },
  16769. },
  16770. [
  16771. {
  16772. name: "Micro",
  16773. height: math.unit(4, "cm")
  16774. },
  16775. {
  16776. name: "Normal",
  16777. height: math.unit(1.75, "meters")
  16778. },
  16779. {
  16780. name: "Macro",
  16781. height: math.unit(47.5, "meters"),
  16782. default: true
  16783. },
  16784. ]
  16785. ))
  16786. characterMakers.push(() => makeCharacter(
  16787. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16788. {
  16789. front: {
  16790. height: math.unit(180, "cm"),
  16791. weight: math.unit(70, "kg"),
  16792. name: "Front",
  16793. image: {
  16794. source: "./media/characters/algier/front.svg",
  16795. extra: 596 / 572,
  16796. bottom: 0.04
  16797. }
  16798. },
  16799. back: {
  16800. height: math.unit(180, "cm"),
  16801. weight: math.unit(70, "kg"),
  16802. name: "Back",
  16803. image: {
  16804. source: "./media/characters/algier/back.svg",
  16805. extra: 596 / 572,
  16806. bottom: 0.025
  16807. }
  16808. },
  16809. frontdressed: {
  16810. height: math.unit(180, "cm"),
  16811. weight: math.unit(150, "kg"),
  16812. name: "Front-dressed",
  16813. image: {
  16814. source: "./media/characters/algier/front-dressed.svg",
  16815. extra: 596 / 572,
  16816. bottom: 0.038
  16817. }
  16818. },
  16819. },
  16820. [
  16821. {
  16822. name: "Micro",
  16823. height: math.unit(5, "cm")
  16824. },
  16825. {
  16826. name: "Normal",
  16827. height: math.unit(180, "cm"),
  16828. default: true
  16829. },
  16830. {
  16831. name: "Macro",
  16832. height: math.unit(64, "m")
  16833. },
  16834. ]
  16835. ))
  16836. characterMakers.push(() => makeCharacter(
  16837. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16838. {
  16839. upright: {
  16840. height: math.unit(7, "feet"),
  16841. weight: math.unit(300, "lb"),
  16842. name: "Upright",
  16843. image: {
  16844. source: "./media/characters/pretzel/upright.svg",
  16845. extra: 534 / 522,
  16846. bottom: 0.065
  16847. }
  16848. },
  16849. sprawling: {
  16850. height: math.unit(3.75, "feet"),
  16851. weight: math.unit(300, "lb"),
  16852. name: "Sprawling",
  16853. image: {
  16854. source: "./media/characters/pretzel/sprawling.svg",
  16855. extra: 314 / 281,
  16856. bottom: 0.1
  16857. }
  16858. },
  16859. tongue: {
  16860. height: math.unit(2, "feet"),
  16861. name: "Tongue",
  16862. image: {
  16863. source: "./media/characters/pretzel/tongue.svg"
  16864. }
  16865. },
  16866. },
  16867. [
  16868. {
  16869. name: "Normal",
  16870. height: math.unit(7, "feet"),
  16871. default: true
  16872. },
  16873. {
  16874. name: "Oversized",
  16875. height: math.unit(15, "feet")
  16876. },
  16877. {
  16878. name: "Huge",
  16879. height: math.unit(30, "feet")
  16880. },
  16881. {
  16882. name: "Macro",
  16883. height: math.unit(250, "feet")
  16884. },
  16885. ]
  16886. ))
  16887. characterMakers.push(() => makeCharacter(
  16888. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16889. {
  16890. sideFront: {
  16891. height: math.unit(5 + 2 / 12, "feet"),
  16892. weight: math.unit(120, "lb"),
  16893. name: "Front Side",
  16894. image: {
  16895. source: "./media/characters/roxi/side-front.svg",
  16896. extra: 2924 / 2717,
  16897. bottom: 0.08
  16898. }
  16899. },
  16900. sideBack: {
  16901. height: math.unit(5 + 2 / 12, "feet"),
  16902. weight: math.unit(120, "lb"),
  16903. name: "Back Side",
  16904. image: {
  16905. source: "./media/characters/roxi/side-back.svg",
  16906. extra: 2904 / 2693,
  16907. bottom: 0.06
  16908. }
  16909. },
  16910. front: {
  16911. height: math.unit(5 + 2 / 12, "feet"),
  16912. weight: math.unit(120, "lb"),
  16913. name: "Front",
  16914. image: {
  16915. source: "./media/characters/roxi/front.svg",
  16916. extra: 2028 / 1907,
  16917. bottom: 0.01
  16918. }
  16919. },
  16920. frontAlt: {
  16921. height: math.unit(5 + 2 / 12, "feet"),
  16922. weight: math.unit(120, "lb"),
  16923. name: "Front (Alt)",
  16924. image: {
  16925. source: "./media/characters/roxi/front-alt.svg",
  16926. extra: 1828 / 1798,
  16927. bottom: 0.01
  16928. }
  16929. },
  16930. sitting: {
  16931. height: math.unit(2.8, "feet"),
  16932. weight: math.unit(120, "lb"),
  16933. name: "Sitting",
  16934. image: {
  16935. source: "./media/characters/roxi/sitting.svg",
  16936. extra: 2660 / 2462,
  16937. bottom: 0.1
  16938. }
  16939. },
  16940. },
  16941. [
  16942. {
  16943. name: "Normal",
  16944. height: math.unit(5 + 2 / 12, "feet"),
  16945. default: true
  16946. },
  16947. ]
  16948. ))
  16949. characterMakers.push(() => makeCharacter(
  16950. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  16951. {
  16952. side: {
  16953. height: math.unit(55, "feet"),
  16954. weight: math.unit(153, "tons"),
  16955. name: "Side",
  16956. image: {
  16957. source: "./media/characters/shadow/side.svg",
  16958. extra: 701 / 628,
  16959. bottom: 0.02
  16960. }
  16961. },
  16962. flying: {
  16963. height: math.unit(145, "feet"),
  16964. weight: math.unit(153, "tons"),
  16965. name: "Flying",
  16966. image: {
  16967. source: "./media/characters/shadow/flying.svg"
  16968. }
  16969. },
  16970. },
  16971. [
  16972. {
  16973. name: "Normal",
  16974. height: math.unit(55, "feet"),
  16975. default: true
  16976. },
  16977. ]
  16978. ))
  16979. characterMakers.push(() => makeCharacter(
  16980. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  16981. {
  16982. front: {
  16983. height: math.unit(6, "feet"),
  16984. weight: math.unit(200, "lb"),
  16985. name: "Front",
  16986. image: {
  16987. source: "./media/characters/marcie/front.svg",
  16988. extra: 960 / 876,
  16989. bottom: 58 / 1017.87
  16990. }
  16991. },
  16992. },
  16993. [
  16994. {
  16995. name: "Macro",
  16996. height: math.unit(1, "mile"),
  16997. default: true
  16998. },
  16999. ]
  17000. ))
  17001. characterMakers.push(() => makeCharacter(
  17002. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17003. {
  17004. front: {
  17005. height: math.unit(7, "feet"),
  17006. weight: math.unit(200, "lb"),
  17007. name: "Front",
  17008. image: {
  17009. source: "./media/characters/kachina/front.svg",
  17010. extra: 1290.68 / 1119,
  17011. bottom: 36.5 / 1327.18
  17012. }
  17013. },
  17014. },
  17015. [
  17016. {
  17017. name: "Normal",
  17018. height: math.unit(7, "feet"),
  17019. default: true
  17020. },
  17021. ]
  17022. ))
  17023. characterMakers.push(() => makeCharacter(
  17024. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17025. {
  17026. looking: {
  17027. height: math.unit(2, "meters"),
  17028. weight: math.unit(300, "kg"),
  17029. name: "Looking",
  17030. image: {
  17031. source: "./media/characters/kash/looking.svg",
  17032. extra: 474 / 344,
  17033. bottom: 0.03
  17034. }
  17035. },
  17036. side: {
  17037. height: math.unit(2, "meters"),
  17038. weight: math.unit(300, "kg"),
  17039. name: "Side",
  17040. image: {
  17041. source: "./media/characters/kash/side.svg",
  17042. extra: 302 / 251,
  17043. bottom: 0.03
  17044. }
  17045. },
  17046. front: {
  17047. height: math.unit(2, "meters"),
  17048. weight: math.unit(300, "kg"),
  17049. name: "Front",
  17050. image: {
  17051. source: "./media/characters/kash/front.svg",
  17052. extra: 495 / 360,
  17053. bottom: 0.015
  17054. }
  17055. },
  17056. },
  17057. [
  17058. {
  17059. name: "Normal",
  17060. height: math.unit(2, "meters"),
  17061. default: true
  17062. },
  17063. {
  17064. name: "Big",
  17065. height: math.unit(3, "meters")
  17066. },
  17067. {
  17068. name: "Large",
  17069. height: math.unit(5, "meters")
  17070. },
  17071. ]
  17072. ))
  17073. characterMakers.push(() => makeCharacter(
  17074. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17075. {
  17076. feeding: {
  17077. height: math.unit(6.7, "feet"),
  17078. weight: math.unit(350, "lb"),
  17079. name: "Feeding",
  17080. image: {
  17081. source: "./media/characters/lalim/feeding.svg",
  17082. }
  17083. },
  17084. },
  17085. [
  17086. {
  17087. name: "Normal",
  17088. height: math.unit(6.7, "feet"),
  17089. default: true
  17090. },
  17091. ]
  17092. ))
  17093. characterMakers.push(() => makeCharacter(
  17094. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17095. {
  17096. front: {
  17097. height: math.unit(9.5, "feet"),
  17098. weight: math.unit(600, "lb"),
  17099. name: "Front",
  17100. image: {
  17101. source: "./media/characters/de'vout/front.svg",
  17102. extra: 1443 / 1328,
  17103. bottom: 0.025
  17104. }
  17105. },
  17106. back: {
  17107. height: math.unit(9.5, "feet"),
  17108. weight: math.unit(600, "lb"),
  17109. name: "Back",
  17110. image: {
  17111. source: "./media/characters/de'vout/back.svg",
  17112. extra: 1443 / 1328
  17113. }
  17114. },
  17115. frontDressed: {
  17116. height: math.unit(9.5, "feet"),
  17117. weight: math.unit(600, "lb"),
  17118. name: "Front (Dressed",
  17119. image: {
  17120. source: "./media/characters/de'vout/front-dressed.svg",
  17121. extra: 1443 / 1328,
  17122. bottom: 0.025
  17123. }
  17124. },
  17125. backDressed: {
  17126. height: math.unit(9.5, "feet"),
  17127. weight: math.unit(600, "lb"),
  17128. name: "Back (Dressed",
  17129. image: {
  17130. source: "./media/characters/de'vout/back-dressed.svg",
  17131. extra: 1443 / 1328
  17132. }
  17133. },
  17134. },
  17135. [
  17136. {
  17137. name: "Normal",
  17138. height: math.unit(9.5, "feet"),
  17139. default: true
  17140. },
  17141. ]
  17142. ))
  17143. characterMakers.push(() => makeCharacter(
  17144. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17145. {
  17146. front: {
  17147. height: math.unit(8, "feet"),
  17148. weight: math.unit(225, "lb"),
  17149. name: "Front",
  17150. image: {
  17151. source: "./media/characters/talana/front.svg",
  17152. extra: 1410 / 1300,
  17153. bottom: 0.015
  17154. }
  17155. },
  17156. frontDressed: {
  17157. height: math.unit(8, "feet"),
  17158. weight: math.unit(225, "lb"),
  17159. name: "Front (Dressed",
  17160. image: {
  17161. source: "./media/characters/talana/front-dressed.svg",
  17162. extra: 1410 / 1300,
  17163. bottom: 0.015
  17164. }
  17165. },
  17166. },
  17167. [
  17168. {
  17169. name: "Normal",
  17170. height: math.unit(8, "feet"),
  17171. default: true
  17172. },
  17173. ]
  17174. ))
  17175. characterMakers.push(() => makeCharacter(
  17176. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17177. {
  17178. side: {
  17179. height: math.unit(7.2, "feet"),
  17180. weight: math.unit(150, "lb"),
  17181. name: "Side",
  17182. image: {
  17183. source: "./media/characters/xeauvok/side.svg",
  17184. extra: 1975 / 1523,
  17185. bottom: 0.07
  17186. }
  17187. },
  17188. },
  17189. [
  17190. {
  17191. name: "Normal",
  17192. height: math.unit(7.2, "feet"),
  17193. default: true
  17194. },
  17195. ]
  17196. ))
  17197. characterMakers.push(() => makeCharacter(
  17198. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17199. {
  17200. side: {
  17201. height: math.unit(10, "feet"),
  17202. weight: math.unit(900, "kg"),
  17203. name: "Side",
  17204. image: {
  17205. source: "./media/characters/zara/side.svg",
  17206. extra: 504 / 498
  17207. }
  17208. },
  17209. },
  17210. [
  17211. {
  17212. name: "Normal",
  17213. height: math.unit(10, "feet"),
  17214. default: true
  17215. },
  17216. ]
  17217. ))
  17218. characterMakers.push(() => makeCharacter(
  17219. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17220. {
  17221. side: {
  17222. height: math.unit(6, "feet"),
  17223. weight: math.unit(150, "lb"),
  17224. name: "Side",
  17225. image: {
  17226. source: "./media/characters/richard-dragon/side.svg",
  17227. extra: 845 / 340,
  17228. bottom: 0.017
  17229. }
  17230. },
  17231. maw: {
  17232. height: math.unit(2.97, "feet"),
  17233. name: "Maw",
  17234. image: {
  17235. source: "./media/characters/richard-dragon/maw.svg"
  17236. }
  17237. },
  17238. },
  17239. [
  17240. ]
  17241. ))
  17242. characterMakers.push(() => makeCharacter(
  17243. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17244. {
  17245. front: {
  17246. height: math.unit(4, "feet"),
  17247. weight: math.unit(100, "lb"),
  17248. name: "Front",
  17249. image: {
  17250. source: "./media/characters/richard-smeargle/front.svg",
  17251. extra: 2952 / 2820,
  17252. bottom: 0.028
  17253. }
  17254. },
  17255. },
  17256. [
  17257. {
  17258. name: "Normal",
  17259. height: math.unit(4, "feet"),
  17260. default: true
  17261. },
  17262. {
  17263. name: "Dynamax",
  17264. height: math.unit(20, "meters")
  17265. },
  17266. ]
  17267. ))
  17268. characterMakers.push(() => makeCharacter(
  17269. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17270. {
  17271. front: {
  17272. height: math.unit(6, "feet"),
  17273. weight: math.unit(110, "lb"),
  17274. name: "Front",
  17275. image: {
  17276. source: "./media/characters/klay/front.svg",
  17277. extra: 962 / 883,
  17278. bottom: 0.04
  17279. }
  17280. },
  17281. back: {
  17282. height: math.unit(6, "feet"),
  17283. weight: math.unit(110, "lb"),
  17284. name: "Back",
  17285. image: {
  17286. source: "./media/characters/klay/back.svg",
  17287. extra: 962 / 883
  17288. }
  17289. },
  17290. beans: {
  17291. height: math.unit(1.15, "feet"),
  17292. name: "Beans",
  17293. image: {
  17294. source: "./media/characters/klay/beans.svg"
  17295. }
  17296. },
  17297. },
  17298. [
  17299. {
  17300. name: "Micro",
  17301. height: math.unit(6, "inches")
  17302. },
  17303. {
  17304. name: "Mini",
  17305. height: math.unit(3, "feet")
  17306. },
  17307. {
  17308. name: "Normal",
  17309. height: math.unit(6, "feet"),
  17310. default: true
  17311. },
  17312. {
  17313. name: "Big",
  17314. height: math.unit(25, "feet")
  17315. },
  17316. {
  17317. name: "Macro",
  17318. height: math.unit(100, "feet")
  17319. },
  17320. {
  17321. name: "Megamacro",
  17322. height: math.unit(400, "feet")
  17323. },
  17324. ]
  17325. ))
  17326. characterMakers.push(() => makeCharacter(
  17327. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17328. {
  17329. front: {
  17330. height: math.unit(6, "feet"),
  17331. weight: math.unit(160, "lb"),
  17332. name: "Front",
  17333. image: {
  17334. source: "./media/characters/marcus/front.svg",
  17335. extra: 734 / 676,
  17336. bottom: 0.03
  17337. }
  17338. },
  17339. },
  17340. [
  17341. {
  17342. name: "Little",
  17343. height: math.unit(6, "feet")
  17344. },
  17345. {
  17346. name: "Normal",
  17347. height: math.unit(110, "feet"),
  17348. default: true
  17349. },
  17350. {
  17351. name: "Macro",
  17352. height: math.unit(250, "feet")
  17353. },
  17354. {
  17355. name: "Megamacro",
  17356. height: math.unit(1000, "feet")
  17357. },
  17358. ]
  17359. ))
  17360. characterMakers.push(() => makeCharacter(
  17361. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17362. {
  17363. front: {
  17364. height: math.unit(7, "feet"),
  17365. weight: math.unit(275, "lb"),
  17366. name: "Front",
  17367. image: {
  17368. source: "./media/characters/claude-delroute/front.svg",
  17369. extra: 230 / 214,
  17370. bottom: 0.007
  17371. }
  17372. },
  17373. side: {
  17374. height: math.unit(7, "feet"),
  17375. weight: math.unit(275, "lb"),
  17376. name: "Side",
  17377. image: {
  17378. source: "./media/characters/claude-delroute/side.svg",
  17379. extra: 222 / 214,
  17380. bottom: 0.01
  17381. }
  17382. },
  17383. back: {
  17384. height: math.unit(7, "feet"),
  17385. weight: math.unit(275, "lb"),
  17386. name: "Back",
  17387. image: {
  17388. source: "./media/characters/claude-delroute/back.svg",
  17389. extra: 230 / 214,
  17390. bottom: 0.015
  17391. }
  17392. },
  17393. maw: {
  17394. height: math.unit(0.6407, "meters"),
  17395. name: "Maw",
  17396. image: {
  17397. source: "./media/characters/claude-delroute/maw.svg"
  17398. }
  17399. },
  17400. },
  17401. [
  17402. {
  17403. name: "Normal",
  17404. height: math.unit(7, "feet"),
  17405. default: true
  17406. },
  17407. {
  17408. name: "Lorge",
  17409. height: math.unit(20, "feet")
  17410. },
  17411. ]
  17412. ))
  17413. characterMakers.push(() => makeCharacter(
  17414. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17415. {
  17416. front: {
  17417. height: math.unit(8 + 4 / 12, "feet"),
  17418. weight: math.unit(600, "lb"),
  17419. name: "Front",
  17420. image: {
  17421. source: "./media/characters/dragonien/front.svg",
  17422. extra: 100 / 94,
  17423. bottom: 3.3 / 103.3445
  17424. }
  17425. },
  17426. back: {
  17427. height: math.unit(8 + 4 / 12, "feet"),
  17428. weight: math.unit(600, "lb"),
  17429. name: "Back",
  17430. image: {
  17431. source: "./media/characters/dragonien/back.svg",
  17432. extra: 776 / 746,
  17433. bottom: 6.4 / 782.0616
  17434. }
  17435. },
  17436. foot: {
  17437. height: math.unit(1.54, "feet"),
  17438. name: "Foot",
  17439. image: {
  17440. source: "./media/characters/dragonien/foot.svg",
  17441. }
  17442. },
  17443. },
  17444. [
  17445. {
  17446. name: "Normal",
  17447. height: math.unit(8 + 4 / 12, "feet"),
  17448. default: true
  17449. },
  17450. {
  17451. name: "Macro",
  17452. height: math.unit(200, "feet")
  17453. },
  17454. {
  17455. name: "Megamacro",
  17456. height: math.unit(1, "mile")
  17457. },
  17458. {
  17459. name: "Gigamacro",
  17460. height: math.unit(1000, "miles")
  17461. },
  17462. ]
  17463. ))
  17464. characterMakers.push(() => makeCharacter(
  17465. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17466. {
  17467. front: {
  17468. height: math.unit(5 + 2 / 12, "feet"),
  17469. weight: math.unit(110, "lb"),
  17470. name: "Front",
  17471. image: {
  17472. source: "./media/characters/desta/front.svg",
  17473. extra: 767/726,
  17474. bottom: 11.7/779
  17475. }
  17476. },
  17477. back: {
  17478. height: math.unit(5 + 2 / 12, "feet"),
  17479. weight: math.unit(110, "lb"),
  17480. name: "Back",
  17481. image: {
  17482. source: "./media/characters/desta/back.svg",
  17483. extra: 777/728,
  17484. bottom: 6/784
  17485. }
  17486. },
  17487. frontAlt: {
  17488. height: math.unit(5 + 2 / 12, "feet"),
  17489. weight: math.unit(110, "lb"),
  17490. name: "Front",
  17491. image: {
  17492. source: "./media/characters/desta/front-alt.svg",
  17493. extra: 1482 / 1417
  17494. }
  17495. },
  17496. side: {
  17497. height: math.unit(5 + 2 / 12, "feet"),
  17498. weight: math.unit(110, "lb"),
  17499. name: "Side",
  17500. image: {
  17501. source: "./media/characters/desta/side.svg",
  17502. extra: 2579 / 2491,
  17503. bottom: 0.053
  17504. }
  17505. },
  17506. },
  17507. [
  17508. {
  17509. name: "Micro",
  17510. height: math.unit(6, "inches")
  17511. },
  17512. {
  17513. name: "Normal",
  17514. height: math.unit(5 + 2 / 12, "feet"),
  17515. default: true
  17516. },
  17517. {
  17518. name: "Macro",
  17519. height: math.unit(62, "feet")
  17520. },
  17521. {
  17522. name: "Megamacro",
  17523. height: math.unit(1800, "feet")
  17524. },
  17525. ]
  17526. ))
  17527. characterMakers.push(() => makeCharacter(
  17528. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17529. {
  17530. front: {
  17531. height: math.unit(10, "feet"),
  17532. weight: math.unit(700, "lb"),
  17533. name: "Front",
  17534. image: {
  17535. source: "./media/characters/storm-alystar/front.svg",
  17536. extra: 2112 / 1898,
  17537. bottom: 0.034
  17538. }
  17539. },
  17540. },
  17541. [
  17542. {
  17543. name: "Micro",
  17544. height: math.unit(3.5, "inches")
  17545. },
  17546. {
  17547. name: "Normal",
  17548. height: math.unit(10, "feet"),
  17549. default: true
  17550. },
  17551. {
  17552. name: "Macro",
  17553. height: math.unit(400, "feet")
  17554. },
  17555. {
  17556. name: "Deific",
  17557. height: math.unit(60, "miles")
  17558. },
  17559. ]
  17560. ))
  17561. characterMakers.push(() => makeCharacter(
  17562. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17563. {
  17564. front: {
  17565. height: math.unit(2.35, "meters"),
  17566. weight: math.unit(119, "kg"),
  17567. name: "Front",
  17568. image: {
  17569. source: "./media/characters/ilia/front.svg",
  17570. extra: 1285 / 1255,
  17571. bottom: 0.06
  17572. }
  17573. },
  17574. },
  17575. [
  17576. {
  17577. name: "Normal",
  17578. height: math.unit(2.35, "meters")
  17579. },
  17580. {
  17581. name: "Macro",
  17582. height: math.unit(140, "meters"),
  17583. default: true
  17584. },
  17585. {
  17586. name: "Megamacro",
  17587. height: math.unit(100, "miles")
  17588. },
  17589. ]
  17590. ))
  17591. characterMakers.push(() => makeCharacter(
  17592. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17593. {
  17594. front: {
  17595. height: math.unit(6 + 5 / 12, "feet"),
  17596. weight: math.unit(190, "lb"),
  17597. name: "Front",
  17598. image: {
  17599. source: "./media/characters/kingdead/front.svg",
  17600. extra: 1228 / 1177
  17601. }
  17602. },
  17603. },
  17604. [
  17605. {
  17606. name: "Micro",
  17607. height: math.unit(7, "inches")
  17608. },
  17609. {
  17610. name: "Normal",
  17611. height: math.unit(6 + 5 / 12, "feet")
  17612. },
  17613. {
  17614. name: "Macro",
  17615. height: math.unit(150, "feet"),
  17616. default: true
  17617. },
  17618. {
  17619. name: "Megamacro",
  17620. height: math.unit(200, "miles")
  17621. },
  17622. ]
  17623. ))
  17624. characterMakers.push(() => makeCharacter(
  17625. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17626. {
  17627. front: {
  17628. height: math.unit(8, "feet"),
  17629. weight: math.unit(600, "lb"),
  17630. name: "Front",
  17631. image: {
  17632. source: "./media/characters/kyrehx/front.svg",
  17633. extra: 1195 / 1095,
  17634. bottom: 0.034
  17635. }
  17636. },
  17637. },
  17638. [
  17639. {
  17640. name: "Micro",
  17641. height: math.unit(2, "inches")
  17642. },
  17643. {
  17644. name: "Normal",
  17645. height: math.unit(8, "feet"),
  17646. default: true
  17647. },
  17648. {
  17649. name: "Macro",
  17650. height: math.unit(255, "feet")
  17651. },
  17652. ]
  17653. ))
  17654. characterMakers.push(() => makeCharacter(
  17655. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17656. {
  17657. front: {
  17658. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17659. weight: math.unit(184, "lb"),
  17660. name: "Front",
  17661. image: {
  17662. source: "./media/characters/xang/front.svg",
  17663. extra: 845 / 755
  17664. }
  17665. },
  17666. },
  17667. [
  17668. {
  17669. name: "Normal",
  17670. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17671. default: true
  17672. },
  17673. {
  17674. name: "Macro",
  17675. height: math.unit(0.935 * 146, "feet")
  17676. },
  17677. {
  17678. name: "Megamacro",
  17679. height: math.unit(0.935 * 3, "miles")
  17680. },
  17681. ]
  17682. ))
  17683. characterMakers.push(() => makeCharacter(
  17684. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17685. {
  17686. frontDressed: {
  17687. height: math.unit(5 + 7 / 12, "feet"),
  17688. weight: math.unit(140, "lb"),
  17689. name: "Front (Dressed)",
  17690. image: {
  17691. source: "./media/characters/doc-weardno/front-dressed.svg",
  17692. extra: 263 / 234
  17693. }
  17694. },
  17695. backDressed: {
  17696. height: math.unit(5 + 7 / 12, "feet"),
  17697. weight: math.unit(140, "lb"),
  17698. name: "Back (Dressed)",
  17699. image: {
  17700. source: "./media/characters/doc-weardno/back-dressed.svg",
  17701. extra: 266 / 238
  17702. }
  17703. },
  17704. front: {
  17705. height: math.unit(5 + 7 / 12, "feet"),
  17706. weight: math.unit(140, "lb"),
  17707. name: "Front",
  17708. image: {
  17709. source: "./media/characters/doc-weardno/front.svg",
  17710. extra: 254 / 233
  17711. }
  17712. },
  17713. },
  17714. [
  17715. {
  17716. name: "Micro",
  17717. height: math.unit(3, "inches")
  17718. },
  17719. {
  17720. name: "Normal",
  17721. height: math.unit(5 + 7 / 12, "feet"),
  17722. default: true
  17723. },
  17724. {
  17725. name: "Macro",
  17726. height: math.unit(25, "feet")
  17727. },
  17728. {
  17729. name: "Megamacro",
  17730. height: math.unit(2, "miles")
  17731. },
  17732. ]
  17733. ))
  17734. characterMakers.push(() => makeCharacter(
  17735. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17736. {
  17737. front: {
  17738. height: math.unit(6 + 2 / 12, "feet"),
  17739. weight: math.unit(153, "lb"),
  17740. name: "Front",
  17741. image: {
  17742. source: "./media/characters/seth-whilst/front.svg",
  17743. bottom: 0.07
  17744. }
  17745. },
  17746. },
  17747. [
  17748. {
  17749. name: "Micro",
  17750. height: math.unit(5, "inches")
  17751. },
  17752. {
  17753. name: "Normal",
  17754. height: math.unit(6 + 2 / 12, "feet"),
  17755. default: true
  17756. },
  17757. ]
  17758. ))
  17759. characterMakers.push(() => makeCharacter(
  17760. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17761. {
  17762. front: {
  17763. height: math.unit(3, "inches"),
  17764. weight: math.unit(8, "grams"),
  17765. name: "Front",
  17766. image: {
  17767. source: "./media/characters/pocket-jabari/front.svg",
  17768. extra: 1024 / 974,
  17769. bottom: 0.039
  17770. }
  17771. },
  17772. },
  17773. [
  17774. {
  17775. name: "Minimicro",
  17776. height: math.unit(8, "mm")
  17777. },
  17778. {
  17779. name: "Micro",
  17780. height: math.unit(3, "inches"),
  17781. default: true
  17782. },
  17783. {
  17784. name: "Normal",
  17785. height: math.unit(3, "feet")
  17786. },
  17787. ]
  17788. ))
  17789. characterMakers.push(() => makeCharacter(
  17790. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17791. {
  17792. front: {
  17793. height: math.unit(15, "feet"),
  17794. weight: math.unit(3280, "lb"),
  17795. name: "Front",
  17796. image: {
  17797. source: "./media/characters/sapphy/front.svg",
  17798. extra: 671 / 577,
  17799. bottom: 0.085
  17800. }
  17801. },
  17802. back: {
  17803. height: math.unit(15, "feet"),
  17804. weight: math.unit(3280, "lb"),
  17805. name: "Back",
  17806. image: {
  17807. source: "./media/characters/sapphy/back.svg",
  17808. extra: 631 / 607,
  17809. bottom: 0.045
  17810. }
  17811. },
  17812. },
  17813. [
  17814. {
  17815. name: "Normal",
  17816. height: math.unit(15, "feet")
  17817. },
  17818. {
  17819. name: "Casual Macro",
  17820. height: math.unit(120, "feet")
  17821. },
  17822. {
  17823. name: "Macro",
  17824. height: math.unit(2150, "feet"),
  17825. default: true
  17826. },
  17827. {
  17828. name: "Megamacro",
  17829. height: math.unit(8, "miles")
  17830. },
  17831. {
  17832. name: "Galaxy Mom",
  17833. height: math.unit(6, "megalightyears")
  17834. },
  17835. ]
  17836. ))
  17837. characterMakers.push(() => makeCharacter(
  17838. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17839. {
  17840. front: {
  17841. height: math.unit(6, "feet"),
  17842. weight: math.unit(170, "lb"),
  17843. name: "Front",
  17844. image: {
  17845. source: "./media/characters/kiro/front.svg",
  17846. extra: 1064 / 1012,
  17847. bottom: 0.052
  17848. }
  17849. },
  17850. },
  17851. [
  17852. {
  17853. name: "Micro",
  17854. height: math.unit(6, "inches")
  17855. },
  17856. {
  17857. name: "Normal",
  17858. height: math.unit(6, "feet"),
  17859. default: true
  17860. },
  17861. {
  17862. name: "Macro",
  17863. height: math.unit(72, "feet")
  17864. },
  17865. ]
  17866. ))
  17867. characterMakers.push(() => makeCharacter(
  17868. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17869. {
  17870. front: {
  17871. height: math.unit(5 + 9 / 12, "feet"),
  17872. weight: math.unit(175, "lb"),
  17873. name: "Front",
  17874. image: {
  17875. source: "./media/characters/irishfox/front.svg",
  17876. extra: 1912 / 1680,
  17877. bottom: 0.02
  17878. }
  17879. },
  17880. },
  17881. [
  17882. {
  17883. name: "Nano",
  17884. height: math.unit(1, "mm")
  17885. },
  17886. {
  17887. name: "Micro",
  17888. height: math.unit(2, "inches")
  17889. },
  17890. {
  17891. name: "Normal",
  17892. height: math.unit(5 + 9 / 12, "feet"),
  17893. default: true
  17894. },
  17895. {
  17896. name: "Macro",
  17897. height: math.unit(45, "feet")
  17898. },
  17899. ]
  17900. ))
  17901. characterMakers.push(() => makeCharacter(
  17902. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  17903. {
  17904. front: {
  17905. height: math.unit(6 + 1 / 12, "feet"),
  17906. weight: math.unit(150, "lb"),
  17907. name: "Front",
  17908. image: {
  17909. source: "./media/characters/aronai-sieyes/front.svg",
  17910. extra: 1556 / 1480,
  17911. bottom: 0.015
  17912. }
  17913. },
  17914. side: {
  17915. height: math.unit(6 + 1 / 12, "feet"),
  17916. weight: math.unit(150, "lb"),
  17917. name: "Side",
  17918. image: {
  17919. source: "./media/characters/aronai-sieyes/side.svg",
  17920. extra: 1433 / 1390,
  17921. bottom: 0.0393
  17922. }
  17923. },
  17924. back: {
  17925. height: math.unit(6 + 1 / 12, "feet"),
  17926. weight: math.unit(150, "lb"),
  17927. name: "Back",
  17928. image: {
  17929. source: "./media/characters/aronai-sieyes/back.svg",
  17930. extra: 1544 / 1494,
  17931. bottom: 0.02
  17932. }
  17933. },
  17934. frontClothed: {
  17935. height: math.unit(6 + 1 / 12, "feet"),
  17936. weight: math.unit(150, "lb"),
  17937. name: "Front (Clothed)",
  17938. image: {
  17939. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17940. extra: 1582 / 1527
  17941. }
  17942. },
  17943. feral: {
  17944. height: math.unit(18, "feet"),
  17945. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17946. name: "Feral",
  17947. image: {
  17948. source: "./media/characters/aronai-sieyes/feral.svg",
  17949. extra: 1530 / 1240,
  17950. bottom: 0.035
  17951. }
  17952. },
  17953. },
  17954. [
  17955. {
  17956. name: "Micro",
  17957. height: math.unit(2, "inches")
  17958. },
  17959. {
  17960. name: "Normal",
  17961. height: math.unit(6 + 1 / 12, "feet"),
  17962. default: true
  17963. }
  17964. ]
  17965. ))
  17966. characterMakers.push(() => makeCharacter(
  17967. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  17968. {
  17969. front: {
  17970. height: math.unit(12, "feet"),
  17971. weight: math.unit(410, "kg"),
  17972. name: "Front",
  17973. image: {
  17974. source: "./media/characters/xuna/front.svg",
  17975. extra: 2184 / 1980
  17976. }
  17977. },
  17978. side: {
  17979. height: math.unit(12, "feet"),
  17980. weight: math.unit(410, "kg"),
  17981. name: "Side",
  17982. image: {
  17983. source: "./media/characters/xuna/side.svg",
  17984. extra: 2184 / 1980
  17985. }
  17986. },
  17987. back: {
  17988. height: math.unit(12, "feet"),
  17989. weight: math.unit(410, "kg"),
  17990. name: "Back",
  17991. image: {
  17992. source: "./media/characters/xuna/back.svg",
  17993. extra: 2184 / 1980
  17994. }
  17995. },
  17996. },
  17997. [
  17998. {
  17999. name: "Nano glow",
  18000. height: math.unit(10, "nm")
  18001. },
  18002. {
  18003. name: "Micro floof",
  18004. height: math.unit(0.3, "m")
  18005. },
  18006. {
  18007. name: "Huggable softy boi",
  18008. height: math.unit(3.6576, "m"),
  18009. default: true
  18010. },
  18011. {
  18012. name: "Admirable floof",
  18013. height: math.unit(80, "meters")
  18014. },
  18015. {
  18016. name: "Gentle macro",
  18017. height: math.unit(300, "meters")
  18018. },
  18019. {
  18020. name: "Very careful floof",
  18021. height: math.unit(3200, "meters")
  18022. },
  18023. {
  18024. name: "The mega floof",
  18025. height: math.unit(36000, "meters")
  18026. },
  18027. {
  18028. name: "Giga-fur-Wicker",
  18029. height: math.unit(4800000, "meters")
  18030. },
  18031. {
  18032. name: "Licky world",
  18033. height: math.unit(20000000, "meters")
  18034. },
  18035. {
  18036. name: "Floofy cyan sun",
  18037. height: math.unit(1500000000, "meters")
  18038. },
  18039. {
  18040. name: "Milky Wicker",
  18041. height: math.unit(1000000000000000000000, "meters")
  18042. },
  18043. {
  18044. name: "The observing Wicker",
  18045. height: math.unit(999999999999999999999999999, "meters")
  18046. },
  18047. ]
  18048. ))
  18049. characterMakers.push(() => makeCharacter(
  18050. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18051. {
  18052. front: {
  18053. height: math.unit(5 + 9 / 12, "feet"),
  18054. weight: math.unit(150, "lb"),
  18055. name: "Front",
  18056. image: {
  18057. source: "./media/characters/arokha-sieyes/front.svg",
  18058. extra: 1425 / 1284,
  18059. bottom: 0.05
  18060. }
  18061. },
  18062. },
  18063. [
  18064. {
  18065. name: "Normal",
  18066. height: math.unit(5 + 9 / 12, "feet")
  18067. },
  18068. {
  18069. name: "Macro",
  18070. height: math.unit(30, "meters"),
  18071. default: true
  18072. },
  18073. ]
  18074. ))
  18075. characterMakers.push(() => makeCharacter(
  18076. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18077. {
  18078. front: {
  18079. height: math.unit(6, "feet"),
  18080. weight: math.unit(180, "lb"),
  18081. name: "Front",
  18082. image: {
  18083. source: "./media/characters/arokh-sieyes/front.svg",
  18084. extra: 1830 / 1769,
  18085. bottom: 0.01
  18086. }
  18087. },
  18088. },
  18089. [
  18090. {
  18091. name: "Normal",
  18092. height: math.unit(6, "feet")
  18093. },
  18094. {
  18095. name: "Macro",
  18096. height: math.unit(30, "meters"),
  18097. default: true
  18098. },
  18099. ]
  18100. ))
  18101. characterMakers.push(() => makeCharacter(
  18102. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18103. {
  18104. side: {
  18105. height: math.unit(13 + 1 / 12, "feet"),
  18106. weight: math.unit(8.5, "tonnes"),
  18107. name: "Side",
  18108. image: {
  18109. source: "./media/characters/goldeneye/side.svg",
  18110. extra: 1182 / 778,
  18111. bottom: 0.067
  18112. }
  18113. },
  18114. paw: {
  18115. height: math.unit(3.4, "feet"),
  18116. name: "Paw",
  18117. image: {
  18118. source: "./media/characters/goldeneye/paw.svg"
  18119. }
  18120. },
  18121. },
  18122. [
  18123. {
  18124. name: "Normal",
  18125. height: math.unit(13 + 1 / 12, "feet"),
  18126. default: true
  18127. },
  18128. ]
  18129. ))
  18130. characterMakers.push(() => makeCharacter(
  18131. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18132. {
  18133. front: {
  18134. height: math.unit(6 + 1 / 12, "feet"),
  18135. weight: math.unit(210, "lb"),
  18136. name: "Front",
  18137. image: {
  18138. source: "./media/characters/leonardo-lycheborne/front.svg",
  18139. extra: 390 / 365,
  18140. bottom: 0.032
  18141. }
  18142. },
  18143. side: {
  18144. height: math.unit(6 + 1 / 12, "feet"),
  18145. weight: math.unit(210, "lb"),
  18146. name: "Side",
  18147. image: {
  18148. source: "./media/characters/leonardo-lycheborne/side.svg",
  18149. extra: 390 / 365,
  18150. bottom: 0.005
  18151. }
  18152. },
  18153. back: {
  18154. height: math.unit(6 + 1 / 12, "feet"),
  18155. weight: math.unit(210, "lb"),
  18156. name: "Back",
  18157. image: {
  18158. source: "./media/characters/leonardo-lycheborne/back.svg",
  18159. extra: 392 / 366,
  18160. bottom: 0.01
  18161. }
  18162. },
  18163. hand: {
  18164. height: math.unit(1.08, "feet"),
  18165. name: "Hand",
  18166. image: {
  18167. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18168. }
  18169. },
  18170. foot: {
  18171. height: math.unit(1.32, "feet"),
  18172. name: "Foot",
  18173. image: {
  18174. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18175. }
  18176. },
  18177. were: {
  18178. height: math.unit(20, "feet"),
  18179. weight: math.unit(7800, "lb"),
  18180. name: "Were",
  18181. image: {
  18182. source: "./media/characters/leonardo-lycheborne/were.svg",
  18183. extra: 308 / 294,
  18184. bottom: 0.048
  18185. }
  18186. },
  18187. feral: {
  18188. height: math.unit(7.5, "feet"),
  18189. weight: math.unit(600, "lb"),
  18190. name: "Feral",
  18191. image: {
  18192. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18193. extra: 210 / 186,
  18194. bottom: 0.108
  18195. }
  18196. },
  18197. taur: {
  18198. height: math.unit(11, "feet"),
  18199. weight: math.unit(3300, "lb"),
  18200. name: "Taur",
  18201. image: {
  18202. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18203. extra: 320 / 303,
  18204. bottom: 0.025
  18205. }
  18206. },
  18207. barghest: {
  18208. height: math.unit(11, "feet"),
  18209. weight: math.unit(1300, "lb"),
  18210. name: "Barghest",
  18211. image: {
  18212. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18213. extra: 323 / 302,
  18214. bottom: 0.027
  18215. }
  18216. },
  18217. dick: {
  18218. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18219. name: "Dick",
  18220. image: {
  18221. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18222. }
  18223. },
  18224. dickWere: {
  18225. height: math.unit((20) / 3.8, "feet"),
  18226. name: "Dick (Were)",
  18227. image: {
  18228. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18229. }
  18230. },
  18231. },
  18232. [
  18233. {
  18234. name: "Normal",
  18235. height: math.unit(6 + 1 / 12, "feet"),
  18236. default: true
  18237. },
  18238. ]
  18239. ))
  18240. characterMakers.push(() => makeCharacter(
  18241. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18242. {
  18243. front: {
  18244. height: math.unit(10, "feet"),
  18245. weight: math.unit(350, "lb"),
  18246. name: "Front",
  18247. image: {
  18248. source: "./media/characters/jet/front.svg",
  18249. extra: 2050 / 1980,
  18250. bottom: 0.013
  18251. }
  18252. },
  18253. back: {
  18254. height: math.unit(10, "feet"),
  18255. weight: math.unit(350, "lb"),
  18256. name: "Back",
  18257. image: {
  18258. source: "./media/characters/jet/back.svg",
  18259. extra: 2050 / 1980,
  18260. bottom: 0.013
  18261. }
  18262. },
  18263. },
  18264. [
  18265. {
  18266. name: "Micro",
  18267. height: math.unit(6, "inches")
  18268. },
  18269. {
  18270. name: "Normal",
  18271. height: math.unit(10, "feet"),
  18272. default: true
  18273. },
  18274. {
  18275. name: "Macro",
  18276. height: math.unit(100, "feet")
  18277. },
  18278. ]
  18279. ))
  18280. characterMakers.push(() => makeCharacter(
  18281. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18282. {
  18283. front: {
  18284. height: math.unit(15, "feet"),
  18285. weight: math.unit(2800, "lb"),
  18286. name: "Front",
  18287. image: {
  18288. source: "./media/characters/tanarath/front.svg",
  18289. extra: 2392 / 2220,
  18290. bottom: 0.03
  18291. }
  18292. },
  18293. back: {
  18294. height: math.unit(15, "feet"),
  18295. weight: math.unit(2800, "lb"),
  18296. name: "Back",
  18297. image: {
  18298. source: "./media/characters/tanarath/back.svg",
  18299. extra: 2392 / 2220,
  18300. bottom: 0.03
  18301. }
  18302. },
  18303. },
  18304. [
  18305. {
  18306. name: "Normal",
  18307. height: math.unit(15, "feet"),
  18308. default: true
  18309. },
  18310. ]
  18311. ))
  18312. characterMakers.push(() => makeCharacter(
  18313. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18314. {
  18315. front: {
  18316. height: math.unit(7 + 1 / 12, "feet"),
  18317. weight: math.unit(175, "lb"),
  18318. name: "Front",
  18319. image: {
  18320. source: "./media/characters/patty-cattybatty/front.svg",
  18321. extra: 908 / 874,
  18322. bottom: 0.025
  18323. }
  18324. },
  18325. },
  18326. [
  18327. {
  18328. name: "Micro",
  18329. height: math.unit(1, "inch")
  18330. },
  18331. {
  18332. name: "Normal",
  18333. height: math.unit(7 + 1 / 12, "feet")
  18334. },
  18335. {
  18336. name: "Mini Macro",
  18337. height: math.unit(155, "feet")
  18338. },
  18339. {
  18340. name: "Macro",
  18341. height: math.unit(1077, "feet")
  18342. },
  18343. {
  18344. name: "Mega Macro",
  18345. height: math.unit(47650, "feet"),
  18346. default: true
  18347. },
  18348. {
  18349. name: "Giga Macro",
  18350. height: math.unit(440, "miles")
  18351. },
  18352. {
  18353. name: "Tera Macro",
  18354. height: math.unit(8700, "miles")
  18355. },
  18356. {
  18357. name: "Planetary Macro",
  18358. height: math.unit(32700, "miles")
  18359. },
  18360. {
  18361. name: "Solar Macro",
  18362. height: math.unit(550000, "miles")
  18363. },
  18364. {
  18365. name: "Celestial Macro",
  18366. height: math.unit(2.5, "AU")
  18367. },
  18368. ]
  18369. ))
  18370. characterMakers.push(() => makeCharacter(
  18371. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18372. {
  18373. front: {
  18374. height: math.unit(4 + 5 / 12, "feet"),
  18375. weight: math.unit(90, "lb"),
  18376. name: "Front",
  18377. image: {
  18378. source: "./media/characters/cappu/front.svg",
  18379. extra: 1247 / 1152,
  18380. bottom: 0.012
  18381. }
  18382. },
  18383. },
  18384. [
  18385. {
  18386. name: "Normal",
  18387. height: math.unit(4 + 5 / 12, "feet"),
  18388. default: true
  18389. },
  18390. ]
  18391. ))
  18392. characterMakers.push(() => makeCharacter(
  18393. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18394. {
  18395. frontDressed: {
  18396. height: math.unit(70, "cm"),
  18397. weight: math.unit(6, "kg"),
  18398. name: "Front (Dressed)",
  18399. image: {
  18400. source: "./media/characters/sebi/front-dressed.svg",
  18401. extra: 713.5 / 686.5,
  18402. bottom: 0.003
  18403. }
  18404. },
  18405. front: {
  18406. height: math.unit(70, "cm"),
  18407. weight: math.unit(5, "kg"),
  18408. name: "Front",
  18409. image: {
  18410. source: "./media/characters/sebi/front.svg",
  18411. extra: 713.5 / 686.5,
  18412. bottom: 0.003
  18413. }
  18414. }
  18415. },
  18416. [
  18417. {
  18418. name: "Normal",
  18419. height: math.unit(70, "cm"),
  18420. default: true
  18421. },
  18422. {
  18423. name: "Macro",
  18424. height: math.unit(8, "meters")
  18425. },
  18426. ]
  18427. ))
  18428. characterMakers.push(() => makeCharacter(
  18429. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18430. {
  18431. front: {
  18432. height: math.unit(6, "feet"),
  18433. weight: math.unit(150, "lb"),
  18434. name: "Front",
  18435. image: {
  18436. source: "./media/characters/typhek/front.svg",
  18437. extra: 1948 / 1929,
  18438. bottom: 0.025
  18439. }
  18440. },
  18441. side: {
  18442. height: math.unit(6, "feet"),
  18443. weight: math.unit(150, "lb"),
  18444. name: "Side",
  18445. image: {
  18446. source: "./media/characters/typhek/side.svg",
  18447. extra: 2034 / 2010,
  18448. bottom: 0.003
  18449. }
  18450. },
  18451. back: {
  18452. height: math.unit(6, "feet"),
  18453. weight: math.unit(150, "lb"),
  18454. name: "Back",
  18455. image: {
  18456. source: "./media/characters/typhek/back.svg",
  18457. extra: 2005 / 1978,
  18458. bottom: 0.004
  18459. }
  18460. },
  18461. palm: {
  18462. height: math.unit(1.2, "feet"),
  18463. name: "Palm",
  18464. image: {
  18465. source: "./media/characters/typhek/palm.svg"
  18466. }
  18467. },
  18468. fist: {
  18469. height: math.unit(1.1, "feet"),
  18470. name: "Fist",
  18471. image: {
  18472. source: "./media/characters/typhek/fist.svg"
  18473. }
  18474. },
  18475. foot: {
  18476. height: math.unit(1.57, "feet"),
  18477. name: "Foot",
  18478. image: {
  18479. source: "./media/characters/typhek/foot.svg"
  18480. }
  18481. },
  18482. sole: {
  18483. height: math.unit(2.05, "feet"),
  18484. name: "Sole",
  18485. image: {
  18486. source: "./media/characters/typhek/sole.svg"
  18487. }
  18488. },
  18489. },
  18490. [
  18491. {
  18492. name: "Macro",
  18493. height: math.unit(40, "stories"),
  18494. default: true
  18495. },
  18496. {
  18497. name: "Megamacro",
  18498. height: math.unit(1, "mile")
  18499. },
  18500. {
  18501. name: "Gigamacro",
  18502. height: math.unit(4000, "solarradii")
  18503. },
  18504. {
  18505. name: "Universal",
  18506. height: math.unit(1.1, "universes")
  18507. }
  18508. ]
  18509. ))
  18510. characterMakers.push(() => makeCharacter(
  18511. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18512. {
  18513. side: {
  18514. height: math.unit(5 + 7 / 12, "feet"),
  18515. weight: math.unit(150, "lb"),
  18516. name: "Side",
  18517. image: {
  18518. source: "./media/characters/kassy/side.svg",
  18519. extra: 1280 / 1225,
  18520. bottom: 0.002
  18521. }
  18522. },
  18523. front: {
  18524. height: math.unit(5 + 7 / 12, "feet"),
  18525. weight: math.unit(150, "lb"),
  18526. name: "Front",
  18527. image: {
  18528. source: "./media/characters/kassy/front.svg",
  18529. extra: 1280 / 1225,
  18530. bottom: 0.025
  18531. }
  18532. },
  18533. back: {
  18534. height: math.unit(5 + 7 / 12, "feet"),
  18535. weight: math.unit(150, "lb"),
  18536. name: "Back",
  18537. image: {
  18538. source: "./media/characters/kassy/back.svg",
  18539. extra: 1280 / 1225,
  18540. bottom: 0.002
  18541. }
  18542. },
  18543. foot: {
  18544. height: math.unit(1.266, "feet"),
  18545. name: "Foot",
  18546. image: {
  18547. source: "./media/characters/kassy/foot.svg"
  18548. }
  18549. },
  18550. },
  18551. [
  18552. {
  18553. name: "Normal",
  18554. height: math.unit(5 + 7 / 12, "feet")
  18555. },
  18556. {
  18557. name: "Macro",
  18558. height: math.unit(137, "feet"),
  18559. default: true
  18560. },
  18561. {
  18562. name: "Megamacro",
  18563. height: math.unit(1, "mile")
  18564. },
  18565. ]
  18566. ))
  18567. characterMakers.push(() => makeCharacter(
  18568. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18569. {
  18570. front: {
  18571. height: math.unit(6 + 1 / 12, "feet"),
  18572. weight: math.unit(200, "lb"),
  18573. name: "Front",
  18574. image: {
  18575. source: "./media/characters/neil/front.svg",
  18576. extra: 1326 / 1250,
  18577. bottom: 0.023
  18578. }
  18579. },
  18580. },
  18581. [
  18582. {
  18583. name: "Normal",
  18584. height: math.unit(6 + 1 / 12, "feet"),
  18585. default: true
  18586. },
  18587. {
  18588. name: "Macro",
  18589. height: math.unit(200, "feet")
  18590. },
  18591. ]
  18592. ))
  18593. characterMakers.push(() => makeCharacter(
  18594. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18595. {
  18596. front: {
  18597. height: math.unit(5 + 9 / 12, "feet"),
  18598. weight: math.unit(190, "lb"),
  18599. name: "Front",
  18600. image: {
  18601. source: "./media/characters/atticus/front.svg",
  18602. extra: 2934 / 2785,
  18603. bottom: 0.025
  18604. }
  18605. },
  18606. },
  18607. [
  18608. {
  18609. name: "Normal",
  18610. height: math.unit(5 + 9 / 12, "feet"),
  18611. default: true
  18612. },
  18613. {
  18614. name: "Macro",
  18615. height: math.unit(180, "feet")
  18616. },
  18617. ]
  18618. ))
  18619. characterMakers.push(() => makeCharacter(
  18620. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18621. {
  18622. side: {
  18623. height: math.unit(9, "feet"),
  18624. weight: math.unit(650, "lb"),
  18625. name: "Side",
  18626. image: {
  18627. source: "./media/characters/milo/side.svg",
  18628. extra: 2644 / 2310,
  18629. bottom: 0.032
  18630. }
  18631. },
  18632. },
  18633. [
  18634. {
  18635. name: "Normal",
  18636. height: math.unit(9, "feet"),
  18637. default: true
  18638. },
  18639. {
  18640. name: "Macro",
  18641. height: math.unit(300, "feet")
  18642. },
  18643. ]
  18644. ))
  18645. characterMakers.push(() => makeCharacter(
  18646. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18647. {
  18648. side: {
  18649. height: math.unit(8, "meters"),
  18650. weight: math.unit(90000, "kg"),
  18651. name: "Side",
  18652. image: {
  18653. source: "./media/characters/ijzer/side.svg",
  18654. extra: 2756 / 1600,
  18655. bottom: 0.01
  18656. }
  18657. },
  18658. },
  18659. [
  18660. {
  18661. name: "Small",
  18662. height: math.unit(3, "meters")
  18663. },
  18664. {
  18665. name: "Normal",
  18666. height: math.unit(8, "meters"),
  18667. default: true
  18668. },
  18669. {
  18670. name: "Normal+",
  18671. height: math.unit(10, "meters")
  18672. },
  18673. {
  18674. name: "Bigger",
  18675. height: math.unit(24, "meters")
  18676. },
  18677. {
  18678. name: "Huge",
  18679. height: math.unit(80, "meters")
  18680. },
  18681. ]
  18682. ))
  18683. characterMakers.push(() => makeCharacter(
  18684. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18685. {
  18686. front: {
  18687. height: math.unit(6 + 2 / 12, "feet"),
  18688. weight: math.unit(153, "lb"),
  18689. name: "Front",
  18690. image: {
  18691. source: "./media/characters/luca-cervicum/front.svg",
  18692. extra: 370 / 327,
  18693. bottom: 0.015
  18694. }
  18695. },
  18696. back: {
  18697. height: math.unit(6 + 2 / 12, "feet"),
  18698. weight: math.unit(153, "lb"),
  18699. name: "Back",
  18700. image: {
  18701. source: "./media/characters/luca-cervicum/back.svg",
  18702. extra: 367 / 333,
  18703. bottom: 0.005
  18704. }
  18705. },
  18706. frontGear: {
  18707. height: math.unit(6 + 2 / 12, "feet"),
  18708. weight: math.unit(173, "lb"),
  18709. name: "Front (Gear)",
  18710. image: {
  18711. source: "./media/characters/luca-cervicum/front-gear.svg",
  18712. extra: 377 / 333,
  18713. bottom: 0.006
  18714. }
  18715. },
  18716. },
  18717. [
  18718. {
  18719. name: "Normal",
  18720. height: math.unit(6 + 2 / 12, "feet"),
  18721. default: true
  18722. },
  18723. ]
  18724. ))
  18725. characterMakers.push(() => makeCharacter(
  18726. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18727. {
  18728. front: {
  18729. height: math.unit(6 + 1 / 12, "feet"),
  18730. weight: math.unit(304, "lb"),
  18731. name: "Front",
  18732. image: {
  18733. source: "./media/characters/oliver/front.svg",
  18734. extra: 157 / 143,
  18735. bottom: 0.08
  18736. }
  18737. },
  18738. },
  18739. [
  18740. {
  18741. name: "Normal",
  18742. height: math.unit(6 + 1 / 12, "feet"),
  18743. default: true
  18744. },
  18745. ]
  18746. ))
  18747. characterMakers.push(() => makeCharacter(
  18748. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18749. {
  18750. front: {
  18751. height: math.unit(5 + 7 / 12, "feet"),
  18752. weight: math.unit(140, "lb"),
  18753. name: "Front",
  18754. image: {
  18755. source: "./media/characters/shane/front.svg",
  18756. extra: 304 / 289,
  18757. bottom: 0.005
  18758. }
  18759. },
  18760. },
  18761. [
  18762. {
  18763. name: "Normal",
  18764. height: math.unit(5 + 7 / 12, "feet"),
  18765. default: true
  18766. },
  18767. ]
  18768. ))
  18769. characterMakers.push(() => makeCharacter(
  18770. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18771. {
  18772. front: {
  18773. height: math.unit(5 + 9 / 12, "feet"),
  18774. weight: math.unit(178, "lb"),
  18775. name: "Front",
  18776. image: {
  18777. source: "./media/characters/shin/front.svg",
  18778. extra: 159 / 151,
  18779. bottom: 0.015
  18780. }
  18781. },
  18782. },
  18783. [
  18784. {
  18785. name: "Normal",
  18786. height: math.unit(5 + 9 / 12, "feet"),
  18787. default: true
  18788. },
  18789. ]
  18790. ))
  18791. characterMakers.push(() => makeCharacter(
  18792. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18793. {
  18794. front: {
  18795. height: math.unit(5 + 10 / 12, "feet"),
  18796. weight: math.unit(168, "lb"),
  18797. name: "Front",
  18798. image: {
  18799. source: "./media/characters/xerxes/front.svg",
  18800. extra: 282 / 260,
  18801. bottom: 0.045
  18802. }
  18803. },
  18804. },
  18805. [
  18806. {
  18807. name: "Normal",
  18808. height: math.unit(5 + 10 / 12, "feet"),
  18809. default: true
  18810. },
  18811. ]
  18812. ))
  18813. characterMakers.push(() => makeCharacter(
  18814. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18815. {
  18816. front: {
  18817. height: math.unit(6 + 7 / 12, "feet"),
  18818. weight: math.unit(208, "lb"),
  18819. name: "Front",
  18820. image: {
  18821. source: "./media/characters/chaska/front.svg",
  18822. extra: 332 / 319,
  18823. bottom: 0.015
  18824. }
  18825. },
  18826. },
  18827. [
  18828. {
  18829. name: "Normal",
  18830. height: math.unit(6 + 7 / 12, "feet"),
  18831. default: true
  18832. },
  18833. ]
  18834. ))
  18835. characterMakers.push(() => makeCharacter(
  18836. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18837. {
  18838. front: {
  18839. height: math.unit(5 + 8 / 12, "feet"),
  18840. weight: math.unit(208, "lb"),
  18841. name: "Front",
  18842. image: {
  18843. source: "./media/characters/enuk/front.svg",
  18844. extra: 437 / 406,
  18845. bottom: 0.02
  18846. }
  18847. },
  18848. },
  18849. [
  18850. {
  18851. name: "Normal",
  18852. height: math.unit(5 + 8 / 12, "feet"),
  18853. default: true
  18854. },
  18855. ]
  18856. ))
  18857. characterMakers.push(() => makeCharacter(
  18858. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18859. {
  18860. front: {
  18861. height: math.unit(5 + 10 / 12, "feet"),
  18862. weight: math.unit(252, "lb"),
  18863. name: "Front",
  18864. image: {
  18865. source: "./media/characters/bruun/front.svg",
  18866. extra: 197 / 187,
  18867. bottom: 0.012
  18868. }
  18869. },
  18870. },
  18871. [
  18872. {
  18873. name: "Normal",
  18874. height: math.unit(5 + 10 / 12, "feet"),
  18875. default: true
  18876. },
  18877. ]
  18878. ))
  18879. characterMakers.push(() => makeCharacter(
  18880. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18881. {
  18882. front: {
  18883. height: math.unit(6 + 10 / 12, "feet"),
  18884. weight: math.unit(255, "lb"),
  18885. name: "Front",
  18886. image: {
  18887. source: "./media/characters/alexeev/front.svg",
  18888. extra: 213 / 200,
  18889. bottom: 0.05
  18890. }
  18891. },
  18892. },
  18893. [
  18894. {
  18895. name: "Normal",
  18896. height: math.unit(6 + 10 / 12, "feet"),
  18897. default: true
  18898. },
  18899. ]
  18900. ))
  18901. characterMakers.push(() => makeCharacter(
  18902. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  18903. {
  18904. front: {
  18905. height: math.unit(2 + 8 / 12, "feet"),
  18906. weight: math.unit(22, "lb"),
  18907. name: "Front",
  18908. image: {
  18909. source: "./media/characters/evelyn/front.svg",
  18910. extra: 208 / 180
  18911. }
  18912. },
  18913. },
  18914. [
  18915. {
  18916. name: "Normal",
  18917. height: math.unit(2 + 8 / 12, "feet"),
  18918. default: true
  18919. },
  18920. ]
  18921. ))
  18922. characterMakers.push(() => makeCharacter(
  18923. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  18924. {
  18925. front: {
  18926. height: math.unit(5 + 9 / 12, "feet"),
  18927. weight: math.unit(139, "lb"),
  18928. name: "Front",
  18929. image: {
  18930. source: "./media/characters/inca/front.svg",
  18931. extra: 294 / 291,
  18932. bottom: 0.03
  18933. }
  18934. },
  18935. },
  18936. [
  18937. {
  18938. name: "Normal",
  18939. height: math.unit(5 + 9 / 12, "feet"),
  18940. default: true
  18941. },
  18942. ]
  18943. ))
  18944. characterMakers.push(() => makeCharacter(
  18945. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  18946. {
  18947. front: {
  18948. height: math.unit(5 + 1 / 12, "feet"),
  18949. weight: math.unit(84, "lb"),
  18950. name: "Front",
  18951. image: {
  18952. source: "./media/characters/magdalene/front.svg",
  18953. extra: 293 / 273
  18954. }
  18955. },
  18956. },
  18957. [
  18958. {
  18959. name: "Normal",
  18960. height: math.unit(5 + 1 / 12, "feet"),
  18961. default: true
  18962. },
  18963. ]
  18964. ))
  18965. characterMakers.push(() => makeCharacter(
  18966. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  18967. {
  18968. front: {
  18969. height: math.unit(6 + 3 / 12, "feet"),
  18970. weight: math.unit(185, "lb"),
  18971. name: "Front",
  18972. image: {
  18973. source: "./media/characters/mera/front.svg",
  18974. extra: 291 / 277,
  18975. bottom: 0.03
  18976. }
  18977. },
  18978. },
  18979. [
  18980. {
  18981. name: "Normal",
  18982. height: math.unit(6 + 3 / 12, "feet"),
  18983. default: true
  18984. },
  18985. ]
  18986. ))
  18987. characterMakers.push(() => makeCharacter(
  18988. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  18989. {
  18990. front: {
  18991. height: math.unit(6 + 7 / 12, "feet"),
  18992. weight: math.unit(160, "lb"),
  18993. name: "Front",
  18994. image: {
  18995. source: "./media/characters/ceres/front.svg",
  18996. extra: 1023 / 950,
  18997. bottom: 0.027
  18998. }
  18999. },
  19000. back: {
  19001. height: math.unit(6 + 7 / 12, "feet"),
  19002. weight: math.unit(160, "lb"),
  19003. name: "Back",
  19004. image: {
  19005. source: "./media/characters/ceres/back.svg",
  19006. extra: 1023 / 950
  19007. }
  19008. },
  19009. },
  19010. [
  19011. {
  19012. name: "Normal",
  19013. height: math.unit(6 + 7 / 12, "feet"),
  19014. default: true
  19015. },
  19016. ]
  19017. ))
  19018. characterMakers.push(() => makeCharacter(
  19019. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19020. {
  19021. front: {
  19022. height: math.unit(5 + 10 / 12, "feet"),
  19023. weight: math.unit(150, "lb"),
  19024. name: "Front",
  19025. image: {
  19026. source: "./media/characters/kris/front.svg",
  19027. extra: 885 / 803,
  19028. bottom: 0.03
  19029. }
  19030. },
  19031. },
  19032. [
  19033. {
  19034. name: "Normal",
  19035. height: math.unit(5 + 10 / 12, "feet"),
  19036. default: true
  19037. },
  19038. ]
  19039. ))
  19040. characterMakers.push(() => makeCharacter(
  19041. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19042. {
  19043. front: {
  19044. height: math.unit(7, "feet"),
  19045. weight: math.unit(120, "kg"),
  19046. name: "Front",
  19047. image: {
  19048. source: "./media/characters/taluthus/front.svg",
  19049. extra: 903 / 833,
  19050. bottom: 0.015
  19051. }
  19052. },
  19053. },
  19054. [
  19055. {
  19056. name: "Normal",
  19057. height: math.unit(7, "feet"),
  19058. default: true
  19059. },
  19060. {
  19061. name: "Macro",
  19062. height: math.unit(300, "feet")
  19063. },
  19064. ]
  19065. ))
  19066. characterMakers.push(() => makeCharacter(
  19067. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19068. {
  19069. front: {
  19070. height: math.unit(5 + 9 / 12, "feet"),
  19071. weight: math.unit(145, "lb"),
  19072. name: "Front",
  19073. image: {
  19074. source: "./media/characters/dawn/front.svg",
  19075. extra: 2094 / 2016,
  19076. bottom: 0.025
  19077. }
  19078. },
  19079. back: {
  19080. height: math.unit(5 + 9 / 12, "feet"),
  19081. weight: math.unit(160, "lb"),
  19082. name: "Back",
  19083. image: {
  19084. source: "./media/characters/dawn/back.svg",
  19085. extra: 2112 / 2080,
  19086. bottom: 0.005
  19087. }
  19088. },
  19089. },
  19090. [
  19091. {
  19092. name: "Normal",
  19093. height: math.unit(6 + 7 / 12, "feet"),
  19094. default: true
  19095. },
  19096. ]
  19097. ))
  19098. characterMakers.push(() => makeCharacter(
  19099. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19100. {
  19101. anthro: {
  19102. height: math.unit(8 + 3 / 12, "feet"),
  19103. weight: math.unit(450, "lb"),
  19104. name: "Anthro",
  19105. image: {
  19106. source: "./media/characters/arador/anthro.svg",
  19107. extra: 1835 / 1718,
  19108. bottom: 0.025
  19109. }
  19110. },
  19111. feral: {
  19112. height: math.unit(4, "feet"),
  19113. weight: math.unit(200, "lb"),
  19114. name: "Feral",
  19115. image: {
  19116. source: "./media/characters/arador/feral.svg",
  19117. extra: 1683 / 1514,
  19118. bottom: 0.07
  19119. }
  19120. },
  19121. },
  19122. [
  19123. {
  19124. name: "Normal",
  19125. height: math.unit(8 + 3 / 12, "feet")
  19126. },
  19127. {
  19128. name: "Macro",
  19129. height: math.unit(82.5, "feet"),
  19130. default: true
  19131. },
  19132. ]
  19133. ))
  19134. characterMakers.push(() => makeCharacter(
  19135. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19136. {
  19137. front: {
  19138. height: math.unit(5 + 10 / 12, "feet"),
  19139. weight: math.unit(125, "lb"),
  19140. name: "Front",
  19141. image: {
  19142. source: "./media/characters/dharsi/front.svg",
  19143. extra: 716 / 630,
  19144. bottom: 0.035
  19145. }
  19146. },
  19147. },
  19148. [
  19149. {
  19150. name: "Nano",
  19151. height: math.unit(100, "nm")
  19152. },
  19153. {
  19154. name: "Micro",
  19155. height: math.unit(2, "inches")
  19156. },
  19157. {
  19158. name: "Normal",
  19159. height: math.unit(5 + 10 / 12, "feet"),
  19160. default: true
  19161. },
  19162. {
  19163. name: "Macro",
  19164. height: math.unit(1000, "feet")
  19165. },
  19166. {
  19167. name: "Megamacro",
  19168. height: math.unit(10, "miles")
  19169. },
  19170. {
  19171. name: "Gigamacro",
  19172. height: math.unit(3000, "miles")
  19173. },
  19174. {
  19175. name: "Teramacro",
  19176. height: math.unit(500000, "miles")
  19177. },
  19178. {
  19179. name: "Teramacro+",
  19180. height: math.unit(30, "galaxies")
  19181. },
  19182. ]
  19183. ))
  19184. characterMakers.push(() => makeCharacter(
  19185. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19186. {
  19187. front: {
  19188. height: math.unit(6, "feet"),
  19189. weight: math.unit(150, "lb"),
  19190. name: "Front",
  19191. image: {
  19192. source: "./media/characters/deathy/front.svg",
  19193. extra: 1552 / 1463,
  19194. bottom: 0.025
  19195. }
  19196. },
  19197. side: {
  19198. height: math.unit(6, "feet"),
  19199. weight: math.unit(150, "lb"),
  19200. name: "Side",
  19201. image: {
  19202. source: "./media/characters/deathy/side.svg",
  19203. extra: 1604 / 1455,
  19204. bottom: 0.025
  19205. }
  19206. },
  19207. back: {
  19208. height: math.unit(6, "feet"),
  19209. weight: math.unit(150, "lb"),
  19210. name: "Back",
  19211. image: {
  19212. source: "./media/characters/deathy/back.svg",
  19213. extra: 1580 / 1463,
  19214. bottom: 0.005
  19215. }
  19216. },
  19217. },
  19218. [
  19219. {
  19220. name: "Micro",
  19221. height: math.unit(5, "millimeters")
  19222. },
  19223. {
  19224. name: "Normal",
  19225. height: math.unit(6 + 5 / 12, "feet"),
  19226. default: true
  19227. },
  19228. ]
  19229. ))
  19230. characterMakers.push(() => makeCharacter(
  19231. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19232. {
  19233. front: {
  19234. height: math.unit(16, "feet"),
  19235. weight: math.unit(4000, "lb"),
  19236. name: "Front",
  19237. image: {
  19238. source: "./media/characters/juniper/front.svg",
  19239. bottom: 0.04
  19240. }
  19241. },
  19242. },
  19243. [
  19244. {
  19245. name: "Normal",
  19246. height: math.unit(16, "feet"),
  19247. default: true
  19248. },
  19249. ]
  19250. ))
  19251. characterMakers.push(() => makeCharacter(
  19252. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19253. {
  19254. front: {
  19255. height: math.unit(6, "feet"),
  19256. weight: math.unit(150, "lb"),
  19257. name: "Front",
  19258. image: {
  19259. source: "./media/characters/hipster/front.svg",
  19260. extra: 1312 / 1209,
  19261. bottom: 0.025
  19262. }
  19263. },
  19264. back: {
  19265. height: math.unit(6, "feet"),
  19266. weight: math.unit(150, "lb"),
  19267. name: "Back",
  19268. image: {
  19269. source: "./media/characters/hipster/back.svg",
  19270. extra: 1281 / 1196,
  19271. bottom: 0.01
  19272. }
  19273. },
  19274. },
  19275. [
  19276. {
  19277. name: "Micro",
  19278. height: math.unit(1, "mm")
  19279. },
  19280. {
  19281. name: "Normal",
  19282. height: math.unit(4, "inches"),
  19283. default: true
  19284. },
  19285. {
  19286. name: "Macro",
  19287. height: math.unit(500, "feet")
  19288. },
  19289. {
  19290. name: "Megamacro",
  19291. height: math.unit(1000, "miles")
  19292. },
  19293. ]
  19294. ))
  19295. characterMakers.push(() => makeCharacter(
  19296. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19297. {
  19298. front: {
  19299. height: math.unit(6, "feet"),
  19300. weight: math.unit(150, "lb"),
  19301. name: "Front",
  19302. image: {
  19303. source: "./media/characters/tendirmuldr/front.svg",
  19304. extra: 1878 / 1772,
  19305. bottom: 0.015
  19306. }
  19307. },
  19308. },
  19309. [
  19310. {
  19311. name: "Megamacro",
  19312. height: math.unit(1500, "miles"),
  19313. default: true
  19314. },
  19315. ]
  19316. ))
  19317. characterMakers.push(() => makeCharacter(
  19318. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19319. {
  19320. front: {
  19321. height: math.unit(14, "feet"),
  19322. weight: math.unit(12000, "lb"),
  19323. name: "Front",
  19324. image: {
  19325. source: "./media/characters/mort/front.svg",
  19326. extra: 365 / 318,
  19327. bottom: 0.01
  19328. }
  19329. },
  19330. side: {
  19331. height: math.unit(14, "feet"),
  19332. weight: math.unit(12000, "lb"),
  19333. name: "Side",
  19334. image: {
  19335. source: "./media/characters/mort/side.svg",
  19336. extra: 365 / 318,
  19337. bottom: 0.052
  19338. },
  19339. default: true
  19340. },
  19341. back: {
  19342. height: math.unit(14, "feet"),
  19343. weight: math.unit(12000, "lb"),
  19344. name: "Back",
  19345. image: {
  19346. source: "./media/characters/mort/back.svg",
  19347. extra: 371 / 332,
  19348. bottom: 0.18
  19349. }
  19350. },
  19351. },
  19352. [
  19353. {
  19354. name: "Normal",
  19355. height: math.unit(14, "feet"),
  19356. default: true
  19357. },
  19358. ]
  19359. ))
  19360. characterMakers.push(() => makeCharacter(
  19361. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19362. {
  19363. front: {
  19364. height: math.unit(8, "feet"),
  19365. weight: math.unit(1, "ton"),
  19366. name: "Front",
  19367. image: {
  19368. source: "./media/characters/lycoa/front.svg",
  19369. extra: 1875 / 1789,
  19370. bottom: 0.022
  19371. }
  19372. },
  19373. back: {
  19374. height: math.unit(8, "feet"),
  19375. weight: math.unit(1, "ton"),
  19376. name: "Back",
  19377. image: {
  19378. source: "./media/characters/lycoa/back.svg",
  19379. extra: 1835 / 1781,
  19380. bottom: 0.03
  19381. }
  19382. },
  19383. head: {
  19384. height: math.unit(2.1, "feet"),
  19385. name: "Head",
  19386. image: {
  19387. source: "./media/characters/lycoa/head.svg"
  19388. }
  19389. },
  19390. tailmaw: {
  19391. height: math.unit(1.9, "feet"),
  19392. name: "Tailmaw",
  19393. image: {
  19394. source: "./media/characters/lycoa/tailmaw.svg"
  19395. }
  19396. },
  19397. tentacles: {
  19398. height: math.unit(2.1, "feet"),
  19399. name: "Tentacles",
  19400. image: {
  19401. source: "./media/characters/lycoa/tentacles.svg"
  19402. }
  19403. },
  19404. dick: {
  19405. height: math.unit(1.73, "feet"),
  19406. name: "Dick",
  19407. image: {
  19408. source: "./media/characters/lycoa/dick.svg"
  19409. }
  19410. },
  19411. },
  19412. [
  19413. {
  19414. name: "Normal",
  19415. height: math.unit(8, "feet"),
  19416. default: true
  19417. },
  19418. {
  19419. name: "Macro",
  19420. height: math.unit(30, "feet")
  19421. },
  19422. ]
  19423. ))
  19424. characterMakers.push(() => makeCharacter(
  19425. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19426. {
  19427. front: {
  19428. height: math.unit(4 + 2 / 12, "feet"),
  19429. weight: math.unit(70, "lb"),
  19430. name: "Front",
  19431. image: {
  19432. source: "./media/characters/naldara/front.svg",
  19433. extra: 841 / 720,
  19434. bottom: 0.04
  19435. }
  19436. },
  19437. naga: {
  19438. height: math.unit(23, "feet"),
  19439. weight: math.unit(15000, "kg"),
  19440. name: "Naga",
  19441. image: {
  19442. source: "./media/characters/naldara/naga.svg",
  19443. extra: 3290/2959,
  19444. bottom: 124/3432
  19445. }
  19446. },
  19447. },
  19448. [
  19449. {
  19450. name: "Normal",
  19451. height: math.unit(4 + 2 / 12, "feet"),
  19452. default: true
  19453. },
  19454. ]
  19455. ))
  19456. characterMakers.push(() => makeCharacter(
  19457. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19458. {
  19459. front: {
  19460. height: math.unit(13 + 7 / 12, "feet"),
  19461. weight: math.unit(1500, "lb"),
  19462. name: "Front",
  19463. image: {
  19464. source: "./media/characters/briar/front.svg",
  19465. extra: 626 / 596,
  19466. bottom: 0.08
  19467. }
  19468. },
  19469. },
  19470. [
  19471. {
  19472. name: "Normal",
  19473. height: math.unit(13 + 7 / 12, "feet"),
  19474. default: true
  19475. },
  19476. ]
  19477. ))
  19478. characterMakers.push(() => makeCharacter(
  19479. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19480. {
  19481. side: {
  19482. height: math.unit(10, "feet"),
  19483. weight: math.unit(500, "lb"),
  19484. name: "Side",
  19485. image: {
  19486. source: "./media/characters/vanguard/side.svg",
  19487. extra: 502 / 425,
  19488. bottom: 0.087
  19489. }
  19490. },
  19491. },
  19492. [
  19493. {
  19494. name: "Normal",
  19495. height: math.unit(10, "feet"),
  19496. default: true
  19497. },
  19498. ]
  19499. ))
  19500. characterMakers.push(() => makeCharacter(
  19501. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19502. {
  19503. front: {
  19504. height: math.unit(7.5, "feet"),
  19505. weight: math.unit(2, "lb"),
  19506. name: "Front",
  19507. image: {
  19508. source: "./media/characters/artemis/front.svg",
  19509. extra: 1192 / 1075,
  19510. bottom: 0.07
  19511. }
  19512. },
  19513. frontNsfw: {
  19514. height: math.unit(7.5, "feet"),
  19515. weight: math.unit(2, "lb"),
  19516. name: "Front (NSFW)",
  19517. image: {
  19518. source: "./media/characters/artemis/front-nsfw.svg",
  19519. extra: 1192 / 1075,
  19520. bottom: 0.07
  19521. }
  19522. },
  19523. frontNsfwer: {
  19524. height: math.unit(7.5, "feet"),
  19525. weight: math.unit(2, "lb"),
  19526. name: "Front (NSFW-er)",
  19527. image: {
  19528. source: "./media/characters/artemis/front-nsfwer.svg",
  19529. extra: 1192 / 1075,
  19530. bottom: 0.07
  19531. }
  19532. },
  19533. side: {
  19534. height: math.unit(7.5, "feet"),
  19535. weight: math.unit(2, "lb"),
  19536. name: "Side",
  19537. image: {
  19538. source: "./media/characters/artemis/side.svg",
  19539. extra: 1192 / 1075,
  19540. bottom: 0.07
  19541. }
  19542. },
  19543. sideNsfw: {
  19544. height: math.unit(7.5, "feet"),
  19545. weight: math.unit(2, "lb"),
  19546. name: "Side (NSFW)",
  19547. image: {
  19548. source: "./media/characters/artemis/side-nsfw.svg",
  19549. extra: 1192 / 1075,
  19550. bottom: 0.07
  19551. }
  19552. },
  19553. sideNsfwer: {
  19554. height: math.unit(7.5, "feet"),
  19555. weight: math.unit(2, "lb"),
  19556. name: "Side (NSFW-er)",
  19557. image: {
  19558. source: "./media/characters/artemis/side-nsfwer.svg",
  19559. extra: 1192 / 1075,
  19560. bottom: 0.07
  19561. }
  19562. },
  19563. maw: {
  19564. height: math.unit(1.1, "feet"),
  19565. name: "Maw",
  19566. image: {
  19567. source: "./media/characters/artemis/maw.svg"
  19568. }
  19569. },
  19570. stomach: {
  19571. height: math.unit(0.95, "feet"),
  19572. name: "Stomach",
  19573. image: {
  19574. source: "./media/characters/artemis/stomach.svg"
  19575. }
  19576. },
  19577. dickCanine: {
  19578. height: math.unit(1, "feet"),
  19579. name: "Dick (Canine)",
  19580. image: {
  19581. source: "./media/characters/artemis/dick-canine.svg"
  19582. }
  19583. },
  19584. dickEquine: {
  19585. height: math.unit(0.85, "feet"),
  19586. name: "Dick (Equine)",
  19587. image: {
  19588. source: "./media/characters/artemis/dick-equine.svg"
  19589. }
  19590. },
  19591. dickExotic: {
  19592. height: math.unit(0.85, "feet"),
  19593. name: "Dick (Exotic)",
  19594. image: {
  19595. source: "./media/characters/artemis/dick-exotic.svg"
  19596. }
  19597. },
  19598. },
  19599. [
  19600. {
  19601. name: "Normal",
  19602. height: math.unit(7.5, "feet"),
  19603. default: true
  19604. },
  19605. {
  19606. name: "Enlarged",
  19607. height: math.unit(12, "feet")
  19608. },
  19609. ]
  19610. ))
  19611. characterMakers.push(() => makeCharacter(
  19612. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19613. {
  19614. front: {
  19615. height: math.unit(5 + 3 / 12, "feet"),
  19616. weight: math.unit(160, "lb"),
  19617. name: "Front",
  19618. image: {
  19619. source: "./media/characters/kira/front.svg",
  19620. extra: 906 / 786,
  19621. bottom: 0.01
  19622. }
  19623. },
  19624. back: {
  19625. height: math.unit(5 + 3 / 12, "feet"),
  19626. weight: math.unit(160, "lb"),
  19627. name: "Back",
  19628. image: {
  19629. source: "./media/characters/kira/back.svg",
  19630. extra: 882 / 757,
  19631. bottom: 0.005
  19632. }
  19633. },
  19634. frontDressed: {
  19635. height: math.unit(5 + 3 / 12, "feet"),
  19636. weight: math.unit(160, "lb"),
  19637. name: "Front (Dressed)",
  19638. image: {
  19639. source: "./media/characters/kira/front-dressed.svg",
  19640. extra: 906 / 786,
  19641. bottom: 0.01
  19642. }
  19643. },
  19644. beans: {
  19645. height: math.unit(0.92, "feet"),
  19646. name: "Beans",
  19647. image: {
  19648. source: "./media/characters/kira/beans.svg"
  19649. }
  19650. },
  19651. },
  19652. [
  19653. {
  19654. name: "Normal",
  19655. height: math.unit(5 + 3 / 12, "feet"),
  19656. default: true
  19657. },
  19658. ]
  19659. ))
  19660. characterMakers.push(() => makeCharacter(
  19661. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19662. {
  19663. front: {
  19664. height: math.unit(5 + 4 / 12, "feet"),
  19665. weight: math.unit(145, "lb"),
  19666. name: "Front",
  19667. image: {
  19668. source: "./media/characters/scramble/front.svg",
  19669. extra: 763 / 727,
  19670. bottom: 0.05
  19671. }
  19672. },
  19673. back: {
  19674. height: math.unit(5 + 4 / 12, "feet"),
  19675. weight: math.unit(145, "lb"),
  19676. name: "Back",
  19677. image: {
  19678. source: "./media/characters/scramble/back.svg",
  19679. extra: 826 / 737,
  19680. bottom: 0.002
  19681. }
  19682. },
  19683. },
  19684. [
  19685. {
  19686. name: "Normal",
  19687. height: math.unit(5 + 4 / 12, "feet"),
  19688. default: true
  19689. },
  19690. ]
  19691. ))
  19692. characterMakers.push(() => makeCharacter(
  19693. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19694. {
  19695. side: {
  19696. height: math.unit(6 + 2 / 12, "feet"),
  19697. weight: math.unit(190, "lb"),
  19698. name: "Side",
  19699. image: {
  19700. source: "./media/characters/biscuit/side.svg",
  19701. extra: 858 / 791,
  19702. bottom: 0.044
  19703. }
  19704. },
  19705. },
  19706. [
  19707. {
  19708. name: "Normal",
  19709. height: math.unit(6 + 2 / 12, "feet"),
  19710. default: true
  19711. },
  19712. ]
  19713. ))
  19714. characterMakers.push(() => makeCharacter(
  19715. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19716. {
  19717. front: {
  19718. height: math.unit(5 + 2 / 12, "feet"),
  19719. weight: math.unit(120, "lb"),
  19720. name: "Front",
  19721. image: {
  19722. source: "./media/characters/poffin/front.svg",
  19723. extra: 786 / 680,
  19724. bottom: 0.005
  19725. }
  19726. },
  19727. },
  19728. [
  19729. {
  19730. name: "Normal",
  19731. height: math.unit(5 + 2 / 12, "feet"),
  19732. default: true
  19733. },
  19734. ]
  19735. ))
  19736. characterMakers.push(() => makeCharacter(
  19737. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19738. {
  19739. front: {
  19740. height: math.unit(6 + 3 / 12, "feet"),
  19741. weight: math.unit(519, "lb"),
  19742. name: "Front",
  19743. image: {
  19744. source: "./media/characters/dhari/front.svg",
  19745. extra: 1048 / 946,
  19746. bottom: 0.015
  19747. }
  19748. },
  19749. back: {
  19750. height: math.unit(6 + 3 / 12, "feet"),
  19751. weight: math.unit(519, "lb"),
  19752. name: "Back",
  19753. image: {
  19754. source: "./media/characters/dhari/back.svg",
  19755. extra: 1048 / 931,
  19756. bottom: 0.005
  19757. }
  19758. },
  19759. frontDressed: {
  19760. height: math.unit(6 + 3 / 12, "feet"),
  19761. weight: math.unit(519, "lb"),
  19762. name: "Front (Dressed)",
  19763. image: {
  19764. source: "./media/characters/dhari/front-dressed.svg",
  19765. extra: 1713 / 1546,
  19766. bottom: 0.02
  19767. }
  19768. },
  19769. backDressed: {
  19770. height: math.unit(6 + 3 / 12, "feet"),
  19771. weight: math.unit(519, "lb"),
  19772. name: "Back (Dressed)",
  19773. image: {
  19774. source: "./media/characters/dhari/back-dressed.svg",
  19775. extra: 1699 / 1537,
  19776. bottom: 0.01
  19777. }
  19778. },
  19779. maw: {
  19780. height: math.unit(0.95, "feet"),
  19781. name: "Maw",
  19782. image: {
  19783. source: "./media/characters/dhari/maw.svg"
  19784. }
  19785. },
  19786. wereFront: {
  19787. height: math.unit(12 + 8 / 12, "feet"),
  19788. weight: math.unit(4000, "lb"),
  19789. name: "Front (Were)",
  19790. image: {
  19791. source: "./media/characters/dhari/were-front.svg",
  19792. extra: 1065 / 969,
  19793. bottom: 0.015
  19794. }
  19795. },
  19796. wereBack: {
  19797. height: math.unit(12 + 8 / 12, "feet"),
  19798. weight: math.unit(4000, "lb"),
  19799. name: "Back (Were)",
  19800. image: {
  19801. source: "./media/characters/dhari/were-back.svg",
  19802. extra: 1065 / 969,
  19803. bottom: 0.012
  19804. }
  19805. },
  19806. wereMaw: {
  19807. height: math.unit(0.625, "meters"),
  19808. name: "Maw (Were)",
  19809. image: {
  19810. source: "./media/characters/dhari/were-maw.svg"
  19811. }
  19812. },
  19813. },
  19814. [
  19815. {
  19816. name: "Normal",
  19817. height: math.unit(6 + 3 / 12, "feet"),
  19818. default: true
  19819. },
  19820. ]
  19821. ))
  19822. characterMakers.push(() => makeCharacter(
  19823. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19824. {
  19825. anthro: {
  19826. height: math.unit(5 + 7 / 12, "feet"),
  19827. weight: math.unit(175, "lb"),
  19828. name: "Anthro",
  19829. image: {
  19830. source: "./media/characters/rena-dyne/anthro.svg",
  19831. extra: 1849 / 1785,
  19832. bottom: 0.005
  19833. }
  19834. },
  19835. taur: {
  19836. height: math.unit(15 + 6 / 12, "feet"),
  19837. weight: math.unit(8000, "lb"),
  19838. name: "Taur",
  19839. image: {
  19840. source: "./media/characters/rena-dyne/taur.svg",
  19841. extra: 2315 / 2234,
  19842. bottom: 0.033
  19843. }
  19844. },
  19845. },
  19846. [
  19847. {
  19848. name: "Normal",
  19849. height: math.unit(5 + 7 / 12, "feet"),
  19850. default: true
  19851. },
  19852. ]
  19853. ))
  19854. characterMakers.push(() => makeCharacter(
  19855. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19856. {
  19857. front: {
  19858. height: math.unit(8, "feet"),
  19859. weight: math.unit(600, "lb"),
  19860. name: "Front",
  19861. image: {
  19862. source: "./media/characters/weremeep/front.svg",
  19863. extra: 967 / 862,
  19864. bottom: 0.01
  19865. }
  19866. },
  19867. },
  19868. [
  19869. {
  19870. name: "Normal",
  19871. height: math.unit(8, "feet"),
  19872. default: true
  19873. },
  19874. {
  19875. name: "Lorg",
  19876. height: math.unit(12, "feet")
  19877. },
  19878. {
  19879. name: "Oh Lawd She Comin'",
  19880. height: math.unit(20, "feet")
  19881. },
  19882. ]
  19883. ))
  19884. characterMakers.push(() => makeCharacter(
  19885. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19886. {
  19887. front: {
  19888. height: math.unit(4, "feet"),
  19889. weight: math.unit(90, "lb"),
  19890. name: "Front",
  19891. image: {
  19892. source: "./media/characters/reza/front.svg",
  19893. extra: 1183 / 1111,
  19894. bottom: 0.017
  19895. }
  19896. },
  19897. back: {
  19898. height: math.unit(4, "feet"),
  19899. weight: math.unit(90, "lb"),
  19900. name: "Back",
  19901. image: {
  19902. source: "./media/characters/reza/back.svg",
  19903. extra: 1183 / 1111,
  19904. bottom: 0.01
  19905. }
  19906. },
  19907. drake: {
  19908. height: math.unit(30, "feet"),
  19909. weight: math.unit(246960, "lb"),
  19910. name: "Drake",
  19911. image: {
  19912. source: "./media/characters/reza/drake.svg",
  19913. extra: 2350 / 2024,
  19914. bottom: 60.7 / 2403
  19915. }
  19916. },
  19917. },
  19918. [
  19919. {
  19920. name: "Normal",
  19921. height: math.unit(4, "feet"),
  19922. default: true
  19923. },
  19924. ]
  19925. ))
  19926. characterMakers.push(() => makeCharacter(
  19927. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  19928. {
  19929. side: {
  19930. height: math.unit(15, "feet"),
  19931. weight: math.unit(14, "tons"),
  19932. name: "Side",
  19933. image: {
  19934. source: "./media/characters/athea/side.svg",
  19935. extra: 960 / 540,
  19936. bottom: 0.003
  19937. }
  19938. },
  19939. sitting: {
  19940. height: math.unit(6 * 2.85, "feet"),
  19941. weight: math.unit(14, "tons"),
  19942. name: "Sitting",
  19943. image: {
  19944. source: "./media/characters/athea/sitting.svg",
  19945. extra: 621 / 581,
  19946. bottom: 0.075
  19947. }
  19948. },
  19949. maw: {
  19950. height: math.unit(7.59498031496063, "feet"),
  19951. name: "Maw",
  19952. image: {
  19953. source: "./media/characters/athea/maw.svg"
  19954. }
  19955. },
  19956. },
  19957. [
  19958. {
  19959. name: "Lap Cat",
  19960. height: math.unit(2.5, "feet")
  19961. },
  19962. {
  19963. name: "Minimacro",
  19964. height: math.unit(15, "feet"),
  19965. default: true
  19966. },
  19967. {
  19968. name: "Macro",
  19969. height: math.unit(120, "feet")
  19970. },
  19971. {
  19972. name: "Macro+",
  19973. height: math.unit(640, "feet")
  19974. },
  19975. {
  19976. name: "Colossus",
  19977. height: math.unit(2.2, "miles")
  19978. },
  19979. ]
  19980. ))
  19981. characterMakers.push(() => makeCharacter(
  19982. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  19983. {
  19984. front: {
  19985. height: math.unit(8 + 8 / 12, "feet"),
  19986. weight: math.unit(130, "kg"),
  19987. name: "Front",
  19988. image: {
  19989. source: "./media/characters/seroko/front.svg",
  19990. extra: 1385 / 1280,
  19991. bottom: 0.025
  19992. }
  19993. },
  19994. back: {
  19995. height: math.unit(8 + 8 / 12, "feet"),
  19996. weight: math.unit(130, "kg"),
  19997. name: "Back",
  19998. image: {
  19999. source: "./media/characters/seroko/back.svg",
  20000. extra: 1369 / 1238,
  20001. bottom: 0.018
  20002. }
  20003. },
  20004. frontDressed: {
  20005. height: math.unit(8 + 8 / 12, "feet"),
  20006. weight: math.unit(130, "kg"),
  20007. name: "Front (Dressed)",
  20008. image: {
  20009. source: "./media/characters/seroko/front-dressed.svg",
  20010. extra: 1366 / 1275,
  20011. bottom: 0.03
  20012. }
  20013. },
  20014. },
  20015. [
  20016. {
  20017. name: "Normal",
  20018. height: math.unit(8 + 8 / 12, "feet"),
  20019. default: true
  20020. },
  20021. ]
  20022. ))
  20023. characterMakers.push(() => makeCharacter(
  20024. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20025. {
  20026. front: {
  20027. height: math.unit(5.5, "feet"),
  20028. weight: math.unit(160, "lb"),
  20029. name: "Front",
  20030. image: {
  20031. source: "./media/characters/quatzi/front.svg",
  20032. extra: 2346 / 2242,
  20033. bottom: 0.015
  20034. }
  20035. },
  20036. },
  20037. [
  20038. {
  20039. name: "Normal",
  20040. height: math.unit(5.5, "feet"),
  20041. default: true
  20042. },
  20043. {
  20044. name: "Big",
  20045. height: math.unit(7.7, "feet")
  20046. },
  20047. ]
  20048. ))
  20049. characterMakers.push(() => makeCharacter(
  20050. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20051. {
  20052. front: {
  20053. height: math.unit(5 + 11 / 12, "feet"),
  20054. weight: math.unit(180, "lb"),
  20055. name: "Front",
  20056. image: {
  20057. source: "./media/characters/sen/front.svg",
  20058. extra: 1321 / 1254,
  20059. bottom: 0.015
  20060. }
  20061. },
  20062. side: {
  20063. height: math.unit(5 + 11 / 12, "feet"),
  20064. weight: math.unit(180, "lb"),
  20065. name: "Side",
  20066. image: {
  20067. source: "./media/characters/sen/side.svg",
  20068. extra: 1321 / 1254,
  20069. bottom: 0.007
  20070. }
  20071. },
  20072. back: {
  20073. height: math.unit(5 + 11 / 12, "feet"),
  20074. weight: math.unit(180, "lb"),
  20075. name: "Back",
  20076. image: {
  20077. source: "./media/characters/sen/back.svg",
  20078. extra: 1321 / 1254
  20079. }
  20080. },
  20081. },
  20082. [
  20083. {
  20084. name: "Normal",
  20085. height: math.unit(5 + 11 / 12, "feet"),
  20086. default: true
  20087. },
  20088. ]
  20089. ))
  20090. characterMakers.push(() => makeCharacter(
  20091. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20092. {
  20093. front: {
  20094. height: math.unit(166.6, "cm"),
  20095. weight: math.unit(66.6, "kg"),
  20096. name: "Front",
  20097. image: {
  20098. source: "./media/characters/fruity/front.svg",
  20099. extra: 1510 / 1386,
  20100. bottom: 0.04
  20101. }
  20102. },
  20103. back: {
  20104. height: math.unit(166.6, "cm"),
  20105. weight: math.unit(66.6, "lb"),
  20106. name: "Back",
  20107. image: {
  20108. source: "./media/characters/fruity/back.svg",
  20109. extra: 1563 / 1435,
  20110. bottom: 0.005
  20111. }
  20112. },
  20113. },
  20114. [
  20115. {
  20116. name: "Normal",
  20117. height: math.unit(166.6, "cm"),
  20118. default: true
  20119. },
  20120. {
  20121. name: "Demonic",
  20122. height: math.unit(166.6, "feet")
  20123. },
  20124. ]
  20125. ))
  20126. characterMakers.push(() => makeCharacter(
  20127. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20128. {
  20129. side: {
  20130. height: math.unit(10, "feet"),
  20131. weight: math.unit(500, "lb"),
  20132. name: "Side",
  20133. image: {
  20134. source: "./media/characters/zost/side.svg",
  20135. extra: 966 / 880,
  20136. bottom: 0.075
  20137. }
  20138. },
  20139. mawFront: {
  20140. height: math.unit(1.08, "meters"),
  20141. name: "Maw (Front)",
  20142. image: {
  20143. source: "./media/characters/zost/maw-front.svg"
  20144. }
  20145. },
  20146. mawSide: {
  20147. height: math.unit(2.66, "feet"),
  20148. name: "Maw (Side)",
  20149. image: {
  20150. source: "./media/characters/zost/maw-side.svg"
  20151. }
  20152. },
  20153. },
  20154. [
  20155. {
  20156. name: "Normal",
  20157. height: math.unit(10, "feet"),
  20158. default: true
  20159. },
  20160. ]
  20161. ))
  20162. characterMakers.push(() => makeCharacter(
  20163. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20164. {
  20165. front: {
  20166. height: math.unit(5 + 4 / 12, "feet"),
  20167. weight: math.unit(120, "lb"),
  20168. name: "Front",
  20169. image: {
  20170. source: "./media/characters/luci/front.svg",
  20171. extra: 1985 / 1884,
  20172. bottom: 0.04
  20173. }
  20174. },
  20175. back: {
  20176. height: math.unit(5 + 4 / 12, "feet"),
  20177. weight: math.unit(120, "lb"),
  20178. name: "Back",
  20179. image: {
  20180. source: "./media/characters/luci/back.svg",
  20181. extra: 1892 / 1791,
  20182. bottom: 0.002
  20183. }
  20184. },
  20185. },
  20186. [
  20187. {
  20188. name: "Normal",
  20189. height: math.unit(5 + 4 / 12, "feet"),
  20190. default: true
  20191. },
  20192. ]
  20193. ))
  20194. characterMakers.push(() => makeCharacter(
  20195. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20196. {
  20197. front: {
  20198. height: math.unit(1500, "feet"),
  20199. weight: math.unit(3.8e6, "tons"),
  20200. name: "Front",
  20201. image: {
  20202. source: "./media/characters/2th/front.svg",
  20203. extra: 3489 / 3350,
  20204. bottom: 0.1
  20205. }
  20206. },
  20207. foot: {
  20208. height: math.unit(461, "feet"),
  20209. name: "Foot",
  20210. image: {
  20211. source: "./media/characters/2th/foot.svg"
  20212. }
  20213. },
  20214. },
  20215. [
  20216. {
  20217. name: "\"Micro\"",
  20218. height: math.unit(15 + 7 / 12, "feet")
  20219. },
  20220. {
  20221. name: "Normal",
  20222. height: math.unit(1500, "feet"),
  20223. default: true
  20224. },
  20225. {
  20226. name: "Macro",
  20227. height: math.unit(5000, "feet")
  20228. },
  20229. {
  20230. name: "Megamacro",
  20231. height: math.unit(15, "miles")
  20232. },
  20233. {
  20234. name: "Gigamacro",
  20235. height: math.unit(4000, "miles")
  20236. },
  20237. {
  20238. name: "Galactic",
  20239. height: math.unit(50, "AU")
  20240. },
  20241. ]
  20242. ))
  20243. characterMakers.push(() => makeCharacter(
  20244. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20245. {
  20246. front: {
  20247. height: math.unit(5 + 6 / 12, "feet"),
  20248. weight: math.unit(220, "lb"),
  20249. name: "Front",
  20250. image: {
  20251. source: "./media/characters/amethyst/front.svg",
  20252. extra: 2078 / 2040,
  20253. bottom: 0.045
  20254. }
  20255. },
  20256. back: {
  20257. height: math.unit(5 + 6 / 12, "feet"),
  20258. weight: math.unit(220, "lb"),
  20259. name: "Back",
  20260. image: {
  20261. source: "./media/characters/amethyst/back.svg",
  20262. extra: 2021 / 1989,
  20263. bottom: 0.02
  20264. }
  20265. },
  20266. },
  20267. [
  20268. {
  20269. name: "Normal",
  20270. height: math.unit(5 + 6 / 12, "feet"),
  20271. default: true
  20272. },
  20273. ]
  20274. ))
  20275. characterMakers.push(() => makeCharacter(
  20276. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20277. {
  20278. front: {
  20279. height: math.unit(4 + 11 / 12, "feet"),
  20280. weight: math.unit(120, "lb"),
  20281. name: "Front",
  20282. image: {
  20283. source: "./media/characters/yumi-akiyama/front.svg",
  20284. extra: 1327 / 1235,
  20285. bottom: 0.02
  20286. }
  20287. },
  20288. back: {
  20289. height: math.unit(4 + 11 / 12, "feet"),
  20290. weight: math.unit(120, "lb"),
  20291. name: "Back",
  20292. image: {
  20293. source: "./media/characters/yumi-akiyama/back.svg",
  20294. extra: 1287 / 1245,
  20295. bottom: 0.002
  20296. }
  20297. },
  20298. },
  20299. [
  20300. {
  20301. name: "Galactic",
  20302. height: math.unit(50, "galaxies"),
  20303. default: true
  20304. },
  20305. {
  20306. name: "Universal",
  20307. height: math.unit(100, "universes")
  20308. },
  20309. ]
  20310. ))
  20311. characterMakers.push(() => makeCharacter(
  20312. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20313. {
  20314. front: {
  20315. height: math.unit(8, "feet"),
  20316. weight: math.unit(500, "lb"),
  20317. name: "Front",
  20318. image: {
  20319. source: "./media/characters/rifter-yrmori/front.svg",
  20320. extra: 1180 / 1125,
  20321. bottom: 0.02
  20322. }
  20323. },
  20324. back: {
  20325. height: math.unit(8, "feet"),
  20326. weight: math.unit(500, "lb"),
  20327. name: "Back",
  20328. image: {
  20329. source: "./media/characters/rifter-yrmori/back.svg",
  20330. extra: 1190 / 1145,
  20331. bottom: 0.001
  20332. }
  20333. },
  20334. wings: {
  20335. height: math.unit(7.75, "feet"),
  20336. weight: math.unit(500, "lb"),
  20337. name: "Wings",
  20338. image: {
  20339. source: "./media/characters/rifter-yrmori/wings.svg",
  20340. extra: 1357 / 1285
  20341. }
  20342. },
  20343. maw: {
  20344. height: math.unit(0.8, "feet"),
  20345. name: "Maw",
  20346. image: {
  20347. source: "./media/characters/rifter-yrmori/maw.svg"
  20348. }
  20349. },
  20350. mawfront: {
  20351. height: math.unit(1.45, "feet"),
  20352. name: "Maw (Front)",
  20353. image: {
  20354. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20355. }
  20356. },
  20357. },
  20358. [
  20359. {
  20360. name: "Normal",
  20361. height: math.unit(8, "feet"),
  20362. default: true
  20363. },
  20364. {
  20365. name: "Macro",
  20366. height: math.unit(42, "meters")
  20367. },
  20368. ]
  20369. ))
  20370. characterMakers.push(() => makeCharacter(
  20371. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20372. {
  20373. were: {
  20374. height: math.unit(25 + 6 / 12, "feet"),
  20375. weight: math.unit(10000, "lb"),
  20376. name: "Were",
  20377. image: {
  20378. source: "./media/characters/tahajin/were.svg",
  20379. extra: 801 / 770,
  20380. bottom: 0.042
  20381. }
  20382. },
  20383. aquatic: {
  20384. height: math.unit(6 + 4 / 12, "feet"),
  20385. weight: math.unit(160, "lb"),
  20386. name: "Aquatic",
  20387. image: {
  20388. source: "./media/characters/tahajin/aquatic.svg",
  20389. extra: 572 / 542,
  20390. bottom: 0.04
  20391. }
  20392. },
  20393. chow: {
  20394. height: math.unit(8 + 11 / 12, "feet"),
  20395. weight: math.unit(450, "lb"),
  20396. name: "Chow",
  20397. image: {
  20398. source: "./media/characters/tahajin/chow.svg",
  20399. extra: 660 / 640,
  20400. bottom: 0.015
  20401. }
  20402. },
  20403. demiNaga: {
  20404. height: math.unit(6 + 8 / 12, "feet"),
  20405. weight: math.unit(300, "lb"),
  20406. name: "Demi Naga",
  20407. image: {
  20408. source: "./media/characters/tahajin/demi-naga.svg",
  20409. extra: 643 / 615,
  20410. bottom: 0.1
  20411. }
  20412. },
  20413. data: {
  20414. height: math.unit(5, "inches"),
  20415. weight: math.unit(0.1, "lb"),
  20416. name: "Data",
  20417. image: {
  20418. source: "./media/characters/tahajin/data.svg"
  20419. }
  20420. },
  20421. fluu: {
  20422. height: math.unit(5 + 7 / 12, "feet"),
  20423. weight: math.unit(140, "lb"),
  20424. name: "Fluu",
  20425. image: {
  20426. source: "./media/characters/tahajin/fluu.svg",
  20427. extra: 628 / 592,
  20428. bottom: 0.02
  20429. }
  20430. },
  20431. starWarrior: {
  20432. height: math.unit(4 + 5 / 12, "feet"),
  20433. weight: math.unit(50, "lb"),
  20434. name: "Star Warrior",
  20435. image: {
  20436. source: "./media/characters/tahajin/star-warrior.svg"
  20437. }
  20438. },
  20439. },
  20440. [
  20441. {
  20442. name: "Normal",
  20443. height: math.unit(25 + 6 / 12, "feet"),
  20444. default: true
  20445. },
  20446. ]
  20447. ))
  20448. characterMakers.push(() => makeCharacter(
  20449. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20450. {
  20451. front: {
  20452. height: math.unit(8, "feet"),
  20453. weight: math.unit(350, "lb"),
  20454. name: "Front",
  20455. image: {
  20456. source: "./media/characters/gabira/front.svg",
  20457. extra: 608 / 580,
  20458. bottom: 0.03
  20459. }
  20460. },
  20461. back: {
  20462. height: math.unit(8, "feet"),
  20463. weight: math.unit(350, "lb"),
  20464. name: "Back",
  20465. image: {
  20466. source: "./media/characters/gabira/back.svg",
  20467. extra: 608 / 580,
  20468. bottom: 0.03
  20469. }
  20470. },
  20471. },
  20472. [
  20473. {
  20474. name: "Normal",
  20475. height: math.unit(8, "feet"),
  20476. default: true
  20477. },
  20478. ]
  20479. ))
  20480. characterMakers.push(() => makeCharacter(
  20481. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20482. {
  20483. front: {
  20484. height: math.unit(5 + 3 / 12, "feet"),
  20485. weight: math.unit(137, "lb"),
  20486. name: "Front",
  20487. image: {
  20488. source: "./media/characters/sasha-katraine/front.svg",
  20489. bottom: 0.045
  20490. }
  20491. },
  20492. },
  20493. [
  20494. {
  20495. name: "Micro",
  20496. height: math.unit(5, "inches")
  20497. },
  20498. {
  20499. name: "Normal",
  20500. height: math.unit(5 + 3 / 12, "feet"),
  20501. default: true
  20502. },
  20503. ]
  20504. ))
  20505. characterMakers.push(() => makeCharacter(
  20506. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20507. {
  20508. side: {
  20509. height: math.unit(4, "inches"),
  20510. weight: math.unit(200, "grams"),
  20511. name: "Side",
  20512. image: {
  20513. source: "./media/characters/der/side.svg",
  20514. extra: 719 / 400,
  20515. bottom: 30.6 / 749.9187
  20516. }
  20517. },
  20518. },
  20519. [
  20520. {
  20521. name: "Micro",
  20522. height: math.unit(4, "inches"),
  20523. default: true
  20524. },
  20525. ]
  20526. ))
  20527. characterMakers.push(() => makeCharacter(
  20528. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20529. {
  20530. side: {
  20531. height: math.unit(30, "meters"),
  20532. weight: math.unit(700, "tonnes"),
  20533. name: "Side",
  20534. image: {
  20535. source: "./media/characters/fixerdragon/side.svg",
  20536. extra: (1293.0514 - 116.03) / 1106.86,
  20537. bottom: 116.03 / 1293.0514
  20538. }
  20539. },
  20540. },
  20541. [
  20542. {
  20543. name: "Planck",
  20544. height: math.unit(1.6e-35, "meters")
  20545. },
  20546. {
  20547. name: "Micro",
  20548. height: math.unit(0.4, "meters")
  20549. },
  20550. {
  20551. name: "Normal",
  20552. height: math.unit(30, "meters"),
  20553. default: true
  20554. },
  20555. {
  20556. name: "Megamacro",
  20557. height: math.unit(1.2, "megameters")
  20558. },
  20559. {
  20560. name: "Teramacro",
  20561. height: math.unit(130, "terameters")
  20562. },
  20563. {
  20564. name: "Yottamacro",
  20565. height: math.unit(6200, "yottameters")
  20566. },
  20567. ]
  20568. ));
  20569. characterMakers.push(() => makeCharacter(
  20570. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20571. {
  20572. front: {
  20573. height: math.unit(8, "feet"),
  20574. weight: math.unit(250, "lb"),
  20575. name: "Front",
  20576. image: {
  20577. source: "./media/characters/kite/front.svg",
  20578. extra: 2796 / 2659,
  20579. bottom: 0.002
  20580. }
  20581. },
  20582. },
  20583. [
  20584. {
  20585. name: "Normal",
  20586. height: math.unit(8, "feet"),
  20587. default: true
  20588. },
  20589. {
  20590. name: "Macro",
  20591. height: math.unit(360, "feet")
  20592. },
  20593. {
  20594. name: "Megamacro",
  20595. height: math.unit(1500, "feet")
  20596. },
  20597. ]
  20598. ))
  20599. characterMakers.push(() => makeCharacter(
  20600. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20601. {
  20602. front: {
  20603. height: math.unit(5 + 10 / 12, "feet"),
  20604. weight: math.unit(150, "lb"),
  20605. name: "Front",
  20606. image: {
  20607. source: "./media/characters/poojawa-vynar/front.svg",
  20608. extra: (1506.1547 - 55) / 1356.6,
  20609. bottom: 55 / 1506.1547
  20610. }
  20611. },
  20612. frontTailless: {
  20613. height: math.unit(5 + 10 / 12, "feet"),
  20614. weight: math.unit(150, "lb"),
  20615. name: "Front (Tailless)",
  20616. image: {
  20617. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20618. extra: (1506.1547 - 55) / 1356.6,
  20619. bottom: 55 / 1506.1547
  20620. }
  20621. },
  20622. },
  20623. [
  20624. {
  20625. name: "Normal",
  20626. height: math.unit(5 + 10 / 12, "feet"),
  20627. default: true
  20628. },
  20629. ]
  20630. ))
  20631. characterMakers.push(() => makeCharacter(
  20632. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20633. {
  20634. front: {
  20635. height: math.unit(293, "meters"),
  20636. weight: math.unit(70400, "tons"),
  20637. name: "Front",
  20638. image: {
  20639. source: "./media/characters/violette/front.svg",
  20640. extra: 1227 / 1180,
  20641. bottom: 0.005
  20642. }
  20643. },
  20644. back: {
  20645. height: math.unit(293, "meters"),
  20646. weight: math.unit(70400, "tons"),
  20647. name: "Back",
  20648. image: {
  20649. source: "./media/characters/violette/back.svg",
  20650. extra: 1227 / 1180,
  20651. bottom: 0.005
  20652. }
  20653. },
  20654. },
  20655. [
  20656. {
  20657. name: "Macro",
  20658. height: math.unit(293, "meters"),
  20659. default: true
  20660. },
  20661. ]
  20662. ))
  20663. characterMakers.push(() => makeCharacter(
  20664. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20665. {
  20666. front: {
  20667. height: math.unit(1050, "feet"),
  20668. weight: math.unit(200000, "tons"),
  20669. name: "Front",
  20670. image: {
  20671. source: "./media/characters/alessandra/front.svg",
  20672. extra: 960 / 912,
  20673. bottom: 0.06
  20674. }
  20675. },
  20676. },
  20677. [
  20678. {
  20679. name: "Macro",
  20680. height: math.unit(1050, "feet")
  20681. },
  20682. {
  20683. name: "Macro+",
  20684. height: math.unit(900, "meters"),
  20685. default: true
  20686. },
  20687. ]
  20688. ))
  20689. characterMakers.push(() => makeCharacter(
  20690. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20691. {
  20692. front: {
  20693. height: math.unit(5, "feet"),
  20694. weight: math.unit(187, "lb"),
  20695. name: "Front",
  20696. image: {
  20697. source: "./media/characters/person/front.svg",
  20698. extra: 3087 / 2945,
  20699. bottom: 91 / 3181
  20700. }
  20701. },
  20702. },
  20703. [
  20704. {
  20705. name: "Micro",
  20706. height: math.unit(3, "inches")
  20707. },
  20708. {
  20709. name: "Normal",
  20710. height: math.unit(5, "feet"),
  20711. default: true
  20712. },
  20713. {
  20714. name: "Macro",
  20715. height: math.unit(90, "feet")
  20716. },
  20717. {
  20718. name: "Max Size",
  20719. height: math.unit(280, "feet")
  20720. },
  20721. ]
  20722. ))
  20723. characterMakers.push(() => makeCharacter(
  20724. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20725. {
  20726. front: {
  20727. height: math.unit(4.5, "meters"),
  20728. weight: math.unit(3200, "lb"),
  20729. name: "Front",
  20730. image: {
  20731. source: "./media/characters/ty/front.svg",
  20732. extra: 1038 / 960,
  20733. bottom: 31.156 / 1068
  20734. }
  20735. },
  20736. back: {
  20737. height: math.unit(4.5, "meters"),
  20738. weight: math.unit(3200, "lb"),
  20739. name: "Back",
  20740. image: {
  20741. source: "./media/characters/ty/back.svg",
  20742. extra: 1044 / 966,
  20743. bottom: 7.48 / 1049
  20744. }
  20745. },
  20746. },
  20747. [
  20748. {
  20749. name: "Normal",
  20750. height: math.unit(4.5, "meters"),
  20751. default: true
  20752. },
  20753. ]
  20754. ))
  20755. characterMakers.push(() => makeCharacter(
  20756. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20757. {
  20758. front: {
  20759. height: math.unit(5 + 4 / 12, "feet"),
  20760. weight: math.unit(115, "lb"),
  20761. name: "Front",
  20762. image: {
  20763. source: "./media/characters/rocky/front.svg",
  20764. extra: 1012 / 975,
  20765. bottom: 54 / 1066
  20766. }
  20767. },
  20768. },
  20769. [
  20770. {
  20771. name: "Normal",
  20772. height: math.unit(5 + 4 / 12, "feet"),
  20773. default: true
  20774. },
  20775. ]
  20776. ))
  20777. characterMakers.push(() => makeCharacter(
  20778. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20779. {
  20780. upright: {
  20781. height: math.unit(6, "meters"),
  20782. weight: math.unit(4000, "kg"),
  20783. name: "Upright",
  20784. image: {
  20785. source: "./media/characters/ruin/upright.svg",
  20786. extra: 668 / 661,
  20787. bottom: 42 / 799.8396
  20788. }
  20789. },
  20790. },
  20791. [
  20792. {
  20793. name: "Normal",
  20794. height: math.unit(6, "meters"),
  20795. default: true
  20796. },
  20797. ]
  20798. ))
  20799. characterMakers.push(() => makeCharacter(
  20800. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20801. {
  20802. front: {
  20803. height: math.unit(5, "feet"),
  20804. weight: math.unit(106, "lb"),
  20805. name: "Front",
  20806. image: {
  20807. source: "./media/characters/robin/front.svg",
  20808. extra: 862 / 799,
  20809. bottom: 42.4 / 914.8856
  20810. }
  20811. },
  20812. },
  20813. [
  20814. {
  20815. name: "Normal",
  20816. height: math.unit(5, "feet"),
  20817. default: true
  20818. },
  20819. ]
  20820. ))
  20821. characterMakers.push(() => makeCharacter(
  20822. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20823. {
  20824. side: {
  20825. height: math.unit(3, "feet"),
  20826. weight: math.unit(225, "lb"),
  20827. name: "Side",
  20828. image: {
  20829. source: "./media/characters/saian/side.svg",
  20830. extra: 566 / 356,
  20831. bottom: 79.7 / 643
  20832. }
  20833. },
  20834. maw: {
  20835. height: math.unit(2.85, "feet"),
  20836. name: "Maw",
  20837. image: {
  20838. source: "./media/characters/saian/maw.svg"
  20839. }
  20840. },
  20841. },
  20842. [
  20843. {
  20844. name: "Normal",
  20845. height: math.unit(3, "feet"),
  20846. default: true
  20847. },
  20848. ]
  20849. ))
  20850. characterMakers.push(() => makeCharacter(
  20851. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20852. {
  20853. side: {
  20854. height: math.unit(8, "feet"),
  20855. weight: math.unit(300, "lb"),
  20856. name: "Side",
  20857. image: {
  20858. source: "./media/characters/equus-silvermane/side.svg",
  20859. extra: 2176 / 2050,
  20860. bottom: 65.7 / 2245
  20861. }
  20862. },
  20863. front: {
  20864. height: math.unit(8, "feet"),
  20865. weight: math.unit(300, "lb"),
  20866. name: "Front",
  20867. image: {
  20868. source: "./media/characters/equus-silvermane/front.svg",
  20869. extra: 4633 / 4400,
  20870. bottom: 71.3 / 4706.915
  20871. }
  20872. },
  20873. sideStepping: {
  20874. height: math.unit(8, "feet"),
  20875. weight: math.unit(300, "lb"),
  20876. name: "Side (Stepping)",
  20877. image: {
  20878. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20879. extra: 1968 / 1860,
  20880. bottom: 16.4 / 1989
  20881. }
  20882. },
  20883. },
  20884. [
  20885. {
  20886. name: "Normal",
  20887. height: math.unit(8, "feet")
  20888. },
  20889. {
  20890. name: "Minimacro",
  20891. height: math.unit(75, "feet"),
  20892. default: true
  20893. },
  20894. {
  20895. name: "Macro",
  20896. height: math.unit(150, "feet")
  20897. },
  20898. {
  20899. name: "Macro+",
  20900. height: math.unit(1000, "feet")
  20901. },
  20902. {
  20903. name: "Megamacro",
  20904. height: math.unit(1, "mile")
  20905. },
  20906. ]
  20907. ))
  20908. characterMakers.push(() => makeCharacter(
  20909. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  20910. {
  20911. side: {
  20912. height: math.unit(20, "feet"),
  20913. weight: math.unit(30000, "kg"),
  20914. name: "Side",
  20915. image: {
  20916. source: "./media/characters/windar/side.svg",
  20917. extra: 1491 / 1248,
  20918. bottom: 82.56 / 1568
  20919. }
  20920. },
  20921. },
  20922. [
  20923. {
  20924. name: "Normal",
  20925. height: math.unit(20, "feet"),
  20926. default: true
  20927. },
  20928. ]
  20929. ))
  20930. characterMakers.push(() => makeCharacter(
  20931. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  20932. {
  20933. side: {
  20934. height: math.unit(15.66, "feet"),
  20935. weight: math.unit(150, "lb"),
  20936. name: "Side",
  20937. image: {
  20938. source: "./media/characters/melody/side.svg",
  20939. extra: 1097 / 944,
  20940. bottom: 11.8 / 1109
  20941. }
  20942. },
  20943. sideOutfit: {
  20944. height: math.unit(15.66, "feet"),
  20945. weight: math.unit(150, "lb"),
  20946. name: "Side (Outfit)",
  20947. image: {
  20948. source: "./media/characters/melody/side-outfit.svg",
  20949. extra: 1097 / 944,
  20950. bottom: 11.8 / 1109
  20951. }
  20952. },
  20953. },
  20954. [
  20955. {
  20956. name: "Normal",
  20957. height: math.unit(15.66, "feet"),
  20958. default: true
  20959. },
  20960. ]
  20961. ))
  20962. characterMakers.push(() => makeCharacter(
  20963. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  20964. {
  20965. front: {
  20966. height: math.unit(8, "feet"),
  20967. weight: math.unit(325, "lb"),
  20968. name: "Front",
  20969. image: {
  20970. source: "./media/characters/windera/front.svg",
  20971. extra: 3180 / 2845,
  20972. bottom: 178 / 3365
  20973. }
  20974. },
  20975. },
  20976. [
  20977. {
  20978. name: "Normal",
  20979. height: math.unit(8, "feet"),
  20980. default: true
  20981. },
  20982. ]
  20983. ))
  20984. characterMakers.push(() => makeCharacter(
  20985. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  20986. {
  20987. front: {
  20988. height: math.unit(28.75, "feet"),
  20989. weight: math.unit(2000, "kg"),
  20990. name: "Front",
  20991. image: {
  20992. source: "./media/characters/sonear/front.svg",
  20993. extra: 1041.1 / 964.9,
  20994. bottom: 53.7 / 1096.6
  20995. }
  20996. },
  20997. },
  20998. [
  20999. {
  21000. name: "Normal",
  21001. height: math.unit(28.75, "feet"),
  21002. default: true
  21003. },
  21004. ]
  21005. ))
  21006. characterMakers.push(() => makeCharacter(
  21007. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21008. {
  21009. side: {
  21010. height: math.unit(25.5, "feet"),
  21011. weight: math.unit(23000, "kg"),
  21012. name: "Side",
  21013. image: {
  21014. source: "./media/characters/kanara/side.svg"
  21015. }
  21016. },
  21017. },
  21018. [
  21019. {
  21020. name: "Normal",
  21021. height: math.unit(25.5, "feet"),
  21022. default: true
  21023. },
  21024. ]
  21025. ))
  21026. characterMakers.push(() => makeCharacter(
  21027. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21028. {
  21029. side: {
  21030. height: math.unit(10, "feet"),
  21031. weight: math.unit(1000, "kg"),
  21032. name: "Side",
  21033. image: {
  21034. source: "./media/characters/ereus/side.svg",
  21035. extra: 1157 / 959,
  21036. bottom: 153 / 1312.5
  21037. }
  21038. },
  21039. },
  21040. [
  21041. {
  21042. name: "Normal",
  21043. height: math.unit(10, "feet"),
  21044. default: true
  21045. },
  21046. ]
  21047. ))
  21048. characterMakers.push(() => makeCharacter(
  21049. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21050. {
  21051. side: {
  21052. height: math.unit(4.5, "feet"),
  21053. weight: math.unit(500, "lb"),
  21054. name: "Side",
  21055. image: {
  21056. source: "./media/characters/e-ter/side.svg",
  21057. extra: 1550 / 1248,
  21058. bottom: 146 / 1694
  21059. }
  21060. },
  21061. },
  21062. [
  21063. {
  21064. name: "Normal",
  21065. height: math.unit(4.5, "feet"),
  21066. default: true
  21067. },
  21068. ]
  21069. ))
  21070. characterMakers.push(() => makeCharacter(
  21071. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21072. {
  21073. side: {
  21074. height: math.unit(9.7, "feet"),
  21075. weight: math.unit(4000, "kg"),
  21076. name: "Side",
  21077. image: {
  21078. source: "./media/characters/yamie/side.svg"
  21079. }
  21080. },
  21081. },
  21082. [
  21083. {
  21084. name: "Normal",
  21085. height: math.unit(9.7, "feet"),
  21086. default: true
  21087. },
  21088. ]
  21089. ))
  21090. characterMakers.push(() => makeCharacter(
  21091. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21092. {
  21093. front: {
  21094. height: math.unit(50, "feet"),
  21095. weight: math.unit(50000, "kg"),
  21096. name: "Front",
  21097. image: {
  21098. source: "./media/characters/anders/front.svg",
  21099. extra: 570 / 539,
  21100. bottom: 14.7 / 586.7
  21101. }
  21102. },
  21103. },
  21104. [
  21105. {
  21106. name: "Large",
  21107. height: math.unit(50, "feet")
  21108. },
  21109. {
  21110. name: "Macro",
  21111. height: math.unit(2000, "feet"),
  21112. default: true
  21113. },
  21114. {
  21115. name: "Megamacro",
  21116. height: math.unit(12, "miles")
  21117. },
  21118. ]
  21119. ))
  21120. characterMakers.push(() => makeCharacter(
  21121. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21122. {
  21123. front: {
  21124. height: math.unit(7 + 2 / 12, "feet"),
  21125. weight: math.unit(300, "lb"),
  21126. name: "Front",
  21127. image: {
  21128. source: "./media/characters/reban/front.svg",
  21129. extra: 516 / 487,
  21130. bottom: 42.82 / 558.356
  21131. }
  21132. },
  21133. dick: {
  21134. height: math.unit(7 / 5, "feet"),
  21135. name: "Dick",
  21136. image: {
  21137. source: "./media/characters/reban/dick.svg"
  21138. }
  21139. },
  21140. },
  21141. [
  21142. {
  21143. name: "Natural Height",
  21144. height: math.unit(7 + 2 / 12, "feet")
  21145. },
  21146. {
  21147. name: "Macro",
  21148. height: math.unit(500, "feet"),
  21149. default: true
  21150. },
  21151. {
  21152. name: "Canon Height",
  21153. height: math.unit(50, "AU")
  21154. },
  21155. ]
  21156. ))
  21157. characterMakers.push(() => makeCharacter(
  21158. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21159. {
  21160. front: {
  21161. height: math.unit(6, "feet"),
  21162. weight: math.unit(150, "lb"),
  21163. name: "Front",
  21164. image: {
  21165. source: "./media/characters/terrance-keayes/front.svg",
  21166. extra: 1.005,
  21167. bottom: 151 / 1615
  21168. }
  21169. },
  21170. side: {
  21171. height: math.unit(6, "feet"),
  21172. weight: math.unit(150, "lb"),
  21173. name: "Side",
  21174. image: {
  21175. source: "./media/characters/terrance-keayes/side.svg",
  21176. extra: 1.005,
  21177. bottom: 129.4 / 1544
  21178. }
  21179. },
  21180. back: {
  21181. height: math.unit(6, "feet"),
  21182. weight: math.unit(150, "lb"),
  21183. name: "Back",
  21184. image: {
  21185. source: "./media/characters/terrance-keayes/back.svg",
  21186. extra: 1.005,
  21187. bottom: 58.4 / 1557.3
  21188. }
  21189. },
  21190. dick: {
  21191. height: math.unit(6 * 0.208, "feet"),
  21192. name: "Dick",
  21193. image: {
  21194. source: "./media/characters/terrance-keayes/dick.svg"
  21195. }
  21196. },
  21197. },
  21198. [
  21199. {
  21200. name: "Canon Height",
  21201. height: math.unit(35, "miles"),
  21202. default: true
  21203. },
  21204. ]
  21205. ))
  21206. characterMakers.push(() => makeCharacter(
  21207. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21208. {
  21209. front: {
  21210. height: math.unit(6, "feet"),
  21211. weight: math.unit(150, "lb"),
  21212. name: "Front",
  21213. image: {
  21214. source: "./media/characters/ofelia/front.svg",
  21215. extra: 546 / 541,
  21216. bottom: 39 / 583
  21217. }
  21218. },
  21219. back: {
  21220. height: math.unit(6, "feet"),
  21221. weight: math.unit(150, "lb"),
  21222. name: "Back",
  21223. image: {
  21224. source: "./media/characters/ofelia/back.svg",
  21225. extra: 564 / 559.5,
  21226. bottom: 8.69 / 573.02
  21227. }
  21228. },
  21229. maw: {
  21230. height: math.unit(1, "feet"),
  21231. name: "Maw",
  21232. image: {
  21233. source: "./media/characters/ofelia/maw.svg"
  21234. }
  21235. },
  21236. foot: {
  21237. height: math.unit(1.949, "feet"),
  21238. name: "Foot",
  21239. image: {
  21240. source: "./media/characters/ofelia/foot.svg"
  21241. }
  21242. },
  21243. },
  21244. [
  21245. {
  21246. name: "Canon Height",
  21247. height: math.unit(2000, "miles"),
  21248. default: true
  21249. },
  21250. ]
  21251. ))
  21252. characterMakers.push(() => makeCharacter(
  21253. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21254. {
  21255. front: {
  21256. height: math.unit(6, "feet"),
  21257. weight: math.unit(150, "lb"),
  21258. name: "Front",
  21259. image: {
  21260. source: "./media/characters/samuel/front.svg",
  21261. extra: 265 / 258,
  21262. bottom: 2 / 266.1566
  21263. }
  21264. },
  21265. },
  21266. [
  21267. {
  21268. name: "Macro",
  21269. height: math.unit(100, "feet"),
  21270. default: true
  21271. },
  21272. {
  21273. name: "Full Size",
  21274. height: math.unit(1000, "miles")
  21275. },
  21276. ]
  21277. ))
  21278. characterMakers.push(() => makeCharacter(
  21279. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21280. {
  21281. front: {
  21282. height: math.unit(6, "feet"),
  21283. weight: math.unit(300, "lb"),
  21284. name: "Front",
  21285. image: {
  21286. source: "./media/characters/beishir-kiel/front.svg",
  21287. extra: 569 / 547,
  21288. bottom: 41.9 / 609
  21289. }
  21290. },
  21291. maw: {
  21292. height: math.unit(6 * 0.202, "feet"),
  21293. name: "Maw",
  21294. image: {
  21295. source: "./media/characters/beishir-kiel/maw.svg"
  21296. }
  21297. },
  21298. },
  21299. [
  21300. {
  21301. name: "Macro",
  21302. height: math.unit(300, "feet"),
  21303. default: true
  21304. },
  21305. ]
  21306. ))
  21307. characterMakers.push(() => makeCharacter(
  21308. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21309. {
  21310. front: {
  21311. height: math.unit(5 + 8 / 12, "feet"),
  21312. weight: math.unit(120, "lb"),
  21313. name: "Front",
  21314. image: {
  21315. source: "./media/characters/logan-grey/front.svg",
  21316. extra: 2539 / 2393,
  21317. bottom: 97.6 / 2636.37
  21318. }
  21319. },
  21320. frontAlt: {
  21321. height: math.unit(5 + 8 / 12, "feet"),
  21322. weight: math.unit(120, "lb"),
  21323. name: "Front (Alt)",
  21324. image: {
  21325. source: "./media/characters/logan-grey/front-alt.svg",
  21326. extra: 958 / 893,
  21327. bottom: 15 / 970.768
  21328. }
  21329. },
  21330. back: {
  21331. height: math.unit(5 + 8 / 12, "feet"),
  21332. weight: math.unit(120, "lb"),
  21333. name: "Back",
  21334. image: {
  21335. source: "./media/characters/logan-grey/back.svg",
  21336. extra: 958 / 893,
  21337. bottom: 2.1881 / 970.9788
  21338. }
  21339. },
  21340. dick: {
  21341. height: math.unit(1.437, "feet"),
  21342. name: "Dick",
  21343. image: {
  21344. source: "./media/characters/logan-grey/dick.svg"
  21345. }
  21346. },
  21347. },
  21348. [
  21349. {
  21350. name: "Normal",
  21351. height: math.unit(5 + 8 / 12, "feet")
  21352. },
  21353. {
  21354. name: "The 500 Foot Femboy",
  21355. height: math.unit(500, "feet"),
  21356. default: true
  21357. },
  21358. {
  21359. name: "Megmacro",
  21360. height: math.unit(20, "miles")
  21361. },
  21362. ]
  21363. ))
  21364. characterMakers.push(() => makeCharacter(
  21365. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21366. {
  21367. front: {
  21368. height: math.unit(8 + 2 / 12, "feet"),
  21369. weight: math.unit(275, "lb"),
  21370. name: "Front",
  21371. image: {
  21372. source: "./media/characters/draganta/front.svg",
  21373. extra: 1177 / 1135,
  21374. bottom: 33.46 / 1212.1
  21375. }
  21376. },
  21377. },
  21378. [
  21379. {
  21380. name: "Normal",
  21381. height: math.unit(8 + 6 / 12, "feet"),
  21382. default: true
  21383. },
  21384. {
  21385. name: "Macro",
  21386. height: math.unit(150, "feet")
  21387. },
  21388. {
  21389. name: "Megamacro",
  21390. height: math.unit(1000, "miles")
  21391. },
  21392. ]
  21393. ))
  21394. characterMakers.push(() => makeCharacter(
  21395. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21396. {
  21397. front: {
  21398. height: math.unit(1.72, "m"),
  21399. weight: math.unit(80, "lb"),
  21400. name: "Front",
  21401. image: {
  21402. source: "./media/characters/voski/front.svg",
  21403. extra: 2076.22 / 2022.4,
  21404. bottom: 102.7 / 2177.3866
  21405. }
  21406. },
  21407. frontNsfw: {
  21408. height: math.unit(1.72, "m"),
  21409. weight: math.unit(80, "lb"),
  21410. name: "Front (NSFW)",
  21411. image: {
  21412. source: "./media/characters/voski/front-nsfw.svg",
  21413. extra: 2076.22 / 2022.4,
  21414. bottom: 102.7 / 2177.3866
  21415. }
  21416. },
  21417. back: {
  21418. height: math.unit(1.72, "m"),
  21419. weight: math.unit(80, "lb"),
  21420. name: "Back",
  21421. image: {
  21422. source: "./media/characters/voski/back.svg",
  21423. extra: 2104 / 2051,
  21424. bottom: 10.45 / 2113.63
  21425. }
  21426. },
  21427. },
  21428. [
  21429. {
  21430. name: "Normal",
  21431. height: math.unit(1.72, "m")
  21432. },
  21433. {
  21434. name: "Macro",
  21435. height: math.unit(55, "m"),
  21436. default: true
  21437. },
  21438. {
  21439. name: "Macro+",
  21440. height: math.unit(300, "m")
  21441. },
  21442. {
  21443. name: "Macro++",
  21444. height: math.unit(700, "m")
  21445. },
  21446. {
  21447. name: "Macro+++",
  21448. height: math.unit(4500, "m")
  21449. },
  21450. {
  21451. name: "Macro++++",
  21452. height: math.unit(45, "km")
  21453. },
  21454. {
  21455. name: "Macro+++++",
  21456. height: math.unit(1220, "km")
  21457. },
  21458. ]
  21459. ))
  21460. characterMakers.push(() => makeCharacter(
  21461. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21462. {
  21463. front: {
  21464. height: math.unit(2.3, "m"),
  21465. weight: math.unit(304, "kg"),
  21466. name: "Front",
  21467. image: {
  21468. source: "./media/characters/icowom-lee/front.svg",
  21469. extra: 985 / 955,
  21470. bottom: 25.4 / 1012
  21471. }
  21472. },
  21473. fronttentacles: {
  21474. height: math.unit(2.3, "m"),
  21475. weight: math.unit(304, "kg"),
  21476. name: "Front-tentacles",
  21477. image: {
  21478. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21479. extra: 985 / 955,
  21480. bottom: 25.4 / 1012
  21481. }
  21482. },
  21483. back: {
  21484. height: math.unit(2.3, "m"),
  21485. weight: math.unit(304, "kg"),
  21486. name: "Back",
  21487. image: {
  21488. source: "./media/characters/icowom-lee/back.svg",
  21489. extra: 975 / 954,
  21490. bottom: 9.5 / 985
  21491. }
  21492. },
  21493. backtentacles: {
  21494. height: math.unit(2.3, "m"),
  21495. weight: math.unit(304, "kg"),
  21496. name: "Back-tentacles",
  21497. image: {
  21498. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21499. extra: 975 / 954,
  21500. bottom: 9.5 / 985
  21501. }
  21502. },
  21503. frontDressed: {
  21504. height: math.unit(2.3, "m"),
  21505. weight: math.unit(304, "kg"),
  21506. name: "Front (Dressed)",
  21507. image: {
  21508. source: "./media/characters/icowom-lee/front-dressed.svg",
  21509. extra: 3076 / 2933,
  21510. bottom: 51.4 / 3125.1889
  21511. }
  21512. },
  21513. rump: {
  21514. height: math.unit(0.776, "meters"),
  21515. name: "Rump",
  21516. image: {
  21517. source: "./media/characters/icowom-lee/rump.svg"
  21518. }
  21519. },
  21520. genitals: {
  21521. height: math.unit(0.78, "meters"),
  21522. name: "Genitals",
  21523. image: {
  21524. source: "./media/characters/icowom-lee/genitals.svg"
  21525. }
  21526. },
  21527. },
  21528. [
  21529. {
  21530. name: "Normal",
  21531. height: math.unit(2.3, "meters"),
  21532. default: true
  21533. },
  21534. {
  21535. name: "Macro",
  21536. height: math.unit(94, "meters"),
  21537. default: true
  21538. },
  21539. ]
  21540. ))
  21541. characterMakers.push(() => makeCharacter(
  21542. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21543. {
  21544. front: {
  21545. height: math.unit(22, "meters"),
  21546. weight: math.unit(21000, "kg"),
  21547. name: "Front",
  21548. image: {
  21549. source: "./media/characters/shock-diamond/front.svg",
  21550. extra: 2204 / 2053,
  21551. bottom: 65 / 2239.47
  21552. }
  21553. },
  21554. frontNude: {
  21555. height: math.unit(22, "meters"),
  21556. weight: math.unit(21000, "kg"),
  21557. name: "Front (Nude)",
  21558. image: {
  21559. source: "./media/characters/shock-diamond/front-nude.svg",
  21560. extra: 2514 / 2285,
  21561. bottom: 13 / 2527.56
  21562. }
  21563. },
  21564. },
  21565. [
  21566. {
  21567. name: "Normal",
  21568. height: math.unit(3, "meters")
  21569. },
  21570. {
  21571. name: "Macro",
  21572. height: math.unit(22, "meters"),
  21573. default: true
  21574. },
  21575. ]
  21576. ))
  21577. characterMakers.push(() => makeCharacter(
  21578. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21579. {
  21580. front: {
  21581. height: math.unit(5 + 4 / 12, "feet"),
  21582. weight: math.unit(120, "lb"),
  21583. name: "Front",
  21584. image: {
  21585. source: "./media/characters/rory/front.svg",
  21586. extra: 589 / 556,
  21587. bottom: 45.7 / 635.76
  21588. }
  21589. },
  21590. frontNude: {
  21591. height: math.unit(5 + 4 / 12, "feet"),
  21592. weight: math.unit(120, "lb"),
  21593. name: "Front (Nude)",
  21594. image: {
  21595. source: "./media/characters/rory/front-nude.svg",
  21596. extra: 589 / 556,
  21597. bottom: 45.7 / 635.76
  21598. }
  21599. },
  21600. side: {
  21601. height: math.unit(5 + 4 / 12, "feet"),
  21602. weight: math.unit(120, "lb"),
  21603. name: "Side",
  21604. image: {
  21605. source: "./media/characters/rory/side.svg",
  21606. extra: 597 / 564,
  21607. bottom: 55 / 653
  21608. }
  21609. },
  21610. back: {
  21611. height: math.unit(5 + 4 / 12, "feet"),
  21612. weight: math.unit(120, "lb"),
  21613. name: "Back",
  21614. image: {
  21615. source: "./media/characters/rory/back.svg",
  21616. extra: 620 / 585,
  21617. bottom: 8.86 / 630.43
  21618. }
  21619. },
  21620. dick: {
  21621. height: math.unit(0.86, "feet"),
  21622. name: "Dick",
  21623. image: {
  21624. source: "./media/characters/rory/dick.svg"
  21625. }
  21626. },
  21627. },
  21628. [
  21629. {
  21630. name: "Normal",
  21631. height: math.unit(5 + 4 / 12, "feet"),
  21632. default: true
  21633. },
  21634. {
  21635. name: "Macro",
  21636. height: math.unit(100, "feet")
  21637. },
  21638. {
  21639. name: "Macro+",
  21640. height: math.unit(140, "feet")
  21641. },
  21642. {
  21643. name: "Macro++",
  21644. height: math.unit(300, "feet")
  21645. },
  21646. ]
  21647. ))
  21648. characterMakers.push(() => makeCharacter(
  21649. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21650. {
  21651. front: {
  21652. height: math.unit(5 + 9 / 12, "feet"),
  21653. weight: math.unit(190, "lb"),
  21654. name: "Front",
  21655. image: {
  21656. source: "./media/characters/sprisk/front.svg",
  21657. extra: 1225 / 1180,
  21658. bottom: 42.7 / 1266.4
  21659. }
  21660. },
  21661. frontNsfw: {
  21662. height: math.unit(5 + 9 / 12, "feet"),
  21663. weight: math.unit(190, "lb"),
  21664. name: "Front (NSFW)",
  21665. image: {
  21666. source: "./media/characters/sprisk/front-nsfw.svg",
  21667. extra: 1225 / 1180,
  21668. bottom: 42.7 / 1266.4
  21669. }
  21670. },
  21671. back: {
  21672. height: math.unit(5 + 9 / 12, "feet"),
  21673. weight: math.unit(190, "lb"),
  21674. name: "Back",
  21675. image: {
  21676. source: "./media/characters/sprisk/back.svg",
  21677. extra: 1247 / 1200,
  21678. bottom: 5.6 / 1253.04
  21679. }
  21680. },
  21681. },
  21682. [
  21683. {
  21684. name: "Tiny",
  21685. height: math.unit(2, "inches")
  21686. },
  21687. {
  21688. name: "Normal",
  21689. height: math.unit(5 + 9 / 12, "feet"),
  21690. default: true
  21691. },
  21692. {
  21693. name: "Mini Macro",
  21694. height: math.unit(18, "feet")
  21695. },
  21696. {
  21697. name: "Macro",
  21698. height: math.unit(100, "feet")
  21699. },
  21700. {
  21701. name: "MACRO",
  21702. height: math.unit(50, "miles")
  21703. },
  21704. {
  21705. name: "M A C R O",
  21706. height: math.unit(300, "miles")
  21707. },
  21708. ]
  21709. ))
  21710. characterMakers.push(() => makeCharacter(
  21711. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21712. {
  21713. side: {
  21714. height: math.unit(15.6, "meters"),
  21715. weight: math.unit(700000, "kg"),
  21716. name: "Side",
  21717. image: {
  21718. source: "./media/characters/bunsen/side.svg",
  21719. extra: 1644 / 358
  21720. }
  21721. },
  21722. foot: {
  21723. height: math.unit(1.611 * 1644 / 358, "meter"),
  21724. name: "Foot",
  21725. image: {
  21726. source: "./media/characters/bunsen/foot.svg"
  21727. }
  21728. },
  21729. },
  21730. [
  21731. {
  21732. name: "Small",
  21733. height: math.unit(10, "feet")
  21734. },
  21735. {
  21736. name: "Normal",
  21737. height: math.unit(15.6, "meters"),
  21738. default: true
  21739. },
  21740. ]
  21741. ))
  21742. characterMakers.push(() => makeCharacter(
  21743. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21744. {
  21745. front: {
  21746. height: math.unit(4 + 11 / 12, "feet"),
  21747. weight: math.unit(140, "lb"),
  21748. name: "Front",
  21749. image: {
  21750. source: "./media/characters/sesh/front.svg",
  21751. extra: 3420 / 3231,
  21752. bottom: 72 / 3949.5
  21753. }
  21754. },
  21755. },
  21756. [
  21757. {
  21758. name: "Normal",
  21759. height: math.unit(4 + 11 / 12, "feet")
  21760. },
  21761. {
  21762. name: "Grown",
  21763. height: math.unit(15, "feet"),
  21764. default: true
  21765. },
  21766. {
  21767. name: "Macro",
  21768. height: math.unit(1500, "feet")
  21769. },
  21770. {
  21771. name: "Megamacro",
  21772. height: math.unit(30, "miles")
  21773. },
  21774. {
  21775. name: "Continental",
  21776. height: math.unit(3000, "miles")
  21777. },
  21778. {
  21779. name: "Gravity Mass",
  21780. height: math.unit(300000, "miles")
  21781. },
  21782. {
  21783. name: "Planet Buster",
  21784. height: math.unit(30000000, "miles")
  21785. },
  21786. {
  21787. name: "Big",
  21788. height: math.unit(3000000000, "miles")
  21789. },
  21790. ]
  21791. ))
  21792. characterMakers.push(() => makeCharacter(
  21793. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21794. {
  21795. front: {
  21796. height: math.unit(9, "feet"),
  21797. weight: math.unit(350, "lb"),
  21798. name: "Front",
  21799. image: {
  21800. source: "./media/characters/pepper/front.svg",
  21801. extra: 1448 / 1312,
  21802. bottom: 9.4 / 1457.88
  21803. }
  21804. },
  21805. back: {
  21806. height: math.unit(9, "feet"),
  21807. weight: math.unit(350, "lb"),
  21808. name: "Back",
  21809. image: {
  21810. source: "./media/characters/pepper/back.svg",
  21811. extra: 1423 / 1300,
  21812. bottom: 4.6 / 1429
  21813. }
  21814. },
  21815. maw: {
  21816. height: math.unit(0.932, "feet"),
  21817. name: "Maw",
  21818. image: {
  21819. source: "./media/characters/pepper/maw.svg"
  21820. }
  21821. },
  21822. },
  21823. [
  21824. {
  21825. name: "Normal",
  21826. height: math.unit(9, "feet"),
  21827. default: true
  21828. },
  21829. ]
  21830. ))
  21831. characterMakers.push(() => makeCharacter(
  21832. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21833. {
  21834. front: {
  21835. height: math.unit(6, "feet"),
  21836. weight: math.unit(150, "lb"),
  21837. name: "Front",
  21838. image: {
  21839. source: "./media/characters/maelstrom/front.svg",
  21840. extra: 2100 / 1883,
  21841. bottom: 94 / 2196.7
  21842. }
  21843. },
  21844. },
  21845. [
  21846. {
  21847. name: "Less Kaiju",
  21848. height: math.unit(200, "feet")
  21849. },
  21850. {
  21851. name: "Kaiju",
  21852. height: math.unit(400, "feet"),
  21853. default: true
  21854. },
  21855. {
  21856. name: "Kaiju-er",
  21857. height: math.unit(600, "feet")
  21858. },
  21859. ]
  21860. ))
  21861. characterMakers.push(() => makeCharacter(
  21862. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21863. {
  21864. front: {
  21865. height: math.unit(6 + 5 / 12, "feet"),
  21866. weight: math.unit(180, "lb"),
  21867. name: "Front",
  21868. image: {
  21869. source: "./media/characters/lexir/front.svg",
  21870. extra: 180 / 172,
  21871. bottom: 12 / 192
  21872. }
  21873. },
  21874. back: {
  21875. height: math.unit(6 + 5 / 12, "feet"),
  21876. weight: math.unit(180, "lb"),
  21877. name: "Back",
  21878. image: {
  21879. source: "./media/characters/lexir/back.svg",
  21880. extra: 183.84 / 175.5,
  21881. bottom: 3.1 / 187
  21882. }
  21883. },
  21884. },
  21885. [
  21886. {
  21887. name: "Very Smal",
  21888. height: math.unit(1, "nm")
  21889. },
  21890. {
  21891. name: "Normal",
  21892. height: math.unit(6 + 5 / 12, "feet"),
  21893. default: true
  21894. },
  21895. {
  21896. name: "Macro",
  21897. height: math.unit(1, "mile")
  21898. },
  21899. {
  21900. name: "Megamacro",
  21901. height: math.unit(50, "miles")
  21902. },
  21903. ]
  21904. ))
  21905. characterMakers.push(() => makeCharacter(
  21906. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  21907. {
  21908. front: {
  21909. height: math.unit(1.5, "meters"),
  21910. weight: math.unit(100, "lb"),
  21911. name: "Front",
  21912. image: {
  21913. source: "./media/characters/maksio/front.svg",
  21914. extra: 1549 / 1531,
  21915. bottom: 123.7 / 1674.5429
  21916. }
  21917. },
  21918. back: {
  21919. height: math.unit(1.5, "meters"),
  21920. weight: math.unit(100, "lb"),
  21921. name: "Back",
  21922. image: {
  21923. source: "./media/characters/maksio/back.svg",
  21924. extra: 1541 / 1509,
  21925. bottom: 97 / 1639
  21926. }
  21927. },
  21928. hand: {
  21929. height: math.unit(0.621, "feet"),
  21930. name: "Hand",
  21931. image: {
  21932. source: "./media/characters/maksio/hand.svg"
  21933. }
  21934. },
  21935. foot: {
  21936. height: math.unit(1.611, "feet"),
  21937. name: "Foot",
  21938. image: {
  21939. source: "./media/characters/maksio/foot.svg"
  21940. }
  21941. },
  21942. },
  21943. [
  21944. {
  21945. name: "Shrunken",
  21946. height: math.unit(10, "cm")
  21947. },
  21948. {
  21949. name: "Normal",
  21950. height: math.unit(150, "cm"),
  21951. default: true
  21952. },
  21953. ]
  21954. ))
  21955. characterMakers.push(() => makeCharacter(
  21956. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  21957. {
  21958. front: {
  21959. height: math.unit(100, "feet"),
  21960. name: "Front",
  21961. image: {
  21962. source: "./media/characters/erza-bear/front.svg",
  21963. extra: 2449 / 2390,
  21964. bottom: 46 / 2494
  21965. }
  21966. },
  21967. back: {
  21968. height: math.unit(100, "feet"),
  21969. name: "Back",
  21970. image: {
  21971. source: "./media/characters/erza-bear/back.svg",
  21972. extra: 2489 / 2430,
  21973. bottom: 85.4 / 2480
  21974. }
  21975. },
  21976. tail: {
  21977. height: math.unit(42, "feet"),
  21978. name: "Tail",
  21979. image: {
  21980. source: "./media/characters/erza-bear/tail.svg"
  21981. }
  21982. },
  21983. tongue: {
  21984. height: math.unit(8, "feet"),
  21985. name: "Tongue",
  21986. image: {
  21987. source: "./media/characters/erza-bear/tongue.svg"
  21988. }
  21989. },
  21990. dick: {
  21991. height: math.unit(10.5, "feet"),
  21992. name: "Dick",
  21993. image: {
  21994. source: "./media/characters/erza-bear/dick.svg"
  21995. }
  21996. },
  21997. dickVertical: {
  21998. height: math.unit(16.9, "feet"),
  21999. name: "Dick (Vertical)",
  22000. image: {
  22001. source: "./media/characters/erza-bear/dick-vertical.svg"
  22002. }
  22003. },
  22004. },
  22005. [
  22006. {
  22007. name: "Macro",
  22008. height: math.unit(100, "feet"),
  22009. default: true
  22010. },
  22011. ]
  22012. ))
  22013. characterMakers.push(() => makeCharacter(
  22014. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22015. {
  22016. front: {
  22017. height: math.unit(172, "cm"),
  22018. weight: math.unit(73, "kg"),
  22019. name: "Front",
  22020. image: {
  22021. source: "./media/characters/violet-flor/front.svg",
  22022. extra: 1530 / 1442,
  22023. bottom: 61.9 / 1588.8
  22024. }
  22025. },
  22026. back: {
  22027. height: math.unit(180, "cm"),
  22028. weight: math.unit(73, "kg"),
  22029. name: "Back",
  22030. image: {
  22031. source: "./media/characters/violet-flor/back.svg",
  22032. extra: 1692 / 1630,
  22033. bottom: 20 / 1712
  22034. }
  22035. },
  22036. },
  22037. [
  22038. {
  22039. name: "Normal",
  22040. height: math.unit(172, "cm"),
  22041. default: true
  22042. },
  22043. ]
  22044. ))
  22045. characterMakers.push(() => makeCharacter(
  22046. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22047. {
  22048. front: {
  22049. height: math.unit(6, "feet"),
  22050. weight: math.unit(220, "lb"),
  22051. name: "Front",
  22052. image: {
  22053. source: "./media/characters/lynn-rhea/front.svg",
  22054. extra: 310 / 273
  22055. }
  22056. },
  22057. back: {
  22058. height: math.unit(6, "feet"),
  22059. weight: math.unit(220, "lb"),
  22060. name: "Back",
  22061. image: {
  22062. source: "./media/characters/lynn-rhea/back.svg",
  22063. extra: 310 / 273
  22064. }
  22065. },
  22066. dicks: {
  22067. height: math.unit(0.9, "feet"),
  22068. name: "Dicks",
  22069. image: {
  22070. source: "./media/characters/lynn-rhea/dicks.svg"
  22071. }
  22072. },
  22073. slit: {
  22074. height: math.unit(0.4, "feet"),
  22075. name: "Slit",
  22076. image: {
  22077. source: "./media/characters/lynn-rhea/slit.svg"
  22078. }
  22079. },
  22080. },
  22081. [
  22082. {
  22083. name: "Micro",
  22084. height: math.unit(1, "inch")
  22085. },
  22086. {
  22087. name: "Macro",
  22088. height: math.unit(60, "feet"),
  22089. default: true
  22090. },
  22091. {
  22092. name: "Megamacro",
  22093. height: math.unit(2, "miles")
  22094. },
  22095. {
  22096. name: "Gigamacro",
  22097. height: math.unit(3, "earths")
  22098. },
  22099. {
  22100. name: "Galactic",
  22101. height: math.unit(0.8, "galaxies")
  22102. },
  22103. ]
  22104. ))
  22105. characterMakers.push(() => makeCharacter(
  22106. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22107. {
  22108. front: {
  22109. height: math.unit(1600, "feet"),
  22110. weight: math.unit(85758785169, "kg"),
  22111. name: "Front",
  22112. image: {
  22113. source: "./media/characters/valathos/front.svg",
  22114. extra: 1451 / 1339
  22115. }
  22116. },
  22117. },
  22118. [
  22119. {
  22120. name: "Macro",
  22121. height: math.unit(1600, "feet"),
  22122. default: true
  22123. },
  22124. ]
  22125. ))
  22126. characterMakers.push(() => makeCharacter(
  22127. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22128. {
  22129. front: {
  22130. height: math.unit(7 + 5 / 12, "feet"),
  22131. weight: math.unit(300, "lb"),
  22132. name: "Front",
  22133. image: {
  22134. source: "./media/characters/azula/front.svg",
  22135. extra: 3208 / 2880,
  22136. bottom: 80.2 / 3277
  22137. }
  22138. },
  22139. back: {
  22140. height: math.unit(7 + 5 / 12, "feet"),
  22141. weight: math.unit(300, "lb"),
  22142. name: "Back",
  22143. image: {
  22144. source: "./media/characters/azula/back.svg",
  22145. extra: 3169 / 2822,
  22146. bottom: 150.6 / 3321
  22147. }
  22148. },
  22149. },
  22150. [
  22151. {
  22152. name: "Normal",
  22153. height: math.unit(7 + 5 / 12, "feet"),
  22154. default: true
  22155. },
  22156. {
  22157. name: "Big",
  22158. height: math.unit(20, "feet")
  22159. },
  22160. ]
  22161. ))
  22162. characterMakers.push(() => makeCharacter(
  22163. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22164. {
  22165. front: {
  22166. height: math.unit(5 + 1 / 12, "feet"),
  22167. weight: math.unit(110, "lb"),
  22168. name: "Front",
  22169. image: {
  22170. source: "./media/characters/rupert/front.svg",
  22171. extra: 1549 / 1495,
  22172. bottom: 54.2 / 1604.4
  22173. }
  22174. },
  22175. },
  22176. [
  22177. {
  22178. name: "Normal",
  22179. height: math.unit(5 + 1 / 12, "feet"),
  22180. default: true
  22181. },
  22182. ]
  22183. ))
  22184. characterMakers.push(() => makeCharacter(
  22185. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22186. {
  22187. front: {
  22188. height: math.unit(8 + 4 / 12, "feet"),
  22189. weight: math.unit(350, "lb"),
  22190. name: "Front",
  22191. image: {
  22192. source: "./media/characters/sheera-castellar/front.svg",
  22193. extra: 1957 / 1894,
  22194. bottom: 26.97 / 1975.017
  22195. }
  22196. },
  22197. side: {
  22198. height: math.unit(8 + 4 / 12, "feet"),
  22199. weight: math.unit(350, "lb"),
  22200. name: "Side",
  22201. image: {
  22202. source: "./media/characters/sheera-castellar/side.svg",
  22203. extra: 1957 / 1894
  22204. }
  22205. },
  22206. back: {
  22207. height: math.unit(8 + 4 / 12, "feet"),
  22208. weight: math.unit(350, "lb"),
  22209. name: "Back",
  22210. image: {
  22211. source: "./media/characters/sheera-castellar/back.svg",
  22212. extra: 1957 / 1894
  22213. }
  22214. },
  22215. angled: {
  22216. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22217. weight: math.unit(350, "lb"),
  22218. name: "Angled",
  22219. image: {
  22220. source: "./media/characters/sheera-castellar/angled.svg",
  22221. extra: 1807 / 1707,
  22222. bottom: 68 / 1875
  22223. }
  22224. },
  22225. genitals: {
  22226. height: math.unit(2.2, "feet"),
  22227. name: "Genitals",
  22228. image: {
  22229. source: "./media/characters/sheera-castellar/genitals.svg"
  22230. }
  22231. },
  22232. },
  22233. [
  22234. {
  22235. name: "Normal",
  22236. height: math.unit(8 + 4 / 12, "feet")
  22237. },
  22238. {
  22239. name: "Macro",
  22240. height: math.unit(150, "feet"),
  22241. default: true
  22242. },
  22243. {
  22244. name: "Macro+",
  22245. height: math.unit(800, "feet")
  22246. },
  22247. ]
  22248. ))
  22249. characterMakers.push(() => makeCharacter(
  22250. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22251. {
  22252. front: {
  22253. height: math.unit(6, "feet"),
  22254. weight: math.unit(150, "lb"),
  22255. name: "Front",
  22256. image: {
  22257. source: "./media/characters/jaipur/front.svg",
  22258. extra: 3860 / 3731,
  22259. bottom: 287 / 4140
  22260. }
  22261. },
  22262. back: {
  22263. height: math.unit(6, "feet"),
  22264. weight: math.unit(150, "lb"),
  22265. name: "Back",
  22266. image: {
  22267. source: "./media/characters/jaipur/back.svg",
  22268. extra: 4060 / 3930,
  22269. bottom: 151 / 4200
  22270. }
  22271. },
  22272. },
  22273. [
  22274. {
  22275. name: "Normal",
  22276. height: math.unit(1.85, "meters"),
  22277. default: true
  22278. },
  22279. {
  22280. name: "Macro",
  22281. height: math.unit(150, "meters")
  22282. },
  22283. {
  22284. name: "Macro+",
  22285. height: math.unit(0.5, "miles")
  22286. },
  22287. {
  22288. name: "Macro++",
  22289. height: math.unit(2.5, "miles")
  22290. },
  22291. {
  22292. name: "Macro+++",
  22293. height: math.unit(12, "miles")
  22294. },
  22295. {
  22296. name: "Macro++++",
  22297. height: math.unit(120, "miles")
  22298. },
  22299. {
  22300. name: "Macro+++++",
  22301. height: math.unit(1200, "miles")
  22302. },
  22303. ]
  22304. ))
  22305. characterMakers.push(() => makeCharacter(
  22306. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22307. {
  22308. front: {
  22309. height: math.unit(6, "feet"),
  22310. weight: math.unit(150, "lb"),
  22311. name: "Front",
  22312. image: {
  22313. source: "./media/characters/sheila-wolf/front.svg",
  22314. extra: 1931 / 1808,
  22315. bottom: 29.5 / 1960
  22316. }
  22317. },
  22318. dick: {
  22319. height: math.unit(1.464, "feet"),
  22320. name: "Dick",
  22321. image: {
  22322. source: "./media/characters/sheila-wolf/dick.svg"
  22323. }
  22324. },
  22325. muzzle: {
  22326. height: math.unit(0.513, "feet"),
  22327. name: "Muzzle",
  22328. image: {
  22329. source: "./media/characters/sheila-wolf/muzzle.svg"
  22330. }
  22331. },
  22332. },
  22333. [
  22334. {
  22335. name: "Macro",
  22336. height: math.unit(70, "feet"),
  22337. default: true
  22338. },
  22339. ]
  22340. ))
  22341. characterMakers.push(() => makeCharacter(
  22342. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22343. {
  22344. front: {
  22345. height: math.unit(32, "meters"),
  22346. weight: math.unit(300000, "kg"),
  22347. name: "Front",
  22348. image: {
  22349. source: "./media/characters/almor/front.svg",
  22350. extra: 1408 / 1322,
  22351. bottom: 94.6 / 1506.5
  22352. }
  22353. },
  22354. },
  22355. [
  22356. {
  22357. name: "Macro",
  22358. height: math.unit(32, "meters"),
  22359. default: true
  22360. },
  22361. ]
  22362. ))
  22363. characterMakers.push(() => makeCharacter(
  22364. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22365. {
  22366. front: {
  22367. height: math.unit(7, "feet"),
  22368. weight: math.unit(200, "lb"),
  22369. name: "Front",
  22370. image: {
  22371. source: "./media/characters/silver/front.svg",
  22372. extra: 472.1 / 450.5,
  22373. bottom: 26.5 / 499.424
  22374. }
  22375. },
  22376. },
  22377. [
  22378. {
  22379. name: "Normal",
  22380. height: math.unit(7, "feet"),
  22381. default: true
  22382. },
  22383. {
  22384. name: "Macro",
  22385. height: math.unit(800, "feet")
  22386. },
  22387. {
  22388. name: "Megamacro",
  22389. height: math.unit(250, "miles")
  22390. },
  22391. ]
  22392. ))
  22393. characterMakers.push(() => makeCharacter(
  22394. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22395. {
  22396. front: {
  22397. height: math.unit(6, "feet"),
  22398. weight: math.unit(150, "lb"),
  22399. name: "Front",
  22400. image: {
  22401. source: "./media/characters/pliskin/front.svg",
  22402. extra: 1469 / 1359,
  22403. bottom: 70 / 1540
  22404. }
  22405. },
  22406. },
  22407. [
  22408. {
  22409. name: "Micro",
  22410. height: math.unit(3, "inches")
  22411. },
  22412. {
  22413. name: "Normal",
  22414. height: math.unit(5 + 11 / 12, "feet"),
  22415. default: true
  22416. },
  22417. {
  22418. name: "Macro",
  22419. height: math.unit(120, "feet")
  22420. },
  22421. ]
  22422. ))
  22423. characterMakers.push(() => makeCharacter(
  22424. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22425. {
  22426. front: {
  22427. height: math.unit(6, "feet"),
  22428. weight: math.unit(150, "lb"),
  22429. name: "Front",
  22430. image: {
  22431. source: "./media/characters/sammy/front.svg",
  22432. extra: 1193 / 1089,
  22433. bottom: 30.5 / 1226
  22434. }
  22435. },
  22436. },
  22437. [
  22438. {
  22439. name: "Macro",
  22440. height: math.unit(1700, "feet"),
  22441. default: true
  22442. },
  22443. {
  22444. name: "Examacro",
  22445. height: math.unit(2.5e9, "lightyears")
  22446. },
  22447. ]
  22448. ))
  22449. characterMakers.push(() => makeCharacter(
  22450. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22451. {
  22452. front: {
  22453. height: math.unit(21, "meters"),
  22454. weight: math.unit(12, "tonnes"),
  22455. name: "Front",
  22456. image: {
  22457. source: "./media/characters/kuru/front.svg",
  22458. extra: 4301 / 3785,
  22459. bottom: 371.3 / 4691
  22460. }
  22461. },
  22462. },
  22463. [
  22464. {
  22465. name: "Macro",
  22466. height: math.unit(21, "meters"),
  22467. default: true
  22468. },
  22469. ]
  22470. ))
  22471. characterMakers.push(() => makeCharacter(
  22472. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22473. {
  22474. front: {
  22475. height: math.unit(23, "meters"),
  22476. weight: math.unit(12.2, "tonnes"),
  22477. name: "Front",
  22478. image: {
  22479. source: "./media/characters/rakka/front.svg",
  22480. extra: 4670 / 4169,
  22481. bottom: 301 / 4968.7
  22482. }
  22483. },
  22484. },
  22485. [
  22486. {
  22487. name: "Macro",
  22488. height: math.unit(23, "meters"),
  22489. default: true
  22490. },
  22491. ]
  22492. ))
  22493. characterMakers.push(() => makeCharacter(
  22494. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22495. {
  22496. front: {
  22497. height: math.unit(6, "feet"),
  22498. weight: math.unit(150, "lb"),
  22499. name: "Front",
  22500. image: {
  22501. source: "./media/characters/rhys-feline/front.svg",
  22502. extra: 2488 / 2308,
  22503. bottom: 35.67 / 2519.19
  22504. }
  22505. },
  22506. },
  22507. [
  22508. {
  22509. name: "Really Small",
  22510. height: math.unit(1, "nm")
  22511. },
  22512. {
  22513. name: "Micro",
  22514. height: math.unit(4, "inches")
  22515. },
  22516. {
  22517. name: "Normal",
  22518. height: math.unit(4 + 10 / 12, "feet"),
  22519. default: true
  22520. },
  22521. {
  22522. name: "Macro",
  22523. height: math.unit(100, "feet")
  22524. },
  22525. {
  22526. name: "Megamacto",
  22527. height: math.unit(50, "miles")
  22528. },
  22529. ]
  22530. ))
  22531. characterMakers.push(() => makeCharacter(
  22532. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22533. {
  22534. side: {
  22535. height: math.unit(30, "feet"),
  22536. weight: math.unit(35000, "kg"),
  22537. name: "Side",
  22538. image: {
  22539. source: "./media/characters/alydar/side.svg",
  22540. extra: 234 / 222,
  22541. bottom: 6.5 / 241
  22542. }
  22543. },
  22544. front: {
  22545. height: math.unit(30, "feet"),
  22546. weight: math.unit(35000, "kg"),
  22547. name: "Front",
  22548. image: {
  22549. source: "./media/characters/alydar/front.svg",
  22550. extra: 223.37 / 210.2,
  22551. bottom: 22.3 / 246.76
  22552. }
  22553. },
  22554. top: {
  22555. height: math.unit(64.54, "feet"),
  22556. weight: math.unit(35000, "kg"),
  22557. name: "Top",
  22558. image: {
  22559. source: "./media/characters/alydar/top.svg"
  22560. }
  22561. },
  22562. anthro: {
  22563. height: math.unit(30, "feet"),
  22564. weight: math.unit(9000, "kg"),
  22565. name: "Anthro",
  22566. image: {
  22567. source: "./media/characters/alydar/anthro.svg",
  22568. extra: 432 / 421,
  22569. bottom: 7.18 / 440
  22570. }
  22571. },
  22572. maw: {
  22573. height: math.unit(11.693, "feet"),
  22574. name: "Maw",
  22575. image: {
  22576. source: "./media/characters/alydar/maw.svg"
  22577. }
  22578. },
  22579. head: {
  22580. height: math.unit(11.693, "feet"),
  22581. name: "Head",
  22582. image: {
  22583. source: "./media/characters/alydar/head.svg"
  22584. }
  22585. },
  22586. headAlt: {
  22587. height: math.unit(12.861, "feet"),
  22588. name: "Head (Alt)",
  22589. image: {
  22590. source: "./media/characters/alydar/head-alt.svg"
  22591. }
  22592. },
  22593. wing: {
  22594. height: math.unit(20.712, "feet"),
  22595. name: "Wing",
  22596. image: {
  22597. source: "./media/characters/alydar/wing.svg"
  22598. }
  22599. },
  22600. wingFeather: {
  22601. height: math.unit(9.662, "feet"),
  22602. name: "Wing Feather",
  22603. image: {
  22604. source: "./media/characters/alydar/wing-feather.svg"
  22605. }
  22606. },
  22607. countourFeather: {
  22608. height: math.unit(4.154, "feet"),
  22609. name: "Contour Feather",
  22610. image: {
  22611. source: "./media/characters/alydar/contour-feather.svg"
  22612. }
  22613. },
  22614. },
  22615. [
  22616. {
  22617. name: "Diplomatic",
  22618. height: math.unit(13, "feet"),
  22619. default: true
  22620. },
  22621. {
  22622. name: "Small",
  22623. height: math.unit(30, "feet")
  22624. },
  22625. {
  22626. name: "Normal",
  22627. height: math.unit(95, "feet"),
  22628. default: true
  22629. },
  22630. {
  22631. name: "Large",
  22632. height: math.unit(285, "feet")
  22633. },
  22634. {
  22635. name: "Incomprehensible",
  22636. height: math.unit(450, "megameters")
  22637. },
  22638. ]
  22639. ))
  22640. characterMakers.push(() => makeCharacter(
  22641. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22642. {
  22643. side: {
  22644. height: math.unit(11, "feet"),
  22645. weight: math.unit(1750, "kg"),
  22646. name: "Side",
  22647. image: {
  22648. source: "./media/characters/selicia/side.svg",
  22649. extra: 440 / 396,
  22650. bottom: 24.8 / 465.979
  22651. }
  22652. },
  22653. maw: {
  22654. height: math.unit(4.665, "feet"),
  22655. name: "Maw",
  22656. image: {
  22657. source: "./media/characters/selicia/maw.svg"
  22658. }
  22659. },
  22660. },
  22661. [
  22662. {
  22663. name: "Normal",
  22664. height: math.unit(11, "feet"),
  22665. default: true
  22666. },
  22667. ]
  22668. ))
  22669. characterMakers.push(() => makeCharacter(
  22670. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22671. {
  22672. side: {
  22673. height: math.unit(2 + 6 / 12, "feet"),
  22674. weight: math.unit(30, "lb"),
  22675. name: "Side",
  22676. image: {
  22677. source: "./media/characters/layla/side.svg",
  22678. extra: 244 / 188,
  22679. bottom: 18.2 / 262.1
  22680. }
  22681. },
  22682. back: {
  22683. height: math.unit(2 + 6 / 12, "feet"),
  22684. weight: math.unit(30, "lb"),
  22685. name: "Back",
  22686. image: {
  22687. source: "./media/characters/layla/back.svg",
  22688. extra: 308 / 241.5,
  22689. bottom: 8.9 / 316.8
  22690. }
  22691. },
  22692. cumming: {
  22693. height: math.unit(2 + 6 / 12, "feet"),
  22694. weight: math.unit(30, "lb"),
  22695. name: "Cumming",
  22696. image: {
  22697. source: "./media/characters/layla/cumming.svg",
  22698. extra: 342 / 279,
  22699. bottom: 595 / 938
  22700. }
  22701. },
  22702. dickFlaccid: {
  22703. height: math.unit(2.595, "feet"),
  22704. name: "Flaccid Genitals",
  22705. image: {
  22706. source: "./media/characters/layla/dick-flaccid.svg"
  22707. }
  22708. },
  22709. dickErect: {
  22710. height: math.unit(2.359, "feet"),
  22711. name: "Erect Genitals",
  22712. image: {
  22713. source: "./media/characters/layla/dick-erect.svg"
  22714. }
  22715. },
  22716. },
  22717. [
  22718. {
  22719. name: "Micro",
  22720. height: math.unit(1, "inch")
  22721. },
  22722. {
  22723. name: "Small",
  22724. height: math.unit(1, "foot")
  22725. },
  22726. {
  22727. name: "Normal",
  22728. height: math.unit(2 + 6 / 12, "feet"),
  22729. default: true
  22730. },
  22731. {
  22732. name: "Macro",
  22733. height: math.unit(200, "feet")
  22734. },
  22735. {
  22736. name: "Megamacro",
  22737. height: math.unit(1000, "miles")
  22738. },
  22739. {
  22740. name: "Planetary",
  22741. height: math.unit(8000, "miles")
  22742. },
  22743. {
  22744. name: "True Layla",
  22745. height: math.unit(200000 * 7, "multiverses")
  22746. },
  22747. ]
  22748. ))
  22749. characterMakers.push(() => makeCharacter(
  22750. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22751. {
  22752. back: {
  22753. height: math.unit(10.5, "feet"),
  22754. weight: math.unit(800, "lb"),
  22755. name: "Back",
  22756. image: {
  22757. source: "./media/characters/knox/back.svg",
  22758. extra: 1486 / 1089,
  22759. bottom: 107 / 1601.4
  22760. }
  22761. },
  22762. side: {
  22763. height: math.unit(10.5, "feet"),
  22764. weight: math.unit(800, "lb"),
  22765. name: "Side",
  22766. image: {
  22767. source: "./media/characters/knox/side.svg",
  22768. extra: 244 / 218,
  22769. bottom: 14 / 260
  22770. }
  22771. },
  22772. },
  22773. [
  22774. {
  22775. name: "Compact",
  22776. height: math.unit(10.5, "feet"),
  22777. default: true
  22778. },
  22779. {
  22780. name: "Dynamax",
  22781. height: math.unit(210, "feet")
  22782. },
  22783. {
  22784. name: "Full Macro",
  22785. height: math.unit(850, "feet")
  22786. },
  22787. ]
  22788. ))
  22789. characterMakers.push(() => makeCharacter(
  22790. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22791. {
  22792. front: {
  22793. height: math.unit(6, "feet"),
  22794. weight: math.unit(152, "lb"),
  22795. name: "Front",
  22796. image: {
  22797. source: "./media/characters/shin-pikachu/front.svg",
  22798. extra: 1574 / 1480,
  22799. bottom: 53.3 / 1626
  22800. }
  22801. },
  22802. hand: {
  22803. height: math.unit(1.055, "feet"),
  22804. name: "Hand",
  22805. image: {
  22806. source: "./media/characters/shin-pikachu/hand.svg"
  22807. }
  22808. },
  22809. foot: {
  22810. height: math.unit(1.1, "feet"),
  22811. name: "Foot",
  22812. image: {
  22813. source: "./media/characters/shin-pikachu/foot.svg"
  22814. }
  22815. },
  22816. collar: {
  22817. height: math.unit(0.386, "feet"),
  22818. name: "Collar",
  22819. image: {
  22820. source: "./media/characters/shin-pikachu/collar.svg"
  22821. }
  22822. },
  22823. },
  22824. [
  22825. {
  22826. name: "Smallest",
  22827. height: math.unit(0.5, "inches")
  22828. },
  22829. {
  22830. name: "Micro",
  22831. height: math.unit(6, "inches")
  22832. },
  22833. {
  22834. name: "Normal",
  22835. height: math.unit(6, "feet"),
  22836. default: true
  22837. },
  22838. {
  22839. name: "Macro",
  22840. height: math.unit(150, "feet")
  22841. },
  22842. ]
  22843. ))
  22844. characterMakers.push(() => makeCharacter(
  22845. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22846. {
  22847. front: {
  22848. height: math.unit(28, "feet"),
  22849. weight: math.unit(10500, "lb"),
  22850. name: "Front",
  22851. image: {
  22852. source: "./media/characters/kayda/front.svg",
  22853. extra: 1536 / 1428,
  22854. bottom: 68.7 / 1603
  22855. }
  22856. },
  22857. back: {
  22858. height: math.unit(28, "feet"),
  22859. weight: math.unit(10500, "lb"),
  22860. name: "Back",
  22861. image: {
  22862. source: "./media/characters/kayda/back.svg",
  22863. extra: 1557 / 1464,
  22864. bottom: 39.5 / 1597.49
  22865. }
  22866. },
  22867. dick: {
  22868. height: math.unit(3.858, "feet"),
  22869. name: "Dick",
  22870. image: {
  22871. source: "./media/characters/kayda/dick.svg"
  22872. }
  22873. },
  22874. },
  22875. [
  22876. {
  22877. name: "Macro",
  22878. height: math.unit(28, "feet"),
  22879. default: true
  22880. },
  22881. ]
  22882. ))
  22883. characterMakers.push(() => makeCharacter(
  22884. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22885. {
  22886. front: {
  22887. height: math.unit(10 + 11 / 12, "feet"),
  22888. weight: math.unit(1400, "lb"),
  22889. name: "Front",
  22890. image: {
  22891. source: "./media/characters/brian/front.svg",
  22892. extra: 737 / 692,
  22893. bottom: 55.4 / 785
  22894. }
  22895. },
  22896. },
  22897. [
  22898. {
  22899. name: "Normal",
  22900. height: math.unit(10 + 11 / 12, "feet"),
  22901. default: true
  22902. },
  22903. ]
  22904. ))
  22905. characterMakers.push(() => makeCharacter(
  22906. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  22907. {
  22908. front: {
  22909. height: math.unit(5 + 8 / 12, "feet"),
  22910. weight: math.unit(140, "lb"),
  22911. name: "Front",
  22912. image: {
  22913. source: "./media/characters/khemri/front.svg",
  22914. extra: 4780 / 4059,
  22915. bottom: 80.1 / 4859.25
  22916. }
  22917. },
  22918. },
  22919. [
  22920. {
  22921. name: "Micro",
  22922. height: math.unit(6, "inches")
  22923. },
  22924. {
  22925. name: "Normal",
  22926. height: math.unit(5 + 8 / 12, "feet"),
  22927. default: true
  22928. },
  22929. ]
  22930. ))
  22931. characterMakers.push(() => makeCharacter(
  22932. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  22933. {
  22934. front: {
  22935. height: math.unit(13, "feet"),
  22936. weight: math.unit(1700, "lb"),
  22937. name: "Front",
  22938. image: {
  22939. source: "./media/characters/felix-braveheart/front.svg",
  22940. extra: 1222 / 1157,
  22941. bottom: 53.2 / 1280
  22942. }
  22943. },
  22944. back: {
  22945. height: math.unit(13, "feet"),
  22946. weight: math.unit(1700, "lb"),
  22947. name: "Back",
  22948. image: {
  22949. source: "./media/characters/felix-braveheart/back.svg",
  22950. extra: 1277 / 1203,
  22951. bottom: 50.2 / 1327
  22952. }
  22953. },
  22954. feral: {
  22955. height: math.unit(6, "feet"),
  22956. weight: math.unit(400, "lb"),
  22957. name: "Feral",
  22958. image: {
  22959. source: "./media/characters/felix-braveheart/feral.svg",
  22960. extra: 682 / 625,
  22961. bottom: 6.9 / 688
  22962. }
  22963. },
  22964. },
  22965. [
  22966. {
  22967. name: "Normal",
  22968. height: math.unit(13, "feet"),
  22969. default: true
  22970. },
  22971. ]
  22972. ))
  22973. characterMakers.push(() => makeCharacter(
  22974. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  22975. {
  22976. side: {
  22977. height: math.unit(5 + 11 / 12, "feet"),
  22978. weight: math.unit(1400, "lb"),
  22979. name: "Side",
  22980. image: {
  22981. source: "./media/characters/shadow-blade/side.svg",
  22982. extra: 1726 / 1267,
  22983. bottom: 58.4 / 1785
  22984. }
  22985. },
  22986. },
  22987. [
  22988. {
  22989. name: "Normal",
  22990. height: math.unit(5 + 11 / 12, "feet"),
  22991. default: true
  22992. },
  22993. ]
  22994. ))
  22995. characterMakers.push(() => makeCharacter(
  22996. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  22997. {
  22998. front: {
  22999. height: math.unit(1 + 6 / 12, "feet"),
  23000. weight: math.unit(25, "lb"),
  23001. name: "Front",
  23002. image: {
  23003. source: "./media/characters/karla-halldor/front.svg",
  23004. extra: 1459 / 1383,
  23005. bottom: 12 / 1472
  23006. }
  23007. },
  23008. },
  23009. [
  23010. {
  23011. name: "Normal",
  23012. height: math.unit(1 + 6 / 12, "feet"),
  23013. default: true
  23014. },
  23015. ]
  23016. ))
  23017. characterMakers.push(() => makeCharacter(
  23018. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23019. {
  23020. front: {
  23021. height: math.unit(6 + 2 / 12, "feet"),
  23022. weight: math.unit(160, "lb"),
  23023. name: "Front",
  23024. image: {
  23025. source: "./media/characters/ariam/front.svg",
  23026. extra: 714 / 617,
  23027. bottom: 23.4 / 737,
  23028. }
  23029. },
  23030. squatting: {
  23031. height: math.unit(4.1, "feet"),
  23032. weight: math.unit(160, "lb"),
  23033. name: "Squatting",
  23034. image: {
  23035. source: "./media/characters/ariam/squatting.svg",
  23036. extra: 2617 / 2112,
  23037. bottom: 61.2 / 2681,
  23038. }
  23039. },
  23040. },
  23041. [
  23042. {
  23043. name: "Normal",
  23044. height: math.unit(6 + 2 / 12, "feet"),
  23045. default: true
  23046. },
  23047. {
  23048. name: "Normal+",
  23049. height: math.unit(4, "meters")
  23050. },
  23051. {
  23052. name: "Macro",
  23053. height: math.unit(50, "meters")
  23054. },
  23055. {
  23056. name: "Macro+",
  23057. height: math.unit(100, "meters")
  23058. },
  23059. {
  23060. name: "Megamacro",
  23061. height: math.unit(20, "km")
  23062. },
  23063. ]
  23064. ))
  23065. characterMakers.push(() => makeCharacter(
  23066. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23067. {
  23068. front: {
  23069. height: math.unit(1.67, "meters"),
  23070. weight: math.unit(140, "lb"),
  23071. name: "Front",
  23072. image: {
  23073. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23074. extra: 438 / 410,
  23075. bottom: 0.75 / 439
  23076. }
  23077. },
  23078. },
  23079. [
  23080. {
  23081. name: "Shrunken",
  23082. height: math.unit(7.6, "cm")
  23083. },
  23084. {
  23085. name: "Human Scale",
  23086. height: math.unit(1.67, "meters")
  23087. },
  23088. {
  23089. name: "Wolxi Scale",
  23090. height: math.unit(36.7, "meters"),
  23091. default: true
  23092. },
  23093. ]
  23094. ))
  23095. characterMakers.push(() => makeCharacter(
  23096. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23097. {
  23098. front: {
  23099. height: math.unit(1.73, "meters"),
  23100. weight: math.unit(240, "lb"),
  23101. name: "Front",
  23102. image: {
  23103. source: "./media/characters/izue-two-mothers/front.svg",
  23104. extra: 469 / 437,
  23105. bottom: 1.24 / 470.6
  23106. }
  23107. },
  23108. },
  23109. [
  23110. {
  23111. name: "Shrunken",
  23112. height: math.unit(7.86, "cm")
  23113. },
  23114. {
  23115. name: "Human Scale",
  23116. height: math.unit(1.73, "meters")
  23117. },
  23118. {
  23119. name: "Wolxi Scale",
  23120. height: math.unit(38, "meters"),
  23121. default: true
  23122. },
  23123. ]
  23124. ))
  23125. characterMakers.push(() => makeCharacter(
  23126. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23127. {
  23128. front: {
  23129. height: math.unit(1.55, "meters"),
  23130. weight: math.unit(120, "lb"),
  23131. name: "Front",
  23132. image: {
  23133. source: "./media/characters/teeku-love-shack/front.svg",
  23134. extra: 387 / 362,
  23135. bottom: 1.51 / 388
  23136. }
  23137. },
  23138. },
  23139. [
  23140. {
  23141. name: "Shrunken",
  23142. height: math.unit(7, "cm")
  23143. },
  23144. {
  23145. name: "Human Scale",
  23146. height: math.unit(1.55, "meters")
  23147. },
  23148. {
  23149. name: "Wolxi Scale",
  23150. height: math.unit(34.1, "meters"),
  23151. default: true
  23152. },
  23153. ]
  23154. ))
  23155. characterMakers.push(() => makeCharacter(
  23156. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23157. {
  23158. front: {
  23159. height: math.unit(1.83, "meters"),
  23160. weight: math.unit(135, "lb"),
  23161. name: "Front",
  23162. image: {
  23163. source: "./media/characters/dejma-the-red/front.svg",
  23164. extra: 480 / 458,
  23165. bottom: 1.8 / 482
  23166. }
  23167. },
  23168. },
  23169. [
  23170. {
  23171. name: "Shrunken",
  23172. height: math.unit(8.3, "cm")
  23173. },
  23174. {
  23175. name: "Human Scale",
  23176. height: math.unit(1.83, "meters")
  23177. },
  23178. {
  23179. name: "Wolxi Scale",
  23180. height: math.unit(40, "meters"),
  23181. default: true
  23182. },
  23183. ]
  23184. ))
  23185. characterMakers.push(() => makeCharacter(
  23186. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23187. {
  23188. front: {
  23189. height: math.unit(1.78, "meters"),
  23190. weight: math.unit(65, "kg"),
  23191. name: "Front",
  23192. image: {
  23193. source: "./media/characters/aki/front.svg",
  23194. extra: 452 / 415
  23195. }
  23196. },
  23197. frontNsfw: {
  23198. height: math.unit(1.78, "meters"),
  23199. weight: math.unit(65, "kg"),
  23200. name: "Front (NSFW)",
  23201. image: {
  23202. source: "./media/characters/aki/front-nsfw.svg",
  23203. extra: 452 / 415
  23204. }
  23205. },
  23206. back: {
  23207. height: math.unit(1.78, "meters"),
  23208. weight: math.unit(65, "kg"),
  23209. name: "Back",
  23210. image: {
  23211. source: "./media/characters/aki/back.svg",
  23212. extra: 452 / 415
  23213. }
  23214. },
  23215. rump: {
  23216. height: math.unit(2.05, "feet"),
  23217. name: "Rump",
  23218. image: {
  23219. source: "./media/characters/aki/rump.svg"
  23220. }
  23221. },
  23222. dick: {
  23223. height: math.unit(0.95, "feet"),
  23224. name: "Dick",
  23225. image: {
  23226. source: "./media/characters/aki/dick.svg"
  23227. }
  23228. },
  23229. },
  23230. [
  23231. {
  23232. name: "Micro",
  23233. height: math.unit(15, "cm")
  23234. },
  23235. {
  23236. name: "Normal",
  23237. height: math.unit(178, "cm"),
  23238. default: true
  23239. },
  23240. {
  23241. name: "Macro",
  23242. height: math.unit(214, "m")
  23243. },
  23244. {
  23245. name: "Macro+",
  23246. height: math.unit(534, "m")
  23247. },
  23248. ]
  23249. ))
  23250. characterMakers.push(() => makeCharacter(
  23251. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23252. {
  23253. front: {
  23254. height: math.unit(5 + 5 / 12, "feet"),
  23255. weight: math.unit(120, "lb"),
  23256. name: "Front",
  23257. image: {
  23258. source: "./media/characters/ari/front.svg",
  23259. extra: 714.5 / 682,
  23260. bottom: 8 / 722.5
  23261. }
  23262. },
  23263. },
  23264. [
  23265. {
  23266. name: "Normal",
  23267. height: math.unit(5 + 5 / 12, "feet")
  23268. },
  23269. {
  23270. name: "Macro",
  23271. height: math.unit(100, "feet"),
  23272. default: true
  23273. },
  23274. {
  23275. name: "Megamacro",
  23276. height: math.unit(100, "miles")
  23277. },
  23278. {
  23279. name: "Gigamacro",
  23280. height: math.unit(80000, "miles")
  23281. },
  23282. ]
  23283. ))
  23284. characterMakers.push(() => makeCharacter(
  23285. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23286. {
  23287. side: {
  23288. height: math.unit(9, "feet"),
  23289. weight: math.unit(400, "kg"),
  23290. name: "Side",
  23291. image: {
  23292. source: "./media/characters/bolt/side.svg",
  23293. extra: 1126 / 896,
  23294. bottom: 60 / 1187.3,
  23295. }
  23296. },
  23297. },
  23298. [
  23299. {
  23300. name: "Micro",
  23301. height: math.unit(5, "inches")
  23302. },
  23303. {
  23304. name: "Normal",
  23305. height: math.unit(9, "feet"),
  23306. default: true
  23307. },
  23308. {
  23309. name: "Macro",
  23310. height: math.unit(700, "feet")
  23311. },
  23312. {
  23313. name: "Max Size",
  23314. height: math.unit(1.52e22, "yottameters")
  23315. },
  23316. ]
  23317. ))
  23318. characterMakers.push(() => makeCharacter(
  23319. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23320. {
  23321. front: {
  23322. height: math.unit(4.53, "meters"),
  23323. weight: math.unit(3, "tons"),
  23324. name: "Front",
  23325. image: {
  23326. source: "./media/characters/draekon-sylviar/front.svg",
  23327. extra: 1228 / 1068,
  23328. bottom: 41 / 1270
  23329. }
  23330. },
  23331. tail: {
  23332. height: math.unit(1.772, "meter"),
  23333. name: "Tail",
  23334. image: {
  23335. source: "./media/characters/draekon-sylviar/tail.svg"
  23336. }
  23337. },
  23338. head: {
  23339. height: math.unit(1.331, "meter"),
  23340. name: "Head",
  23341. image: {
  23342. source: "./media/characters/draekon-sylviar/head.svg"
  23343. }
  23344. },
  23345. hand: {
  23346. height: math.unit(0.564, "meter"),
  23347. name: "Hand",
  23348. image: {
  23349. source: "./media/characters/draekon-sylviar/hand.svg"
  23350. }
  23351. },
  23352. foot: {
  23353. height: math.unit(0.621, "meter"),
  23354. name: "Foot",
  23355. image: {
  23356. source: "./media/characters/draekon-sylviar/foot.svg",
  23357. bottom: 32 / 324
  23358. }
  23359. },
  23360. dick: {
  23361. height: math.unit(61, "cm"),
  23362. name: "Dick",
  23363. image: {
  23364. source: "./media/characters/draekon-sylviar/dick.svg"
  23365. }
  23366. },
  23367. dickseparated: {
  23368. height: math.unit(61, "cm"),
  23369. name: "Dick-separated",
  23370. image: {
  23371. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23372. }
  23373. },
  23374. },
  23375. [
  23376. {
  23377. name: "Small",
  23378. height: math.unit(4.53 / 2, "meters"),
  23379. default: true
  23380. },
  23381. {
  23382. name: "Normal",
  23383. height: math.unit(4.53, "meters"),
  23384. default: true
  23385. },
  23386. {
  23387. name: "Large",
  23388. height: math.unit(4.53 * 2, "meters"),
  23389. },
  23390. ]
  23391. ))
  23392. characterMakers.push(() => makeCharacter(
  23393. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23394. {
  23395. front: {
  23396. height: math.unit(6 + 2 / 12, "feet"),
  23397. weight: math.unit(180, "lb"),
  23398. name: "Front",
  23399. image: {
  23400. source: "./media/characters/brawler/front.svg",
  23401. extra: 3301 / 3027,
  23402. bottom: 138 / 3439
  23403. }
  23404. },
  23405. },
  23406. [
  23407. {
  23408. name: "Normal",
  23409. height: math.unit(6 + 2 / 12, "feet"),
  23410. default: true
  23411. },
  23412. ]
  23413. ))
  23414. characterMakers.push(() => makeCharacter(
  23415. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23416. {
  23417. front: {
  23418. height: math.unit(11, "feet"),
  23419. weight: math.unit(1000, "lb"),
  23420. name: "Front",
  23421. image: {
  23422. source: "./media/characters/alex/front.svg",
  23423. bottom: 44.5 / 620
  23424. }
  23425. },
  23426. },
  23427. [
  23428. {
  23429. name: "Micro",
  23430. height: math.unit(5, "inches")
  23431. },
  23432. {
  23433. name: "Normal",
  23434. height: math.unit(11, "feet"),
  23435. default: true
  23436. },
  23437. {
  23438. name: "Macro",
  23439. height: math.unit(9.5e9, "feet")
  23440. },
  23441. {
  23442. name: "Max Size",
  23443. height: math.unit(1.4e283, "yottameters")
  23444. },
  23445. ]
  23446. ))
  23447. characterMakers.push(() => makeCharacter(
  23448. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23449. {
  23450. female: {
  23451. height: math.unit(29.9, "m"),
  23452. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23453. name: "Female",
  23454. image: {
  23455. source: "./media/characters/zenari/female.svg",
  23456. extra: 3281.6 / 3217,
  23457. bottom: 72.2 / 3353
  23458. }
  23459. },
  23460. male: {
  23461. height: math.unit(27.7, "m"),
  23462. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23463. name: "Male",
  23464. image: {
  23465. source: "./media/characters/zenari/male.svg",
  23466. extra: 3008 / 2991,
  23467. bottom: 54.6 / 3069
  23468. }
  23469. },
  23470. },
  23471. [
  23472. {
  23473. name: "Macro",
  23474. height: math.unit(29.7, "meters"),
  23475. default: true
  23476. },
  23477. ]
  23478. ))
  23479. characterMakers.push(() => makeCharacter(
  23480. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23481. {
  23482. female: {
  23483. height: math.unit(23.8, "m"),
  23484. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23485. name: "Female",
  23486. image: {
  23487. source: "./media/characters/mactarian/female.svg",
  23488. extra: 2662 / 2569,
  23489. bottom: 73 / 2736
  23490. }
  23491. },
  23492. male: {
  23493. height: math.unit(23.8, "m"),
  23494. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23495. name: "Male",
  23496. image: {
  23497. source: "./media/characters/mactarian/male.svg",
  23498. extra: 2673 / 2600,
  23499. bottom: 76 / 2750
  23500. }
  23501. },
  23502. },
  23503. [
  23504. {
  23505. name: "Macro",
  23506. height: math.unit(23.8, "meters"),
  23507. default: true
  23508. },
  23509. ]
  23510. ))
  23511. characterMakers.push(() => makeCharacter(
  23512. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23513. {
  23514. female: {
  23515. height: math.unit(19.3, "m"),
  23516. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23517. name: "Female",
  23518. image: {
  23519. source: "./media/characters/umok/female.svg",
  23520. extra: 2186 / 2078,
  23521. bottom: 87 / 2277
  23522. }
  23523. },
  23524. male: {
  23525. height: math.unit(19.5, "m"),
  23526. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23527. name: "Male",
  23528. image: {
  23529. source: "./media/characters/umok/male.svg",
  23530. extra: 2233 / 2140,
  23531. bottom: 24.4 / 2258
  23532. }
  23533. },
  23534. },
  23535. [
  23536. {
  23537. name: "Macro",
  23538. height: math.unit(19.3, "meters"),
  23539. default: true
  23540. },
  23541. ]
  23542. ))
  23543. characterMakers.push(() => makeCharacter(
  23544. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23545. {
  23546. female: {
  23547. height: math.unit(26.15, "m"),
  23548. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23549. name: "Female",
  23550. image: {
  23551. source: "./media/characters/joraxian/female.svg",
  23552. extra: 2912 / 2824,
  23553. bottom: 36 / 2956
  23554. }
  23555. },
  23556. male: {
  23557. height: math.unit(25.4, "m"),
  23558. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23559. name: "Male",
  23560. image: {
  23561. source: "./media/characters/joraxian/male.svg",
  23562. extra: 2877 / 2721,
  23563. bottom: 82 / 2967
  23564. }
  23565. },
  23566. },
  23567. [
  23568. {
  23569. name: "Macro",
  23570. height: math.unit(26.15, "meters"),
  23571. default: true
  23572. },
  23573. ]
  23574. ))
  23575. characterMakers.push(() => makeCharacter(
  23576. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23577. {
  23578. female: {
  23579. height: math.unit(21.6, "m"),
  23580. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23581. name: "Female",
  23582. image: {
  23583. source: "./media/characters/sthara/female.svg",
  23584. extra: 2516 / 2347,
  23585. bottom: 21.5 / 2537
  23586. }
  23587. },
  23588. male: {
  23589. height: math.unit(24, "m"),
  23590. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23591. name: "Male",
  23592. image: {
  23593. source: "./media/characters/sthara/male.svg",
  23594. extra: 2732 / 2607,
  23595. bottom: 23 / 2732
  23596. }
  23597. },
  23598. },
  23599. [
  23600. {
  23601. name: "Macro",
  23602. height: math.unit(21.6, "meters"),
  23603. default: true
  23604. },
  23605. ]
  23606. ))
  23607. characterMakers.push(() => makeCharacter(
  23608. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23609. {
  23610. front: {
  23611. height: math.unit(6 + 4 / 12, "feet"),
  23612. weight: math.unit(175, "lb"),
  23613. name: "Front",
  23614. image: {
  23615. source: "./media/characters/luka-bryzant/front.svg",
  23616. extra: 311 / 289,
  23617. bottom: 4 / 315
  23618. }
  23619. },
  23620. back: {
  23621. height: math.unit(6 + 4 / 12, "feet"),
  23622. weight: math.unit(175, "lb"),
  23623. name: "Back",
  23624. image: {
  23625. source: "./media/characters/luka-bryzant/back.svg",
  23626. extra: 311 / 289,
  23627. bottom: 3.8 / 313.7
  23628. }
  23629. },
  23630. },
  23631. [
  23632. {
  23633. name: "Micro",
  23634. height: math.unit(10, "inches")
  23635. },
  23636. {
  23637. name: "Normal",
  23638. height: math.unit(6 + 4 / 12, "feet"),
  23639. default: true
  23640. },
  23641. {
  23642. name: "Large",
  23643. height: math.unit(12, "feet")
  23644. },
  23645. ]
  23646. ))
  23647. characterMakers.push(() => makeCharacter(
  23648. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23649. {
  23650. front: {
  23651. height: math.unit(5 + 7 / 12, "feet"),
  23652. weight: math.unit(185, "lb"),
  23653. name: "Front",
  23654. image: {
  23655. source: "./media/characters/aman-aquila/front.svg",
  23656. extra: 1013 / 976,
  23657. bottom: 45.6 / 1057
  23658. }
  23659. },
  23660. side: {
  23661. height: math.unit(5 + 7 / 12, "feet"),
  23662. weight: math.unit(185, "lb"),
  23663. name: "Side",
  23664. image: {
  23665. source: "./media/characters/aman-aquila/side.svg",
  23666. extra: 1054 / 1011,
  23667. bottom: 15 / 1070
  23668. }
  23669. },
  23670. back: {
  23671. height: math.unit(5 + 7 / 12, "feet"),
  23672. weight: math.unit(185, "lb"),
  23673. name: "Back",
  23674. image: {
  23675. source: "./media/characters/aman-aquila/back.svg",
  23676. extra: 1026 / 970,
  23677. bottom: 12 / 1039
  23678. }
  23679. },
  23680. head: {
  23681. height: math.unit(1.211, "feet"),
  23682. name: "Head",
  23683. image: {
  23684. source: "./media/characters/aman-aquila/head.svg",
  23685. }
  23686. },
  23687. },
  23688. [
  23689. {
  23690. name: "Minimicro",
  23691. height: math.unit(0.057, "inches")
  23692. },
  23693. {
  23694. name: "Micro",
  23695. height: math.unit(7, "inches")
  23696. },
  23697. {
  23698. name: "Mini",
  23699. height: math.unit(3 + 7 / 12, "feet")
  23700. },
  23701. {
  23702. name: "Normal",
  23703. height: math.unit(5 + 7 / 12, "feet"),
  23704. default: true
  23705. },
  23706. {
  23707. name: "Macro",
  23708. height: math.unit(157 + 7 / 12, "feet")
  23709. },
  23710. {
  23711. name: "Megamacro",
  23712. height: math.unit(1557 + 7 / 12, "feet")
  23713. },
  23714. {
  23715. name: "Gigamacro",
  23716. height: math.unit(15557 + 7 / 12, "feet")
  23717. },
  23718. ]
  23719. ))
  23720. characterMakers.push(() => makeCharacter(
  23721. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23722. {
  23723. front: {
  23724. height: math.unit(3 + 2 / 12, "inches"),
  23725. weight: math.unit(0.3, "ounces"),
  23726. name: "Front",
  23727. image: {
  23728. source: "./media/characters/hiphae/front.svg",
  23729. extra: 1931 / 1683,
  23730. bottom: 24 / 1955
  23731. }
  23732. },
  23733. },
  23734. [
  23735. {
  23736. name: "Normal",
  23737. height: math.unit(3 + 1 / 2, "inches"),
  23738. default: true
  23739. },
  23740. ]
  23741. ))
  23742. characterMakers.push(() => makeCharacter(
  23743. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23744. {
  23745. front: {
  23746. height: math.unit(5 + 10 / 12, "feet"),
  23747. weight: math.unit(165, "lb"),
  23748. name: "Front",
  23749. image: {
  23750. source: "./media/characters/nicky/front.svg",
  23751. extra: 3144 / 2886,
  23752. bottom: 45.6 / 3192
  23753. }
  23754. },
  23755. back: {
  23756. height: math.unit(5 + 10 / 12, "feet"),
  23757. weight: math.unit(165, "lb"),
  23758. name: "Back",
  23759. image: {
  23760. source: "./media/characters/nicky/back.svg",
  23761. extra: 3055 / 2804,
  23762. bottom: 28.4 / 3087
  23763. }
  23764. },
  23765. frontclothed: {
  23766. height: math.unit(5 + 10 / 12, "feet"),
  23767. weight: math.unit(165, "lb"),
  23768. name: "Front-clothed",
  23769. image: {
  23770. source: "./media/characters/nicky/front-clothed.svg",
  23771. extra: 3184.9 / 2926.9,
  23772. bottom: 86.5 / 3239.9
  23773. }
  23774. },
  23775. foot: {
  23776. height: math.unit(1.16, "feet"),
  23777. name: "Foot",
  23778. image: {
  23779. source: "./media/characters/nicky/foot.svg"
  23780. }
  23781. },
  23782. feet: {
  23783. height: math.unit(1.34, "feet"),
  23784. name: "Feet",
  23785. image: {
  23786. source: "./media/characters/nicky/feet.svg"
  23787. }
  23788. },
  23789. maw: {
  23790. height: math.unit(0.9, "feet"),
  23791. name: "Maw",
  23792. image: {
  23793. source: "./media/characters/nicky/maw.svg"
  23794. }
  23795. },
  23796. },
  23797. [
  23798. {
  23799. name: "Normal",
  23800. height: math.unit(5 + 10 / 12, "feet"),
  23801. default: true
  23802. },
  23803. {
  23804. name: "Macro",
  23805. height: math.unit(60, "feet")
  23806. },
  23807. {
  23808. name: "Megamacro",
  23809. height: math.unit(1, "mile")
  23810. },
  23811. ]
  23812. ))
  23813. characterMakers.push(() => makeCharacter(
  23814. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23815. {
  23816. side: {
  23817. height: math.unit(10, "feet"),
  23818. weight: math.unit(600, "lb"),
  23819. name: "Side",
  23820. image: {
  23821. source: "./media/characters/blair/side.svg",
  23822. bottom: 16.6 / 475,
  23823. extra: 458 / 431
  23824. }
  23825. },
  23826. },
  23827. [
  23828. {
  23829. name: "Micro",
  23830. height: math.unit(8, "inches")
  23831. },
  23832. {
  23833. name: "Normal",
  23834. height: math.unit(10, "feet"),
  23835. default: true
  23836. },
  23837. {
  23838. name: "Macro",
  23839. height: math.unit(180, "feet")
  23840. },
  23841. ]
  23842. ))
  23843. characterMakers.push(() => makeCharacter(
  23844. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23845. {
  23846. front: {
  23847. height: math.unit(5 + 4 / 12, "feet"),
  23848. weight: math.unit(125, "lb"),
  23849. name: "Front",
  23850. image: {
  23851. source: "./media/characters/fisher/front.svg",
  23852. extra: 444 / 390,
  23853. bottom: 2 / 444.8
  23854. }
  23855. },
  23856. },
  23857. [
  23858. {
  23859. name: "Micro",
  23860. height: math.unit(4, "inches")
  23861. },
  23862. {
  23863. name: "Normal",
  23864. height: math.unit(5 + 4 / 12, "feet"),
  23865. default: true
  23866. },
  23867. {
  23868. name: "Macro",
  23869. height: math.unit(100, "feet")
  23870. },
  23871. ]
  23872. ))
  23873. characterMakers.push(() => makeCharacter(
  23874. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23875. {
  23876. front: {
  23877. height: math.unit(6.71, "feet"),
  23878. weight: math.unit(200, "lb"),
  23879. capacity: math.unit(1000000, "people"),
  23880. name: "Front",
  23881. image: {
  23882. source: "./media/characters/gliss/front.svg",
  23883. extra: 2347 / 2231,
  23884. bottom: 113 / 2462
  23885. }
  23886. },
  23887. hammerspaceSize: {
  23888. height: math.unit(6.71 * 717, "feet"),
  23889. weight: math.unit(200, "lb"),
  23890. capacity: math.unit(1000000, "people"),
  23891. name: "Hammerspace Size",
  23892. image: {
  23893. source: "./media/characters/gliss/front.svg",
  23894. extra: 2347 / 2231,
  23895. bottom: 113 / 2462
  23896. }
  23897. },
  23898. },
  23899. [
  23900. {
  23901. name: "Normal",
  23902. height: math.unit(6.71, "feet"),
  23903. default: true
  23904. },
  23905. ]
  23906. ))
  23907. characterMakers.push(() => makeCharacter(
  23908. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  23909. {
  23910. side: {
  23911. height: math.unit(1.44, "m"),
  23912. weight: math.unit(80, "kg"),
  23913. name: "Side",
  23914. image: {
  23915. source: "./media/characters/dune-anderson/side.svg",
  23916. bottom: 49 / 1426
  23917. }
  23918. },
  23919. },
  23920. [
  23921. {
  23922. name: "Wolf-sized",
  23923. height: math.unit(1.44, "meters")
  23924. },
  23925. {
  23926. name: "Normal",
  23927. height: math.unit(5.05, "meters"),
  23928. default: true
  23929. },
  23930. {
  23931. name: "Big",
  23932. height: math.unit(14.4, "meters")
  23933. },
  23934. {
  23935. name: "Huge",
  23936. height: math.unit(144, "meters")
  23937. },
  23938. ]
  23939. ))
  23940. characterMakers.push(() => makeCharacter(
  23941. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  23942. {
  23943. front: {
  23944. height: math.unit(7, "feet"),
  23945. weight: math.unit(425, "lb"),
  23946. name: "Front",
  23947. image: {
  23948. source: "./media/characters/hind/front.svg",
  23949. extra: 2091 / 1860,
  23950. bottom: 129 / 2220
  23951. }
  23952. },
  23953. back: {
  23954. height: math.unit(7, "feet"),
  23955. weight: math.unit(425, "lb"),
  23956. name: "Back",
  23957. image: {
  23958. source: "./media/characters/hind/back.svg",
  23959. extra: 2091 / 1860,
  23960. bottom: 24.6 / 2309
  23961. }
  23962. },
  23963. tail: {
  23964. height: math.unit(2.8, "feet"),
  23965. name: "Tail",
  23966. image: {
  23967. source: "./media/characters/hind/tail.svg"
  23968. }
  23969. },
  23970. head: {
  23971. height: math.unit(2.55, "feet"),
  23972. name: "Head",
  23973. image: {
  23974. source: "./media/characters/hind/head.svg"
  23975. }
  23976. },
  23977. },
  23978. [
  23979. {
  23980. name: "XS",
  23981. height: math.unit(0.7, "feet")
  23982. },
  23983. {
  23984. name: "Normal",
  23985. height: math.unit(7, "feet"),
  23986. default: true
  23987. },
  23988. {
  23989. name: "XL",
  23990. height: math.unit(70, "feet")
  23991. },
  23992. ]
  23993. ))
  23994. characterMakers.push(() => makeCharacter(
  23995. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  23996. {
  23997. front: {
  23998. height: math.unit(6, "feet"),
  23999. weight: math.unit(150, "lb"),
  24000. name: "Front",
  24001. image: {
  24002. source: "./media/characters/dylan-skaven/front.svg",
  24003. extra: 2318 / 2063,
  24004. bottom: 93.4 / 2410
  24005. }
  24006. },
  24007. },
  24008. [
  24009. {
  24010. name: "Nano",
  24011. height: math.unit(1, "mm")
  24012. },
  24013. {
  24014. name: "Micro",
  24015. height: math.unit(1, "cm")
  24016. },
  24017. {
  24018. name: "Normal",
  24019. height: math.unit(2.1, "meters"),
  24020. default: true
  24021. },
  24022. ]
  24023. ))
  24024. characterMakers.push(() => makeCharacter(
  24025. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24026. {
  24027. front: {
  24028. height: math.unit(7 + 5 / 12, "feet"),
  24029. weight: math.unit(357, "lb"),
  24030. name: "Front",
  24031. image: {
  24032. source: "./media/characters/solex-draconov/front.svg",
  24033. extra: 1993 / 1865,
  24034. bottom: 117 / 2111
  24035. }
  24036. },
  24037. },
  24038. [
  24039. {
  24040. name: "Natural Height",
  24041. height: math.unit(7 + 5 / 12, "feet"),
  24042. default: true
  24043. },
  24044. {
  24045. name: "Macro",
  24046. height: math.unit(350, "feet")
  24047. },
  24048. {
  24049. name: "Macro+",
  24050. height: math.unit(1000, "feet")
  24051. },
  24052. {
  24053. name: "Megamacro",
  24054. height: math.unit(20, "km")
  24055. },
  24056. {
  24057. name: "Megamacro+",
  24058. height: math.unit(1000, "km")
  24059. },
  24060. {
  24061. name: "Gigamacro",
  24062. height: math.unit(2.5, "Gm")
  24063. },
  24064. {
  24065. name: "Teramacro",
  24066. height: math.unit(15, "Tm")
  24067. },
  24068. {
  24069. name: "Galactic",
  24070. height: math.unit(30, "Zm")
  24071. },
  24072. {
  24073. name: "Universal",
  24074. height: math.unit(21000, "Ym")
  24075. },
  24076. {
  24077. name: "Omniversal",
  24078. height: math.unit(9.861e50, "Ym")
  24079. },
  24080. {
  24081. name: "Existential",
  24082. height: math.unit(1e300, "meters")
  24083. },
  24084. ]
  24085. ))
  24086. characterMakers.push(() => makeCharacter(
  24087. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24088. {
  24089. side: {
  24090. height: math.unit(25, "feet"),
  24091. weight: math.unit(90000, "lb"),
  24092. name: "Side",
  24093. image: {
  24094. source: "./media/characters/mandarax/side.svg",
  24095. extra: 614 / 332,
  24096. bottom: 55 / 630
  24097. }
  24098. },
  24099. head: {
  24100. height: math.unit(11.4, "feet"),
  24101. name: "Head",
  24102. image: {
  24103. source: "./media/characters/mandarax/head.svg"
  24104. }
  24105. },
  24106. belly: {
  24107. height: math.unit(33, "feet"),
  24108. name: "Belly",
  24109. capacity: math.unit(500, "people"),
  24110. image: {
  24111. source: "./media/characters/mandarax/belly.svg"
  24112. }
  24113. },
  24114. dick: {
  24115. height: math.unit(8.46, "feet"),
  24116. name: "Dick",
  24117. image: {
  24118. source: "./media/characters/mandarax/dick.svg"
  24119. }
  24120. },
  24121. top: {
  24122. height: math.unit(28, "meters"),
  24123. name: "Top",
  24124. image: {
  24125. source: "./media/characters/mandarax/top.svg"
  24126. }
  24127. },
  24128. },
  24129. [
  24130. {
  24131. name: "Normal",
  24132. height: math.unit(25, "feet"),
  24133. default: true
  24134. },
  24135. ]
  24136. ))
  24137. characterMakers.push(() => makeCharacter(
  24138. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24139. {
  24140. front: {
  24141. height: math.unit(5, "feet"),
  24142. weight: math.unit(90, "lb"),
  24143. name: "Front",
  24144. image: {
  24145. source: "./media/characters/pixil/front.svg",
  24146. extra: 2000 / 1618,
  24147. bottom: 12.3 / 2011
  24148. }
  24149. },
  24150. },
  24151. [
  24152. {
  24153. name: "Normal",
  24154. height: math.unit(5, "feet"),
  24155. default: true
  24156. },
  24157. {
  24158. name: "Megamacro",
  24159. height: math.unit(10, "miles"),
  24160. },
  24161. ]
  24162. ))
  24163. characterMakers.push(() => makeCharacter(
  24164. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24165. {
  24166. front: {
  24167. height: math.unit(7 + 2 / 12, "feet"),
  24168. weight: math.unit(200, "lb"),
  24169. name: "Front",
  24170. image: {
  24171. source: "./media/characters/angel/front.svg",
  24172. extra: 1830 / 1737,
  24173. bottom: 22.6 / 1854,
  24174. }
  24175. },
  24176. },
  24177. [
  24178. {
  24179. name: "Normal",
  24180. height: math.unit(7 + 2 / 12, "feet"),
  24181. default: true
  24182. },
  24183. {
  24184. name: "Macro",
  24185. height: math.unit(1000, "feet")
  24186. },
  24187. {
  24188. name: "Megamacro",
  24189. height: math.unit(2, "miles")
  24190. },
  24191. {
  24192. name: "Gigamacro",
  24193. height: math.unit(20, "earths")
  24194. },
  24195. ]
  24196. ))
  24197. characterMakers.push(() => makeCharacter(
  24198. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24199. {
  24200. front: {
  24201. height: math.unit(5, "feet"),
  24202. weight: math.unit(180, "lb"),
  24203. name: "Front",
  24204. image: {
  24205. source: "./media/characters/mekana/front.svg",
  24206. extra: 1671 / 1605,
  24207. bottom: 3.5 / 1691
  24208. }
  24209. },
  24210. side: {
  24211. height: math.unit(5, "feet"),
  24212. weight: math.unit(180, "lb"),
  24213. name: "Side",
  24214. image: {
  24215. source: "./media/characters/mekana/side.svg",
  24216. extra: 1671 / 1605,
  24217. bottom: 3.5 / 1691
  24218. }
  24219. },
  24220. back: {
  24221. height: math.unit(5, "feet"),
  24222. weight: math.unit(180, "lb"),
  24223. name: "Back",
  24224. image: {
  24225. source: "./media/characters/mekana/back.svg",
  24226. extra: 1671 / 1605,
  24227. bottom: 3.5 / 1691
  24228. }
  24229. },
  24230. },
  24231. [
  24232. {
  24233. name: "Normal",
  24234. height: math.unit(5, "feet"),
  24235. default: true
  24236. },
  24237. ]
  24238. ))
  24239. characterMakers.push(() => makeCharacter(
  24240. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24241. {
  24242. front: {
  24243. height: math.unit(4 + 6 / 12, "feet"),
  24244. weight: math.unit(80, "lb"),
  24245. name: "Front",
  24246. image: {
  24247. source: "./media/characters/pixie/front.svg",
  24248. extra: 1924 / 1825,
  24249. bottom: 22.4 / 1946
  24250. }
  24251. },
  24252. },
  24253. [
  24254. {
  24255. name: "Normal",
  24256. height: math.unit(4 + 6 / 12, "feet"),
  24257. default: true
  24258. },
  24259. {
  24260. name: "Macro",
  24261. height: math.unit(40, "feet")
  24262. },
  24263. ]
  24264. ))
  24265. characterMakers.push(() => makeCharacter(
  24266. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24267. {
  24268. front: {
  24269. height: math.unit(2.1, "meters"),
  24270. weight: math.unit(200, "lb"),
  24271. name: "Front",
  24272. image: {
  24273. source: "./media/characters/the-lascivious/front.svg",
  24274. extra: 1 / 0.893,
  24275. bottom: 3.5 / 573.7
  24276. }
  24277. },
  24278. },
  24279. [
  24280. {
  24281. name: "Human Scale",
  24282. height: math.unit(2.1, "meters")
  24283. },
  24284. {
  24285. name: "Wolxi Scale",
  24286. height: math.unit(46.2, "m"),
  24287. default: true
  24288. },
  24289. {
  24290. name: "Boinker of Buildings",
  24291. height: math.unit(10, "km")
  24292. },
  24293. {
  24294. name: "Shagger of Skyscrapers",
  24295. height: math.unit(40, "km")
  24296. },
  24297. {
  24298. name: "Banger of Boroughs",
  24299. height: math.unit(4000, "km")
  24300. },
  24301. {
  24302. name: "Screwer of States",
  24303. height: math.unit(100000, "km")
  24304. },
  24305. {
  24306. name: "Pounder of Planets",
  24307. height: math.unit(2000000, "km")
  24308. },
  24309. ]
  24310. ))
  24311. characterMakers.push(() => makeCharacter(
  24312. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24313. {
  24314. front: {
  24315. height: math.unit(6, "feet"),
  24316. weight: math.unit(150, "lb"),
  24317. name: "Front",
  24318. image: {
  24319. source: "./media/characters/aj/front.svg",
  24320. extra: 2039 / 1562,
  24321. bottom: 40 / 2079
  24322. }
  24323. },
  24324. },
  24325. [
  24326. {
  24327. name: "Normal",
  24328. height: math.unit(11 + 6 / 12, "feet"),
  24329. default: true
  24330. },
  24331. {
  24332. name: "Megamacro",
  24333. height: math.unit(60, "megameters")
  24334. },
  24335. ]
  24336. ))
  24337. characterMakers.push(() => makeCharacter(
  24338. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24339. {
  24340. side: {
  24341. height: math.unit(31 + 8/12, "feet"),
  24342. weight: math.unit(75000, "kg"),
  24343. name: "Side",
  24344. image: {
  24345. source: "./media/characters/koros/side.svg",
  24346. extra: 1442/1297,
  24347. bottom: 122.7/1562
  24348. }
  24349. },
  24350. dicksKingsCrown: {
  24351. height: math.unit(6, "feet"),
  24352. name: "Dicks (King's Crown)",
  24353. image: {
  24354. source: "./media/characters/koros/dicks-kings-crown.svg"
  24355. }
  24356. },
  24357. dicksTailSet: {
  24358. height: math.unit(3, "feet"),
  24359. name: "Dicks (Tail Set)",
  24360. image: {
  24361. source: "./media/characters/koros/dicks-tail-set.svg"
  24362. }
  24363. },
  24364. dickCumming: {
  24365. height: math.unit(7.98, "feet"),
  24366. name: "Dick (Cumming)",
  24367. image: {
  24368. source: "./media/characters/koros/dick-cumming.svg"
  24369. }
  24370. },
  24371. dicksBack: {
  24372. height: math.unit(5.9, "feet"),
  24373. name: "Dicks (Back)",
  24374. image: {
  24375. source: "./media/characters/koros/dicks-back.svg"
  24376. }
  24377. },
  24378. dicksFront: {
  24379. height: math.unit(3.72, "feet"),
  24380. name: "Dicks (Front)",
  24381. image: {
  24382. source: "./media/characters/koros/dicks-front.svg"
  24383. }
  24384. },
  24385. dicksPeeking: {
  24386. height: math.unit(3.0, "feet"),
  24387. name: "Dicks (Peeking)",
  24388. image: {
  24389. source: "./media/characters/koros/dicks-peeking.svg"
  24390. }
  24391. },
  24392. eye: {
  24393. height: math.unit(1.7, "feet"),
  24394. name: "Eye",
  24395. image: {
  24396. source: "./media/characters/koros/eye.svg"
  24397. }
  24398. },
  24399. headFront: {
  24400. height: math.unit(11.69, "feet"),
  24401. name: "Head (Front)",
  24402. image: {
  24403. source: "./media/characters/koros/head-front.svg"
  24404. }
  24405. },
  24406. headSide: {
  24407. height: math.unit(14, "feet"),
  24408. name: "Head (Side)",
  24409. image: {
  24410. source: "./media/characters/koros/head-side.svg"
  24411. }
  24412. },
  24413. leg: {
  24414. height: math.unit(17, "feet"),
  24415. name: "Leg",
  24416. image: {
  24417. source: "./media/characters/koros/leg.svg"
  24418. }
  24419. },
  24420. mawSide: {
  24421. height: math.unit(12.8, "feet"),
  24422. name: "Maw (Side)",
  24423. image: {
  24424. source: "./media/characters/koros/maw-side.svg"
  24425. }
  24426. },
  24427. mawSpitting: {
  24428. height: math.unit(17, "feet"),
  24429. name: "Maw (Spitting)",
  24430. image: {
  24431. source: "./media/characters/koros/maw-spitting.svg"
  24432. }
  24433. },
  24434. slit: {
  24435. height: math.unit(2.8, "feet"),
  24436. name: "Slit",
  24437. image: {
  24438. source: "./media/characters/koros/slit.svg"
  24439. }
  24440. },
  24441. stomach: {
  24442. height: math.unit(6.8, "feet"),
  24443. capacity: math.unit(20, "people"),
  24444. name: "Stomach",
  24445. image: {
  24446. source: "./media/characters/koros/stomach.svg"
  24447. }
  24448. },
  24449. wingspanBottom: {
  24450. height: math.unit(114, "feet"),
  24451. name: "Wingspan (Bottom)",
  24452. image: {
  24453. source: "./media/characters/koros/wingspan-bottom.svg"
  24454. }
  24455. },
  24456. wingspanTop: {
  24457. height: math.unit(104, "feet"),
  24458. name: "Wingspan (Top)",
  24459. image: {
  24460. source: "./media/characters/koros/wingspan-top.svg"
  24461. }
  24462. },
  24463. },
  24464. [
  24465. {
  24466. name: "Normal",
  24467. height: math.unit(31 + 8/12, "feet"),
  24468. default: true
  24469. },
  24470. ]
  24471. ))
  24472. characterMakers.push(() => makeCharacter(
  24473. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24474. {
  24475. front: {
  24476. height: math.unit(18 + 5/12, "feet"),
  24477. weight: math.unit(3750, "kg"),
  24478. name: "Front",
  24479. image: {
  24480. source: "./media/characters/vexx/front.svg",
  24481. extra: 426/396,
  24482. bottom: 31.5/458
  24483. }
  24484. },
  24485. maw: {
  24486. height: math.unit(6, "feet"),
  24487. name: "Maw",
  24488. image: {
  24489. source: "./media/characters/vexx/maw.svg"
  24490. }
  24491. },
  24492. },
  24493. [
  24494. {
  24495. name: "Normal",
  24496. height: math.unit(18 + 5/12, "feet"),
  24497. default: true
  24498. },
  24499. ]
  24500. ))
  24501. characterMakers.push(() => makeCharacter(
  24502. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24503. {
  24504. front: {
  24505. height: math.unit(17 + 6/12, "feet"),
  24506. weight: math.unit(150, "lb"),
  24507. name: "Front",
  24508. image: {
  24509. source: "./media/characters/baadra/front.svg",
  24510. extra: 3137/2890,
  24511. bottom: 168.4/3305
  24512. }
  24513. },
  24514. back: {
  24515. height: math.unit(17 + 6/12, "feet"),
  24516. weight: math.unit(150, "lb"),
  24517. name: "Back",
  24518. image: {
  24519. source: "./media/characters/baadra/back.svg",
  24520. extra: 3142/2890,
  24521. bottom: 220/3371
  24522. }
  24523. },
  24524. head: {
  24525. height: math.unit(5.45, "feet"),
  24526. name: "Head",
  24527. image: {
  24528. source: "./media/characters/baadra/head.svg"
  24529. }
  24530. },
  24531. headAngry: {
  24532. height: math.unit(4.95, "feet"),
  24533. name: "Head (Angry)",
  24534. image: {
  24535. source: "./media/characters/baadra/head-angry.svg"
  24536. }
  24537. },
  24538. headOpen: {
  24539. height: math.unit(6, "feet"),
  24540. name: "Head (Open)",
  24541. image: {
  24542. source: "./media/characters/baadra/head-open.svg"
  24543. }
  24544. },
  24545. },
  24546. [
  24547. {
  24548. name: "Normal",
  24549. height: math.unit(17 + 6/12, "feet"),
  24550. default: true
  24551. },
  24552. ]
  24553. ))
  24554. characterMakers.push(() => makeCharacter(
  24555. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24556. {
  24557. front: {
  24558. height: math.unit(7 + 3/12, "feet"),
  24559. weight: math.unit(180, "lb"),
  24560. name: "Front",
  24561. image: {
  24562. source: "./media/characters/juri/front.svg",
  24563. extra: 1401/1237,
  24564. bottom: 18.5/1418
  24565. }
  24566. },
  24567. side: {
  24568. height: math.unit(7 + 3/12, "feet"),
  24569. weight: math.unit(180, "lb"),
  24570. name: "Side",
  24571. image: {
  24572. source: "./media/characters/juri/side.svg",
  24573. extra: 1424/1242,
  24574. bottom: 18.5/1447
  24575. }
  24576. },
  24577. sitting: {
  24578. height: math.unit(6, "feet"),
  24579. weight: math.unit(180, "lb"),
  24580. name: "Sitting",
  24581. image: {
  24582. source: "./media/characters/juri/sitting.svg",
  24583. extra: 1270/1143,
  24584. bottom: 100/1343
  24585. }
  24586. },
  24587. back: {
  24588. height: math.unit(7 + 3/12, "feet"),
  24589. weight: math.unit(180, "lb"),
  24590. name: "Back",
  24591. image: {
  24592. source: "./media/characters/juri/back.svg",
  24593. extra: 1377/1240,
  24594. bottom: 23.7/1405
  24595. }
  24596. },
  24597. maw: {
  24598. height: math.unit(2.8, "feet"),
  24599. name: "Maw",
  24600. image: {
  24601. source: "./media/characters/juri/maw.svg"
  24602. }
  24603. },
  24604. stomach: {
  24605. height: math.unit(0.89, "feet"),
  24606. capacity: math.unit(4, "liters"),
  24607. name: "Stomach",
  24608. image: {
  24609. source: "./media/characters/juri/stomach.svg"
  24610. }
  24611. },
  24612. },
  24613. [
  24614. {
  24615. name: "Normal",
  24616. height: math.unit(7 + 3/12, "feet"),
  24617. default: true
  24618. },
  24619. ]
  24620. ))
  24621. characterMakers.push(() => makeCharacter(
  24622. { name: "Maxene Sita", species: ["fox"], tags: ["anthro"] },
  24623. {
  24624. fox: {
  24625. height: math.unit(5 + 6/12, "feet"),
  24626. weight: math.unit(140, "lb"),
  24627. name: "Fox",
  24628. image: {
  24629. source: "./media/characters/maxene-sita/fox.svg",
  24630. extra: 146/138,
  24631. bottom: 2.1/148.19
  24632. }
  24633. },
  24634. kitsune: {
  24635. height: math.unit(10, "feet"),
  24636. weight: math.unit(800, "lb"),
  24637. name: "Kitsune",
  24638. image: {
  24639. source: "./media/characters/maxene-sita/kitsune.svg",
  24640. extra: 185/176,
  24641. bottom: 4.7/189.9
  24642. }
  24643. },
  24644. },
  24645. [
  24646. {
  24647. name: "Normal",
  24648. height: math.unit(5 + 6/12, "feet"),
  24649. default: true
  24650. },
  24651. ]
  24652. ))
  24653. characterMakers.push(() => makeCharacter(
  24654. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24655. {
  24656. front: {
  24657. height: math.unit(3 + 4/12, "feet"),
  24658. weight: math.unit(70, "lb"),
  24659. name: "Front",
  24660. image: {
  24661. source: "./media/characters/maia/front.svg",
  24662. extra: 227/219.5,
  24663. bottom: 40 / 267
  24664. }
  24665. },
  24666. back: {
  24667. height: math.unit(3 + 4/12, "feet"),
  24668. weight: math.unit(70, "lb"),
  24669. name: "Back",
  24670. image: {
  24671. source: "./media/characters/maia/back.svg",
  24672. extra: 237/225
  24673. }
  24674. },
  24675. },
  24676. [
  24677. {
  24678. name: "Normal",
  24679. height: math.unit(3 + 4/12, "feet"),
  24680. default: true
  24681. },
  24682. ]
  24683. ))
  24684. characterMakers.push(() => makeCharacter(
  24685. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24686. {
  24687. front: {
  24688. height: math.unit(5 + 10/12, "feet"),
  24689. weight: math.unit(197, "lb"),
  24690. name: "Front",
  24691. image: {
  24692. source: "./media/characters/jabaro/front.svg",
  24693. extra: 225/216,
  24694. bottom: 5.06/230
  24695. }
  24696. },
  24697. back: {
  24698. height: math.unit(5 + 10/12, "feet"),
  24699. weight: math.unit(197, "lb"),
  24700. name: "Back",
  24701. image: {
  24702. source: "./media/characters/jabaro/back.svg",
  24703. extra: 225/219,
  24704. bottom: 1.9/227
  24705. }
  24706. },
  24707. },
  24708. [
  24709. {
  24710. name: "Normal",
  24711. height: math.unit(5 + 10/12, "feet"),
  24712. default: true
  24713. },
  24714. ]
  24715. ))
  24716. characterMakers.push(() => makeCharacter(
  24717. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24718. {
  24719. front: {
  24720. height: math.unit(5 + 8/12, "feet"),
  24721. weight: math.unit(139, "lb"),
  24722. name: "Front",
  24723. image: {
  24724. source: "./media/characters/risa/front.svg",
  24725. extra: 270/260,
  24726. bottom: 11.2/282
  24727. }
  24728. },
  24729. back: {
  24730. height: math.unit(5 + 8/12, "feet"),
  24731. weight: math.unit(139, "lb"),
  24732. name: "Back",
  24733. image: {
  24734. source: "./media/characters/risa/back.svg",
  24735. extra: 264/255,
  24736. bottom: 4/268
  24737. }
  24738. },
  24739. },
  24740. [
  24741. {
  24742. name: "Normal",
  24743. height: math.unit(5 + 8/12, "feet"),
  24744. default: true
  24745. },
  24746. ]
  24747. ))
  24748. characterMakers.push(() => makeCharacter(
  24749. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  24750. {
  24751. front: {
  24752. height: math.unit(2 + 11/12, "feet"),
  24753. weight: math.unit(30, "lb"),
  24754. name: "Front",
  24755. image: {
  24756. source: "./media/characters/weatley/front.svg",
  24757. bottom: 10.7/414,
  24758. extra: 403.5/362
  24759. }
  24760. },
  24761. back: {
  24762. height: math.unit(2 + 11/12, "feet"),
  24763. weight: math.unit(30, "lb"),
  24764. name: "Back",
  24765. image: {
  24766. source: "./media/characters/weatley/back.svg",
  24767. bottom: 10.7/414,
  24768. extra: 403.5/362
  24769. }
  24770. },
  24771. },
  24772. [
  24773. {
  24774. name: "Normal",
  24775. height: math.unit(2 + 11/12, "feet"),
  24776. default: true
  24777. },
  24778. ]
  24779. ))
  24780. characterMakers.push(() => makeCharacter(
  24781. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  24782. {
  24783. front: {
  24784. height: math.unit(5 + 2/12, "feet"),
  24785. weight: math.unit(50, "kg"),
  24786. name: "Front",
  24787. image: {
  24788. source: "./media/characters/mercury-crescent/front.svg",
  24789. extra: 1088/1033,
  24790. bottom: 18.9/1109
  24791. }
  24792. },
  24793. },
  24794. [
  24795. {
  24796. name: "Normal",
  24797. height: math.unit(5 + 2/12, "feet"),
  24798. default: true
  24799. },
  24800. ]
  24801. ))
  24802. characterMakers.push(() => makeCharacter(
  24803. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  24804. {
  24805. front: {
  24806. height: math.unit(2, "feet"),
  24807. weight: math.unit(15, "kg"),
  24808. name: "Front",
  24809. image: {
  24810. source: "./media/characters/diamond-jones/front.svg",
  24811. bottom: 16/568
  24812. }
  24813. },
  24814. },
  24815. [
  24816. {
  24817. name: "Normal",
  24818. height: math.unit(2, "feet"),
  24819. default: true
  24820. },
  24821. ]
  24822. ))
  24823. characterMakers.push(() => makeCharacter(
  24824. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  24825. {
  24826. front: {
  24827. height: math.unit(3, "feet"),
  24828. weight: math.unit(30, "kg"),
  24829. name: "Front",
  24830. image: {
  24831. source: "./media/characters/sweet-bit/front.svg",
  24832. extra: 675/567,
  24833. bottom: 27.7/703
  24834. }
  24835. },
  24836. },
  24837. [
  24838. {
  24839. name: "Normal",
  24840. height: math.unit(3, "feet"),
  24841. default: true
  24842. },
  24843. ]
  24844. ))
  24845. characterMakers.push(() => makeCharacter(
  24846. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  24847. {
  24848. side: {
  24849. height: math.unit(9.178, "feet"),
  24850. weight: math.unit(500, "lb"),
  24851. name: "Side",
  24852. image: {
  24853. source: "./media/characters/umbrazen/side.svg",
  24854. extra: 1730/1473,
  24855. bottom: 34.6/1765
  24856. }
  24857. },
  24858. },
  24859. [
  24860. {
  24861. name: "Normal",
  24862. height: math.unit(9.178, "feet"),
  24863. default: true
  24864. },
  24865. ]
  24866. ))
  24867. characterMakers.push(() => makeCharacter(
  24868. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  24869. {
  24870. front: {
  24871. height: math.unit(10, "feet"),
  24872. weight: math.unit(750, "lb"),
  24873. name: "Front",
  24874. image: {
  24875. source: "./media/characters/arlist/front.svg",
  24876. extra: 961/778,
  24877. bottom: 6.2/986
  24878. }
  24879. },
  24880. },
  24881. [
  24882. {
  24883. name: "Normal",
  24884. height: math.unit(10, "feet"),
  24885. default: true
  24886. },
  24887. ]
  24888. ))
  24889. characterMakers.push(() => makeCharacter(
  24890. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  24891. {
  24892. front: {
  24893. height: math.unit(5 + 1/12, "feet"),
  24894. weight: math.unit(110, "lb"),
  24895. name: "Front",
  24896. image: {
  24897. source: "./media/characters/aradel/front.svg",
  24898. extra: 324/303,
  24899. bottom: 3.6/329.4
  24900. }
  24901. },
  24902. },
  24903. [
  24904. {
  24905. name: "Normal",
  24906. height: math.unit(5 + 1/12, "feet"),
  24907. default: true
  24908. },
  24909. ]
  24910. ))
  24911. characterMakers.push(() => makeCharacter(
  24912. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  24913. {
  24914. front: {
  24915. height: math.unit(3 + 8/12, "feet"),
  24916. weight: math.unit(50, "lb"),
  24917. name: "Front",
  24918. image: {
  24919. source: "./media/characters/serryn/front.svg",
  24920. extra: 1792/1656,
  24921. bottom: 43.5/1840
  24922. }
  24923. },
  24924. },
  24925. [
  24926. {
  24927. name: "Normal",
  24928. height: math.unit(3 + 8/12, "feet"),
  24929. default: true
  24930. },
  24931. ]
  24932. ))
  24933. characterMakers.push(() => makeCharacter(
  24934. { name: "Xavier Thyme" },
  24935. {
  24936. front: {
  24937. height: math.unit(7 + 10/12, "feet"),
  24938. weight: math.unit(255, "lb"),
  24939. name: "Front",
  24940. image: {
  24941. source: "./media/characters/xavier-thyme/front.svg",
  24942. extra: 3733/3642,
  24943. bottom: 131/3869
  24944. }
  24945. },
  24946. frontRaven: {
  24947. height: math.unit(7 + 10/12, "feet"),
  24948. weight: math.unit(255, "lb"),
  24949. name: "Front (Raven)",
  24950. image: {
  24951. source: "./media/characters/xavier-thyme/front-raven.svg",
  24952. extra: 4385/3642,
  24953. bottom: 131/4517
  24954. }
  24955. },
  24956. },
  24957. [
  24958. {
  24959. name: "Normal",
  24960. height: math.unit(7 + 10/12, "feet"),
  24961. default: true
  24962. },
  24963. ]
  24964. ))
  24965. characterMakers.push(() => makeCharacter(
  24966. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  24967. {
  24968. front: {
  24969. height: math.unit(1.6, "m"),
  24970. weight: math.unit(50, "kg"),
  24971. name: "Front",
  24972. image: {
  24973. source: "./media/characters/kiki/front.svg",
  24974. extra: 4682/3610,
  24975. bottom: 115/4777
  24976. }
  24977. },
  24978. },
  24979. [
  24980. {
  24981. name: "Normal",
  24982. height: math.unit(1.6, "meters"),
  24983. default: true
  24984. },
  24985. ]
  24986. ))
  24987. characterMakers.push(() => makeCharacter(
  24988. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  24989. {
  24990. front: {
  24991. height: math.unit(50, "m"),
  24992. weight: math.unit(500, "tonnes"),
  24993. name: "Front",
  24994. image: {
  24995. source: "./media/characters/ryoko/front.svg",
  24996. extra: 4632/3926,
  24997. bottom: 193/4823
  24998. }
  24999. },
  25000. },
  25001. [
  25002. {
  25003. name: "Normal",
  25004. height: math.unit(50, "meters"),
  25005. default: true
  25006. },
  25007. ]
  25008. ))
  25009. characterMakers.push(() => makeCharacter(
  25010. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25011. {
  25012. front: {
  25013. height: math.unit(30, "m"),
  25014. weight: math.unit(22, "tonnes"),
  25015. name: "Front",
  25016. image: {
  25017. source: "./media/characters/elio/front.svg",
  25018. extra: 4582/3720,
  25019. bottom: 236/4828
  25020. }
  25021. },
  25022. },
  25023. [
  25024. {
  25025. name: "Normal",
  25026. height: math.unit(30, "meters"),
  25027. default: true
  25028. },
  25029. ]
  25030. ))
  25031. characterMakers.push(() => makeCharacter(
  25032. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25033. {
  25034. front: {
  25035. height: math.unit(6 + 3/12, "feet"),
  25036. weight: math.unit(120, "lb"),
  25037. name: "Front",
  25038. image: {
  25039. source: "./media/characters/azura/front.svg",
  25040. extra: 1149/1135,
  25041. bottom: 45/1194
  25042. }
  25043. },
  25044. frontClothed: {
  25045. height: math.unit(6 + 3/12, "feet"),
  25046. weight: math.unit(120, "lb"),
  25047. name: "Front (Clothed)",
  25048. image: {
  25049. source: "./media/characters/azura/front-clothed.svg",
  25050. extra: 1149/1135,
  25051. bottom: 45/1194
  25052. }
  25053. },
  25054. },
  25055. [
  25056. {
  25057. name: "Normal",
  25058. height: math.unit(6 + 3/12, "feet"),
  25059. default: true
  25060. },
  25061. {
  25062. name: "Macro",
  25063. height: math.unit(20 + 6/12, "feet")
  25064. },
  25065. {
  25066. name: "Megamacro",
  25067. height: math.unit(12, "miles")
  25068. },
  25069. {
  25070. name: "Gigamacro",
  25071. height: math.unit(10000, "miles")
  25072. },
  25073. {
  25074. name: "Teramacro",
  25075. height: math.unit(900000, "miles")
  25076. },
  25077. ]
  25078. ))
  25079. characterMakers.push(() => makeCharacter(
  25080. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25081. {
  25082. front: {
  25083. height: math.unit(12, "feet"),
  25084. weight: math.unit(1, "ton"),
  25085. capacity: math.unit(660000, "gallons"),
  25086. name: "Front",
  25087. image: {
  25088. source: "./media/characters/zeus/front.svg",
  25089. extra: 5005/4717,
  25090. bottom: 363/5388
  25091. }
  25092. },
  25093. },
  25094. [
  25095. {
  25096. name: "Normal",
  25097. height: math.unit(12, "feet")
  25098. },
  25099. {
  25100. name: "Preferred Size",
  25101. height: math.unit(0.5, "miles"),
  25102. default: true
  25103. },
  25104. {
  25105. name: "Giga Horse",
  25106. height: math.unit(300, "miles")
  25107. },
  25108. {
  25109. name: "Riding Planets",
  25110. height: math.unit(30, "megameters")
  25111. },
  25112. {
  25113. name: "Cosmic Giant",
  25114. height: math.unit(3, "zettameters")
  25115. },
  25116. {
  25117. name: "Breeding God",
  25118. height: math.unit(9.92e22, "yottameters")
  25119. },
  25120. ]
  25121. ))
  25122. characterMakers.push(() => makeCharacter(
  25123. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25124. {
  25125. side: {
  25126. height: math.unit(9, "feet"),
  25127. weight: math.unit(1500, "kg"),
  25128. name: "Side",
  25129. image: {
  25130. source: "./media/characters/fang/side.svg",
  25131. extra: 924/866,
  25132. bottom: 47.5/972.3
  25133. }
  25134. },
  25135. },
  25136. [
  25137. {
  25138. name: "Normal",
  25139. height: math.unit(9, "feet"),
  25140. default: true
  25141. },
  25142. {
  25143. name: "Macro",
  25144. height: math.unit(75 + 6/12, "feet")
  25145. },
  25146. {
  25147. name: "Teramacro",
  25148. height: math.unit(50000, "miles")
  25149. },
  25150. ]
  25151. ))
  25152. characterMakers.push(() => makeCharacter(
  25153. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25154. {
  25155. front: {
  25156. height: math.unit(10, "feet"),
  25157. weight: math.unit(2, "tons"),
  25158. name: "Front",
  25159. image: {
  25160. source: "./media/characters/rekhit/front.svg",
  25161. extra: 2796/2590,
  25162. bottom: 225/3022
  25163. }
  25164. },
  25165. },
  25166. [
  25167. {
  25168. name: "Normal",
  25169. height: math.unit(10, "feet"),
  25170. default: true
  25171. },
  25172. {
  25173. name: "Macro",
  25174. height: math.unit(500, "feet")
  25175. },
  25176. ]
  25177. ))
  25178. characterMakers.push(() => makeCharacter(
  25179. { name: "Dahlia Verrick" },
  25180. {
  25181. front: {
  25182. height: math.unit(7 + 6.451/12, "feet"),
  25183. weight: math.unit(310, "lb"),
  25184. name: "Front",
  25185. image: {
  25186. source: "./media/characters/dahlia-verrick/front.svg",
  25187. extra: 1488/1365,
  25188. bottom: 6.2/1495
  25189. }
  25190. },
  25191. back: {
  25192. height: math.unit(7 + 6.451/12, "feet"),
  25193. weight: math.unit(310, "lb"),
  25194. name: "Back",
  25195. image: {
  25196. source: "./media/characters/dahlia-verrick/back.svg",
  25197. extra: 1472/1351,
  25198. bottom: 5.28/1477
  25199. }
  25200. },
  25201. frontBusiness: {
  25202. height: math.unit(7 + 6.451/12, "feet"),
  25203. weight: math.unit(200, "lb"),
  25204. name: "Front (Business)",
  25205. image: {
  25206. source: "./media/characters/dahlia-verrick/front-business.svg",
  25207. extra: 1478/1381,
  25208. bottom: 5.5/1484
  25209. }
  25210. },
  25211. frontCasual: {
  25212. height: math.unit(7 + 6.451/12, "feet"),
  25213. weight: math.unit(200, "lb"),
  25214. name: "Front (Casual)",
  25215. image: {
  25216. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25217. extra: 1478/1381,
  25218. bottom: 5.5/1484
  25219. }
  25220. },
  25221. },
  25222. [
  25223. {
  25224. name: "Travel-Sized",
  25225. height: math.unit(7.45, "inches")
  25226. },
  25227. {
  25228. name: "Normal",
  25229. height: math.unit(7 + 6.451/12, "feet"),
  25230. default: true
  25231. },
  25232. {
  25233. name: "Hitting the Town",
  25234. height: math.unit(37 + 8/12, "feet")
  25235. },
  25236. {
  25237. name: "Stomp in the Suburbs",
  25238. height: math.unit(964 + 9.728/12, "feet")
  25239. },
  25240. {
  25241. name: "Sit on the City",
  25242. height: math.unit(61747 + 10.592/12, "feet")
  25243. },
  25244. {
  25245. name: "Glomp the Globe",
  25246. height: math.unit(252919327 + 4.832/12, "feet")
  25247. },
  25248. ]
  25249. ))
  25250. characterMakers.push(() => makeCharacter(
  25251. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25252. {
  25253. front: {
  25254. height: math.unit(6 + 4/12, "feet"),
  25255. weight: math.unit(320, "lb"),
  25256. name: "Front",
  25257. image: {
  25258. source: "./media/characters/balina-mahigan/front.svg",
  25259. extra: 447/428,
  25260. bottom: 18/466
  25261. }
  25262. },
  25263. back: {
  25264. height: math.unit(6 + 4/12, "feet"),
  25265. weight: math.unit(320, "lb"),
  25266. name: "Back",
  25267. image: {
  25268. source: "./media/characters/balina-mahigan/back.svg",
  25269. extra: 445/428,
  25270. bottom: 4.07/448
  25271. }
  25272. },
  25273. arm: {
  25274. height: math.unit(1.88, "feet"),
  25275. name: "Arm",
  25276. image: {
  25277. source: "./media/characters/balina-mahigan/arm.svg"
  25278. }
  25279. },
  25280. backPort: {
  25281. height: math.unit(0.685, "feet"),
  25282. name: "Back Port",
  25283. image: {
  25284. source: "./media/characters/balina-mahigan/back-port.svg"
  25285. }
  25286. },
  25287. hoofpaw: {
  25288. height: math.unit(1.41, "feet"),
  25289. name: "Hoofpaw",
  25290. image: {
  25291. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25292. }
  25293. },
  25294. leftHandBack: {
  25295. height: math.unit(0.938, "feet"),
  25296. name: "Left Hand (Back)",
  25297. image: {
  25298. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25299. }
  25300. },
  25301. leftHandFront: {
  25302. height: math.unit(0.938, "feet"),
  25303. name: "Left Hand (Front)",
  25304. image: {
  25305. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25306. }
  25307. },
  25308. rightHandBack: {
  25309. height: math.unit(0.95, "feet"),
  25310. name: "Right Hand (Back)",
  25311. image: {
  25312. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25313. }
  25314. },
  25315. rightHandFront: {
  25316. height: math.unit(0.95, "feet"),
  25317. name: "Right Hand (Front)",
  25318. image: {
  25319. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25320. }
  25321. },
  25322. },
  25323. [
  25324. {
  25325. name: "Normal",
  25326. height: math.unit(6 + 4/12, "feet"),
  25327. default: true
  25328. },
  25329. ]
  25330. ))
  25331. characterMakers.push(() => makeCharacter(
  25332. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25333. {
  25334. front: {
  25335. height: math.unit(6, "feet"),
  25336. weight: math.unit(320, "lb"),
  25337. name: "Front",
  25338. image: {
  25339. source: "./media/characters/balina-mejeri/front.svg",
  25340. extra: 517/488,
  25341. bottom: 44.2/561
  25342. }
  25343. },
  25344. },
  25345. [
  25346. {
  25347. name: "Normal",
  25348. height: math.unit(6 + 4/12, "feet")
  25349. },
  25350. {
  25351. name: "Business",
  25352. height: math.unit(155, "feet"),
  25353. default: true
  25354. },
  25355. ]
  25356. ))
  25357. characterMakers.push(() => makeCharacter(
  25358. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25359. {
  25360. kneeling: {
  25361. height: math.unit(6 + 4/12, "feet"),
  25362. weight: math.unit(300*20, "lb"),
  25363. name: "Kneeling",
  25364. image: {
  25365. source: "./media/characters/balbarian/kneeling.svg",
  25366. extra: 922/862,
  25367. bottom: 42.4/965
  25368. }
  25369. },
  25370. },
  25371. [
  25372. {
  25373. name: "Normal",
  25374. height: math.unit(6 + 4/12, "feet")
  25375. },
  25376. {
  25377. name: "Treasured",
  25378. height: math.unit(18 + 9/12, "feet"),
  25379. default: true
  25380. },
  25381. {
  25382. name: "Macro",
  25383. height: math.unit(900, "feet")
  25384. },
  25385. ]
  25386. ))
  25387. characterMakers.push(() => makeCharacter(
  25388. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25389. {
  25390. front: {
  25391. height: math.unit(6 + 4/12, "feet"),
  25392. weight: math.unit(325, "lb"),
  25393. name: "Front",
  25394. image: {
  25395. source: "./media/characters/balina-amarini/front.svg",
  25396. extra: 415/403,
  25397. bottom: 19/433.4
  25398. }
  25399. },
  25400. back: {
  25401. height: math.unit(6 + 4/12, "feet"),
  25402. weight: math.unit(325, "lb"),
  25403. name: "Back",
  25404. image: {
  25405. source: "./media/characters/balina-amarini/back.svg",
  25406. extra: 415/403,
  25407. bottom: 13.5/432
  25408. }
  25409. },
  25410. overdrive: {
  25411. height: math.unit(6 + 4/12, "feet"),
  25412. weight: math.unit(400, "lb"),
  25413. name: "Overdrive",
  25414. image: {
  25415. source: "./media/characters/balina-amarini/overdrive.svg",
  25416. extra: 269/259,
  25417. bottom: 12/282
  25418. }
  25419. },
  25420. },
  25421. [
  25422. {
  25423. name: "Boom",
  25424. height: math.unit(9 + 10/12, "feet"),
  25425. default: true
  25426. },
  25427. {
  25428. name: "Macro",
  25429. height: math.unit(280, "feet")
  25430. },
  25431. ]
  25432. ))
  25433. characterMakers.push(() => makeCharacter(
  25434. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25435. {
  25436. goddess: {
  25437. height: math.unit(600, "feet"),
  25438. weight: math.unit(2000000, "tons"),
  25439. name: "Goddess",
  25440. image: {
  25441. source: "./media/characters/lady-kubwa/goddess.svg",
  25442. extra: 1240.5/1223,
  25443. bottom: 22/1263
  25444. }
  25445. },
  25446. goddesser: {
  25447. height: math.unit(900, "feet"),
  25448. weight: math.unit(20000000, "lb"),
  25449. name: "Goddess-er",
  25450. image: {
  25451. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25452. extra: 899/888,
  25453. bottom: 12.6/912
  25454. }
  25455. },
  25456. },
  25457. [
  25458. {
  25459. name: "Macro",
  25460. height: math.unit(600, "feet"),
  25461. default: true
  25462. },
  25463. {
  25464. name: "Megamacro",
  25465. height: math.unit(250, "miles")
  25466. },
  25467. ]
  25468. ))
  25469. characterMakers.push(() => makeCharacter(
  25470. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25471. {
  25472. front: {
  25473. height: math.unit(7 + 7/12, "feet"),
  25474. weight: math.unit(250, "lb"),
  25475. name: "Front",
  25476. image: {
  25477. source: "./media/characters/tala-grovehorn/front.svg",
  25478. extra: 2636/2525,
  25479. bottom: 147/2781
  25480. }
  25481. },
  25482. back: {
  25483. height: math.unit(7 + 7/12, "feet"),
  25484. weight: math.unit(250, "lb"),
  25485. name: "Back",
  25486. image: {
  25487. source: "./media/characters/tala-grovehorn/back.svg",
  25488. extra: 2635/2539,
  25489. bottom: 100/2732.8
  25490. }
  25491. },
  25492. mouth: {
  25493. height: math.unit(1.15, "feet"),
  25494. name: "Mouth",
  25495. image: {
  25496. source: "./media/characters/tala-grovehorn/mouth.svg"
  25497. }
  25498. },
  25499. dick: {
  25500. height: math.unit(2.36, "feet"),
  25501. name: "Dick",
  25502. image: {
  25503. source: "./media/characters/tala-grovehorn/dick.svg"
  25504. }
  25505. },
  25506. slit: {
  25507. height: math.unit(0.61, "feet"),
  25508. name: "Slit",
  25509. image: {
  25510. source: "./media/characters/tala-grovehorn/slit.svg"
  25511. }
  25512. },
  25513. },
  25514. [
  25515. ]
  25516. ))
  25517. characterMakers.push(() => makeCharacter(
  25518. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25519. {
  25520. front: {
  25521. height: math.unit(7 + 7/12, "feet"),
  25522. weight: math.unit(225, "lb"),
  25523. name: "Front",
  25524. image: {
  25525. source: "./media/characters/epona/front.svg",
  25526. extra: 2445/2290,
  25527. bottom: 251/2696
  25528. }
  25529. },
  25530. back: {
  25531. height: math.unit(7 + 7/12, "feet"),
  25532. weight: math.unit(225, "lb"),
  25533. name: "Back",
  25534. image: {
  25535. source: "./media/characters/epona/back.svg",
  25536. extra: 2546/2408,
  25537. bottom: 44/2589
  25538. }
  25539. },
  25540. genitals: {
  25541. height: math.unit(1.5, "feet"),
  25542. name: "Genitals",
  25543. image: {
  25544. source: "./media/characters/epona/genitals.svg"
  25545. }
  25546. },
  25547. },
  25548. [
  25549. {
  25550. name: "Normal",
  25551. height: math.unit(7 + 7/12, "feet")
  25552. },
  25553. ]
  25554. ))
  25555. characterMakers.push(() => makeCharacter(
  25556. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25557. {
  25558. front: {
  25559. height: math.unit(7, "feet"),
  25560. weight: math.unit(518, "lb"),
  25561. name: "Front",
  25562. image: {
  25563. source: "./media/characters/avia-bloodbourn/front.svg",
  25564. extra: 1466/1350,
  25565. bottom: 65/1527
  25566. }
  25567. },
  25568. },
  25569. [
  25570. ]
  25571. ))
  25572. characterMakers.push(() => makeCharacter(
  25573. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25574. {
  25575. front: {
  25576. height: math.unit(9.35, "feet"),
  25577. weight: math.unit(600, "lb"),
  25578. name: "Front",
  25579. image: {
  25580. source: "./media/characters/amera/front.svg",
  25581. extra: 891/818,
  25582. bottom: 30/922.7
  25583. }
  25584. },
  25585. back: {
  25586. height: math.unit(9.35, "feet"),
  25587. weight: math.unit(600, "lb"),
  25588. name: "Back",
  25589. image: {
  25590. source: "./media/characters/amera/back.svg",
  25591. extra: 876/824,
  25592. bottom: 6.8/884
  25593. }
  25594. },
  25595. dick: {
  25596. height: math.unit(2.14, "feet"),
  25597. name: "Dick",
  25598. image: {
  25599. source: "./media/characters/amera/dick.svg"
  25600. }
  25601. },
  25602. },
  25603. [
  25604. {
  25605. name: "Normal",
  25606. height: math.unit(9.35, "feet"),
  25607. default: true
  25608. },
  25609. ]
  25610. ))
  25611. characterMakers.push(() => makeCharacter(
  25612. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25613. {
  25614. kneeling: {
  25615. height: math.unit(3 + 4/12, "feet"),
  25616. weight: math.unit(90, "lb"),
  25617. name: "Kneeling",
  25618. image: {
  25619. source: "./media/characters/rosewen/kneeling.svg",
  25620. extra: 1835/1571,
  25621. bottom: 27.7/1862
  25622. }
  25623. },
  25624. },
  25625. [
  25626. {
  25627. name: "Normal",
  25628. height: math.unit(3 + 4/12, "feet"),
  25629. default: true
  25630. },
  25631. ]
  25632. ))
  25633. characterMakers.push(() => makeCharacter(
  25634. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25635. {
  25636. front: {
  25637. height: math.unit(5 + 10/12, "feet"),
  25638. weight: math.unit(200, "lb"),
  25639. name: "Front",
  25640. image: {
  25641. source: "./media/characters/sabah/front.svg",
  25642. extra: 849/763,
  25643. bottom: 33.9/881
  25644. }
  25645. },
  25646. },
  25647. [
  25648. {
  25649. name: "Normal",
  25650. height: math.unit(5 + 10/12, "feet"),
  25651. default: true
  25652. },
  25653. ]
  25654. ))
  25655. characterMakers.push(() => makeCharacter(
  25656. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25657. {
  25658. front: {
  25659. height: math.unit(3 + 5/12, "feet"),
  25660. weight: math.unit(40, "kg"),
  25661. name: "Front",
  25662. image: {
  25663. source: "./media/characters/purple-flame/front.svg",
  25664. extra: 1577/1412,
  25665. bottom: 97/1694
  25666. }
  25667. },
  25668. frontDressed: {
  25669. height: math.unit(3 + 5/12, "feet"),
  25670. weight: math.unit(40, "kg"),
  25671. name: "Front (Dressed)",
  25672. image: {
  25673. source: "./media/characters/purple-flame/front-dressed.svg",
  25674. extra: 1577/1412,
  25675. bottom: 97/1694
  25676. }
  25677. },
  25678. headphones: {
  25679. height: math.unit(0.85, "feet"),
  25680. name: "Headphones",
  25681. image: {
  25682. source: "./media/characters/purple-flame/headphones.svg"
  25683. }
  25684. },
  25685. },
  25686. [
  25687. {
  25688. name: "Really Small",
  25689. height: math.unit(5, "cm")
  25690. },
  25691. {
  25692. name: "Micro",
  25693. height: math.unit(1 + 5/12, "feet")
  25694. },
  25695. {
  25696. name: "Normal",
  25697. height: math.unit(3 + 5/12, "feet"),
  25698. default: true
  25699. },
  25700. {
  25701. name: "Minimacro",
  25702. height: math.unit(125, "feet")
  25703. },
  25704. {
  25705. name: "Macro",
  25706. height: math.unit(0.5, "miles")
  25707. },
  25708. {
  25709. name: "Megamacro",
  25710. height: math.unit(50, "miles")
  25711. },
  25712. {
  25713. name: "Gigantic",
  25714. height: math.unit(750, "miles")
  25715. },
  25716. {
  25717. name: "Planetary",
  25718. height: math.unit(15000, "miles")
  25719. },
  25720. ]
  25721. ))
  25722. characterMakers.push(() => makeCharacter(
  25723. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  25724. {
  25725. front: {
  25726. height: math.unit(14, "feet"),
  25727. weight: math.unit(959, "lb"),
  25728. name: "Front",
  25729. image: {
  25730. source: "./media/characters/arsenal/front.svg",
  25731. extra: 2357/2157,
  25732. bottom: 93/2458
  25733. }
  25734. },
  25735. },
  25736. [
  25737. {
  25738. name: "Normal",
  25739. height: math.unit(14, "feet"),
  25740. default: true
  25741. },
  25742. ]
  25743. ))
  25744. characterMakers.push(() => makeCharacter(
  25745. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  25746. {
  25747. front: {
  25748. height: math.unit(6, "feet"),
  25749. weight: math.unit(150, "lb"),
  25750. name: "Front",
  25751. image: {
  25752. source: "./media/characters/adira/front.svg",
  25753. extra: 1078/1029,
  25754. bottom: 87/1166
  25755. }
  25756. },
  25757. },
  25758. [
  25759. {
  25760. name: "Micro",
  25761. height: math.unit(4, "inches"),
  25762. default: true
  25763. },
  25764. {
  25765. name: "Macro",
  25766. height: math.unit(50, "feet")
  25767. },
  25768. ]
  25769. ))
  25770. characterMakers.push(() => makeCharacter(
  25771. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  25772. {
  25773. front: {
  25774. height: math.unit(16, "feet"),
  25775. weight: math.unit(1000, "lb"),
  25776. name: "Front",
  25777. image: {
  25778. source: "./media/characters/grim/front.svg",
  25779. extra: 622/614,
  25780. bottom: 18.1/642
  25781. }
  25782. },
  25783. back: {
  25784. height: math.unit(16, "feet"),
  25785. weight: math.unit(1000, "lb"),
  25786. name: "Back",
  25787. image: {
  25788. source: "./media/characters/grim/back.svg",
  25789. extra: 610.6/602,
  25790. bottom: 40.8/652
  25791. }
  25792. },
  25793. hunched: {
  25794. height: math.unit(9.75, "feet"),
  25795. weight: math.unit(1000, "lb"),
  25796. name: "Hunched",
  25797. image: {
  25798. source: "./media/characters/grim/hunched.svg",
  25799. extra: 304/297,
  25800. bottom: 35.4/394
  25801. }
  25802. },
  25803. },
  25804. [
  25805. {
  25806. name: "Normal",
  25807. height: math.unit(16, "feet"),
  25808. default: true
  25809. },
  25810. ]
  25811. ))
  25812. characterMakers.push(() => makeCharacter(
  25813. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  25814. {
  25815. front: {
  25816. height: math.unit(2.3, "meters"),
  25817. weight: math.unit(300, "lb"),
  25818. name: "Front",
  25819. image: {
  25820. source: "./media/characters/sinja/front-sfw.svg",
  25821. extra: 1393/1294,
  25822. bottom: 70/1463
  25823. }
  25824. },
  25825. frontNsfw: {
  25826. height: math.unit(2.3, "meters"),
  25827. weight: math.unit(300, "lb"),
  25828. name: "Front (NSFW)",
  25829. image: {
  25830. source: "./media/characters/sinja/front-nsfw.svg",
  25831. extra: 1393/1294,
  25832. bottom: 70/1463
  25833. }
  25834. },
  25835. back: {
  25836. height: math.unit(2.3, "meters"),
  25837. weight: math.unit(300, "lb"),
  25838. name: "Back",
  25839. image: {
  25840. source: "./media/characters/sinja/back.svg",
  25841. extra: 1393/1294,
  25842. bottom: 70/1463
  25843. }
  25844. },
  25845. head: {
  25846. height: math.unit(1.771, "feet"),
  25847. name: "Head",
  25848. image: {
  25849. source: "./media/characters/sinja/head.svg"
  25850. }
  25851. },
  25852. slit: {
  25853. height: math.unit(0.8, "feet"),
  25854. name: "Slit",
  25855. image: {
  25856. source: "./media/characters/sinja/slit.svg"
  25857. }
  25858. },
  25859. },
  25860. [
  25861. {
  25862. name: "Normal",
  25863. height: math.unit(2.3, "meters")
  25864. },
  25865. {
  25866. name: "Macro",
  25867. height: math.unit(91, "meters"),
  25868. default: true
  25869. },
  25870. {
  25871. name: "Megamacro",
  25872. height: math.unit(91440, "meters")
  25873. },
  25874. {
  25875. name: "Gigamacro",
  25876. height: math.unit(60960000, "meters")
  25877. },
  25878. {
  25879. name: "Teramacro",
  25880. height: math.unit(9144000000, "meters")
  25881. },
  25882. ]
  25883. ))
  25884. characterMakers.push(() => makeCharacter(
  25885. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  25886. {
  25887. front: {
  25888. height: math.unit(1.7, "meters"),
  25889. weight: math.unit(130, "lb"),
  25890. name: "Front",
  25891. image: {
  25892. source: "./media/characters/kyu/front.svg",
  25893. extra: 415/395,
  25894. bottom: 5/420
  25895. }
  25896. },
  25897. head: {
  25898. height: math.unit(1.75, "feet"),
  25899. name: "Head",
  25900. image: {
  25901. source: "./media/characters/kyu/head.svg"
  25902. }
  25903. },
  25904. foot: {
  25905. height: math.unit(0.81, "feet"),
  25906. name: "Foot",
  25907. image: {
  25908. source: "./media/characters/kyu/foot.svg"
  25909. }
  25910. },
  25911. },
  25912. [
  25913. {
  25914. name: "Normal",
  25915. height: math.unit(1.7, "meters")
  25916. },
  25917. {
  25918. name: "Macro",
  25919. height: math.unit(131, "feet"),
  25920. default: true
  25921. },
  25922. {
  25923. name: "Megamacro",
  25924. height: math.unit(91440, "meters")
  25925. },
  25926. {
  25927. name: "Gigamacro",
  25928. height: math.unit(60960000, "meters")
  25929. },
  25930. {
  25931. name: "Teramacro",
  25932. height: math.unit(9144000000, "meters")
  25933. },
  25934. ]
  25935. ))
  25936. characterMakers.push(() => makeCharacter(
  25937. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  25938. {
  25939. front: {
  25940. height: math.unit(7 + 1/12, "feet"),
  25941. weight: math.unit(250, "lb"),
  25942. name: "Front",
  25943. image: {
  25944. source: "./media/characters/joey/front.svg",
  25945. extra: 1791/1537,
  25946. bottom: 28/1816
  25947. }
  25948. },
  25949. },
  25950. [
  25951. {
  25952. name: "Micro",
  25953. height: math.unit(3, "inches")
  25954. },
  25955. {
  25956. name: "Normal",
  25957. height: math.unit(7 + 1/12, "feet"),
  25958. default: true
  25959. },
  25960. ]
  25961. ))
  25962. characterMakers.push(() => makeCharacter(
  25963. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  25964. {
  25965. front: {
  25966. height: math.unit(165, "cm"),
  25967. weight: math.unit(140, "lb"),
  25968. name: "Front",
  25969. image: {
  25970. source: "./media/characters/sam-evans/front.svg",
  25971. extra: 3417/3230,
  25972. bottom: 41.3/3417
  25973. }
  25974. },
  25975. frontSixTails: {
  25976. height: math.unit(165, "cm"),
  25977. weight: math.unit(140, "lb"),
  25978. name: "Front-six-tails",
  25979. image: {
  25980. source: "./media/characters/sam-evans/front-six-tails.svg",
  25981. extra: 3417/3230,
  25982. bottom: 41.3/3417
  25983. }
  25984. },
  25985. back: {
  25986. height: math.unit(165, "cm"),
  25987. weight: math.unit(140, "lb"),
  25988. name: "Back",
  25989. image: {
  25990. source: "./media/characters/sam-evans/back.svg",
  25991. extra: 3227/3032,
  25992. bottom: 6.8/3234
  25993. }
  25994. },
  25995. face: {
  25996. height: math.unit(0.68, "feet"),
  25997. name: "Face",
  25998. image: {
  25999. source: "./media/characters/sam-evans/face.svg"
  26000. }
  26001. },
  26002. },
  26003. [
  26004. {
  26005. name: "Normal",
  26006. height: math.unit(165, "cm"),
  26007. default: true
  26008. },
  26009. {
  26010. name: "Macro",
  26011. height: math.unit(100, "meters")
  26012. },
  26013. {
  26014. name: "Macro+",
  26015. height: math.unit(800, "meters")
  26016. },
  26017. {
  26018. name: "Macro++",
  26019. height: math.unit(3, "km")
  26020. },
  26021. {
  26022. name: "Macro+++",
  26023. height: math.unit(30, "km")
  26024. },
  26025. ]
  26026. ))
  26027. characterMakers.push(() => makeCharacter(
  26028. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26029. {
  26030. front: {
  26031. height: math.unit(10, "feet"),
  26032. weight: math.unit(750, "lb"),
  26033. name: "Front",
  26034. image: {
  26035. source: "./media/characters/juliet-a/front.svg",
  26036. extra: 1766/1720,
  26037. bottom: 43/1809
  26038. }
  26039. },
  26040. back: {
  26041. height: math.unit(10, "feet"),
  26042. weight: math.unit(750, "lb"),
  26043. name: "Back",
  26044. image: {
  26045. source: "./media/characters/juliet-a/back.svg",
  26046. extra: 1781/1734,
  26047. bottom: 35/1810,
  26048. }
  26049. },
  26050. },
  26051. [
  26052. {
  26053. name: "Normal",
  26054. height: math.unit(10, "feet"),
  26055. default: true
  26056. },
  26057. {
  26058. name: "Dragon Form",
  26059. height: math.unit(250, "feet")
  26060. },
  26061. {
  26062. name: "Macro",
  26063. height: math.unit(1000, "feet")
  26064. },
  26065. {
  26066. name: "Megamacro",
  26067. height: math.unit(10000, "feet")
  26068. }
  26069. ]
  26070. ))
  26071. characterMakers.push(() => makeCharacter(
  26072. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26073. {
  26074. regular: {
  26075. height: math.unit(7 + 3/12, "feet"),
  26076. weight: math.unit(260, "lb"),
  26077. name: "Regular",
  26078. image: {
  26079. source: "./media/characters/wild/regular.svg",
  26080. extra: 97.45/92,
  26081. bottom: 6.8/104.3
  26082. }
  26083. },
  26084. biggums: {
  26085. height: math.unit(8 + 6 /12, "feet"),
  26086. weight: math.unit(425, "lb"),
  26087. name: "Biggums",
  26088. image: {
  26089. source: "./media/characters/wild/biggums.svg",
  26090. extra: 97.45/92,
  26091. bottom: 7.5/132.34
  26092. }
  26093. },
  26094. mawRegular: {
  26095. height: math.unit(1.24, "feet"),
  26096. name: "Maw (Regular)",
  26097. image: {
  26098. source: "./media/characters/wild/maw.svg"
  26099. }
  26100. },
  26101. mawBiggums: {
  26102. height: math.unit(1.47, "feet"),
  26103. name: "Maw (Biggums)",
  26104. image: {
  26105. source: "./media/characters/wild/maw.svg"
  26106. }
  26107. },
  26108. },
  26109. [
  26110. {
  26111. name: "Normal",
  26112. height: math.unit(7 + 3/12, "feet"),
  26113. default: true
  26114. },
  26115. ]
  26116. ))
  26117. characterMakers.push(() => makeCharacter(
  26118. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26119. {
  26120. front: {
  26121. height: math.unit(2.5, "meters"),
  26122. weight: math.unit(200, "kg"),
  26123. name: "Front",
  26124. image: {
  26125. source: "./media/characters/vidar/front.svg",
  26126. extra: 2994/2795,
  26127. bottom: 56/3061
  26128. }
  26129. },
  26130. back: {
  26131. height: math.unit(2.5, "meters"),
  26132. weight: math.unit(200, "kg"),
  26133. name: "Back",
  26134. image: {
  26135. source: "./media/characters/vidar/back.svg",
  26136. extra: 3131/2928,
  26137. bottom: 13.5/3141.5
  26138. }
  26139. },
  26140. feral: {
  26141. height: math.unit(2.5, "meters"),
  26142. weight: math.unit(2000, "kg"),
  26143. name: "Feral",
  26144. image: {
  26145. source: "./media/characters/vidar/feral.svg",
  26146. extra: 2790/1765,
  26147. bottom: 6/2796
  26148. }
  26149. },
  26150. },
  26151. [
  26152. {
  26153. name: "Normal",
  26154. height: math.unit(2.5, "meters"),
  26155. default: true
  26156. },
  26157. {
  26158. name: "Macro",
  26159. height: math.unit(100, "meters")
  26160. },
  26161. ]
  26162. ))
  26163. characterMakers.push(() => makeCharacter(
  26164. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26165. {
  26166. front: {
  26167. height: math.unit(5 + 9/12, "feet"),
  26168. weight: math.unit(120, "lb"),
  26169. name: "Front",
  26170. image: {
  26171. source: "./media/characters/ash/front.svg",
  26172. extra: 2189/1961,
  26173. bottom: 5.2/2194
  26174. }
  26175. },
  26176. },
  26177. [
  26178. {
  26179. name: "Normal",
  26180. height: math.unit(5 + 9/12, "feet"),
  26181. default: true
  26182. },
  26183. ]
  26184. ))
  26185. characterMakers.push(() => makeCharacter(
  26186. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26187. {
  26188. front: {
  26189. height: math.unit(9, "feet"),
  26190. weight: math.unit(10000, "lb"),
  26191. name: "Front",
  26192. image: {
  26193. source: "./media/characters/gygabite/front.svg",
  26194. bottom: 31.7/537.8,
  26195. extra: 505/370
  26196. }
  26197. },
  26198. },
  26199. [
  26200. {
  26201. name: "Normal",
  26202. height: math.unit(9, "feet"),
  26203. default: true
  26204. },
  26205. ]
  26206. ))
  26207. characterMakers.push(() => makeCharacter(
  26208. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26209. {
  26210. front: {
  26211. height: math.unit(12, "feet"),
  26212. weight: math.unit(35000, "lb"),
  26213. name: "Front",
  26214. image: {
  26215. source: "./media/characters/p0tat0/front.svg",
  26216. extra: 1065/921,
  26217. bottom: 55.7/1121.25
  26218. }
  26219. },
  26220. },
  26221. [
  26222. {
  26223. name: "Normal",
  26224. height: math.unit(12, "feet"),
  26225. default: true
  26226. },
  26227. ]
  26228. ))
  26229. characterMakers.push(() => makeCharacter(
  26230. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26231. {
  26232. side: {
  26233. height: math.unit(6.5, "feet"),
  26234. weight: math.unit(800, "lb"),
  26235. name: "Side",
  26236. image: {
  26237. source: "./media/characters/dusk/side.svg",
  26238. extra: 615/373,
  26239. bottom: 53/664
  26240. }
  26241. },
  26242. sitting: {
  26243. height: math.unit(7, "feet"),
  26244. weight: math.unit(800, "lb"),
  26245. name: "Sitting",
  26246. image: {
  26247. source: "./media/characters/dusk/sitting.svg",
  26248. extra: 753/425,
  26249. bottom: 33/774
  26250. }
  26251. },
  26252. head: {
  26253. height: math.unit(6.1, "feet"),
  26254. name: "Head",
  26255. image: {
  26256. source: "./media/characters/dusk/head.svg"
  26257. }
  26258. },
  26259. },
  26260. [
  26261. {
  26262. name: "Normal",
  26263. height: math.unit(7, "feet"),
  26264. default: true
  26265. },
  26266. ]
  26267. ))
  26268. characterMakers.push(() => makeCharacter(
  26269. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26270. {
  26271. front: {
  26272. height: math.unit(15, "feet"),
  26273. weight: math.unit(7000, "lb"),
  26274. name: "Front",
  26275. image: {
  26276. source: "./media/characters/jay-direwolf/front.svg",
  26277. extra: 1810/1732,
  26278. bottom: 66/1892
  26279. }
  26280. },
  26281. },
  26282. [
  26283. {
  26284. name: "Normal",
  26285. height: math.unit(15, "feet"),
  26286. default: true
  26287. },
  26288. ]
  26289. ))
  26290. characterMakers.push(() => makeCharacter(
  26291. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26292. {
  26293. front: {
  26294. height: math.unit(4 + 9/12, "feet"),
  26295. weight: math.unit(130, "lb"),
  26296. name: "Front",
  26297. image: {
  26298. source: "./media/characters/anchovie/front.svg",
  26299. extra: 382/350,
  26300. bottom: 25/409
  26301. }
  26302. },
  26303. back: {
  26304. height: math.unit(4 + 9/12, "feet"),
  26305. weight: math.unit(130, "lb"),
  26306. name: "Back",
  26307. image: {
  26308. source: "./media/characters/anchovie/back.svg",
  26309. extra: 385/352,
  26310. bottom: 16.6/402
  26311. }
  26312. },
  26313. frontDressed: {
  26314. height: math.unit(4 + 9/12, "feet"),
  26315. weight: math.unit(130, "lb"),
  26316. name: "Front (Dressed)",
  26317. image: {
  26318. source: "./media/characters/anchovie/front-dressed.svg",
  26319. extra: 382/350,
  26320. bottom: 25/409
  26321. }
  26322. },
  26323. backDressed: {
  26324. height: math.unit(4 + 9/12, "feet"),
  26325. weight: math.unit(130, "lb"),
  26326. name: "Back (Dressed)",
  26327. image: {
  26328. source: "./media/characters/anchovie/back-dressed.svg",
  26329. extra: 385/352,
  26330. bottom: 16.6/402
  26331. }
  26332. },
  26333. },
  26334. [
  26335. {
  26336. name: "Micro",
  26337. height: math.unit(6.4, "inches")
  26338. },
  26339. {
  26340. name: "Normal",
  26341. height: math.unit(4 + 9/12, "feet"),
  26342. default: true
  26343. },
  26344. ]
  26345. ))
  26346. characterMakers.push(() => makeCharacter(
  26347. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26348. {
  26349. front: {
  26350. height: math.unit(2, "meters"),
  26351. weight: math.unit(180, "lb"),
  26352. name: "Front",
  26353. image: {
  26354. source: "./media/characters/acidrenamon/front.svg",
  26355. extra: 987/890,
  26356. bottom: 22.8/1009
  26357. }
  26358. },
  26359. back: {
  26360. height: math.unit(2, "meters"),
  26361. weight: math.unit(180, "lb"),
  26362. name: "Back",
  26363. image: {
  26364. source: "./media/characters/acidrenamon/back.svg",
  26365. extra: 983/891,
  26366. bottom: 8.4/992
  26367. }
  26368. },
  26369. head: {
  26370. height: math.unit(1.92, "feet"),
  26371. name: "Head",
  26372. image: {
  26373. source: "./media/characters/acidrenamon/head.svg"
  26374. }
  26375. },
  26376. rump: {
  26377. height: math.unit(1.72, "feet"),
  26378. name: "Rump",
  26379. image: {
  26380. source: "./media/characters/acidrenamon/rump.svg"
  26381. }
  26382. },
  26383. tail: {
  26384. height: math.unit(4.2, "feet"),
  26385. name: "Tail",
  26386. image: {
  26387. source: "./media/characters/acidrenamon/tail.svg"
  26388. }
  26389. },
  26390. },
  26391. [
  26392. {
  26393. name: "Normal",
  26394. height: math.unit(2, "meters"),
  26395. default: true
  26396. },
  26397. {
  26398. name: "Minimacro",
  26399. height: math.unit(7, "meters")
  26400. },
  26401. {
  26402. name: "Macro",
  26403. height: math.unit(200, "meters")
  26404. },
  26405. {
  26406. name: "Gigamacro",
  26407. height: math.unit(0.2, "earths")
  26408. },
  26409. ]
  26410. ))
  26411. characterMakers.push(() => makeCharacter(
  26412. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26413. {
  26414. front: {
  26415. height: math.unit(6, "feet"),
  26416. weight: math.unit(150, "lb"),
  26417. name: "Front",
  26418. image: {
  26419. source: "./media/characters/kenzie-lee/front.svg",
  26420. extra: 1525/1465,
  26421. bottom: 45/1570
  26422. }
  26423. },
  26424. side: {
  26425. height: math.unit(6, "feet"),
  26426. weight: math.unit(150, "lb"),
  26427. name: "Side",
  26428. image: {
  26429. source: "./media/characters/kenzie-lee/side.svg",
  26430. extra: 5505/5383,
  26431. bottom: 60/5573
  26432. }
  26433. },
  26434. },
  26435. [
  26436. {
  26437. name: "Normal",
  26438. height: math.unit(152, "feet"),
  26439. default: true
  26440. },
  26441. {
  26442. name: "Megamacro",
  26443. height: math.unit(7, "miles")
  26444. },
  26445. {
  26446. name: "Gigamacro",
  26447. height: math.unit(8000, "miles")
  26448. },
  26449. ]
  26450. ))
  26451. characterMakers.push(() => makeCharacter(
  26452. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26453. {
  26454. side: {
  26455. height: math.unit(6, "feet"),
  26456. weight: math.unit(150, "lb"),
  26457. name: "Side",
  26458. image: {
  26459. source: "./media/characters/withers/side.svg",
  26460. extra: 1830/1728,
  26461. bottom: 96/1927
  26462. }
  26463. },
  26464. },
  26465. [
  26466. {
  26467. name: "Normal",
  26468. height: math.unit(6, "feet")
  26469. },
  26470. {
  26471. name: "Macro",
  26472. height: math.unit(50, "feet")
  26473. },
  26474. {
  26475. name: "Megamacro",
  26476. height: math.unit(15, "miles"),
  26477. default: true
  26478. },
  26479. {
  26480. name: "Megamacro+",
  26481. height: math.unit(100, "km")
  26482. },
  26483. {
  26484. name: "Gigamacro",
  26485. height: math.unit(4750, "miles")
  26486. },
  26487. {
  26488. name: "Gigamacro+",
  26489. height: math.unit(32000, "miles")
  26490. },
  26491. ]
  26492. ))
  26493. characterMakers.push(() => makeCharacter(
  26494. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26495. {
  26496. front: {
  26497. height: math.unit(6 + 7/12, "feet"),
  26498. weight: math.unit(250, "lb"),
  26499. name: "Front",
  26500. image: {
  26501. source: "./media/characters/nemoskii/front.svg",
  26502. extra: 2270/1734,
  26503. bottom: 86/2354
  26504. }
  26505. },
  26506. back: {
  26507. height: math.unit(6 + 7/12, "feet"),
  26508. weight: math.unit(250, "lb"),
  26509. name: "Back",
  26510. image: {
  26511. source: "./media/characters/nemoskii/back.svg",
  26512. extra: 1845/1788,
  26513. bottom: 10.5/1852
  26514. }
  26515. },
  26516. head: {
  26517. height: math.unit(1.31, "feet"),
  26518. name: "Head",
  26519. image: {
  26520. source: "./media/characters/nemoskii/head.svg"
  26521. }
  26522. },
  26523. },
  26524. [
  26525. {
  26526. name: "Normal",
  26527. height: math.unit(6 + 7/12, "feet"),
  26528. default: true
  26529. },
  26530. ]
  26531. ))
  26532. characterMakers.push(() => makeCharacter(
  26533. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26534. {
  26535. front: {
  26536. height: math.unit(1, "mile"),
  26537. weight: math.unit(265261.9, "lb"),
  26538. name: "Front",
  26539. image: {
  26540. source: "./media/characters/shui/front.svg",
  26541. extra: 1633/1564,
  26542. bottom: 91.5/1726
  26543. }
  26544. },
  26545. },
  26546. [
  26547. {
  26548. name: "Macro",
  26549. height: math.unit(1, "mile"),
  26550. default: true
  26551. },
  26552. ]
  26553. ))
  26554. characterMakers.push(() => makeCharacter(
  26555. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26556. {
  26557. front: {
  26558. height: math.unit(12 + 6/12, "feet"),
  26559. weight: math.unit(1342, "lb"),
  26560. name: "Front",
  26561. image: {
  26562. source: "./media/characters/arokh-takakura/front.svg",
  26563. extra: 1089/1043,
  26564. bottom: 77.4/1176.7
  26565. }
  26566. },
  26567. back: {
  26568. height: math.unit(12 + 6/12, "feet"),
  26569. weight: math.unit(1342, "lb"),
  26570. name: "Back",
  26571. image: {
  26572. source: "./media/characters/arokh-takakura/back.svg",
  26573. extra: 1046/1019,
  26574. bottom: 102/1150
  26575. }
  26576. },
  26577. },
  26578. [
  26579. {
  26580. name: "Big",
  26581. height: math.unit(12 + 6/12, "feet"),
  26582. default: true
  26583. },
  26584. ]
  26585. ))
  26586. characterMakers.push(() => makeCharacter(
  26587. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  26588. {
  26589. front: {
  26590. height: math.unit(5 + 6/12, "feet"),
  26591. weight: math.unit(150, "lb"),
  26592. name: "Front",
  26593. image: {
  26594. source: "./media/characters/theo/front.svg",
  26595. extra: 1184/1131,
  26596. bottom: 7.4/1191
  26597. }
  26598. },
  26599. },
  26600. [
  26601. {
  26602. name: "Micro",
  26603. height: math.unit(5, "inches")
  26604. },
  26605. {
  26606. name: "Normal",
  26607. height: math.unit(5 + 6/12, "feet"),
  26608. default: true
  26609. },
  26610. ]
  26611. ))
  26612. characterMakers.push(() => makeCharacter(
  26613. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  26614. {
  26615. front: {
  26616. height: math.unit(5 + 9/12, "feet"),
  26617. weight: math.unit(130, "lb"),
  26618. name: "Front",
  26619. image: {
  26620. source: "./media/characters/cecelia-swift/front.svg",
  26621. extra: 502/484,
  26622. bottom: 23/523
  26623. }
  26624. },
  26625. back: {
  26626. height: math.unit(5 + 9/12, "feet"),
  26627. weight: math.unit(130, "lb"),
  26628. name: "Back",
  26629. image: {
  26630. source: "./media/characters/cecelia-swift/back.svg",
  26631. extra: 499/485,
  26632. bottom: 12/511
  26633. }
  26634. },
  26635. head: {
  26636. height: math.unit(0.90, "feet"),
  26637. name: "Head",
  26638. image: {
  26639. source: "./media/characters/cecelia-swift/head.svg"
  26640. }
  26641. },
  26642. rump: {
  26643. height: math.unit(1.75, "feet"),
  26644. name: "Rump",
  26645. image: {
  26646. source: "./media/characters/cecelia-swift/rump.svg"
  26647. }
  26648. },
  26649. },
  26650. [
  26651. {
  26652. name: "Normal",
  26653. height: math.unit(5 + 9/12, "feet"),
  26654. default: true
  26655. },
  26656. {
  26657. name: "Big",
  26658. height: math.unit(50, "feet")
  26659. },
  26660. {
  26661. name: "Macro",
  26662. height: math.unit(100, "feet")
  26663. },
  26664. {
  26665. name: "Macro+",
  26666. height: math.unit(500, "feet")
  26667. },
  26668. {
  26669. name: "Macro++",
  26670. height: math.unit(1000, "feet")
  26671. },
  26672. ]
  26673. ))
  26674. characterMakers.push(() => makeCharacter(
  26675. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  26676. {
  26677. front: {
  26678. height: math.unit(6, "feet"),
  26679. weight: math.unit(150, "lb"),
  26680. name: "Front",
  26681. image: {
  26682. source: "./media/characters/kaunan/front.svg",
  26683. extra: 2890/2523,
  26684. bottom: 49/2939
  26685. }
  26686. },
  26687. },
  26688. [
  26689. {
  26690. name: "Macro",
  26691. height: math.unit(150, "feet"),
  26692. default: true
  26693. },
  26694. ]
  26695. ))
  26696. characterMakers.push(() => makeCharacter(
  26697. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  26698. {
  26699. front: {
  26700. height: math.unit(175, "cm"),
  26701. weight: math.unit(60, "kg"),
  26702. name: "Front",
  26703. image: {
  26704. source: "./media/characters/fei/front.svg",
  26705. extra: 2581/2400,
  26706. bottom: 82.2/2663
  26707. }
  26708. },
  26709. },
  26710. [
  26711. {
  26712. name: "Mortal",
  26713. height: math.unit(175, "cm")
  26714. },
  26715. {
  26716. name: "Normal",
  26717. height: math.unit(3500, "m"),
  26718. default: true
  26719. },
  26720. {
  26721. name: "Stroll",
  26722. height: math.unit(17.5, "km")
  26723. },
  26724. {
  26725. name: "Showoff",
  26726. height: math.unit(175, "km")
  26727. },
  26728. ]
  26729. ))
  26730. characterMakers.push(() => makeCharacter(
  26731. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  26732. {
  26733. front: {
  26734. height: math.unit(7, "feet"),
  26735. weight: math.unit(1000, "kg"),
  26736. name: "Front",
  26737. image: {
  26738. source: "./media/characters/edrax/front.svg",
  26739. extra: 2838/2550,
  26740. bottom: 130/2968
  26741. }
  26742. },
  26743. },
  26744. [
  26745. {
  26746. name: "Small",
  26747. height: math.unit(7, "feet")
  26748. },
  26749. {
  26750. name: "Normal",
  26751. height: math.unit(1500, "meters")
  26752. },
  26753. {
  26754. name: "Mega",
  26755. height: math.unit(12000000, "km"),
  26756. default: true
  26757. },
  26758. {
  26759. name: "Megamacro",
  26760. height: math.unit(10600000, "lightyears")
  26761. },
  26762. {
  26763. name: "Hypermacro",
  26764. height: math.unit(256, "yottameters")
  26765. },
  26766. ]
  26767. ))
  26768. characterMakers.push(() => makeCharacter(
  26769. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  26770. {
  26771. front: {
  26772. height: math.unit(10, "feet"),
  26773. weight: math.unit(750, "lb"),
  26774. name: "Front",
  26775. image: {
  26776. source: "./media/characters/clove/front.svg",
  26777. extra: 2031/1860,
  26778. bottom: 47.8/2080
  26779. }
  26780. },
  26781. back: {
  26782. height: math.unit(10, "feet"),
  26783. weight: math.unit(750, "lb"),
  26784. name: "Back",
  26785. image: {
  26786. source: "./media/characters/clove/back.svg",
  26787. extra: 2025/1859,
  26788. bottom: 46/2071
  26789. }
  26790. },
  26791. },
  26792. [
  26793. {
  26794. name: "Normal",
  26795. height: math.unit(10, "feet")
  26796. },
  26797. ]
  26798. ))
  26799. characterMakers.push(() => makeCharacter(
  26800. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  26801. {
  26802. front: {
  26803. height: math.unit(4, "feet"),
  26804. weight: math.unit(50, "lb"),
  26805. name: "Front",
  26806. image: {
  26807. source: "./media/characters/alex-rabbit/front.svg",
  26808. extra: 507/458,
  26809. bottom: 18.5/527
  26810. }
  26811. },
  26812. back: {
  26813. height: math.unit(4, "feet"),
  26814. weight: math.unit(50, "lb"),
  26815. name: "Back",
  26816. image: {
  26817. source: "./media/characters/alex-rabbit/back.svg",
  26818. extra: 502/460,
  26819. bottom: 18.9/521
  26820. }
  26821. },
  26822. },
  26823. [
  26824. {
  26825. name: "Normal",
  26826. height: math.unit(4, "feet"),
  26827. default: true
  26828. },
  26829. ]
  26830. ))
  26831. characterMakers.push(() => makeCharacter(
  26832. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  26833. {
  26834. front: {
  26835. height: math.unit(1 + 3 / 12, "feet"),
  26836. weight: math.unit(80, "lb"),
  26837. name: "Front",
  26838. image: {
  26839. source: "./media/characters/zander-rose/front.svg",
  26840. extra: 916 / 797,
  26841. bottom: 17 / 933
  26842. }
  26843. },
  26844. back: {
  26845. height: math.unit(1 + 3 / 12, "feet"),
  26846. weight: math.unit(80, "lb"),
  26847. name: "Back",
  26848. image: {
  26849. source: "./media/characters/zander-rose/back.svg",
  26850. extra: 903/779,
  26851. bottom: 31/934
  26852. }
  26853. },
  26854. },
  26855. [
  26856. {
  26857. name: "Normal",
  26858. height: math.unit(1 + 3 / 12, "feet"),
  26859. default: true
  26860. },
  26861. ]
  26862. ))
  26863. characterMakers.push(() => makeCharacter(
  26864. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  26865. {
  26866. anthro: {
  26867. height: math.unit(6, "feet"),
  26868. weight: math.unit(150, "lb"),
  26869. name: "Anthro",
  26870. image: {
  26871. source: "./media/characters/razz/anthro.svg",
  26872. extra: 1437/1343,
  26873. bottom: 48/1485
  26874. }
  26875. },
  26876. feral: {
  26877. height: math.unit(6, "feet"),
  26878. weight: math.unit(150, "lb"),
  26879. name: "Feral",
  26880. image: {
  26881. source: "./media/characters/razz/feral.svg",
  26882. extra: 2569/1385,
  26883. bottom: 95/2664
  26884. }
  26885. },
  26886. },
  26887. [
  26888. {
  26889. name: "Normal",
  26890. height: math.unit(6, "feet"),
  26891. default: true
  26892. },
  26893. ]
  26894. ))
  26895. characterMakers.push(() => makeCharacter(
  26896. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  26897. {
  26898. front: {
  26899. height: math.unit(9 + 4/12, "feet"),
  26900. weight: math.unit(500, "lb"),
  26901. name: "Front",
  26902. image: {
  26903. source: "./media/characters/morrigan/front.svg",
  26904. extra: 2707/2579,
  26905. bottom: 156/2863
  26906. }
  26907. },
  26908. },
  26909. [
  26910. {
  26911. name: "Normal",
  26912. height: math.unit(9 + 4/12, "feet"),
  26913. default: true
  26914. },
  26915. ]
  26916. ))
  26917. characterMakers.push(() => makeCharacter(
  26918. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  26919. {
  26920. front: {
  26921. height: math.unit(5, "stories"),
  26922. weight: math.unit(4000, "lb"),
  26923. name: "Front",
  26924. image: {
  26925. source: "./media/characters/jenene/front.svg",
  26926. extra: 1780/1710,
  26927. bottom: 57/1837
  26928. }
  26929. },
  26930. },
  26931. [
  26932. {
  26933. name: "Normal",
  26934. height: math.unit(5, "stories"),
  26935. default: true
  26936. },
  26937. ]
  26938. ))
  26939. characterMakers.push(() => makeCharacter(
  26940. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  26941. {
  26942. front: {
  26943. height: math.unit(6, "feet"),
  26944. weight: math.unit(150, "lb"),
  26945. name: "Front",
  26946. image: {
  26947. source: "./media/characters/vix-archaser/front.svg",
  26948. extra: 2767/2562,
  26949. bottom: 36/2803
  26950. }
  26951. },
  26952. },
  26953. [
  26954. {
  26955. name: "Micro",
  26956. height: math.unit(1, "foot")
  26957. },
  26958. {
  26959. name: "Normal",
  26960. height: math.unit(6 + 5/12, "feet")
  26961. },
  26962. {
  26963. name: "Minimacro",
  26964. height: math.unit(500, "feet")
  26965. },
  26966. {
  26967. name: "Macro",
  26968. height: math.unit(4, "miles")
  26969. },
  26970. {
  26971. name: "Megamacro",
  26972. height: math.unit(250, "miles"),
  26973. default: true
  26974. },
  26975. {
  26976. name: "Gigamacro",
  26977. height: math.unit(1, "universe")
  26978. },
  26979. ]
  26980. ))
  26981. characterMakers.push(() => makeCharacter(
  26982. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  26983. {
  26984. taurSfw: {
  26985. height: math.unit(10, "meters"),
  26986. weight: math.unit(17500, "kg"),
  26987. name: "Taur",
  26988. image: {
  26989. source: "./media/characters/faey/taur-sfw.svg",
  26990. extra: 1200/968,
  26991. bottom: 41/1241
  26992. }
  26993. },
  26994. chestmaw: {
  26995. height: math.unit(2.01, "meters"),
  26996. name: "Chestmaw",
  26997. image: {
  26998. source: "./media/characters/faey/chestmaw.svg"
  26999. }
  27000. },
  27001. foot: {
  27002. height: math.unit(2.43, "meters"),
  27003. name: "Foot",
  27004. image: {
  27005. source: "./media/characters/faey/foot.svg"
  27006. }
  27007. },
  27008. jaws: {
  27009. height: math.unit(1.66, "meters"),
  27010. name: "Jaws",
  27011. image: {
  27012. source: "./media/characters/faey/jaws.svg"
  27013. }
  27014. },
  27015. tongues: {
  27016. height: math.unit(2.01, "meters"),
  27017. name: "Tongues",
  27018. image: {
  27019. source: "./media/characters/faey/tongues.svg"
  27020. }
  27021. },
  27022. },
  27023. [
  27024. {
  27025. name: "Small",
  27026. height: math.unit(10, "meters"),
  27027. default: true
  27028. },
  27029. {
  27030. name: "Big",
  27031. height: math.unit(500000, "km")
  27032. },
  27033. ]
  27034. ))
  27035. characterMakers.push(() => makeCharacter(
  27036. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27037. {
  27038. front: {
  27039. height: math.unit(7, "feet"),
  27040. weight: math.unit(275, "lb"),
  27041. name: "Front",
  27042. image: {
  27043. source: "./media/characters/roku/front.svg",
  27044. extra: 903/878,
  27045. bottom: 37/940
  27046. }
  27047. },
  27048. },
  27049. [
  27050. {
  27051. name: "Normal",
  27052. height: math.unit(7, "feet"),
  27053. default: true
  27054. },
  27055. {
  27056. name: "Macro",
  27057. height: math.unit(500, "feet")
  27058. },
  27059. {
  27060. name: "Megamacro",
  27061. height: math.unit(200, "miles")
  27062. },
  27063. ]
  27064. ))
  27065. characterMakers.push(() => makeCharacter(
  27066. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27067. {
  27068. front: {
  27069. height: math.unit(6 + 2/12, "feet"),
  27070. weight: math.unit(150, "lb"),
  27071. name: "Front",
  27072. image: {
  27073. source: "./media/characters/lira/front.svg",
  27074. extra: 1727/1605,
  27075. bottom: 26/1753
  27076. }
  27077. },
  27078. back: {
  27079. height: math.unit(6 + 2/12, "feet"),
  27080. weight: math.unit(150, "lb"),
  27081. name: "Back",
  27082. image: {
  27083. source: "./media/characters/lira/back.svg",
  27084. extra: 1713/159,
  27085. bottom: 20/1733
  27086. }
  27087. },
  27088. hand: {
  27089. height: math.unit(0.75, "feet"),
  27090. name: "Hand",
  27091. image: {
  27092. source: "./media/characters/lira/hand.svg"
  27093. }
  27094. },
  27095. maw: {
  27096. height: math.unit(0.65, "feet"),
  27097. name: "Maw",
  27098. image: {
  27099. source: "./media/characters/lira/maw.svg"
  27100. }
  27101. },
  27102. pawDigi: {
  27103. height: math.unit(1.6, "feet"),
  27104. name: "Paw Digi",
  27105. image: {
  27106. source: "./media/characters/lira/paw-digi.svg"
  27107. }
  27108. },
  27109. pawPlanti: {
  27110. height: math.unit(1.4, "feet"),
  27111. name: "Paw Planti",
  27112. image: {
  27113. source: "./media/characters/lira/paw-planti.svg"
  27114. }
  27115. },
  27116. },
  27117. [
  27118. {
  27119. name: "Normal",
  27120. height: math.unit(6 + 2/12, "feet"),
  27121. default: true
  27122. },
  27123. {
  27124. name: "Macro",
  27125. height: math.unit(100, "feet")
  27126. },
  27127. {
  27128. name: "Macro²",
  27129. height: math.unit(1600, "feet")
  27130. },
  27131. {
  27132. name: "Planetary",
  27133. height: math.unit(20, "earths")
  27134. },
  27135. ]
  27136. ))
  27137. characterMakers.push(() => makeCharacter(
  27138. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27139. {
  27140. front: {
  27141. height: math.unit(6, "feet"),
  27142. weight: math.unit(150, "lb"),
  27143. name: "Front",
  27144. image: {
  27145. source: "./media/characters/hadjet/front.svg",
  27146. extra: 1480/1346,
  27147. bottom: 26/1506
  27148. }
  27149. },
  27150. },
  27151. [
  27152. {
  27153. name: "Macro",
  27154. height: math.unit(10, "stories"),
  27155. default: true
  27156. },
  27157. {
  27158. name: "Megamacro",
  27159. height: math.unit(1.5, "miles")
  27160. },
  27161. {
  27162. name: "Megamacro+",
  27163. height: math.unit(5, "miles")
  27164. },
  27165. ]
  27166. ))
  27167. characterMakers.push(() => makeCharacter(
  27168. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27169. {
  27170. side: {
  27171. height: math.unit(106, "feet"),
  27172. weight: math.unit(500, "tonnes"),
  27173. name: "Side",
  27174. image: {
  27175. source: "./media/characters/kodran/side.svg",
  27176. extra: 553/480,
  27177. bottom: 33/586
  27178. }
  27179. },
  27180. front: {
  27181. height: math.unit(132, "feet"),
  27182. weight: math.unit(500, "tonnes"),
  27183. name: "Front",
  27184. image: {
  27185. source: "./media/characters/kodran/front.svg",
  27186. extra: 667/643,
  27187. bottom: 42/709
  27188. }
  27189. },
  27190. flying: {
  27191. height: math.unit(350, "feet"),
  27192. weight: math.unit(500, "tonnes"),
  27193. name: "Flying",
  27194. image: {
  27195. source: "./media/characters/kodran/flying.svg"
  27196. }
  27197. },
  27198. foot: {
  27199. height: math.unit(33, "feet"),
  27200. name: "Foot",
  27201. image: {
  27202. source: "./media/characters/kodran/foot.svg"
  27203. }
  27204. },
  27205. footFront: {
  27206. height: math.unit(19, "feet"),
  27207. name: "Foot (Front)",
  27208. image: {
  27209. source: "./media/characters/kodran/foot-front.svg",
  27210. extra: 261/261,
  27211. bottom: 91/352
  27212. }
  27213. },
  27214. headFront: {
  27215. height: math.unit(53, "feet"),
  27216. name: "Head (Front)",
  27217. image: {
  27218. source: "./media/characters/kodran/head-front.svg"
  27219. }
  27220. },
  27221. headSide: {
  27222. height: math.unit(65, "feet"),
  27223. name: "Head (Side)",
  27224. image: {
  27225. source: "./media/characters/kodran/head-side.svg"
  27226. }
  27227. },
  27228. throat: {
  27229. height: math.unit(79, "feet"),
  27230. name: "Throat",
  27231. image: {
  27232. source: "./media/characters/kodran/throat.svg"
  27233. }
  27234. },
  27235. },
  27236. [
  27237. {
  27238. name: "Large",
  27239. height: math.unit(106, "feet"),
  27240. default: true
  27241. },
  27242. ]
  27243. ))
  27244. characterMakers.push(() => makeCharacter(
  27245. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27246. {
  27247. side: {
  27248. height: math.unit(11, "feet"),
  27249. weight: math.unit(150, "lb"),
  27250. name: "Side",
  27251. image: {
  27252. source: "./media/characters/pyxaron/side.svg",
  27253. extra: 305/195,
  27254. bottom: 17/322
  27255. }
  27256. },
  27257. },
  27258. [
  27259. {
  27260. name: "Normal",
  27261. height: math.unit(11, "feet")
  27262. },
  27263. ]
  27264. ))
  27265. characterMakers.push(() => makeCharacter(
  27266. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27267. {
  27268. front: {
  27269. height: math.unit(6, "feet"),
  27270. weight: math.unit(150, "lb"),
  27271. name: "Front",
  27272. image: {
  27273. source: "./media/characters/meep/front.svg",
  27274. extra: 88/80,
  27275. bottom: 6/94
  27276. }
  27277. },
  27278. },
  27279. [
  27280. {
  27281. name: "Fun Sized",
  27282. height: math.unit(2, "inches"),
  27283. default: true
  27284. },
  27285. {
  27286. name: "Friend Sized",
  27287. height: math.unit(8, "inches")
  27288. },
  27289. ]
  27290. ))
  27291. //characters
  27292. function makeCharacters() {
  27293. const results = [];
  27294. characterMakers.forEach(character => {
  27295. results.push(character());
  27296. });
  27297. return results;
  27298. }