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.
 
 
 

27518 lines
685 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.capacity) {
  29. views[key].attributes.capacity = {
  30. name: "Capacity",
  31. power: 3,
  32. type: "volume",
  33. base: value.capacity
  34. }
  35. }
  36. });
  37. return createEntityMaker(info, views, defaultSizes);
  38. }
  39. const speciesData = {
  40. animal: {
  41. name: "Animal"
  42. },
  43. dog: {
  44. name: "Dog",
  45. parents: [
  46. "canine"
  47. ]
  48. },
  49. canine: {
  50. name: "Canine",
  51. parents: [
  52. "mammal"
  53. ]
  54. },
  55. crux: {
  56. name: "Crux",
  57. parents: [
  58. "mammal"
  59. ]
  60. },
  61. mammal: {
  62. name: "Mammal",
  63. parents: [
  64. "animal"
  65. ]
  66. },
  67. "rough-collie": {
  68. name: "Rough Collie",
  69. parents: [
  70. "dog"
  71. ]
  72. },
  73. dragon: {
  74. name: "Dragon",
  75. parents: [
  76. "reptile"
  77. ]
  78. },
  79. reptile: {
  80. name: "Reptile",
  81. parents: [
  82. "animal"
  83. ]
  84. },
  85. woodpecker: {
  86. name: "Woodpecker",
  87. parents: [
  88. "avian"
  89. ]
  90. },
  91. avian: {
  92. name: "Avian",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. kitsune: {
  98. name: "Kitsune",
  99. parents: [
  100. "fox"
  101. ]
  102. },
  103. fox: {
  104. name: "Fox",
  105. parents: [
  106. "mammal"
  107. ]
  108. },
  109. pokemon: {
  110. name: "Pokemon"
  111. },
  112. tiger: {
  113. name: "Tiger",
  114. parents: [
  115. "cat"
  116. ]
  117. },
  118. cat: {
  119. name: "Cat",
  120. parents: [
  121. "mammal"
  122. ]
  123. },
  124. "blue-jay": {
  125. name: "Blue Jay",
  126. parents: [
  127. "avian"
  128. ]
  129. },
  130. wolf: {
  131. name: "Wolf",
  132. parents: [
  133. "mammal"
  134. ]
  135. },
  136. coyote: {
  137. name: "Coyote",
  138. parents: [
  139. "mammal"
  140. ]
  141. },
  142. raccoon: {
  143. name: "Raccoon",
  144. parents: [
  145. "mammal"
  146. ]
  147. },
  148. weasel: {
  149. name: "Weasel",
  150. parents: [
  151. "mammal"
  152. ]
  153. },
  154. "red-panda": {
  155. name: "Red Panda",
  156. parents: [
  157. "mammal"
  158. ]
  159. },
  160. dolphin: {
  161. name: "Dolphin",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. "african-wild-dog": {
  167. name: "African Wild Dog",
  168. parents: [
  169. "canine"
  170. ]
  171. },
  172. "hyena": {
  173. name: "Hyena",
  174. parents: [
  175. "canine"
  176. ]
  177. },
  178. "carbuncle": {
  179. name: "Carbuncle",
  180. parents: [
  181. "animal"
  182. ]
  183. },
  184. bat: {
  185. name: "Bat",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. "leaf-nosed-bat": {
  191. name: "Leaf-Nosed Bat",
  192. parents: [
  193. "bat"
  194. ]
  195. },
  196. "fish": {
  197. name: "Fish",
  198. parents: [
  199. "animal"
  200. ]
  201. },
  202. "ram": {
  203. name: "Ram",
  204. parents: [
  205. "mammal"
  206. ]
  207. },
  208. "demon": {
  209. name: "Demon"
  210. },
  211. "cougar": {
  212. name: "Cougar",
  213. parents: [
  214. "cat"
  215. ]
  216. },
  217. "goat": {
  218. name: "Goat",
  219. parents: [
  220. "mammal"
  221. ]
  222. },
  223. "lion": {
  224. name: "Lion",
  225. parents: [
  226. "cat"
  227. ]
  228. },
  229. "harpy-eager": {
  230. name: "Harpy Eagle",
  231. parents: [
  232. "avian"
  233. ]
  234. },
  235. "deer": {
  236. name: "Deer",
  237. parents: [
  238. "mammal"
  239. ]
  240. },
  241. "phoenix": {
  242. name: "Phoenix",
  243. parents: [
  244. "avian"
  245. ]
  246. },
  247. "aeromorph": {
  248. name: "Aeromorph",
  249. parents: [
  250. "machine"
  251. ]
  252. },
  253. "machine": {
  254. name: "Machine",
  255. },
  256. "android": {
  257. name: "Android",
  258. parents: [
  259. "machine"
  260. ]
  261. },
  262. "jackal": {
  263. name: "Jackal",
  264. parents: [
  265. "canine"
  266. ]
  267. },
  268. "corvid": {
  269. name: "Corvid",
  270. parents: [
  271. "avian"
  272. ]
  273. },
  274. "pharaoh-hound": {
  275. name: "Pharaoh Hound",
  276. parents: [
  277. "dog"
  278. ]
  279. },
  280. "skunk": {
  281. name: "Skunk",
  282. parents: [
  283. "mammal"
  284. ]
  285. },
  286. "shark": {
  287. name: "Shark",
  288. parents: [
  289. "fish"
  290. ]
  291. },
  292. "black-panther": {
  293. name: "Black Panther",
  294. parents: [
  295. "cat"
  296. ]
  297. },
  298. "umbra": {
  299. name: "Umbra",
  300. parents: [
  301. "animal"
  302. ]
  303. },
  304. "raven": {
  305. name: "Raven",
  306. parents: [
  307. "corvid"
  308. ]
  309. },
  310. "snow-leopard": {
  311. name: "Snow Leopard",
  312. parents: [
  313. "cat"
  314. ]
  315. },
  316. "barbary-lion": {
  317. name: "Barbary Lion",
  318. parents: [
  319. "lion"
  320. ]
  321. },
  322. "dra'gal": {
  323. name: "Dra'Gal",
  324. parents: [
  325. "mammal"
  326. ]
  327. },
  328. "german-shepherd": {
  329. name: "German Shepherd",
  330. parents: [
  331. "dog"
  332. ]
  333. },
  334. "bayleef": {
  335. name: "Bayleef",
  336. parents: [
  337. "pokemon"
  338. ]
  339. },
  340. "mouse": {
  341. name: "Mouse",
  342. parents: [
  343. "rodent"
  344. ]
  345. },
  346. "rat": {
  347. name: "Rat",
  348. parents: [
  349. "mammal"
  350. ]
  351. },
  352. "hoshiko-beast": {
  353. name: "Hoshiko Beast",
  354. parents: ["animal"]
  355. },
  356. "snow-jugani": {
  357. name: "Snow Jugani",
  358. parents: ["cat"]
  359. },
  360. "patamon": {
  361. name: "Patamon",
  362. parents: ["digimon"]
  363. },
  364. "digimon": {
  365. name: "Digimon",
  366. },
  367. "jugani": {
  368. name: "Jugani",
  369. parents: ["cat"]
  370. },
  371. "luxray": {
  372. name: "Luxray",
  373. parents: ["pokemon"]
  374. },
  375. "mech": {
  376. name: "Mech",
  377. parents: ["machine"]
  378. },
  379. "zoid": {
  380. name: "Zoid",
  381. parents: ["mech"]
  382. },
  383. "monster": {
  384. name: "Monster",
  385. parents: ["animal"]
  386. },
  387. "foo-dog": {
  388. name: "Foo Dog",
  389. parents: ["mammal"]
  390. },
  391. "elephant": {
  392. name: "Elephant",
  393. parents: ["mammal"]
  394. },
  395. "eagle": {
  396. name: "Eagle",
  397. parents: ["avian"]
  398. },
  399. "cow": {
  400. name: "Cow",
  401. parents: ["mammal"]
  402. },
  403. "crocodile": {
  404. name: "Crocodile",
  405. parents: ["reptile"]
  406. },
  407. "borzoi": {
  408. name: "Borzoi",
  409. parents: ["dog"]
  410. },
  411. "snake": {
  412. name: "Snake",
  413. parents: ["reptile"]
  414. },
  415. "horned-bush-viper": {
  416. name: "Horned Bush Viper",
  417. parents: ["snake"]
  418. },
  419. "cobra": {
  420. name: "Cobra",
  421. parents: ["snake"]
  422. },
  423. "harpy-eagle": {
  424. name: "Harpy Eagle",
  425. parents: ["eagle"]
  426. },
  427. "raptor": {
  428. name: "Raptor",
  429. parents: ["dinosaur"]
  430. },
  431. "dinosaur": {
  432. name: "Dinosaur",
  433. parents: ["reptile"]
  434. },
  435. "veilhound": {
  436. name: "Veilhound",
  437. parents: ["hellhound", "demon"]
  438. },
  439. "hellhound": {
  440. name: "Hellhound",
  441. parents: ["canine"]
  442. },
  443. "insect": {
  444. name: "Insect",
  445. parents: ["animal"]
  446. },
  447. "beetle": {
  448. name: "Beetle",
  449. parents: ["insect"]
  450. },
  451. "moth": {
  452. name: "Moth",
  453. parents: ["insect"]
  454. },
  455. "eastern-dragon": {
  456. name: "Eastern Dragon",
  457. parents: ["dragon"]
  458. },
  459. "jaguar": {
  460. name: "Jaguar",
  461. parents: ["cat"]
  462. },
  463. "horse": {
  464. name: "Horse",
  465. parents: ["mammal"]
  466. },
  467. "sergal": {
  468. name: "Sergal",
  469. parents: ["mammal"]
  470. },
  471. "gryphon": {
  472. name: "Gryphon",
  473. parents: ["lion", "eagle"]
  474. },
  475. "robot": {
  476. name: "Robot",
  477. parents: ["machine"]
  478. },
  479. "medihound": {
  480. name: "Medihound",
  481. parents: ["robot", "dog"]
  482. },
  483. "sylveon": {
  484. name: "Sylveon",
  485. parents: ["pokemon"]
  486. },
  487. "catgirl": {
  488. name: "Catgirl",
  489. parents: ["mammal"]
  490. },
  491. "cowgirl": {
  492. name: "Cowgirl",
  493. parents: ["mammal"]
  494. },
  495. "pony": {
  496. name: "Pony",
  497. parents: ["horse"]
  498. },
  499. "rabbit": {
  500. name: "Rabbit",
  501. parents: ["mammal"]
  502. },
  503. "fennec-fox": {
  504. name: "Fennec Fox",
  505. parents: ["fox"]
  506. },
  507. "azodian": {
  508. name: "Azodian",
  509. parents: ["mouse"]
  510. },
  511. "shiba-inu": {
  512. name: "Shiba Inu",
  513. parents: ["dog"]
  514. },
  515. "changeling": {
  516. name: "Changeling",
  517. parents: ["insect"]
  518. },
  519. "cheetah": {
  520. name: "Cheetah",
  521. parents: ["cat"]
  522. },
  523. "golden-jackal": {
  524. name: "Golden Jackal",
  525. parents: ["jackal"]
  526. },
  527. "manectric": {
  528. name: "Manectric",
  529. parents: ["pokemon"]
  530. },
  531. "rat": {
  532. name: "Rat",
  533. parents: ["rodent"]
  534. },
  535. "rodent": {
  536. name: "Rodent",
  537. parents: ["mammal"]
  538. },
  539. "octocoon": {
  540. name: "Octocoon",
  541. parents: ["raccoon", "octopus"]
  542. },
  543. "octopus": {
  544. name: "Octopus",
  545. parents: ["fish"]
  546. },
  547. "werewolf": {
  548. name: "Werewolf",
  549. parents: ["wolf"]
  550. },
  551. "meerkat": {
  552. name: "Meerkat",
  553. parents: ["mammal"]
  554. },
  555. "human": {
  556. name: "Human",
  557. parents: ["mammal"]
  558. },
  559. "geth": {
  560. name: "Geth",
  561. parents: ["android"]
  562. },
  563. "husky": {
  564. name: "Husky",
  565. parents: ["dog"]
  566. },
  567. "long-eared-bat": {
  568. name: "Long Eared Bat",
  569. parents: ["bat"]
  570. },
  571. "lizard": {
  572. name: "Lizard",
  573. parents: ["reptile"]
  574. },
  575. "salamander": {
  576. name: "Salamander",
  577. parents: ["lizard"]
  578. },
  579. "chameleon": {
  580. name: "Chameleon",
  581. parents: ["lizard"]
  582. },
  583. "gecko": {
  584. name: "Gecko",
  585. parents: ["lizard"]
  586. },
  587. "kobold": {
  588. name: "Kobold",
  589. parents: ["reptile"]
  590. },
  591. "charizard": {
  592. name: "Charizard",
  593. parents: ["pokemon"]
  594. },
  595. "lugia": {
  596. name: "Lugia",
  597. parents: ["pokemon"]
  598. },
  599. "cerberus": {
  600. name: "Cerberus",
  601. parents: ["dog"]
  602. },
  603. "tyrantrum": {
  604. name: "Tyrantrum",
  605. parents: ["pokemon"]
  606. },
  607. "lemur": {
  608. name: "Lemur",
  609. parents: ["mammal"]
  610. },
  611. "kelpie": {
  612. name: "Kelpie",
  613. parents: ["horse", "monster"]
  614. },
  615. "labrador": {
  616. name: "Labrador",
  617. parents: ["dog"]
  618. },
  619. "sylveon": {
  620. name: "Sylveon",
  621. parents: ["eeveelution"]
  622. },
  623. "eeveelution": {
  624. name: "Eeveelution",
  625. parents: ["pokemon"]
  626. },
  627. "polar-bear": {
  628. name: "Polar Bear",
  629. parents: ["bear"]
  630. },
  631. "bear": {
  632. name: "Bear",
  633. parents: ["mammal"]
  634. },
  635. "absol": {
  636. name: "Absol",
  637. parents: ["pokemon"]
  638. },
  639. "wolver": {
  640. name: "Wolver",
  641. parents: ["mammal"]
  642. },
  643. "rottweiler": {
  644. name: "Rottweiler",
  645. parents: ["dog"]
  646. },
  647. "zebra": {
  648. name: "Zebra",
  649. parents: ["horse"]
  650. },
  651. "yoshi": {
  652. name: "Yoshi",
  653. parents: ["lizard"]
  654. },
  655. "lynx": {
  656. name: "Lynx",
  657. parents: ["cat"]
  658. },
  659. "unknown": {
  660. name: "Unknown",
  661. parents: []
  662. },
  663. "thylacine": {
  664. name: "Thylacine",
  665. parents: ["mammal"]
  666. },
  667. "gabumon": {
  668. name: "Gabumon",
  669. parents: ["digimon"]
  670. },
  671. "border-collie": {
  672. name: "Border Collie",
  673. parents: ["dog"]
  674. },
  675. "imp": {
  676. name: "Imp",
  677. parents: ["demon"]
  678. },
  679. "kangaroo": {
  680. name: "Kangaroo",
  681. parents: ["mammal"]
  682. },
  683. "renamon": {
  684. name: "Renamon",
  685. parents: ["digimon"]
  686. },
  687. "candy-orca-dragon": {
  688. name: "Candy Orca Dragon",
  689. parents: ["fish", "dragon"]
  690. },
  691. "sabertooth-tiger": {
  692. name: "Sabertooth Tiger",
  693. parents: ["cat"]
  694. },
  695. "espurr": {
  696. name: "Espurr",
  697. parents: ["pokemon"]
  698. },
  699. "otter": {
  700. name: "Otter",
  701. parents: ["mammal"]
  702. },
  703. "elemental": {
  704. name: "Elemental",
  705. parents: ["mammal"]
  706. },
  707. "mew": {
  708. name: "Mew",
  709. parents: ["pokemon"]
  710. },
  711. "goodra": {
  712. name: "Goodra",
  713. parents: ["pokemon"]
  714. },
  715. "fairy": {
  716. name: "Fairy",
  717. parents: ["magical"]
  718. },
  719. "typhlosion": {
  720. name: "Typhlosion",
  721. parents: ["pokemon"]
  722. },
  723. "magical": {
  724. name: "Magical",
  725. parents: []
  726. },
  727. "xenomorph": {
  728. name: "Xenomorph",
  729. parents: ["monster", "alien"]
  730. },
  731. "charr": {
  732. name: "Charr",
  733. parents: ["cat"]
  734. },
  735. "siberian-husky": {
  736. name: "Siberian Husky",
  737. parents: ["husky"]
  738. },
  739. "alligator": {
  740. name: "Alligator",
  741. parents: ["reptile"]
  742. },
  743. "bernese-mountain-dog": {
  744. name: "Bernese Mountain Dog",
  745. parents: ["dog"]
  746. },
  747. "reshiram": {
  748. name: "Reshiram",
  749. parents: ["pokemon"]
  750. },
  751. "grizzly-bear": {
  752. name: "Grizzly Bear",
  753. parents: ["bear"]
  754. },
  755. "water-monitor": {
  756. name: "Water Monitor",
  757. parents: ["lizard"]
  758. },
  759. "banchofossa": {
  760. name: "Banchofossa",
  761. parents: ["mammal"]
  762. },
  763. "kirin": {
  764. name: "Kirin",
  765. parents: ["monster"]
  766. },
  767. "quilava": {
  768. name: "Quilava",
  769. parents: ["pokemon"]
  770. },
  771. "seviper": {
  772. name: "Seviper",
  773. parents: ["pokemon"]
  774. },
  775. "flying-fox": {
  776. name: "Flying Fox",
  777. parents: ["bat"]
  778. },
  779. "keynain": {
  780. name: "Keynain",
  781. parents: ["avian"]
  782. },
  783. "lucario": {
  784. name: "Lucario",
  785. parents: ["pokemon"]
  786. },
  787. "siamese-cat": {
  788. name: "Siamese Cat",
  789. parents: ["cat"]
  790. },
  791. "spider": {
  792. name: "Spider",
  793. parents: ["insect"]
  794. },
  795. "samurott": {
  796. name: "Samurott",
  797. parents: ["pokemon"]
  798. },
  799. "megalodon": {
  800. name: "Megalodon",
  801. parents: ["shark"]
  802. },
  803. "unicorn": {
  804. name: "Unicorn",
  805. parents: ["horse"]
  806. },
  807. "greninja": {
  808. name: "Greninja",
  809. parents: ["pokemon"]
  810. },
  811. "water-dragon": {
  812. name: "Water Dragon",
  813. parents: ["dragon"]
  814. },
  815. "cross-fox": {
  816. name: "Cross Fox",
  817. parents: ["fox"]
  818. },
  819. "synth": {
  820. name: "Synth",
  821. parents: ["machine"]
  822. },
  823. "construct": {
  824. name: "Construct",
  825. parents: []
  826. },
  827. "mexican-wolf": {
  828. name: "Mexican Wolf",
  829. parents: ["wolf"]
  830. },
  831. "leopard": {
  832. name: "Leopard",
  833. parents: ["cat"]
  834. },
  835. "pig": {
  836. name: "Pig",
  837. parents: ["mammal"]
  838. },
  839. "ampharos": {
  840. name: "Ampharos",
  841. parents: ["pokemon"]
  842. },
  843. "orca": {
  844. name: "Orca",
  845. parents: ["fish"]
  846. },
  847. "lycanroc": {
  848. name: "Lycanroc",
  849. parents: ["pokemon"]
  850. },
  851. "surkanu": {
  852. name: "Surkanu",
  853. parents: ["monster"]
  854. },
  855. "seal": {
  856. name: "Seal",
  857. parents: ["mammal"]
  858. },
  859. "keldeo": {
  860. name: "Keldeo",
  861. parents: ["pokemon"]
  862. },
  863. "great-dane": {
  864. name: "Great Dane",
  865. parents: ["dog"]
  866. },
  867. "black-backed-jackal": {
  868. name: "Black Backed Jackal",
  869. parents: ["jackal"]
  870. },
  871. "sheep": {
  872. name: "Sheep",
  873. parents: ["mammal"]
  874. },
  875. "leopard-seal": {
  876. name: "Leopard Seal",
  877. parents: ["seal"]
  878. },
  879. "zoroark": {
  880. name: "Zoroark",
  881. parents: ["pokemon"]
  882. },
  883. "maned-wolf": {
  884. name: "Maned Wolf",
  885. parents: ["canine"]
  886. },
  887. "dracha": {
  888. name: "Dracha",
  889. parents: ["dragon"]
  890. },
  891. "wolxi": {
  892. name: "Wolxi",
  893. parents: ["mammal", "alien"]
  894. },
  895. "dratini": {
  896. name: "Dratini",
  897. parents: ["pokemon", "dragon"]
  898. },
  899. "skaven": {
  900. name: "Skaven",
  901. parents: ["rat"]
  902. },
  903. "mongoose": {
  904. name: "Mongoose",
  905. parents: ["mammal"]
  906. },
  907. "lopunny": {
  908. name: "Lopunny",
  909. parents: ["pokemon", "rabbit"]
  910. },
  911. "feraligatr": {
  912. name: "Feraligatr",
  913. parents: ["pokemon", "alligator"]
  914. },
  915. "houndoom": {
  916. name: "Houndoom",
  917. parents: ["pokemon", "dog"]
  918. },
  919. "protogen": {
  920. name: "Protogen",
  921. parents: ["machine"]
  922. },
  923. "saint-bernard": {
  924. name: "Saint Bernard",
  925. parents: ["dog"]
  926. },
  927. "crow": {
  928. name: "Crow",
  929. parents: ["corvid"]
  930. },
  931. "delphox": {
  932. name: "Delphox",
  933. parents: ["pokemon", "fox"]
  934. },
  935. "moose": {
  936. name: "Moose",
  937. parents: ["mammal"]
  938. },
  939. "joraxian": {
  940. name: "Joraxian",
  941. parents: ["monster", "canine", "demon"]
  942. },
  943. "nimbat": {
  944. name: "Nimbat",
  945. parents: ["mammal"]
  946. },
  947. "aardwolf": {
  948. name: "Aardwolf",
  949. parents: ["canine"]
  950. },
  951. "fluudrani": {
  952. name: "Fluudrani",
  953. parents: ["animal"]
  954. },
  955. "arcanine": {
  956. name: "Arcanine",
  957. parents: ["pokemon", "dog"]
  958. },
  959. "inteleon": {
  960. name: "Inteleon",
  961. parents: ["pokemon", "fish"]
  962. },
  963. "ninetales": {
  964. name: "Ninetales",
  965. parents: ["pokemon", "kitsune"]
  966. },
  967. "tigrex": {
  968. name: "Tigrex",
  969. parents: ["tiger"]
  970. },
  971. "zorua": {
  972. name: "Zorua",
  973. parents: ["pokemon", "fox"]
  974. },
  975. "vulpix": {
  976. name: "Vulpix",
  977. parents: ["pokemon", "fox"]
  978. },
  979. "barghest": {
  980. name: "Barghest",
  981. parents: ["monster"]
  982. },
  983. "gray-wolf": {
  984. name: "Gray Wolf",
  985. parents: ["wolf"]
  986. },
  987. "ruppells-fox": {
  988. name: "Rüppell's Fox",
  989. parents: ["fox"]
  990. },
  991. "bull-terrier": {
  992. name: "Bull Terrier",
  993. parents: ["dog"]
  994. },
  995. "european-honey-buzzard": {
  996. name: "European Honey Buzzard",
  997. parents: ["avian"]
  998. },
  999. "t-rex": {
  1000. name: "T Rex",
  1001. parents: ["dinosaur"]
  1002. },
  1003. "mactarian": {
  1004. name: "Mactarian",
  1005. parents: ["shark", "monster"]
  1006. },
  1007. "mewtwo-y": {
  1008. name: "Mewtwo Y",
  1009. parents: ["mewtwo"]
  1010. },
  1011. "mewtwo": {
  1012. name: "Mewtwo",
  1013. parents: ["pokemon"]
  1014. },
  1015. "mew": {
  1016. name: "Mew",
  1017. parents: ["pokemon"]
  1018. },
  1019. "eevee": {
  1020. name: "Eevee",
  1021. parents: ["eeveelution"]
  1022. },
  1023. "mienshao": {
  1024. name: "Mienshao",
  1025. parents: ["pokemon"]
  1026. },
  1027. "sugar-glider": {
  1028. name: "Sugar Glider",
  1029. parents: ["opossum"]
  1030. },
  1031. "spectral-bat": {
  1032. name: "Spectral Bat",
  1033. parents: ["bat"]
  1034. },
  1035. "scolipede": {
  1036. name: "Scolipede",
  1037. parents: ["pokemon", "insect"]
  1038. },
  1039. "jackalope": {
  1040. name: "Jackalope",
  1041. parents: ["rabbit", "antelope"]
  1042. },
  1043. "caracal": {
  1044. name: "Caracal",
  1045. parents: ["cat"]
  1046. },
  1047. "stoat": {
  1048. name: "Stoat",
  1049. parents: ["mammal"]
  1050. },
  1051. "african-golden-cat": {
  1052. name: "African Golden Cat",
  1053. parents: ["cat"]
  1054. },
  1055. "gigantosaurus": {
  1056. name: "Gigantosaurus",
  1057. parents: ["dinosaur"]
  1058. },
  1059. "zorgoia": {
  1060. name: "Zorgoia",
  1061. parents: ["mammal"]
  1062. },
  1063. "monitor-lizard": {
  1064. name: "Monitor Lizard",
  1065. parents: ["lizard"]
  1066. },
  1067. "ziralkia": {
  1068. name: "Ziralkia",
  1069. parents: ["mammal"]
  1070. },
  1071. "kiiasi": {
  1072. name: "Kiiasi",
  1073. parents: ["animal"]
  1074. },
  1075. "synx": {
  1076. name: "Synx",
  1077. parents: ["monster"]
  1078. },
  1079. "panther": {
  1080. name: "Panther",
  1081. parents: ["cat"]
  1082. },
  1083. "azumarill": {
  1084. name: "Azumarill",
  1085. parents: ["pokemon"]
  1086. },
  1087. "river-snaptail": {
  1088. name: "River Snaptail",
  1089. parents: ["otter", "crocodile"]
  1090. },
  1091. "great-blue-heron": {
  1092. name: "Great Blue Heron",
  1093. parents: ["avian"]
  1094. },
  1095. "smeargle": {
  1096. name: "Smeargle",
  1097. parents: ["pokemon"]
  1098. },
  1099. "vendeilen": {
  1100. name: "Vendeilen",
  1101. parents: ["monster"]
  1102. },
  1103. "ventura": {
  1104. name: "Ventura",
  1105. parents: ["canine"]
  1106. },
  1107. "clouded-leopard": {
  1108. name: "Clouded Leopard",
  1109. parents: ["leopard"]
  1110. },
  1111. "argonian": {
  1112. name: "Argonian",
  1113. parents: ["lizard"]
  1114. },
  1115. "salazzle": {
  1116. name: "Salazzle",
  1117. parents: ["pokemon", "lizard"]
  1118. },
  1119. "je-stoff-drachen": {
  1120. name: "Je-Stoff Drachen",
  1121. parents: ["dragon"]
  1122. },
  1123. "finnish-spitz-dog": {
  1124. name: "Finnish Spitz Dog",
  1125. parents: ["dog"]
  1126. },
  1127. "gray-fox": {
  1128. name: "Gray Fox",
  1129. parents: ["fox"]
  1130. },
  1131. "opossum": {
  1132. name: "opossum",
  1133. parents: ["mammal"]
  1134. },
  1135. "antelope": {
  1136. name: "Antelope",
  1137. parents: ["mammal"]
  1138. },
  1139. "weavile": {
  1140. name: "Weavile",
  1141. parents: ["pokemon"]
  1142. },
  1143. "pikachu": {
  1144. name: "Pikachu",
  1145. parents: ["pokemon", "mouse"]
  1146. },
  1147. "grovyle": {
  1148. name: "Grovyle",
  1149. parents: ["pokemon", "plant"]
  1150. },
  1151. "sthara": {
  1152. name: "Sthara",
  1153. parents: ["snow-leopard", "reptile"]
  1154. },
  1155. "star-warrior": {
  1156. name: "Star Warrior",
  1157. parents: ["magical"]
  1158. },
  1159. "dragonoid": {
  1160. name: "Dragonoid",
  1161. parents: ["dragon"]
  1162. },
  1163. "suicune": {
  1164. name: "Suicune",
  1165. parents: ["pokemon"]
  1166. },
  1167. "vole": {
  1168. name: "Vole",
  1169. parents: ["mammal"]
  1170. },
  1171. "blaziken": {
  1172. name: "Blaziken",
  1173. parents: ["pokemon", "avian"]
  1174. },
  1175. "buizel": {
  1176. name: "Buizel",
  1177. parents: ["pokemon", "fish"]
  1178. },
  1179. "floatzel": {
  1180. name: "Floatzel",
  1181. parents: ["pokemon", "fish"]
  1182. },
  1183. "umok": {
  1184. name: "Umok",
  1185. parents: ["avian"]
  1186. },
  1187. "sea-monster": {
  1188. name: "Sea Monster",
  1189. parents: ["monster", "fish"]
  1190. },
  1191. "egyptian-vulture": {
  1192. name: "Egyptian Vulture",
  1193. parents: ["avian"]
  1194. },
  1195. "doberman": {
  1196. name: "Doberman",
  1197. parents: ["dog"]
  1198. },
  1199. "zangoose": {
  1200. name: "Zangoose",
  1201. parents: ["pokemon", "mongoose"]
  1202. },
  1203. "mongoose": {
  1204. name: "Mongoose",
  1205. parents: ["mammal"]
  1206. },
  1207. "wickerbeast": {
  1208. name: "Wickerbeast",
  1209. parents: ["monster"]
  1210. },
  1211. "zenari": {
  1212. name: "Zenari",
  1213. parents: ["lizard"]
  1214. },
  1215. "plant": {
  1216. name: "Plant",
  1217. parents: []
  1218. },
  1219. "raskatox": {
  1220. name: "Raskatox",
  1221. parents: ["raccoon", "skunk", "cat", "fox"]
  1222. },
  1223. "mikromare": {
  1224. name: "mikromare",
  1225. parents: ["alien"]
  1226. },
  1227. "alien": {
  1228. name: "Alien",
  1229. parents: ["animal"]
  1230. },
  1231. "deity": {
  1232. name: "Deity",
  1233. parents: []
  1234. },
  1235. "skarlan": {
  1236. name: "Skarlan",
  1237. parents: ["slug", "dragon"]
  1238. },
  1239. "slug": {
  1240. name: "Slug",
  1241. parents: ["mollusk"]
  1242. },
  1243. "mollusk": {
  1244. name: "Mollusk",
  1245. parents: ["animal"]
  1246. },
  1247. "chimera": {
  1248. name: "Chimera",
  1249. parents: ["monster"]
  1250. },
  1251. "gestalt": {
  1252. name: "Gestalt",
  1253. parents: ["construct"]
  1254. },
  1255. "mimic": {
  1256. name: "Mimic",
  1257. parents: ["monster"]
  1258. },
  1259. "calico-rat": {
  1260. name: "Calico Rat",
  1261. parents: ["rat"]
  1262. },
  1263. "panda": {
  1264. name: "Panda",
  1265. parents: ["mammal"]
  1266. },
  1267. "oni": {
  1268. name: "Oni",
  1269. parents: ["monster"]
  1270. },
  1271. "pegasus": {
  1272. name: "Pegasus",
  1273. parents: ["horse"]
  1274. },
  1275. "vulpera": {
  1276. name: "Vulpera",
  1277. parents: ["fennec-fox"]
  1278. },
  1279. "ceratosaurus": {
  1280. name: "Ceratosaurus",
  1281. parents: ["dinosaur"]
  1282. },
  1283. "nykur": {
  1284. name: "Nykur",
  1285. parents: ["horse", "monster"]
  1286. },
  1287. "giraffe": {
  1288. name: "Giraffe",
  1289. parents: ["mammal"]
  1290. },
  1291. "tauren": {
  1292. name: "Tauren",
  1293. parents: ["cow"]
  1294. },
  1295. "draconi": {
  1296. name: "Draconi",
  1297. parents: ["alien", "cat", "cyborg"]
  1298. },
  1299. "dire-wolf": {
  1300. name: "Dire Wolf",
  1301. parents: ["wolf"]
  1302. },
  1303. "ferromorph": {
  1304. name: "Ferromorph",
  1305. parents: ["construct"]
  1306. },
  1307. }
  1308. //species
  1309. function getSpeciesInfo(speciesList) {
  1310. let result = new Set();
  1311. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1312. result.add(entry)
  1313. });
  1314. return Array.from(result);
  1315. };
  1316. function getSpeciesInfoHelper(species) {
  1317. if (!speciesData[species]) {
  1318. console.warn(species + " doesn't exist");
  1319. return [];
  1320. }
  1321. if (speciesData[species].parents) {
  1322. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1323. } else {
  1324. return [species];
  1325. }
  1326. }
  1327. characterMakers.push(() => makeCharacter(
  1328. {
  1329. name: "Fen",
  1330. species: ["crux"],
  1331. description: {
  1332. title: "Bio",
  1333. text: "Very furry. Sheds on everything."
  1334. },
  1335. tags: [
  1336. "anthro",
  1337. "goo"
  1338. ]
  1339. },
  1340. {
  1341. back: {
  1342. height: math.unit(2.2428, "meter"),
  1343. weight: math.unit(124.738, "kg"),
  1344. name: "Back",
  1345. image: {
  1346. source: "./media/characters/fen/back.svg",
  1347. extra: 1025 / 935,
  1348. bottom: 0.01
  1349. },
  1350. info: {
  1351. description: {
  1352. mode: "append",
  1353. text: "\n\nHe is not currently looking at you."
  1354. }
  1355. }
  1356. },
  1357. full: {
  1358. height: math.unit(1.34, "meter"),
  1359. weight: math.unit(225, "kg"),
  1360. name: "Full",
  1361. image: {
  1362. source: "./media/characters/fen/full.svg"
  1363. },
  1364. info: {
  1365. description: {
  1366. mode: "append",
  1367. text: "\n\nMunch."
  1368. }
  1369. }
  1370. },
  1371. kneeling: {
  1372. height: math.unit(5.4, "feet"),
  1373. weight: math.unit(124.738, "kg"),
  1374. name: "Kneeling",
  1375. image: {
  1376. source: "./media/characters/fen/kneeling.svg",
  1377. extra: 563 / 507
  1378. }
  1379. },
  1380. goo: {
  1381. height: math.unit(2.8, "feet"),
  1382. weight: math.unit(125, "kg"),
  1383. capacity: math.unit(1, "people"),
  1384. name: "Goo",
  1385. image: {
  1386. source: "./media/characters/fen/goo.svg",
  1387. bottom: 116 / 613
  1388. }
  1389. },
  1390. lounging: {
  1391. height: math.unit(6.5, "feet"),
  1392. weight: math.unit(125, "kg"),
  1393. name: "Lounging",
  1394. image: {
  1395. source: "./media/characters/fen/lounging.svg"
  1396. }
  1397. },
  1398. },
  1399. [
  1400. {
  1401. name: "Normal",
  1402. height: math.unit(2.2428, "meter")
  1403. },
  1404. {
  1405. name: "Big",
  1406. height: math.unit(12, "feet")
  1407. },
  1408. {
  1409. name: "Minimacro",
  1410. height: math.unit(40, "feet"),
  1411. default: true,
  1412. info: {
  1413. description: {
  1414. mode: "append",
  1415. text: "\n\nTOO DAMN BIG"
  1416. }
  1417. }
  1418. },
  1419. {
  1420. name: "Macro",
  1421. height: math.unit(100, "feet"),
  1422. info: {
  1423. description: {
  1424. mode: "append",
  1425. text: "\n\nTOO DAMN BIG"
  1426. }
  1427. }
  1428. },
  1429. {
  1430. name: "Macro+",
  1431. height: math.unit(300, "feet")
  1432. },
  1433. {
  1434. name: "Megamacro",
  1435. height: math.unit(2, "miles")
  1436. }
  1437. ]
  1438. ))
  1439. characterMakers.push(() => makeCharacter(
  1440. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1441. {
  1442. front: {
  1443. height: math.unit(183, "cm"),
  1444. weight: math.unit(80, "kg"),
  1445. name: "Front",
  1446. image: {
  1447. source: "./media/characters/sofia-fluttertail/front.svg",
  1448. bottom: 0.01,
  1449. extra: 2154 / 2081
  1450. }
  1451. },
  1452. frontAlt: {
  1453. height: math.unit(183, "cm"),
  1454. weight: math.unit(80, "kg"),
  1455. name: "Front (alt)",
  1456. image: {
  1457. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1458. }
  1459. },
  1460. back: {
  1461. height: math.unit(183, "cm"),
  1462. weight: math.unit(80, "kg"),
  1463. name: "Back",
  1464. image: {
  1465. source: "./media/characters/sofia-fluttertail/back.svg"
  1466. }
  1467. },
  1468. kneeling: {
  1469. height: math.unit(125, "cm"),
  1470. weight: math.unit(80, "kg"),
  1471. name: "Kneeling",
  1472. image: {
  1473. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1474. extra: 1033 / 977,
  1475. bottom: 23.7 / 1057
  1476. }
  1477. },
  1478. maw: {
  1479. height: math.unit(183 / 5, "cm"),
  1480. name: "Maw",
  1481. image: {
  1482. source: "./media/characters/sofia-fluttertail/maw.svg"
  1483. }
  1484. },
  1485. mawcloseup: {
  1486. height: math.unit(183 / 5 * 0.41, "cm"),
  1487. name: "Maw (Closeup)",
  1488. image: {
  1489. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1490. }
  1491. },
  1492. },
  1493. [
  1494. {
  1495. name: "Normal",
  1496. height: math.unit(1.83, "meter")
  1497. },
  1498. {
  1499. name: "Size Thief",
  1500. height: math.unit(18, "feet")
  1501. },
  1502. {
  1503. name: "50 Foot Collie",
  1504. height: math.unit(50, "feet")
  1505. },
  1506. {
  1507. name: "Macro",
  1508. height: math.unit(96, "feet"),
  1509. default: true
  1510. },
  1511. {
  1512. name: "Megamerger",
  1513. height: math.unit(650, "feet")
  1514. },
  1515. ]
  1516. ))
  1517. characterMakers.push(() => makeCharacter(
  1518. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1519. {
  1520. front: {
  1521. height: math.unit(7, "feet"),
  1522. weight: math.unit(100, "kg"),
  1523. name: "Front",
  1524. image: {
  1525. source: "./media/characters/march/front.svg",
  1526. extra: 1,
  1527. bottom: 0.015
  1528. }
  1529. },
  1530. foot: {
  1531. height: math.unit(0.9, "feet"),
  1532. name: "Foot",
  1533. image: {
  1534. source: "./media/characters/march/foot.svg"
  1535. }
  1536. },
  1537. },
  1538. [
  1539. {
  1540. name: "Normal",
  1541. height: math.unit(7.9, "feet")
  1542. },
  1543. {
  1544. name: "Macro",
  1545. height: math.unit(220, "meters")
  1546. },
  1547. {
  1548. name: "Megamacro",
  1549. height: math.unit(2.98, "km"),
  1550. default: true
  1551. },
  1552. {
  1553. name: "Gigamacro",
  1554. height: math.unit(15963, "km")
  1555. },
  1556. {
  1557. name: "Teramacro",
  1558. height: math.unit(2980000000, "km")
  1559. },
  1560. {
  1561. name: "Examacro",
  1562. height: math.unit(250, "parsecs")
  1563. },
  1564. ]
  1565. ))
  1566. characterMakers.push(() => makeCharacter(
  1567. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1568. {
  1569. front: {
  1570. height: math.unit(6, "feet"),
  1571. weight: math.unit(60, "kg"),
  1572. name: "Front",
  1573. image: {
  1574. source: "./media/characters/noir/front.svg",
  1575. extra: 1,
  1576. bottom: 0.032
  1577. }
  1578. },
  1579. },
  1580. [
  1581. {
  1582. name: "Normal",
  1583. height: math.unit(6.6, "feet")
  1584. },
  1585. {
  1586. name: "Macro",
  1587. height: math.unit(500, "feet")
  1588. },
  1589. {
  1590. name: "Megamacro",
  1591. height: math.unit(2.5, "km"),
  1592. default: true
  1593. },
  1594. {
  1595. name: "Gigamacro",
  1596. height: math.unit(22500, "km")
  1597. },
  1598. {
  1599. name: "Teramacro",
  1600. height: math.unit(2500000000, "km")
  1601. },
  1602. {
  1603. name: "Examacro",
  1604. height: math.unit(200, "parsecs")
  1605. },
  1606. ]
  1607. ))
  1608. characterMakers.push(() => makeCharacter(
  1609. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1610. {
  1611. front: {
  1612. height: math.unit(7, "feet"),
  1613. weight: math.unit(100, "kg"),
  1614. name: "Front",
  1615. image: {
  1616. source: "./media/characters/okuri/front.svg",
  1617. extra: 1,
  1618. bottom: 0.037
  1619. }
  1620. },
  1621. back: {
  1622. height: math.unit(7, "feet"),
  1623. weight: math.unit(100, "kg"),
  1624. name: "Back",
  1625. image: {
  1626. source: "./media/characters/okuri/back.svg",
  1627. extra: 1,
  1628. bottom: 0.007
  1629. }
  1630. },
  1631. },
  1632. [
  1633. {
  1634. name: "Megamacro",
  1635. height: math.unit(100, "miles"),
  1636. default: true
  1637. },
  1638. ]
  1639. ))
  1640. characterMakers.push(() => makeCharacter(
  1641. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1642. {
  1643. front: {
  1644. height: math.unit(7, "feet"),
  1645. weight: math.unit(100, "kg"),
  1646. name: "Front",
  1647. image: {
  1648. source: "./media/characters/manny/front.svg",
  1649. extra: 1,
  1650. bottom: 0.06
  1651. }
  1652. },
  1653. back: {
  1654. height: math.unit(7, "feet"),
  1655. weight: math.unit(100, "kg"),
  1656. name: "Back",
  1657. image: {
  1658. source: "./media/characters/manny/back.svg",
  1659. extra: 1,
  1660. bottom: 0.014
  1661. }
  1662. },
  1663. },
  1664. [
  1665. {
  1666. name: "Normal",
  1667. height: math.unit(7, "feet"),
  1668. },
  1669. {
  1670. name: "Macro",
  1671. height: math.unit(78, "feet"),
  1672. default: true
  1673. },
  1674. {
  1675. name: "Macro+",
  1676. height: math.unit(300, "meters")
  1677. },
  1678. {
  1679. name: "Macro++",
  1680. height: math.unit(2400, "meters")
  1681. },
  1682. {
  1683. name: "Megamacro",
  1684. height: math.unit(5167, "meters")
  1685. },
  1686. {
  1687. name: "Gigamacro",
  1688. height: math.unit(41769, "miles")
  1689. },
  1690. ]
  1691. ))
  1692. characterMakers.push(() => makeCharacter(
  1693. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1694. {
  1695. front: {
  1696. height: math.unit(7, "feet"),
  1697. weight: math.unit(100, "kg"),
  1698. name: "Front",
  1699. image: {
  1700. source: "./media/characters/adake/front-1.svg"
  1701. }
  1702. },
  1703. frontAlt: {
  1704. height: math.unit(7, "feet"),
  1705. weight: math.unit(100, "kg"),
  1706. name: "Front (Alt)",
  1707. image: {
  1708. source: "./media/characters/adake/front-2.svg",
  1709. extra: 1,
  1710. bottom: 0.01
  1711. }
  1712. },
  1713. back: {
  1714. height: math.unit(7, "feet"),
  1715. weight: math.unit(100, "kg"),
  1716. name: "Back",
  1717. image: {
  1718. source: "./media/characters/adake/back.svg",
  1719. }
  1720. },
  1721. kneel: {
  1722. height: math.unit(5.385, "feet"),
  1723. weight: math.unit(100, "kg"),
  1724. name: "Kneeling",
  1725. image: {
  1726. source: "./media/characters/adake/kneel.svg",
  1727. bottom: 0.052
  1728. }
  1729. },
  1730. },
  1731. [
  1732. {
  1733. name: "Normal",
  1734. height: math.unit(7, "feet"),
  1735. },
  1736. {
  1737. name: "Macro",
  1738. height: math.unit(78, "feet"),
  1739. default: true
  1740. },
  1741. {
  1742. name: "Macro+",
  1743. height: math.unit(300, "meters")
  1744. },
  1745. {
  1746. name: "Macro++",
  1747. height: math.unit(2400, "meters")
  1748. },
  1749. {
  1750. name: "Megamacro",
  1751. height: math.unit(5167, "meters")
  1752. },
  1753. {
  1754. name: "Gigamacro",
  1755. height: math.unit(41769, "miles")
  1756. },
  1757. ]
  1758. ))
  1759. characterMakers.push(() => makeCharacter(
  1760. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1761. {
  1762. front: {
  1763. height: math.unit(1.65, "meters"),
  1764. weight: math.unit(50, "kg"),
  1765. name: "Front",
  1766. image: {
  1767. source: "./media/characters/elijah/front.svg",
  1768. extra: 858 / 830,
  1769. bottom: 95.5 / 953.8559
  1770. }
  1771. },
  1772. back: {
  1773. height: math.unit(1.65, "meters"),
  1774. weight: math.unit(50, "kg"),
  1775. name: "Back",
  1776. image: {
  1777. source: "./media/characters/elijah/back.svg",
  1778. extra: 895 / 850,
  1779. bottom: 5.3 / 897.956
  1780. }
  1781. },
  1782. frontNsfw: {
  1783. height: math.unit(1.65, "meters"),
  1784. weight: math.unit(50, "kg"),
  1785. name: "Front (NSFW)",
  1786. image: {
  1787. source: "./media/characters/elijah/front-nsfw.svg",
  1788. extra: 858 / 830,
  1789. bottom: 95.5 / 953.8559
  1790. }
  1791. },
  1792. backNsfw: {
  1793. height: math.unit(1.65, "meters"),
  1794. weight: math.unit(50, "kg"),
  1795. name: "Back (NSFW)",
  1796. image: {
  1797. source: "./media/characters/elijah/back-nsfw.svg",
  1798. extra: 895 / 850,
  1799. bottom: 5.3 / 897.956
  1800. }
  1801. },
  1802. dick: {
  1803. height: math.unit(1, "feet"),
  1804. name: "Dick",
  1805. image: {
  1806. source: "./media/characters/elijah/dick.svg"
  1807. }
  1808. },
  1809. beakOpen: {
  1810. height: math.unit(1.25, "feet"),
  1811. name: "Beak (Open)",
  1812. image: {
  1813. source: "./media/characters/elijah/beak-open.svg"
  1814. }
  1815. },
  1816. beakShut: {
  1817. height: math.unit(1.25, "feet"),
  1818. name: "Beak (Shut)",
  1819. image: {
  1820. source: "./media/characters/elijah/beak-shut.svg"
  1821. }
  1822. },
  1823. footFlexing: {
  1824. height: math.unit(1.61, "feet"),
  1825. name: "Foot (Flexing)",
  1826. image: {
  1827. source: "./media/characters/elijah/foot-flexing.svg"
  1828. }
  1829. },
  1830. footStepping: {
  1831. height: math.unit(1.44, "feet"),
  1832. name: "Foot (Stepping)",
  1833. image: {
  1834. source: "./media/characters/elijah/foot-stepping.svg"
  1835. }
  1836. },
  1837. plantigradeLeg: {
  1838. height: math.unit(2.34, "feet"),
  1839. name: "Plantigrade Leg",
  1840. image: {
  1841. source: "./media/characters/elijah/plantigrade-leg.svg"
  1842. }
  1843. },
  1844. plantigradeFootLeft: {
  1845. height: math.unit(0.9, "feet"),
  1846. name: "Plantigrade Foot (Left)",
  1847. image: {
  1848. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1849. }
  1850. },
  1851. plantigradeFootRight: {
  1852. height: math.unit(0.9, "feet"),
  1853. name: "Plantigrade Foot (Right)",
  1854. image: {
  1855. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1856. }
  1857. },
  1858. },
  1859. [
  1860. {
  1861. name: "Normal",
  1862. height: math.unit(1.65, "meters")
  1863. },
  1864. {
  1865. name: "Macro",
  1866. height: math.unit(55, "meters"),
  1867. default: true
  1868. },
  1869. {
  1870. name: "Macro+",
  1871. height: math.unit(105, "meters")
  1872. },
  1873. ]
  1874. ))
  1875. characterMakers.push(() => makeCharacter(
  1876. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1877. {
  1878. front: {
  1879. height: math.unit(11, "feet"),
  1880. weight: math.unit(80, "kg"),
  1881. name: "Front",
  1882. image: {
  1883. source: "./media/characters/rai/front.svg",
  1884. extra: 1,
  1885. bottom: 0.03
  1886. }
  1887. },
  1888. side: {
  1889. height: math.unit(11, "feet"),
  1890. weight: math.unit(80, "kg"),
  1891. name: "Side",
  1892. image: {
  1893. source: "./media/characters/rai/side.svg"
  1894. }
  1895. },
  1896. back: {
  1897. height: math.unit(11, "feet"),
  1898. weight: math.unit(80, "lb"),
  1899. name: "Back",
  1900. image: {
  1901. source: "./media/characters/rai/back.svg",
  1902. extra: 1,
  1903. bottom: 0.01
  1904. }
  1905. },
  1906. feral: {
  1907. height: math.unit(11, "feet"),
  1908. weight: math.unit(800, "lb"),
  1909. name: "Feral",
  1910. image: {
  1911. source: "./media/characters/rai/feral.svg",
  1912. extra: 1050 / 659,
  1913. bottom: 0.07
  1914. }
  1915. },
  1916. dragon: {
  1917. height: math.unit(23, "feet"),
  1918. weight: math.unit(50000, "lb"),
  1919. name: "Dragon",
  1920. image: {
  1921. source: "./media/characters/rai/dragon.svg",
  1922. extra: 2498 / 2030,
  1923. bottom: 85.2 / 2584
  1924. }
  1925. },
  1926. maw: {
  1927. height: math.unit(6 / 3.81416, "feet"),
  1928. name: "Maw",
  1929. image: {
  1930. source: "./media/characters/rai/maw.svg"
  1931. }
  1932. },
  1933. },
  1934. [
  1935. {
  1936. name: "Normal",
  1937. height: math.unit(11, "feet")
  1938. },
  1939. {
  1940. name: "Macro",
  1941. height: math.unit(302, "feet"),
  1942. default: true
  1943. },
  1944. ]
  1945. ))
  1946. characterMakers.push(() => makeCharacter(
  1947. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  1948. {
  1949. frontDressed: {
  1950. height: math.unit(216, "feet"),
  1951. weight: math.unit(7000000, "lb"),
  1952. name: "Front (Dressed)",
  1953. image: {
  1954. source: "./media/characters/jazzy/front-dressed.svg",
  1955. extra: 2738 / 2651,
  1956. bottom: 41.8 / 2786
  1957. }
  1958. },
  1959. backDressed: {
  1960. height: math.unit(216, "feet"),
  1961. weight: math.unit(7000000, "lb"),
  1962. name: "Back (Dressed)",
  1963. image: {
  1964. source: "./media/characters/jazzy/back-dressed.svg",
  1965. extra: 2775 / 2673,
  1966. bottom: 36.8 / 2817
  1967. }
  1968. },
  1969. front: {
  1970. height: math.unit(216, "feet"),
  1971. weight: math.unit(7000000, "lb"),
  1972. name: "Front",
  1973. image: {
  1974. source: "./media/characters/jazzy/front.svg",
  1975. extra: 2738 / 2651,
  1976. bottom: 41.8 / 2786
  1977. }
  1978. },
  1979. back: {
  1980. height: math.unit(216, "feet"),
  1981. weight: math.unit(7000000, "lb"),
  1982. name: "Back",
  1983. image: {
  1984. source: "./media/characters/jazzy/back.svg",
  1985. extra: 2775 / 2673,
  1986. bottom: 36.8 / 2817
  1987. }
  1988. },
  1989. maw: {
  1990. height: math.unit(20, "feet"),
  1991. name: "Maw",
  1992. image: {
  1993. source: "./media/characters/jazzy/maw.svg"
  1994. }
  1995. },
  1996. paws: {
  1997. height: math.unit(27.5, "feet"),
  1998. name: "Paws",
  1999. image: {
  2000. source: "./media/characters/jazzy/paws.svg"
  2001. }
  2002. },
  2003. eye: {
  2004. height: math.unit(4.4, "feet"),
  2005. name: "Eye",
  2006. image: {
  2007. source: "./media/characters/jazzy/eye.svg"
  2008. }
  2009. },
  2010. droneOffense: {
  2011. height: math.unit(9.5, "inches"),
  2012. name: "Drone (Offense)",
  2013. image: {
  2014. source: "./media/characters/jazzy/drone-offense.svg"
  2015. }
  2016. },
  2017. droneRecon: {
  2018. height: math.unit(9.5, "inches"),
  2019. name: "Drone (Recon)",
  2020. image: {
  2021. source: "./media/characters/jazzy/drone-recon.svg"
  2022. }
  2023. },
  2024. droneDefense: {
  2025. height: math.unit(9.5, "inches"),
  2026. name: "Drone (Defense)",
  2027. image: {
  2028. source: "./media/characters/jazzy/drone-defense.svg"
  2029. }
  2030. },
  2031. },
  2032. [
  2033. {
  2034. name: "Macro",
  2035. height: math.unit(216, "feet"),
  2036. default: true
  2037. },
  2038. ]
  2039. ))
  2040. characterMakers.push(() => makeCharacter(
  2041. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2042. {
  2043. front: {
  2044. height: math.unit(7, "feet"),
  2045. weight: math.unit(80, "kg"),
  2046. name: "Front",
  2047. image: {
  2048. source: "./media/characters/flamm/front.svg",
  2049. extra: 1794 / 1677,
  2050. bottom: 31.7 / 1828.5
  2051. }
  2052. },
  2053. },
  2054. [
  2055. {
  2056. name: "Normal",
  2057. height: math.unit(9.5, "feet")
  2058. },
  2059. {
  2060. name: "Macro",
  2061. height: math.unit(200, "feet"),
  2062. default: true
  2063. },
  2064. ]
  2065. ))
  2066. characterMakers.push(() => makeCharacter(
  2067. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2068. {
  2069. front: {
  2070. height: math.unit(7, "feet"),
  2071. weight: math.unit(80, "kg"),
  2072. name: "Front",
  2073. image: {
  2074. source: "./media/characters/zephiro/front.svg",
  2075. extra: 2309 / 2162,
  2076. bottom: 0.069
  2077. }
  2078. },
  2079. side: {
  2080. height: math.unit(7, "feet"),
  2081. weight: math.unit(80, "kg"),
  2082. name: "Side",
  2083. image: {
  2084. source: "./media/characters/zephiro/side.svg",
  2085. extra: 2403 / 2279,
  2086. bottom: 0.015
  2087. }
  2088. },
  2089. back: {
  2090. height: math.unit(7, "feet"),
  2091. weight: math.unit(80, "kg"),
  2092. name: "Back",
  2093. image: {
  2094. source: "./media/characters/zephiro/back.svg",
  2095. extra: 2373 / 2244,
  2096. bottom: 0.013
  2097. }
  2098. },
  2099. },
  2100. [
  2101. {
  2102. name: "Micro",
  2103. height: math.unit(3, "inches")
  2104. },
  2105. {
  2106. name: "Normal",
  2107. height: math.unit(5 + 3 / 12, "feet"),
  2108. default: true
  2109. },
  2110. {
  2111. name: "Macro",
  2112. height: math.unit(118, "feet")
  2113. },
  2114. ]
  2115. ))
  2116. characterMakers.push(() => makeCharacter(
  2117. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2118. {
  2119. front: {
  2120. height: math.unit(5, "feet"),
  2121. weight: math.unit(90, "kg"),
  2122. name: "Front",
  2123. image: {
  2124. source: "./media/characters/fory/front.svg",
  2125. extra: 2862 / 2674,
  2126. bottom: 180 / 3043.8
  2127. }
  2128. },
  2129. back: {
  2130. height: math.unit(5, "feet"),
  2131. weight: math.unit(90, "kg"),
  2132. name: "Back",
  2133. image: {
  2134. source: "./media/characters/fory/back.svg",
  2135. extra: 2962 / 2791,
  2136. bottom: 106 / 3071.8
  2137. }
  2138. },
  2139. foot: {
  2140. height: math.unit(2.14, "feet"),
  2141. name: "Foot",
  2142. image: {
  2143. source: "./media/characters/fory/foot.svg"
  2144. }
  2145. },
  2146. },
  2147. [
  2148. {
  2149. name: "Normal",
  2150. height: math.unit(5, "feet")
  2151. },
  2152. {
  2153. name: "Macro",
  2154. height: math.unit(50, "feet"),
  2155. default: true
  2156. },
  2157. {
  2158. name: "Megamacro",
  2159. height: math.unit(10, "miles")
  2160. },
  2161. {
  2162. name: "Gigamacro",
  2163. height: math.unit(5, "earths")
  2164. },
  2165. ]
  2166. ))
  2167. characterMakers.push(() => makeCharacter(
  2168. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2169. {
  2170. front: {
  2171. height: math.unit(7, "feet"),
  2172. weight: math.unit(90, "kg"),
  2173. name: "Front",
  2174. image: {
  2175. source: "./media/characters/kurrikage/front.svg",
  2176. extra: 1,
  2177. bottom: 0.035
  2178. }
  2179. },
  2180. back: {
  2181. height: math.unit(7, "feet"),
  2182. weight: math.unit(90, "lb"),
  2183. name: "Back",
  2184. image: {
  2185. source: "./media/characters/kurrikage/back.svg"
  2186. }
  2187. },
  2188. paw: {
  2189. height: math.unit(1.5, "feet"),
  2190. name: "Paw",
  2191. image: {
  2192. source: "./media/characters/kurrikage/paw.svg"
  2193. }
  2194. },
  2195. staff: {
  2196. height: math.unit(6.7, "feet"),
  2197. name: "Staff",
  2198. image: {
  2199. source: "./media/characters/kurrikage/staff.svg"
  2200. }
  2201. },
  2202. peek: {
  2203. height: math.unit(1.05, "feet"),
  2204. name: "Peeking",
  2205. image: {
  2206. source: "./media/characters/kurrikage/peek.svg",
  2207. bottom: 0.08
  2208. }
  2209. },
  2210. },
  2211. [
  2212. {
  2213. name: "Normal",
  2214. height: math.unit(12, "feet"),
  2215. default: true
  2216. },
  2217. {
  2218. name: "Big",
  2219. height: math.unit(20, "feet")
  2220. },
  2221. {
  2222. name: "Macro",
  2223. height: math.unit(500, "feet")
  2224. },
  2225. {
  2226. name: "Megamacro",
  2227. height: math.unit(20, "miles")
  2228. },
  2229. ]
  2230. ))
  2231. characterMakers.push(() => makeCharacter(
  2232. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2233. {
  2234. front: {
  2235. height: math.unit(6, "feet"),
  2236. weight: math.unit(75, "kg"),
  2237. name: "Front",
  2238. image: {
  2239. source: "./media/characters/shingo/front.svg",
  2240. extra: 3511 / 3338,
  2241. bottom: 0.005
  2242. }
  2243. },
  2244. paw: {
  2245. height: math.unit(1, "feet"),
  2246. name: "Paw",
  2247. image: {
  2248. source: "./media/characters/shingo/paw.svg"
  2249. }
  2250. },
  2251. },
  2252. [
  2253. {
  2254. name: "Micro",
  2255. height: math.unit(4, "inches")
  2256. },
  2257. {
  2258. name: "Normal",
  2259. height: math.unit(6, "feet"),
  2260. default: true
  2261. },
  2262. {
  2263. name: "Macro",
  2264. height: math.unit(108, "feet")
  2265. }
  2266. ]
  2267. ))
  2268. characterMakers.push(() => makeCharacter(
  2269. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2270. {
  2271. side: {
  2272. height: math.unit(6, "feet"),
  2273. weight: math.unit(75, "kg"),
  2274. name: "Side",
  2275. image: {
  2276. source: "./media/characters/aigey/side.svg"
  2277. }
  2278. },
  2279. },
  2280. [
  2281. {
  2282. name: "Macro",
  2283. height: math.unit(200, "feet"),
  2284. default: true
  2285. },
  2286. {
  2287. name: "Megamacro",
  2288. height: math.unit(100, "miles")
  2289. },
  2290. ]
  2291. )
  2292. )
  2293. characterMakers.push(() => makeCharacter(
  2294. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2295. {
  2296. front: {
  2297. height: math.unit(5 + 5 / 12, "feet"),
  2298. weight: math.unit(75, "kg"),
  2299. name: "Front",
  2300. image: {
  2301. source: "./media/characters/natasha/front.svg",
  2302. extra: 859 / 824,
  2303. bottom: 23 / 879.6
  2304. }
  2305. },
  2306. frontNsfw: {
  2307. height: math.unit(5 + 5 / 12, "feet"),
  2308. weight: math.unit(75, "kg"),
  2309. name: "Front (NSFW)",
  2310. image: {
  2311. source: "./media/characters/natasha/front-nsfw.svg",
  2312. extra: 859 / 824,
  2313. bottom: 23 / 879.6
  2314. }
  2315. },
  2316. frontErect: {
  2317. height: math.unit(5 + 5 / 12, "feet"),
  2318. weight: math.unit(75, "kg"),
  2319. name: "Front (Erect)",
  2320. image: {
  2321. source: "./media/characters/natasha/front-erect.svg",
  2322. extra: 859 / 824,
  2323. bottom: 23 / 879.6
  2324. }
  2325. },
  2326. back: {
  2327. height: math.unit(5 + 5 / 12, "feet"),
  2328. weight: math.unit(75, "kg"),
  2329. name: "Back",
  2330. image: {
  2331. source: "./media/characters/natasha/back.svg",
  2332. extra: 887.9 / 852.6,
  2333. bottom: 9.7 / 896.4
  2334. }
  2335. },
  2336. backAlt: {
  2337. height: math.unit(5 + 5 / 12, "feet"),
  2338. weight: math.unit(75, "kg"),
  2339. name: "Back (Alt)",
  2340. image: {
  2341. source: "./media/characters/natasha/back-alt.svg",
  2342. extra: 1236.7 / 1192,
  2343. bottom: 22.3 / 1258.2
  2344. }
  2345. },
  2346. dick: {
  2347. height: math.unit(1.772, "feet"),
  2348. name: "Dick",
  2349. image: {
  2350. source: "./media/characters/natasha/dick.svg"
  2351. }
  2352. },
  2353. },
  2354. [
  2355. {
  2356. name: "Normal",
  2357. height: math.unit(5 + 5 / 12, "feet")
  2358. },
  2359. {
  2360. name: "Large",
  2361. height: math.unit(12, "feet")
  2362. },
  2363. {
  2364. name: "Macro",
  2365. height: math.unit(100, "feet"),
  2366. default: true
  2367. },
  2368. {
  2369. name: "Macro+",
  2370. height: math.unit(260, "feet")
  2371. },
  2372. {
  2373. name: "Macro++",
  2374. height: math.unit(1, "mile")
  2375. },
  2376. ]
  2377. ))
  2378. characterMakers.push(() => makeCharacter(
  2379. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2380. {
  2381. front: {
  2382. height: math.unit(6, "feet"),
  2383. weight: math.unit(75, "kg"),
  2384. name: "Front",
  2385. image: {
  2386. source: "./media/characters/malik/front.svg"
  2387. }
  2388. },
  2389. side: {
  2390. height: math.unit(6, "feet"),
  2391. weight: math.unit(75, "kg"),
  2392. name: "Side",
  2393. image: {
  2394. source: "./media/characters/malik/side.svg",
  2395. extra: 1.1539
  2396. }
  2397. },
  2398. back: {
  2399. height: math.unit(6, "feet"),
  2400. weight: math.unit(75, "kg"),
  2401. name: "Back",
  2402. image: {
  2403. source: "./media/characters/malik/back.svg"
  2404. }
  2405. },
  2406. },
  2407. [
  2408. {
  2409. name: "Macro",
  2410. height: math.unit(156, "feet"),
  2411. default: true
  2412. },
  2413. {
  2414. name: "Macro+",
  2415. height: math.unit(1188, "feet")
  2416. },
  2417. ]
  2418. ))
  2419. characterMakers.push(() => makeCharacter(
  2420. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2421. {
  2422. front: {
  2423. height: math.unit(6, "feet"),
  2424. weight: math.unit(75, "kg"),
  2425. name: "Front",
  2426. image: {
  2427. source: "./media/characters/sefer/front.svg",
  2428. extra: 848 / 659,
  2429. bottom: 28.3 / 876.442
  2430. }
  2431. },
  2432. back: {
  2433. height: math.unit(6, "feet"),
  2434. weight: math.unit(75, "kg"),
  2435. name: "Back",
  2436. image: {
  2437. source: "./media/characters/sefer/back.svg",
  2438. extra: 864 / 695,
  2439. bottom: 10 / 871
  2440. }
  2441. },
  2442. frontDressed: {
  2443. height: math.unit(6, "feet"),
  2444. weight: math.unit(75, "kg"),
  2445. name: "Front (Dressed)",
  2446. image: {
  2447. source: "./media/characters/sefer/front-dressed.svg",
  2448. extra: 839 / 653,
  2449. bottom: 37.6 / 878
  2450. }
  2451. },
  2452. },
  2453. [
  2454. {
  2455. name: "Normal",
  2456. height: math.unit(6, "feet"),
  2457. default: true
  2458. },
  2459. ]
  2460. ))
  2461. characterMakers.push(() => makeCharacter(
  2462. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2463. {
  2464. body: {
  2465. height: math.unit(2.2428, "meter"),
  2466. weight: math.unit(124.738, "kg"),
  2467. name: "Body",
  2468. image: {
  2469. extra: 1225 / 1050,
  2470. source: "./media/characters/north/front.svg"
  2471. }
  2472. }
  2473. },
  2474. [
  2475. {
  2476. name: "Micro",
  2477. height: math.unit(4, "inches")
  2478. },
  2479. {
  2480. name: "Macro",
  2481. height: math.unit(63, "meters")
  2482. },
  2483. {
  2484. name: "Megamacro",
  2485. height: math.unit(101, "miles"),
  2486. default: true
  2487. }
  2488. ]
  2489. ))
  2490. characterMakers.push(() => makeCharacter(
  2491. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2492. {
  2493. angled: {
  2494. height: math.unit(4, "meter"),
  2495. weight: math.unit(150, "kg"),
  2496. name: "Angled",
  2497. image: {
  2498. source: "./media/characters/talan/angled-sfw.svg",
  2499. bottom: 29 / 3734
  2500. }
  2501. },
  2502. angledNsfw: {
  2503. height: math.unit(4, "meter"),
  2504. weight: math.unit(150, "kg"),
  2505. name: "Angled (NSFW)",
  2506. image: {
  2507. source: "./media/characters/talan/angled-nsfw.svg",
  2508. bottom: 29 / 3734
  2509. }
  2510. },
  2511. frontNsfw: {
  2512. height: math.unit(4, "meter"),
  2513. weight: math.unit(150, "kg"),
  2514. name: "Front (NSFW)",
  2515. image: {
  2516. source: "./media/characters/talan/front-nsfw.svg",
  2517. bottom: 29 / 3734
  2518. }
  2519. },
  2520. sideNsfw: {
  2521. height: math.unit(4, "meter"),
  2522. weight: math.unit(150, "kg"),
  2523. name: "Side (NSFW)",
  2524. image: {
  2525. source: "./media/characters/talan/side-nsfw.svg",
  2526. bottom: 29 / 3734
  2527. }
  2528. },
  2529. back: {
  2530. height: math.unit(4, "meter"),
  2531. weight: math.unit(150, "kg"),
  2532. name: "Back",
  2533. image: {
  2534. source: "./media/characters/talan/back.svg"
  2535. }
  2536. },
  2537. dickBottom: {
  2538. height: math.unit(0.621, "meter"),
  2539. name: "Dick (Bottom)",
  2540. image: {
  2541. source: "./media/characters/talan/dick-bottom.svg"
  2542. }
  2543. },
  2544. dickTop: {
  2545. height: math.unit(0.621, "meter"),
  2546. name: "Dick (Top)",
  2547. image: {
  2548. source: "./media/characters/talan/dick-top.svg"
  2549. }
  2550. },
  2551. dickSide: {
  2552. height: math.unit(0.305, "meter"),
  2553. name: "Dick (Side)",
  2554. image: {
  2555. source: "./media/characters/talan/dick-side.svg"
  2556. }
  2557. },
  2558. dickFront: {
  2559. height: math.unit(0.305, "meter"),
  2560. name: "Dick (Front)",
  2561. image: {
  2562. source: "./media/characters/talan/dick-front.svg"
  2563. }
  2564. },
  2565. },
  2566. [
  2567. {
  2568. name: "Normal",
  2569. height: math.unit(4, "meters")
  2570. },
  2571. {
  2572. name: "Macro",
  2573. height: math.unit(100, "meters")
  2574. },
  2575. {
  2576. name: "Megamacro",
  2577. height: math.unit(2, "miles"),
  2578. default: true
  2579. },
  2580. {
  2581. name: "Gigamacro",
  2582. height: math.unit(5000, "miles")
  2583. },
  2584. {
  2585. name: "Teramacro",
  2586. height: math.unit(100, "parsecs")
  2587. }
  2588. ]
  2589. ))
  2590. characterMakers.push(() => makeCharacter(
  2591. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2592. {
  2593. front: {
  2594. height: math.unit(2, "meter"),
  2595. weight: math.unit(90, "kg"),
  2596. name: "Front",
  2597. image: {
  2598. source: "./media/characters/gael'rathus/front.svg"
  2599. }
  2600. },
  2601. frontAlt: {
  2602. height: math.unit(2, "meter"),
  2603. weight: math.unit(90, "kg"),
  2604. name: "Front (alt)",
  2605. image: {
  2606. source: "./media/characters/gael'rathus/front-alt.svg"
  2607. }
  2608. },
  2609. frontAlt2: {
  2610. height: math.unit(2, "meter"),
  2611. weight: math.unit(90, "kg"),
  2612. name: "Front (alt 2)",
  2613. image: {
  2614. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2615. }
  2616. }
  2617. },
  2618. [
  2619. {
  2620. name: "Normal",
  2621. height: math.unit(9, "feet"),
  2622. default: true
  2623. },
  2624. {
  2625. name: "Large",
  2626. height: math.unit(25, "feet")
  2627. },
  2628. {
  2629. name: "Macro",
  2630. height: math.unit(0.25, "miles")
  2631. },
  2632. {
  2633. name: "Megamacro",
  2634. height: math.unit(10, "miles")
  2635. }
  2636. ]
  2637. ))
  2638. characterMakers.push(() => makeCharacter(
  2639. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2640. {
  2641. side: {
  2642. height: math.unit(2, "meter"),
  2643. weight: math.unit(140, "kg"),
  2644. name: "Side",
  2645. image: {
  2646. source: "./media/characters/sosha/side.svg",
  2647. bottom: 0.042
  2648. }
  2649. },
  2650. },
  2651. [
  2652. {
  2653. name: "Normal",
  2654. height: math.unit(12, "feet"),
  2655. default: true
  2656. }
  2657. ]
  2658. ))
  2659. characterMakers.push(() => makeCharacter(
  2660. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2661. {
  2662. side: {
  2663. height: math.unit(5 + 5 / 12, "feet"),
  2664. weight: math.unit(170, "kg"),
  2665. name: "Side",
  2666. image: {
  2667. source: "./media/characters/runnola/side.svg",
  2668. extra: 741 / 448,
  2669. bottom: 0.05
  2670. }
  2671. },
  2672. },
  2673. [
  2674. {
  2675. name: "Small",
  2676. height: math.unit(3, "feet")
  2677. },
  2678. {
  2679. name: "Normal",
  2680. height: math.unit(5 + 5 / 12, "feet"),
  2681. default: true
  2682. },
  2683. {
  2684. name: "Big",
  2685. height: math.unit(10, "feet")
  2686. },
  2687. ]
  2688. ))
  2689. characterMakers.push(() => makeCharacter(
  2690. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2691. {
  2692. front: {
  2693. height: math.unit(2, "meter"),
  2694. weight: math.unit(50, "kg"),
  2695. name: "Front",
  2696. image: {
  2697. source: "./media/characters/kurribird/front.svg",
  2698. bottom: 0.015
  2699. }
  2700. },
  2701. frontAlt: {
  2702. height: math.unit(1.5, "meter"),
  2703. weight: math.unit(50, "kg"),
  2704. name: "Front (Alt)",
  2705. image: {
  2706. source: "./media/characters/kurribird/front-alt.svg",
  2707. extra: 1.45
  2708. }
  2709. },
  2710. },
  2711. [
  2712. {
  2713. name: "Normal",
  2714. height: math.unit(7, "feet")
  2715. },
  2716. {
  2717. name: "Big",
  2718. height: math.unit(12, "feet"),
  2719. default: true
  2720. },
  2721. {
  2722. name: "Macro",
  2723. height: math.unit(1500, "feet")
  2724. },
  2725. {
  2726. name: "Megamacro",
  2727. height: math.unit(2, "miles")
  2728. }
  2729. ]
  2730. ))
  2731. characterMakers.push(() => makeCharacter(
  2732. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2733. {
  2734. front: {
  2735. height: math.unit(2, "meter"),
  2736. weight: math.unit(80, "kg"),
  2737. name: "Front",
  2738. image: {
  2739. source: "./media/characters/elbial/front.svg",
  2740. extra: 1643 / 1556,
  2741. bottom: 60.2 / 1696
  2742. }
  2743. },
  2744. side: {
  2745. height: math.unit(2, "meter"),
  2746. weight: math.unit(80, "kg"),
  2747. name: "Side",
  2748. image: {
  2749. source: "./media/characters/elbial/side.svg",
  2750. extra: 1630 / 1565,
  2751. bottom: 71.5 / 1697
  2752. }
  2753. },
  2754. back: {
  2755. height: math.unit(2, "meter"),
  2756. weight: math.unit(80, "kg"),
  2757. name: "Back",
  2758. image: {
  2759. source: "./media/characters/elbial/back.svg",
  2760. extra: 1668 / 1595,
  2761. bottom: 5.6 / 1672
  2762. }
  2763. },
  2764. frontDressed: {
  2765. height: math.unit(2, "meter"),
  2766. weight: math.unit(80, "kg"),
  2767. name: "Front (Dressed)",
  2768. image: {
  2769. source: "./media/characters/elbial/front-dressed.svg",
  2770. extra: 1653 / 1584,
  2771. bottom: 57 / 1708
  2772. }
  2773. },
  2774. genitals: {
  2775. height: math.unit(2 / 3.367, "meter"),
  2776. name: "Genitals",
  2777. image: {
  2778. source: "./media/characters/elbial/genitals.svg"
  2779. }
  2780. },
  2781. },
  2782. [
  2783. {
  2784. name: "Large",
  2785. height: math.unit(100, "feet")
  2786. },
  2787. {
  2788. name: "Macro",
  2789. height: math.unit(500, "feet"),
  2790. default: true
  2791. },
  2792. {
  2793. name: "Megamacro",
  2794. height: math.unit(10, "miles")
  2795. },
  2796. {
  2797. name: "Gigamacro",
  2798. height: math.unit(25000, "miles")
  2799. },
  2800. {
  2801. name: "Full-Size",
  2802. height: math.unit(8000000, "gigaparsecs")
  2803. }
  2804. ]
  2805. ))
  2806. characterMakers.push(() => makeCharacter(
  2807. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2808. {
  2809. front: {
  2810. height: math.unit(2, "meter"),
  2811. weight: math.unit(60, "kg"),
  2812. name: "Front",
  2813. image: {
  2814. source: "./media/characters/noah/front.svg"
  2815. }
  2816. },
  2817. talons: {
  2818. height: math.unit(0.315, "meter"),
  2819. name: "Talons",
  2820. image: {
  2821. source: "./media/characters/noah/talons.svg"
  2822. }
  2823. }
  2824. },
  2825. [
  2826. {
  2827. name: "Large",
  2828. height: math.unit(50, "feet")
  2829. },
  2830. {
  2831. name: "Macro",
  2832. height: math.unit(750, "feet"),
  2833. default: true
  2834. },
  2835. {
  2836. name: "Megamacro",
  2837. height: math.unit(50, "miles")
  2838. },
  2839. {
  2840. name: "Gigamacro",
  2841. height: math.unit(100000, "miles")
  2842. },
  2843. {
  2844. name: "Full-Size",
  2845. height: math.unit(3000000000, "miles")
  2846. }
  2847. ]
  2848. ))
  2849. characterMakers.push(() => makeCharacter(
  2850. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2851. {
  2852. front: {
  2853. height: math.unit(2, "meter"),
  2854. weight: math.unit(80, "kg"),
  2855. name: "Front",
  2856. image: {
  2857. source: "./media/characters/natalya/front.svg"
  2858. }
  2859. },
  2860. back: {
  2861. height: math.unit(2, "meter"),
  2862. weight: math.unit(80, "kg"),
  2863. name: "Back",
  2864. image: {
  2865. source: "./media/characters/natalya/back.svg"
  2866. }
  2867. }
  2868. },
  2869. [
  2870. {
  2871. name: "Normal",
  2872. height: math.unit(150, "feet"),
  2873. default: true
  2874. },
  2875. {
  2876. name: "Megamacro",
  2877. height: math.unit(5, "miles")
  2878. },
  2879. {
  2880. name: "Full-Size",
  2881. height: math.unit(600, "kiloparsecs")
  2882. }
  2883. ]
  2884. ))
  2885. characterMakers.push(() => makeCharacter(
  2886. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2887. {
  2888. front: {
  2889. height: math.unit(2, "meter"),
  2890. weight: math.unit(50, "kg"),
  2891. name: "Front",
  2892. image: {
  2893. source: "./media/characters/erestrebah/front.svg",
  2894. extra: 208 / 193,
  2895. bottom: 0.055
  2896. }
  2897. },
  2898. back: {
  2899. height: math.unit(2, "meter"),
  2900. weight: math.unit(50, "kg"),
  2901. name: "Back",
  2902. image: {
  2903. source: "./media/characters/erestrebah/back.svg",
  2904. extra: 1.3
  2905. }
  2906. }
  2907. },
  2908. [
  2909. {
  2910. name: "Normal",
  2911. height: math.unit(10, "feet")
  2912. },
  2913. {
  2914. name: "Large",
  2915. height: math.unit(50, "feet"),
  2916. default: true
  2917. },
  2918. {
  2919. name: "Macro",
  2920. height: math.unit(300, "feet")
  2921. },
  2922. {
  2923. name: "Macro+",
  2924. height: math.unit(750, "feet")
  2925. },
  2926. {
  2927. name: "Megamacro",
  2928. height: math.unit(3, "miles")
  2929. }
  2930. ]
  2931. ))
  2932. characterMakers.push(() => makeCharacter(
  2933. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2934. {
  2935. front: {
  2936. height: math.unit(2, "meter"),
  2937. weight: math.unit(80, "kg"),
  2938. name: "Front",
  2939. image: {
  2940. source: "./media/characters/jennifer/front.svg",
  2941. bottom: 0.11,
  2942. extra: 1.16
  2943. }
  2944. },
  2945. frontAlt: {
  2946. height: math.unit(2, "meter"),
  2947. weight: math.unit(80, "kg"),
  2948. name: "Front (Alt)",
  2949. image: {
  2950. source: "./media/characters/jennifer/front-alt.svg"
  2951. }
  2952. }
  2953. },
  2954. [
  2955. {
  2956. name: "Canon Height",
  2957. height: math.unit(120, "feet"),
  2958. default: true
  2959. },
  2960. {
  2961. name: "Macro+",
  2962. height: math.unit(300, "feet")
  2963. },
  2964. {
  2965. name: "Megamacro",
  2966. height: math.unit(20000, "feet")
  2967. }
  2968. ]
  2969. ))
  2970. characterMakers.push(() => makeCharacter(
  2971. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  2972. {
  2973. front: {
  2974. height: math.unit(2, "meter"),
  2975. weight: math.unit(50, "kg"),
  2976. name: "Front",
  2977. image: {
  2978. source: "./media/characters/kalista/front.svg",
  2979. extra: 1947 / 1700,
  2980. bottom: 76.6 / 1412.98
  2981. }
  2982. },
  2983. back: {
  2984. height: math.unit(2, "meter"),
  2985. weight: math.unit(50, "kg"),
  2986. name: "Back",
  2987. image: {
  2988. source: "./media/characters/kalista/back.svg",
  2989. extra: 1366 / 1156,
  2990. bottom: 33.9 / 1362.78
  2991. }
  2992. }
  2993. },
  2994. [
  2995. {
  2996. name: "Uncomfortably Small",
  2997. height: math.unit(10, "feet")
  2998. },
  2999. {
  3000. name: "Small",
  3001. height: math.unit(30, "feet")
  3002. },
  3003. {
  3004. name: "Macro",
  3005. height: math.unit(100, "feet"),
  3006. default: true
  3007. },
  3008. {
  3009. name: "Macro+",
  3010. height: math.unit(2000, "feet")
  3011. },
  3012. {
  3013. name: "True Form",
  3014. height: math.unit(8924, "miles")
  3015. }
  3016. ]
  3017. ))
  3018. characterMakers.push(() => makeCharacter(
  3019. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3020. {
  3021. front: {
  3022. height: math.unit(2, "meter"),
  3023. weight: math.unit(120, "kg"),
  3024. name: "Front",
  3025. image: {
  3026. source: "./media/characters/ggv/front.svg"
  3027. }
  3028. },
  3029. side: {
  3030. height: math.unit(2, "meter"),
  3031. weight: math.unit(120, "kg"),
  3032. name: "Side",
  3033. image: {
  3034. source: "./media/characters/ggv/side.svg"
  3035. }
  3036. }
  3037. },
  3038. [
  3039. {
  3040. name: "Extremely Puny",
  3041. height: math.unit(9 + 5 / 12, "feet")
  3042. },
  3043. {
  3044. name: "Horribly Small",
  3045. height: math.unit(47.7, "miles"),
  3046. default: true
  3047. },
  3048. {
  3049. name: "Reasonably Sized",
  3050. height: math.unit(25000, "parsecs")
  3051. },
  3052. {
  3053. name: "Slightly Uncompressed",
  3054. height: math.unit(7.77e31, "parsecs")
  3055. },
  3056. {
  3057. name: "Omniversal",
  3058. height: math.unit(1e300, "meters")
  3059. },
  3060. ]
  3061. ))
  3062. characterMakers.push(() => makeCharacter(
  3063. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3064. {
  3065. front: {
  3066. height: math.unit(2, "meter"),
  3067. weight: math.unit(75, "lb"),
  3068. name: "Front",
  3069. image: {
  3070. source: "./media/characters/napalm/front.svg"
  3071. }
  3072. },
  3073. back: {
  3074. height: math.unit(2, "meter"),
  3075. weight: math.unit(75, "lb"),
  3076. name: "Back",
  3077. image: {
  3078. source: "./media/characters/napalm/back.svg"
  3079. }
  3080. }
  3081. },
  3082. [
  3083. {
  3084. name: "Standard",
  3085. height: math.unit(55, "feet"),
  3086. default: true
  3087. }
  3088. ]
  3089. ))
  3090. characterMakers.push(() => makeCharacter(
  3091. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3092. {
  3093. front: {
  3094. height: math.unit(7 + 5 / 6, "feet"),
  3095. weight: math.unit(325, "lb"),
  3096. name: "Front",
  3097. image: {
  3098. source: "./media/characters/asana/front.svg",
  3099. extra: 1133 / 1060,
  3100. bottom: 15.2/1148.6
  3101. }
  3102. },
  3103. back: {
  3104. height: math.unit(7 + 5 / 6, "feet"),
  3105. weight: math.unit(325, "lb"),
  3106. name: "Back",
  3107. image: {
  3108. source: "./media/characters/asana/back.svg",
  3109. extra: 1114 / 1043,
  3110. bottom: 5/1120
  3111. }
  3112. },
  3113. dressedDark: {
  3114. height: math.unit(7 + 5 / 6, "feet"),
  3115. weight: math.unit(325, "lb"),
  3116. name: "Dressed (Dark)",
  3117. image: {
  3118. source: "./media/characters/asana/dressed-dark.svg",
  3119. extra: 1133 / 1060,
  3120. bottom: 15.2/1148.6
  3121. }
  3122. },
  3123. dressedLight: {
  3124. height: math.unit(7 + 5 / 6, "feet"),
  3125. weight: math.unit(325, "lb"),
  3126. name: "Dressed (Light)",
  3127. image: {
  3128. source: "./media/characters/asana/dressed-light.svg",
  3129. extra: 1133 / 1060,
  3130. bottom: 15.2/1148.6
  3131. }
  3132. },
  3133. },
  3134. [
  3135. {
  3136. name: "Standard",
  3137. height: math.unit(7 + 5 / 6, "feet"),
  3138. default: true
  3139. },
  3140. {
  3141. name: "Large",
  3142. height: math.unit(10, "meters")
  3143. },
  3144. {
  3145. name: "Macro",
  3146. height: math.unit(2500, "meters")
  3147. },
  3148. {
  3149. name: "Megamacro",
  3150. height: math.unit(5e6, "meters")
  3151. },
  3152. {
  3153. name: "Examacro",
  3154. height: math.unit(5e12, "lightyears")
  3155. },
  3156. {
  3157. name: "Max Size",
  3158. height: math.unit(1e31, "lightyears")
  3159. }
  3160. ]
  3161. ))
  3162. characterMakers.push(() => makeCharacter(
  3163. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3164. {
  3165. front: {
  3166. height: math.unit(2, "meter"),
  3167. weight: math.unit(60, "kg"),
  3168. name: "Front",
  3169. image: {
  3170. source: "./media/characters/ebony/front.svg",
  3171. bottom: 0.03,
  3172. extra: 1045 / 810 + 0.03
  3173. }
  3174. },
  3175. side: {
  3176. height: math.unit(2, "meter"),
  3177. weight: math.unit(60, "kg"),
  3178. name: "Side",
  3179. image: {
  3180. source: "./media/characters/ebony/side.svg",
  3181. bottom: 0.03,
  3182. extra: 1045 / 810 + 0.03
  3183. }
  3184. },
  3185. back: {
  3186. height: math.unit(2, "meter"),
  3187. weight: math.unit(60, "kg"),
  3188. name: "Back",
  3189. image: {
  3190. source: "./media/characters/ebony/back.svg",
  3191. bottom: 0.01,
  3192. extra: 1045 / 810 + 0.01
  3193. }
  3194. },
  3195. },
  3196. [
  3197. // TODO check why I did this lol
  3198. {
  3199. name: "Standard",
  3200. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3201. default: true
  3202. },
  3203. {
  3204. name: "Macro",
  3205. height: math.unit(200, "feet")
  3206. },
  3207. {
  3208. name: "Gigamacro",
  3209. height: math.unit(13000, "km")
  3210. }
  3211. ]
  3212. ))
  3213. characterMakers.push(() => makeCharacter(
  3214. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3215. {
  3216. front: {
  3217. height: math.unit(6, "feet"),
  3218. weight: math.unit(175, "lb"),
  3219. name: "Front",
  3220. image: {
  3221. source: "./media/characters/mountain/front.svg",
  3222. extra: 972/955,
  3223. bottom: 64/1036.6
  3224. }
  3225. },
  3226. back: {
  3227. height: math.unit(6, "feet"),
  3228. weight: math.unit(175, "lb"),
  3229. name: "Back",
  3230. image: {
  3231. source: "./media/characters/mountain/back.svg",
  3232. extra: 970/950,
  3233. bottom: 28.25/999
  3234. }
  3235. },
  3236. },
  3237. [
  3238. {
  3239. name: "Large",
  3240. height: math.unit(20, "meters")
  3241. },
  3242. {
  3243. name: "Macro",
  3244. height: math.unit(300, "meters")
  3245. },
  3246. {
  3247. name: "Gigamacro",
  3248. height: math.unit(10000, "km"),
  3249. default: true
  3250. },
  3251. {
  3252. name: "Examacro",
  3253. height: math.unit(10e9, "lightyears")
  3254. }
  3255. ]
  3256. ))
  3257. characterMakers.push(() => makeCharacter(
  3258. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3259. {
  3260. front: {
  3261. height: math.unit(8, "feet"),
  3262. weight: math.unit(500, "lb"),
  3263. name: "Front",
  3264. image: {
  3265. source: "./media/characters/rick/front.svg"
  3266. }
  3267. }
  3268. },
  3269. [
  3270. {
  3271. name: "Normal",
  3272. height: math.unit(8, "feet"),
  3273. default: true
  3274. },
  3275. {
  3276. name: "Macro",
  3277. height: math.unit(5, "km")
  3278. }
  3279. ]
  3280. ))
  3281. characterMakers.push(() => makeCharacter(
  3282. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3283. {
  3284. front: {
  3285. height: math.unit(8, "feet"),
  3286. weight: math.unit(120, "lb"),
  3287. name: "Front",
  3288. image: {
  3289. source: "./media/characters/ona/front.svg"
  3290. }
  3291. },
  3292. frontAlt: {
  3293. height: math.unit(8, "feet"),
  3294. weight: math.unit(120, "lb"),
  3295. name: "Front (Alt)",
  3296. image: {
  3297. source: "./media/characters/ona/front-alt.svg"
  3298. }
  3299. },
  3300. back: {
  3301. height: math.unit(8, "feet"),
  3302. weight: math.unit(120, "lb"),
  3303. name: "Back",
  3304. image: {
  3305. source: "./media/characters/ona/back.svg"
  3306. }
  3307. },
  3308. foot: {
  3309. height: math.unit(1.1, "feet"),
  3310. name: "Foot",
  3311. image: {
  3312. source: "./media/characters/ona/foot.svg"
  3313. }
  3314. }
  3315. },
  3316. [
  3317. {
  3318. name: "Megamacro",
  3319. height: math.unit(70, "km"),
  3320. default: true
  3321. },
  3322. {
  3323. name: "Gigamacro",
  3324. height: math.unit(681818, "miles")
  3325. },
  3326. {
  3327. name: "Examacro",
  3328. height: math.unit(3800000, "lightyears")
  3329. },
  3330. ]
  3331. ))
  3332. characterMakers.push(() => makeCharacter(
  3333. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3334. {
  3335. front: {
  3336. height: math.unit(12, "feet"),
  3337. weight: math.unit(3000, "lb"),
  3338. name: "Front",
  3339. image: {
  3340. source: "./media/characters/mech/front.svg",
  3341. bottom: 0.025,
  3342. }
  3343. },
  3344. back: {
  3345. height: math.unit(12, "feet"),
  3346. weight: math.unit(3000, "lb"),
  3347. name: "Back",
  3348. image: {
  3349. source: "./media/characters/mech/back.svg",
  3350. bottom: 0.03,
  3351. }
  3352. }
  3353. },
  3354. [
  3355. {
  3356. name: "Normal",
  3357. height: math.unit(12, "feet")
  3358. },
  3359. {
  3360. name: "Macro",
  3361. height: math.unit(300, "feet"),
  3362. default: true
  3363. },
  3364. {
  3365. name: "Macro+",
  3366. height: math.unit(1500, "feet")
  3367. },
  3368. ]
  3369. ))
  3370. characterMakers.push(() => makeCharacter(
  3371. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3372. {
  3373. front: {
  3374. height: math.unit(1.3, "meter"),
  3375. weight: math.unit(30, "kg"),
  3376. name: "Front",
  3377. image: {
  3378. source: "./media/characters/gregory/front.svg",
  3379. }
  3380. }
  3381. },
  3382. [
  3383. {
  3384. name: "Normal",
  3385. height: math.unit(1.3, "meter"),
  3386. default: true
  3387. },
  3388. {
  3389. name: "Macro",
  3390. height: math.unit(20, "meter")
  3391. }
  3392. ]
  3393. ))
  3394. characterMakers.push(() => makeCharacter(
  3395. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3396. {
  3397. front: {
  3398. height: math.unit(2.8, "meter"),
  3399. weight: math.unit(200, "kg"),
  3400. name: "Front",
  3401. image: {
  3402. source: "./media/characters/elory/front.svg",
  3403. }
  3404. }
  3405. },
  3406. [
  3407. {
  3408. name: "Normal",
  3409. height: math.unit(2.8, "meter"),
  3410. default: true
  3411. },
  3412. {
  3413. name: "Macro",
  3414. height: math.unit(38, "meter")
  3415. }
  3416. ]
  3417. ))
  3418. characterMakers.push(() => makeCharacter(
  3419. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3420. {
  3421. front: {
  3422. height: math.unit(470, "feet"),
  3423. weight: math.unit(924, "tons"),
  3424. name: "Front",
  3425. image: {
  3426. source: "./media/characters/angelpatamon/front.svg",
  3427. }
  3428. }
  3429. },
  3430. [
  3431. {
  3432. name: "Normal",
  3433. height: math.unit(470, "feet"),
  3434. default: true
  3435. },
  3436. {
  3437. name: "Deity Size I",
  3438. height: math.unit(28651.2, "km")
  3439. },
  3440. {
  3441. name: "Deity Size II",
  3442. height: math.unit(171907.2, "km")
  3443. }
  3444. ]
  3445. ))
  3446. characterMakers.push(() => makeCharacter(
  3447. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3448. {
  3449. side: {
  3450. height: math.unit(7.2, "meter"),
  3451. weight: math.unit(8.2, "tons"),
  3452. name: "Side",
  3453. image: {
  3454. source: "./media/characters/cryae/side.svg",
  3455. extra: 3500 / 1500
  3456. }
  3457. }
  3458. },
  3459. [
  3460. {
  3461. name: "Normal",
  3462. height: math.unit(7.2, "meter"),
  3463. default: true
  3464. }
  3465. ]
  3466. ))
  3467. characterMakers.push(() => makeCharacter(
  3468. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3469. {
  3470. front: {
  3471. height: math.unit(6, "feet"),
  3472. weight: math.unit(175, "lb"),
  3473. name: "Front",
  3474. image: {
  3475. source: "./media/characters/xera/front.svg",
  3476. extra: 2377 / 1972,
  3477. bottom: 75.5/2452
  3478. }
  3479. },
  3480. side: {
  3481. height: math.unit(6, "feet"),
  3482. weight: math.unit(175, "lb"),
  3483. name: "Side",
  3484. image: {
  3485. source: "./media/characters/xera/side.svg",
  3486. extra: 2345/2019,
  3487. bottom: 39.7/2384
  3488. }
  3489. },
  3490. back: {
  3491. height: math.unit(6, "feet"),
  3492. weight: math.unit(175, "lb"),
  3493. name: "Back",
  3494. image: {
  3495. source: "./media/characters/xera/back.svg",
  3496. extra: 2095/1984,
  3497. bottom: 67/2166
  3498. }
  3499. },
  3500. },
  3501. [
  3502. {
  3503. name: "Small",
  3504. height: math.unit(10, "feet")
  3505. },
  3506. {
  3507. name: "Macro",
  3508. height: math.unit(500, "meters"),
  3509. default: true
  3510. },
  3511. {
  3512. name: "Macro+",
  3513. height: math.unit(10, "km")
  3514. },
  3515. {
  3516. name: "Gigamacro",
  3517. height: math.unit(25000, "km")
  3518. },
  3519. {
  3520. name: "Teramacro",
  3521. height: math.unit(3e6, "km")
  3522. }
  3523. ]
  3524. ))
  3525. characterMakers.push(() => makeCharacter(
  3526. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3527. {
  3528. front: {
  3529. height: math.unit(6, "feet"),
  3530. weight: math.unit(175, "lb"),
  3531. name: "Front",
  3532. image: {
  3533. source: "./media/characters/nebula/front.svg",
  3534. extra: 2566/2362,
  3535. bottom: 81/2644
  3536. }
  3537. }
  3538. },
  3539. [
  3540. {
  3541. name: "Small",
  3542. height: math.unit(4.5, "meters")
  3543. },
  3544. {
  3545. name: "Macro",
  3546. height: math.unit(1500, "meters"),
  3547. default: true
  3548. },
  3549. {
  3550. name: "Megamacro",
  3551. height: math.unit(150, "km")
  3552. },
  3553. {
  3554. name: "Gigamacro",
  3555. height: math.unit(27000, "km")
  3556. }
  3557. ]
  3558. ))
  3559. characterMakers.push(() => makeCharacter(
  3560. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3561. {
  3562. front: {
  3563. height: math.unit(6, "feet"),
  3564. weight: math.unit(225, "lb"),
  3565. name: "Front",
  3566. image: {
  3567. source: "./media/characters/abysgar/front.svg"
  3568. }
  3569. }
  3570. },
  3571. [
  3572. {
  3573. name: "Small",
  3574. height: math.unit(4.5, "meters")
  3575. },
  3576. {
  3577. name: "Macro",
  3578. height: math.unit(1250, "meters"),
  3579. default: true
  3580. },
  3581. {
  3582. name: "Megamacro",
  3583. height: math.unit(125, "km")
  3584. },
  3585. {
  3586. name: "Gigamacro",
  3587. height: math.unit(26000, "km")
  3588. }
  3589. ]
  3590. ))
  3591. characterMakers.push(() => makeCharacter(
  3592. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3593. {
  3594. front: {
  3595. height: math.unit(6, "feet"),
  3596. weight: math.unit(180, "lb"),
  3597. name: "Front",
  3598. image: {
  3599. source: "./media/characters/yakuz/front.svg"
  3600. }
  3601. }
  3602. },
  3603. [
  3604. {
  3605. name: "Small",
  3606. height: math.unit(5, "meters")
  3607. },
  3608. {
  3609. name: "Macro",
  3610. height: math.unit(1500, "meters"),
  3611. default: true
  3612. },
  3613. {
  3614. name: "Megamacro",
  3615. height: math.unit(200, "km")
  3616. },
  3617. {
  3618. name: "Gigamacro",
  3619. height: math.unit(100000, "km")
  3620. }
  3621. ]
  3622. ))
  3623. characterMakers.push(() => makeCharacter(
  3624. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3625. {
  3626. front: {
  3627. height: math.unit(6, "feet"),
  3628. weight: math.unit(175, "lb"),
  3629. name: "Front",
  3630. image: {
  3631. source: "./media/characters/mirova/front.svg",
  3632. extra: 3334/3071,
  3633. bottom: 42/3375.6
  3634. }
  3635. }
  3636. },
  3637. [
  3638. {
  3639. name: "Small",
  3640. height: math.unit(5, "meters")
  3641. },
  3642. {
  3643. name: "Macro",
  3644. height: math.unit(900, "meters"),
  3645. default: true
  3646. },
  3647. {
  3648. name: "Megamacro",
  3649. height: math.unit(135, "km")
  3650. },
  3651. {
  3652. name: "Gigamacro",
  3653. height: math.unit(20000, "km")
  3654. }
  3655. ]
  3656. ))
  3657. characterMakers.push(() => makeCharacter(
  3658. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3659. {
  3660. side: {
  3661. height: math.unit(28.35, "feet"),
  3662. weight: math.unit(99.75, "tons"),
  3663. name: "Side",
  3664. image: {
  3665. source: "./media/characters/asana-mech/side.svg",
  3666. extra: 923/699,
  3667. bottom: 50/975
  3668. }
  3669. },
  3670. chaingun: {
  3671. height: math.unit(7, "feet"),
  3672. weight: math.unit(2400, "lb"),
  3673. name: "Chaingun",
  3674. image: {
  3675. source: "./media/characters/asana-mech/chaingun.svg"
  3676. }
  3677. },
  3678. laser: {
  3679. height: math.unit(7.12, "feet"),
  3680. weight: math.unit(2000, "lb"),
  3681. name: "Laser",
  3682. image: {
  3683. source: "./media/characters/asana-mech/laser.svg"
  3684. }
  3685. },
  3686. },
  3687. [
  3688. {
  3689. name: "Normal",
  3690. height: math.unit(28.35, "feet"),
  3691. default: true
  3692. },
  3693. {
  3694. name: "Macro",
  3695. height: math.unit(2500, "feet")
  3696. },
  3697. {
  3698. name: "Megamacro",
  3699. height: math.unit(25, "miles")
  3700. },
  3701. {
  3702. name: "Examacro",
  3703. height: math.unit(6e8, "lightyears")
  3704. },
  3705. ]
  3706. ))
  3707. characterMakers.push(() => makeCharacter(
  3708. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3709. {
  3710. front: {
  3711. height: math.unit(5, "meters"),
  3712. weight: math.unit(1000, "kg"),
  3713. name: "Front",
  3714. image: {
  3715. source: "./media/characters/asche/front.svg",
  3716. extra: 1258/1190,
  3717. bottom: 47/1305
  3718. }
  3719. },
  3720. frontUnderwear: {
  3721. height: math.unit(5, "meters"),
  3722. weight: math.unit(1000, "kg"),
  3723. name: "Front (Underwear)",
  3724. image: {
  3725. source: "./media/characters/asche/front-underwear.svg",
  3726. extra: 1258/1190,
  3727. bottom: 47/1305
  3728. }
  3729. },
  3730. frontDressed: {
  3731. height: math.unit(5, "meters"),
  3732. weight: math.unit(1000, "kg"),
  3733. name: "Front (Dressed)",
  3734. image: {
  3735. source: "./media/characters/asche/front-dressed.svg",
  3736. extra: 1258/1190,
  3737. bottom: 47/1305
  3738. }
  3739. },
  3740. frontArmor: {
  3741. height: math.unit(5, "meters"),
  3742. weight: math.unit(1000, "kg"),
  3743. name: "Front (Armored)",
  3744. image: {
  3745. source: "./media/characters/asche/front-armored.svg",
  3746. extra: 1374 / 1308,
  3747. bottom: 23/1397
  3748. }
  3749. },
  3750. mp724: {
  3751. height: math.unit(0.96, "meters"),
  3752. weight: math.unit(38, "kg"),
  3753. name: "H&K MP724",
  3754. image: {
  3755. source: "./media/characters/asche/h&k-mp724.svg"
  3756. }
  3757. },
  3758. side: {
  3759. height: math.unit(5, "meters"),
  3760. weight: math.unit(1000, "kg"),
  3761. name: "Side",
  3762. image: {
  3763. source: "./media/characters/asche/side.svg",
  3764. extra: 1717 / 1609,
  3765. bottom: 0.005
  3766. }
  3767. },
  3768. back: {
  3769. height: math.unit(5, "meters"),
  3770. weight: math.unit(1000, "kg"),
  3771. name: "Back",
  3772. image: {
  3773. source: "./media/characters/asche/back.svg",
  3774. extra: 1570 / 1501
  3775. }
  3776. },
  3777. },
  3778. [
  3779. {
  3780. name: "DEFCON 5",
  3781. height: math.unit(5, "meters")
  3782. },
  3783. {
  3784. name: "DEFCON 4",
  3785. height: math.unit(500, "meters"),
  3786. default: true
  3787. },
  3788. {
  3789. name: "DEFCON 3",
  3790. height: math.unit(5, "km")
  3791. },
  3792. {
  3793. name: "DEFCON 2",
  3794. height: math.unit(500, "km")
  3795. },
  3796. {
  3797. name: "DEFCON 1",
  3798. height: math.unit(500000, "km")
  3799. },
  3800. {
  3801. name: "DEFCON 0",
  3802. height: math.unit(3, "gigaparsecs")
  3803. },
  3804. ]
  3805. ))
  3806. characterMakers.push(() => makeCharacter(
  3807. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3808. {
  3809. front: {
  3810. height: math.unit(2, "meters"),
  3811. weight: math.unit(76, "kg"),
  3812. name: "Front",
  3813. image: {
  3814. source: "./media/characters/gale/front.svg"
  3815. }
  3816. },
  3817. frontAlt1: {
  3818. height: math.unit(2, "meters"),
  3819. weight: math.unit(76, "kg"),
  3820. name: "Front (Alt 1)",
  3821. image: {
  3822. source: "./media/characters/gale/front-alt-1.svg"
  3823. }
  3824. },
  3825. frontAlt2: {
  3826. height: math.unit(2, "meters"),
  3827. weight: math.unit(76, "kg"),
  3828. name: "Front (Alt 2)",
  3829. image: {
  3830. source: "./media/characters/gale/front-alt-2.svg"
  3831. }
  3832. },
  3833. },
  3834. [
  3835. {
  3836. name: "Normal",
  3837. height: math.unit(7, "feet")
  3838. },
  3839. {
  3840. name: "Macro",
  3841. height: math.unit(150, "feet"),
  3842. default: true
  3843. },
  3844. {
  3845. name: "Macro+",
  3846. height: math.unit(300, "feet")
  3847. },
  3848. ]
  3849. ))
  3850. characterMakers.push(() => makeCharacter(
  3851. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3852. {
  3853. front: {
  3854. height: math.unit(2, "meters"),
  3855. weight: math.unit(76, "kg"),
  3856. name: "Front",
  3857. image: {
  3858. source: "./media/characters/draylen/front.svg"
  3859. }
  3860. }
  3861. },
  3862. [
  3863. {
  3864. name: "Macro",
  3865. height: math.unit(150, "feet"),
  3866. default: true
  3867. }
  3868. ]
  3869. ))
  3870. characterMakers.push(() => makeCharacter(
  3871. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3872. {
  3873. front: {
  3874. height: math.unit(7 + 9 / 12, "feet"),
  3875. weight: math.unit(379, "lbs"),
  3876. name: "Front",
  3877. image: {
  3878. source: "./media/characters/chez/front.svg"
  3879. }
  3880. },
  3881. side: {
  3882. height: math.unit(7 + 9 / 12, "feet"),
  3883. weight: math.unit(379, "lbs"),
  3884. name: "Side",
  3885. image: {
  3886. source: "./media/characters/chez/side.svg"
  3887. }
  3888. }
  3889. },
  3890. [
  3891. {
  3892. name: "Normal",
  3893. height: math.unit(7 + 9 / 12, "feet"),
  3894. default: true
  3895. },
  3896. {
  3897. name: "God King",
  3898. height: math.unit(9750000, "meters")
  3899. }
  3900. ]
  3901. ))
  3902. characterMakers.push(() => makeCharacter(
  3903. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  3904. {
  3905. front: {
  3906. height: math.unit(6, "feet"),
  3907. weight: math.unit(275, "lbs"),
  3908. name: "Front",
  3909. image: {
  3910. source: "./media/characters/kaylum/front.svg",
  3911. bottom: 0.01,
  3912. extra: 1166 / 1031
  3913. }
  3914. },
  3915. frontWingless: {
  3916. height: math.unit(6, "feet"),
  3917. weight: math.unit(275, "lbs"),
  3918. name: "Front (Wingless)",
  3919. image: {
  3920. source: "./media/characters/kaylum/front-wingless.svg",
  3921. bottom: 0.01,
  3922. extra: 1117 / 1031
  3923. }
  3924. }
  3925. },
  3926. [
  3927. {
  3928. name: "Normal",
  3929. height: math.unit(3.05, "meters")
  3930. },
  3931. {
  3932. name: "Master",
  3933. height: math.unit(5.5, "meters")
  3934. },
  3935. {
  3936. name: "Rampage",
  3937. height: math.unit(19, "meters")
  3938. },
  3939. {
  3940. name: "Macro Lite",
  3941. height: math.unit(37, "meters")
  3942. },
  3943. {
  3944. name: "Hyper Predator",
  3945. height: math.unit(61, "meters")
  3946. },
  3947. {
  3948. name: "Macro",
  3949. height: math.unit(138, "meters"),
  3950. default: true
  3951. }
  3952. ]
  3953. ))
  3954. characterMakers.push(() => makeCharacter(
  3955. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  3956. {
  3957. front: {
  3958. height: math.unit(6, "feet"),
  3959. weight: math.unit(150, "lbs"),
  3960. name: "Front",
  3961. image: {
  3962. source: "./media/characters/geta/front.svg"
  3963. }
  3964. }
  3965. },
  3966. [
  3967. {
  3968. name: "Micro",
  3969. height: math.unit(3, "inches"),
  3970. default: true
  3971. },
  3972. {
  3973. name: "Normal",
  3974. height: math.unit(5 + 5 / 12, "feet")
  3975. }
  3976. ]
  3977. ))
  3978. characterMakers.push(() => makeCharacter(
  3979. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  3980. {
  3981. front: {
  3982. height: math.unit(6, "feet"),
  3983. weight: math.unit(300, "lbs"),
  3984. name: "Front",
  3985. image: {
  3986. source: "./media/characters/tyrnn/front.svg"
  3987. }
  3988. }
  3989. },
  3990. [
  3991. {
  3992. name: "Main Height",
  3993. height: math.unit(355, "feet"),
  3994. default: true
  3995. },
  3996. {
  3997. name: "Fave. Height",
  3998. height: math.unit(2400, "feet")
  3999. }
  4000. ]
  4001. ))
  4002. characterMakers.push(() => makeCharacter(
  4003. { name: "Apple", species: ["elephant"], 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/appledectomy/front.svg"
  4011. }
  4012. }
  4013. },
  4014. [
  4015. {
  4016. name: "Macro",
  4017. height: math.unit(2500, "feet")
  4018. },
  4019. {
  4020. name: "Megamacro",
  4021. height: math.unit(50, "miles"),
  4022. default: true
  4023. },
  4024. {
  4025. name: "Gigamacro",
  4026. height: math.unit(5000, "miles")
  4027. },
  4028. {
  4029. name: "Teramacro",
  4030. height: math.unit(250000, "miles")
  4031. },
  4032. ]
  4033. ))
  4034. characterMakers.push(() => makeCharacter(
  4035. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4036. {
  4037. front: {
  4038. height: math.unit(6, "feet"),
  4039. weight: math.unit(200, "lbs"),
  4040. name: "Front",
  4041. image: {
  4042. source: "./media/characters/vulpes/front.svg",
  4043. extra: 573 / 543,
  4044. bottom: 0.033
  4045. }
  4046. },
  4047. side: {
  4048. height: math.unit(6, "feet"),
  4049. weight: math.unit(200, "lbs"),
  4050. name: "Side",
  4051. image: {
  4052. source: "./media/characters/vulpes/side.svg",
  4053. extra: 573 / 543,
  4054. bottom: 0.01
  4055. }
  4056. },
  4057. back: {
  4058. height: math.unit(6, "feet"),
  4059. weight: math.unit(200, "lbs"),
  4060. name: "Back",
  4061. image: {
  4062. source: "./media/characters/vulpes/back.svg",
  4063. extra: 573 / 543,
  4064. }
  4065. },
  4066. feet: {
  4067. height: math.unit(1.276, "feet"),
  4068. name: "Feet",
  4069. image: {
  4070. source: "./media/characters/vulpes/feet.svg"
  4071. }
  4072. },
  4073. maw: {
  4074. height: math.unit(1.18, "feet"),
  4075. name: "Maw",
  4076. image: {
  4077. source: "./media/characters/vulpes/maw.svg"
  4078. }
  4079. },
  4080. },
  4081. [
  4082. {
  4083. name: "Micro",
  4084. height: math.unit(2, "inches")
  4085. },
  4086. {
  4087. name: "Normal",
  4088. height: math.unit(6.3, "feet")
  4089. },
  4090. {
  4091. name: "Macro",
  4092. height: math.unit(850, "feet")
  4093. },
  4094. {
  4095. name: "Megamacro",
  4096. height: math.unit(7500, "feet"),
  4097. default: true
  4098. },
  4099. {
  4100. name: "Gigamacro",
  4101. height: math.unit(570000, "miles")
  4102. }
  4103. ]
  4104. ))
  4105. characterMakers.push(() => makeCharacter(
  4106. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4107. {
  4108. front: {
  4109. height: math.unit(6, "feet"),
  4110. weight: math.unit(210, "lbs"),
  4111. name: "Front",
  4112. image: {
  4113. source: "./media/characters/rain-fallen/front.svg"
  4114. }
  4115. },
  4116. side: {
  4117. height: math.unit(6, "feet"),
  4118. weight: math.unit(210, "lbs"),
  4119. name: "Side",
  4120. image: {
  4121. source: "./media/characters/rain-fallen/side.svg"
  4122. }
  4123. },
  4124. back: {
  4125. height: math.unit(6, "feet"),
  4126. weight: math.unit(210, "lbs"),
  4127. name: "Back",
  4128. image: {
  4129. source: "./media/characters/rain-fallen/back.svg"
  4130. }
  4131. },
  4132. feral: {
  4133. height: math.unit(9, "feet"),
  4134. weight: math.unit(700, "lbs"),
  4135. name: "Feral",
  4136. image: {
  4137. source: "./media/characters/rain-fallen/feral.svg"
  4138. }
  4139. },
  4140. },
  4141. [
  4142. {
  4143. name: "Normal",
  4144. height: math.unit(5, "meter")
  4145. },
  4146. {
  4147. name: "Macro",
  4148. height: math.unit(150, "meter"),
  4149. default: true
  4150. },
  4151. {
  4152. name: "Megamacro",
  4153. height: math.unit(278e6, "meter")
  4154. },
  4155. {
  4156. name: "Gigamacro",
  4157. height: math.unit(2e9, "meter")
  4158. },
  4159. {
  4160. name: "Teramacro",
  4161. height: math.unit(8e12, "meter")
  4162. },
  4163. {
  4164. name: "Devourer",
  4165. height: math.unit(14, "zettameters")
  4166. },
  4167. {
  4168. name: "Scarlet King",
  4169. height: math.unit(18, "yottameters")
  4170. },
  4171. {
  4172. name: "Void",
  4173. height: math.unit(6.66e66, "yottameters")
  4174. }
  4175. ]
  4176. ))
  4177. characterMakers.push(() => makeCharacter(
  4178. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4179. {
  4180. standing: {
  4181. height: math.unit(6, "feet"),
  4182. weight: math.unit(180, "lbs"),
  4183. name: "Standing",
  4184. image: {
  4185. source: "./media/characters/zaakira/standing.svg"
  4186. }
  4187. },
  4188. laying: {
  4189. height: math.unit(3, "feet"),
  4190. weight: math.unit(180, "lbs"),
  4191. name: "Laying",
  4192. image: {
  4193. source: "./media/characters/zaakira/laying.svg"
  4194. }
  4195. },
  4196. },
  4197. [
  4198. {
  4199. name: "Normal",
  4200. height: math.unit(12, "feet")
  4201. },
  4202. {
  4203. name: "Macro",
  4204. height: math.unit(279, "feet"),
  4205. default: true
  4206. }
  4207. ]
  4208. ))
  4209. characterMakers.push(() => makeCharacter(
  4210. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4211. {
  4212. femSfw: {
  4213. height: math.unit(8, "feet"),
  4214. weight: math.unit(350, "lb"),
  4215. name: "Fem",
  4216. image: {
  4217. source: "./media/characters/sigvald/fem-sfw.svg",
  4218. extra: 182/164,
  4219. bottom: 8.7/190.5
  4220. }
  4221. },
  4222. femNsfw: {
  4223. height: math.unit(8, "feet"),
  4224. weight: math.unit(350, "lb"),
  4225. name: "Fem (NSFW)",
  4226. image: {
  4227. source: "./media/characters/sigvald/fem-nsfw.svg",
  4228. extra: 182/164,
  4229. bottom: 8.7/190.5
  4230. }
  4231. },
  4232. maleNsfw: {
  4233. height: math.unit(8, "feet"),
  4234. weight: math.unit(350, "lb"),
  4235. name: "Male (NSFW)",
  4236. image: {
  4237. source: "./media/characters/sigvald/male-nsfw.svg",
  4238. extra: 182/164,
  4239. bottom: 8.7/190.5
  4240. }
  4241. },
  4242. hermNsfw: {
  4243. height: math.unit(8, "feet"),
  4244. weight: math.unit(350, "lb"),
  4245. name: "Herm (NSFW)",
  4246. image: {
  4247. source: "./media/characters/sigvald/herm-nsfw.svg",
  4248. extra: 182/164,
  4249. bottom: 8.7/190.5
  4250. }
  4251. },
  4252. dick: {
  4253. height: math.unit(2.36, "feet"),
  4254. name: "Dick",
  4255. image: {
  4256. source: "./media/characters/sigvald/dick.svg"
  4257. }
  4258. },
  4259. eye: {
  4260. height: math.unit(0.31, "feet"),
  4261. name: "Eye",
  4262. image: {
  4263. source: "./media/characters/sigvald/eye.svg"
  4264. }
  4265. },
  4266. mouth: {
  4267. height: math.unit(0.92, "feet"),
  4268. name: "Mouth",
  4269. image: {
  4270. source: "./media/characters/sigvald/mouth.svg"
  4271. }
  4272. },
  4273. paws: {
  4274. height: math.unit(2.2, "feet"),
  4275. name: "Paws",
  4276. image: {
  4277. source: "./media/characters/sigvald/paws.svg"
  4278. }
  4279. }
  4280. },
  4281. [
  4282. {
  4283. name: "Normal",
  4284. height: math.unit(8, "feet")
  4285. },
  4286. {
  4287. name: "Large",
  4288. height: math.unit(12, "feet")
  4289. },
  4290. {
  4291. name: "Larger",
  4292. height: math.unit(20, "feet")
  4293. },
  4294. {
  4295. name: "Macro",
  4296. height: math.unit(150, "feet")
  4297. },
  4298. {
  4299. name: "Macro+",
  4300. height: math.unit(200, "feet"),
  4301. default: true
  4302. },
  4303. ]
  4304. ))
  4305. characterMakers.push(() => makeCharacter(
  4306. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4307. {
  4308. side: {
  4309. height: math.unit(12, "feet"),
  4310. weight: math.unit(2000, "kg"),
  4311. name: "Side",
  4312. image: {
  4313. source: "./media/characters/scott/side.svg",
  4314. extra: 754 / 724,
  4315. bottom: 0.069
  4316. }
  4317. },
  4318. upright: {
  4319. height: math.unit(12, "feet"),
  4320. weight: math.unit(2000, "kg"),
  4321. name: "Upright",
  4322. image: {
  4323. source: "./media/characters/scott/upright.svg",
  4324. extra: 3881 / 3722,
  4325. bottom: 0.05
  4326. }
  4327. },
  4328. },
  4329. [
  4330. {
  4331. name: "Normal",
  4332. height: math.unit(12, "feet"),
  4333. default: true
  4334. },
  4335. ]
  4336. ))
  4337. characterMakers.push(() => makeCharacter(
  4338. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4339. {
  4340. side: {
  4341. height: math.unit(8, "meters"),
  4342. weight: math.unit(84755, "lbs"),
  4343. name: "Side",
  4344. image: {
  4345. source: "./media/characters/tobias/side.svg",
  4346. extra: 1474 / 1096,
  4347. bottom: 38.9 / 1513.1235
  4348. }
  4349. },
  4350. },
  4351. [
  4352. {
  4353. name: "Normal",
  4354. height: math.unit(8, "meters"),
  4355. default: true
  4356. },
  4357. ]
  4358. ))
  4359. characterMakers.push(() => makeCharacter(
  4360. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4361. {
  4362. front: {
  4363. height: math.unit(5.5, "feet"),
  4364. weight: math.unit(400, "lbs"),
  4365. name: "Front",
  4366. image: {
  4367. source: "./media/characters/kieran/front.svg",
  4368. extra: 2694 / 2364,
  4369. bottom: 217 / 2908
  4370. }
  4371. },
  4372. side: {
  4373. height: math.unit(5.5, "feet"),
  4374. weight: math.unit(400, "lbs"),
  4375. name: "Side",
  4376. image: {
  4377. source: "./media/characters/kieran/side.svg",
  4378. extra: 875 / 777,
  4379. bottom: 84.6 / 959
  4380. }
  4381. },
  4382. },
  4383. [
  4384. {
  4385. name: "Normal",
  4386. height: math.unit(5.5, "feet"),
  4387. default: true
  4388. },
  4389. ]
  4390. ))
  4391. characterMakers.push(() => makeCharacter(
  4392. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4393. {
  4394. side: {
  4395. height: math.unit(2, "meters"),
  4396. weight: math.unit(70, "kg"),
  4397. name: "Side",
  4398. image: {
  4399. source: "./media/characters/sanya/side.svg",
  4400. bottom: 0.02,
  4401. extra: 1.02
  4402. }
  4403. },
  4404. },
  4405. [
  4406. {
  4407. name: "Small",
  4408. height: math.unit(2, "meters")
  4409. },
  4410. {
  4411. name: "Normal",
  4412. height: math.unit(3, "meters")
  4413. },
  4414. {
  4415. name: "Macro",
  4416. height: math.unit(16, "meters"),
  4417. default: true
  4418. },
  4419. ]
  4420. ))
  4421. characterMakers.push(() => makeCharacter(
  4422. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4423. {
  4424. front: {
  4425. height: math.unit(2, "meters"),
  4426. weight: math.unit(120, "kg"),
  4427. name: "Front",
  4428. image: {
  4429. source: "./media/characters/miranda/front.svg",
  4430. extra: 195/185,
  4431. bottom: 10.9/206.5
  4432. }
  4433. },
  4434. back: {
  4435. height: math.unit(2, "meters"),
  4436. weight: math.unit(120, "kg"),
  4437. name: "Back",
  4438. image: {
  4439. source: "./media/characters/miranda/back.svg",
  4440. extra: 201/193,
  4441. bottom: 2.3/203.7
  4442. }
  4443. },
  4444. },
  4445. [
  4446. {
  4447. name: "Normal",
  4448. height: math.unit(10, "feet"),
  4449. default: true
  4450. }
  4451. ]
  4452. ))
  4453. characterMakers.push(() => makeCharacter(
  4454. { name: "James", species: ["deer"], tags: ["anthro"] },
  4455. {
  4456. side: {
  4457. height: math.unit(2, "meters"),
  4458. weight: math.unit(100, "kg"),
  4459. name: "Front",
  4460. image: {
  4461. source: "./media/characters/james/front.svg",
  4462. extra: 10 / 8.5
  4463. }
  4464. },
  4465. },
  4466. [
  4467. {
  4468. name: "Normal",
  4469. height: math.unit(8.5, "feet"),
  4470. default: true
  4471. }
  4472. ]
  4473. ))
  4474. characterMakers.push(() => makeCharacter(
  4475. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4476. {
  4477. side: {
  4478. height: math.unit(9.5, "feet"),
  4479. weight: math.unit(2500, "lbs"),
  4480. name: "Side",
  4481. image: {
  4482. source: "./media/characters/heather/side.svg"
  4483. }
  4484. },
  4485. },
  4486. [
  4487. {
  4488. name: "Normal",
  4489. height: math.unit(9.5, "feet"),
  4490. default: true
  4491. }
  4492. ]
  4493. ))
  4494. characterMakers.push(() => makeCharacter(
  4495. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4496. {
  4497. side: {
  4498. height: math.unit(6.5, "feet"),
  4499. weight: math.unit(400, "lbs"),
  4500. name: "Side",
  4501. image: {
  4502. source: "./media/characters/lukas/side.svg",
  4503. extra: 7.25 / 6.5
  4504. }
  4505. },
  4506. },
  4507. [
  4508. {
  4509. name: "Normal",
  4510. height: math.unit(6.5, "feet"),
  4511. default: true
  4512. }
  4513. ]
  4514. ))
  4515. characterMakers.push(() => makeCharacter(
  4516. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4517. {
  4518. side: {
  4519. height: math.unit(5, "feet"),
  4520. weight: math.unit(3000, "lbs"),
  4521. name: "Side",
  4522. image: {
  4523. source: "./media/characters/louise/side.svg"
  4524. }
  4525. },
  4526. },
  4527. [
  4528. {
  4529. name: "Normal",
  4530. height: math.unit(5, "feet"),
  4531. default: true
  4532. }
  4533. ]
  4534. ))
  4535. characterMakers.push(() => makeCharacter(
  4536. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4537. {
  4538. side: {
  4539. height: math.unit(6, "feet"),
  4540. weight: math.unit(150, "lbs"),
  4541. name: "Side",
  4542. image: {
  4543. source: "./media/characters/ramona/side.svg"
  4544. }
  4545. },
  4546. },
  4547. [
  4548. {
  4549. name: "Normal",
  4550. height: math.unit(5.3, "meters"),
  4551. default: true
  4552. },
  4553. {
  4554. name: "Macro",
  4555. height: math.unit(20, "stories")
  4556. },
  4557. {
  4558. name: "Macro+",
  4559. height: math.unit(50, "stories")
  4560. },
  4561. ]
  4562. ))
  4563. characterMakers.push(() => makeCharacter(
  4564. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4565. {
  4566. standing: {
  4567. height: math.unit(5.75, "feet"),
  4568. weight: math.unit(160, "lbs"),
  4569. name: "Standing",
  4570. image: {
  4571. source: "./media/characters/deerpuff/standing.svg",
  4572. extra: 682 / 624
  4573. }
  4574. },
  4575. sitting: {
  4576. height: math.unit(5.75 / 1.79, "feet"),
  4577. weight: math.unit(160, "lbs"),
  4578. name: "Sitting",
  4579. image: {
  4580. source: "./media/characters/deerpuff/sitting.svg",
  4581. bottom: 44 / 400,
  4582. extra: 1
  4583. }
  4584. },
  4585. taurLaying: {
  4586. height: math.unit(6, "feet"),
  4587. weight: math.unit(400, "lbs"),
  4588. name: "Taur (Laying)",
  4589. image: {
  4590. source: "./media/characters/deerpuff/taur-laying.svg"
  4591. }
  4592. },
  4593. },
  4594. [
  4595. {
  4596. name: "Puffball",
  4597. height: math.unit(6, "inches")
  4598. },
  4599. {
  4600. name: "Normalpuff",
  4601. height: math.unit(5.75, "feet")
  4602. },
  4603. {
  4604. name: "Macropuff",
  4605. height: math.unit(1500, "feet"),
  4606. default: true
  4607. },
  4608. {
  4609. name: "Megapuff",
  4610. height: math.unit(500, "miles")
  4611. },
  4612. {
  4613. name: "Gigapuff",
  4614. height: math.unit(250000, "miles")
  4615. },
  4616. {
  4617. name: "Omegapuff",
  4618. height: math.unit(1000, "lightyears")
  4619. },
  4620. ]
  4621. ))
  4622. characterMakers.push(() => makeCharacter(
  4623. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4624. {
  4625. stomping: {
  4626. height: math.unit(6, "feet"),
  4627. weight: math.unit(170, "lbs"),
  4628. name: "Stomping",
  4629. image: {
  4630. source: "./media/characters/vivian/stomping.svg"
  4631. }
  4632. },
  4633. sitting: {
  4634. height: math.unit(6 / 1.75, "feet"),
  4635. weight: math.unit(170, "lbs"),
  4636. name: "Sitting",
  4637. image: {
  4638. source: "./media/characters/vivian/sitting.svg",
  4639. bottom: 1 / 6.4,
  4640. extra: 1,
  4641. }
  4642. },
  4643. },
  4644. [
  4645. {
  4646. name: "Normal",
  4647. height: math.unit(7, "feet"),
  4648. default: true
  4649. },
  4650. {
  4651. name: "Macro",
  4652. height: math.unit(10, "stories")
  4653. },
  4654. {
  4655. name: "Macro+",
  4656. height: math.unit(30, "stories")
  4657. },
  4658. {
  4659. name: "Megamacro",
  4660. height: math.unit(10, "miles")
  4661. },
  4662. {
  4663. name: "Megamacro+",
  4664. height: math.unit(2750000, "meters")
  4665. },
  4666. ]
  4667. ))
  4668. characterMakers.push(() => makeCharacter(
  4669. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4670. {
  4671. front: {
  4672. height: math.unit(6, "feet"),
  4673. weight: math.unit(160, "lbs"),
  4674. name: "Front",
  4675. image: {
  4676. source: "./media/characters/prince/front.svg",
  4677. extra: 3400 / 3000
  4678. }
  4679. },
  4680. jumping: {
  4681. height: math.unit(6, "feet"),
  4682. weight: math.unit(160, "lbs"),
  4683. name: "Jumping",
  4684. image: {
  4685. source: "./media/characters/prince/jump.svg",
  4686. extra: 2555 / 2134
  4687. }
  4688. },
  4689. },
  4690. [
  4691. {
  4692. name: "Normal",
  4693. height: math.unit(7.75, "feet"),
  4694. default: true
  4695. },
  4696. {
  4697. name: "Not cute",
  4698. height: math.unit(17, "feet")
  4699. },
  4700. {
  4701. name: "I said NOT",
  4702. height: math.unit(91, "feet")
  4703. },
  4704. {
  4705. name: "Please stop",
  4706. height: math.unit(560, "feet")
  4707. },
  4708. {
  4709. name: "What have you done",
  4710. height: math.unit(2200, "feet")
  4711. },
  4712. {
  4713. name: "Deer God",
  4714. height: math.unit(3.6, "miles")
  4715. },
  4716. ]
  4717. ))
  4718. characterMakers.push(() => makeCharacter(
  4719. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4720. {
  4721. standing: {
  4722. height: math.unit(6, "feet"),
  4723. weight: math.unit(300, "lbs"),
  4724. name: "Standing",
  4725. image: {
  4726. source: "./media/characters/psymon/standing.svg",
  4727. extra: 1888 / 1810,
  4728. bottom: 0.05
  4729. }
  4730. },
  4731. slithering: {
  4732. height: math.unit(6, "feet"),
  4733. weight: math.unit(300, "lbs"),
  4734. name: "Slithering",
  4735. image: {
  4736. source: "./media/characters/psymon/slithering.svg",
  4737. extra: 1330 / 1224
  4738. }
  4739. },
  4740. slitheringAlt: {
  4741. height: math.unit(6, "feet"),
  4742. weight: math.unit(300, "lbs"),
  4743. name: "Slithering (Alt)",
  4744. image: {
  4745. source: "./media/characters/psymon/slithering-alt.svg",
  4746. extra: 1330 / 1224
  4747. }
  4748. },
  4749. },
  4750. [
  4751. {
  4752. name: "Normal",
  4753. height: math.unit(11.25, "feet"),
  4754. default: true
  4755. },
  4756. {
  4757. name: "Large",
  4758. height: math.unit(27, "feet")
  4759. },
  4760. {
  4761. name: "Giant",
  4762. height: math.unit(87, "feet")
  4763. },
  4764. {
  4765. name: "Macro",
  4766. height: math.unit(365, "feet")
  4767. },
  4768. {
  4769. name: "Megamacro",
  4770. height: math.unit(3, "miles")
  4771. },
  4772. {
  4773. name: "World Serpent",
  4774. height: math.unit(8000, "miles")
  4775. },
  4776. ]
  4777. ))
  4778. characterMakers.push(() => makeCharacter(
  4779. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4780. {
  4781. front: {
  4782. height: math.unit(6, "feet"),
  4783. weight: math.unit(180, "lbs"),
  4784. name: "Front",
  4785. image: {
  4786. source: "./media/characters/daimos/front.svg",
  4787. extra: 4160 / 3897,
  4788. bottom: 0.021
  4789. }
  4790. }
  4791. },
  4792. [
  4793. {
  4794. name: "Normal",
  4795. height: math.unit(8, "feet"),
  4796. default: true
  4797. },
  4798. {
  4799. name: "Big Dog",
  4800. height: math.unit(22, "feet")
  4801. },
  4802. {
  4803. name: "Macro",
  4804. height: math.unit(127, "feet")
  4805. },
  4806. {
  4807. name: "Megamacro",
  4808. height: math.unit(3600, "feet")
  4809. },
  4810. ]
  4811. ))
  4812. characterMakers.push(() => makeCharacter(
  4813. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4814. {
  4815. side: {
  4816. height: math.unit(6, "feet"),
  4817. weight: math.unit(180, "lbs"),
  4818. name: "Side",
  4819. image: {
  4820. source: "./media/characters/blake/side.svg",
  4821. extra: 1212 / 1120,
  4822. bottom: 0.05
  4823. }
  4824. },
  4825. crouched: {
  4826. height: math.unit(6 * 0.57, "feet"),
  4827. weight: math.unit(180, "lbs"),
  4828. name: "Crouched",
  4829. image: {
  4830. source: "./media/characters/blake/crouched.svg",
  4831. extra: 840 / 587,
  4832. bottom: 0.04
  4833. }
  4834. },
  4835. bent: {
  4836. height: math.unit(6 * 0.75, "feet"),
  4837. weight: math.unit(180, "lbs"),
  4838. name: "Bent",
  4839. image: {
  4840. source: "./media/characters/blake/bent.svg",
  4841. extra: 592 / 544,
  4842. bottom: 0.035
  4843. }
  4844. },
  4845. },
  4846. [
  4847. {
  4848. name: "Normal",
  4849. height: math.unit(8 + 1 / 6, "feet"),
  4850. default: true
  4851. },
  4852. {
  4853. name: "Big Backside",
  4854. height: math.unit(37, "feet")
  4855. },
  4856. {
  4857. name: "Subway Shredder",
  4858. height: math.unit(72, "feet")
  4859. },
  4860. {
  4861. name: "City Carver",
  4862. height: math.unit(1675, "feet")
  4863. },
  4864. {
  4865. name: "Tectonic Tweaker",
  4866. height: math.unit(2300, "miles")
  4867. },
  4868. ]
  4869. ))
  4870. characterMakers.push(() => makeCharacter(
  4871. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4872. {
  4873. front: {
  4874. height: math.unit(6, "feet"),
  4875. weight: math.unit(180, "lbs"),
  4876. name: "Front",
  4877. image: {
  4878. source: "./media/characters/guisetto/front.svg",
  4879. extra: 856 / 817,
  4880. bottom: 0.06
  4881. }
  4882. },
  4883. airborne: {
  4884. height: math.unit(6, "feet"),
  4885. weight: math.unit(180, "lbs"),
  4886. name: "Airborne",
  4887. image: {
  4888. source: "./media/characters/guisetto/airborne.svg",
  4889. extra: 584 / 525
  4890. }
  4891. },
  4892. },
  4893. [
  4894. {
  4895. name: "Normal",
  4896. height: math.unit(10 + 11 / 12, "feet"),
  4897. default: true
  4898. },
  4899. {
  4900. name: "Large",
  4901. height: math.unit(35, "feet")
  4902. },
  4903. {
  4904. name: "Macro",
  4905. height: math.unit(475, "feet")
  4906. },
  4907. ]
  4908. ))
  4909. characterMakers.push(() => makeCharacter(
  4910. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  4911. {
  4912. front: {
  4913. height: math.unit(6, "feet"),
  4914. weight: math.unit(180, "lbs"),
  4915. name: "Front",
  4916. image: {
  4917. source: "./media/characters/luxor/front.svg",
  4918. extra: 2940 / 2152
  4919. }
  4920. },
  4921. back: {
  4922. height: math.unit(6, "feet"),
  4923. weight: math.unit(180, "lbs"),
  4924. name: "Back",
  4925. image: {
  4926. source: "./media/characters/luxor/back.svg",
  4927. extra: 1083 / 960
  4928. }
  4929. },
  4930. },
  4931. [
  4932. {
  4933. name: "Normal",
  4934. height: math.unit(5 + 5 / 6, "feet"),
  4935. default: true
  4936. },
  4937. {
  4938. name: "Lamp",
  4939. height: math.unit(50, "feet")
  4940. },
  4941. {
  4942. name: "Lämp",
  4943. height: math.unit(300, "feet")
  4944. },
  4945. {
  4946. name: "The sun is a lamp",
  4947. height: math.unit(250000, "miles")
  4948. },
  4949. ]
  4950. ))
  4951. characterMakers.push(() => makeCharacter(
  4952. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  4953. {
  4954. front: {
  4955. height: math.unit(6, "feet"),
  4956. weight: math.unit(50, "lbs"),
  4957. name: "Front",
  4958. image: {
  4959. source: "./media/characters/huoyan/front.svg"
  4960. }
  4961. },
  4962. side: {
  4963. height: math.unit(6, "feet"),
  4964. weight: math.unit(180, "lbs"),
  4965. name: "Side",
  4966. image: {
  4967. source: "./media/characters/huoyan/side.svg"
  4968. }
  4969. },
  4970. },
  4971. [
  4972. {
  4973. name: "Chef",
  4974. height: math.unit(9, "feet")
  4975. },
  4976. {
  4977. name: "Normal",
  4978. height: math.unit(65, "feet"),
  4979. default: true
  4980. },
  4981. {
  4982. name: "Macro",
  4983. height: math.unit(780, "feet")
  4984. },
  4985. {
  4986. name: "Flaming Mountain",
  4987. height: math.unit(4.8, "miles")
  4988. },
  4989. {
  4990. name: "Celestial",
  4991. height: math.unit(765000, "miles")
  4992. },
  4993. ]
  4994. ))
  4995. characterMakers.push(() => makeCharacter(
  4996. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  4997. {
  4998. front: {
  4999. height: math.unit(5 + 3 / 4, "feet"),
  5000. weight: math.unit(120, "lbs"),
  5001. name: "Front",
  5002. image: {
  5003. source: "./media/characters/tails/front.svg"
  5004. }
  5005. }
  5006. },
  5007. [
  5008. {
  5009. name: "Normal",
  5010. height: math.unit(5 + 3 / 4, "feet"),
  5011. default: true
  5012. }
  5013. ]
  5014. ))
  5015. characterMakers.push(() => makeCharacter(
  5016. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5017. {
  5018. front: {
  5019. height: math.unit(4, "feet"),
  5020. weight: math.unit(50, "lbs"),
  5021. name: "Front",
  5022. image: {
  5023. source: "./media/characters/rainy/front.svg"
  5024. }
  5025. }
  5026. },
  5027. [
  5028. {
  5029. name: "Macro",
  5030. height: math.unit(800, "feet"),
  5031. default: true
  5032. }
  5033. ]
  5034. ))
  5035. characterMakers.push(() => makeCharacter(
  5036. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5037. {
  5038. front: {
  5039. height: math.unit(6, "feet"),
  5040. weight: math.unit(150, "lbs"),
  5041. name: "Front",
  5042. image: {
  5043. source: "./media/characters/rainier/front.svg"
  5044. }
  5045. }
  5046. },
  5047. [
  5048. {
  5049. name: "Micro",
  5050. height: math.unit(2, "mm"),
  5051. default: true
  5052. }
  5053. ]
  5054. ))
  5055. characterMakers.push(() => makeCharacter(
  5056. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5057. {
  5058. front: {
  5059. height: math.unit(6, "feet"),
  5060. weight: math.unit(180, "lbs"),
  5061. name: "Front",
  5062. image: {
  5063. source: "./media/characters/andy/front.svg"
  5064. }
  5065. }
  5066. },
  5067. [
  5068. {
  5069. name: "Normal",
  5070. height: math.unit(8, "feet"),
  5071. default: true
  5072. },
  5073. {
  5074. name: "Macro",
  5075. height: math.unit(1000, "feet")
  5076. },
  5077. {
  5078. name: "Megamacro",
  5079. height: math.unit(5, "miles")
  5080. },
  5081. {
  5082. name: "Gigamacro",
  5083. height: math.unit(5000, "miles")
  5084. },
  5085. ]
  5086. ))
  5087. characterMakers.push(() => makeCharacter(
  5088. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5089. {
  5090. front: {
  5091. height: math.unit(6, "feet"),
  5092. weight: math.unit(210, "lbs"),
  5093. name: "Front",
  5094. image: {
  5095. source: "./media/characters/cimmaron/front-sfw.svg",
  5096. extra: 701 / 676,
  5097. bottom: 0.046
  5098. }
  5099. },
  5100. back: {
  5101. height: math.unit(6, "feet"),
  5102. weight: math.unit(210, "lbs"),
  5103. name: "Back",
  5104. image: {
  5105. source: "./media/characters/cimmaron/back-sfw.svg",
  5106. extra: 701 / 676,
  5107. bottom: 0.046
  5108. }
  5109. },
  5110. frontNsfw: {
  5111. height: math.unit(6, "feet"),
  5112. weight: math.unit(210, "lbs"),
  5113. name: "Front (NSFW)",
  5114. image: {
  5115. source: "./media/characters/cimmaron/front-nsfw.svg",
  5116. extra: 701 / 676,
  5117. bottom: 0.046
  5118. }
  5119. },
  5120. backNsfw: {
  5121. height: math.unit(6, "feet"),
  5122. weight: math.unit(210, "lbs"),
  5123. name: "Back (NSFW)",
  5124. image: {
  5125. source: "./media/characters/cimmaron/back-nsfw.svg",
  5126. extra: 701 / 676,
  5127. bottom: 0.046
  5128. }
  5129. },
  5130. dick: {
  5131. height: math.unit(1.714, "feet"),
  5132. name: "Dick",
  5133. image: {
  5134. source: "./media/characters/cimmaron/dick.svg"
  5135. }
  5136. },
  5137. },
  5138. [
  5139. {
  5140. name: "Normal",
  5141. height: math.unit(6, "feet"),
  5142. default: true
  5143. },
  5144. {
  5145. name: "Macro Mayor",
  5146. height: math.unit(350, "meters")
  5147. },
  5148. ]
  5149. ))
  5150. characterMakers.push(() => makeCharacter(
  5151. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5152. {
  5153. front: {
  5154. height: math.unit(6, "feet"),
  5155. weight: math.unit(200, "lbs"),
  5156. name: "Front",
  5157. image: {
  5158. source: "./media/characters/akari/front.svg",
  5159. extra: 962 / 901,
  5160. bottom: 0.04
  5161. }
  5162. }
  5163. },
  5164. [
  5165. {
  5166. name: "Micro",
  5167. height: math.unit(5, "inches"),
  5168. default: true
  5169. },
  5170. {
  5171. name: "Normal",
  5172. height: math.unit(7, "feet")
  5173. },
  5174. ]
  5175. ))
  5176. characterMakers.push(() => makeCharacter(
  5177. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5178. {
  5179. front: {
  5180. height: math.unit(6, "feet"),
  5181. weight: math.unit(140, "lbs"),
  5182. name: "Front",
  5183. image: {
  5184. source: "./media/characters/cynosura/front.svg",
  5185. extra: 896 / 847
  5186. }
  5187. },
  5188. back: {
  5189. height: math.unit(6, "feet"),
  5190. weight: math.unit(140, "lbs"),
  5191. name: "Back",
  5192. image: {
  5193. source: "./media/characters/cynosura/back.svg",
  5194. extra: 1365 / 1250
  5195. }
  5196. },
  5197. },
  5198. [
  5199. {
  5200. name: "Micro",
  5201. height: math.unit(4, "inches")
  5202. },
  5203. {
  5204. name: "Normal",
  5205. height: math.unit(5.75, "feet"),
  5206. default: true
  5207. },
  5208. {
  5209. name: "Tall",
  5210. height: math.unit(10, "feet")
  5211. },
  5212. {
  5213. name: "Big",
  5214. height: math.unit(20, "feet")
  5215. },
  5216. {
  5217. name: "Macro",
  5218. height: math.unit(50, "feet")
  5219. },
  5220. ]
  5221. ))
  5222. characterMakers.push(() => makeCharacter(
  5223. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5224. {
  5225. front: {
  5226. height: math.unit(6, "feet"),
  5227. weight: math.unit(170, "lbs"),
  5228. name: "Front",
  5229. image: {
  5230. source: "./media/characters/gin/front.svg",
  5231. extra: 1.053,
  5232. bottom: 0.025
  5233. }
  5234. },
  5235. foot: {
  5236. height: math.unit(6 / 4.25, "feet"),
  5237. name: "Foot",
  5238. image: {
  5239. source: "./media/characters/gin/foot.svg"
  5240. }
  5241. },
  5242. sole: {
  5243. height: math.unit(6 / 4.40, "feet"),
  5244. name: "Sole",
  5245. image: {
  5246. source: "./media/characters/gin/sole.svg"
  5247. }
  5248. },
  5249. },
  5250. [
  5251. {
  5252. name: "Normal",
  5253. height: math.unit(13 + 2 / 12, "feet")
  5254. },
  5255. {
  5256. name: "Macro",
  5257. height: math.unit(1500, "feet")
  5258. },
  5259. {
  5260. name: "Megamacro",
  5261. height: math.unit(200, "miles"),
  5262. default: true
  5263. },
  5264. {
  5265. name: "Gigamacro",
  5266. height: math.unit(500, "megameters")
  5267. },
  5268. {
  5269. name: "Teramacro",
  5270. height: math.unit(15, "lightyears")
  5271. }
  5272. ]
  5273. ))
  5274. characterMakers.push(() => makeCharacter(
  5275. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5276. {
  5277. front: {
  5278. height: math.unit(6 + 1 / 6, "feet"),
  5279. weight: math.unit(178, "lbs"),
  5280. name: "Front",
  5281. image: {
  5282. source: "./media/characters/guy/front.svg"
  5283. }
  5284. }
  5285. },
  5286. [
  5287. {
  5288. name: "Normal",
  5289. height: math.unit(6 + 1 / 6, "feet"),
  5290. default: true
  5291. },
  5292. {
  5293. name: "Large",
  5294. height: math.unit(25 + 7 / 12, "feet")
  5295. },
  5296. {
  5297. name: "Macro",
  5298. height: math.unit(60 + 9 / 12, "feet")
  5299. },
  5300. {
  5301. name: "Macro+",
  5302. height: math.unit(246, "feet")
  5303. },
  5304. {
  5305. name: "Macro++",
  5306. height: math.unit(878, "feet")
  5307. }
  5308. ]
  5309. ))
  5310. characterMakers.push(() => makeCharacter(
  5311. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5312. {
  5313. front: {
  5314. height: math.unit(9, "feet"),
  5315. weight: math.unit(800, "lbs"),
  5316. name: "Front",
  5317. image: {
  5318. source: "./media/characters/tiberius/front.svg",
  5319. extra: 2295 / 2071
  5320. }
  5321. },
  5322. back: {
  5323. height: math.unit(9, "feet"),
  5324. weight: math.unit(800, "lbs"),
  5325. name: "Back",
  5326. image: {
  5327. source: "./media/characters/tiberius/back.svg",
  5328. extra: 2373 / 2160
  5329. }
  5330. },
  5331. },
  5332. [
  5333. {
  5334. name: "Normal",
  5335. height: math.unit(9, "feet"),
  5336. default: true
  5337. }
  5338. ]
  5339. ))
  5340. characterMakers.push(() => makeCharacter(
  5341. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5342. {
  5343. front: {
  5344. height: math.unit(6, "feet"),
  5345. weight: math.unit(600, "lbs"),
  5346. name: "Front",
  5347. image: {
  5348. source: "./media/characters/surgo/front.svg",
  5349. extra: 3591 / 2227
  5350. }
  5351. },
  5352. back: {
  5353. height: math.unit(6, "feet"),
  5354. weight: math.unit(600, "lbs"),
  5355. name: "Back",
  5356. image: {
  5357. source: "./media/characters/surgo/back.svg",
  5358. extra: 3557 / 2228
  5359. }
  5360. },
  5361. laying: {
  5362. height: math.unit(6 * 0.85, "feet"),
  5363. weight: math.unit(600, "lbs"),
  5364. name: "Laying",
  5365. image: {
  5366. source: "./media/characters/surgo/laying.svg"
  5367. }
  5368. },
  5369. },
  5370. [
  5371. {
  5372. name: "Normal",
  5373. height: math.unit(6, "feet"),
  5374. default: true
  5375. }
  5376. ]
  5377. ))
  5378. characterMakers.push(() => makeCharacter(
  5379. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5380. {
  5381. side: {
  5382. height: math.unit(6, "feet"),
  5383. weight: math.unit(150, "lbs"),
  5384. name: "Side",
  5385. image: {
  5386. source: "./media/characters/cibus/side.svg",
  5387. extra: 800 / 400
  5388. }
  5389. },
  5390. },
  5391. [
  5392. {
  5393. name: "Normal",
  5394. height: math.unit(6, "feet"),
  5395. default: true
  5396. }
  5397. ]
  5398. ))
  5399. characterMakers.push(() => makeCharacter(
  5400. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5401. {
  5402. front: {
  5403. height: math.unit(6, "feet"),
  5404. weight: math.unit(240, "lbs"),
  5405. name: "Front",
  5406. image: {
  5407. source: "./media/characters/nibbles/front.svg"
  5408. }
  5409. },
  5410. side: {
  5411. height: math.unit(6, "feet"),
  5412. weight: math.unit(240, "lbs"),
  5413. name: "Side",
  5414. image: {
  5415. source: "./media/characters/nibbles/side.svg"
  5416. }
  5417. },
  5418. },
  5419. [
  5420. {
  5421. name: "Normal",
  5422. height: math.unit(9, "feet"),
  5423. default: true
  5424. }
  5425. ]
  5426. ))
  5427. characterMakers.push(() => makeCharacter(
  5428. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5429. {
  5430. side: {
  5431. height: math.unit(5 + 1 / 6, "feet"),
  5432. weight: math.unit(130, "lbs"),
  5433. name: "Side",
  5434. image: {
  5435. source: "./media/characters/rikky/side.svg",
  5436. extra: 851/801
  5437. }
  5438. },
  5439. },
  5440. [
  5441. {
  5442. name: "Normal",
  5443. height: math.unit(5 + 1 / 6, "feet")
  5444. },
  5445. {
  5446. name: "Macro",
  5447. height: math.unit(152, "feet"),
  5448. default: true
  5449. },
  5450. {
  5451. name: "Megamacro",
  5452. height: math.unit(7, "miles")
  5453. }
  5454. ]
  5455. ))
  5456. characterMakers.push(() => makeCharacter(
  5457. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5458. {
  5459. side: {
  5460. height: math.unit(370, "cm"),
  5461. weight: math.unit(350, "lbs"),
  5462. name: "Side",
  5463. image: {
  5464. source: "./media/characters/malfressa/side.svg"
  5465. }
  5466. },
  5467. walking: {
  5468. height: math.unit(370, "cm"),
  5469. weight: math.unit(350, "lbs"),
  5470. name: "Walking",
  5471. image: {
  5472. source: "./media/characters/malfressa/walking.svg"
  5473. }
  5474. },
  5475. feral: {
  5476. height: math.unit(2500, "cm"),
  5477. weight: math.unit(100000, "lbs"),
  5478. name: "Feral",
  5479. image: {
  5480. source: "./media/characters/malfressa/feral.svg",
  5481. extra: 2108 / 837,
  5482. bottom: 0.02
  5483. }
  5484. },
  5485. },
  5486. [
  5487. {
  5488. name: "Normal",
  5489. height: math.unit(370, "cm")
  5490. },
  5491. {
  5492. name: "Macro",
  5493. height: math.unit(300, "meters"),
  5494. default: true
  5495. }
  5496. ]
  5497. ))
  5498. characterMakers.push(() => makeCharacter(
  5499. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5500. {
  5501. front: {
  5502. height: math.unit(6, "feet"),
  5503. weight: math.unit(60, "kg"),
  5504. name: "Front",
  5505. image: {
  5506. source: "./media/characters/jaro/front.svg"
  5507. }
  5508. },
  5509. back: {
  5510. height: math.unit(6, "feet"),
  5511. weight: math.unit(60, "kg"),
  5512. name: "Back",
  5513. image: {
  5514. source: "./media/characters/jaro/back.svg"
  5515. }
  5516. },
  5517. },
  5518. [
  5519. {
  5520. name: "Micro",
  5521. height: math.unit(7, "inches")
  5522. },
  5523. {
  5524. name: "Normal",
  5525. height: math.unit(5.5, "feet"),
  5526. default: true
  5527. },
  5528. {
  5529. name: "Minimacro",
  5530. height: math.unit(20, "feet")
  5531. },
  5532. {
  5533. name: "Macro",
  5534. height: math.unit(200, "meters")
  5535. }
  5536. ]
  5537. ))
  5538. characterMakers.push(() => makeCharacter(
  5539. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5540. {
  5541. front: {
  5542. height: math.unit(6, "feet"),
  5543. weight: math.unit(195, "lb"),
  5544. name: "Front",
  5545. image: {
  5546. source: "./media/characters/rogue/front.svg"
  5547. }
  5548. },
  5549. },
  5550. [
  5551. {
  5552. name: "Macro",
  5553. height: math.unit(90, "feet"),
  5554. default: true
  5555. },
  5556. ]
  5557. ))
  5558. characterMakers.push(() => makeCharacter(
  5559. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5560. {
  5561. front: {
  5562. height: math.unit(5 + 8 / 12, "feet"),
  5563. weight: math.unit(140, "lb"),
  5564. name: "Front",
  5565. image: {
  5566. source: "./media/characters/piper/front.svg",
  5567. extra: 3928 / 3681
  5568. }
  5569. },
  5570. },
  5571. [
  5572. {
  5573. name: "Micro",
  5574. height: math.unit(2, "inches")
  5575. },
  5576. {
  5577. name: "Normal",
  5578. height: math.unit(5 + 8 / 12, "feet")
  5579. },
  5580. {
  5581. name: "Macro",
  5582. height: math.unit(250, "feet"),
  5583. default: true
  5584. },
  5585. {
  5586. name: "Megamacro",
  5587. height: math.unit(7, "miles")
  5588. },
  5589. ]
  5590. ))
  5591. characterMakers.push(() => makeCharacter(
  5592. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5593. {
  5594. front: {
  5595. height: math.unit(6, "feet"),
  5596. weight: math.unit(220, "lb"),
  5597. name: "Front",
  5598. image: {
  5599. source: "./media/characters/gemini/front.svg"
  5600. }
  5601. },
  5602. back: {
  5603. height: math.unit(6, "feet"),
  5604. weight: math.unit(220, "lb"),
  5605. name: "Back",
  5606. image: {
  5607. source: "./media/characters/gemini/back.svg"
  5608. }
  5609. },
  5610. kneeling: {
  5611. height: math.unit(6 / 1.5, "feet"),
  5612. weight: math.unit(220, "lb"),
  5613. name: "Kneeling",
  5614. image: {
  5615. source: "./media/characters/gemini/kneeling.svg",
  5616. bottom: 0.02
  5617. }
  5618. },
  5619. },
  5620. [
  5621. {
  5622. name: "Macro",
  5623. height: math.unit(300, "meters"),
  5624. default: true
  5625. },
  5626. {
  5627. name: "Megamacro",
  5628. height: math.unit(6900, "meters")
  5629. },
  5630. ]
  5631. ))
  5632. characterMakers.push(() => makeCharacter(
  5633. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5634. {
  5635. anthro: {
  5636. height: math.unit(2.35, "meters"),
  5637. weight: math.unit(73, "kg"),
  5638. name: "Anthro",
  5639. image: {
  5640. source: "./media/characters/alicia/anthro.svg",
  5641. extra: 2571 / 2385,
  5642. bottom: 75 / 2648
  5643. }
  5644. },
  5645. paw: {
  5646. height: math.unit(1.32, "feet"),
  5647. name: "Paw",
  5648. image: {
  5649. source: "./media/characters/alicia/paw.svg"
  5650. }
  5651. },
  5652. feral: {
  5653. height: math.unit(1.69, "meters"),
  5654. weight: math.unit(73, "kg"),
  5655. name: "Feral",
  5656. image: {
  5657. source: "./media/characters/alicia/feral.svg",
  5658. extra: 2123 / 1715,
  5659. bottom: 222 / 2349
  5660. }
  5661. },
  5662. },
  5663. [
  5664. {
  5665. name: "Normal",
  5666. height: math.unit(2.35, "meters")
  5667. },
  5668. {
  5669. name: "Macro",
  5670. height: math.unit(60, "meters"),
  5671. default: true
  5672. },
  5673. {
  5674. name: "Megamacro",
  5675. height: math.unit(10000, "kilometers")
  5676. },
  5677. ]
  5678. ))
  5679. characterMakers.push(() => makeCharacter(
  5680. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5681. {
  5682. front: {
  5683. height: math.unit(7, "feet"),
  5684. weight: math.unit(250, "lbs"),
  5685. name: "Front",
  5686. image: {
  5687. source: "./media/characters/archy/front.svg"
  5688. }
  5689. }
  5690. },
  5691. [
  5692. {
  5693. name: "Micro",
  5694. height: math.unit(1, "inch")
  5695. },
  5696. {
  5697. name: "Shorty",
  5698. height: math.unit(5, "feet")
  5699. },
  5700. {
  5701. name: "Normal",
  5702. height: math.unit(7, "feet")
  5703. },
  5704. {
  5705. name: "Macro",
  5706. height: math.unit(600, "meters"),
  5707. default: true
  5708. },
  5709. {
  5710. name: "Megamacro",
  5711. height: math.unit(1, "mile")
  5712. },
  5713. ]
  5714. ))
  5715. characterMakers.push(() => makeCharacter(
  5716. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5717. {
  5718. front: {
  5719. height: math.unit(1.65, "meters"),
  5720. weight: math.unit(74, "kg"),
  5721. name: "Front",
  5722. image: {
  5723. source: "./media/characters/berri/front.svg",
  5724. extra: 857 / 837,
  5725. bottom: 18 / 877
  5726. }
  5727. },
  5728. bum: {
  5729. height: math.unit(1.46, "feet"),
  5730. name: "Bum",
  5731. image: {
  5732. source: "./media/characters/berri/bum.svg"
  5733. }
  5734. },
  5735. mouth: {
  5736. height: math.unit(0.44, "feet"),
  5737. name: "Mouth",
  5738. image: {
  5739. source: "./media/characters/berri/mouth.svg"
  5740. }
  5741. },
  5742. paw: {
  5743. height: math.unit(0.826, "feet"),
  5744. name: "Paw",
  5745. image: {
  5746. source: "./media/characters/berri/paw.svg"
  5747. }
  5748. },
  5749. },
  5750. [
  5751. {
  5752. name: "Normal",
  5753. height: math.unit(1.65, "meters")
  5754. },
  5755. {
  5756. name: "Macro",
  5757. height: math.unit(60, "m"),
  5758. default: true
  5759. },
  5760. {
  5761. name: "Megamacro",
  5762. height: math.unit(9.213, "km")
  5763. },
  5764. {
  5765. name: "Planet Eater",
  5766. height: math.unit(489, "megameters")
  5767. },
  5768. {
  5769. name: "Teramacro",
  5770. height: math.unit(2471635000000, "meters")
  5771. },
  5772. {
  5773. name: "Examacro",
  5774. height: math.unit(8.0624e+26, "meters")
  5775. }
  5776. ]
  5777. ))
  5778. characterMakers.push(() => makeCharacter(
  5779. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5780. {
  5781. front: {
  5782. height: math.unit(1.72, "meters"),
  5783. weight: math.unit(68, "kg"),
  5784. name: "Front",
  5785. image: {
  5786. source: "./media/characters/lexi/front.svg"
  5787. }
  5788. }
  5789. },
  5790. [
  5791. {
  5792. name: "Very Smol",
  5793. height: math.unit(10, "mm")
  5794. },
  5795. {
  5796. name: "Micro",
  5797. height: math.unit(6.8, "cm"),
  5798. default: true
  5799. },
  5800. {
  5801. name: "Normal",
  5802. height: math.unit(1.72, "m")
  5803. }
  5804. ]
  5805. ))
  5806. characterMakers.push(() => makeCharacter(
  5807. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5808. {
  5809. front: {
  5810. height: math.unit(1.69, "meters"),
  5811. weight: math.unit(68, "kg"),
  5812. name: "Front",
  5813. image: {
  5814. source: "./media/characters/martin/front.svg",
  5815. extra: 596 / 581
  5816. }
  5817. }
  5818. },
  5819. [
  5820. {
  5821. name: "Micro",
  5822. height: math.unit(6.85, "cm"),
  5823. default: true
  5824. },
  5825. {
  5826. name: "Normal",
  5827. height: math.unit(1.69, "m")
  5828. }
  5829. ]
  5830. ))
  5831. characterMakers.push(() => makeCharacter(
  5832. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5833. {
  5834. front: {
  5835. height: math.unit(1.69, "meters"),
  5836. weight: math.unit(68, "kg"),
  5837. name: "Front",
  5838. image: {
  5839. source: "./media/characters/juno/front.svg"
  5840. }
  5841. }
  5842. },
  5843. [
  5844. {
  5845. name: "Micro",
  5846. height: math.unit(7, "cm")
  5847. },
  5848. {
  5849. name: "Normal",
  5850. height: math.unit(1.89, "m")
  5851. },
  5852. {
  5853. name: "Macro",
  5854. height: math.unit(353, "meters"),
  5855. default: true
  5856. }
  5857. ]
  5858. ))
  5859. characterMakers.push(() => makeCharacter(
  5860. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5861. {
  5862. front: {
  5863. height: math.unit(1.93, "meters"),
  5864. weight: math.unit(83, "kg"),
  5865. name: "Front",
  5866. image: {
  5867. source: "./media/characters/samantha/front.svg"
  5868. }
  5869. },
  5870. frontClothed: {
  5871. height: math.unit(1.93, "meters"),
  5872. weight: math.unit(83, "kg"),
  5873. name: "Front (Clothed)",
  5874. image: {
  5875. source: "./media/characters/samantha/front-clothed.svg"
  5876. }
  5877. },
  5878. back: {
  5879. height: math.unit(1.93, "meters"),
  5880. weight: math.unit(83, "kg"),
  5881. name: "Back",
  5882. image: {
  5883. source: "./media/characters/samantha/back.svg"
  5884. }
  5885. },
  5886. },
  5887. [
  5888. {
  5889. name: "Normal",
  5890. height: math.unit(1.93, "m")
  5891. },
  5892. {
  5893. name: "Macro",
  5894. height: math.unit(74, "meters"),
  5895. default: true
  5896. },
  5897. {
  5898. name: "Macro+",
  5899. height: math.unit(223, "meters"),
  5900. },
  5901. {
  5902. name: "Megamacro",
  5903. height: math.unit(8381, "meters"),
  5904. },
  5905. {
  5906. name: "Megamacro+",
  5907. height: math.unit(12000, "kilometers")
  5908. },
  5909. ]
  5910. ))
  5911. characterMakers.push(() => makeCharacter(
  5912. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  5913. {
  5914. front: {
  5915. height: math.unit(1.92, "meters"),
  5916. weight: math.unit(80, "kg"),
  5917. name: "Front",
  5918. image: {
  5919. source: "./media/characters/dr-clay/front.svg"
  5920. }
  5921. },
  5922. frontClothed: {
  5923. height: math.unit(1.92, "meters"),
  5924. weight: math.unit(80, "kg"),
  5925. name: "Front (Clothed)",
  5926. image: {
  5927. source: "./media/characters/dr-clay/front-clothed.svg"
  5928. }
  5929. }
  5930. },
  5931. [
  5932. {
  5933. name: "Normal",
  5934. height: math.unit(1.92, "m")
  5935. },
  5936. {
  5937. name: "Macro",
  5938. height: math.unit(214, "meters"),
  5939. default: true
  5940. },
  5941. {
  5942. name: "Macro+",
  5943. height: math.unit(12.237, "meters"),
  5944. },
  5945. {
  5946. name: "Megamacro",
  5947. height: math.unit(557, "megameters"),
  5948. },
  5949. {
  5950. name: "Unimaginable",
  5951. height: math.unit(120e9, "lightyears")
  5952. },
  5953. ]
  5954. ))
  5955. characterMakers.push(() => makeCharacter(
  5956. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  5957. {
  5958. front: {
  5959. height: math.unit(2, "meters"),
  5960. weight: math.unit(80, "kg"),
  5961. name: "Front",
  5962. image: {
  5963. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  5964. }
  5965. }
  5966. },
  5967. [
  5968. {
  5969. name: "Teramacro",
  5970. height: math.unit(500000, "lightyears"),
  5971. default: true
  5972. },
  5973. ]
  5974. ))
  5975. characterMakers.push(() => makeCharacter(
  5976. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  5977. {
  5978. front: {
  5979. height: math.unit(2, "meters"),
  5980. weight: math.unit(150, "kg"),
  5981. name: "Front",
  5982. image: {
  5983. source: "./media/characters/vemus/front.svg",
  5984. extra: 2384 / 2084,
  5985. bottom: 0.0123
  5986. }
  5987. }
  5988. },
  5989. [
  5990. {
  5991. name: "Normal",
  5992. height: math.unit(3.75, "meters"),
  5993. default: true
  5994. },
  5995. {
  5996. name: "Big",
  5997. height: math.unit(8, "meters")
  5998. },
  5999. {
  6000. name: "Macro",
  6001. height: math.unit(100, "meters")
  6002. },
  6003. {
  6004. name: "Macro+",
  6005. height: math.unit(1500, "meters")
  6006. },
  6007. {
  6008. name: "Stellar",
  6009. height: math.unit(14e8, "meters")
  6010. },
  6011. ]
  6012. ))
  6013. characterMakers.push(() => makeCharacter(
  6014. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6015. {
  6016. front: {
  6017. height: math.unit(2, "meters"),
  6018. weight: math.unit(70, "kg"),
  6019. name: "Front",
  6020. image: {
  6021. source: "./media/characters/beherit/front.svg",
  6022. extra: 1408 / 1242
  6023. }
  6024. }
  6025. },
  6026. [
  6027. {
  6028. name: "Normal",
  6029. height: math.unit(6, "feet")
  6030. },
  6031. {
  6032. name: "Lorg",
  6033. height: math.unit(25, "feet"),
  6034. default: true
  6035. },
  6036. {
  6037. name: "Lorger",
  6038. height: math.unit(75, "feet")
  6039. },
  6040. {
  6041. name: "Macro",
  6042. height: math.unit(200, "meters")
  6043. },
  6044. ]
  6045. ))
  6046. characterMakers.push(() => makeCharacter(
  6047. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6048. {
  6049. front: {
  6050. height: math.unit(2, "meters"),
  6051. weight: math.unit(150, "kg"),
  6052. name: "Front",
  6053. image: {
  6054. source: "./media/characters/everett/front.svg",
  6055. extra: 2038 / 1737,
  6056. bottom: 0.03
  6057. }
  6058. },
  6059. paw: {
  6060. height: math.unit(2 / 3.6, "meters"),
  6061. name: "Paw",
  6062. image: {
  6063. source: "./media/characters/everett/paw.svg"
  6064. }
  6065. },
  6066. },
  6067. [
  6068. {
  6069. name: "Normal",
  6070. height: math.unit(15, "feet"),
  6071. default: true
  6072. },
  6073. {
  6074. name: "Lorg",
  6075. height: math.unit(70, "feet"),
  6076. default: true
  6077. },
  6078. {
  6079. name: "Lorger",
  6080. height: math.unit(250, "feet")
  6081. },
  6082. {
  6083. name: "Macro",
  6084. height: math.unit(500, "meters")
  6085. },
  6086. ]
  6087. ))
  6088. characterMakers.push(() => makeCharacter(
  6089. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  6090. {
  6091. front: {
  6092. height: math.unit(2, "meters"),
  6093. weight: math.unit(86, "kg"),
  6094. name: "Front",
  6095. image: {
  6096. source: "./media/characters/rose-lion/front.svg"
  6097. }
  6098. },
  6099. bent: {
  6100. height: math.unit(2 / 1.4288, "meters"),
  6101. weight: math.unit(86, "kg"),
  6102. name: "Bent",
  6103. image: {
  6104. source: "./media/characters/rose-lion/bent.svg"
  6105. }
  6106. }
  6107. },
  6108. [
  6109. {
  6110. name: "Mini-Micro",
  6111. height: math.unit(1, "cm")
  6112. },
  6113. {
  6114. name: "Micro",
  6115. height: math.unit(3.5, "inches"),
  6116. default: true
  6117. },
  6118. {
  6119. name: "Normal",
  6120. height: math.unit(6 + 1 / 6, "feet")
  6121. },
  6122. {
  6123. name: "Mini-Macro",
  6124. height: math.unit(9 + 10 / 12, "feet")
  6125. },
  6126. ]
  6127. ))
  6128. characterMakers.push(() => makeCharacter(
  6129. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6130. {
  6131. front: {
  6132. height: math.unit(2, "meters"),
  6133. weight: math.unit(350, "lbs"),
  6134. name: "Front",
  6135. image: {
  6136. source: "./media/characters/regal/front.svg"
  6137. }
  6138. },
  6139. back: {
  6140. height: math.unit(2, "meters"),
  6141. weight: math.unit(350, "lbs"),
  6142. name: "Back",
  6143. image: {
  6144. source: "./media/characters/regal/back.svg"
  6145. }
  6146. },
  6147. },
  6148. [
  6149. {
  6150. name: "Macro",
  6151. height: math.unit(350, "feet"),
  6152. default: true
  6153. }
  6154. ]
  6155. ))
  6156. characterMakers.push(() => makeCharacter(
  6157. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6158. {
  6159. front: {
  6160. height: math.unit(4 + 11 / 12, "feet"),
  6161. weight: math.unit(100, "lbs"),
  6162. name: "Front",
  6163. image: {
  6164. source: "./media/characters/opal/front.svg"
  6165. }
  6166. },
  6167. frontAlt: {
  6168. height: math.unit(4 + 11 / 12, "feet"),
  6169. weight: math.unit(100, "lbs"),
  6170. name: "Front (Alt)",
  6171. image: {
  6172. source: "./media/characters/opal/front-alt.svg"
  6173. }
  6174. },
  6175. },
  6176. [
  6177. {
  6178. name: "Small",
  6179. height: math.unit(4 + 11 / 12, "feet")
  6180. },
  6181. {
  6182. name: "Normal",
  6183. height: math.unit(20, "feet"),
  6184. default: true
  6185. },
  6186. {
  6187. name: "Macro",
  6188. height: math.unit(120, "feet")
  6189. },
  6190. {
  6191. name: "Megamacro",
  6192. height: math.unit(80, "miles")
  6193. },
  6194. {
  6195. name: "True Size",
  6196. height: math.unit(100000, "lightyears")
  6197. },
  6198. ]
  6199. ))
  6200. characterMakers.push(() => makeCharacter(
  6201. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6202. {
  6203. front: {
  6204. height: math.unit(6, "feet"),
  6205. weight: math.unit(200, "lbs"),
  6206. name: "Front",
  6207. image: {
  6208. source: "./media/characters/vector-wuff/front.svg"
  6209. }
  6210. }
  6211. },
  6212. [
  6213. {
  6214. name: "Normal",
  6215. height: math.unit(2.8, "meters")
  6216. },
  6217. {
  6218. name: "Macro",
  6219. height: math.unit(450, "meters"),
  6220. default: true
  6221. },
  6222. {
  6223. name: "Megamacro",
  6224. height: math.unit(15, "kilometers")
  6225. }
  6226. ]
  6227. ))
  6228. characterMakers.push(() => makeCharacter(
  6229. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6230. {
  6231. front: {
  6232. height: math.unit(6, "feet"),
  6233. weight: math.unit(256, "lbs"),
  6234. name: "Front",
  6235. image: {
  6236. source: "./media/characters/dannik/front.svg"
  6237. }
  6238. }
  6239. },
  6240. [
  6241. {
  6242. name: "Macro",
  6243. height: math.unit(69.57, "meters"),
  6244. default: true
  6245. },
  6246. ]
  6247. ))
  6248. characterMakers.push(() => makeCharacter(
  6249. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6250. {
  6251. front: {
  6252. height: math.unit(6, "feet"),
  6253. weight: math.unit(120, "lbs"),
  6254. name: "Front",
  6255. image: {
  6256. source: "./media/characters/azura-saharah/front.svg"
  6257. }
  6258. },
  6259. back: {
  6260. height: math.unit(6, "feet"),
  6261. weight: math.unit(120, "lbs"),
  6262. name: "Back",
  6263. image: {
  6264. source: "./media/characters/azura-saharah/back.svg"
  6265. }
  6266. },
  6267. },
  6268. [
  6269. {
  6270. name: "Macro",
  6271. height: math.unit(100, "feet"),
  6272. default: true
  6273. },
  6274. ]
  6275. ))
  6276. characterMakers.push(() => makeCharacter(
  6277. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6278. {
  6279. side: {
  6280. height: math.unit(5 + 4 / 12, "feet"),
  6281. weight: math.unit(163, "lbs"),
  6282. name: "Side",
  6283. image: {
  6284. source: "./media/characters/kennedy/side.svg"
  6285. }
  6286. }
  6287. },
  6288. [
  6289. {
  6290. name: "Standard Doggo",
  6291. height: math.unit(5 + 4 / 12, "feet")
  6292. },
  6293. {
  6294. name: "Big Doggo",
  6295. height: math.unit(25 + 3 / 12, "feet"),
  6296. default: true
  6297. },
  6298. ]
  6299. ))
  6300. characterMakers.push(() => makeCharacter(
  6301. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6302. {
  6303. front: {
  6304. height: math.unit(6, "feet"),
  6305. weight: math.unit(90, "lbs"),
  6306. name: "Front",
  6307. image: {
  6308. source: "./media/characters/odi-lunar/front.svg"
  6309. }
  6310. }
  6311. },
  6312. [
  6313. {
  6314. name: "Micro",
  6315. height: math.unit(3, "inches"),
  6316. default: true
  6317. },
  6318. {
  6319. name: "Normal",
  6320. height: math.unit(5.5, "feet")
  6321. }
  6322. ]
  6323. ))
  6324. characterMakers.push(() => makeCharacter(
  6325. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6326. {
  6327. back: {
  6328. height: math.unit(6, "feet"),
  6329. weight: math.unit(220, "lbs"),
  6330. name: "Back",
  6331. image: {
  6332. source: "./media/characters/mandake/back.svg"
  6333. }
  6334. }
  6335. },
  6336. [
  6337. {
  6338. name: "Normal",
  6339. height: math.unit(7, "feet"),
  6340. default: true
  6341. },
  6342. {
  6343. name: "Macro",
  6344. height: math.unit(78, "feet")
  6345. },
  6346. {
  6347. name: "Macro+",
  6348. height: math.unit(300, "meters")
  6349. },
  6350. {
  6351. name: "Macro++",
  6352. height: math.unit(2400, "feet")
  6353. },
  6354. {
  6355. name: "Megamacro",
  6356. height: math.unit(5167, "meters")
  6357. },
  6358. {
  6359. name: "Gigamacro",
  6360. height: math.unit(41769, "miles")
  6361. },
  6362. ]
  6363. ))
  6364. characterMakers.push(() => makeCharacter(
  6365. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6366. {
  6367. front: {
  6368. height: math.unit(6, "feet"),
  6369. weight: math.unit(120, "lbs"),
  6370. name: "Front",
  6371. image: {
  6372. source: "./media/characters/yozey/front.svg"
  6373. }
  6374. },
  6375. frontAlt: {
  6376. height: math.unit(6, "feet"),
  6377. weight: math.unit(120, "lbs"),
  6378. name: "Front (Alt)",
  6379. image: {
  6380. source: "./media/characters/yozey/front-alt.svg"
  6381. }
  6382. },
  6383. side: {
  6384. height: math.unit(6, "feet"),
  6385. weight: math.unit(120, "lbs"),
  6386. name: "Side",
  6387. image: {
  6388. source: "./media/characters/yozey/side.svg"
  6389. }
  6390. },
  6391. },
  6392. [
  6393. {
  6394. name: "Micro",
  6395. height: math.unit(3, "inches"),
  6396. default: true
  6397. },
  6398. {
  6399. name: "Normal",
  6400. height: math.unit(6, "feet")
  6401. }
  6402. ]
  6403. ))
  6404. characterMakers.push(() => makeCharacter(
  6405. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6406. {
  6407. front: {
  6408. height: math.unit(6, "feet"),
  6409. weight: math.unit(103, "lbs"),
  6410. name: "Front",
  6411. image: {
  6412. source: "./media/characters/valeska-voss/front.svg"
  6413. }
  6414. }
  6415. },
  6416. [
  6417. {
  6418. name: "Mini-Sized Sub",
  6419. height: math.unit(3.1, "inches")
  6420. },
  6421. {
  6422. name: "Mid-Sized Sub",
  6423. height: math.unit(6.2, "inches")
  6424. },
  6425. {
  6426. name: "Full-Sized Sub",
  6427. height: math.unit(9.3, "inches")
  6428. },
  6429. {
  6430. name: "Normal",
  6431. height: math.unit(5 + 2 / 12, "foot"),
  6432. default: true
  6433. },
  6434. ]
  6435. ))
  6436. characterMakers.push(() => makeCharacter(
  6437. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6438. {
  6439. front: {
  6440. height: math.unit(6, "feet"),
  6441. weight: math.unit(160, "lbs"),
  6442. name: "Front",
  6443. image: {
  6444. source: "./media/characters/gene-zeta/front.svg",
  6445. bottom: 0.03,
  6446. extra: 1
  6447. }
  6448. }
  6449. },
  6450. [
  6451. {
  6452. name: "Normal",
  6453. height: math.unit(6.25, "foot"),
  6454. default: true
  6455. },
  6456. ]
  6457. ))
  6458. characterMakers.push(() => makeCharacter(
  6459. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6460. {
  6461. front: {
  6462. height: math.unit(6, "feet"),
  6463. weight: math.unit(350, "lbs"),
  6464. name: "Front",
  6465. image: {
  6466. source: "./media/characters/razinox/front.svg",
  6467. extra: 1686 / 1548,
  6468. bottom: 28.2 / 1868
  6469. }
  6470. },
  6471. back: {
  6472. height: math.unit(6, "feet"),
  6473. weight: math.unit(350, "lbs"),
  6474. name: "Back",
  6475. image: {
  6476. source: "./media/characters/razinox/back.svg",
  6477. extra: 1660 / 1590,
  6478. bottom: 15 / 1665
  6479. }
  6480. },
  6481. },
  6482. [
  6483. {
  6484. name: "Normal",
  6485. height: math.unit(10 + 8 / 12, "foot")
  6486. },
  6487. {
  6488. name: "Minimacro",
  6489. height: math.unit(15, "foot")
  6490. },
  6491. {
  6492. name: "Macro",
  6493. height: math.unit(60, "foot"),
  6494. default: true
  6495. },
  6496. {
  6497. name: "Megamacro",
  6498. height: math.unit(5, "miles")
  6499. },
  6500. {
  6501. name: "Gigamacro",
  6502. height: math.unit(6000, "miles")
  6503. },
  6504. ]
  6505. ))
  6506. characterMakers.push(() => makeCharacter(
  6507. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6508. {
  6509. front: {
  6510. height: math.unit(6, "feet"),
  6511. weight: math.unit(150, "lbs"),
  6512. name: "Front",
  6513. image: {
  6514. source: "./media/characters/cobalt/front.svg"
  6515. }
  6516. }
  6517. },
  6518. [
  6519. {
  6520. name: "Normal",
  6521. height: math.unit(8 + 1 / 12, "foot")
  6522. },
  6523. {
  6524. name: "Macro",
  6525. height: math.unit(111, "foot"),
  6526. default: true
  6527. },
  6528. {
  6529. name: "Supracosmic",
  6530. height: math.unit(1e42, "feet")
  6531. },
  6532. ]
  6533. ))
  6534. characterMakers.push(() => makeCharacter(
  6535. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6536. {
  6537. front: {
  6538. height: math.unit(6, "feet"),
  6539. weight: math.unit(140, "lbs"),
  6540. name: "Front",
  6541. image: {
  6542. source: "./media/characters/amanda/front.svg"
  6543. }
  6544. }
  6545. },
  6546. [
  6547. {
  6548. name: "Micro",
  6549. height: math.unit(5, "inches"),
  6550. default: true
  6551. },
  6552. ]
  6553. ))
  6554. characterMakers.push(() => makeCharacter(
  6555. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6556. {
  6557. front: {
  6558. height: math.unit(5.59, "feet"),
  6559. weight: math.unit(250, "lbs"),
  6560. name: "Front",
  6561. image: {
  6562. source: "./media/characters/teal/front.svg"
  6563. }
  6564. },
  6565. frontAlt: {
  6566. height: math.unit(6, "feet"),
  6567. weight: math.unit(250, "lbs"),
  6568. name: "Front (Alt)",
  6569. image: {
  6570. source: "./media/characters/teal/front-alt.svg",
  6571. bottom: 0.04,
  6572. extra: 1
  6573. }
  6574. },
  6575. },
  6576. [
  6577. {
  6578. name: "Normal",
  6579. height: math.unit(12, "feet"),
  6580. default: true
  6581. },
  6582. {
  6583. name: "Macro",
  6584. height: math.unit(300, "feet")
  6585. },
  6586. ]
  6587. ))
  6588. characterMakers.push(() => makeCharacter(
  6589. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6590. {
  6591. frontCat: {
  6592. height: math.unit(6, "feet"),
  6593. weight: math.unit(180, "lbs"),
  6594. name: "Front (Cat)",
  6595. image: {
  6596. source: "./media/characters/ravin-amulet/front-cat.svg"
  6597. }
  6598. },
  6599. frontCatAlt: {
  6600. height: math.unit(6, "feet"),
  6601. weight: math.unit(180, "lbs"),
  6602. name: "Front (Alt, Cat)",
  6603. image: {
  6604. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6605. }
  6606. },
  6607. frontWerewolf: {
  6608. height: math.unit(6 * 1.2, "feet"),
  6609. weight: math.unit(225, "lbs"),
  6610. name: "Front (Werewolf)",
  6611. image: {
  6612. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6613. }
  6614. },
  6615. backWerewolf: {
  6616. height: math.unit(6 * 1.2, "feet"),
  6617. weight: math.unit(225, "lbs"),
  6618. name: "Back (Werewolf)",
  6619. image: {
  6620. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6621. }
  6622. },
  6623. },
  6624. [
  6625. {
  6626. name: "Nano",
  6627. height: math.unit(1, "micrometer")
  6628. },
  6629. {
  6630. name: "Micro",
  6631. height: math.unit(1, "inch")
  6632. },
  6633. {
  6634. name: "Normal",
  6635. height: math.unit(6, "feet"),
  6636. default: true
  6637. },
  6638. {
  6639. name: "Macro",
  6640. height: math.unit(60, "feet")
  6641. }
  6642. ]
  6643. ))
  6644. characterMakers.push(() => makeCharacter(
  6645. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6646. {
  6647. front: {
  6648. height: math.unit(6, "feet"),
  6649. weight: math.unit(165, "lbs"),
  6650. name: "Front",
  6651. image: {
  6652. source: "./media/characters/fluoresce/front.svg"
  6653. }
  6654. }
  6655. },
  6656. [
  6657. {
  6658. name: "Micro",
  6659. height: math.unit(6, "cm")
  6660. },
  6661. {
  6662. name: "Normal",
  6663. height: math.unit(5 + 7 / 12, "feet"),
  6664. default: true
  6665. },
  6666. {
  6667. name: "Macro",
  6668. height: math.unit(56, "feet")
  6669. },
  6670. {
  6671. name: "Megamacro",
  6672. height: math.unit(1.9, "miles")
  6673. },
  6674. ]
  6675. ))
  6676. characterMakers.push(() => makeCharacter(
  6677. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6678. {
  6679. front: {
  6680. height: math.unit(9 + 6 / 12, "feet"),
  6681. weight: math.unit(523, "lbs"),
  6682. name: "Side",
  6683. image: {
  6684. source: "./media/characters/aurora/side.svg"
  6685. }
  6686. }
  6687. },
  6688. [
  6689. {
  6690. name: "Normal",
  6691. height: math.unit(9 + 6 / 12, "feet")
  6692. },
  6693. {
  6694. name: "Macro",
  6695. height: math.unit(96, "feet"),
  6696. default: true
  6697. },
  6698. {
  6699. name: "Macro+",
  6700. height: math.unit(243, "feet")
  6701. },
  6702. ]
  6703. ))
  6704. characterMakers.push(() => makeCharacter(
  6705. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6706. {
  6707. front: {
  6708. height: math.unit(194, "cm"),
  6709. weight: math.unit(90, "kg"),
  6710. name: "Front",
  6711. image: {
  6712. source: "./media/characters/ranek/front.svg"
  6713. }
  6714. },
  6715. side: {
  6716. height: math.unit(194, "cm"),
  6717. weight: math.unit(90, "kg"),
  6718. name: "Side",
  6719. image: {
  6720. source: "./media/characters/ranek/side.svg"
  6721. }
  6722. },
  6723. back: {
  6724. height: math.unit(194, "cm"),
  6725. weight: math.unit(90, "kg"),
  6726. name: "Back",
  6727. image: {
  6728. source: "./media/characters/ranek/back.svg"
  6729. }
  6730. },
  6731. feral: {
  6732. height: math.unit(30, "cm"),
  6733. weight: math.unit(1.6, "lbs"),
  6734. name: "Feral",
  6735. image: {
  6736. source: "./media/characters/ranek/feral.svg"
  6737. }
  6738. },
  6739. },
  6740. [
  6741. {
  6742. name: "Normal",
  6743. height: math.unit(194, "cm"),
  6744. default: true
  6745. },
  6746. {
  6747. name: "Macro",
  6748. height: math.unit(100, "meters")
  6749. },
  6750. ]
  6751. ))
  6752. characterMakers.push(() => makeCharacter(
  6753. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6754. {
  6755. front: {
  6756. height: math.unit(5 + 6 / 12, "feet"),
  6757. weight: math.unit(153, "lbs"),
  6758. name: "Front",
  6759. image: {
  6760. source: "./media/characters/andrew-cooper/front.svg"
  6761. }
  6762. },
  6763. },
  6764. [
  6765. {
  6766. name: "Nano",
  6767. height: math.unit(1, "mm")
  6768. },
  6769. {
  6770. name: "Micro",
  6771. height: math.unit(2, "inches")
  6772. },
  6773. {
  6774. name: "Normal",
  6775. height: math.unit(5 + 6 / 12, "feet"),
  6776. default: true
  6777. }
  6778. ]
  6779. ))
  6780. characterMakers.push(() => makeCharacter(
  6781. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6782. {
  6783. front: {
  6784. height: math.unit(6, "feet"),
  6785. weight: math.unit(180, "lbs"),
  6786. name: "Front",
  6787. image: {
  6788. source: "./media/characters/akane-sato/front.svg",
  6789. extra: 1219 / 1140
  6790. }
  6791. },
  6792. back: {
  6793. height: math.unit(6, "feet"),
  6794. weight: math.unit(180, "lbs"),
  6795. name: "Back",
  6796. image: {
  6797. source: "./media/characters/akane-sato/back.svg",
  6798. extra: 1219 / 1170
  6799. }
  6800. },
  6801. },
  6802. [
  6803. {
  6804. name: "Normal",
  6805. height: math.unit(2.5, "meters")
  6806. },
  6807. {
  6808. name: "Macro",
  6809. height: math.unit(250, "meters"),
  6810. default: true
  6811. },
  6812. {
  6813. name: "Megamacro",
  6814. height: math.unit(25, "km")
  6815. },
  6816. ]
  6817. ))
  6818. characterMakers.push(() => makeCharacter(
  6819. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6820. {
  6821. front: {
  6822. height: math.unit(6, "feet"),
  6823. weight: math.unit(65, "kg"),
  6824. name: "Front",
  6825. image: {
  6826. source: "./media/characters/rook/front.svg",
  6827. extra: 960 / 950
  6828. }
  6829. }
  6830. },
  6831. [
  6832. {
  6833. name: "Normal",
  6834. height: math.unit(8.8, "feet")
  6835. },
  6836. {
  6837. name: "Macro",
  6838. height: math.unit(88, "feet"),
  6839. default: true
  6840. },
  6841. {
  6842. name: "Megamacro",
  6843. height: math.unit(8, "miles")
  6844. },
  6845. ]
  6846. ))
  6847. characterMakers.push(() => makeCharacter(
  6848. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6849. {
  6850. front: {
  6851. height: math.unit(12 + 2 / 12, "feet"),
  6852. weight: math.unit(808, "lbs"),
  6853. name: "Front",
  6854. image: {
  6855. source: "./media/characters/prodigy/front.svg"
  6856. }
  6857. }
  6858. },
  6859. [
  6860. {
  6861. name: "Normal",
  6862. height: math.unit(12 + 2 / 12, "feet"),
  6863. default: true
  6864. },
  6865. {
  6866. name: "Macro",
  6867. height: math.unit(143, "feet")
  6868. },
  6869. {
  6870. name: "Macro+",
  6871. height: math.unit(400, "feet")
  6872. },
  6873. ]
  6874. ))
  6875. characterMakers.push(() => makeCharacter(
  6876. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6877. {
  6878. front: {
  6879. height: math.unit(6, "feet"),
  6880. weight: math.unit(225, "lbs"),
  6881. name: "Front",
  6882. image: {
  6883. source: "./media/characters/daniel/front.svg"
  6884. }
  6885. },
  6886. leaning: {
  6887. height: math.unit(6, "feet"),
  6888. weight: math.unit(225, "lbs"),
  6889. name: "Leaning",
  6890. image: {
  6891. source: "./media/characters/daniel/leaning.svg"
  6892. }
  6893. },
  6894. },
  6895. [
  6896. {
  6897. name: "Macro",
  6898. height: math.unit(1000, "feet"),
  6899. default: true
  6900. },
  6901. ]
  6902. ))
  6903. characterMakers.push(() => makeCharacter(
  6904. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  6905. {
  6906. front: {
  6907. height: math.unit(6, "feet"),
  6908. weight: math.unit(88, "lbs"),
  6909. name: "Front",
  6910. image: {
  6911. source: "./media/characters/chiros/front.svg",
  6912. extra: 306 / 226
  6913. }
  6914. },
  6915. side: {
  6916. height: math.unit(6, "feet"),
  6917. weight: math.unit(88, "lbs"),
  6918. name: "Side",
  6919. image: {
  6920. source: "./media/characters/chiros/side.svg",
  6921. extra: 306 / 226
  6922. }
  6923. },
  6924. },
  6925. [
  6926. {
  6927. name: "Normal",
  6928. height: math.unit(6, "cm"),
  6929. default: true
  6930. },
  6931. ]
  6932. ))
  6933. characterMakers.push(() => makeCharacter(
  6934. { name: "Selka", species: ["snake"], tags: ["naga"] },
  6935. {
  6936. front: {
  6937. height: math.unit(6, "feet"),
  6938. weight: math.unit(100, "lbs"),
  6939. name: "Front",
  6940. image: {
  6941. source: "./media/characters/selka/front.svg",
  6942. extra: 947 / 887
  6943. }
  6944. }
  6945. },
  6946. [
  6947. {
  6948. name: "Normal",
  6949. height: math.unit(5, "cm"),
  6950. default: true
  6951. },
  6952. ]
  6953. ))
  6954. characterMakers.push(() => makeCharacter(
  6955. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  6956. {
  6957. front: {
  6958. height: math.unit(8 + 3 / 12, "feet"),
  6959. weight: math.unit(424, "lbs"),
  6960. name: "Front",
  6961. image: {
  6962. source: "./media/characters/verin/front.svg",
  6963. extra: 1845 / 1550
  6964. }
  6965. },
  6966. frontArmored: {
  6967. height: math.unit(8 + 3 / 12, "feet"),
  6968. weight: math.unit(424, "lbs"),
  6969. name: "Front (Armored)",
  6970. image: {
  6971. source: "./media/characters/verin/front-armor.svg",
  6972. extra: 1845 / 1550,
  6973. bottom: 0.01
  6974. }
  6975. },
  6976. back: {
  6977. height: math.unit(8 + 3 / 12, "feet"),
  6978. weight: math.unit(424, "lbs"),
  6979. name: "Back",
  6980. image: {
  6981. source: "./media/characters/verin/back.svg",
  6982. bottom: 0.1,
  6983. extra: 1
  6984. }
  6985. },
  6986. foot: {
  6987. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  6988. name: "Foot",
  6989. image: {
  6990. source: "./media/characters/verin/foot.svg"
  6991. }
  6992. },
  6993. },
  6994. [
  6995. {
  6996. name: "Normal",
  6997. height: math.unit(8 + 3 / 12, "feet")
  6998. },
  6999. {
  7000. name: "Minimacro",
  7001. height: math.unit(21, "feet"),
  7002. default: true
  7003. },
  7004. {
  7005. name: "Macro",
  7006. height: math.unit(626, "feet")
  7007. },
  7008. ]
  7009. ))
  7010. characterMakers.push(() => makeCharacter(
  7011. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7012. {
  7013. front: {
  7014. height: math.unit(2.718, "meters"),
  7015. weight: math.unit(150, "lbs"),
  7016. name: "Front",
  7017. image: {
  7018. source: "./media/characters/sovrim-terraquian/front.svg"
  7019. }
  7020. },
  7021. back: {
  7022. height: math.unit(2.718, "meters"),
  7023. weight: math.unit(150, "lbs"),
  7024. name: "Back",
  7025. image: {
  7026. source: "./media/characters/sovrim-terraquian/back.svg"
  7027. }
  7028. }
  7029. },
  7030. [
  7031. {
  7032. name: "Micro",
  7033. height: math.unit(2, "inches")
  7034. },
  7035. {
  7036. name: "Small",
  7037. height: math.unit(1, "meter")
  7038. },
  7039. {
  7040. name: "Normal",
  7041. height: math.unit(Math.E, "meters"),
  7042. default: true
  7043. },
  7044. {
  7045. name: "Macro",
  7046. height: math.unit(20, "meters")
  7047. },
  7048. {
  7049. name: "Macro+",
  7050. height: math.unit(400, "meters")
  7051. },
  7052. ]
  7053. ))
  7054. characterMakers.push(() => makeCharacter(
  7055. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7056. {
  7057. front: {
  7058. height: math.unit(7, "feet"),
  7059. weight: math.unit(489, "lbs"),
  7060. name: "Front",
  7061. image: {
  7062. source: "./media/characters/reece-silvermane/front.svg",
  7063. bottom: 0.02,
  7064. extra: 1
  7065. }
  7066. },
  7067. },
  7068. [
  7069. {
  7070. name: "Macro",
  7071. height: math.unit(1.5, "miles"),
  7072. default: true
  7073. },
  7074. ]
  7075. ))
  7076. characterMakers.push(() => makeCharacter(
  7077. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7078. {
  7079. front: {
  7080. height: math.unit(6, "feet"),
  7081. weight: math.unit(78, "kg"),
  7082. name: "Front",
  7083. image: {
  7084. source: "./media/characters/kane/front.svg",
  7085. extra: 978 / 899
  7086. }
  7087. },
  7088. },
  7089. [
  7090. {
  7091. name: "Normal",
  7092. height: math.unit(2.1, "m"),
  7093. },
  7094. {
  7095. name: "Macro",
  7096. height: math.unit(1, "km"),
  7097. default: true
  7098. },
  7099. ]
  7100. ))
  7101. characterMakers.push(() => makeCharacter(
  7102. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7103. {
  7104. front: {
  7105. height: math.unit(6, "feet"),
  7106. weight: math.unit(200, "kg"),
  7107. name: "Front",
  7108. image: {
  7109. source: "./media/characters/tegon/front.svg",
  7110. bottom: 0.01,
  7111. extra: 1
  7112. }
  7113. },
  7114. },
  7115. [
  7116. {
  7117. name: "Micro",
  7118. height: math.unit(1, "inch")
  7119. },
  7120. {
  7121. name: "Normal",
  7122. height: math.unit(6 + 3 / 12, "feet"),
  7123. default: true
  7124. },
  7125. {
  7126. name: "Macro",
  7127. height: math.unit(300, "feet")
  7128. },
  7129. {
  7130. name: "Megamacro",
  7131. height: math.unit(69, "miles")
  7132. },
  7133. ]
  7134. ))
  7135. characterMakers.push(() => makeCharacter(
  7136. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7137. {
  7138. side: {
  7139. height: math.unit(6, "feet"),
  7140. weight: math.unit(2304, "lbs"),
  7141. name: "Side",
  7142. image: {
  7143. source: "./media/characters/arcturax/side.svg",
  7144. extra: 790 / 376,
  7145. bottom: 0.01
  7146. }
  7147. },
  7148. },
  7149. [
  7150. {
  7151. name: "Micro",
  7152. height: math.unit(2, "inch")
  7153. },
  7154. {
  7155. name: "Normal",
  7156. height: math.unit(6, "feet")
  7157. },
  7158. {
  7159. name: "Macro",
  7160. height: math.unit(39, "feet"),
  7161. default: true
  7162. },
  7163. {
  7164. name: "Megamacro",
  7165. height: math.unit(7, "miles")
  7166. },
  7167. ]
  7168. ))
  7169. characterMakers.push(() => makeCharacter(
  7170. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7171. {
  7172. front: {
  7173. height: math.unit(6, "feet"),
  7174. weight: math.unit(50, "lbs"),
  7175. name: "Front",
  7176. image: {
  7177. source: "./media/characters/sentri/front.svg",
  7178. extra: 1750 / 1570,
  7179. bottom: 0.025
  7180. }
  7181. },
  7182. frontAlt: {
  7183. height: math.unit(6, "feet"),
  7184. weight: math.unit(50, "lbs"),
  7185. name: "Front (Alt)",
  7186. image: {
  7187. source: "./media/characters/sentri/front-alt.svg",
  7188. extra: 1750 / 1570,
  7189. bottom: 0.025
  7190. }
  7191. },
  7192. },
  7193. [
  7194. {
  7195. name: "Normal",
  7196. height: math.unit(15, "feet"),
  7197. default: true
  7198. },
  7199. {
  7200. name: "Macro",
  7201. height: math.unit(2500, "feet")
  7202. }
  7203. ]
  7204. ))
  7205. characterMakers.push(() => makeCharacter(
  7206. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7207. {
  7208. front: {
  7209. height: math.unit(5 + 8 / 12, "feet"),
  7210. weight: math.unit(130, "lbs"),
  7211. name: "Front",
  7212. image: {
  7213. source: "./media/characters/corvin/front.svg",
  7214. extra: 1803 / 1629
  7215. }
  7216. },
  7217. frontShirt: {
  7218. height: math.unit(5 + 8 / 12, "feet"),
  7219. weight: math.unit(130, "lbs"),
  7220. name: "Front (Shirt)",
  7221. image: {
  7222. source: "./media/characters/corvin/front-shirt.svg",
  7223. extra: 1803 / 1629
  7224. }
  7225. },
  7226. frontPoncho: {
  7227. height: math.unit(5 + 8 / 12, "feet"),
  7228. weight: math.unit(130, "lbs"),
  7229. name: "Front (Poncho)",
  7230. image: {
  7231. source: "./media/characters/corvin/front-poncho.svg",
  7232. extra: 1803 / 1629
  7233. }
  7234. },
  7235. side: {
  7236. height: math.unit(5 + 8 / 12, "feet"),
  7237. weight: math.unit(130, "lbs"),
  7238. name: "Side",
  7239. image: {
  7240. source: "./media/characters/corvin/side.svg",
  7241. extra: 1012 / 945
  7242. }
  7243. },
  7244. back: {
  7245. height: math.unit(5 + 8 / 12, "feet"),
  7246. weight: math.unit(130, "lbs"),
  7247. name: "Back",
  7248. image: {
  7249. source: "./media/characters/corvin/back.svg",
  7250. extra: 1803 / 1629
  7251. }
  7252. },
  7253. },
  7254. [
  7255. {
  7256. name: "Micro",
  7257. height: math.unit(3, "inches")
  7258. },
  7259. {
  7260. name: "Normal",
  7261. height: math.unit(5 + 8 / 12, "feet")
  7262. },
  7263. {
  7264. name: "Macro",
  7265. height: math.unit(300, "feet"),
  7266. default: true
  7267. },
  7268. {
  7269. name: "Megamacro",
  7270. height: math.unit(500, "miles")
  7271. }
  7272. ]
  7273. ))
  7274. characterMakers.push(() => makeCharacter(
  7275. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7276. {
  7277. front: {
  7278. height: math.unit(6, "feet"),
  7279. weight: math.unit(135, "lbs"),
  7280. name: "Front",
  7281. image: {
  7282. source: "./media/characters/q/front.svg",
  7283. extra: 854 / 752,
  7284. bottom: 0.005
  7285. }
  7286. },
  7287. back: {
  7288. height: math.unit(6, "feet"),
  7289. weight: math.unit(130, "lbs"),
  7290. name: "Back",
  7291. image: {
  7292. source: "./media/characters/q/back.svg",
  7293. extra: 854 / 752
  7294. }
  7295. },
  7296. },
  7297. [
  7298. {
  7299. name: "Macro",
  7300. height: math.unit(90, "feet"),
  7301. default: true
  7302. },
  7303. {
  7304. name: "Extra Macro",
  7305. height: math.unit(300, "feet"),
  7306. },
  7307. {
  7308. name: "BIG WALF",
  7309. height: math.unit(750, "feet"),
  7310. },
  7311. ]
  7312. ))
  7313. characterMakers.push(() => makeCharacter(
  7314. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7315. {
  7316. front: {
  7317. height: math.unit(6, "feet"),
  7318. weight: math.unit(150, "lbs"),
  7319. name: "Front",
  7320. image: {
  7321. source: "./media/characters/carley/front.svg",
  7322. extra: 3927 / 3540,
  7323. bottom: 29.2/735
  7324. }
  7325. }
  7326. },
  7327. [
  7328. {
  7329. name: "Normal",
  7330. height: math.unit(6 + 3 / 12, "feet")
  7331. },
  7332. {
  7333. name: "Macro",
  7334. height: math.unit(185, "feet"),
  7335. default: true
  7336. },
  7337. {
  7338. name: "Megamacro",
  7339. height: math.unit(8, "miles"),
  7340. },
  7341. ]
  7342. ))
  7343. characterMakers.push(() => makeCharacter(
  7344. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7345. {
  7346. front: {
  7347. height: math.unit(3, "feet"),
  7348. weight: math.unit(28, "lbs"),
  7349. name: "Front",
  7350. image: {
  7351. source: "./media/characters/citrine/front.svg"
  7352. }
  7353. }
  7354. },
  7355. [
  7356. {
  7357. name: "Normal",
  7358. height: math.unit(3, "feet"),
  7359. default: true
  7360. }
  7361. ]
  7362. ))
  7363. characterMakers.push(() => makeCharacter(
  7364. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7365. {
  7366. front: {
  7367. height: math.unit(14, "feet"),
  7368. weight: math.unit(1450, "kg"),
  7369. capacity: math.unit(15, "people"),
  7370. name: "Front",
  7371. image: {
  7372. source: "./media/characters/aura-starwind/front.svg",
  7373. extra: 1455 / 1335
  7374. }
  7375. },
  7376. side: {
  7377. height: math.unit(14, "feet"),
  7378. weight: math.unit(1450, "kg"),
  7379. capacity: math.unit(15, "people"),
  7380. name: "Side",
  7381. image: {
  7382. source: "./media/characters/aura-starwind/side.svg",
  7383. extra: 1654 / 1497
  7384. }
  7385. },
  7386. taur: {
  7387. height: math.unit(18, "feet"),
  7388. weight: math.unit(5500, "kg"),
  7389. capacity: math.unit(50, "people"),
  7390. name: "Taur",
  7391. image: {
  7392. source: "./media/characters/aura-starwind/taur.svg",
  7393. extra: 1760 / 1650
  7394. }
  7395. },
  7396. feral: {
  7397. height: math.unit(46, "feet"),
  7398. weight: math.unit(25000, "kg"),
  7399. capacity: math.unit(120, "people"),
  7400. name: "Feral",
  7401. image: {
  7402. source: "./media/characters/aura-starwind/feral.svg"
  7403. }
  7404. },
  7405. },
  7406. [
  7407. {
  7408. name: "Normal",
  7409. height: math.unit(14, "feet"),
  7410. default: true
  7411. },
  7412. {
  7413. name: "Macro",
  7414. height: math.unit(50, "meters")
  7415. },
  7416. {
  7417. name: "Megamacro",
  7418. height: math.unit(5000, "meters")
  7419. },
  7420. {
  7421. name: "Gigamacro",
  7422. height: math.unit(100000, "kilometers")
  7423. },
  7424. ]
  7425. ))
  7426. characterMakers.push(() => makeCharacter(
  7427. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7428. {
  7429. front: {
  7430. height: math.unit(2 + 7 / 12, "feet"),
  7431. weight: math.unit(32, "lbs"),
  7432. name: "Front",
  7433. image: {
  7434. source: "./media/characters/rivet/front.svg",
  7435. extra: 1716 / 1658,
  7436. bottom: 0.03
  7437. }
  7438. },
  7439. foot: {
  7440. height: math.unit(0.551, "feet"),
  7441. name: "Rivet's Foot",
  7442. image: {
  7443. source: "./media/characters/rivet/foot.svg"
  7444. },
  7445. rename: true
  7446. }
  7447. },
  7448. [
  7449. {
  7450. name: "Micro",
  7451. height: math.unit(1.5, "inches"),
  7452. },
  7453. {
  7454. name: "Normal",
  7455. height: math.unit(2 + 7 / 12, "feet"),
  7456. default: true
  7457. },
  7458. {
  7459. name: "Macro",
  7460. height: math.unit(85, "feet")
  7461. },
  7462. {
  7463. name: "Megamacro",
  7464. height: math.unit(2.2, "km")
  7465. }
  7466. ]
  7467. ))
  7468. characterMakers.push(() => makeCharacter(
  7469. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7470. {
  7471. front: {
  7472. height: math.unit(5 + 9 / 12, "feet"),
  7473. weight: math.unit(150, "lbs"),
  7474. name: "Front",
  7475. image: {
  7476. source: "./media/characters/coffee/front.svg",
  7477. extra: 3666 / 3032,
  7478. bottom: 0.04
  7479. }
  7480. },
  7481. foot: {
  7482. height: math.unit(1.29, "feet"),
  7483. name: "Foot",
  7484. image: {
  7485. source: "./media/characters/coffee/foot.svg"
  7486. }
  7487. },
  7488. },
  7489. [
  7490. {
  7491. name: "Micro",
  7492. height: math.unit(2, "inches"),
  7493. },
  7494. {
  7495. name: "Normal",
  7496. height: math.unit(5 + 9 / 12, "feet"),
  7497. default: true
  7498. },
  7499. {
  7500. name: "Macro",
  7501. height: math.unit(800, "feet")
  7502. },
  7503. {
  7504. name: "Megamacro",
  7505. height: math.unit(25, "miles")
  7506. }
  7507. ]
  7508. ))
  7509. characterMakers.push(() => makeCharacter(
  7510. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7511. {
  7512. front: {
  7513. height: math.unit(6, "feet"),
  7514. weight: math.unit(200, "lbs"),
  7515. name: "Front",
  7516. image: {
  7517. source: "./media/characters/chari-gal/front.svg",
  7518. extra: 1568 / 1385,
  7519. bottom: 0.047
  7520. }
  7521. },
  7522. gigantamax: {
  7523. height: math.unit(6 * 16, "feet"),
  7524. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7525. name: "Gigantamax",
  7526. image: {
  7527. source: "./media/characters/chari-gal/gigantamax.svg",
  7528. extra: 1124 / 888,
  7529. bottom: 0.03
  7530. }
  7531. },
  7532. },
  7533. [
  7534. {
  7535. name: "Normal",
  7536. height: math.unit(5 + 7 / 12, "feet")
  7537. },
  7538. {
  7539. name: "Macro",
  7540. height: math.unit(200, "feet"),
  7541. default: true
  7542. }
  7543. ]
  7544. ))
  7545. characterMakers.push(() => makeCharacter(
  7546. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7547. {
  7548. front: {
  7549. height: math.unit(6, "feet"),
  7550. weight: math.unit(150, "lbs"),
  7551. name: "Front",
  7552. image: {
  7553. source: "./media/characters/nova/front.svg",
  7554. extra: 5000 / 4722,
  7555. bottom: 0.02
  7556. }
  7557. }
  7558. },
  7559. [
  7560. {
  7561. name: "Micro-",
  7562. height: math.unit(0.8, "inches")
  7563. },
  7564. {
  7565. name: "Micro",
  7566. height: math.unit(2, "inches"),
  7567. default: true
  7568. },
  7569. ]
  7570. ))
  7571. characterMakers.push(() => makeCharacter(
  7572. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7573. {
  7574. front: {
  7575. height: math.unit(3 + 1 / 12, "feet"),
  7576. weight: math.unit(21.7, "lbs"),
  7577. name: "Front",
  7578. image: {
  7579. source: "./media/characters/argent/front.svg",
  7580. extra: 1471 / 1331,
  7581. bottom: 100.8 / 1575.5
  7582. }
  7583. }
  7584. },
  7585. [
  7586. {
  7587. name: "Micro",
  7588. height: math.unit(2, "inches")
  7589. },
  7590. {
  7591. name: "Normal",
  7592. height: math.unit(3 + 1 / 12, "feet"),
  7593. default: true
  7594. },
  7595. {
  7596. name: "Macro",
  7597. height: math.unit(120, "feet")
  7598. },
  7599. ]
  7600. ))
  7601. characterMakers.push(() => makeCharacter(
  7602. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7603. {
  7604. lamp: {
  7605. height: math.unit(7 * 1559 / 989, "feet"),
  7606. name: "Magic Lamp",
  7607. image: {
  7608. source: "./media/characters/mira-al-cul/lamp.svg",
  7609. extra: 1617 / 1559
  7610. }
  7611. },
  7612. front: {
  7613. height: math.unit(7, "feet"),
  7614. name: "Front",
  7615. image: {
  7616. source: "./media/characters/mira-al-cul/front.svg",
  7617. extra: 1044 / 990
  7618. }
  7619. },
  7620. },
  7621. [
  7622. {
  7623. name: "Heavily Restricted",
  7624. height: math.unit(7 * 1559 / 989, "feet")
  7625. },
  7626. {
  7627. name: "Freshly Freed",
  7628. height: math.unit(50 * 1559 / 989, "feet")
  7629. },
  7630. {
  7631. name: "World Encompassing",
  7632. height: math.unit(10000 * 1559 / 989, "miles")
  7633. },
  7634. {
  7635. name: "Galactic",
  7636. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7637. },
  7638. {
  7639. name: "Palmed Universe",
  7640. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7641. default: true
  7642. },
  7643. {
  7644. name: "Multiversal Matriarch",
  7645. height: math.unit(8.87e10, "yottameters")
  7646. },
  7647. {
  7648. name: "Void Mother",
  7649. height: math.unit(3.14e110, "yottaparsecs")
  7650. },
  7651. {
  7652. name: "Toying with Transcendence",
  7653. height: math.unit(1e307, "meters")
  7654. },
  7655. ]
  7656. ))
  7657. characterMakers.push(() => makeCharacter(
  7658. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7659. {
  7660. front: {
  7661. height: math.unit(17 + 1 / 12, "feet"),
  7662. weight: math.unit(476.2 * 5, "lbs"),
  7663. name: "Front",
  7664. image: {
  7665. source: "./media/characters/kuro-shi-uchū/front.svg",
  7666. extra: 2329 / 1835,
  7667. bottom: 0.02
  7668. }
  7669. },
  7670. },
  7671. [
  7672. {
  7673. name: "Micro",
  7674. height: math.unit(2, "inches")
  7675. },
  7676. {
  7677. name: "Normal",
  7678. height: math.unit(12, "meters")
  7679. },
  7680. {
  7681. name: "Planetary",
  7682. height: math.unit(0.00929, "AU"),
  7683. default: true
  7684. },
  7685. {
  7686. name: "Universal",
  7687. height: math.unit(20, "gigaparsecs")
  7688. },
  7689. ]
  7690. ))
  7691. characterMakers.push(() => makeCharacter(
  7692. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7693. {
  7694. front: {
  7695. height: math.unit(5 + 2 / 12, "feet"),
  7696. weight: math.unit(120, "lbs"),
  7697. name: "Front",
  7698. image: {
  7699. source: "./media/characters/katherine/front.svg",
  7700. extra: 2075 / 1969
  7701. }
  7702. },
  7703. dress: {
  7704. height: math.unit(5 + 2 / 12, "feet"),
  7705. weight: math.unit(120, "lbs"),
  7706. name: "Dress",
  7707. image: {
  7708. source: "./media/characters/katherine/dress.svg",
  7709. extra: 2258 / 2064
  7710. }
  7711. },
  7712. },
  7713. [
  7714. {
  7715. name: "Micro",
  7716. height: math.unit(1, "inches"),
  7717. default: true
  7718. },
  7719. {
  7720. name: "Normal",
  7721. height: math.unit(5 + 2 / 12, "feet")
  7722. },
  7723. {
  7724. name: "Macro",
  7725. height: math.unit(100, "meters")
  7726. },
  7727. {
  7728. name: "Megamacro",
  7729. height: math.unit(80, "miles")
  7730. },
  7731. ]
  7732. ))
  7733. characterMakers.push(() => makeCharacter(
  7734. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7735. {
  7736. front: {
  7737. height: math.unit(7 + 8 / 12, "feet"),
  7738. weight: math.unit(250, "lbs"),
  7739. name: "Front",
  7740. image: {
  7741. source: "./media/characters/yevis/front.svg",
  7742. extra: 1938 / 1755
  7743. }
  7744. }
  7745. },
  7746. [
  7747. {
  7748. name: "Mortal",
  7749. height: math.unit(7 + 8 / 12, "feet")
  7750. },
  7751. {
  7752. name: "Battle",
  7753. height: math.unit(25 + 11 / 12, "feet")
  7754. },
  7755. {
  7756. name: "Wrath",
  7757. height: math.unit(1654 + 11 / 12, "feet")
  7758. },
  7759. {
  7760. name: "Planet Destroyer",
  7761. height: math.unit(12000, "miles")
  7762. },
  7763. {
  7764. name: "Galaxy Conqueror",
  7765. height: math.unit(1.45, "zettameters"),
  7766. default: true
  7767. },
  7768. {
  7769. name: "Universal War",
  7770. height: math.unit(184, "gigaparsecs")
  7771. },
  7772. {
  7773. name: "Eternity War",
  7774. height: math.unit(1.98e55, "yottaparsecs")
  7775. },
  7776. ]
  7777. ))
  7778. characterMakers.push(() => makeCharacter(
  7779. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7780. {
  7781. front: {
  7782. height: math.unit(5 + 8 / 12, "feet"),
  7783. weight: math.unit(63, "kg"),
  7784. name: "Front",
  7785. image: {
  7786. source: "./media/characters/xavier/front.svg",
  7787. extra: 944 / 883
  7788. }
  7789. },
  7790. frontStretch: {
  7791. height: math.unit(5 + 8 / 12, "feet"),
  7792. weight: math.unit(63, "kg"),
  7793. name: "Stretching",
  7794. image: {
  7795. source: "./media/characters/xavier/front-stretch.svg",
  7796. extra: 962 / 820
  7797. }
  7798. },
  7799. },
  7800. [
  7801. {
  7802. name: "Normal",
  7803. height: math.unit(5 + 8 / 12, "feet")
  7804. },
  7805. {
  7806. name: "Macro",
  7807. height: math.unit(100, "meters"),
  7808. default: true
  7809. },
  7810. {
  7811. name: "McLargeHuge",
  7812. height: math.unit(10, "miles")
  7813. },
  7814. ]
  7815. ))
  7816. characterMakers.push(() => makeCharacter(
  7817. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7818. {
  7819. front: {
  7820. height: math.unit(5 + 5 / 12, "feet"),
  7821. weight: math.unit(150, "lb"),
  7822. name: "Front",
  7823. image: {
  7824. source: "./media/characters/joshii/front.svg"
  7825. }
  7826. },
  7827. foot: {
  7828. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7829. name: "Foot",
  7830. image: {
  7831. source: "./media/characters/joshii/foot.svg"
  7832. }
  7833. },
  7834. },
  7835. [
  7836. {
  7837. name: "Micro",
  7838. height: math.unit(2, "inches")
  7839. },
  7840. {
  7841. name: "Normal",
  7842. height: math.unit(5 + 5 / 12, "feet"),
  7843. default: true
  7844. },
  7845. {
  7846. name: "Macro",
  7847. height: math.unit(785, "feet")
  7848. },
  7849. {
  7850. name: "Megamacro",
  7851. height: math.unit(24.5, "miles")
  7852. },
  7853. ]
  7854. ))
  7855. characterMakers.push(() => makeCharacter(
  7856. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  7857. {
  7858. front: {
  7859. height: math.unit(6, "feet"),
  7860. weight: math.unit(150, "lb"),
  7861. name: "Front",
  7862. image: {
  7863. source: "./media/characters/goddess-elizabeth/front.svg",
  7864. extra: 1800 / 1525,
  7865. bottom: 0.005
  7866. }
  7867. },
  7868. foot: {
  7869. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7870. name: "Foot",
  7871. image: {
  7872. source: "./media/characters/goddess-elizabeth/foot.svg"
  7873. }
  7874. },
  7875. mouth: {
  7876. height: math.unit(6, "feet"),
  7877. name: "Mouth",
  7878. image: {
  7879. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7880. }
  7881. },
  7882. },
  7883. [
  7884. {
  7885. name: "Micro",
  7886. height: math.unit(12, "feet")
  7887. },
  7888. {
  7889. name: "Normal",
  7890. height: math.unit(80, "miles"),
  7891. default: true
  7892. },
  7893. {
  7894. name: "Macro",
  7895. height: math.unit(15000, "parsecs")
  7896. },
  7897. ]
  7898. ))
  7899. characterMakers.push(() => makeCharacter(
  7900. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  7901. {
  7902. front: {
  7903. height: math.unit(5 + 9 / 12, "feet"),
  7904. weight: math.unit(144, "lb"),
  7905. name: "Front",
  7906. image: {
  7907. source: "./media/characters/kara/front.svg"
  7908. }
  7909. },
  7910. feet: {
  7911. height: math.unit(6 / 6.765, "feet"),
  7912. name: "Kara's Feet",
  7913. rename: true,
  7914. image: {
  7915. source: "./media/characters/kara/feet.svg"
  7916. }
  7917. },
  7918. },
  7919. [
  7920. {
  7921. name: "Normal",
  7922. height: math.unit(5 + 9 / 12, "feet")
  7923. },
  7924. {
  7925. name: "Macro",
  7926. height: math.unit(174, "feet"),
  7927. default: true
  7928. },
  7929. ]
  7930. ))
  7931. characterMakers.push(() => makeCharacter(
  7932. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  7933. {
  7934. front: {
  7935. height: math.unit(18, "feet"),
  7936. weight: math.unit(4050, "lb"),
  7937. name: "Front",
  7938. image: {
  7939. source: "./media/characters/tyrone/front.svg",
  7940. extra: 2520 / 2402,
  7941. bottom: 0.025
  7942. }
  7943. },
  7944. },
  7945. [
  7946. {
  7947. name: "Normal",
  7948. height: math.unit(18, "feet"),
  7949. default: true
  7950. },
  7951. {
  7952. name: "Macro",
  7953. height: math.unit(300, "feet")
  7954. },
  7955. ]
  7956. ))
  7957. characterMakers.push(() => makeCharacter(
  7958. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  7959. {
  7960. front: {
  7961. height: math.unit(7 + 8 / 12, "feet"),
  7962. weight: math.unit(120, "lb"),
  7963. name: "Front",
  7964. image: {
  7965. source: "./media/characters/danny/front.svg",
  7966. extra: 1490 / 1350
  7967. }
  7968. },
  7969. back: {
  7970. height: math.unit(7 + 8 / 12, "feet"),
  7971. weight: math.unit(120, "lb"),
  7972. name: "Back",
  7973. image: {
  7974. source: "./media/characters/danny/back.svg",
  7975. extra: 1490 / 1350
  7976. }
  7977. },
  7978. },
  7979. [
  7980. {
  7981. name: "Normal",
  7982. height: math.unit(7 + 8 / 12, "feet"),
  7983. default: true
  7984. },
  7985. ]
  7986. ))
  7987. characterMakers.push(() => makeCharacter(
  7988. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  7989. {
  7990. front: {
  7991. height: math.unit(3.5, "inches"),
  7992. weight: math.unit(19, "grams"),
  7993. name: "Front",
  7994. image: {
  7995. source: "./media/characters/mallow/front.svg",
  7996. extra: 471 / 431
  7997. }
  7998. },
  7999. back: {
  8000. height: math.unit(3.5, "inches"),
  8001. weight: math.unit(19, "grams"),
  8002. name: "Back",
  8003. image: {
  8004. source: "./media/characters/mallow/back.svg",
  8005. extra: 471 / 431
  8006. }
  8007. },
  8008. },
  8009. [
  8010. {
  8011. name: "Normal",
  8012. height: math.unit(3.5, "inches"),
  8013. default: true
  8014. },
  8015. ]
  8016. ))
  8017. characterMakers.push(() => makeCharacter(
  8018. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8019. {
  8020. front: {
  8021. height: math.unit(9, "feet"),
  8022. weight: math.unit(230, "kg"),
  8023. name: "Front",
  8024. image: {
  8025. source: "./media/characters/starry-aqua/front.svg"
  8026. }
  8027. },
  8028. back: {
  8029. height: math.unit(9, "feet"),
  8030. weight: math.unit(230, "kg"),
  8031. name: "Back",
  8032. image: {
  8033. source: "./media/characters/starry-aqua/back.svg"
  8034. }
  8035. },
  8036. hand: {
  8037. height: math.unit(9 * 0.1168, "feet"),
  8038. name: "Hand",
  8039. image: {
  8040. source: "./media/characters/starry-aqua/hand.svg"
  8041. }
  8042. },
  8043. foot: {
  8044. height: math.unit(9 * 0.18, "feet"),
  8045. name: "Foot",
  8046. image: {
  8047. source: "./media/characters/starry-aqua/foot.svg"
  8048. }
  8049. }
  8050. },
  8051. [
  8052. {
  8053. name: "Micro",
  8054. height: math.unit(3, "inches")
  8055. },
  8056. {
  8057. name: "Normal",
  8058. height: math.unit(9, "feet")
  8059. },
  8060. {
  8061. name: "Macro",
  8062. height: math.unit(300, "feet"),
  8063. default: true
  8064. },
  8065. {
  8066. name: "Megamacro",
  8067. height: math.unit(3200, "feet")
  8068. }
  8069. ]
  8070. ))
  8071. characterMakers.push(() => makeCharacter(
  8072. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8073. {
  8074. front: {
  8075. height: math.unit(6, "feet"),
  8076. weight: math.unit(230, "lb"),
  8077. name: "Front",
  8078. image: {
  8079. source: "./media/characters/luka/front.svg",
  8080. extra: 1,
  8081. bottom: 0.025
  8082. }
  8083. },
  8084. },
  8085. [
  8086. {
  8087. name: "Normal",
  8088. height: math.unit(12 + 8 / 12, "feet"),
  8089. default: true
  8090. },
  8091. {
  8092. name: "Minimacro",
  8093. height: math.unit(20, "feet")
  8094. },
  8095. {
  8096. name: "Macro",
  8097. height: math.unit(250, "feet")
  8098. },
  8099. {
  8100. name: "Megamacro",
  8101. height: math.unit(5, "miles")
  8102. },
  8103. {
  8104. name: "Gigamacro",
  8105. height: math.unit(8000, "miles")
  8106. },
  8107. ]
  8108. ))
  8109. characterMakers.push(() => makeCharacter(
  8110. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8111. {
  8112. front: {
  8113. height: math.unit(6, "feet"),
  8114. weight: math.unit(150, "lb"),
  8115. name: "Front",
  8116. image: {
  8117. source: "./media/characters/natalie-nightring/front.svg",
  8118. extra: 1,
  8119. bottom: 0.06
  8120. }
  8121. },
  8122. },
  8123. [
  8124. {
  8125. name: "Uh Oh",
  8126. height: math.unit(0.1, "mm")
  8127. },
  8128. {
  8129. name: "Small",
  8130. height: math.unit(3, "inches")
  8131. },
  8132. {
  8133. name: "Human Scale",
  8134. height: math.unit(6, "feet")
  8135. },
  8136. {
  8137. name: "Librarian",
  8138. height: math.unit(50, "feet"),
  8139. default: true
  8140. },
  8141. {
  8142. name: "Immense",
  8143. height: math.unit(200, "miles")
  8144. },
  8145. ]
  8146. ))
  8147. characterMakers.push(() => makeCharacter(
  8148. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8149. {
  8150. front: {
  8151. height: math.unit(6, "feet"),
  8152. weight: math.unit(180, "lbs"),
  8153. name: "Front",
  8154. image: {
  8155. source: "./media/characters/danni-rosie/front.svg",
  8156. extra: 1260 / 1128,
  8157. bottom: 0.022
  8158. }
  8159. },
  8160. },
  8161. [
  8162. {
  8163. name: "Micro",
  8164. height: math.unit(2, "inches"),
  8165. default: true
  8166. },
  8167. ]
  8168. ))
  8169. characterMakers.push(() => makeCharacter(
  8170. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8171. {
  8172. front: {
  8173. height: math.unit(5 + 9 / 12, "feet"),
  8174. weight: math.unit(220, "lb"),
  8175. name: "Front",
  8176. image: {
  8177. source: "./media/characters/samantha-kruse/front.svg",
  8178. extra: (985 / 935),
  8179. bottom: 0.03
  8180. }
  8181. },
  8182. frontUndressed: {
  8183. height: math.unit(5 + 9 / 12, "feet"),
  8184. weight: math.unit(220, "lb"),
  8185. name: "Front (Undressed)",
  8186. image: {
  8187. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8188. extra: (973 / 923),
  8189. bottom: 0.025
  8190. }
  8191. },
  8192. fat: {
  8193. height: math.unit(5 + 9 / 12, "feet"),
  8194. weight: math.unit(900, "lb"),
  8195. name: "Front (Fat)",
  8196. image: {
  8197. source: "./media/characters/samantha-kruse/fat.svg",
  8198. extra: 2688 / 2561
  8199. }
  8200. },
  8201. },
  8202. [
  8203. {
  8204. name: "Normal",
  8205. height: math.unit(5 + 9 / 12, "feet"),
  8206. default: true
  8207. }
  8208. ]
  8209. ))
  8210. characterMakers.push(() => makeCharacter(
  8211. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8212. {
  8213. back: {
  8214. height: math.unit(5 + 4 / 12, "feet"),
  8215. weight: math.unit(4963, "lb"),
  8216. name: "Back",
  8217. image: {
  8218. source: "./media/characters/amelia-rosie/back.svg",
  8219. extra: 1113 / 963,
  8220. bottom: 0.01
  8221. }
  8222. },
  8223. },
  8224. [
  8225. {
  8226. name: "Level 0",
  8227. height: math.unit(5 + 4 / 12, "feet")
  8228. },
  8229. {
  8230. name: "Level 1",
  8231. height: math.unit(164597, "feet"),
  8232. default: true
  8233. },
  8234. {
  8235. name: "Level 2",
  8236. height: math.unit(956243, "miles")
  8237. },
  8238. {
  8239. name: "Level 3",
  8240. height: math.unit(29421709423, "miles")
  8241. },
  8242. {
  8243. name: "Level 4",
  8244. height: math.unit(154, "lightyears")
  8245. },
  8246. {
  8247. name: "Level 5",
  8248. height: math.unit(4738272, "lightyears")
  8249. },
  8250. {
  8251. name: "Level 6",
  8252. height: math.unit(145787152896, "lightyears")
  8253. },
  8254. ]
  8255. ))
  8256. characterMakers.push(() => makeCharacter(
  8257. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8258. {
  8259. front: {
  8260. height: math.unit(5 + 11 / 12, "feet"),
  8261. weight: math.unit(65, "kg"),
  8262. name: "Front",
  8263. image: {
  8264. source: "./media/characters/rook-kitara/front.svg",
  8265. extra: 1347 / 1274,
  8266. bottom: 0.005
  8267. }
  8268. },
  8269. },
  8270. [
  8271. {
  8272. name: "Totally Unfair",
  8273. height: math.unit(1.8, "mm")
  8274. },
  8275. {
  8276. name: "Lap Rookie",
  8277. height: math.unit(1.4, "feet")
  8278. },
  8279. {
  8280. name: "Normal",
  8281. height: math.unit(5 + 11 / 12, "feet"),
  8282. default: true
  8283. },
  8284. {
  8285. name: "How Did This Happen",
  8286. height: math.unit(80, "miles")
  8287. }
  8288. ]
  8289. ))
  8290. characterMakers.push(() => makeCharacter(
  8291. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8292. {
  8293. front: {
  8294. height: math.unit(7, "feet"),
  8295. weight: math.unit(300, "lb"),
  8296. name: "Front",
  8297. image: {
  8298. source: "./media/characters/pisces/front.svg",
  8299. extra: 2255 / 2115,
  8300. bottom: 0.03
  8301. }
  8302. },
  8303. back: {
  8304. height: math.unit(7, "feet"),
  8305. weight: math.unit(300, "lb"),
  8306. name: "Back",
  8307. image: {
  8308. source: "./media/characters/pisces/back.svg",
  8309. extra: 2146 / 2055,
  8310. bottom: 0.04
  8311. }
  8312. },
  8313. },
  8314. [
  8315. {
  8316. name: "Normal",
  8317. height: math.unit(7, "feet"),
  8318. default: true
  8319. },
  8320. {
  8321. name: "Swimming Pool",
  8322. height: math.unit(12.2, "meters")
  8323. },
  8324. {
  8325. name: "Olympic Swimming Pool",
  8326. height: math.unit(56.3, "meters")
  8327. },
  8328. {
  8329. name: "Lake Superior",
  8330. height: math.unit(93900, "meters")
  8331. },
  8332. {
  8333. name: "Mediterranean Sea",
  8334. height: math.unit(644457, "meters")
  8335. },
  8336. {
  8337. name: "World's Oceans",
  8338. height: math.unit(4567491, "meters")
  8339. },
  8340. ]
  8341. ))
  8342. characterMakers.push(() => makeCharacter(
  8343. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8344. {
  8345. front: {
  8346. height: math.unit(2.3, "meters"),
  8347. weight: math.unit(120, "kg"),
  8348. name: "Front",
  8349. image: {
  8350. source: "./media/characters/zelas/front.svg"
  8351. }
  8352. },
  8353. side: {
  8354. height: math.unit(2.3, "meters"),
  8355. weight: math.unit(120, "kg"),
  8356. name: "Side",
  8357. image: {
  8358. source: "./media/characters/zelas/side.svg"
  8359. }
  8360. },
  8361. back: {
  8362. height: math.unit(2.3, "meters"),
  8363. weight: math.unit(120, "kg"),
  8364. name: "Back",
  8365. image: {
  8366. source: "./media/characters/zelas/back.svg"
  8367. }
  8368. },
  8369. foot: {
  8370. height: math.unit(1.116, "feet"),
  8371. name: "Foot",
  8372. image: {
  8373. source: "./media/characters/zelas/foot.svg"
  8374. }
  8375. },
  8376. },
  8377. [
  8378. {
  8379. name: "Normal",
  8380. height: math.unit(2.3, "meters")
  8381. },
  8382. {
  8383. name: "Macro",
  8384. height: math.unit(30, "meters"),
  8385. default: true
  8386. },
  8387. ]
  8388. ))
  8389. characterMakers.push(() => makeCharacter(
  8390. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8391. {
  8392. front: {
  8393. height: math.unit(1, "inch"),
  8394. weight: math.unit(0.21, "grams"),
  8395. name: "Front",
  8396. image: {
  8397. source: "./media/characters/talbot/front.svg",
  8398. extra: 594 / 544
  8399. }
  8400. },
  8401. },
  8402. [
  8403. {
  8404. name: "Micro",
  8405. height: math.unit(1, "inch"),
  8406. default: true
  8407. },
  8408. ]
  8409. ))
  8410. characterMakers.push(() => makeCharacter(
  8411. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8412. {
  8413. front: {
  8414. height: math.unit(3 + 3 / 12, "feet"),
  8415. weight: math.unit(51.8, "lb"),
  8416. name: "Front",
  8417. image: {
  8418. source: "./media/characters/fliss/front.svg",
  8419. extra: 840 / 640
  8420. }
  8421. },
  8422. },
  8423. [
  8424. {
  8425. name: "Teeny Tiny",
  8426. height: math.unit(1, "mm")
  8427. },
  8428. {
  8429. name: "Small",
  8430. height: math.unit(1, "inch"),
  8431. default: true
  8432. },
  8433. {
  8434. name: "Standard Sylveon",
  8435. height: math.unit(3 + 3 / 12, "feet")
  8436. },
  8437. {
  8438. name: "Large Nuisance",
  8439. height: math.unit(33, "feet")
  8440. },
  8441. {
  8442. name: "City Filler",
  8443. height: math.unit(3000, "feet")
  8444. },
  8445. {
  8446. name: "New Horizon",
  8447. height: math.unit(6000, "miles")
  8448. },
  8449. ]
  8450. ))
  8451. characterMakers.push(() => makeCharacter(
  8452. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8453. {
  8454. front: {
  8455. height: math.unit(5, "cm"),
  8456. weight: math.unit(1.94, "g"),
  8457. name: "Front",
  8458. image: {
  8459. source: "./media/characters/fleta/front.svg",
  8460. extra: 835 / 803
  8461. }
  8462. },
  8463. back: {
  8464. height: math.unit(5, "cm"),
  8465. weight: math.unit(1.94, "g"),
  8466. name: "Back",
  8467. image: {
  8468. source: "./media/characters/fleta/back.svg",
  8469. extra: 835 / 803
  8470. }
  8471. },
  8472. },
  8473. [
  8474. {
  8475. name: "Micro",
  8476. height: math.unit(5, "cm"),
  8477. default: true
  8478. },
  8479. ]
  8480. ))
  8481. characterMakers.push(() => makeCharacter(
  8482. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8483. {
  8484. front: {
  8485. height: math.unit(6, "feet"),
  8486. weight: math.unit(225, "lb"),
  8487. name: "Front",
  8488. image: {
  8489. source: "./media/characters/dominic/front.svg",
  8490. extra: 1770 / 1620,
  8491. bottom: 0.025
  8492. }
  8493. },
  8494. back: {
  8495. height: math.unit(6, "feet"),
  8496. weight: math.unit(225, "lb"),
  8497. name: "Back",
  8498. image: {
  8499. source: "./media/characters/dominic/back.svg",
  8500. extra: 1745 / 1620,
  8501. bottom: 0.065
  8502. }
  8503. },
  8504. },
  8505. [
  8506. {
  8507. name: "Nano",
  8508. height: math.unit(0.1, "mm")
  8509. },
  8510. {
  8511. name: "Micro-",
  8512. height: math.unit(1, "mm")
  8513. },
  8514. {
  8515. name: "Micro",
  8516. height: math.unit(4, "inches")
  8517. },
  8518. {
  8519. name: "Normal",
  8520. height: math.unit(6 + 4 / 12, "feet"),
  8521. default: true
  8522. },
  8523. {
  8524. name: "Macro",
  8525. height: math.unit(115, "feet")
  8526. },
  8527. {
  8528. name: "Macro+",
  8529. height: math.unit(955, "feet")
  8530. },
  8531. {
  8532. name: "Megamacro",
  8533. height: math.unit(8990, "feet")
  8534. },
  8535. {
  8536. name: "Gigmacro",
  8537. height: math.unit(9310, "miles")
  8538. },
  8539. {
  8540. name: "Teramacro",
  8541. height: math.unit(1567005010, "miles")
  8542. },
  8543. {
  8544. name: "Examacro",
  8545. height: math.unit(1425, "parsecs")
  8546. },
  8547. ]
  8548. ))
  8549. characterMakers.push(() => makeCharacter(
  8550. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8551. {
  8552. front: {
  8553. height: math.unit(400, "feet"),
  8554. weight: math.unit(44444444, "lb"),
  8555. name: "Front",
  8556. image: {
  8557. source: "./media/characters/major-colonel/front.svg"
  8558. }
  8559. },
  8560. back: {
  8561. height: math.unit(400, "feet"),
  8562. weight: math.unit(44444444, "lb"),
  8563. name: "Back",
  8564. image: {
  8565. source: "./media/characters/major-colonel/back.svg"
  8566. }
  8567. },
  8568. },
  8569. [
  8570. {
  8571. name: "Macro",
  8572. height: math.unit(400, "feet"),
  8573. default: true
  8574. },
  8575. ]
  8576. ))
  8577. characterMakers.push(() => makeCharacter(
  8578. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8579. {
  8580. catFront: {
  8581. height: math.unit(6, "feet"),
  8582. weight: math.unit(120, "lb"),
  8583. name: "Front (Cat Side)",
  8584. image: {
  8585. source: "./media/characters/axel-lycan/cat-front.svg",
  8586. extra: 430 / 402,
  8587. bottom: 43 / 472.35
  8588. }
  8589. },
  8590. catBack: {
  8591. height: math.unit(6, "feet"),
  8592. weight: math.unit(120, "lb"),
  8593. name: "Back (Cat Side)",
  8594. image: {
  8595. source: "./media/characters/axel-lycan/cat-back.svg",
  8596. extra: 447 / 419,
  8597. bottom: 23.3 / 469
  8598. }
  8599. },
  8600. wolfFront: {
  8601. height: math.unit(6, "feet"),
  8602. weight: math.unit(120, "lb"),
  8603. name: "Front (Wolf Side)",
  8604. image: {
  8605. source: "./media/characters/axel-lycan/wolf-front.svg",
  8606. extra: 485 / 456,
  8607. bottom: 19 / 504
  8608. }
  8609. },
  8610. wolfBack: {
  8611. height: math.unit(6, "feet"),
  8612. weight: math.unit(120, "lb"),
  8613. name: "Back (Wolf Side)",
  8614. image: {
  8615. source: "./media/characters/axel-lycan/wolf-back.svg",
  8616. extra: 475 / 438,
  8617. bottom: 39.2 / 514
  8618. }
  8619. },
  8620. },
  8621. [
  8622. {
  8623. name: "Macro",
  8624. height: math.unit(1, "km"),
  8625. default: true
  8626. },
  8627. ]
  8628. ))
  8629. characterMakers.push(() => makeCharacter(
  8630. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8631. {
  8632. front: {
  8633. height: math.unit(5 + 9 / 12, "feet"),
  8634. weight: math.unit(175, "lb"),
  8635. name: "Front",
  8636. image: {
  8637. source: "./media/characters/vanrel-hyena/front.svg",
  8638. extra: 1086 / 1010,
  8639. bottom: 0.04
  8640. }
  8641. },
  8642. },
  8643. [
  8644. {
  8645. name: "Normal",
  8646. height: math.unit(5 + 9 / 12, "feet"),
  8647. default: true
  8648. },
  8649. ]
  8650. ))
  8651. characterMakers.push(() => makeCharacter(
  8652. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8653. {
  8654. front: {
  8655. height: math.unit(6, "feet"),
  8656. weight: math.unit(103, "lb"),
  8657. name: "Front",
  8658. image: {
  8659. source: "./media/characters/abbott-absol/front.svg",
  8660. extra: 2010 / 1842
  8661. }
  8662. },
  8663. },
  8664. [
  8665. {
  8666. name: "Megamicro",
  8667. height: math.unit(0.1, "mm")
  8668. },
  8669. {
  8670. name: "Micro",
  8671. height: math.unit(1, "inch")
  8672. },
  8673. {
  8674. name: "Normal",
  8675. height: math.unit(6, "feet"),
  8676. default: true
  8677. },
  8678. ]
  8679. ))
  8680. characterMakers.push(() => makeCharacter(
  8681. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8682. {
  8683. front: {
  8684. height: math.unit(6, "feet"),
  8685. weight: math.unit(264, "lb"),
  8686. name: "Front",
  8687. image: {
  8688. source: "./media/characters/hector/front.svg",
  8689. extra: 2280 / 2130,
  8690. bottom: 0.07
  8691. }
  8692. },
  8693. },
  8694. [
  8695. {
  8696. name: "Normal",
  8697. height: math.unit(12.25, "foot"),
  8698. default: true
  8699. },
  8700. {
  8701. name: "Macro",
  8702. height: math.unit(160, "feet")
  8703. },
  8704. ]
  8705. ))
  8706. characterMakers.push(() => makeCharacter(
  8707. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8708. {
  8709. front: {
  8710. height: math.unit(6, "feet"),
  8711. weight: math.unit(150, "lb"),
  8712. name: "Front",
  8713. image: {
  8714. source: "./media/characters/sal/front.svg",
  8715. extra: 1846 / 1699,
  8716. bottom: 0.04
  8717. }
  8718. },
  8719. },
  8720. [
  8721. {
  8722. name: "Megamacro",
  8723. height: math.unit(10, "miles"),
  8724. default: true
  8725. },
  8726. ]
  8727. ))
  8728. characterMakers.push(() => makeCharacter(
  8729. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8730. {
  8731. front: {
  8732. height: math.unit(3, "meters"),
  8733. weight: math.unit(450, "kg"),
  8734. name: "front",
  8735. image: {
  8736. source: "./media/characters/ranger/front.svg",
  8737. extra: 2401 / 2243,
  8738. bottom: 0.05
  8739. }
  8740. },
  8741. },
  8742. [
  8743. {
  8744. name: "Normal",
  8745. height: math.unit(3, "meters"),
  8746. default: true
  8747. },
  8748. ]
  8749. ))
  8750. characterMakers.push(() => makeCharacter(
  8751. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8752. {
  8753. front: {
  8754. height: math.unit(14, "feet"),
  8755. weight: math.unit(800, "kg"),
  8756. name: "Front",
  8757. image: {
  8758. source: "./media/characters/theresa/front.svg",
  8759. extra: 3575 / 3346,
  8760. bottom: 0.03
  8761. }
  8762. },
  8763. },
  8764. [
  8765. {
  8766. name: "Normal",
  8767. height: math.unit(14, "feet"),
  8768. default: true
  8769. },
  8770. ]
  8771. ))
  8772. characterMakers.push(() => makeCharacter(
  8773. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8774. {
  8775. front: {
  8776. height: math.unit(6, "feet"),
  8777. weight: math.unit(3, "kg"),
  8778. name: "Front",
  8779. image: {
  8780. source: "./media/characters/ine/front.svg",
  8781. extra: 678 / 539,
  8782. bottom: 0.023
  8783. }
  8784. },
  8785. },
  8786. [
  8787. {
  8788. name: "Normal",
  8789. height: math.unit(2.265, "feet"),
  8790. default: true
  8791. },
  8792. ]
  8793. ))
  8794. characterMakers.push(() => makeCharacter(
  8795. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8796. {
  8797. front: {
  8798. height: math.unit(5, "feet"),
  8799. weight: math.unit(30, "kg"),
  8800. name: "Front",
  8801. image: {
  8802. source: "./media/characters/vial/front.svg",
  8803. extra: 1365 / 1277,
  8804. bottom: 0.04
  8805. }
  8806. },
  8807. },
  8808. [
  8809. {
  8810. name: "Normal",
  8811. height: math.unit(5, "feet"),
  8812. default: true
  8813. },
  8814. ]
  8815. ))
  8816. characterMakers.push(() => makeCharacter(
  8817. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8818. {
  8819. side: {
  8820. height: math.unit(3.4, "meters"),
  8821. weight: math.unit(1000, "lb"),
  8822. name: "Side",
  8823. image: {
  8824. source: "./media/characters/rovoska/side.svg",
  8825. extra: 4403 / 1515
  8826. }
  8827. },
  8828. },
  8829. [
  8830. {
  8831. name: "Normal",
  8832. height: math.unit(3.4, "meters"),
  8833. default: true
  8834. },
  8835. ]
  8836. ))
  8837. characterMakers.push(() => makeCharacter(
  8838. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8839. {
  8840. front: {
  8841. height: math.unit(8, "feet"),
  8842. weight: math.unit(315, "lb"),
  8843. name: "Front",
  8844. image: {
  8845. source: "./media/characters/gunner-rotthbauer/front.svg"
  8846. }
  8847. },
  8848. back: {
  8849. height: math.unit(8, "feet"),
  8850. weight: math.unit(315, "lb"),
  8851. name: "Back",
  8852. image: {
  8853. source: "./media/characters/gunner-rotthbauer/back.svg"
  8854. }
  8855. },
  8856. },
  8857. [
  8858. {
  8859. name: "Micro",
  8860. height: math.unit(3.5, "inches")
  8861. },
  8862. {
  8863. name: "Normal",
  8864. height: math.unit(8, "feet"),
  8865. default: true
  8866. },
  8867. {
  8868. name: "Macro",
  8869. height: math.unit(250, "feet")
  8870. },
  8871. {
  8872. name: "Megamacro",
  8873. height: math.unit(1, "AU")
  8874. },
  8875. ]
  8876. ))
  8877. characterMakers.push(() => makeCharacter(
  8878. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8879. {
  8880. front: {
  8881. height: math.unit(5 + 5 / 12, "feet"),
  8882. weight: math.unit(140, "lb"),
  8883. name: "Front",
  8884. image: {
  8885. source: "./media/characters/allatia/front.svg",
  8886. extra: 1227 / 1180,
  8887. bottom: 0.027
  8888. }
  8889. },
  8890. },
  8891. [
  8892. {
  8893. name: "Normal",
  8894. height: math.unit(5 + 5 / 12, "feet")
  8895. },
  8896. {
  8897. name: "Macro",
  8898. height: math.unit(250, "feet"),
  8899. default: true
  8900. },
  8901. {
  8902. name: "Megamacro",
  8903. height: math.unit(8, "miles")
  8904. }
  8905. ]
  8906. ))
  8907. characterMakers.push(() => makeCharacter(
  8908. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  8909. {
  8910. front: {
  8911. height: math.unit(6, "feet"),
  8912. weight: math.unit(120, "lb"),
  8913. name: "Front",
  8914. image: {
  8915. source: "./media/characters/tene/front.svg",
  8916. extra: 1728 / 1578,
  8917. bottom: 0.022
  8918. }
  8919. },
  8920. stomping: {
  8921. height: math.unit(2.025, "meters"),
  8922. weight: math.unit(120, "lb"),
  8923. name: "Stomping",
  8924. image: {
  8925. source: "./media/characters/tene/stomping.svg",
  8926. extra: 938 / 873,
  8927. bottom: 0.01
  8928. }
  8929. },
  8930. sitting: {
  8931. height: math.unit(1, "meter"),
  8932. weight: math.unit(120, "lb"),
  8933. name: "Sitting",
  8934. image: {
  8935. source: "./media/characters/tene/sitting.svg",
  8936. extra: 437 / 415,
  8937. bottom: 0.1
  8938. }
  8939. },
  8940. feral: {
  8941. height: math.unit(3.9, "feet"),
  8942. weight: math.unit(250, "lb"),
  8943. name: "Feral",
  8944. image: {
  8945. source: "./media/characters/tene/feral.svg",
  8946. extra: 717 / 458,
  8947. bottom: 0.179
  8948. }
  8949. },
  8950. },
  8951. [
  8952. {
  8953. name: "Normal",
  8954. height: math.unit(6, "feet")
  8955. },
  8956. {
  8957. name: "Macro",
  8958. height: math.unit(300, "feet"),
  8959. default: true
  8960. },
  8961. {
  8962. name: "Megamacro",
  8963. height: math.unit(5, "miles")
  8964. },
  8965. ]
  8966. ))
  8967. characterMakers.push(() => makeCharacter(
  8968. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  8969. {
  8970. side: {
  8971. height: math.unit(6, "feet"),
  8972. name: "Side",
  8973. image: {
  8974. source: "./media/characters/evander/side.svg",
  8975. extra: 877 / 477
  8976. }
  8977. },
  8978. },
  8979. [
  8980. {
  8981. name: "Normal",
  8982. height: math.unit(0.83, "meters"),
  8983. default: true
  8984. },
  8985. ]
  8986. ))
  8987. characterMakers.push(() => makeCharacter(
  8988. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  8989. {
  8990. front: {
  8991. height: math.unit(12, "feet"),
  8992. weight: math.unit(1000, "lb"),
  8993. name: "Front",
  8994. image: {
  8995. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  8996. extra: 1762 / 1611
  8997. }
  8998. },
  8999. back: {
  9000. height: math.unit(12, "feet"),
  9001. weight: math.unit(1000, "lb"),
  9002. name: "Back",
  9003. image: {
  9004. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9005. extra: 1762 / 1611
  9006. }
  9007. },
  9008. },
  9009. [
  9010. {
  9011. name: "Normal",
  9012. height: math.unit(12, "feet"),
  9013. default: true
  9014. },
  9015. {
  9016. name: "Kaiju",
  9017. height: math.unit(150, "feet")
  9018. },
  9019. ]
  9020. ))
  9021. characterMakers.push(() => makeCharacter(
  9022. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9023. {
  9024. front: {
  9025. height: math.unit(6, "feet"),
  9026. weight: math.unit(150, "lb"),
  9027. name: "Front",
  9028. image: {
  9029. source: "./media/characters/zero-alurus/front.svg"
  9030. }
  9031. },
  9032. back: {
  9033. height: math.unit(6, "feet"),
  9034. weight: math.unit(150, "lb"),
  9035. name: "Back",
  9036. image: {
  9037. source: "./media/characters/zero-alurus/back.svg"
  9038. }
  9039. },
  9040. },
  9041. [
  9042. {
  9043. name: "Normal",
  9044. height: math.unit(5 + 10 / 12, "feet")
  9045. },
  9046. {
  9047. name: "Macro",
  9048. height: math.unit(60, "feet"),
  9049. default: true
  9050. },
  9051. {
  9052. name: "Macro+",
  9053. height: math.unit(450, "feet")
  9054. },
  9055. ]
  9056. ))
  9057. characterMakers.push(() => makeCharacter(
  9058. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9059. {
  9060. front: {
  9061. height: math.unit(6, "feet"),
  9062. weight: math.unit(200, "lb"),
  9063. name: "Front",
  9064. image: {
  9065. source: "./media/characters/mega-shi/front.svg",
  9066. extra: 1279 / 1250,
  9067. bottom: 0.02
  9068. }
  9069. },
  9070. back: {
  9071. height: math.unit(6, "feet"),
  9072. weight: math.unit(200, "lb"),
  9073. name: "Back",
  9074. image: {
  9075. source: "./media/characters/mega-shi/back.svg",
  9076. extra: 1279 / 1250,
  9077. bottom: 0.02
  9078. }
  9079. },
  9080. },
  9081. [
  9082. {
  9083. name: "Micro",
  9084. height: math.unit(16 + 6 / 12, "feet")
  9085. },
  9086. {
  9087. name: "Third Dimension",
  9088. height: math.unit(40, "meters")
  9089. },
  9090. {
  9091. name: "Normal",
  9092. height: math.unit(660, "feet"),
  9093. default: true
  9094. },
  9095. {
  9096. name: "Megamacro",
  9097. height: math.unit(10, "miles")
  9098. },
  9099. {
  9100. name: "Planetary Launch",
  9101. height: math.unit(500, "miles")
  9102. },
  9103. {
  9104. name: "Interstellar",
  9105. height: math.unit(1e9, "miles")
  9106. },
  9107. {
  9108. name: "Leaving the Universe",
  9109. height: math.unit(1, "gigaparsec")
  9110. },
  9111. {
  9112. name: "Travelling Universes",
  9113. height: math.unit(30e15, "parsecs")
  9114. },
  9115. ]
  9116. ))
  9117. characterMakers.push(() => makeCharacter(
  9118. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9119. {
  9120. front: {
  9121. height: math.unit(6, "feet"),
  9122. weight: math.unit(150, "lb"),
  9123. name: "Front",
  9124. image: {
  9125. source: "./media/characters/odyssey/front.svg",
  9126. extra: 1782 / 1582,
  9127. bottom: 0.01
  9128. }
  9129. },
  9130. side: {
  9131. height: math.unit(5.7, "feet"),
  9132. weight: math.unit(140, "lb"),
  9133. name: "Side",
  9134. image: {
  9135. source: "./media/characters/odyssey/side.svg",
  9136. extra: 6462 / 5700
  9137. }
  9138. },
  9139. },
  9140. [
  9141. {
  9142. name: "Normal",
  9143. height: math.unit(5 + 4 / 12, "feet")
  9144. },
  9145. {
  9146. name: "Macro",
  9147. height: math.unit(1, "km")
  9148. },
  9149. {
  9150. name: "Megamacro",
  9151. height: math.unit(3000, "km")
  9152. },
  9153. {
  9154. name: "Gigamacro",
  9155. height: math.unit(1, "AU"),
  9156. default: true
  9157. },
  9158. {
  9159. name: "Omniversal",
  9160. height: math.unit(100e14, "lightyears")
  9161. },
  9162. ]
  9163. ))
  9164. characterMakers.push(() => makeCharacter(
  9165. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9166. {
  9167. front: {
  9168. height: math.unit(6, "feet"),
  9169. weight: math.unit(300, "lb"),
  9170. name: "Front",
  9171. image: {
  9172. source: "./media/characters/mekuto/front.svg",
  9173. extra: 921 / 832,
  9174. bottom: 0.03
  9175. }
  9176. },
  9177. hand: {
  9178. height: math.unit(6 / 10.24, "feet"),
  9179. name: "Hand",
  9180. image: {
  9181. source: "./media/characters/mekuto/hand.svg"
  9182. }
  9183. },
  9184. foot: {
  9185. height: math.unit(6 / 5.05, "feet"),
  9186. name: "Foot",
  9187. image: {
  9188. source: "./media/characters/mekuto/foot.svg"
  9189. }
  9190. },
  9191. },
  9192. [
  9193. {
  9194. name: "Minimicro",
  9195. height: math.unit(0.2, "inches")
  9196. },
  9197. {
  9198. name: "Micro",
  9199. height: math.unit(1.5, "inches")
  9200. },
  9201. {
  9202. name: "Normal",
  9203. height: math.unit(5 + 11 / 12, "feet"),
  9204. default: true
  9205. },
  9206. {
  9207. name: "Minimacro",
  9208. height: math.unit(17 + 9 / 12, "feet")
  9209. },
  9210. {
  9211. name: "Macro",
  9212. height: math.unit(177.5, "feet")
  9213. },
  9214. {
  9215. name: "Megamacro",
  9216. height: math.unit(152, "miles")
  9217. },
  9218. ]
  9219. ))
  9220. characterMakers.push(() => makeCharacter(
  9221. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9222. {
  9223. front: {
  9224. height: math.unit(6.5, "inches"),
  9225. weight: math.unit(13, "oz"),
  9226. name: "Front",
  9227. image: {
  9228. source: "./media/characters/dafydd-tomos/front.svg",
  9229. extra: 2990 / 2603,
  9230. bottom: 0.03
  9231. }
  9232. },
  9233. },
  9234. [
  9235. {
  9236. name: "Micro",
  9237. height: math.unit(6.5, "inches"),
  9238. default: true
  9239. },
  9240. ]
  9241. ))
  9242. characterMakers.push(() => makeCharacter(
  9243. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9244. {
  9245. front: {
  9246. height: math.unit(6, "feet"),
  9247. weight: math.unit(150, "lb"),
  9248. name: "Front",
  9249. image: {
  9250. source: "./media/characters/splinter/front.svg",
  9251. extra: 2990 / 2882,
  9252. bottom: 0.04
  9253. }
  9254. },
  9255. back: {
  9256. height: math.unit(6, "feet"),
  9257. weight: math.unit(150, "lb"),
  9258. name: "Back",
  9259. image: {
  9260. source: "./media/characters/splinter/back.svg",
  9261. extra: 2990 / 2882,
  9262. bottom: 0.04
  9263. }
  9264. },
  9265. },
  9266. [
  9267. {
  9268. name: "Normal",
  9269. height: math.unit(6, "feet")
  9270. },
  9271. {
  9272. name: "Macro",
  9273. height: math.unit(230, "meters"),
  9274. default: true
  9275. },
  9276. ]
  9277. ))
  9278. characterMakers.push(() => makeCharacter(
  9279. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9280. {
  9281. front: {
  9282. height: math.unit(4 + 10 / 12, "feet"),
  9283. weight: math.unit(480, "lb"),
  9284. name: "Front",
  9285. image: {
  9286. source: "./media/characters/snow-gabumon/front.svg",
  9287. extra: 1140 / 963,
  9288. bottom: 0.058
  9289. }
  9290. },
  9291. back: {
  9292. height: math.unit(4 + 10 / 12, "feet"),
  9293. weight: math.unit(480, "lb"),
  9294. name: "Back",
  9295. image: {
  9296. source: "./media/characters/snow-gabumon/back.svg",
  9297. extra: 1115 / 962,
  9298. bottom: 0.041
  9299. }
  9300. },
  9301. frontUndresed: {
  9302. height: math.unit(4 + 10 / 12, "feet"),
  9303. weight: math.unit(480, "lb"),
  9304. name: "Front (Undressed)",
  9305. image: {
  9306. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9307. extra: 1061 / 960,
  9308. bottom: 0.045
  9309. }
  9310. },
  9311. },
  9312. [
  9313. {
  9314. name: "Micro",
  9315. height: math.unit(1, "inch")
  9316. },
  9317. {
  9318. name: "Normal",
  9319. height: math.unit(4 + 10 / 12, "feet"),
  9320. default: true
  9321. },
  9322. {
  9323. name: "Macro",
  9324. height: math.unit(200, "feet")
  9325. },
  9326. {
  9327. name: "Megamacro",
  9328. height: math.unit(120, "miles")
  9329. },
  9330. {
  9331. name: "Gigamacro",
  9332. height: math.unit(9800, "miles")
  9333. },
  9334. ]
  9335. ))
  9336. characterMakers.push(() => makeCharacter(
  9337. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9338. {
  9339. front: {
  9340. height: math.unit(1.7, "meters"),
  9341. weight: math.unit(140, "lb"),
  9342. name: "Front",
  9343. image: {
  9344. source: "./media/characters/moody/front.svg",
  9345. extra: 3226 / 3007,
  9346. bottom: 0.087
  9347. }
  9348. },
  9349. },
  9350. [
  9351. {
  9352. name: "Micro",
  9353. height: math.unit(1, "mm")
  9354. },
  9355. {
  9356. name: "Normal",
  9357. height: math.unit(1.7, "meters"),
  9358. default: true
  9359. },
  9360. {
  9361. name: "Macro",
  9362. height: math.unit(80, "meters")
  9363. },
  9364. {
  9365. name: "Macro+",
  9366. height: math.unit(500, "meters")
  9367. },
  9368. ]
  9369. ))
  9370. characterMakers.push(() => makeCharacter(
  9371. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9372. {
  9373. front: {
  9374. height: math.unit(6, "feet"),
  9375. weight: math.unit(150, "lb"),
  9376. name: "Front",
  9377. image: {
  9378. source: "./media/characters/zyas/front.svg",
  9379. extra: 1180 / 1120,
  9380. bottom: 0.045
  9381. }
  9382. },
  9383. },
  9384. [
  9385. {
  9386. name: "Normal",
  9387. height: math.unit(10, "feet"),
  9388. default: true
  9389. },
  9390. {
  9391. name: "Macro",
  9392. height: math.unit(500, "feet")
  9393. },
  9394. {
  9395. name: "Megamacro",
  9396. height: math.unit(5, "miles")
  9397. },
  9398. {
  9399. name: "Teramacro",
  9400. height: math.unit(150000, "miles")
  9401. },
  9402. ]
  9403. ))
  9404. characterMakers.push(() => makeCharacter(
  9405. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9406. {
  9407. front: {
  9408. height: math.unit(6, "feet"),
  9409. weight: math.unit(150, "lb"),
  9410. name: "Front",
  9411. image: {
  9412. source: "./media/characters/cuon/front.svg",
  9413. extra: 1390 / 1320,
  9414. bottom: 0.008
  9415. }
  9416. },
  9417. },
  9418. [
  9419. {
  9420. name: "Micro",
  9421. height: math.unit(3, "inches")
  9422. },
  9423. {
  9424. name: "Normal",
  9425. height: math.unit(18 + 9 / 12, "feet"),
  9426. default: true
  9427. },
  9428. {
  9429. name: "Macro",
  9430. height: math.unit(360, "feet")
  9431. },
  9432. {
  9433. name: "Megamacro",
  9434. height: math.unit(360, "miles")
  9435. },
  9436. ]
  9437. ))
  9438. characterMakers.push(() => makeCharacter(
  9439. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9440. {
  9441. front: {
  9442. height: math.unit(2.4, "meters"),
  9443. weight: math.unit(70, "kg"),
  9444. name: "Front",
  9445. image: {
  9446. source: "./media/characters/nyanuxk/front.svg",
  9447. extra: 1172 / 1084,
  9448. bottom: 0.065
  9449. }
  9450. },
  9451. side: {
  9452. height: math.unit(2.4, "meters"),
  9453. weight: math.unit(70, "kg"),
  9454. name: "Side",
  9455. image: {
  9456. source: "./media/characters/nyanuxk/side.svg",
  9457. extra: 1190 / 1132,
  9458. bottom: 0.007
  9459. }
  9460. },
  9461. back: {
  9462. height: math.unit(2.4, "meters"),
  9463. weight: math.unit(70, "kg"),
  9464. name: "Back",
  9465. image: {
  9466. source: "./media/characters/nyanuxk/back.svg",
  9467. extra: 1200 / 1141,
  9468. bottom: 0.015
  9469. }
  9470. },
  9471. foot: {
  9472. height: math.unit(0.52, "meters"),
  9473. name: "Foot",
  9474. image: {
  9475. source: "./media/characters/nyanuxk/foot.svg"
  9476. }
  9477. },
  9478. },
  9479. [
  9480. {
  9481. name: "Micro",
  9482. height: math.unit(2, "cm")
  9483. },
  9484. {
  9485. name: "Normal",
  9486. height: math.unit(2.4, "meters"),
  9487. default: true
  9488. },
  9489. {
  9490. name: "Smaller Macro",
  9491. height: math.unit(120, "meters")
  9492. },
  9493. {
  9494. name: "Bigger Macro",
  9495. height: math.unit(1.2, "km")
  9496. },
  9497. {
  9498. name: "Megamacro",
  9499. height: math.unit(15, "kilometers")
  9500. },
  9501. {
  9502. name: "Gigamacro",
  9503. height: math.unit(2000, "km")
  9504. },
  9505. {
  9506. name: "Teramacro",
  9507. height: math.unit(500000, "km")
  9508. },
  9509. ]
  9510. ))
  9511. characterMakers.push(() => makeCharacter(
  9512. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9513. {
  9514. side: {
  9515. height: math.unit(6, "feet"),
  9516. name: "Side",
  9517. image: {
  9518. source: "./media/characters/ailbhe/side.svg",
  9519. extra: 757 / 464,
  9520. bottom: 0.041
  9521. }
  9522. },
  9523. },
  9524. [
  9525. {
  9526. name: "Normal",
  9527. height: math.unit(1.07, "meters"),
  9528. default: true
  9529. },
  9530. ]
  9531. ))
  9532. characterMakers.push(() => makeCharacter(
  9533. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9534. {
  9535. front: {
  9536. height: math.unit(6, "feet"),
  9537. weight: math.unit(120, "kg"),
  9538. name: "Front",
  9539. image: {
  9540. source: "./media/characters/zevulfius/front.svg",
  9541. extra: 965 / 903
  9542. }
  9543. },
  9544. side: {
  9545. height: math.unit(6, "feet"),
  9546. weight: math.unit(120, "kg"),
  9547. name: "Side",
  9548. image: {
  9549. source: "./media/characters/zevulfius/side.svg",
  9550. extra: 939 / 900
  9551. }
  9552. },
  9553. back: {
  9554. height: math.unit(6, "feet"),
  9555. weight: math.unit(120, "kg"),
  9556. name: "Back",
  9557. image: {
  9558. source: "./media/characters/zevulfius/back.svg",
  9559. extra: 918 / 854,
  9560. bottom: 0.005
  9561. }
  9562. },
  9563. foot: {
  9564. height: math.unit(6 / 3.72, "feet"),
  9565. name: "Foot",
  9566. image: {
  9567. source: "./media/characters/zevulfius/foot.svg"
  9568. }
  9569. },
  9570. },
  9571. [
  9572. {
  9573. name: "Macro",
  9574. height: math.unit(750, "meters")
  9575. },
  9576. {
  9577. name: "Megamacro",
  9578. height: math.unit(20, "km"),
  9579. default: true
  9580. },
  9581. {
  9582. name: "Gigamacro",
  9583. height: math.unit(2000, "km")
  9584. },
  9585. {
  9586. name: "Teramacro",
  9587. height: math.unit(250000, "km")
  9588. },
  9589. ]
  9590. ))
  9591. characterMakers.push(() => makeCharacter(
  9592. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9593. {
  9594. front: {
  9595. height: math.unit(100, "feet"),
  9596. weight: math.unit(350, "kg"),
  9597. name: "Front",
  9598. image: {
  9599. source: "./media/characters/rikes/front.svg",
  9600. extra: 1565 / 1483,
  9601. bottom: 0.017
  9602. }
  9603. },
  9604. },
  9605. [
  9606. {
  9607. name: "Macro",
  9608. height: math.unit(100, "feet"),
  9609. default: true
  9610. },
  9611. ]
  9612. ))
  9613. characterMakers.push(() => makeCharacter(
  9614. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9615. {
  9616. anthro: {
  9617. height: math.unit(8, "feet"),
  9618. weight: math.unit(120, "kg"),
  9619. name: "Anthro",
  9620. image: {
  9621. source: "./media/characters/adam-silver-mane/anthro.svg",
  9622. extra: 5743 / 5339,
  9623. bottom: 0.07
  9624. }
  9625. },
  9626. taur: {
  9627. height: math.unit(16, "feet"),
  9628. weight: math.unit(1500, "kg"),
  9629. name: "Taur",
  9630. image: {
  9631. source: "./media/characters/adam-silver-mane/taur.svg",
  9632. extra: 1713 / 1571,
  9633. bottom: 0.01
  9634. }
  9635. },
  9636. },
  9637. [
  9638. {
  9639. name: "Normal",
  9640. height: math.unit(8, "feet")
  9641. },
  9642. {
  9643. name: "Minimacro",
  9644. height: math.unit(80, "feet")
  9645. },
  9646. {
  9647. name: "Macro",
  9648. height: math.unit(800, "feet"),
  9649. default: true
  9650. },
  9651. {
  9652. name: "Megamacro",
  9653. height: math.unit(8000, "feet")
  9654. },
  9655. {
  9656. name: "Gigamacro",
  9657. height: math.unit(800, "miles")
  9658. },
  9659. {
  9660. name: "Teramacro",
  9661. height: math.unit(80000, "miles")
  9662. },
  9663. {
  9664. name: "Celestial",
  9665. height: math.unit(8e6, "miles")
  9666. },
  9667. {
  9668. name: "Star Dragon",
  9669. height: math.unit(800000, "parsecs")
  9670. },
  9671. {
  9672. name: "Godly",
  9673. height: math.unit(800, "teraparsecs")
  9674. },
  9675. ]
  9676. ))
  9677. characterMakers.push(() => makeCharacter(
  9678. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9679. {
  9680. front: {
  9681. height: math.unit(6, "feet"),
  9682. weight: math.unit(150, "lb"),
  9683. name: "Front",
  9684. image: {
  9685. source: "./media/characters/ky'owin/front.svg",
  9686. extra: 3888 / 3068,
  9687. bottom: 0.015
  9688. }
  9689. },
  9690. },
  9691. [
  9692. {
  9693. name: "Normal",
  9694. height: math.unit(6 + 8 / 12, "feet")
  9695. },
  9696. {
  9697. name: "Large",
  9698. height: math.unit(68, "feet")
  9699. },
  9700. {
  9701. name: "Macro",
  9702. height: math.unit(132, "feet")
  9703. },
  9704. {
  9705. name: "Macro+",
  9706. height: math.unit(340, "feet")
  9707. },
  9708. {
  9709. name: "Macro++",
  9710. height: math.unit(680, "feet"),
  9711. default: true
  9712. },
  9713. {
  9714. name: "Megamacro",
  9715. height: math.unit(1, "mile")
  9716. },
  9717. {
  9718. name: "Megamacro+",
  9719. height: math.unit(10, "miles")
  9720. },
  9721. ]
  9722. ))
  9723. characterMakers.push(() => makeCharacter(
  9724. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9725. {
  9726. front: {
  9727. height: math.unit(4, "feet"),
  9728. weight: math.unit(50, "lb"),
  9729. name: "Front",
  9730. image: {
  9731. source: "./media/characters/mal/front.svg",
  9732. extra: 785 / 724,
  9733. bottom: 0.07
  9734. }
  9735. },
  9736. },
  9737. [
  9738. {
  9739. name: "Micro",
  9740. height: math.unit(4, "inches")
  9741. },
  9742. {
  9743. name: "Normal",
  9744. height: math.unit(4, "feet"),
  9745. default: true
  9746. },
  9747. {
  9748. name: "Macro",
  9749. height: math.unit(200, "feet")
  9750. },
  9751. ]
  9752. ))
  9753. characterMakers.push(() => makeCharacter(
  9754. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9755. {
  9756. front: {
  9757. height: math.unit(6, "feet"),
  9758. weight: math.unit(150, "lb"),
  9759. name: "Front",
  9760. image: {
  9761. source: "./media/characters/jordan-deware/front.svg",
  9762. extra: 1191 / 1012
  9763. }
  9764. },
  9765. },
  9766. [
  9767. {
  9768. name: "Nano",
  9769. height: math.unit(0.01, "mm")
  9770. },
  9771. {
  9772. name: "Minimicro",
  9773. height: math.unit(1, "mm")
  9774. },
  9775. {
  9776. name: "Micro",
  9777. height: math.unit(0.5, "inches")
  9778. },
  9779. {
  9780. name: "Normal",
  9781. height: math.unit(4, "feet"),
  9782. default: true
  9783. },
  9784. {
  9785. name: "Minimacro",
  9786. height: math.unit(40, "meters")
  9787. },
  9788. {
  9789. name: "Small Macro",
  9790. height: math.unit(400, "meters")
  9791. },
  9792. {
  9793. name: "Macro",
  9794. height: math.unit(4, "miles")
  9795. },
  9796. {
  9797. name: "Megamacro",
  9798. height: math.unit(40, "miles")
  9799. },
  9800. {
  9801. name: "Megamacro+",
  9802. height: math.unit(400, "miles")
  9803. },
  9804. {
  9805. name: "Gigamacro",
  9806. height: math.unit(400000, "miles")
  9807. },
  9808. ]
  9809. ))
  9810. characterMakers.push(() => makeCharacter(
  9811. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9812. {
  9813. side: {
  9814. height: math.unit(6, "feet"),
  9815. weight: math.unit(150, "lb"),
  9816. name: "Side",
  9817. image: {
  9818. source: "./media/characters/kimiko/side.svg",
  9819. extra: 600 / 358
  9820. }
  9821. },
  9822. },
  9823. [
  9824. {
  9825. name: "Normal",
  9826. height: math.unit(15, "feet"),
  9827. default: true
  9828. },
  9829. {
  9830. name: "Macro",
  9831. height: math.unit(220, "feet")
  9832. },
  9833. {
  9834. name: "Macro+",
  9835. height: math.unit(1450, "feet")
  9836. },
  9837. {
  9838. name: "Megamacro",
  9839. height: math.unit(11500, "feet")
  9840. },
  9841. {
  9842. name: "Gigamacro",
  9843. height: math.unit(9500, "miles")
  9844. },
  9845. {
  9846. name: "Teramacro",
  9847. height: math.unit(2208005005, "miles")
  9848. },
  9849. {
  9850. name: "Examacro",
  9851. height: math.unit(2750, "parsecs")
  9852. },
  9853. {
  9854. name: "Zettamacro",
  9855. height: math.unit(101500, "parsecs")
  9856. },
  9857. ]
  9858. ))
  9859. characterMakers.push(() => makeCharacter(
  9860. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9861. {
  9862. front: {
  9863. height: math.unit(6, "feet"),
  9864. weight: math.unit(70, "kg"),
  9865. name: "Front",
  9866. image: {
  9867. source: "./media/characters/andrew-sleepy/front.svg"
  9868. }
  9869. },
  9870. side: {
  9871. height: math.unit(6, "feet"),
  9872. weight: math.unit(70, "kg"),
  9873. name: "Side",
  9874. image: {
  9875. source: "./media/characters/andrew-sleepy/side.svg"
  9876. }
  9877. },
  9878. },
  9879. [
  9880. {
  9881. name: "Micro",
  9882. height: math.unit(1, "mm"),
  9883. default: true
  9884. },
  9885. ]
  9886. ))
  9887. characterMakers.push(() => makeCharacter(
  9888. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  9889. {
  9890. front: {
  9891. height: math.unit(6, "feet"),
  9892. weight: math.unit(150, "lb"),
  9893. name: "Front",
  9894. image: {
  9895. source: "./media/characters/judio/front.svg",
  9896. extra: 1258 / 1110
  9897. }
  9898. },
  9899. },
  9900. [
  9901. {
  9902. name: "Normal",
  9903. height: math.unit(5 + 6 / 12, "feet")
  9904. },
  9905. {
  9906. name: "Macro",
  9907. height: math.unit(1000, "feet"),
  9908. default: true
  9909. },
  9910. {
  9911. name: "Megamacro",
  9912. height: math.unit(10, "miles")
  9913. },
  9914. ]
  9915. ))
  9916. characterMakers.push(() => makeCharacter(
  9917. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  9918. {
  9919. front: {
  9920. height: math.unit(6, "feet"),
  9921. weight: math.unit(68, "kg"),
  9922. name: "Front",
  9923. image: {
  9924. source: "./media/characters/nomaxice/front.svg",
  9925. extra: 1498 / 1073,
  9926. bottom: 0.075
  9927. }
  9928. },
  9929. foot: {
  9930. height: math.unit(1.1, "feet"),
  9931. name: "Foot",
  9932. image: {
  9933. source: "./media/characters/nomaxice/foot.svg"
  9934. }
  9935. },
  9936. },
  9937. [
  9938. {
  9939. name: "Micro",
  9940. height: math.unit(8, "cm")
  9941. },
  9942. {
  9943. name: "Norm",
  9944. height: math.unit(1.82, "m")
  9945. },
  9946. {
  9947. name: "Norm+",
  9948. height: math.unit(8.8, "feet")
  9949. },
  9950. {
  9951. name: "Big",
  9952. height: math.unit(8, "meters"),
  9953. default: true
  9954. },
  9955. {
  9956. name: "Macro",
  9957. height: math.unit(18, "meters")
  9958. },
  9959. {
  9960. name: "Macro+",
  9961. height: math.unit(88, "meters")
  9962. },
  9963. ]
  9964. ))
  9965. characterMakers.push(() => makeCharacter(
  9966. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  9967. {
  9968. front: {
  9969. height: math.unit(12, "feet"),
  9970. weight: math.unit(1.5, "tons"),
  9971. name: "Front",
  9972. image: {
  9973. source: "./media/characters/dydros/front.svg",
  9974. extra: 863 / 800,
  9975. bottom: 0.015
  9976. }
  9977. },
  9978. back: {
  9979. height: math.unit(12, "feet"),
  9980. weight: math.unit(1.5, "tons"),
  9981. name: "Back",
  9982. image: {
  9983. source: "./media/characters/dydros/back.svg",
  9984. extra: 900 / 843,
  9985. bottom: 0.005
  9986. }
  9987. },
  9988. },
  9989. [
  9990. {
  9991. name: "Normal",
  9992. height: math.unit(12, "feet"),
  9993. default: true
  9994. },
  9995. ]
  9996. ))
  9997. characterMakers.push(() => makeCharacter(
  9998. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  9999. {
  10000. front: {
  10001. height: math.unit(6, "feet"),
  10002. weight: math.unit(100, "kg"),
  10003. name: "Front",
  10004. image: {
  10005. source: "./media/characters/riggi/front.svg",
  10006. extra: 5787 / 5303
  10007. }
  10008. },
  10009. hyper: {
  10010. height: math.unit(6 * 5 / 3, "feet"),
  10011. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10012. name: "Hyper",
  10013. image: {
  10014. source: "./media/characters/riggi/hyper.svg",
  10015. extra: 3595 / 3485
  10016. }
  10017. },
  10018. },
  10019. [
  10020. {
  10021. name: "Small Macro",
  10022. height: math.unit(50, "feet")
  10023. },
  10024. {
  10025. name: "Default",
  10026. height: math.unit(200, "feet"),
  10027. default: true
  10028. },
  10029. {
  10030. name: "Loom",
  10031. height: math.unit(10000, "feet")
  10032. },
  10033. {
  10034. name: "Cruising Altitude",
  10035. height: math.unit(30000, "feet")
  10036. },
  10037. {
  10038. name: "Megamacro",
  10039. height: math.unit(100, "miles")
  10040. },
  10041. {
  10042. name: "Continent Sized",
  10043. height: math.unit(2800, "miles")
  10044. },
  10045. {
  10046. name: "Earth Sized",
  10047. height: math.unit(8000, "miles")
  10048. },
  10049. ]
  10050. ))
  10051. characterMakers.push(() => makeCharacter(
  10052. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10053. {
  10054. front: {
  10055. height: math.unit(6, "feet"),
  10056. weight: math.unit(250, "lb"),
  10057. name: "Front",
  10058. image: {
  10059. source: "./media/characters/alexi/front.svg",
  10060. extra: 3483 / 3291,
  10061. bottom: 0.04
  10062. }
  10063. },
  10064. back: {
  10065. height: math.unit(6, "feet"),
  10066. weight: math.unit(250, "lb"),
  10067. name: "Back",
  10068. image: {
  10069. source: "./media/characters/alexi/back.svg",
  10070. extra: 3533 / 3356,
  10071. bottom: 0.021
  10072. }
  10073. },
  10074. frontTransforming: {
  10075. height: math.unit(8.58, "feet"),
  10076. weight: math.unit(1300, "lb"),
  10077. name: "Transforming",
  10078. image: {
  10079. source: "./media/characters/alexi/front-transforming.svg",
  10080. extra: 437 / 409,
  10081. bottom: 19 / 458.66
  10082. }
  10083. },
  10084. frontTransformed: {
  10085. height: math.unit(12.5, "feet"),
  10086. weight: math.unit(4000, "lb"),
  10087. name: "Transformed",
  10088. image: {
  10089. source: "./media/characters/alexi/front-transformed.svg",
  10090. extra: 639 / 614,
  10091. bottom: 30.55 / 671
  10092. }
  10093. },
  10094. },
  10095. [
  10096. {
  10097. name: "Normal",
  10098. height: math.unit(3, "meters"),
  10099. default: true
  10100. },
  10101. {
  10102. name: "Minimacro",
  10103. height: math.unit(30, "meters")
  10104. },
  10105. {
  10106. name: "Macro",
  10107. height: math.unit(500, "meters")
  10108. },
  10109. {
  10110. name: "Megamacro",
  10111. height: math.unit(9000, "km")
  10112. },
  10113. {
  10114. name: "Teramacro",
  10115. height: math.unit(384000, "km")
  10116. },
  10117. ]
  10118. ))
  10119. characterMakers.push(() => makeCharacter(
  10120. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10121. {
  10122. front: {
  10123. height: math.unit(6, "feet"),
  10124. weight: math.unit(150, "lb"),
  10125. name: "Front",
  10126. image: {
  10127. source: "./media/characters/kayroo/front.svg",
  10128. extra: 1153 / 1038,
  10129. bottom: 0.06
  10130. }
  10131. },
  10132. foot: {
  10133. height: math.unit(6, "feet"),
  10134. weight: math.unit(150, "lb"),
  10135. name: "Foot",
  10136. image: {
  10137. source: "./media/characters/kayroo/foot.svg"
  10138. }
  10139. },
  10140. },
  10141. [
  10142. {
  10143. name: "Normal",
  10144. height: math.unit(8, "feet"),
  10145. default: true
  10146. },
  10147. {
  10148. name: "Minimacro",
  10149. height: math.unit(250, "feet")
  10150. },
  10151. {
  10152. name: "Macro",
  10153. height: math.unit(2800, "feet")
  10154. },
  10155. {
  10156. name: "Megamacro",
  10157. height: math.unit(5200, "feet")
  10158. },
  10159. {
  10160. name: "Gigamacro",
  10161. height: math.unit(27000, "feet")
  10162. },
  10163. {
  10164. name: "Omega",
  10165. height: math.unit(45000, "feet")
  10166. },
  10167. ]
  10168. ))
  10169. characterMakers.push(() => makeCharacter(
  10170. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10171. {
  10172. front: {
  10173. height: math.unit(18, "feet"),
  10174. weight: math.unit(5800, "lb"),
  10175. name: "Front",
  10176. image: {
  10177. source: "./media/characters/rhys/front.svg",
  10178. extra: 3386 / 3090,
  10179. bottom: 0.07
  10180. }
  10181. },
  10182. },
  10183. [
  10184. {
  10185. name: "Normal",
  10186. height: math.unit(18, "feet"),
  10187. default: true
  10188. },
  10189. {
  10190. name: "Working Size",
  10191. height: math.unit(200, "feet")
  10192. },
  10193. {
  10194. name: "Demolition Size",
  10195. height: math.unit(2000, "feet")
  10196. },
  10197. {
  10198. name: "Maximum Licensed Size",
  10199. height: math.unit(5, "miles")
  10200. },
  10201. {
  10202. name: "Maximum Observed Size",
  10203. height: math.unit(10, "yottameters")
  10204. },
  10205. ]
  10206. ))
  10207. characterMakers.push(() => makeCharacter(
  10208. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10209. {
  10210. front: {
  10211. height: math.unit(6, "feet"),
  10212. weight: math.unit(250, "lb"),
  10213. name: "Front",
  10214. image: {
  10215. source: "./media/characters/toto/front.svg",
  10216. extra: 527 / 479,
  10217. bottom: 0.05
  10218. }
  10219. },
  10220. },
  10221. [
  10222. {
  10223. name: "Micro",
  10224. height: math.unit(3, "feet")
  10225. },
  10226. {
  10227. name: "Normal",
  10228. height: math.unit(10, "feet")
  10229. },
  10230. {
  10231. name: "Macro",
  10232. height: math.unit(150, "feet"),
  10233. default: true
  10234. },
  10235. {
  10236. name: "Megamacro",
  10237. height: math.unit(1200, "feet")
  10238. },
  10239. ]
  10240. ))
  10241. characterMakers.push(() => makeCharacter(
  10242. { name: "King", species: ["lion"], tags: ["anthro"] },
  10243. {
  10244. back: {
  10245. height: math.unit(6, "feet"),
  10246. weight: math.unit(150, "lb"),
  10247. name: "Back",
  10248. image: {
  10249. source: "./media/characters/king/back.svg"
  10250. }
  10251. },
  10252. },
  10253. [
  10254. {
  10255. name: "Micro",
  10256. height: math.unit(2, "inches")
  10257. },
  10258. {
  10259. name: "Normal",
  10260. height: math.unit(8, "feet")
  10261. },
  10262. {
  10263. name: "Macro",
  10264. height: math.unit(200, "feet"),
  10265. default: true
  10266. },
  10267. {
  10268. name: "Megamacro",
  10269. height: math.unit(50, "miles")
  10270. },
  10271. ]
  10272. ))
  10273. characterMakers.push(() => makeCharacter(
  10274. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10275. {
  10276. anthro: {
  10277. height: math.unit(6 + 5 / 12, "feet"),
  10278. weight: math.unit(280, "lb"),
  10279. name: "Anthro",
  10280. image: {
  10281. source: "./media/characters/cordite/anthro.svg",
  10282. extra: 1986 / 1905,
  10283. bottom: 0.025
  10284. }
  10285. },
  10286. feral: {
  10287. height: math.unit(2, "feet"),
  10288. weight: math.unit(90, "lb"),
  10289. name: "Feral",
  10290. image: {
  10291. source: "./media/characters/cordite/feral.svg",
  10292. extra: 1260 / 755,
  10293. bottom: 0.05
  10294. }
  10295. },
  10296. },
  10297. [
  10298. {
  10299. name: "Normal",
  10300. height: math.unit(6 + 5 / 12, "feet"),
  10301. default: true
  10302. },
  10303. ]
  10304. ))
  10305. characterMakers.push(() => makeCharacter(
  10306. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10307. {
  10308. front: {
  10309. height: math.unit(6, "feet"),
  10310. weight: math.unit(150, "lb"),
  10311. name: "Front",
  10312. image: {
  10313. source: "./media/characters/pianostrong/front.svg",
  10314. extra: 6577 / 6254,
  10315. bottom: 0.02
  10316. }
  10317. },
  10318. side: {
  10319. height: math.unit(6, "feet"),
  10320. weight: math.unit(150, "lb"),
  10321. name: "Side",
  10322. image: {
  10323. source: "./media/characters/pianostrong/side.svg",
  10324. extra: 6106 / 5730
  10325. }
  10326. },
  10327. back: {
  10328. height: math.unit(6, "feet"),
  10329. weight: math.unit(150, "lb"),
  10330. name: "Back",
  10331. image: {
  10332. source: "./media/characters/pianostrong/back.svg",
  10333. extra: 6085 / 5733,
  10334. bottom: 0.01
  10335. }
  10336. },
  10337. },
  10338. [
  10339. {
  10340. name: "Macro",
  10341. height: math.unit(100, "feet")
  10342. },
  10343. {
  10344. name: "Macro+",
  10345. height: math.unit(300, "feet"),
  10346. default: true
  10347. },
  10348. {
  10349. name: "Macro++",
  10350. height: math.unit(1000, "feet")
  10351. },
  10352. ]
  10353. ))
  10354. characterMakers.push(() => makeCharacter(
  10355. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10356. {
  10357. front: {
  10358. height: math.unit(6, "feet"),
  10359. weight: math.unit(150, "lb"),
  10360. name: "Front",
  10361. image: {
  10362. source: "./media/characters/kona/front.svg",
  10363. extra: 2960 / 2629,
  10364. bottom: 0.005
  10365. }
  10366. },
  10367. },
  10368. [
  10369. {
  10370. name: "Normal",
  10371. height: math.unit(11 + 8 / 12, "feet")
  10372. },
  10373. {
  10374. name: "Macro",
  10375. height: math.unit(850, "feet"),
  10376. default: true
  10377. },
  10378. {
  10379. name: "Macro+",
  10380. height: math.unit(1.5, "km"),
  10381. default: true
  10382. },
  10383. {
  10384. name: "Megamacro",
  10385. height: math.unit(80, "miles")
  10386. },
  10387. {
  10388. name: "Gigamacro",
  10389. height: math.unit(3500, "miles")
  10390. },
  10391. ]
  10392. ))
  10393. characterMakers.push(() => makeCharacter(
  10394. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10395. {
  10396. side: {
  10397. height: math.unit(1.9, "meters"),
  10398. weight: math.unit(326, "kg"),
  10399. name: "Side",
  10400. image: {
  10401. source: "./media/characters/levi/side.svg",
  10402. extra: 1704 / 1334,
  10403. bottom: 0.02
  10404. }
  10405. },
  10406. },
  10407. [
  10408. {
  10409. name: "Normal",
  10410. height: math.unit(1.9, "meters"),
  10411. default: true
  10412. },
  10413. {
  10414. name: "Macro",
  10415. height: math.unit(20, "meters")
  10416. },
  10417. {
  10418. name: "Macro+",
  10419. height: math.unit(200, "meters")
  10420. },
  10421. {
  10422. name: "Megamacro",
  10423. height: math.unit(2, "km")
  10424. },
  10425. {
  10426. name: "Megamacro+",
  10427. height: math.unit(20, "km")
  10428. },
  10429. {
  10430. name: "Gigamacro",
  10431. height: math.unit(2500, "km")
  10432. },
  10433. {
  10434. name: "Gigamacro+",
  10435. height: math.unit(120000, "km")
  10436. },
  10437. {
  10438. name: "Teramacro",
  10439. height: math.unit(7.77e6, "km")
  10440. },
  10441. ]
  10442. ))
  10443. characterMakers.push(() => makeCharacter(
  10444. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10445. {
  10446. front: {
  10447. height: math.unit(6 + 4 / 12, "feet"),
  10448. weight: math.unit(188, "lb"),
  10449. name: "Front",
  10450. image: {
  10451. source: "./media/characters/bmc/front.svg",
  10452. extra: 1067 / 1022,
  10453. bottom: 0.047
  10454. }
  10455. },
  10456. },
  10457. [
  10458. {
  10459. name: "Human-sized",
  10460. height: math.unit(6 + 4 / 12, "feet")
  10461. },
  10462. {
  10463. name: "Small",
  10464. height: math.unit(250, "feet")
  10465. },
  10466. {
  10467. name: "Normal",
  10468. height: math.unit(1250, "feet"),
  10469. default: true
  10470. },
  10471. {
  10472. name: "Good Day",
  10473. height: math.unit(88, "miles")
  10474. },
  10475. {
  10476. name: "Largest Measured Size",
  10477. height: math.unit(11.2e6, "lightyears")
  10478. },
  10479. ]
  10480. ))
  10481. characterMakers.push(() => makeCharacter(
  10482. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10483. {
  10484. front: {
  10485. height: math.unit(20, "feet"),
  10486. weight: math.unit(2016, "kg"),
  10487. name: "Front",
  10488. image: {
  10489. source: "./media/characters/sven-the-kaiju/front.svg",
  10490. extra: 1479 / 1449,
  10491. bottom: 0.05
  10492. }
  10493. },
  10494. },
  10495. [
  10496. {
  10497. name: "Fairy",
  10498. height: math.unit(6, "inches")
  10499. },
  10500. {
  10501. name: "Normal",
  10502. height: math.unit(20, "feet"),
  10503. default: true
  10504. },
  10505. {
  10506. name: "Rampage",
  10507. height: math.unit(200, "feet")
  10508. },
  10509. {
  10510. name: "Archfey Forest Guardian",
  10511. height: math.unit(1, "mile")
  10512. },
  10513. ]
  10514. ))
  10515. characterMakers.push(() => makeCharacter(
  10516. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10517. {
  10518. front: {
  10519. height: math.unit(4, "meters"),
  10520. weight: math.unit(2, "tons"),
  10521. name: "Front",
  10522. image: {
  10523. source: "./media/characters/marik/front.svg",
  10524. extra: 1057 / 1003,
  10525. bottom: 0.08
  10526. }
  10527. },
  10528. },
  10529. [
  10530. {
  10531. name: "Normal",
  10532. height: math.unit(4, "meters"),
  10533. default: true
  10534. },
  10535. {
  10536. name: "Macro",
  10537. height: math.unit(20, "meters")
  10538. },
  10539. {
  10540. name: "Megamacro",
  10541. height: math.unit(50, "km")
  10542. },
  10543. {
  10544. name: "Gigamacro",
  10545. height: math.unit(100, "km")
  10546. },
  10547. {
  10548. name: "Alpha Macro",
  10549. height: math.unit(7.88e7, "yottameters")
  10550. },
  10551. ]
  10552. ))
  10553. characterMakers.push(() => makeCharacter(
  10554. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10555. {
  10556. front: {
  10557. height: math.unit(6, "feet"),
  10558. weight: math.unit(110, "lb"),
  10559. name: "Front",
  10560. image: {
  10561. source: "./media/characters/mel/front.svg",
  10562. extra: 736 / 617,
  10563. bottom: 0.017
  10564. }
  10565. },
  10566. },
  10567. [
  10568. {
  10569. name: "Pico",
  10570. height: math.unit(3, "pm")
  10571. },
  10572. {
  10573. name: "Nano",
  10574. height: math.unit(3, "nm")
  10575. },
  10576. {
  10577. name: "Micro",
  10578. height: math.unit(0.3, "mm"),
  10579. default: true
  10580. },
  10581. {
  10582. name: "Micro+",
  10583. height: math.unit(3, "mm")
  10584. },
  10585. {
  10586. name: "Normal",
  10587. height: math.unit(5 + 10.5 / 12, "feet")
  10588. },
  10589. ]
  10590. ))
  10591. characterMakers.push(() => makeCharacter(
  10592. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10593. {
  10594. kaiju: {
  10595. height: math.unit(1.75, "meters"),
  10596. weight: math.unit(55, "kg"),
  10597. name: "Kaiju",
  10598. image: {
  10599. source: "./media/characters/lykonous/kaiju.svg",
  10600. extra: 1055 / 946,
  10601. bottom: 0.135
  10602. }
  10603. },
  10604. },
  10605. [
  10606. {
  10607. name: "Normal",
  10608. height: math.unit(2.5, "meters"),
  10609. default: true
  10610. },
  10611. {
  10612. name: "Kaiju Dragon",
  10613. height: math.unit(60, "meters")
  10614. },
  10615. {
  10616. name: "Mega Kaiju",
  10617. height: math.unit(120, "km")
  10618. },
  10619. {
  10620. name: "Giga Kaiju",
  10621. height: math.unit(200, "megameters")
  10622. },
  10623. {
  10624. name: "Terra Kaiju",
  10625. height: math.unit(400, "gigameters")
  10626. },
  10627. {
  10628. name: "Kaiju Dragon God",
  10629. height: math.unit(13000, "exaparsecs")
  10630. },
  10631. ]
  10632. ))
  10633. characterMakers.push(() => makeCharacter(
  10634. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10635. {
  10636. front: {
  10637. height: math.unit(6, "feet"),
  10638. weight: math.unit(150, "lb"),
  10639. name: "Front",
  10640. image: {
  10641. source: "./media/characters/blü/front.svg",
  10642. extra: 1883 / 1564,
  10643. bottom: 0.031
  10644. }
  10645. },
  10646. },
  10647. [
  10648. {
  10649. name: "Normal",
  10650. height: math.unit(13, "feet"),
  10651. default: true
  10652. },
  10653. {
  10654. name: "Big Boi",
  10655. height: math.unit(150, "meters")
  10656. },
  10657. {
  10658. name: "Mini Stomper",
  10659. height: math.unit(300, "meters")
  10660. },
  10661. {
  10662. name: "Macro",
  10663. height: math.unit(1000, "meters")
  10664. },
  10665. {
  10666. name: "Megamacro",
  10667. height: math.unit(11000, "meters")
  10668. },
  10669. {
  10670. name: "Gigamacro",
  10671. height: math.unit(11000, "km")
  10672. },
  10673. {
  10674. name: "Teramacro",
  10675. height: math.unit(420000, "km")
  10676. },
  10677. {
  10678. name: "Examacro",
  10679. height: math.unit(120, "parsecs")
  10680. },
  10681. {
  10682. name: "God Tho",
  10683. height: math.unit(98000000000, "parsecs")
  10684. },
  10685. ]
  10686. ))
  10687. characterMakers.push(() => makeCharacter(
  10688. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10689. {
  10690. taurFront: {
  10691. height: math.unit(6, "feet"),
  10692. weight: math.unit(200, "lb"),
  10693. name: "Taur (Front)",
  10694. image: {
  10695. source: "./media/characters/scales/taur-front.svg",
  10696. extra: 1,
  10697. bottom: 0.05
  10698. }
  10699. },
  10700. taurBack: {
  10701. height: math.unit(6, "feet"),
  10702. weight: math.unit(200, "lb"),
  10703. name: "Taur (Back)",
  10704. image: {
  10705. source: "./media/characters/scales/taur-back.svg",
  10706. extra: 1,
  10707. bottom: 0.08
  10708. }
  10709. },
  10710. anthro: {
  10711. height: math.unit(6 * 7 / 12, "feet"),
  10712. weight: math.unit(100, "lb"),
  10713. name: "Anthro",
  10714. image: {
  10715. source: "./media/characters/scales/anthro.svg",
  10716. extra: 1,
  10717. bottom: 0.06
  10718. }
  10719. },
  10720. },
  10721. [
  10722. {
  10723. name: "Normal",
  10724. height: math.unit(12, "feet"),
  10725. default: true
  10726. },
  10727. ]
  10728. ))
  10729. characterMakers.push(() => makeCharacter(
  10730. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10731. {
  10732. front: {
  10733. height: math.unit(6, "feet"),
  10734. weight: math.unit(150, "lb"),
  10735. name: "Front",
  10736. image: {
  10737. source: "./media/characters/koragos/front.svg",
  10738. extra: 841 / 794,
  10739. bottom: 0.035
  10740. }
  10741. },
  10742. back: {
  10743. height: math.unit(6, "feet"),
  10744. weight: math.unit(150, "lb"),
  10745. name: "Back",
  10746. image: {
  10747. source: "./media/characters/koragos/back.svg",
  10748. extra: 841 / 810,
  10749. bottom: 0.022
  10750. }
  10751. },
  10752. },
  10753. [
  10754. {
  10755. name: "Normal",
  10756. height: math.unit(6 + 11 / 12, "feet"),
  10757. default: true
  10758. },
  10759. {
  10760. name: "Macro",
  10761. height: math.unit(490, "feet")
  10762. },
  10763. {
  10764. name: "Megamacro",
  10765. height: math.unit(10, "miles")
  10766. },
  10767. {
  10768. name: "Gigamacro",
  10769. height: math.unit(50, "miles")
  10770. },
  10771. ]
  10772. ))
  10773. characterMakers.push(() => makeCharacter(
  10774. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10775. {
  10776. front: {
  10777. height: math.unit(6, "feet"),
  10778. weight: math.unit(250, "lb"),
  10779. name: "Front",
  10780. image: {
  10781. source: "./media/characters/xylrem/front.svg",
  10782. extra: 3323 / 3050,
  10783. bottom: 0.065
  10784. }
  10785. },
  10786. },
  10787. [
  10788. {
  10789. name: "Micro",
  10790. height: math.unit(4, "feet")
  10791. },
  10792. {
  10793. name: "Normal",
  10794. height: math.unit(16, "feet"),
  10795. default: true
  10796. },
  10797. {
  10798. name: "Macro",
  10799. height: math.unit(2720, "feet")
  10800. },
  10801. {
  10802. name: "Megamacro",
  10803. height: math.unit(25000, "miles")
  10804. },
  10805. ]
  10806. ))
  10807. characterMakers.push(() => makeCharacter(
  10808. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10809. {
  10810. front: {
  10811. height: math.unit(8, "feet"),
  10812. weight: math.unit(250, "kg"),
  10813. name: "Front",
  10814. image: {
  10815. source: "./media/characters/ikideru/front.svg",
  10816. extra: 930 / 870,
  10817. bottom: 0.087
  10818. }
  10819. },
  10820. back: {
  10821. height: math.unit(8, "feet"),
  10822. weight: math.unit(250, "kg"),
  10823. name: "Back",
  10824. image: {
  10825. source: "./media/characters/ikideru/back.svg",
  10826. extra: 919 / 852,
  10827. bottom: 0.055
  10828. }
  10829. },
  10830. },
  10831. [
  10832. {
  10833. name: "Rare",
  10834. height: math.unit(8, "feet"),
  10835. default: true
  10836. },
  10837. {
  10838. name: "Playful Loom",
  10839. height: math.unit(80, "feet")
  10840. },
  10841. {
  10842. name: "City Leaner",
  10843. height: math.unit(230, "feet")
  10844. },
  10845. {
  10846. name: "Megamacro",
  10847. height: math.unit(2500, "feet")
  10848. },
  10849. {
  10850. name: "Gigamacro",
  10851. height: math.unit(26400, "feet")
  10852. },
  10853. {
  10854. name: "Tectonic Shifter",
  10855. height: math.unit(1.7, "megameters")
  10856. },
  10857. {
  10858. name: "Planet Carer",
  10859. height: math.unit(21, "megameters")
  10860. },
  10861. {
  10862. name: "God",
  10863. height: math.unit(11157.22, "parsecs")
  10864. },
  10865. ]
  10866. ))
  10867. characterMakers.push(() => makeCharacter(
  10868. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10869. {
  10870. front: {
  10871. height: math.unit(6, "feet"),
  10872. weight: math.unit(120, "lb"),
  10873. name: "Front",
  10874. image: {
  10875. source: "./media/characters/neo/front.svg"
  10876. }
  10877. },
  10878. },
  10879. [
  10880. {
  10881. name: "Micro",
  10882. height: math.unit(2, "inches"),
  10883. default: true
  10884. },
  10885. {
  10886. name: "Human Size",
  10887. height: math.unit(5 + 8 / 12, "feet")
  10888. },
  10889. ]
  10890. ))
  10891. characterMakers.push(() => makeCharacter(
  10892. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  10893. {
  10894. front: {
  10895. height: math.unit(13 + 10 / 12, "feet"),
  10896. weight: math.unit(5320, "lb"),
  10897. name: "Front",
  10898. image: {
  10899. source: "./media/characters/chauncey-chantz/front.svg",
  10900. extra: 1587 / 1435,
  10901. bottom: 0.02
  10902. }
  10903. },
  10904. },
  10905. [
  10906. {
  10907. name: "Normal",
  10908. height: math.unit(13 + 10 / 12, "feet"),
  10909. default: true
  10910. },
  10911. {
  10912. name: "Macro",
  10913. height: math.unit(45, "feet")
  10914. },
  10915. {
  10916. name: "Megamacro",
  10917. height: math.unit(250, "miles")
  10918. },
  10919. {
  10920. name: "Planetary",
  10921. height: math.unit(10000, "miles")
  10922. },
  10923. {
  10924. name: "Galactic",
  10925. height: math.unit(40000, "parsecs")
  10926. },
  10927. {
  10928. name: "Universal",
  10929. height: math.unit(1, "yottameter")
  10930. },
  10931. ]
  10932. ))
  10933. characterMakers.push(() => makeCharacter(
  10934. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  10935. {
  10936. front: {
  10937. height: math.unit(6, "feet"),
  10938. weight: math.unit(150, "lb"),
  10939. name: "Front",
  10940. image: {
  10941. source: "./media/characters/epifox/front.svg",
  10942. extra: 1,
  10943. bottom: 0.075
  10944. }
  10945. },
  10946. },
  10947. [
  10948. {
  10949. name: "Micro",
  10950. height: math.unit(6, "inches")
  10951. },
  10952. {
  10953. name: "Normal",
  10954. height: math.unit(12, "feet"),
  10955. default: true
  10956. },
  10957. {
  10958. name: "Macro",
  10959. height: math.unit(3810, "feet")
  10960. },
  10961. {
  10962. name: "Megamacro",
  10963. height: math.unit(500, "miles")
  10964. },
  10965. ]
  10966. ))
  10967. characterMakers.push(() => makeCharacter(
  10968. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  10969. {
  10970. front: {
  10971. height: math.unit(1.8796, "m"),
  10972. weight: math.unit(230, "lb"),
  10973. name: "Front",
  10974. image: {
  10975. source: "./media/characters/colin-t/front.svg",
  10976. extra: 1272 / 1193,
  10977. bottom: 0.07
  10978. }
  10979. },
  10980. },
  10981. [
  10982. {
  10983. name: "Micro",
  10984. height: math.unit(0.571, "meters")
  10985. },
  10986. {
  10987. name: "Normal",
  10988. height: math.unit(1.8796, "meters"),
  10989. default: true
  10990. },
  10991. {
  10992. name: "Tall",
  10993. height: math.unit(4, "meters")
  10994. },
  10995. {
  10996. name: "Macro",
  10997. height: math.unit(67.241, "meters")
  10998. },
  10999. {
  11000. name: "Megamacro",
  11001. height: math.unit(371.856, "meters")
  11002. },
  11003. {
  11004. name: "Planetary",
  11005. height: math.unit(12631.5689, "km")
  11006. },
  11007. ]
  11008. ))
  11009. characterMakers.push(() => makeCharacter(
  11010. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11011. {
  11012. front: {
  11013. height: math.unit(1.85, "meters"),
  11014. weight: math.unit(80, "kg"),
  11015. name: "Front",
  11016. image: {
  11017. source: "./media/characters/matvei/front.svg",
  11018. extra: 614 / 594,
  11019. bottom: 0.01
  11020. }
  11021. },
  11022. },
  11023. [
  11024. {
  11025. name: "Normal",
  11026. height: math.unit(1.85, "meters"),
  11027. default: true
  11028. },
  11029. ]
  11030. ))
  11031. characterMakers.push(() => makeCharacter(
  11032. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11033. {
  11034. front: {
  11035. height: math.unit(5 + 9 / 12, "feet"),
  11036. weight: math.unit(70, "lb"),
  11037. name: "Front",
  11038. image: {
  11039. source: "./media/characters/quincy/front.svg",
  11040. extra: 3041 / 2751
  11041. }
  11042. },
  11043. back: {
  11044. height: math.unit(5 + 9 / 12, "feet"),
  11045. weight: math.unit(70, "lb"),
  11046. name: "Back",
  11047. image: {
  11048. source: "./media/characters/quincy/back.svg",
  11049. extra: 3041 / 2751
  11050. }
  11051. },
  11052. flying: {
  11053. height: math.unit(5 + 4 / 12, "feet"),
  11054. weight: math.unit(70, "lb"),
  11055. name: "Flying",
  11056. image: {
  11057. source: "./media/characters/quincy/flying.svg",
  11058. extra: 1044 / 930
  11059. }
  11060. },
  11061. },
  11062. [
  11063. {
  11064. name: "Micro",
  11065. height: math.unit(3, "cm")
  11066. },
  11067. {
  11068. name: "Normal",
  11069. height: math.unit(5 + 9 / 12, "feet")
  11070. },
  11071. {
  11072. name: "Macro",
  11073. height: math.unit(200, "meters"),
  11074. default: true
  11075. },
  11076. {
  11077. name: "Megamacro",
  11078. height: math.unit(1000, "meters")
  11079. },
  11080. ]
  11081. ))
  11082. characterMakers.push(() => makeCharacter(
  11083. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11084. {
  11085. front: {
  11086. height: math.unit(4 + 7 / 12, "feet"),
  11087. weight: math.unit(150, "lb"),
  11088. name: "Front",
  11089. image: {
  11090. source: "./media/characters/vanrel/front.svg",
  11091. extra: 1,
  11092. bottom: 0.02
  11093. }
  11094. },
  11095. elemental: {
  11096. height: math.unit(3, "feet"),
  11097. weight: math.unit(150, "lb"),
  11098. name: "Elemental",
  11099. image: {
  11100. source: "./media/characters/vanrel/elemental.svg",
  11101. extra: 192.3 / 162.8,
  11102. bottom: 1.79 / 194.17
  11103. }
  11104. },
  11105. side: {
  11106. height: math.unit(4 + 7 / 12, "feet"),
  11107. weight: math.unit(150, "lb"),
  11108. name: "Side",
  11109. image: {
  11110. source: "./media/characters/vanrel/side.svg",
  11111. extra: 1,
  11112. bottom: 0.025
  11113. }
  11114. },
  11115. tome: {
  11116. height: math.unit(1.35, "feet"),
  11117. weight: math.unit(10, "lb"),
  11118. name: "Vanrel's Tome",
  11119. rename: true,
  11120. image: {
  11121. source: "./media/characters/vanrel/tome.svg"
  11122. }
  11123. },
  11124. beans: {
  11125. height: math.unit(0.89, "feet"),
  11126. name: "Beans",
  11127. image: {
  11128. source: "./media/characters/vanrel/beans.svg"
  11129. }
  11130. },
  11131. },
  11132. [
  11133. {
  11134. name: "Normal",
  11135. height: math.unit(4 + 7 / 12, "feet"),
  11136. default: true
  11137. },
  11138. ]
  11139. ))
  11140. characterMakers.push(() => makeCharacter(
  11141. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11142. {
  11143. front: {
  11144. height: math.unit(7 + 5 / 12, "feet"),
  11145. weight: math.unit(150, "lb"),
  11146. name: "Front",
  11147. image: {
  11148. source: "./media/characters/kuiper-vanrel/front.svg",
  11149. extra: 1118 / 1068,
  11150. bottom: 0.09
  11151. }
  11152. },
  11153. foot: {
  11154. height: math.unit(0.55, "meters"),
  11155. name: "Foot",
  11156. image: {
  11157. source: "./media/characters/kuiper-vanrel/foot.svg",
  11158. }
  11159. },
  11160. battle: {
  11161. height: math.unit(6.824, "feet"),
  11162. weight: math.unit(150, "lb"),
  11163. name: "Battle",
  11164. image: {
  11165. source: "./media/characters/kuiper-vanrel/battle.svg",
  11166. extra: 1466 / 1327,
  11167. bottom: 29 / 1492.5
  11168. }
  11169. },
  11170. },
  11171. [
  11172. {
  11173. name: "Normal",
  11174. height: math.unit(7 + 5 / 12, "feet"),
  11175. default: true
  11176. },
  11177. ]
  11178. ))
  11179. characterMakers.push(() => makeCharacter(
  11180. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11181. {
  11182. front: {
  11183. height: math.unit(8 + 5 / 12, "feet"),
  11184. weight: math.unit(150, "lb"),
  11185. name: "Front",
  11186. image: {
  11187. source: "./media/characters/keset-vanrel/front.svg",
  11188. extra: 1150 / 1084,
  11189. bottom: 0.05
  11190. }
  11191. },
  11192. hand: {
  11193. height: math.unit(0.6, "meters"),
  11194. name: "Hand",
  11195. image: {
  11196. source: "./media/characters/keset-vanrel/hand.svg"
  11197. }
  11198. },
  11199. foot: {
  11200. height: math.unit(0.94978, "meters"),
  11201. name: "Foot",
  11202. image: {
  11203. source: "./media/characters/keset-vanrel/foot.svg"
  11204. }
  11205. },
  11206. battle: {
  11207. height: math.unit(7.408, "feet"),
  11208. weight: math.unit(150, "lb"),
  11209. name: "Battle",
  11210. image: {
  11211. source: "./media/characters/keset-vanrel/battle.svg",
  11212. extra: 1890 / 1386,
  11213. bottom: 73.28 / 1970
  11214. }
  11215. },
  11216. },
  11217. [
  11218. {
  11219. name: "Normal",
  11220. height: math.unit(8 + 5 / 12, "feet"),
  11221. default: true
  11222. },
  11223. ]
  11224. ))
  11225. characterMakers.push(() => makeCharacter(
  11226. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11227. {
  11228. front: {
  11229. height: math.unit(6, "feet"),
  11230. weight: math.unit(150, "lb"),
  11231. name: "Front",
  11232. image: {
  11233. source: "./media/characters/neos/front.svg",
  11234. extra: 1696 / 992,
  11235. bottom: 0.14
  11236. }
  11237. },
  11238. },
  11239. [
  11240. {
  11241. name: "Normal",
  11242. height: math.unit(54, "cm"),
  11243. default: true
  11244. },
  11245. {
  11246. name: "Macro",
  11247. height: math.unit(100, "m")
  11248. },
  11249. {
  11250. name: "Megamacro",
  11251. height: math.unit(10, "km")
  11252. },
  11253. {
  11254. name: "Megamacro+",
  11255. height: math.unit(100, "km")
  11256. },
  11257. {
  11258. name: "Gigamacro",
  11259. height: math.unit(100, "Mm")
  11260. },
  11261. {
  11262. name: "Teramacro",
  11263. height: math.unit(100, "Gm")
  11264. },
  11265. {
  11266. name: "Examacro",
  11267. height: math.unit(100, "Em")
  11268. },
  11269. {
  11270. name: "Godly",
  11271. height: math.unit(10000, "Ym")
  11272. },
  11273. {
  11274. name: "Beyond Godly",
  11275. height: math.unit(25, "multiverses")
  11276. },
  11277. ]
  11278. ))
  11279. characterMakers.push(() => makeCharacter(
  11280. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11281. {
  11282. feminine: {
  11283. height: math.unit(5, "feet"),
  11284. weight: math.unit(100, "lb"),
  11285. name: "Feminine",
  11286. image: {
  11287. source: "./media/characters/sammy-mouse/feminine.svg",
  11288. extra: 2526 / 2425,
  11289. bottom: 0.123
  11290. }
  11291. },
  11292. masculine: {
  11293. height: math.unit(5, "feet"),
  11294. weight: math.unit(100, "lb"),
  11295. name: "Masculine",
  11296. image: {
  11297. source: "./media/characters/sammy-mouse/masculine.svg",
  11298. extra: 2526 / 2425,
  11299. bottom: 0.123
  11300. }
  11301. },
  11302. },
  11303. [
  11304. {
  11305. name: "Micro",
  11306. height: math.unit(5, "inches")
  11307. },
  11308. {
  11309. name: "Normal",
  11310. height: math.unit(5, "feet"),
  11311. default: true
  11312. },
  11313. {
  11314. name: "Macro",
  11315. height: math.unit(60, "feet")
  11316. },
  11317. ]
  11318. ))
  11319. characterMakers.push(() => makeCharacter(
  11320. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11321. {
  11322. front: {
  11323. height: math.unit(4, "feet"),
  11324. weight: math.unit(50, "lb"),
  11325. name: "Front",
  11326. image: {
  11327. source: "./media/characters/kole/front.svg",
  11328. extra: 1423 / 1303,
  11329. bottom: 0.025
  11330. }
  11331. },
  11332. back: {
  11333. height: math.unit(4, "feet"),
  11334. weight: math.unit(50, "lb"),
  11335. name: "Back",
  11336. image: {
  11337. source: "./media/characters/kole/back.svg",
  11338. extra: 1426 / 1280,
  11339. bottom: 0.02
  11340. }
  11341. },
  11342. },
  11343. [
  11344. {
  11345. name: "Normal",
  11346. height: math.unit(4, "feet"),
  11347. default: true
  11348. },
  11349. ]
  11350. ))
  11351. characterMakers.push(() => makeCharacter(
  11352. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11353. {
  11354. front: {
  11355. height: math.unit(2 + 6 / 12, "feet"),
  11356. weight: math.unit(20, "lb"),
  11357. name: "Front",
  11358. image: {
  11359. source: "./media/characters/rufran/front.svg",
  11360. extra: 2041 / 1839,
  11361. bottom: 0.055
  11362. }
  11363. },
  11364. back: {
  11365. height: math.unit(2 + 6 / 12, "feet"),
  11366. weight: math.unit(20, "lb"),
  11367. name: "Back",
  11368. image: {
  11369. source: "./media/characters/rufran/back.svg",
  11370. extra: 2054 / 1839,
  11371. bottom: 0.01
  11372. }
  11373. },
  11374. hand: {
  11375. height: math.unit(0.2166, "meters"),
  11376. name: "Hand",
  11377. image: {
  11378. source: "./media/characters/rufran/hand.svg"
  11379. }
  11380. },
  11381. foot: {
  11382. height: math.unit(0.185, "meters"),
  11383. name: "Foot",
  11384. image: {
  11385. source: "./media/characters/rufran/foot.svg"
  11386. }
  11387. },
  11388. },
  11389. [
  11390. {
  11391. name: "Micro",
  11392. height: math.unit(1, "inch")
  11393. },
  11394. {
  11395. name: "Normal",
  11396. height: math.unit(2 + 6 / 12, "feet"),
  11397. default: true
  11398. },
  11399. {
  11400. name: "Big",
  11401. height: math.unit(60, "feet")
  11402. },
  11403. {
  11404. name: "Macro",
  11405. height: math.unit(325, "feet")
  11406. },
  11407. ]
  11408. ))
  11409. characterMakers.push(() => makeCharacter(
  11410. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11411. {
  11412. front: {
  11413. height: math.unit(0.3, "meters"),
  11414. weight: math.unit(3.5, "kg"),
  11415. name: "Front",
  11416. image: {
  11417. source: "./media/characters/chip/front.svg",
  11418. extra: 748 / 674
  11419. }
  11420. },
  11421. },
  11422. [
  11423. {
  11424. name: "Micro",
  11425. height: math.unit(1, "inch"),
  11426. default: true
  11427. },
  11428. ]
  11429. ))
  11430. characterMakers.push(() => makeCharacter(
  11431. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11432. {
  11433. side: {
  11434. height: math.unit(2.3, "meters"),
  11435. weight: math.unit(3500, "lb"),
  11436. name: "Side",
  11437. image: {
  11438. source: "./media/characters/torvid/side.svg",
  11439. extra: 1972 / 722,
  11440. bottom: 0.035
  11441. }
  11442. },
  11443. },
  11444. [
  11445. {
  11446. name: "Normal",
  11447. height: math.unit(2.3, "meters"),
  11448. default: true
  11449. },
  11450. ]
  11451. ))
  11452. characterMakers.push(() => makeCharacter(
  11453. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11454. {
  11455. front: {
  11456. height: math.unit(2, "meters"),
  11457. weight: math.unit(150.5, "kg"),
  11458. name: "Front",
  11459. image: {
  11460. source: "./media/characters/susan/front.svg",
  11461. extra: 693 / 635,
  11462. bottom: 0.05
  11463. }
  11464. },
  11465. },
  11466. [
  11467. {
  11468. name: "Megamacro",
  11469. height: math.unit(505, "miles"),
  11470. default: true
  11471. },
  11472. ]
  11473. ))
  11474. characterMakers.push(() => makeCharacter(
  11475. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11476. {
  11477. front: {
  11478. height: math.unit(6, "feet"),
  11479. weight: math.unit(150, "lb"),
  11480. name: "Front",
  11481. image: {
  11482. source: "./media/characters/raindrops/front.svg",
  11483. extra: 2655 / 2461,
  11484. bottom: 49/2705
  11485. }
  11486. },
  11487. back: {
  11488. height: math.unit(6, "feet"),
  11489. weight: math.unit(150, "lb"),
  11490. name: "Back",
  11491. image: {
  11492. source: "./media/characters/raindrops/back.svg",
  11493. extra: 2574 / 2400,
  11494. bottom: 65/2634
  11495. }
  11496. },
  11497. },
  11498. [
  11499. {
  11500. name: "Micro",
  11501. height: math.unit(6, "inches")
  11502. },
  11503. {
  11504. name: "Normal",
  11505. height: math.unit(6 + 2 / 12, "feet")
  11506. },
  11507. {
  11508. name: "Macro",
  11509. height: math.unit(131, "feet"),
  11510. default: true
  11511. },
  11512. {
  11513. name: "Megamacro",
  11514. height: math.unit(15, "miles")
  11515. },
  11516. {
  11517. name: "Gigamacro",
  11518. height: math.unit(4000, "miles")
  11519. },
  11520. {
  11521. name: "Teramacro",
  11522. height: math.unit(315000, "miles")
  11523. },
  11524. ]
  11525. ))
  11526. characterMakers.push(() => makeCharacter(
  11527. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11528. {
  11529. front: {
  11530. height: math.unit(2.794, "meters"),
  11531. weight: math.unit(325, "kg"),
  11532. name: "Front",
  11533. image: {
  11534. source: "./media/characters/tezwa/front.svg",
  11535. extra: 2083 / 1906,
  11536. bottom: 0.031
  11537. }
  11538. },
  11539. foot: {
  11540. height: math.unit(0.687, "meters"),
  11541. name: "Foot",
  11542. image: {
  11543. source: "./media/characters/tezwa/foot.svg"
  11544. }
  11545. },
  11546. },
  11547. [
  11548. {
  11549. name: "Normal",
  11550. height: math.unit(9 + 2 / 12, "feet"),
  11551. default: true
  11552. },
  11553. ]
  11554. ))
  11555. characterMakers.push(() => makeCharacter(
  11556. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11557. {
  11558. front: {
  11559. height: math.unit(58, "feet"),
  11560. weight: math.unit(89000, "lb"),
  11561. name: "Front",
  11562. image: {
  11563. source: "./media/characters/typhus/front.svg",
  11564. extra: 816 / 800,
  11565. bottom: 0.065
  11566. }
  11567. },
  11568. },
  11569. [
  11570. {
  11571. name: "Macro",
  11572. height: math.unit(58, "feet"),
  11573. default: true
  11574. },
  11575. ]
  11576. ))
  11577. characterMakers.push(() => makeCharacter(
  11578. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11579. {
  11580. front: {
  11581. height: math.unit(12, "feet"),
  11582. weight: math.unit(6, "tonnes"),
  11583. name: "Front",
  11584. image: {
  11585. source: "./media/characters/lyra-von-wulf/front.svg",
  11586. extra: 1,
  11587. bottom: 0.10
  11588. }
  11589. },
  11590. frontMecha: {
  11591. height: math.unit(12, "feet"),
  11592. weight: math.unit(12, "tonnes"),
  11593. name: "Front (Mecha)",
  11594. image: {
  11595. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11596. extra: 1,
  11597. bottom: 0.042
  11598. }
  11599. },
  11600. maw: {
  11601. height: math.unit(2.2, "feet"),
  11602. name: "Maw",
  11603. image: {
  11604. source: "./media/characters/lyra-von-wulf/maw.svg"
  11605. }
  11606. },
  11607. },
  11608. [
  11609. {
  11610. name: "Normal",
  11611. height: math.unit(12, "feet"),
  11612. default: true
  11613. },
  11614. {
  11615. name: "Classic",
  11616. height: math.unit(50, "feet")
  11617. },
  11618. {
  11619. name: "Macro",
  11620. height: math.unit(500, "feet")
  11621. },
  11622. {
  11623. name: "Megamacro",
  11624. height: math.unit(1, "mile")
  11625. },
  11626. {
  11627. name: "Gigamacro",
  11628. height: math.unit(400, "miles")
  11629. },
  11630. {
  11631. name: "Teramacro",
  11632. height: math.unit(22000, "miles")
  11633. },
  11634. {
  11635. name: "Solarmacro",
  11636. height: math.unit(8600000, "miles")
  11637. },
  11638. {
  11639. name: "Galactic",
  11640. height: math.unit(1057000, "lightyears")
  11641. },
  11642. ]
  11643. ))
  11644. characterMakers.push(() => makeCharacter(
  11645. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11646. {
  11647. front: {
  11648. height: math.unit(6 + 10 / 12, "feet"),
  11649. weight: math.unit(150, "lb"),
  11650. name: "Front",
  11651. image: {
  11652. source: "./media/characters/dixon/front.svg",
  11653. extra: 3361 / 3209,
  11654. bottom: 0.01
  11655. }
  11656. },
  11657. },
  11658. [
  11659. {
  11660. name: "Normal",
  11661. height: math.unit(6 + 10 / 12, "feet"),
  11662. default: true
  11663. },
  11664. {
  11665. name: "Big",
  11666. height: math.unit(12, "meters")
  11667. },
  11668. {
  11669. name: "Macro",
  11670. height: math.unit(500, "meters")
  11671. },
  11672. {
  11673. name: "Megamacro",
  11674. height: math.unit(2, "km")
  11675. },
  11676. ]
  11677. ))
  11678. characterMakers.push(() => makeCharacter(
  11679. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11680. {
  11681. front: {
  11682. height: math.unit(185, "cm"),
  11683. weight: math.unit(68, "kg"),
  11684. name: "Front",
  11685. image: {
  11686. source: "./media/characters/kauko/front.svg",
  11687. extra: 1455 / 1421,
  11688. bottom: 0.03
  11689. }
  11690. },
  11691. back: {
  11692. height: math.unit(185, "cm"),
  11693. weight: math.unit(68, "kg"),
  11694. name: "Back",
  11695. image: {
  11696. source: "./media/characters/kauko/back.svg",
  11697. extra: 1455 / 1421,
  11698. bottom: 0.004
  11699. }
  11700. },
  11701. },
  11702. [
  11703. {
  11704. name: "Normal",
  11705. height: math.unit(185, "cm"),
  11706. default: true
  11707. },
  11708. ]
  11709. ))
  11710. characterMakers.push(() => makeCharacter(
  11711. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11712. {
  11713. front: {
  11714. height: math.unit(6, "feet"),
  11715. weight: math.unit(150, "kg"),
  11716. name: "Front",
  11717. image: {
  11718. source: "./media/characters/varg/front.svg",
  11719. extra: 1108 / 1018,
  11720. bottom: 0.0375
  11721. }
  11722. },
  11723. },
  11724. [
  11725. {
  11726. name: "Normal",
  11727. height: math.unit(5, "meters")
  11728. },
  11729. {
  11730. name: "Macro",
  11731. height: math.unit(200, "meters")
  11732. },
  11733. {
  11734. name: "Megamacro",
  11735. height: math.unit(20, "kilometers")
  11736. },
  11737. {
  11738. name: "True Size",
  11739. height: math.unit(211, "km"),
  11740. default: true
  11741. },
  11742. {
  11743. name: "Gigamacro",
  11744. height: math.unit(1000, "km")
  11745. },
  11746. {
  11747. name: "Gigamacro+",
  11748. height: math.unit(8000, "km")
  11749. },
  11750. {
  11751. name: "Teramacro",
  11752. height: math.unit(1000000, "km")
  11753. },
  11754. ]
  11755. ))
  11756. characterMakers.push(() => makeCharacter(
  11757. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11758. {
  11759. front: {
  11760. height: math.unit(7 + 7 / 12, "feet"),
  11761. weight: math.unit(267, "lb"),
  11762. name: "Front",
  11763. image: {
  11764. source: "./media/characters/dayza/front.svg",
  11765. extra: 1262 / 1200,
  11766. bottom: 0.035
  11767. }
  11768. },
  11769. side: {
  11770. height: math.unit(7 + 7 / 12, "feet"),
  11771. weight: math.unit(267, "lb"),
  11772. name: "Side",
  11773. image: {
  11774. source: "./media/characters/dayza/side.svg",
  11775. extra: 1295 / 1245,
  11776. bottom: 0.05
  11777. }
  11778. },
  11779. back: {
  11780. height: math.unit(7 + 7 / 12, "feet"),
  11781. weight: math.unit(267, "lb"),
  11782. name: "Back",
  11783. image: {
  11784. source: "./media/characters/dayza/back.svg",
  11785. extra: 1241 / 1170
  11786. }
  11787. },
  11788. },
  11789. [
  11790. {
  11791. name: "Normal",
  11792. height: math.unit(7 + 7 / 12, "feet"),
  11793. default: true
  11794. },
  11795. {
  11796. name: "Macro",
  11797. height: math.unit(155, "feet")
  11798. },
  11799. ]
  11800. ))
  11801. characterMakers.push(() => makeCharacter(
  11802. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11803. {
  11804. front: {
  11805. height: math.unit(6 + 5 / 12, "feet"),
  11806. weight: math.unit(160, "lb"),
  11807. name: "Front",
  11808. image: {
  11809. source: "./media/characters/xanthos/front.svg",
  11810. extra: 1,
  11811. bottom: 0.04
  11812. }
  11813. },
  11814. back: {
  11815. height: math.unit(6 + 5 / 12, "feet"),
  11816. weight: math.unit(160, "lb"),
  11817. name: "Back",
  11818. image: {
  11819. source: "./media/characters/xanthos/back.svg",
  11820. extra: 1,
  11821. bottom: 0.03
  11822. }
  11823. },
  11824. hand: {
  11825. height: math.unit(0.928, "feet"),
  11826. name: "Hand",
  11827. image: {
  11828. source: "./media/characters/xanthos/hand.svg"
  11829. }
  11830. },
  11831. foot: {
  11832. height: math.unit(1.286, "feet"),
  11833. name: "Foot",
  11834. image: {
  11835. source: "./media/characters/xanthos/foot.svg"
  11836. }
  11837. },
  11838. },
  11839. [
  11840. {
  11841. name: "Normal",
  11842. height: math.unit(6 + 5 / 12, "feet"),
  11843. default: true
  11844. },
  11845. {
  11846. name: "Normal+",
  11847. height: math.unit(6, "meters")
  11848. },
  11849. {
  11850. name: "Macro",
  11851. height: math.unit(40, "feet")
  11852. },
  11853. {
  11854. name: "Macro+",
  11855. height: math.unit(200, "meters")
  11856. },
  11857. {
  11858. name: "Megamacro",
  11859. height: math.unit(20, "km")
  11860. },
  11861. {
  11862. name: "Megamacro+",
  11863. height: math.unit(100, "km")
  11864. },
  11865. ]
  11866. ))
  11867. characterMakers.push(() => makeCharacter(
  11868. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11869. {
  11870. front: {
  11871. height: math.unit(6 + 3 / 12, "feet"),
  11872. weight: math.unit(215, "lb"),
  11873. name: "Front",
  11874. image: {
  11875. source: "./media/characters/grynn/front.svg",
  11876. extra: 4627 / 4209,
  11877. bottom: 0.047
  11878. }
  11879. },
  11880. },
  11881. [
  11882. {
  11883. name: "Micro",
  11884. height: math.unit(6, "inches")
  11885. },
  11886. {
  11887. name: "Normal",
  11888. height: math.unit(6 + 3 / 12, "feet"),
  11889. default: true
  11890. },
  11891. {
  11892. name: "Big",
  11893. height: math.unit(104, "feet")
  11894. },
  11895. {
  11896. name: "Macro",
  11897. height: math.unit(944, "feet")
  11898. },
  11899. {
  11900. name: "Macro+",
  11901. height: math.unit(9480, "feet")
  11902. },
  11903. {
  11904. name: "Megamacro",
  11905. height: math.unit(78752, "feet")
  11906. },
  11907. {
  11908. name: "Megamacro+",
  11909. height: math.unit(630128, "feet")
  11910. },
  11911. {
  11912. name: "Megamacro++",
  11913. height: math.unit(3150695, "feet")
  11914. },
  11915. ]
  11916. ))
  11917. characterMakers.push(() => makeCharacter(
  11918. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  11919. {
  11920. front: {
  11921. height: math.unit(7 + 5 / 12, "feet"),
  11922. weight: math.unit(450, "lb"),
  11923. name: "Front",
  11924. image: {
  11925. source: "./media/characters/mocha-aura/front.svg",
  11926. extra: 1907 / 1817,
  11927. bottom: 0.04
  11928. }
  11929. },
  11930. back: {
  11931. height: math.unit(7 + 5 / 12, "feet"),
  11932. weight: math.unit(450, "lb"),
  11933. name: "Back",
  11934. image: {
  11935. source: "./media/characters/mocha-aura/back.svg",
  11936. extra: 1900 / 1825,
  11937. bottom: 0.045
  11938. }
  11939. },
  11940. },
  11941. [
  11942. {
  11943. name: "Nano",
  11944. height: math.unit(1, "nm")
  11945. },
  11946. {
  11947. name: "Megamicro",
  11948. height: math.unit(1, "mm")
  11949. },
  11950. {
  11951. name: "Micro",
  11952. height: math.unit(3, "inches")
  11953. },
  11954. {
  11955. name: "Normal",
  11956. height: math.unit(7 + 5 / 12, "feet"),
  11957. default: true
  11958. },
  11959. {
  11960. name: "Macro",
  11961. height: math.unit(30, "feet")
  11962. },
  11963. {
  11964. name: "Megamacro",
  11965. height: math.unit(3500, "feet")
  11966. },
  11967. {
  11968. name: "Teramacro",
  11969. height: math.unit(500000, "miles")
  11970. },
  11971. {
  11972. name: "Petamacro",
  11973. height: math.unit(50000000000000000, "parsecs")
  11974. },
  11975. ]
  11976. ))
  11977. characterMakers.push(() => makeCharacter(
  11978. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  11979. {
  11980. front: {
  11981. height: math.unit(6, "feet"),
  11982. weight: math.unit(150, "lb"),
  11983. name: "Front",
  11984. image: {
  11985. source: "./media/characters/ilisha-devya/front.svg",
  11986. extra: 1,
  11987. bottom: 0.175
  11988. }
  11989. },
  11990. back: {
  11991. height: math.unit(6, "feet"),
  11992. weight: math.unit(150, "lb"),
  11993. name: "Back",
  11994. image: {
  11995. source: "./media/characters/ilisha-devya/back.svg",
  11996. extra: 1,
  11997. bottom: 0.015
  11998. }
  11999. },
  12000. },
  12001. [
  12002. {
  12003. name: "Macro",
  12004. height: math.unit(500, "feet"),
  12005. default: true
  12006. },
  12007. {
  12008. name: "Megamacro",
  12009. height: math.unit(10, "miles")
  12010. },
  12011. {
  12012. name: "Gigamacro",
  12013. height: math.unit(100000, "miles")
  12014. },
  12015. {
  12016. name: "Examacro",
  12017. height: math.unit(1e9, "lightyears")
  12018. },
  12019. {
  12020. name: "Omniversal",
  12021. height: math.unit(1e33, "lightyears")
  12022. },
  12023. {
  12024. name: "Beyond Infinite",
  12025. height: math.unit(1e100, "lightyears")
  12026. },
  12027. ]
  12028. ))
  12029. characterMakers.push(() => makeCharacter(
  12030. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12031. {
  12032. Side: {
  12033. height: math.unit(6, "feet"),
  12034. weight: math.unit(150, "lb"),
  12035. name: "Side",
  12036. image: {
  12037. source: "./media/characters/mira/side.svg",
  12038. extra: 900 / 799,
  12039. bottom: 0.02
  12040. }
  12041. },
  12042. },
  12043. [
  12044. {
  12045. name: "Human Size",
  12046. height: math.unit(6, "feet")
  12047. },
  12048. {
  12049. name: "Macro",
  12050. height: math.unit(100, "feet"),
  12051. default: true
  12052. },
  12053. {
  12054. name: "Megamacro",
  12055. height: math.unit(10, "miles")
  12056. },
  12057. {
  12058. name: "Gigamacro",
  12059. height: math.unit(25000, "miles")
  12060. },
  12061. {
  12062. name: "Teramacro",
  12063. height: math.unit(300, "AU")
  12064. },
  12065. {
  12066. name: "Full Size",
  12067. height: math.unit(4.5e10, "lightyears")
  12068. },
  12069. ]
  12070. ))
  12071. characterMakers.push(() => makeCharacter(
  12072. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12073. {
  12074. front: {
  12075. height: math.unit(6, "feet"),
  12076. weight: math.unit(150, "lb"),
  12077. name: "Front",
  12078. image: {
  12079. source: "./media/characters/holly/front.svg",
  12080. extra: 639 / 606
  12081. }
  12082. },
  12083. back: {
  12084. height: math.unit(6, "feet"),
  12085. weight: math.unit(150, "lb"),
  12086. name: "Back",
  12087. image: {
  12088. source: "./media/characters/holly/back.svg",
  12089. extra: 623 / 598
  12090. }
  12091. },
  12092. frontWorking: {
  12093. height: math.unit(6, "feet"),
  12094. weight: math.unit(150, "lb"),
  12095. name: "Front (Working)",
  12096. image: {
  12097. source: "./media/characters/holly/front-working.svg",
  12098. extra: 607 / 577,
  12099. bottom: 0.048
  12100. }
  12101. },
  12102. },
  12103. [
  12104. {
  12105. name: "Normal",
  12106. height: math.unit(12 + 3 / 12, "feet"),
  12107. default: true
  12108. },
  12109. ]
  12110. ))
  12111. characterMakers.push(() => makeCharacter(
  12112. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12113. {
  12114. front: {
  12115. height: math.unit(6, "feet"),
  12116. weight: math.unit(150, "lb"),
  12117. name: "Front",
  12118. image: {
  12119. source: "./media/characters/porter/front.svg",
  12120. extra: 1,
  12121. bottom: 0.01
  12122. }
  12123. },
  12124. frontRobes: {
  12125. height: math.unit(6, "feet"),
  12126. weight: math.unit(150, "lb"),
  12127. name: "Front (Robes)",
  12128. image: {
  12129. source: "./media/characters/porter/front-robes.svg",
  12130. extra: 1.01,
  12131. bottom: 0.01
  12132. }
  12133. },
  12134. },
  12135. [
  12136. {
  12137. name: "Normal",
  12138. height: math.unit(11 + 9 / 12, "feet"),
  12139. default: true
  12140. },
  12141. ]
  12142. ))
  12143. characterMakers.push(() => makeCharacter(
  12144. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12145. {
  12146. legendary: {
  12147. height: math.unit(6, "feet"),
  12148. weight: math.unit(150, "lb"),
  12149. name: "Legendary",
  12150. image: {
  12151. source: "./media/characters/lucy/legendary.svg",
  12152. extra: 1355 / 1100,
  12153. bottom: 0.045
  12154. }
  12155. },
  12156. },
  12157. [
  12158. {
  12159. name: "Legendary",
  12160. height: math.unit(86882 * 2, "miles"),
  12161. default: true
  12162. },
  12163. ]
  12164. ))
  12165. characterMakers.push(() => makeCharacter(
  12166. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12167. {
  12168. front: {
  12169. height: math.unit(6, "feet"),
  12170. weight: math.unit(150, "lb"),
  12171. name: "Front",
  12172. image: {
  12173. source: "./media/characters/drusilla/front.svg",
  12174. extra: 678 / 635,
  12175. bottom: 0.03
  12176. }
  12177. },
  12178. back: {
  12179. height: math.unit(6, "feet"),
  12180. weight: math.unit(150, "lb"),
  12181. name: "Back",
  12182. image: {
  12183. source: "./media/characters/drusilla/back.svg",
  12184. extra: 678 / 635,
  12185. bottom: 0.005
  12186. }
  12187. },
  12188. },
  12189. [
  12190. {
  12191. name: "Macro",
  12192. height: math.unit(100, "feet")
  12193. },
  12194. {
  12195. name: "Canon Height",
  12196. height: math.unit(2000, "feet"),
  12197. default: true
  12198. },
  12199. ]
  12200. ))
  12201. characterMakers.push(() => makeCharacter(
  12202. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12203. {
  12204. front: {
  12205. height: math.unit(6, "feet"),
  12206. weight: math.unit(180, "lb"),
  12207. name: "Front",
  12208. image: {
  12209. source: "./media/characters/renard-thatch/front.svg",
  12210. extra: 2411 / 2275,
  12211. bottom: 0.01
  12212. }
  12213. },
  12214. frontPosing: {
  12215. height: math.unit(6, "feet"),
  12216. weight: math.unit(180, "lb"),
  12217. name: "Front (Posing)",
  12218. image: {
  12219. source: "./media/characters/renard-thatch/front-posing.svg",
  12220. extra: 2381 / 2261,
  12221. bottom: 0.01
  12222. }
  12223. },
  12224. back: {
  12225. height: math.unit(6, "feet"),
  12226. weight: math.unit(180, "lb"),
  12227. name: "Back",
  12228. image: {
  12229. source: "./media/characters/renard-thatch/back.svg",
  12230. extra: 2428 / 2288
  12231. }
  12232. },
  12233. },
  12234. [
  12235. {
  12236. name: "Micro",
  12237. height: math.unit(3, "inches")
  12238. },
  12239. {
  12240. name: "Default",
  12241. height: math.unit(6, "feet"),
  12242. default: true
  12243. },
  12244. {
  12245. name: "Macro",
  12246. height: math.unit(75, "feet")
  12247. },
  12248. ]
  12249. ))
  12250. characterMakers.push(() => makeCharacter(
  12251. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12252. {
  12253. front: {
  12254. height: math.unit(1450, "feet"),
  12255. weight: math.unit(1.21e6, "tons"),
  12256. name: "Front",
  12257. image: {
  12258. source: "./media/characters/sekvra/front.svg",
  12259. extra: 1,
  12260. bottom: 0.03
  12261. }
  12262. },
  12263. frontClothed: {
  12264. height: math.unit(1450, "feet"),
  12265. weight: math.unit(1.21e6, "tons"),
  12266. name: "Front (Clothed)",
  12267. image: {
  12268. source: "./media/characters/sekvra/front-clothed.svg",
  12269. extra: 1,
  12270. bottom: 0.03
  12271. }
  12272. },
  12273. side: {
  12274. height: math.unit(1450, "feet"),
  12275. weight: math.unit(1.21e6, "tons"),
  12276. name: "Side",
  12277. image: {
  12278. source: "./media/characters/sekvra/side.svg",
  12279. extra: 1,
  12280. bottom: 0.025
  12281. }
  12282. },
  12283. back: {
  12284. height: math.unit(1450, "feet"),
  12285. weight: math.unit(1.21e6, "tons"),
  12286. name: "Back",
  12287. image: {
  12288. source: "./media/characters/sekvra/back.svg",
  12289. extra: 1,
  12290. bottom: 0.005
  12291. }
  12292. },
  12293. },
  12294. [
  12295. {
  12296. name: "Macro",
  12297. height: math.unit(1450, "feet"),
  12298. default: true
  12299. },
  12300. {
  12301. name: "Megamacro",
  12302. height: math.unit(15000, "feet")
  12303. },
  12304. ]
  12305. ))
  12306. characterMakers.push(() => makeCharacter(
  12307. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12308. {
  12309. front: {
  12310. height: math.unit(6, "feet"),
  12311. weight: math.unit(150, "lb"),
  12312. name: "Front",
  12313. image: {
  12314. source: "./media/characters/carmine/front.svg",
  12315. extra: 1,
  12316. bottom: 0.035
  12317. }
  12318. },
  12319. frontArmor: {
  12320. height: math.unit(6, "feet"),
  12321. weight: math.unit(150, "lb"),
  12322. name: "Front (Armor)",
  12323. image: {
  12324. source: "./media/characters/carmine/front-armor.svg",
  12325. extra: 1,
  12326. bottom: 0.035
  12327. }
  12328. },
  12329. },
  12330. [
  12331. {
  12332. name: "Large",
  12333. height: math.unit(1, "mile")
  12334. },
  12335. {
  12336. name: "Huge",
  12337. height: math.unit(40, "miles"),
  12338. default: true
  12339. },
  12340. {
  12341. name: "Colossal",
  12342. height: math.unit(2500, "miles")
  12343. },
  12344. ]
  12345. ))
  12346. characterMakers.push(() => makeCharacter(
  12347. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12348. {
  12349. front: {
  12350. height: math.unit(6, "feet"),
  12351. weight: math.unit(150, "lb"),
  12352. name: "Front",
  12353. image: {
  12354. source: "./media/characters/elyssia/front.svg",
  12355. extra: 2201 / 2035,
  12356. bottom: 0.05
  12357. }
  12358. },
  12359. frontClothed: {
  12360. height: math.unit(6, "feet"),
  12361. weight: math.unit(150, "lb"),
  12362. name: "Front (Clothed)",
  12363. image: {
  12364. source: "./media/characters/elyssia/front-clothed.svg",
  12365. extra: 2201 / 2035,
  12366. bottom: 0.05
  12367. }
  12368. },
  12369. back: {
  12370. height: math.unit(6, "feet"),
  12371. weight: math.unit(150, "lb"),
  12372. name: "Back",
  12373. image: {
  12374. source: "./media/characters/elyssia/back.svg",
  12375. extra: 2201 / 2035,
  12376. bottom: 0.013
  12377. }
  12378. },
  12379. },
  12380. [
  12381. {
  12382. name: "Smaller",
  12383. height: math.unit(150, "feet")
  12384. },
  12385. {
  12386. name: "Standard",
  12387. height: math.unit(1400, "feet"),
  12388. default: true
  12389. },
  12390. {
  12391. name: "Distracted",
  12392. height: math.unit(15000, "feet")
  12393. },
  12394. ]
  12395. ))
  12396. characterMakers.push(() => makeCharacter(
  12397. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12398. {
  12399. front: {
  12400. height: math.unit(7 + 4 / 12, "feet"),
  12401. weight: math.unit(500, "lb"),
  12402. name: "Front",
  12403. image: {
  12404. source: "./media/characters/geno-maxwell/front.svg",
  12405. extra: 2207 / 2040,
  12406. bottom: 0.015
  12407. }
  12408. },
  12409. },
  12410. [
  12411. {
  12412. name: "Micro",
  12413. height: math.unit(3, "inches")
  12414. },
  12415. {
  12416. name: "Normal",
  12417. height: math.unit(7 + 4 / 12, "feet"),
  12418. default: true
  12419. },
  12420. {
  12421. name: "Macro",
  12422. height: math.unit(220, "feet")
  12423. },
  12424. {
  12425. name: "Megamacro",
  12426. height: math.unit(11, "miles")
  12427. },
  12428. ]
  12429. ))
  12430. characterMakers.push(() => makeCharacter(
  12431. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12432. {
  12433. front: {
  12434. height: math.unit(7 + 4 / 12, "feet"),
  12435. weight: math.unit(500, "lb"),
  12436. name: "Front",
  12437. image: {
  12438. source: "./media/characters/regena-maxwell/front.svg",
  12439. extra: 3115 / 2770,
  12440. bottom: 0.02
  12441. }
  12442. },
  12443. },
  12444. [
  12445. {
  12446. name: "Normal",
  12447. height: math.unit(7 + 4 / 12, "feet"),
  12448. default: true
  12449. },
  12450. {
  12451. name: "Macro",
  12452. height: math.unit(220, "feet")
  12453. },
  12454. {
  12455. name: "Megamacro",
  12456. height: math.unit(11, "miles")
  12457. },
  12458. ]
  12459. ))
  12460. characterMakers.push(() => makeCharacter(
  12461. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12462. {
  12463. front: {
  12464. height: math.unit(6, "feet"),
  12465. weight: math.unit(150, "lb"),
  12466. name: "Front",
  12467. image: {
  12468. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12469. extra: 860 / 690,
  12470. bottom: 0.03
  12471. }
  12472. },
  12473. },
  12474. [
  12475. {
  12476. name: "Normal",
  12477. height: math.unit(1.7, "meters"),
  12478. default: true
  12479. },
  12480. ]
  12481. ))
  12482. characterMakers.push(() => makeCharacter(
  12483. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12484. {
  12485. front: {
  12486. height: math.unit(6, "feet"),
  12487. weight: math.unit(150, "lb"),
  12488. name: "Front",
  12489. image: {
  12490. source: "./media/characters/quilly/front.svg",
  12491. extra: 890 / 776
  12492. }
  12493. },
  12494. },
  12495. [
  12496. {
  12497. name: "Gigamacro",
  12498. height: math.unit(404090, "miles"),
  12499. default: true
  12500. },
  12501. ]
  12502. ))
  12503. characterMakers.push(() => makeCharacter(
  12504. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12505. {
  12506. front: {
  12507. height: math.unit(7 + 8 / 12, "feet"),
  12508. weight: math.unit(350, "lb"),
  12509. name: "Front",
  12510. image: {
  12511. source: "./media/characters/tempest/front.svg",
  12512. extra: 1175 / 1086,
  12513. bottom: 0.02
  12514. }
  12515. },
  12516. },
  12517. [
  12518. {
  12519. name: "Normal",
  12520. height: math.unit(7 + 8 / 12, "feet"),
  12521. default: true
  12522. },
  12523. ]
  12524. ))
  12525. characterMakers.push(() => makeCharacter(
  12526. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12527. {
  12528. side: {
  12529. height: math.unit(4 + 5 / 12, "feet"),
  12530. weight: math.unit(80, "lb"),
  12531. name: "Side",
  12532. image: {
  12533. source: "./media/characters/rodger/side.svg",
  12534. extra: 1235 / 1118
  12535. }
  12536. },
  12537. },
  12538. [
  12539. {
  12540. name: "Micro",
  12541. height: math.unit(1, "inch")
  12542. },
  12543. {
  12544. name: "Normal",
  12545. height: math.unit(4 + 5 / 12, "feet"),
  12546. default: true
  12547. },
  12548. {
  12549. name: "Macro",
  12550. height: math.unit(120, "feet")
  12551. },
  12552. ]
  12553. ))
  12554. characterMakers.push(() => makeCharacter(
  12555. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12556. {
  12557. front: {
  12558. height: math.unit(6, "feet"),
  12559. weight: math.unit(150, "lb"),
  12560. name: "Front",
  12561. image: {
  12562. source: "./media/characters/danyel/front.svg",
  12563. extra: 1185 / 1123,
  12564. bottom: 0.05
  12565. }
  12566. },
  12567. },
  12568. [
  12569. {
  12570. name: "Shrunken",
  12571. height: math.unit(0.5, "mm")
  12572. },
  12573. {
  12574. name: "Micro",
  12575. height: math.unit(1, "mm"),
  12576. default: true
  12577. },
  12578. {
  12579. name: "Upsized",
  12580. height: math.unit(5 + 5 / 12, "feet")
  12581. },
  12582. ]
  12583. ))
  12584. characterMakers.push(() => makeCharacter(
  12585. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12586. {
  12587. front: {
  12588. height: math.unit(5 + 6 / 12, "feet"),
  12589. weight: math.unit(200, "lb"),
  12590. name: "Front",
  12591. image: {
  12592. source: "./media/characters/vivian-bijoux/front.svg",
  12593. extra: 1,
  12594. bottom: 0.072
  12595. }
  12596. },
  12597. },
  12598. [
  12599. {
  12600. name: "Normal",
  12601. height: math.unit(5 + 6 / 12, "feet"),
  12602. default: true
  12603. },
  12604. {
  12605. name: "Bad Dream",
  12606. height: math.unit(500, "feet")
  12607. },
  12608. {
  12609. name: "Nightmare",
  12610. height: math.unit(500, "miles")
  12611. },
  12612. ]
  12613. ))
  12614. characterMakers.push(() => makeCharacter(
  12615. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12616. {
  12617. front: {
  12618. height: math.unit(6 + 1 / 12, "feet"),
  12619. weight: math.unit(260, "lb"),
  12620. name: "Front",
  12621. image: {
  12622. source: "./media/characters/zeta/front.svg",
  12623. extra: 1968 / 1889,
  12624. bottom: 0.06
  12625. }
  12626. },
  12627. back: {
  12628. height: math.unit(6 + 1 / 12, "feet"),
  12629. weight: math.unit(260, "lb"),
  12630. name: "Back",
  12631. image: {
  12632. source: "./media/characters/zeta/back.svg",
  12633. extra: 1944 / 1858,
  12634. bottom: 0.03
  12635. }
  12636. },
  12637. hand: {
  12638. height: math.unit(1.112, "feet"),
  12639. name: "Hand",
  12640. image: {
  12641. source: "./media/characters/zeta/hand.svg"
  12642. }
  12643. },
  12644. foot: {
  12645. height: math.unit(1.48, "feet"),
  12646. name: "Foot",
  12647. image: {
  12648. source: "./media/characters/zeta/foot.svg"
  12649. }
  12650. },
  12651. },
  12652. [
  12653. {
  12654. name: "Micro",
  12655. height: math.unit(6, "inches")
  12656. },
  12657. {
  12658. name: "Normal",
  12659. height: math.unit(6 + 1 / 12, "feet"),
  12660. default: true
  12661. },
  12662. {
  12663. name: "Macro",
  12664. height: math.unit(20, "feet")
  12665. },
  12666. ]
  12667. ))
  12668. characterMakers.push(() => makeCharacter(
  12669. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12670. {
  12671. front: {
  12672. height: math.unit(6, "feet"),
  12673. weight: math.unit(150, "lb"),
  12674. name: "Front",
  12675. image: {
  12676. source: "./media/characters/jamie-larsen/front.svg",
  12677. extra: 962 / 933,
  12678. bottom: 0.02
  12679. }
  12680. },
  12681. back: {
  12682. height: math.unit(6, "feet"),
  12683. weight: math.unit(150, "lb"),
  12684. name: "Back",
  12685. image: {
  12686. source: "./media/characters/jamie-larsen/back.svg",
  12687. extra: 997 / 946
  12688. }
  12689. },
  12690. },
  12691. [
  12692. {
  12693. name: "Macro",
  12694. height: math.unit(28 + 7 / 12, "feet"),
  12695. default: true
  12696. },
  12697. {
  12698. name: "Macro+",
  12699. height: math.unit(180, "feet")
  12700. },
  12701. {
  12702. name: "Megamacro",
  12703. height: math.unit(10, "miles")
  12704. },
  12705. {
  12706. name: "Gigamacro",
  12707. height: math.unit(200000, "miles")
  12708. },
  12709. ]
  12710. ))
  12711. characterMakers.push(() => makeCharacter(
  12712. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12713. {
  12714. front: {
  12715. height: math.unit(6, "feet"),
  12716. weight: math.unit(120, "lb"),
  12717. name: "Front",
  12718. image: {
  12719. source: "./media/characters/vance/front.svg",
  12720. extra: 1980 / 1890,
  12721. bottom: 0.09
  12722. }
  12723. },
  12724. back: {
  12725. height: math.unit(6, "feet"),
  12726. weight: math.unit(120, "lb"),
  12727. name: "Back",
  12728. image: {
  12729. source: "./media/characters/vance/back.svg",
  12730. extra: 2081 / 1994,
  12731. bottom: 0.014
  12732. }
  12733. },
  12734. hand: {
  12735. height: math.unit(0.88, "feet"),
  12736. name: "Hand",
  12737. image: {
  12738. source: "./media/characters/vance/hand.svg"
  12739. }
  12740. },
  12741. foot: {
  12742. height: math.unit(0.64, "feet"),
  12743. name: "Foot",
  12744. image: {
  12745. source: "./media/characters/vance/foot.svg"
  12746. }
  12747. },
  12748. },
  12749. [
  12750. {
  12751. name: "Small",
  12752. height: math.unit(90, "feet"),
  12753. default: true
  12754. },
  12755. {
  12756. name: "Macro",
  12757. height: math.unit(100, "meters")
  12758. },
  12759. {
  12760. name: "Megamacro",
  12761. height: math.unit(15, "miles")
  12762. },
  12763. ]
  12764. ))
  12765. characterMakers.push(() => makeCharacter(
  12766. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12767. {
  12768. front: {
  12769. height: math.unit(6, "feet"),
  12770. weight: math.unit(180, "lb"),
  12771. name: "Front",
  12772. image: {
  12773. source: "./media/characters/xochitl/front.svg",
  12774. extra: 2297 / 2261,
  12775. bottom: 0.065
  12776. }
  12777. },
  12778. back: {
  12779. height: math.unit(6, "feet"),
  12780. weight: math.unit(180, "lb"),
  12781. name: "Back",
  12782. image: {
  12783. source: "./media/characters/xochitl/back.svg",
  12784. extra: 2386 / 2354,
  12785. bottom: 0.01
  12786. }
  12787. },
  12788. foot: {
  12789. height: math.unit(6 / 5 * 1.15, "feet"),
  12790. weight: math.unit(150, "lb"),
  12791. name: "Foot",
  12792. image: {
  12793. source: "./media/characters/xochitl/foot.svg"
  12794. }
  12795. },
  12796. },
  12797. [
  12798. {
  12799. name: "Macro",
  12800. height: math.unit(80, "feet")
  12801. },
  12802. {
  12803. name: "Macro+",
  12804. height: math.unit(400, "feet"),
  12805. default: true
  12806. },
  12807. {
  12808. name: "Gigamacro",
  12809. height: math.unit(80000, "miles")
  12810. },
  12811. {
  12812. name: "Gigamacro+",
  12813. height: math.unit(400000, "miles")
  12814. },
  12815. {
  12816. name: "Teramacro",
  12817. height: math.unit(300, "AU")
  12818. },
  12819. ]
  12820. ))
  12821. characterMakers.push(() => makeCharacter(
  12822. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12823. {
  12824. front: {
  12825. height: math.unit(6, "feet"),
  12826. weight: math.unit(150, "lb"),
  12827. name: "Front",
  12828. image: {
  12829. source: "./media/characters/vincent/front.svg",
  12830. extra: 1130 / 1080,
  12831. bottom: 0.055
  12832. }
  12833. },
  12834. beak: {
  12835. height: math.unit(6 * 0.1, "feet"),
  12836. name: "Beak",
  12837. image: {
  12838. source: "./media/characters/vincent/beak.svg"
  12839. }
  12840. },
  12841. hand: {
  12842. height: math.unit(6 * 0.85, "feet"),
  12843. weight: math.unit(150, "lb"),
  12844. name: "Hand",
  12845. image: {
  12846. source: "./media/characters/vincent/hand.svg"
  12847. }
  12848. },
  12849. foot: {
  12850. height: math.unit(6 * 0.19, "feet"),
  12851. weight: math.unit(150, "lb"),
  12852. name: "Foot",
  12853. image: {
  12854. source: "./media/characters/vincent/foot.svg"
  12855. }
  12856. },
  12857. },
  12858. [
  12859. {
  12860. name: "Base",
  12861. height: math.unit(6 + 5 / 12, "feet"),
  12862. default: true
  12863. },
  12864. {
  12865. name: "Macro",
  12866. height: math.unit(300, "feet")
  12867. },
  12868. {
  12869. name: "Megamacro",
  12870. height: math.unit(2, "miles")
  12871. },
  12872. {
  12873. name: "Gigamacro",
  12874. height: math.unit(1000, "miles")
  12875. },
  12876. ]
  12877. ))
  12878. characterMakers.push(() => makeCharacter(
  12879. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  12880. {
  12881. front: {
  12882. height: math.unit(6 + 2 / 12, "feet"),
  12883. weight: math.unit(265, "lb"),
  12884. name: "Front",
  12885. image: {
  12886. source: "./media/characters/jay/front.svg",
  12887. extra: 1510 / 1430,
  12888. bottom: 0.042
  12889. }
  12890. },
  12891. back: {
  12892. height: math.unit(6 + 2 / 12, "feet"),
  12893. weight: math.unit(265, "lb"),
  12894. name: "Back",
  12895. image: {
  12896. source: "./media/characters/jay/back.svg",
  12897. extra: 1510 / 1430,
  12898. bottom: 0.025
  12899. }
  12900. },
  12901. clothed: {
  12902. height: math.unit(6 + 2 / 12, "feet"),
  12903. weight: math.unit(265, "lb"),
  12904. name: "Front (Clothed)",
  12905. image: {
  12906. source: "./media/characters/jay/clothed.svg",
  12907. extra: 744 / 699,
  12908. bottom: 0.043
  12909. }
  12910. },
  12911. head: {
  12912. height: math.unit(1.772, "feet"),
  12913. name: "Head",
  12914. image: {
  12915. source: "./media/characters/jay/head.svg"
  12916. }
  12917. },
  12918. sizeRay: {
  12919. height: math.unit(1.331, "feet"),
  12920. name: "Size Ray",
  12921. image: {
  12922. source: "./media/characters/jay/size-ray.svg"
  12923. }
  12924. },
  12925. },
  12926. [
  12927. {
  12928. name: "Micro",
  12929. height: math.unit(1, "inch")
  12930. },
  12931. {
  12932. name: "Normal",
  12933. height: math.unit(6 + 2 / 12, "feet"),
  12934. default: true
  12935. },
  12936. {
  12937. name: "Macro",
  12938. height: math.unit(1, "mile")
  12939. },
  12940. {
  12941. name: "Megamacro",
  12942. height: math.unit(100, "miles")
  12943. },
  12944. ]
  12945. ))
  12946. characterMakers.push(() => makeCharacter(
  12947. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  12948. {
  12949. front: {
  12950. height: math.unit(2, "meters"),
  12951. weight: math.unit(500, "kg"),
  12952. name: "Front",
  12953. image: {
  12954. source: "./media/characters/coatl/front.svg",
  12955. extra: 3948 / 3500,
  12956. bottom: 0.082
  12957. }
  12958. },
  12959. },
  12960. [
  12961. {
  12962. name: "Normal",
  12963. height: math.unit(4, "meters")
  12964. },
  12965. {
  12966. name: "Macro",
  12967. height: math.unit(100, "meters"),
  12968. default: true
  12969. },
  12970. {
  12971. name: "Macro+",
  12972. height: math.unit(300, "meters")
  12973. },
  12974. {
  12975. name: "Megamacro",
  12976. height: math.unit(3, "gigameters")
  12977. },
  12978. {
  12979. name: "Megamacro+",
  12980. height: math.unit(300, "terameters")
  12981. },
  12982. {
  12983. name: "Megamacro++",
  12984. height: math.unit(3, "lightyears")
  12985. },
  12986. ]
  12987. ))
  12988. characterMakers.push(() => makeCharacter(
  12989. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  12990. {
  12991. front: {
  12992. height: math.unit(6, "feet"),
  12993. weight: math.unit(50, "kg"),
  12994. name: "front",
  12995. image: {
  12996. source: "./media/characters/shiroryu/front.svg",
  12997. extra: 1990 / 1935
  12998. }
  12999. },
  13000. },
  13001. [
  13002. {
  13003. name: "Mortal Mingling",
  13004. height: math.unit(3, "meters")
  13005. },
  13006. {
  13007. name: "Kaiju-ish",
  13008. height: math.unit(250, "meters")
  13009. },
  13010. {
  13011. name: "Somewhat Godly",
  13012. height: math.unit(400, "km"),
  13013. default: true
  13014. },
  13015. {
  13016. name: "Planetary",
  13017. height: math.unit(300, "megameters")
  13018. },
  13019. {
  13020. name: "Galaxy-dwarfing",
  13021. height: math.unit(450, "kiloparsecs")
  13022. },
  13023. {
  13024. name: "Universe Eater",
  13025. height: math.unit(150, "gigaparsecs")
  13026. },
  13027. {
  13028. name: "Almost Immeasurable",
  13029. height: math.unit(1.3e266, "yottaparsecs")
  13030. },
  13031. ]
  13032. ))
  13033. characterMakers.push(() => makeCharacter(
  13034. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13035. {
  13036. front: {
  13037. height: math.unit(6, "feet"),
  13038. weight: math.unit(150, "lb"),
  13039. name: "Front",
  13040. image: {
  13041. source: "./media/characters/umeko/front.svg",
  13042. extra: 1,
  13043. bottom: 0.019
  13044. }
  13045. },
  13046. frontArmored: {
  13047. height: math.unit(6, "feet"),
  13048. weight: math.unit(150, "lb"),
  13049. name: "Front (Armored)",
  13050. image: {
  13051. source: "./media/characters/umeko/front-armored.svg",
  13052. extra: 1,
  13053. bottom: 0.021
  13054. }
  13055. },
  13056. },
  13057. [
  13058. {
  13059. name: "Macro",
  13060. height: math.unit(220, "feet"),
  13061. default: true
  13062. },
  13063. {
  13064. name: "Guardian Dragon",
  13065. height: math.unit(50, "miles")
  13066. },
  13067. {
  13068. name: "Cosmic",
  13069. height: math.unit(800000, "miles")
  13070. },
  13071. ]
  13072. ))
  13073. characterMakers.push(() => makeCharacter(
  13074. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13075. {
  13076. front: {
  13077. height: math.unit(6, "feet"),
  13078. weight: math.unit(150, "lb"),
  13079. name: "Front",
  13080. image: {
  13081. source: "./media/characters/cassidy/front.svg",
  13082. extra: 1,
  13083. bottom: 0.043
  13084. }
  13085. },
  13086. },
  13087. [
  13088. {
  13089. name: "Canon Height",
  13090. height: math.unit(120, "feet"),
  13091. default: true
  13092. },
  13093. {
  13094. name: "Macro+",
  13095. height: math.unit(400, "feet")
  13096. },
  13097. {
  13098. name: "Macro++",
  13099. height: math.unit(4000, "feet")
  13100. },
  13101. {
  13102. name: "Megamacro",
  13103. height: math.unit(3, "miles")
  13104. },
  13105. ]
  13106. ))
  13107. characterMakers.push(() => makeCharacter(
  13108. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13109. {
  13110. front: {
  13111. height: math.unit(6, "feet"),
  13112. weight: math.unit(150, "lb"),
  13113. name: "Front",
  13114. image: {
  13115. source: "./media/characters/isaac/front.svg",
  13116. extra: 896 / 815,
  13117. bottom: 0.11
  13118. }
  13119. },
  13120. },
  13121. [
  13122. {
  13123. name: "Human Size",
  13124. height: math.unit(8, "feet"),
  13125. default: true
  13126. },
  13127. {
  13128. name: "Macro",
  13129. height: math.unit(400, "feet")
  13130. },
  13131. {
  13132. name: "Megamacro",
  13133. height: math.unit(50, "miles")
  13134. },
  13135. {
  13136. name: "Canon Height",
  13137. height: math.unit(200, "AU")
  13138. },
  13139. ]
  13140. ))
  13141. characterMakers.push(() => makeCharacter(
  13142. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13143. {
  13144. front: {
  13145. height: math.unit(6, "feet"),
  13146. weight: math.unit(72, "kg"),
  13147. name: "Front",
  13148. image: {
  13149. source: "./media/characters/sleekit/front.svg",
  13150. extra: 4693 / 4487,
  13151. bottom: 0.012
  13152. }
  13153. },
  13154. },
  13155. [
  13156. {
  13157. name: "Minimum Height",
  13158. height: math.unit(10, "meters")
  13159. },
  13160. {
  13161. name: "Smaller",
  13162. height: math.unit(25, "meters")
  13163. },
  13164. {
  13165. name: "Larger",
  13166. height: math.unit(38, "meters"),
  13167. default: true
  13168. },
  13169. {
  13170. name: "Maximum height",
  13171. height: math.unit(100, "meters")
  13172. },
  13173. ]
  13174. ))
  13175. characterMakers.push(() => makeCharacter(
  13176. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13177. {
  13178. front: {
  13179. height: math.unit(6, "feet"),
  13180. weight: math.unit(150, "lb"),
  13181. name: "Front",
  13182. image: {
  13183. source: "./media/characters/nillia/front.svg",
  13184. extra: 2195 / 2037,
  13185. bottom: 0.005
  13186. }
  13187. },
  13188. back: {
  13189. height: math.unit(6, "feet"),
  13190. weight: math.unit(150, "lb"),
  13191. name: "Back",
  13192. image: {
  13193. source: "./media/characters/nillia/back.svg",
  13194. extra: 2195 / 2037,
  13195. bottom: 0.005
  13196. }
  13197. },
  13198. },
  13199. [
  13200. {
  13201. name: "Canon Height",
  13202. height: math.unit(489, "feet"),
  13203. default: true
  13204. }
  13205. ]
  13206. ))
  13207. characterMakers.push(() => makeCharacter(
  13208. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13209. {
  13210. front: {
  13211. height: math.unit(6, "feet"),
  13212. weight: math.unit(150, "lb"),
  13213. name: "Front",
  13214. image: {
  13215. source: "./media/characters/mesmyriza/front.svg",
  13216. extra: 2067 / 1784,
  13217. bottom: 0.035
  13218. }
  13219. },
  13220. foot: {
  13221. height: math.unit(6 / (250 / 35), "feet"),
  13222. name: "Foot",
  13223. image: {
  13224. source: "./media/characters/mesmyriza/foot.svg"
  13225. }
  13226. },
  13227. },
  13228. [
  13229. {
  13230. name: "Macro",
  13231. height: math.unit(457, "meters"),
  13232. default: true
  13233. },
  13234. {
  13235. name: "Megamacro",
  13236. height: math.unit(8, "megameters")
  13237. },
  13238. ]
  13239. ))
  13240. characterMakers.push(() => makeCharacter(
  13241. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13242. {
  13243. front: {
  13244. height: math.unit(6, "feet"),
  13245. weight: math.unit(250, "lb"),
  13246. name: "Front",
  13247. image: {
  13248. source: "./media/characters/saudade/front.svg",
  13249. extra: 1172 / 1139,
  13250. bottom: 0.035
  13251. }
  13252. },
  13253. },
  13254. [
  13255. {
  13256. name: "Micro",
  13257. height: math.unit(3, "inches")
  13258. },
  13259. {
  13260. name: "Normal",
  13261. height: math.unit(6, "feet"),
  13262. default: true
  13263. },
  13264. {
  13265. name: "Macro",
  13266. height: math.unit(50, "feet")
  13267. },
  13268. {
  13269. name: "Megamacro",
  13270. height: math.unit(2800, "feet")
  13271. },
  13272. ]
  13273. ))
  13274. characterMakers.push(() => makeCharacter(
  13275. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13276. {
  13277. front: {
  13278. height: math.unit(5 + 4 / 12, "feet"),
  13279. weight: math.unit(100, "lb"),
  13280. name: "Front",
  13281. image: {
  13282. source: "./media/characters/keireer/front.svg",
  13283. extra: 716 / 666,
  13284. bottom: 0.05
  13285. }
  13286. },
  13287. },
  13288. [
  13289. {
  13290. name: "Normal",
  13291. height: math.unit(5 + 4 / 12, "feet"),
  13292. default: true
  13293. },
  13294. ]
  13295. ))
  13296. characterMakers.push(() => makeCharacter(
  13297. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13298. {
  13299. front: {
  13300. height: math.unit(6, "feet"),
  13301. weight: math.unit(90, "kg"),
  13302. name: "Front",
  13303. image: {
  13304. source: "./media/characters/mirja/front.svg",
  13305. extra: 1789 / 1683,
  13306. bottom: 0.05
  13307. }
  13308. },
  13309. frontDressed: {
  13310. height: math.unit(6, "feet"),
  13311. weight: math.unit(90, "lb"),
  13312. name: "Front (Dressed)",
  13313. image: {
  13314. source: "./media/characters/mirja/front-dressed.svg",
  13315. extra: 1789 / 1683,
  13316. bottom: 0.05
  13317. }
  13318. },
  13319. back: {
  13320. height: math.unit(6, "feet"),
  13321. weight: math.unit(90, "lb"),
  13322. name: "Back",
  13323. image: {
  13324. source: "./media/characters/mirja/back.svg",
  13325. extra: 953 / 917,
  13326. bottom: 0.017
  13327. }
  13328. },
  13329. },
  13330. [
  13331. {
  13332. name: "\"Incognito\"",
  13333. height: math.unit(3, "meters")
  13334. },
  13335. {
  13336. name: "Strolling Size",
  13337. height: math.unit(15, "km")
  13338. },
  13339. {
  13340. name: "Larger Strolling Size",
  13341. height: math.unit(400, "km")
  13342. },
  13343. {
  13344. name: "Preferred Size",
  13345. height: math.unit(5000, "km")
  13346. },
  13347. {
  13348. name: "True Size",
  13349. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13350. default: true
  13351. },
  13352. ]
  13353. ))
  13354. characterMakers.push(() => makeCharacter(
  13355. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13356. {
  13357. front: {
  13358. height: math.unit(15, "feet"),
  13359. weight: math.unit(880, "kg"),
  13360. name: "Front",
  13361. image: {
  13362. source: "./media/characters/nightraver/front.svg",
  13363. extra: 2444 / 2160,
  13364. bottom: 0.027
  13365. }
  13366. },
  13367. back: {
  13368. height: math.unit(15, "feet"),
  13369. weight: math.unit(880, "kg"),
  13370. name: "Back",
  13371. image: {
  13372. source: "./media/characters/nightraver/back.svg",
  13373. extra: 2309 / 2180,
  13374. bottom: 0.005
  13375. }
  13376. },
  13377. sole: {
  13378. height: math.unit(2.878, "feet"),
  13379. name: "Sole",
  13380. image: {
  13381. source: "./media/characters/nightraver/sole.svg"
  13382. }
  13383. },
  13384. foot: {
  13385. height: math.unit(2.285, "feet"),
  13386. name: "Foot",
  13387. image: {
  13388. source: "./media/characters/nightraver/foot.svg"
  13389. }
  13390. },
  13391. maw: {
  13392. height: math.unit(2.67, "feet"),
  13393. name: "Maw",
  13394. image: {
  13395. source: "./media/characters/nightraver/maw.svg"
  13396. }
  13397. },
  13398. },
  13399. [
  13400. {
  13401. name: "Micro",
  13402. height: math.unit(1, "cm")
  13403. },
  13404. {
  13405. name: "Normal",
  13406. height: math.unit(15, "feet"),
  13407. default: true
  13408. },
  13409. {
  13410. name: "Macro",
  13411. height: math.unit(300, "feet")
  13412. },
  13413. {
  13414. name: "Megamacro",
  13415. height: math.unit(300, "miles")
  13416. },
  13417. {
  13418. name: "Gigamacro",
  13419. height: math.unit(10000, "miles")
  13420. },
  13421. ]
  13422. ))
  13423. characterMakers.push(() => makeCharacter(
  13424. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13425. {
  13426. side: {
  13427. height: math.unit(2, "inches"),
  13428. weight: math.unit(5, "grams"),
  13429. name: "Side",
  13430. image: {
  13431. source: "./media/characters/arc/side.svg"
  13432. }
  13433. },
  13434. },
  13435. [
  13436. {
  13437. name: "Micro",
  13438. height: math.unit(2, "inches"),
  13439. default: true
  13440. },
  13441. ]
  13442. ))
  13443. characterMakers.push(() => makeCharacter(
  13444. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13445. {
  13446. front: {
  13447. height: math.unit(1.1938, "meters"),
  13448. weight: math.unit(54, "kg"),
  13449. name: "Front",
  13450. image: {
  13451. source: "./media/characters/nebula-shahar/front.svg",
  13452. extra: 1642 / 1436,
  13453. bottom: 0.06
  13454. }
  13455. },
  13456. },
  13457. [
  13458. {
  13459. name: "Megamicro",
  13460. height: math.unit(0.3, "mm")
  13461. },
  13462. {
  13463. name: "Micro",
  13464. height: math.unit(3, "cm")
  13465. },
  13466. {
  13467. name: "Normal",
  13468. height: math.unit(138, "cm"),
  13469. default: true
  13470. },
  13471. {
  13472. name: "Macro",
  13473. height: math.unit(30, "m")
  13474. },
  13475. ]
  13476. ))
  13477. characterMakers.push(() => makeCharacter(
  13478. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13479. {
  13480. front: {
  13481. height: math.unit(5.24, "feet"),
  13482. weight: math.unit(150, "lb"),
  13483. name: "Front",
  13484. image: {
  13485. source: "./media/characters/shayla/front.svg",
  13486. extra: 1512 / 1414,
  13487. bottom: 0.01
  13488. }
  13489. },
  13490. back: {
  13491. height: math.unit(5.24, "feet"),
  13492. weight: math.unit(150, "lb"),
  13493. name: "Back",
  13494. image: {
  13495. source: "./media/characters/shayla/back.svg",
  13496. extra: 1512 / 1414
  13497. }
  13498. },
  13499. hand: {
  13500. height: math.unit(0.7781496062992126, "feet"),
  13501. name: "Hand",
  13502. image: {
  13503. source: "./media/characters/shayla/hand.svg"
  13504. }
  13505. },
  13506. foot: {
  13507. height: math.unit(1.4206036745406823, "feet"),
  13508. name: "Foot",
  13509. image: {
  13510. source: "./media/characters/shayla/foot.svg"
  13511. }
  13512. },
  13513. },
  13514. [
  13515. {
  13516. name: "Micro",
  13517. height: math.unit(0.32, "feet")
  13518. },
  13519. {
  13520. name: "Normal",
  13521. height: math.unit(5.24, "feet"),
  13522. default: true
  13523. },
  13524. {
  13525. name: "Macro",
  13526. height: math.unit(492.12, "feet")
  13527. },
  13528. {
  13529. name: "Megamacro",
  13530. height: math.unit(186.41, "miles")
  13531. },
  13532. ]
  13533. ))
  13534. characterMakers.push(() => makeCharacter(
  13535. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13536. {
  13537. front: {
  13538. height: math.unit(2.2, "m"),
  13539. weight: math.unit(120, "kg"),
  13540. name: "Front",
  13541. image: {
  13542. source: "./media/characters/pia-jr/front.svg",
  13543. extra: 1000 / 970,
  13544. bottom: 0.035
  13545. }
  13546. },
  13547. hand: {
  13548. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13549. name: "Hand",
  13550. image: {
  13551. source: "./media/characters/pia-jr/hand.svg"
  13552. }
  13553. },
  13554. paw: {
  13555. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13556. name: "Paw",
  13557. image: {
  13558. source: "./media/characters/pia-jr/paw.svg"
  13559. }
  13560. },
  13561. },
  13562. [
  13563. {
  13564. name: "Micro",
  13565. height: math.unit(1.2, "cm")
  13566. },
  13567. {
  13568. name: "Normal",
  13569. height: math.unit(2.2, "m"),
  13570. default: true
  13571. },
  13572. {
  13573. name: "Macro",
  13574. height: math.unit(180, "m")
  13575. },
  13576. {
  13577. name: "Megamacro",
  13578. height: math.unit(420, "km")
  13579. },
  13580. ]
  13581. ))
  13582. characterMakers.push(() => makeCharacter(
  13583. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13584. {
  13585. front: {
  13586. height: math.unit(2, "m"),
  13587. weight: math.unit(115, "kg"),
  13588. name: "Front",
  13589. image: {
  13590. source: "./media/characters/pia-sr/front.svg",
  13591. extra: 760 / 730,
  13592. bottom: 0.015
  13593. }
  13594. },
  13595. back: {
  13596. height: math.unit(2, "m"),
  13597. weight: math.unit(115, "kg"),
  13598. name: "Back",
  13599. image: {
  13600. source: "./media/characters/pia-sr/back.svg",
  13601. extra: 760 / 730,
  13602. bottom: 0.01
  13603. }
  13604. },
  13605. hand: {
  13606. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13607. name: "Hand",
  13608. image: {
  13609. source: "./media/characters/pia-sr/hand.svg"
  13610. }
  13611. },
  13612. foot: {
  13613. height: math.unit(1.83, "feet"),
  13614. name: "Foot",
  13615. image: {
  13616. source: "./media/characters/pia-sr/foot.svg"
  13617. }
  13618. },
  13619. },
  13620. [
  13621. {
  13622. name: "Micro",
  13623. height: math.unit(88, "mm")
  13624. },
  13625. {
  13626. name: "Normal",
  13627. height: math.unit(2, "m"),
  13628. default: true
  13629. },
  13630. {
  13631. name: "Macro",
  13632. height: math.unit(200, "m")
  13633. },
  13634. {
  13635. name: "Megamacro",
  13636. height: math.unit(420, "km")
  13637. },
  13638. ]
  13639. ))
  13640. characterMakers.push(() => makeCharacter(
  13641. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13642. {
  13643. front: {
  13644. height: math.unit(8 + 2 / 12, "feet"),
  13645. weight: math.unit(300, "lb"),
  13646. name: "Front",
  13647. image: {
  13648. source: "./media/characters/kibibyte/front.svg",
  13649. extra: 2221 / 2098,
  13650. bottom: 0.04
  13651. }
  13652. },
  13653. },
  13654. [
  13655. {
  13656. name: "Normal",
  13657. height: math.unit(8 + 2 / 12, "feet"),
  13658. default: true
  13659. },
  13660. {
  13661. name: "Socialable Macro",
  13662. height: math.unit(50, "feet")
  13663. },
  13664. {
  13665. name: "Macro",
  13666. height: math.unit(300, "feet")
  13667. },
  13668. {
  13669. name: "Megamacro",
  13670. height: math.unit(500, "miles")
  13671. },
  13672. ]
  13673. ))
  13674. characterMakers.push(() => makeCharacter(
  13675. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13676. {
  13677. front: {
  13678. height: math.unit(6, "feet"),
  13679. weight: math.unit(150, "lb"),
  13680. name: "Front",
  13681. image: {
  13682. source: "./media/characters/felix/front.svg",
  13683. extra: 762 / 722,
  13684. bottom: 0.02
  13685. }
  13686. },
  13687. frontClothed: {
  13688. height: math.unit(6, "feet"),
  13689. weight: math.unit(150, "lb"),
  13690. name: "Front (Clothed)",
  13691. image: {
  13692. source: "./media/characters/felix/front-clothed.svg",
  13693. extra: 762 / 722,
  13694. bottom: 0.02
  13695. }
  13696. },
  13697. },
  13698. [
  13699. {
  13700. name: "Normal",
  13701. height: math.unit(6 + 8 / 12, "feet"),
  13702. default: true
  13703. },
  13704. {
  13705. name: "Macro",
  13706. height: math.unit(2600, "feet")
  13707. },
  13708. {
  13709. name: "Megamacro",
  13710. height: math.unit(450, "miles")
  13711. },
  13712. ]
  13713. ))
  13714. characterMakers.push(() => makeCharacter(
  13715. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13716. {
  13717. front: {
  13718. height: math.unit(6 + 1 / 12, "feet"),
  13719. weight: math.unit(250, "lb"),
  13720. name: "Front",
  13721. image: {
  13722. source: "./media/characters/tobo/front.svg",
  13723. extra: 608 / 586,
  13724. bottom: 0.023
  13725. }
  13726. },
  13727. back: {
  13728. height: math.unit(6 + 1 / 12, "feet"),
  13729. weight: math.unit(250, "lb"),
  13730. name: "Back",
  13731. image: {
  13732. source: "./media/characters/tobo/back.svg",
  13733. extra: 608 / 586
  13734. }
  13735. },
  13736. },
  13737. [
  13738. {
  13739. name: "Nano",
  13740. height: math.unit(2, "nm")
  13741. },
  13742. {
  13743. name: "Megamicro",
  13744. height: math.unit(0.1, "mm")
  13745. },
  13746. {
  13747. name: "Micro",
  13748. height: math.unit(1, "inch"),
  13749. default: true
  13750. },
  13751. {
  13752. name: "Human-sized",
  13753. height: math.unit(6 + 1 / 12, "feet")
  13754. },
  13755. {
  13756. name: "Macro",
  13757. height: math.unit(250, "feet")
  13758. },
  13759. {
  13760. name: "Megamacro",
  13761. height: math.unit(75, "miles")
  13762. },
  13763. {
  13764. name: "Texas-sized",
  13765. height: math.unit(750, "miles")
  13766. },
  13767. {
  13768. name: "Teramacro",
  13769. height: math.unit(50000, "miles")
  13770. },
  13771. ]
  13772. ))
  13773. characterMakers.push(() => makeCharacter(
  13774. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13775. {
  13776. front: {
  13777. height: math.unit(6, "feet"),
  13778. weight: math.unit(269, "lb"),
  13779. name: "Front",
  13780. image: {
  13781. source: "./media/characters/danny-kapowsky/front.svg",
  13782. extra: 766 / 736,
  13783. bottom: 0.044
  13784. }
  13785. },
  13786. back: {
  13787. height: math.unit(6, "feet"),
  13788. weight: math.unit(269, "lb"),
  13789. name: "Back",
  13790. image: {
  13791. source: "./media/characters/danny-kapowsky/back.svg",
  13792. extra: 797 / 760,
  13793. bottom: 0.025
  13794. }
  13795. },
  13796. },
  13797. [
  13798. {
  13799. name: "Macro",
  13800. height: math.unit(150, "feet"),
  13801. default: true
  13802. },
  13803. {
  13804. name: "Macro+",
  13805. height: math.unit(200, "feet")
  13806. },
  13807. {
  13808. name: "Macro++",
  13809. height: math.unit(300, "feet")
  13810. },
  13811. {
  13812. name: "Macro+++",
  13813. height: math.unit(400, "feet")
  13814. },
  13815. ]
  13816. ))
  13817. characterMakers.push(() => makeCharacter(
  13818. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13819. {
  13820. side: {
  13821. height: math.unit(6, "feet"),
  13822. weight: math.unit(170, "lb"),
  13823. name: "Side",
  13824. image: {
  13825. source: "./media/characters/finn/side.svg",
  13826. extra: 1953 / 1807,
  13827. bottom: 0.057
  13828. }
  13829. },
  13830. },
  13831. [
  13832. {
  13833. name: "Megamacro",
  13834. height: math.unit(14445, "feet"),
  13835. default: true
  13836. },
  13837. ]
  13838. ))
  13839. characterMakers.push(() => makeCharacter(
  13840. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13841. {
  13842. front: {
  13843. height: math.unit(5 + 6 / 12, "feet"),
  13844. weight: math.unit(125, "lb"),
  13845. name: "Front",
  13846. image: {
  13847. source: "./media/characters/roy/front.svg",
  13848. extra: 1,
  13849. bottom: 0.11
  13850. }
  13851. },
  13852. },
  13853. [
  13854. {
  13855. name: "Micro",
  13856. height: math.unit(3, "inches"),
  13857. default: true
  13858. },
  13859. {
  13860. name: "Normal",
  13861. height: math.unit(5 + 6 / 12, "feet")
  13862. },
  13863. {
  13864. name: "Lesser Macro",
  13865. height: math.unit(60, "feet")
  13866. },
  13867. {
  13868. name: "Greater Macro",
  13869. height: math.unit(120, "feet")
  13870. },
  13871. ]
  13872. ))
  13873. characterMakers.push(() => makeCharacter(
  13874. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  13875. {
  13876. front: {
  13877. height: math.unit(6, "feet"),
  13878. weight: math.unit(100, "lb"),
  13879. name: "Front",
  13880. image: {
  13881. source: "./media/characters/aevsivs/front.svg",
  13882. extra: 1,
  13883. bottom: 0.03
  13884. }
  13885. },
  13886. back: {
  13887. height: math.unit(6, "feet"),
  13888. weight: math.unit(100, "lb"),
  13889. name: "Back",
  13890. image: {
  13891. source: "./media/characters/aevsivs/back.svg"
  13892. }
  13893. },
  13894. },
  13895. [
  13896. {
  13897. name: "Micro",
  13898. height: math.unit(2, "inches"),
  13899. default: true
  13900. },
  13901. {
  13902. name: "Normal",
  13903. height: math.unit(5, "feet")
  13904. },
  13905. ]
  13906. ))
  13907. characterMakers.push(() => makeCharacter(
  13908. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  13909. {
  13910. front: {
  13911. height: math.unit(5 + 7 / 12, "feet"),
  13912. weight: math.unit(159, "lb"),
  13913. name: "Front",
  13914. image: {
  13915. source: "./media/characters/hildegard/front.svg",
  13916. extra: 289 / 269,
  13917. bottom: 7.63/297.8
  13918. }
  13919. },
  13920. back: {
  13921. height: math.unit(5 + 7 / 12, "feet"),
  13922. weight: math.unit(159, "lb"),
  13923. name: "Back",
  13924. image: {
  13925. source: "./media/characters/hildegard/back.svg",
  13926. extra: 280/260,
  13927. bottom: 2.3/282
  13928. }
  13929. },
  13930. },
  13931. [
  13932. {
  13933. name: "Normal",
  13934. height: math.unit(5 + 7 / 12, "feet"),
  13935. default: true
  13936. },
  13937. ]
  13938. ))
  13939. characterMakers.push(() => makeCharacter(
  13940. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  13941. {
  13942. bernard: {
  13943. height: math.unit(2 + 7 / 12, "feet"),
  13944. weight: math.unit(66, "lb"),
  13945. name: "Bernard",
  13946. rename: true,
  13947. image: {
  13948. source: "./media/characters/bernard-wilder/bernard.svg",
  13949. extra: 192 / 128,
  13950. bottom: 0.05
  13951. }
  13952. },
  13953. wilder: {
  13954. height: math.unit(5 + 8 / 12, "feet"),
  13955. weight: math.unit(143, "lb"),
  13956. name: "Wilder",
  13957. rename: true,
  13958. image: {
  13959. source: "./media/characters/bernard-wilder/wilder.svg",
  13960. extra: 361 / 312,
  13961. bottom: 0.02
  13962. }
  13963. },
  13964. },
  13965. [
  13966. {
  13967. name: "Normal",
  13968. height: math.unit(2 + 7 / 12, "feet"),
  13969. default: true
  13970. },
  13971. ]
  13972. ))
  13973. characterMakers.push(() => makeCharacter(
  13974. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  13975. {
  13976. anthro: {
  13977. height: math.unit(6 + 1 / 12, "feet"),
  13978. weight: math.unit(155, "lb"),
  13979. name: "Anthro",
  13980. image: {
  13981. source: "./media/characters/hearth/anthro.svg",
  13982. extra: 260 / 250,
  13983. bottom: 0.02
  13984. }
  13985. },
  13986. feral: {
  13987. height: math.unit(3.78, "feet"),
  13988. weight: math.unit(35, "kg"),
  13989. name: "Feral",
  13990. image: {
  13991. source: "./media/characters/hearth/feral.svg",
  13992. extra: 153 / 135,
  13993. bottom: 0.03
  13994. }
  13995. },
  13996. },
  13997. [
  13998. {
  13999. name: "Normal",
  14000. height: math.unit(6 + 1 / 12, "feet"),
  14001. default: true
  14002. },
  14003. ]
  14004. ))
  14005. characterMakers.push(() => makeCharacter(
  14006. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14007. {
  14008. front: {
  14009. height: math.unit(6, "feet"),
  14010. weight: math.unit(182, "lb"),
  14011. name: "Front",
  14012. image: {
  14013. source: "./media/characters/ingrid/front.svg",
  14014. extra: 294 / 268,
  14015. bottom: 0.027
  14016. }
  14017. },
  14018. },
  14019. [
  14020. {
  14021. name: "Normal",
  14022. height: math.unit(6, "feet"),
  14023. default: true
  14024. },
  14025. ]
  14026. ))
  14027. characterMakers.push(() => makeCharacter(
  14028. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14029. {
  14030. eevee: {
  14031. height: math.unit(2 + 10 / 12, "feet"),
  14032. weight: math.unit(86, "lb"),
  14033. name: "Malgam",
  14034. image: {
  14035. source: "./media/characters/malgam/eevee.svg",
  14036. extra: 218 / 180,
  14037. bottom: 0.2
  14038. }
  14039. },
  14040. sylveon: {
  14041. height: math.unit(4, "feet"),
  14042. weight: math.unit(101, "lb"),
  14043. name: "Future Malgam",
  14044. rename: true,
  14045. image: {
  14046. source: "./media/characters/malgam/sylveon.svg",
  14047. extra: 371 / 325,
  14048. bottom: 0.015
  14049. }
  14050. },
  14051. gigantamax: {
  14052. height: math.unit(50, "feet"),
  14053. name: "Gigantamax Malgam",
  14054. rename: true,
  14055. image: {
  14056. source: "./media/characters/malgam/gigantamax.svg"
  14057. }
  14058. },
  14059. },
  14060. [
  14061. {
  14062. name: "Normal",
  14063. height: math.unit(2 + 10 / 12, "feet"),
  14064. default: true
  14065. },
  14066. ]
  14067. ))
  14068. characterMakers.push(() => makeCharacter(
  14069. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14070. {
  14071. front: {
  14072. height: math.unit(5 + 11 / 12, "feet"),
  14073. weight: math.unit(188, "lb"),
  14074. name: "Front",
  14075. image: {
  14076. source: "./media/characters/fleur/front.svg",
  14077. extra: 309 / 283,
  14078. bottom: 0.007
  14079. }
  14080. },
  14081. },
  14082. [
  14083. {
  14084. name: "Normal",
  14085. height: math.unit(5 + 11 / 12, "feet"),
  14086. default: true
  14087. },
  14088. ]
  14089. ))
  14090. characterMakers.push(() => makeCharacter(
  14091. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14092. {
  14093. front: {
  14094. height: math.unit(5 + 4 / 12, "feet"),
  14095. weight: math.unit(122, "lb"),
  14096. name: "Front",
  14097. image: {
  14098. source: "./media/characters/jude/front.svg",
  14099. extra: 288 / 273,
  14100. bottom: 0.03
  14101. }
  14102. },
  14103. },
  14104. [
  14105. {
  14106. name: "Normal",
  14107. height: math.unit(5 + 4 / 12, "feet"),
  14108. default: true
  14109. },
  14110. ]
  14111. ))
  14112. characterMakers.push(() => makeCharacter(
  14113. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14114. {
  14115. front: {
  14116. height: math.unit(5 + 11 / 12, "feet"),
  14117. weight: math.unit(190, "lb"),
  14118. name: "Front",
  14119. image: {
  14120. source: "./media/characters/seara/front.svg",
  14121. extra: 1,
  14122. bottom: 0.05
  14123. }
  14124. },
  14125. },
  14126. [
  14127. {
  14128. name: "Normal",
  14129. height: math.unit(5 + 11 / 12, "feet"),
  14130. default: true
  14131. },
  14132. ]
  14133. ))
  14134. characterMakers.push(() => makeCharacter(
  14135. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14136. {
  14137. front: {
  14138. height: math.unit(16 + 5 / 12, "feet"),
  14139. weight: math.unit(524, "lb"),
  14140. name: "Front",
  14141. image: {
  14142. source: "./media/characters/caspian/front.svg",
  14143. extra: 1,
  14144. bottom: 0.04
  14145. }
  14146. },
  14147. },
  14148. [
  14149. {
  14150. name: "Normal",
  14151. height: math.unit(16 + 5 / 12, "feet"),
  14152. default: true
  14153. },
  14154. ]
  14155. ))
  14156. characterMakers.push(() => makeCharacter(
  14157. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14158. {
  14159. front: {
  14160. height: math.unit(5 + 7 / 12, "feet"),
  14161. weight: math.unit(170, "lb"),
  14162. name: "Front",
  14163. image: {
  14164. source: "./media/characters/mika/front.svg",
  14165. extra: 1,
  14166. bottom: 0.016
  14167. }
  14168. },
  14169. },
  14170. [
  14171. {
  14172. name: "Normal",
  14173. height: math.unit(5 + 7 / 12, "feet"),
  14174. default: true
  14175. },
  14176. ]
  14177. ))
  14178. characterMakers.push(() => makeCharacter(
  14179. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14180. {
  14181. front: {
  14182. height: math.unit(6 + 2 / 12, "feet"),
  14183. weight: math.unit(268, "lb"),
  14184. name: "Front",
  14185. image: {
  14186. source: "./media/characters/sol/front.svg",
  14187. extra: 247 / 231,
  14188. bottom: 0.05
  14189. }
  14190. },
  14191. },
  14192. [
  14193. {
  14194. name: "Normal",
  14195. height: math.unit(6 + 2 / 12, "feet"),
  14196. default: true
  14197. },
  14198. ]
  14199. ))
  14200. characterMakers.push(() => makeCharacter(
  14201. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14202. {
  14203. buizel: {
  14204. height: math.unit(2 + 5 / 12, "feet"),
  14205. weight: math.unit(87, "lb"),
  14206. name: "Buizel",
  14207. image: {
  14208. source: "./media/characters/umiko/buizel.svg",
  14209. extra: 172 / 157,
  14210. bottom: 0.01
  14211. }
  14212. },
  14213. floatzel: {
  14214. height: math.unit(5 + 9 / 12, "feet"),
  14215. weight: math.unit(250, "lb"),
  14216. name: "Floatzel",
  14217. image: {
  14218. source: "./media/characters/umiko/floatzel.svg",
  14219. extra: 262 / 248
  14220. }
  14221. },
  14222. },
  14223. [
  14224. {
  14225. name: "Normal",
  14226. height: math.unit(2 + 5 / 12, "feet"),
  14227. default: true
  14228. },
  14229. ]
  14230. ))
  14231. characterMakers.push(() => makeCharacter(
  14232. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14233. {
  14234. front: {
  14235. height: math.unit(6 + 2 / 12, "feet"),
  14236. weight: math.unit(146, "lb"),
  14237. name: "Front",
  14238. image: {
  14239. source: "./media/characters/iliac/front.svg",
  14240. extra: 389 / 365,
  14241. bottom: 0.035
  14242. }
  14243. },
  14244. },
  14245. [
  14246. {
  14247. name: "Normal",
  14248. height: math.unit(6 + 2 / 12, "feet"),
  14249. default: true
  14250. },
  14251. ]
  14252. ))
  14253. characterMakers.push(() => makeCharacter(
  14254. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14255. {
  14256. front: {
  14257. height: math.unit(6, "feet"),
  14258. weight: math.unit(170, "lb"),
  14259. name: "Front",
  14260. image: {
  14261. source: "./media/characters/topaz/front.svg",
  14262. extra: 317 / 303,
  14263. bottom: 0.055
  14264. }
  14265. },
  14266. },
  14267. [
  14268. {
  14269. name: "Normal",
  14270. height: math.unit(6, "feet"),
  14271. default: true
  14272. },
  14273. ]
  14274. ))
  14275. characterMakers.push(() => makeCharacter(
  14276. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14277. {
  14278. front: {
  14279. height: math.unit(5 + 11 / 12, "feet"),
  14280. weight: math.unit(144, "lb"),
  14281. name: "Front",
  14282. image: {
  14283. source: "./media/characters/gabriel/front.svg",
  14284. extra: 285 / 262,
  14285. bottom: 0.004
  14286. }
  14287. },
  14288. },
  14289. [
  14290. {
  14291. name: "Normal",
  14292. height: math.unit(5 + 11 / 12, "feet"),
  14293. default: true
  14294. },
  14295. ]
  14296. ))
  14297. characterMakers.push(() => makeCharacter(
  14298. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14299. {
  14300. side: {
  14301. height: math.unit(6 + 5 / 12, "feet"),
  14302. weight: math.unit(300, "lb"),
  14303. name: "Side",
  14304. image: {
  14305. source: "./media/characters/tempest-suicune/side.svg",
  14306. extra: 195 / 154,
  14307. bottom: 0.04
  14308. }
  14309. },
  14310. },
  14311. [
  14312. {
  14313. name: "Normal",
  14314. height: math.unit(6 + 5 / 12, "feet"),
  14315. default: true
  14316. },
  14317. ]
  14318. ))
  14319. characterMakers.push(() => makeCharacter(
  14320. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14321. {
  14322. front: {
  14323. height: math.unit(7 + 2 / 12, "feet"),
  14324. weight: math.unit(322, "lb"),
  14325. name: "Front",
  14326. image: {
  14327. source: "./media/characters/vulcan/front.svg",
  14328. extra: 154 / 147,
  14329. bottom: 0.04
  14330. }
  14331. },
  14332. },
  14333. [
  14334. {
  14335. name: "Normal",
  14336. height: math.unit(7 + 2 / 12, "feet"),
  14337. default: true
  14338. },
  14339. ]
  14340. ))
  14341. characterMakers.push(() => makeCharacter(
  14342. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14343. {
  14344. front: {
  14345. height: math.unit(5 + 10 / 12, "feet"),
  14346. weight: math.unit(264, "lb"),
  14347. name: "Front",
  14348. image: {
  14349. source: "./media/characters/gault/front.svg",
  14350. extra: 161 / 140,
  14351. bottom: 0.028
  14352. }
  14353. },
  14354. },
  14355. [
  14356. {
  14357. name: "Normal",
  14358. height: math.unit(5 + 10 / 12, "feet"),
  14359. default: true
  14360. },
  14361. ]
  14362. ))
  14363. characterMakers.push(() => makeCharacter(
  14364. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14365. {
  14366. front: {
  14367. height: math.unit(6, "feet"),
  14368. weight: math.unit(150, "lb"),
  14369. name: "Front",
  14370. image: {
  14371. source: "./media/characters/shard/front.svg",
  14372. extra: 273 / 238,
  14373. bottom: 0.02
  14374. }
  14375. },
  14376. },
  14377. [
  14378. {
  14379. name: "Normal",
  14380. height: math.unit(3 + 6 / 12, "feet"),
  14381. default: true
  14382. },
  14383. ]
  14384. ))
  14385. characterMakers.push(() => makeCharacter(
  14386. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14387. {
  14388. front: {
  14389. height: math.unit(5 + 11 / 12, "feet"),
  14390. weight: math.unit(146, "lb"),
  14391. name: "Front",
  14392. image: {
  14393. source: "./media/characters/ashe/front.svg",
  14394. extra: 400 / 373,
  14395. bottom: 0.01
  14396. }
  14397. },
  14398. },
  14399. [
  14400. {
  14401. name: "Normal",
  14402. height: math.unit(5 + 11 / 12, "feet"),
  14403. default: true
  14404. },
  14405. ]
  14406. ))
  14407. characterMakers.push(() => makeCharacter(
  14408. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14409. {
  14410. front: {
  14411. height: math.unit(5 + 5 / 12, "feet"),
  14412. weight: math.unit(135, "lb"),
  14413. name: "Front",
  14414. image: {
  14415. source: "./media/characters/beatrix/front.svg",
  14416. extra: 392 / 379,
  14417. bottom: 0.01
  14418. }
  14419. },
  14420. },
  14421. [
  14422. {
  14423. name: "Normal",
  14424. height: math.unit(6, "feet"),
  14425. default: true
  14426. },
  14427. ]
  14428. ))
  14429. characterMakers.push(() => makeCharacter(
  14430. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14431. {
  14432. front: {
  14433. height: math.unit(6, "feet"),
  14434. weight: math.unit(150, "lb"),
  14435. name: "Front",
  14436. image: {
  14437. source: "./media/characters/ignatius/front.svg",
  14438. extra: 245 / 222,
  14439. bottom: 0.01
  14440. }
  14441. },
  14442. },
  14443. [
  14444. {
  14445. name: "Normal",
  14446. height: math.unit(5 + 5 / 12, "feet"),
  14447. default: true
  14448. },
  14449. ]
  14450. ))
  14451. characterMakers.push(() => makeCharacter(
  14452. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14453. {
  14454. front: {
  14455. height: math.unit(6 + 2 / 12, "feet"),
  14456. weight: math.unit(138, "lb"),
  14457. name: "Front",
  14458. image: {
  14459. source: "./media/characters/mei-li/front.svg",
  14460. extra: 237 / 229,
  14461. bottom: 0.03
  14462. }
  14463. },
  14464. },
  14465. [
  14466. {
  14467. name: "Normal",
  14468. height: math.unit(6 + 2 / 12, "feet"),
  14469. default: true
  14470. },
  14471. ]
  14472. ))
  14473. characterMakers.push(() => makeCharacter(
  14474. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14475. {
  14476. front: {
  14477. height: math.unit(2 + 4 / 12, "feet"),
  14478. weight: math.unit(62, "lb"),
  14479. name: "Front",
  14480. image: {
  14481. source: "./media/characters/puru/front.svg",
  14482. extra: 206 / 149,
  14483. bottom: 0.06
  14484. }
  14485. },
  14486. },
  14487. [
  14488. {
  14489. name: "Normal",
  14490. height: math.unit(2 + 4 / 12, "feet"),
  14491. default: true
  14492. },
  14493. ]
  14494. ))
  14495. characterMakers.push(() => makeCharacter(
  14496. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14497. {
  14498. taur: {
  14499. height: math.unit(11, "feet"),
  14500. weight: math.unit(500, "lb"),
  14501. name: "Taur",
  14502. image: {
  14503. source: "./media/characters/kee/taur.svg",
  14504. extra: 1,
  14505. bottom: 0.04
  14506. }
  14507. },
  14508. },
  14509. [
  14510. {
  14511. name: "Normal",
  14512. height: math.unit(11, "feet"),
  14513. default: true
  14514. },
  14515. ]
  14516. ))
  14517. characterMakers.push(() => makeCharacter(
  14518. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14519. {
  14520. anthro: {
  14521. height: math.unit(7, "feet"),
  14522. weight: math.unit(190, "lb"),
  14523. name: "Anthro",
  14524. image: {
  14525. source: "./media/characters/cobalt-dracha/anthro.svg",
  14526. extra: 231 / 225,
  14527. bottom: 0.04
  14528. }
  14529. },
  14530. feral: {
  14531. height: math.unit(9 + 7 / 12, "feet"),
  14532. weight: math.unit(294, "lb"),
  14533. name: "Feral",
  14534. image: {
  14535. source: "./media/characters/cobalt-dracha/feral.svg",
  14536. extra: 692 / 633,
  14537. bottom: 0.05
  14538. }
  14539. },
  14540. },
  14541. [
  14542. {
  14543. name: "Normal",
  14544. height: math.unit(7, "feet"),
  14545. default: true
  14546. },
  14547. ]
  14548. ))
  14549. characterMakers.push(() => makeCharacter(
  14550. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14551. {
  14552. fallen: {
  14553. height: math.unit(11 + 8 / 12, "feet"),
  14554. weight: math.unit(485, "lb"),
  14555. name: "Java (Fallen)",
  14556. rename: true,
  14557. image: {
  14558. source: "./media/characters/java/fallen.svg",
  14559. extra: 226 / 208,
  14560. bottom: 0.005
  14561. }
  14562. },
  14563. godkin: {
  14564. height: math.unit(10 + 6 / 12, "feet"),
  14565. weight: math.unit(328, "lb"),
  14566. name: "Java (Godkin)",
  14567. rename: true,
  14568. image: {
  14569. source: "./media/characters/java/godkin.svg",
  14570. extra: 270 / 262,
  14571. bottom: 0.02
  14572. }
  14573. },
  14574. },
  14575. [
  14576. {
  14577. name: "Normal",
  14578. height: math.unit(11 + 8 / 12, "feet"),
  14579. default: true
  14580. },
  14581. ]
  14582. ))
  14583. characterMakers.push(() => makeCharacter(
  14584. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14585. {
  14586. front: {
  14587. height: math.unit(7 + 8 / 12, "feet"),
  14588. weight: math.unit(320, "lb"),
  14589. name: "Front",
  14590. image: {
  14591. source: "./media/characters/skoll/front.svg",
  14592. extra: 232 / 220,
  14593. bottom: 0.02
  14594. }
  14595. },
  14596. },
  14597. [
  14598. {
  14599. name: "Normal",
  14600. height: math.unit(7 + 8 / 12, "feet"),
  14601. default: true
  14602. },
  14603. ]
  14604. ))
  14605. characterMakers.push(() => makeCharacter(
  14606. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14607. {
  14608. front: {
  14609. height: math.unit(5 + 9 / 12, "feet"),
  14610. weight: math.unit(170, "lb"),
  14611. name: "Front",
  14612. image: {
  14613. source: "./media/characters/purna/front.svg",
  14614. extra: 239 / 229,
  14615. bottom: 0.01
  14616. }
  14617. },
  14618. },
  14619. [
  14620. {
  14621. name: "Normal",
  14622. height: math.unit(5 + 9 / 12, "feet"),
  14623. default: true
  14624. },
  14625. ]
  14626. ))
  14627. characterMakers.push(() => makeCharacter(
  14628. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14629. {
  14630. front: {
  14631. height: math.unit(5 + 9 / 12, "feet"),
  14632. weight: math.unit(142, "lb"),
  14633. name: "Front",
  14634. image: {
  14635. source: "./media/characters/kuva/front.svg",
  14636. extra: 281 / 271,
  14637. bottom: 0.006
  14638. }
  14639. },
  14640. },
  14641. [
  14642. {
  14643. name: "Normal",
  14644. height: math.unit(5 + 9 / 12, "feet"),
  14645. default: true
  14646. },
  14647. ]
  14648. ))
  14649. characterMakers.push(() => makeCharacter(
  14650. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14651. {
  14652. anthro: {
  14653. height: math.unit(9 + 2 / 12, "feet"),
  14654. weight: math.unit(270, "lb"),
  14655. name: "Anthro",
  14656. image: {
  14657. source: "./media/characters/embra/anthro.svg",
  14658. extra: 200 / 187,
  14659. bottom: 0.02
  14660. }
  14661. },
  14662. feral: {
  14663. height: math.unit(18 + 8 / 12, "feet"),
  14664. weight: math.unit(576, "lb"),
  14665. name: "Feral",
  14666. image: {
  14667. source: "./media/characters/embra/feral.svg",
  14668. extra: 152 / 137,
  14669. bottom: 0.037
  14670. }
  14671. },
  14672. },
  14673. [
  14674. {
  14675. name: "Normal",
  14676. height: math.unit(9 + 2 / 12, "feet"),
  14677. default: true
  14678. },
  14679. ]
  14680. ))
  14681. characterMakers.push(() => makeCharacter(
  14682. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14683. {
  14684. anthro: {
  14685. height: math.unit(10 + 9 / 12, "feet"),
  14686. weight: math.unit(224, "lb"),
  14687. name: "Anthro",
  14688. image: {
  14689. source: "./media/characters/grottos/anthro.svg",
  14690. extra: 350 / 332,
  14691. bottom: 0.045
  14692. }
  14693. },
  14694. feral: {
  14695. height: math.unit(20 + 7 / 12, "feet"),
  14696. weight: math.unit(629, "lb"),
  14697. name: "Feral",
  14698. image: {
  14699. source: "./media/characters/grottos/feral.svg",
  14700. extra: 207 / 190,
  14701. bottom: 0.05
  14702. }
  14703. },
  14704. },
  14705. [
  14706. {
  14707. name: "Normal",
  14708. height: math.unit(10 + 9 / 12, "feet"),
  14709. default: true
  14710. },
  14711. ]
  14712. ))
  14713. characterMakers.push(() => makeCharacter(
  14714. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14715. {
  14716. anthro: {
  14717. height: math.unit(9 + 6 / 12, "feet"),
  14718. weight: math.unit(298, "lb"),
  14719. name: "Anthro",
  14720. image: {
  14721. source: "./media/characters/frifna/anthro.svg",
  14722. extra: 282 / 269,
  14723. bottom: 0.015
  14724. }
  14725. },
  14726. feral: {
  14727. height: math.unit(16 + 2 / 12, "feet"),
  14728. weight: math.unit(624, "lb"),
  14729. name: "Feral",
  14730. image: {
  14731. source: "./media/characters/frifna/feral.svg"
  14732. }
  14733. },
  14734. },
  14735. [
  14736. {
  14737. name: "Normal",
  14738. height: math.unit(9 + 6 / 12, "feet"),
  14739. default: true
  14740. },
  14741. ]
  14742. ))
  14743. characterMakers.push(() => makeCharacter(
  14744. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14745. {
  14746. front: {
  14747. height: math.unit(6 + 2 / 12, "feet"),
  14748. weight: math.unit(168, "lb"),
  14749. name: "Front",
  14750. image: {
  14751. source: "./media/characters/elise/front.svg",
  14752. extra: 276 / 271
  14753. }
  14754. },
  14755. },
  14756. [
  14757. {
  14758. name: "Normal",
  14759. height: math.unit(6 + 2 / 12, "feet"),
  14760. default: true
  14761. },
  14762. ]
  14763. ))
  14764. characterMakers.push(() => makeCharacter(
  14765. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14766. {
  14767. front: {
  14768. height: math.unit(5 + 10 / 12, "feet"),
  14769. weight: math.unit(210, "lb"),
  14770. name: "Front",
  14771. image: {
  14772. source: "./media/characters/glade/front.svg",
  14773. extra: 258 / 247,
  14774. bottom: 0.008
  14775. }
  14776. },
  14777. },
  14778. [
  14779. {
  14780. name: "Normal",
  14781. height: math.unit(5 + 10 / 12, "feet"),
  14782. default: true
  14783. },
  14784. ]
  14785. ))
  14786. characterMakers.push(() => makeCharacter(
  14787. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14788. {
  14789. front: {
  14790. height: math.unit(5 + 10 / 12, "feet"),
  14791. weight: math.unit(129, "lb"),
  14792. name: "Front",
  14793. image: {
  14794. source: "./media/characters/rina/front.svg",
  14795. extra: 266 / 255,
  14796. bottom: 0.005
  14797. }
  14798. },
  14799. },
  14800. [
  14801. {
  14802. name: "Normal",
  14803. height: math.unit(5 + 10 / 12, "feet"),
  14804. default: true
  14805. },
  14806. ]
  14807. ))
  14808. characterMakers.push(() => makeCharacter(
  14809. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14810. {
  14811. front: {
  14812. height: math.unit(6 + 1 / 12, "feet"),
  14813. weight: math.unit(192, "lb"),
  14814. name: "Front",
  14815. image: {
  14816. source: "./media/characters/veronica/front.svg",
  14817. extra: 319 / 309,
  14818. bottom: 0.005
  14819. }
  14820. },
  14821. },
  14822. [
  14823. {
  14824. name: "Normal",
  14825. height: math.unit(6 + 1 / 12, "feet"),
  14826. default: true
  14827. },
  14828. ]
  14829. ))
  14830. characterMakers.push(() => makeCharacter(
  14831. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14832. {
  14833. front: {
  14834. height: math.unit(9 + 3 / 12, "feet"),
  14835. weight: math.unit(1100, "lb"),
  14836. name: "Front",
  14837. image: {
  14838. source: "./media/characters/braxton/front.svg",
  14839. extra: 1057 / 984,
  14840. bottom: 0.05
  14841. }
  14842. },
  14843. },
  14844. [
  14845. {
  14846. name: "Normal",
  14847. height: math.unit(9 + 3 / 12, "feet")
  14848. },
  14849. {
  14850. name: "Giant",
  14851. height: math.unit(300, "feet"),
  14852. default: true
  14853. },
  14854. {
  14855. name: "Macro",
  14856. height: math.unit(700, "feet")
  14857. },
  14858. {
  14859. name: "Megamacro",
  14860. height: math.unit(6000, "feet")
  14861. },
  14862. ]
  14863. ))
  14864. characterMakers.push(() => makeCharacter(
  14865. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14866. {
  14867. front: {
  14868. height: math.unit(6 + 7 / 12, "feet"),
  14869. weight: math.unit(150, "lb"),
  14870. name: "Front",
  14871. image: {
  14872. source: "./media/characters/blue-feyonics/front.svg",
  14873. extra: 1403 / 1306,
  14874. bottom: 0.047
  14875. }
  14876. },
  14877. },
  14878. [
  14879. {
  14880. name: "Normal",
  14881. height: math.unit(6 + 7 / 12, "feet"),
  14882. default: true
  14883. },
  14884. ]
  14885. ))
  14886. characterMakers.push(() => makeCharacter(
  14887. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  14888. {
  14889. front: {
  14890. height: math.unit(1.8, "meters"),
  14891. weight: math.unit(60, "kg"),
  14892. name: "Front",
  14893. image: {
  14894. source: "./media/characters/maxwell/front.svg",
  14895. extra: 2060 / 1873
  14896. }
  14897. },
  14898. },
  14899. [
  14900. {
  14901. name: "Micro",
  14902. height: math.unit(1, "mm")
  14903. },
  14904. {
  14905. name: "Normal",
  14906. height: math.unit(1.8, "meter"),
  14907. default: true
  14908. },
  14909. {
  14910. name: "Macro",
  14911. height: math.unit(30, "meters")
  14912. },
  14913. {
  14914. name: "Megamacro",
  14915. height: math.unit(10, "km")
  14916. },
  14917. ]
  14918. ))
  14919. characterMakers.push(() => makeCharacter(
  14920. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  14921. {
  14922. front: {
  14923. height: math.unit(6, "feet"),
  14924. weight: math.unit(150, "lb"),
  14925. name: "Front",
  14926. image: {
  14927. source: "./media/characters/jack/front.svg",
  14928. extra: 1754 / 1640,
  14929. bottom: 0.01
  14930. }
  14931. },
  14932. },
  14933. [
  14934. {
  14935. name: "Normal",
  14936. height: math.unit(80000, "feet"),
  14937. default: true
  14938. },
  14939. {
  14940. name: "Max size",
  14941. height: math.unit(10, "lightyears")
  14942. },
  14943. ]
  14944. ))
  14945. characterMakers.push(() => makeCharacter(
  14946. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  14947. {
  14948. upright: {
  14949. height: math.unit(7, "feet"),
  14950. weight: math.unit(170, "lb"),
  14951. name: "Upright",
  14952. image: {
  14953. source: "./media/characters/cafat/upright.svg",
  14954. bottom: 0.01
  14955. }
  14956. },
  14957. uprightFull: {
  14958. height: math.unit(7, "feet"),
  14959. weight: math.unit(170, "lb"),
  14960. name: "Upright (Full)",
  14961. image: {
  14962. source: "./media/characters/cafat/upright-full.svg",
  14963. bottom: 0.01
  14964. }
  14965. },
  14966. side: {
  14967. height: math.unit(5, "feet"),
  14968. weight: math.unit(150, "lb"),
  14969. name: "Side",
  14970. image: {
  14971. source: "./media/characters/cafat/side.svg"
  14972. }
  14973. },
  14974. },
  14975. [
  14976. {
  14977. name: "Small",
  14978. height: math.unit(7, "feet"),
  14979. default: true
  14980. },
  14981. {
  14982. name: "Large",
  14983. height: math.unit(15.5, "feet")
  14984. },
  14985. ]
  14986. ))
  14987. characterMakers.push(() => makeCharacter(
  14988. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  14989. {
  14990. front: {
  14991. height: math.unit(6, "feet"),
  14992. weight: math.unit(150, "lb"),
  14993. name: "Front",
  14994. image: {
  14995. source: "./media/characters/verin-raharra/front.svg",
  14996. extra: 5019 / 4835,
  14997. bottom: 0.023
  14998. }
  14999. },
  15000. },
  15001. [
  15002. {
  15003. name: "Normal",
  15004. height: math.unit(7 + 5 / 12, "feet"),
  15005. default: true
  15006. },
  15007. {
  15008. name: "Upsized",
  15009. height: math.unit(20, "feet")
  15010. },
  15011. ]
  15012. ))
  15013. characterMakers.push(() => makeCharacter(
  15014. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15015. {
  15016. front: {
  15017. height: math.unit(7, "feet"),
  15018. weight: math.unit(230, "lb"),
  15019. name: "Front",
  15020. image: {
  15021. source: "./media/characters/nakata/front.svg",
  15022. extra: 1.005,
  15023. bottom: 0.01
  15024. }
  15025. },
  15026. },
  15027. [
  15028. {
  15029. name: "Normal",
  15030. height: math.unit(7, "feet"),
  15031. default: true
  15032. },
  15033. {
  15034. name: "Big",
  15035. height: math.unit(14, "feet")
  15036. },
  15037. {
  15038. name: "Macro",
  15039. height: math.unit(400, "feet")
  15040. },
  15041. ]
  15042. ))
  15043. characterMakers.push(() => makeCharacter(
  15044. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15045. {
  15046. front: {
  15047. height: math.unit(4.91, "feet"),
  15048. weight: math.unit(100, "lb"),
  15049. name: "Front",
  15050. image: {
  15051. source: "./media/characters/lily/front.svg",
  15052. extra: 1585 / 1415,
  15053. bottom: 0.02
  15054. }
  15055. },
  15056. },
  15057. [
  15058. {
  15059. name: "Normal",
  15060. height: math.unit(4.91, "feet"),
  15061. default: true
  15062. },
  15063. ]
  15064. ))
  15065. characterMakers.push(() => makeCharacter(
  15066. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15067. {
  15068. laying: {
  15069. height: math.unit(4 + 4 / 12, "feet"),
  15070. weight: math.unit(600, "lb"),
  15071. name: "Laying",
  15072. image: {
  15073. source: "./media/characters/sheila/laying.svg",
  15074. extra: 1333 / 1265,
  15075. bottom: 0.16
  15076. }
  15077. },
  15078. },
  15079. [
  15080. {
  15081. name: "Normal",
  15082. height: math.unit(4 + 4 / 12, "feet"),
  15083. default: true
  15084. },
  15085. ]
  15086. ))
  15087. characterMakers.push(() => makeCharacter(
  15088. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15089. {
  15090. front: {
  15091. height: math.unit(6, "feet"),
  15092. weight: math.unit(190, "lb"),
  15093. name: "Front",
  15094. image: {
  15095. source: "./media/characters/sax/front.svg",
  15096. extra: 1187 / 973,
  15097. bottom: 0.042
  15098. }
  15099. },
  15100. },
  15101. [
  15102. {
  15103. name: "Micro",
  15104. height: math.unit(4, "inches"),
  15105. default: true
  15106. },
  15107. ]
  15108. ))
  15109. characterMakers.push(() => makeCharacter(
  15110. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15111. {
  15112. front: {
  15113. height: math.unit(6, "feet"),
  15114. weight: math.unit(150, "lb"),
  15115. name: "Front",
  15116. image: {
  15117. source: "./media/characters/pandora/front.svg",
  15118. extra: 2720 / 2556,
  15119. bottom: 0.015
  15120. }
  15121. },
  15122. back: {
  15123. height: math.unit(6, "feet"),
  15124. weight: math.unit(150, "lb"),
  15125. name: "Back",
  15126. image: {
  15127. source: "./media/characters/pandora/back.svg",
  15128. extra: 2720 / 2556,
  15129. bottom: 0.01
  15130. }
  15131. },
  15132. beans: {
  15133. height: math.unit(6 / 8, "feet"),
  15134. name: "Beans",
  15135. image: {
  15136. source: "./media/characters/pandora/beans.svg"
  15137. }
  15138. },
  15139. skirt: {
  15140. height: math.unit(6, "feet"),
  15141. weight: math.unit(150, "lb"),
  15142. name: "Skirt",
  15143. image: {
  15144. source: "./media/characters/pandora/skirt.svg",
  15145. extra: 1622 / 1525,
  15146. bottom: 0.015
  15147. }
  15148. },
  15149. hoodie: {
  15150. height: math.unit(6, "feet"),
  15151. weight: math.unit(150, "lb"),
  15152. name: "Hoodie",
  15153. image: {
  15154. source: "./media/characters/pandora/hoodie.svg",
  15155. extra: 1622 / 1525,
  15156. bottom: 0.015
  15157. }
  15158. },
  15159. casual: {
  15160. height: math.unit(6, "feet"),
  15161. weight: math.unit(150, "lb"),
  15162. name: "Casual",
  15163. image: {
  15164. source: "./media/characters/pandora/casual.svg",
  15165. extra: 1622 / 1525,
  15166. bottom: 0.015
  15167. }
  15168. },
  15169. },
  15170. [
  15171. {
  15172. name: "Normal",
  15173. height: math.unit(6, "feet")
  15174. },
  15175. {
  15176. name: "Big Steppy",
  15177. height: math.unit(1, "km"),
  15178. default: true
  15179. },
  15180. ]
  15181. ))
  15182. characterMakers.push(() => makeCharacter(
  15183. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15184. {
  15185. side: {
  15186. height: math.unit(10, "feet"),
  15187. weight: math.unit(800, "kg"),
  15188. name: "Side",
  15189. image: {
  15190. source: "./media/characters/venio-darcony/side.svg",
  15191. extra: 1373 / 1003,
  15192. bottom: 0.037
  15193. }
  15194. },
  15195. front: {
  15196. height: math.unit(19, "feet"),
  15197. weight: math.unit(800, "kg"),
  15198. name: "Front",
  15199. image: {
  15200. source: "./media/characters/venio-darcony/front.svg"
  15201. }
  15202. },
  15203. back: {
  15204. height: math.unit(19, "feet"),
  15205. weight: math.unit(800, "kg"),
  15206. name: "Back",
  15207. image: {
  15208. source: "./media/characters/venio-darcony/back.svg"
  15209. }
  15210. },
  15211. sideNsfw: {
  15212. height: math.unit(10, "feet"),
  15213. weight: math.unit(800, "kg"),
  15214. name: "Side (NSFW)",
  15215. image: {
  15216. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15217. extra: 1373 / 1003,
  15218. bottom: 0.037
  15219. }
  15220. },
  15221. frontNsfw: {
  15222. height: math.unit(19, "feet"),
  15223. weight: math.unit(800, "kg"),
  15224. name: "Front (NSFW)",
  15225. image: {
  15226. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15227. }
  15228. },
  15229. backNsfw: {
  15230. height: math.unit(19, "feet"),
  15231. weight: math.unit(800, "kg"),
  15232. name: "Back (NSFW)",
  15233. image: {
  15234. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15235. }
  15236. },
  15237. sideArmored: {
  15238. height: math.unit(10, "feet"),
  15239. weight: math.unit(800, "kg"),
  15240. name: "Side (Armored)",
  15241. image: {
  15242. source: "./media/characters/venio-darcony/side-armored.svg",
  15243. extra: 1373 / 1003,
  15244. bottom: 0.037
  15245. }
  15246. },
  15247. frontArmored: {
  15248. height: math.unit(19, "feet"),
  15249. weight: math.unit(900, "kg"),
  15250. name: "Front (Armored)",
  15251. image: {
  15252. source: "./media/characters/venio-darcony/front-armored.svg"
  15253. }
  15254. },
  15255. backArmored: {
  15256. height: math.unit(19, "feet"),
  15257. weight: math.unit(900, "kg"),
  15258. name: "Back (Armored)",
  15259. image: {
  15260. source: "./media/characters/venio-darcony/back-armored.svg"
  15261. }
  15262. },
  15263. sword: {
  15264. height: math.unit(10, "feet"),
  15265. weight: math.unit(50, "lb"),
  15266. name: "Sword",
  15267. image: {
  15268. source: "./media/characters/venio-darcony/sword.svg"
  15269. }
  15270. },
  15271. },
  15272. [
  15273. {
  15274. name: "Normal",
  15275. height: math.unit(10, "feet")
  15276. },
  15277. {
  15278. name: "Macro",
  15279. height: math.unit(130, "feet"),
  15280. default: true
  15281. },
  15282. {
  15283. name: "Macro+",
  15284. height: math.unit(240, "feet")
  15285. },
  15286. ]
  15287. ))
  15288. characterMakers.push(() => makeCharacter(
  15289. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15290. {
  15291. front: {
  15292. height: math.unit(6, "feet"),
  15293. weight: math.unit(150, "lb"),
  15294. name: "Front",
  15295. image: {
  15296. source: "./media/characters/veski/front.svg",
  15297. extra: 1299 / 1225,
  15298. bottom: 0.04
  15299. }
  15300. },
  15301. back: {
  15302. height: math.unit(6, "feet"),
  15303. weight: math.unit(150, "lb"),
  15304. name: "Back",
  15305. image: {
  15306. source: "./media/characters/veski/back.svg",
  15307. extra: 1299 / 1225,
  15308. bottom: 0.008
  15309. }
  15310. },
  15311. maw: {
  15312. height: math.unit(1.5 * 1.21, "feet"),
  15313. name: "Maw",
  15314. image: {
  15315. source: "./media/characters/veski/maw.svg"
  15316. }
  15317. },
  15318. },
  15319. [
  15320. {
  15321. name: "Macro",
  15322. height: math.unit(2, "km"),
  15323. default: true
  15324. },
  15325. ]
  15326. ))
  15327. characterMakers.push(() => makeCharacter(
  15328. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15329. {
  15330. front: {
  15331. height: math.unit(5 + 7 / 12, "feet"),
  15332. name: "Front",
  15333. image: {
  15334. source: "./media/characters/isabelle/front.svg",
  15335. extra: 2130 / 1976,
  15336. bottom: 0.05
  15337. }
  15338. },
  15339. },
  15340. [
  15341. {
  15342. name: "Supermicro",
  15343. height: math.unit(10, "micrometers")
  15344. },
  15345. {
  15346. name: "Micro",
  15347. height: math.unit(1, "inch")
  15348. },
  15349. {
  15350. name: "Tiny",
  15351. height: math.unit(5, "inches")
  15352. },
  15353. {
  15354. name: "Standard",
  15355. height: math.unit(5 + 7 / 12, "inches")
  15356. },
  15357. {
  15358. name: "Macro",
  15359. height: math.unit(80, "meters"),
  15360. default: true
  15361. },
  15362. {
  15363. name: "Megamacro",
  15364. height: math.unit(250, "meters")
  15365. },
  15366. {
  15367. name: "Gigamacro",
  15368. height: math.unit(5, "km")
  15369. },
  15370. {
  15371. name: "Cosmic",
  15372. height: math.unit(2.5e6, "miles")
  15373. },
  15374. ]
  15375. ))
  15376. characterMakers.push(() => makeCharacter(
  15377. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15378. {
  15379. front: {
  15380. height: math.unit(6, "feet"),
  15381. weight: math.unit(150, "lb"),
  15382. name: "Front",
  15383. image: {
  15384. source: "./media/characters/hanzo/front.svg",
  15385. extra: 374 / 344,
  15386. bottom: 0.02
  15387. }
  15388. },
  15389. },
  15390. [
  15391. {
  15392. name: "Normal",
  15393. height: math.unit(8, "feet"),
  15394. default: true
  15395. },
  15396. ]
  15397. ))
  15398. characterMakers.push(() => makeCharacter(
  15399. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15400. {
  15401. front: {
  15402. height: math.unit(7, "feet"),
  15403. weight: math.unit(130, "lb"),
  15404. name: "Front",
  15405. image: {
  15406. source: "./media/characters/anna/front.svg",
  15407. extra: 169 / 145,
  15408. bottom: 0.06
  15409. }
  15410. },
  15411. full: {
  15412. height: math.unit(4.96, "feet"),
  15413. weight: math.unit(220, "lb"),
  15414. name: "Full",
  15415. image: {
  15416. source: "./media/characters/anna/full.svg",
  15417. extra: 138 / 114,
  15418. bottom: 0.15
  15419. }
  15420. },
  15421. tongue: {
  15422. height: math.unit(2.53, "feet"),
  15423. name: "Tongue",
  15424. image: {
  15425. source: "./media/characters/anna/tongue.svg"
  15426. }
  15427. },
  15428. },
  15429. [
  15430. {
  15431. name: "Normal",
  15432. height: math.unit(7, "feet"),
  15433. default: true
  15434. },
  15435. ]
  15436. ))
  15437. characterMakers.push(() => makeCharacter(
  15438. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15439. {
  15440. front: {
  15441. height: math.unit(7, "feet"),
  15442. weight: math.unit(150, "lb"),
  15443. name: "Front",
  15444. image: {
  15445. source: "./media/characters/ian-corvid/front.svg",
  15446. extra: 150 / 142,
  15447. bottom: 0.02
  15448. }
  15449. },
  15450. back: {
  15451. height: math.unit(7, "feet"),
  15452. weight: math.unit(150, "lb"),
  15453. name: "Back",
  15454. image: {
  15455. source: "./media/characters/ian-corvid/back.svg",
  15456. extra: 150 / 143,
  15457. bottom: 0.01
  15458. }
  15459. },
  15460. stomping: {
  15461. height: math.unit(7, "feet"),
  15462. weight: math.unit(150, "lb"),
  15463. name: "Stomping",
  15464. image: {
  15465. source: "./media/characters/ian-corvid/stomping.svg",
  15466. extra: 76 / 72
  15467. }
  15468. },
  15469. sitting: {
  15470. height: math.unit(7 / 1.8, "feet"),
  15471. weight: math.unit(150, "lb"),
  15472. name: "Sitting",
  15473. image: {
  15474. source: "./media/characters/ian-corvid/sitting.svg",
  15475. extra: 1400 / 1269,
  15476. bottom: 0.15
  15477. }
  15478. },
  15479. },
  15480. [
  15481. {
  15482. name: "Tiny Microw",
  15483. height: math.unit(1, "inch")
  15484. },
  15485. {
  15486. name: "Microw",
  15487. height: math.unit(6, "inches")
  15488. },
  15489. {
  15490. name: "Crow",
  15491. height: math.unit(7 + 1 / 12, "feet"),
  15492. default: true
  15493. },
  15494. {
  15495. name: "Macrow",
  15496. height: math.unit(176, "feet")
  15497. },
  15498. ]
  15499. ))
  15500. characterMakers.push(() => makeCharacter(
  15501. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15502. {
  15503. front: {
  15504. height: math.unit(5 + 7 / 12, "feet"),
  15505. weight: math.unit(147, "lb"),
  15506. name: "Front",
  15507. image: {
  15508. source: "./media/characters/natalie-kellon/front.svg",
  15509. extra: 1214 / 1141,
  15510. bottom: 0.02
  15511. }
  15512. },
  15513. },
  15514. [
  15515. {
  15516. name: "Micro",
  15517. height: math.unit(1 / 16, "inch")
  15518. },
  15519. {
  15520. name: "Tiny",
  15521. height: math.unit(4, "inches")
  15522. },
  15523. {
  15524. name: "Normal",
  15525. height: math.unit(5 + 7 / 12, "feet"),
  15526. default: true
  15527. },
  15528. {
  15529. name: "Amazon",
  15530. height: math.unit(12, "feet")
  15531. },
  15532. {
  15533. name: "Giantess",
  15534. height: math.unit(160, "meters")
  15535. },
  15536. {
  15537. name: "Titaness",
  15538. height: math.unit(800, "meters")
  15539. },
  15540. ]
  15541. ))
  15542. characterMakers.push(() => makeCharacter(
  15543. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15544. {
  15545. front: {
  15546. height: math.unit(6, "feet"),
  15547. weight: math.unit(150, "lb"),
  15548. name: "Front",
  15549. image: {
  15550. source: "./media/characters/alluria/front.svg",
  15551. extra: 806 / 738,
  15552. bottom: 0.01
  15553. }
  15554. },
  15555. side: {
  15556. height: math.unit(6, "feet"),
  15557. weight: math.unit(150, "lb"),
  15558. name: "Side",
  15559. image: {
  15560. source: "./media/characters/alluria/side.svg",
  15561. extra: 800 / 750,
  15562. }
  15563. },
  15564. back: {
  15565. height: math.unit(6, "feet"),
  15566. weight: math.unit(150, "lb"),
  15567. name: "Back",
  15568. image: {
  15569. source: "./media/characters/alluria/back.svg",
  15570. extra: 806 / 738,
  15571. }
  15572. },
  15573. frontMaid: {
  15574. height: math.unit(6, "feet"),
  15575. weight: math.unit(150, "lb"),
  15576. name: "Front (Maid)",
  15577. image: {
  15578. source: "./media/characters/alluria/front-maid.svg",
  15579. extra: 806 / 738,
  15580. bottom: 0.01
  15581. }
  15582. },
  15583. sideMaid: {
  15584. height: math.unit(6, "feet"),
  15585. weight: math.unit(150, "lb"),
  15586. name: "Side (Maid)",
  15587. image: {
  15588. source: "./media/characters/alluria/side-maid.svg",
  15589. extra: 800 / 750,
  15590. bottom: 0.005
  15591. }
  15592. },
  15593. backMaid: {
  15594. height: math.unit(6, "feet"),
  15595. weight: math.unit(150, "lb"),
  15596. name: "Back (Maid)",
  15597. image: {
  15598. source: "./media/characters/alluria/back-maid.svg",
  15599. extra: 806 / 738,
  15600. }
  15601. },
  15602. },
  15603. [
  15604. {
  15605. name: "Micro",
  15606. height: math.unit(6, "inches"),
  15607. default: true
  15608. },
  15609. ]
  15610. ))
  15611. characterMakers.push(() => makeCharacter(
  15612. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15613. {
  15614. front: {
  15615. height: math.unit(6, "feet"),
  15616. weight: math.unit(150, "lb"),
  15617. name: "Front",
  15618. image: {
  15619. source: "./media/characters/kyle/front.svg",
  15620. extra: 1069 / 962,
  15621. bottom: 77.228 / 1727.45
  15622. }
  15623. },
  15624. },
  15625. [
  15626. {
  15627. name: "Macro",
  15628. height: math.unit(150, "feet"),
  15629. default: true
  15630. },
  15631. ]
  15632. ))
  15633. characterMakers.push(() => makeCharacter(
  15634. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15635. {
  15636. front: {
  15637. height: math.unit(6, "feet"),
  15638. weight: math.unit(300, "lb"),
  15639. name: "Front",
  15640. image: {
  15641. source: "./media/characters/duncan/front.svg",
  15642. extra: 1650 / 1482,
  15643. bottom: 0.05
  15644. }
  15645. },
  15646. },
  15647. [
  15648. {
  15649. name: "Macro",
  15650. height: math.unit(100, "feet"),
  15651. default: true
  15652. },
  15653. ]
  15654. ))
  15655. characterMakers.push(() => makeCharacter(
  15656. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15657. {
  15658. front: {
  15659. height: math.unit(5 + 4 / 12, "feet"),
  15660. weight: math.unit(220, "lb"),
  15661. name: "Front",
  15662. image: {
  15663. source: "./media/characters/memory/front.svg",
  15664. extra: 3641 / 3545,
  15665. bottom: 0.03
  15666. }
  15667. },
  15668. back: {
  15669. height: math.unit(5 + 4 / 12, "feet"),
  15670. weight: math.unit(220, "lb"),
  15671. name: "Back",
  15672. image: {
  15673. source: "./media/characters/memory/back.svg",
  15674. extra: 3641 / 3545,
  15675. bottom: 0.025
  15676. }
  15677. },
  15678. frontSkirt: {
  15679. height: math.unit(5 + 4 / 12, "feet"),
  15680. weight: math.unit(220, "lb"),
  15681. name: "Front (Skirt)",
  15682. image: {
  15683. source: "./media/characters/memory/front-skirt.svg",
  15684. extra: 3641 / 3545,
  15685. bottom: 0.03
  15686. }
  15687. },
  15688. frontDress: {
  15689. height: math.unit(5 + 4 / 12, "feet"),
  15690. weight: math.unit(220, "lb"),
  15691. name: "Front (Dress)",
  15692. image: {
  15693. source: "./media/characters/memory/front-dress.svg",
  15694. extra: 3641 / 3545,
  15695. bottom: 0.03
  15696. }
  15697. },
  15698. },
  15699. [
  15700. {
  15701. name: "Micro",
  15702. height: math.unit(6, "inches"),
  15703. default: true
  15704. },
  15705. {
  15706. name: "Normal",
  15707. height: math.unit(5 + 4 / 12, "feet")
  15708. },
  15709. ]
  15710. ))
  15711. characterMakers.push(() => makeCharacter(
  15712. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15713. {
  15714. front: {
  15715. height: math.unit(4 + 11 / 12, "feet"),
  15716. weight: math.unit(100, "lb"),
  15717. name: "Front",
  15718. image: {
  15719. source: "./media/characters/luno/front.svg",
  15720. extra: 1535 / 1487,
  15721. bottom: 0.03
  15722. }
  15723. },
  15724. },
  15725. [
  15726. {
  15727. name: "Micro",
  15728. height: math.unit(3, "inches")
  15729. },
  15730. {
  15731. name: "Normal",
  15732. height: math.unit(4 + 11 / 12, "feet"),
  15733. default: true
  15734. },
  15735. {
  15736. name: "Macro",
  15737. height: math.unit(300, "feet")
  15738. },
  15739. {
  15740. name: "Megamacro",
  15741. height: math.unit(700, "miles")
  15742. },
  15743. ]
  15744. ))
  15745. characterMakers.push(() => makeCharacter(
  15746. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15747. {
  15748. front: {
  15749. height: math.unit(6 + 2 / 12, "feet"),
  15750. weight: math.unit(170, "lb"),
  15751. name: "Front",
  15752. image: {
  15753. source: "./media/characters/jamesy/front.svg",
  15754. extra: 440 / 382,
  15755. bottom: 0.005
  15756. }
  15757. },
  15758. },
  15759. [
  15760. {
  15761. name: "Micro",
  15762. height: math.unit(3, "inches")
  15763. },
  15764. {
  15765. name: "Normal",
  15766. height: math.unit(6 + 2 / 12, "feet"),
  15767. default: true
  15768. },
  15769. {
  15770. name: "Macro",
  15771. height: math.unit(300, "feet")
  15772. },
  15773. {
  15774. name: "Megamacro",
  15775. height: math.unit(700, "miles")
  15776. },
  15777. ]
  15778. ))
  15779. characterMakers.push(() => makeCharacter(
  15780. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15781. {
  15782. front: {
  15783. height: math.unit(6, "feet"),
  15784. weight: math.unit(160, "lb"),
  15785. name: "Front",
  15786. image: {
  15787. source: "./media/characters/mark/front.svg",
  15788. extra: 3300 / 3100,
  15789. bottom: 136.42 / 3440.47
  15790. }
  15791. },
  15792. },
  15793. [
  15794. {
  15795. name: "Macro",
  15796. height: math.unit(120, "meters")
  15797. },
  15798. {
  15799. name: "Bigger Macro",
  15800. height: math.unit(350, "meters")
  15801. },
  15802. {
  15803. name: "Megamacro",
  15804. height: math.unit(8, "km"),
  15805. default: true
  15806. },
  15807. {
  15808. name: "Continental",
  15809. height: math.unit(4550, "km")
  15810. },
  15811. {
  15812. name: "Planetary",
  15813. height: math.unit(65000, "km")
  15814. },
  15815. ]
  15816. ))
  15817. characterMakers.push(() => makeCharacter(
  15818. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15819. {
  15820. front: {
  15821. height: math.unit(6, "feet"),
  15822. weight: math.unit(400, "lb"),
  15823. name: "Front",
  15824. image: {
  15825. source: "./media/characters/mac/front.svg",
  15826. extra: 1048 / 987.7,
  15827. bottom: 60 / 1107.6,
  15828. }
  15829. },
  15830. },
  15831. [
  15832. {
  15833. name: "Macro",
  15834. height: math.unit(500, "feet"),
  15835. default: true
  15836. },
  15837. ]
  15838. ))
  15839. characterMakers.push(() => makeCharacter(
  15840. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15841. {
  15842. front: {
  15843. height: math.unit(5 + 2 / 12, "feet"),
  15844. weight: math.unit(190, "lb"),
  15845. name: "Front",
  15846. image: {
  15847. source: "./media/characters/bari/front.svg",
  15848. extra: 3156 / 2880,
  15849. bottom: 0.03
  15850. }
  15851. },
  15852. back: {
  15853. height: math.unit(5 + 2 / 12, "feet"),
  15854. weight: math.unit(190, "lb"),
  15855. name: "Back",
  15856. image: {
  15857. source: "./media/characters/bari/back.svg",
  15858. extra: 3260 / 2834,
  15859. bottom: 0.025
  15860. }
  15861. },
  15862. frontPlush: {
  15863. height: math.unit(5 + 2 / 12, "feet"),
  15864. weight: math.unit(190, "lb"),
  15865. name: "Front (Plush)",
  15866. image: {
  15867. source: "./media/characters/bari/front-plush.svg",
  15868. extra: 1112 / 1061,
  15869. bottom: 0.002
  15870. }
  15871. },
  15872. },
  15873. [
  15874. {
  15875. name: "Micro",
  15876. height: math.unit(3, "inches")
  15877. },
  15878. {
  15879. name: "Normal",
  15880. height: math.unit(5 + 2 / 12, "feet"),
  15881. default: true
  15882. },
  15883. {
  15884. name: "Macro",
  15885. height: math.unit(20, "feet")
  15886. },
  15887. ]
  15888. ))
  15889. characterMakers.push(() => makeCharacter(
  15890. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  15891. {
  15892. front: {
  15893. height: math.unit(6 + 1 / 12, "feet"),
  15894. weight: math.unit(275, "lb"),
  15895. name: "Front",
  15896. image: {
  15897. source: "./media/characters/hunter-misha-raven/front.svg"
  15898. }
  15899. },
  15900. },
  15901. [
  15902. {
  15903. name: "Mortal",
  15904. height: math.unit(6 + 1 / 12, "feet")
  15905. },
  15906. {
  15907. name: "Divine",
  15908. height: math.unit(1.12134e34, "parsecs"),
  15909. default: true
  15910. },
  15911. ]
  15912. ))
  15913. characterMakers.push(() => makeCharacter(
  15914. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  15915. {
  15916. front: {
  15917. height: math.unit(6 + 3 / 12, "feet"),
  15918. weight: math.unit(220, "lb"),
  15919. name: "Front",
  15920. image: {
  15921. source: "./media/characters/max-calore/front.svg",
  15922. extra: 1700 / 1648,
  15923. bottom: 0.01
  15924. }
  15925. },
  15926. back: {
  15927. height: math.unit(6 + 3 / 12, "feet"),
  15928. weight: math.unit(220, "lb"),
  15929. name: "Back",
  15930. image: {
  15931. source: "./media/characters/max-calore/back.svg",
  15932. extra: 1700 / 1648,
  15933. bottom: 0.01
  15934. }
  15935. },
  15936. },
  15937. [
  15938. {
  15939. name: "Normal",
  15940. height: math.unit(6 + 3 / 12, "feet"),
  15941. default: true
  15942. },
  15943. ]
  15944. ))
  15945. characterMakers.push(() => makeCharacter(
  15946. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  15947. {
  15948. side: {
  15949. height: math.unit(2 + 8 / 12, "feet"),
  15950. weight: math.unit(99, "lb"),
  15951. name: "Side",
  15952. image: {
  15953. source: "./media/characters/aspen/side.svg",
  15954. extra: 152 / 138,
  15955. bottom: 0.032
  15956. }
  15957. },
  15958. },
  15959. [
  15960. {
  15961. name: "Normal",
  15962. height: math.unit(2 + 8 / 12, "feet"),
  15963. default: true
  15964. },
  15965. ]
  15966. ))
  15967. characterMakers.push(() => makeCharacter(
  15968. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  15969. {
  15970. side: {
  15971. height: math.unit(3 + 2 / 12, "feet"),
  15972. weight: math.unit(224, "lb"),
  15973. name: "Side",
  15974. image: {
  15975. source: "./media/characters/sheila-feral-wolf/side.svg",
  15976. extra: 179 / 166,
  15977. bottom: 0.03
  15978. }
  15979. },
  15980. },
  15981. [
  15982. {
  15983. name: "Normal",
  15984. height: math.unit(3 + 2 / 12, "feet"),
  15985. default: true
  15986. },
  15987. ]
  15988. ))
  15989. characterMakers.push(() => makeCharacter(
  15990. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  15991. {
  15992. side: {
  15993. height: math.unit(1 + 9 / 12, "feet"),
  15994. weight: math.unit(38, "lb"),
  15995. name: "Side",
  15996. image: {
  15997. source: "./media/characters/michelle/side.svg",
  15998. extra: 147 / 136.7,
  15999. bottom: 0.03
  16000. }
  16001. },
  16002. },
  16003. [
  16004. {
  16005. name: "Normal",
  16006. height: math.unit(1 + 9 / 12, "feet"),
  16007. default: true
  16008. },
  16009. ]
  16010. ))
  16011. characterMakers.push(() => makeCharacter(
  16012. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16013. {
  16014. front: {
  16015. height: math.unit(1 + 1 / 12, "feet"),
  16016. weight: math.unit(18, "lb"),
  16017. name: "Front",
  16018. image: {
  16019. source: "./media/characters/nino/front.svg"
  16020. }
  16021. },
  16022. },
  16023. [
  16024. {
  16025. name: "Normal",
  16026. height: math.unit(1 + 1 / 12, "feet"),
  16027. default: true
  16028. },
  16029. ]
  16030. ))
  16031. characterMakers.push(() => makeCharacter(
  16032. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16033. {
  16034. front: {
  16035. height: math.unit(1, "feet"),
  16036. weight: math.unit(16, "lb"),
  16037. name: "Front",
  16038. image: {
  16039. source: "./media/characters/viola/front.svg"
  16040. }
  16041. },
  16042. },
  16043. [
  16044. {
  16045. name: "Normal",
  16046. height: math.unit(1, "feet"),
  16047. default: true
  16048. },
  16049. ]
  16050. ))
  16051. characterMakers.push(() => makeCharacter(
  16052. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16053. {
  16054. front: {
  16055. height: math.unit(6 + 5 / 12, "feet"),
  16056. weight: math.unit(580, "lb"),
  16057. name: "Front",
  16058. image: {
  16059. source: "./media/characters/atlas/front.svg",
  16060. extra: 298.5 / 290,
  16061. bottom: 0.015
  16062. }
  16063. },
  16064. },
  16065. [
  16066. {
  16067. name: "Normal",
  16068. height: math.unit(6 + 5 / 12, "feet"),
  16069. default: true
  16070. },
  16071. ]
  16072. ))
  16073. characterMakers.push(() => makeCharacter(
  16074. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16075. {
  16076. side: {
  16077. height: math.unit(1 + 10 / 12, "feet"),
  16078. weight: math.unit(25, "lb"),
  16079. name: "Side",
  16080. image: {
  16081. source: "./media/characters/davy/side.svg",
  16082. extra: 200 / 170,
  16083. bottom: 0.01
  16084. }
  16085. },
  16086. },
  16087. [
  16088. {
  16089. name: "Normal",
  16090. height: math.unit(1 + 10 / 12, "feet"),
  16091. default: true
  16092. },
  16093. ]
  16094. ))
  16095. characterMakers.push(() => makeCharacter(
  16096. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16097. {
  16098. side: {
  16099. height: math.unit(4 + 8 / 12, "feet"),
  16100. weight: math.unit(166, "lb"),
  16101. name: "Side",
  16102. image: {
  16103. source: "./media/characters/fiona/side.svg",
  16104. extra: 232 / 220,
  16105. bottom: 0.03
  16106. }
  16107. },
  16108. },
  16109. [
  16110. {
  16111. name: "Normal",
  16112. height: math.unit(4 + 8 / 12, "feet"),
  16113. default: true
  16114. },
  16115. ]
  16116. ))
  16117. characterMakers.push(() => makeCharacter(
  16118. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16119. {
  16120. front: {
  16121. height: math.unit(2, "feet"),
  16122. weight: math.unit(62, "lb"),
  16123. name: "Front",
  16124. image: {
  16125. source: "./media/characters/lyla/front.svg",
  16126. bottom: 0.1
  16127. }
  16128. },
  16129. },
  16130. [
  16131. {
  16132. name: "Normal",
  16133. height: math.unit(2, "feet"),
  16134. default: true
  16135. },
  16136. ]
  16137. ))
  16138. characterMakers.push(() => makeCharacter(
  16139. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16140. {
  16141. side: {
  16142. height: math.unit(1.8, "feet"),
  16143. weight: math.unit(44, "lb"),
  16144. name: "Side",
  16145. image: {
  16146. source: "./media/characters/perseus/side.svg",
  16147. bottom: 0.21
  16148. }
  16149. },
  16150. },
  16151. [
  16152. {
  16153. name: "Normal",
  16154. height: math.unit(1.8, "feet"),
  16155. default: true
  16156. },
  16157. ]
  16158. ))
  16159. characterMakers.push(() => makeCharacter(
  16160. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16161. {
  16162. side: {
  16163. height: math.unit(4 + 2 / 12, "feet"),
  16164. weight: math.unit(20, "lb"),
  16165. name: "Side",
  16166. image: {
  16167. source: "./media/characters/remus/side.svg"
  16168. }
  16169. },
  16170. },
  16171. [
  16172. {
  16173. name: "Normal",
  16174. height: math.unit(4 + 2 / 12, "feet"),
  16175. default: true
  16176. },
  16177. ]
  16178. ))
  16179. characterMakers.push(() => makeCharacter(
  16180. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16181. {
  16182. front: {
  16183. height: math.unit(4 + 11 / 12, "feet"),
  16184. weight: math.unit(114, "lb"),
  16185. name: "Front",
  16186. image: {
  16187. source: "./media/characters/raf/front.svg",
  16188. bottom: 20.5/1863
  16189. }
  16190. },
  16191. side: {
  16192. height: math.unit(4 + 11 / 12, "feet"),
  16193. weight: math.unit(114, "lb"),
  16194. name: "Side",
  16195. image: {
  16196. source: "./media/characters/raf/side.svg",
  16197. bottom: 22/1822
  16198. }
  16199. },
  16200. },
  16201. [
  16202. {
  16203. name: "Micro",
  16204. height: math.unit(2, "inches")
  16205. },
  16206. {
  16207. name: "Normal",
  16208. height: math.unit(4 + 11 / 12, "feet"),
  16209. default: true
  16210. },
  16211. {
  16212. name: "Macro",
  16213. height: math.unit(70, "feet")
  16214. },
  16215. ]
  16216. ))
  16217. characterMakers.push(() => makeCharacter(
  16218. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16219. {
  16220. front: {
  16221. height: math.unit(1.5, "meters"),
  16222. weight: math.unit(68, "kg"),
  16223. name: "Front",
  16224. image: {
  16225. source: "./media/characters/liam-einarr/front.svg",
  16226. extra: 2822 / 2666
  16227. }
  16228. },
  16229. back: {
  16230. height: math.unit(1.5, "meters"),
  16231. weight: math.unit(68, "kg"),
  16232. name: "Back",
  16233. image: {
  16234. source: "./media/characters/liam-einarr/back.svg",
  16235. extra: 2822 / 2666,
  16236. bottom: 0.015
  16237. }
  16238. },
  16239. },
  16240. [
  16241. {
  16242. name: "Normal",
  16243. height: math.unit(1.5, "meters"),
  16244. default: true
  16245. },
  16246. {
  16247. name: "Macro",
  16248. height: math.unit(150, "meters")
  16249. },
  16250. {
  16251. name: "Megamacro",
  16252. height: math.unit(35, "km")
  16253. },
  16254. ]
  16255. ))
  16256. characterMakers.push(() => makeCharacter(
  16257. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16258. {
  16259. front: {
  16260. height: math.unit(6, "feet"),
  16261. weight: math.unit(75, "kg"),
  16262. name: "Front",
  16263. image: {
  16264. source: "./media/characters/linda/front.svg",
  16265. extra: 930 / 874,
  16266. bottom: 0.004
  16267. }
  16268. },
  16269. },
  16270. [
  16271. {
  16272. name: "Normal",
  16273. height: math.unit(6, "feet"),
  16274. default: true
  16275. },
  16276. ]
  16277. ))
  16278. characterMakers.push(() => makeCharacter(
  16279. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16280. {
  16281. front: {
  16282. height: math.unit(6 + 8 / 12, "feet"),
  16283. weight: math.unit(220, "lb"),
  16284. name: "Front",
  16285. image: {
  16286. source: "./media/characters/caylex/front.svg",
  16287. extra: 821 / 772,
  16288. bottom: 0.07
  16289. }
  16290. },
  16291. back: {
  16292. height: math.unit(6 + 8 / 12, "feet"),
  16293. weight: math.unit(220, "lb"),
  16294. name: "Back",
  16295. image: {
  16296. source: "./media/characters/caylex/back.svg",
  16297. extra: 821 / 772,
  16298. bottom: 0.022
  16299. }
  16300. },
  16301. hand: {
  16302. height: math.unit(1.25, "feet"),
  16303. name: "Hand",
  16304. image: {
  16305. source: "./media/characters/caylex/hand.svg"
  16306. }
  16307. },
  16308. foot: {
  16309. height: math.unit(1.6, "feet"),
  16310. name: "Foot",
  16311. image: {
  16312. source: "./media/characters/caylex/foot.svg"
  16313. }
  16314. },
  16315. armored: {
  16316. height: math.unit(6 + 8 / 12, "feet"),
  16317. weight: math.unit(250, "lb"),
  16318. name: "Armored",
  16319. image: {
  16320. source: "./media/characters/caylex/armored.svg",
  16321. extra: 1420 / 1310,
  16322. bottom: 0.045
  16323. }
  16324. },
  16325. },
  16326. [
  16327. {
  16328. name: "Normal",
  16329. height: math.unit(6 + 8 / 12, "feet"),
  16330. default: true
  16331. },
  16332. {
  16333. name: "Normal+",
  16334. height: math.unit(12, "feet")
  16335. },
  16336. ]
  16337. ))
  16338. characterMakers.push(() => makeCharacter(
  16339. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16340. {
  16341. front: {
  16342. height: math.unit(7 + 6 / 12, "feet"),
  16343. weight: math.unit(288, "lb"),
  16344. name: "Front",
  16345. image: {
  16346. source: "./media/characters/alana/front.svg",
  16347. extra: 679 / 653,
  16348. bottom: 22.5 / 701
  16349. }
  16350. },
  16351. },
  16352. [
  16353. {
  16354. name: "Normal",
  16355. height: math.unit(7 + 6 / 12, "feet")
  16356. },
  16357. {
  16358. name: "Large",
  16359. height: math.unit(50, "feet")
  16360. },
  16361. {
  16362. name: "Macro",
  16363. height: math.unit(100, "feet"),
  16364. default: true
  16365. },
  16366. {
  16367. name: "Macro+",
  16368. height: math.unit(200, "feet")
  16369. },
  16370. ]
  16371. ))
  16372. characterMakers.push(() => makeCharacter(
  16373. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16374. {
  16375. front: {
  16376. height: math.unit(6 + 1 / 12, "feet"),
  16377. weight: math.unit(210, "lb"),
  16378. name: "Front",
  16379. image: {
  16380. source: "./media/characters/hasani/front.svg",
  16381. extra: 244 / 232,
  16382. bottom: 0.01
  16383. }
  16384. },
  16385. back: {
  16386. height: math.unit(6 + 1 / 12, "feet"),
  16387. weight: math.unit(210, "lb"),
  16388. name: "Back",
  16389. image: {
  16390. source: "./media/characters/hasani/back.svg",
  16391. extra: 244 / 232,
  16392. bottom: 0.01
  16393. }
  16394. },
  16395. },
  16396. [
  16397. {
  16398. name: "Normal",
  16399. height: math.unit(6 + 1 / 12, "feet")
  16400. },
  16401. {
  16402. name: "Macro",
  16403. height: math.unit(175, "feet"),
  16404. default: true
  16405. },
  16406. ]
  16407. ))
  16408. characterMakers.push(() => makeCharacter(
  16409. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16410. {
  16411. front: {
  16412. height: math.unit(1.82, "meters"),
  16413. weight: math.unit(140, "lb"),
  16414. name: "Front",
  16415. image: {
  16416. source: "./media/characters/nita/front.svg",
  16417. extra: 2473 / 2363,
  16418. bottom: 0.01
  16419. }
  16420. },
  16421. },
  16422. [
  16423. {
  16424. name: "Normal",
  16425. height: math.unit(1.82, "m")
  16426. },
  16427. {
  16428. name: "Macro",
  16429. height: math.unit(300, "m")
  16430. },
  16431. {
  16432. name: "Mistake Canon",
  16433. height: math.unit(0.5, "miles"),
  16434. default: true
  16435. },
  16436. {
  16437. name: "Big Mistake",
  16438. height: math.unit(13, "miles")
  16439. },
  16440. {
  16441. name: "Playing God",
  16442. height: math.unit(2450, "miles")
  16443. },
  16444. ]
  16445. ))
  16446. characterMakers.push(() => makeCharacter(
  16447. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16448. {
  16449. front: {
  16450. height: math.unit(4, "feet"),
  16451. weight: math.unit(120, "lb"),
  16452. name: "Front",
  16453. image: {
  16454. source: "./media/characters/shiriko/front.svg",
  16455. extra: 195 / 188
  16456. }
  16457. },
  16458. },
  16459. [
  16460. {
  16461. name: "Normal",
  16462. height: math.unit(4, "feet"),
  16463. default: true
  16464. },
  16465. ]
  16466. ))
  16467. characterMakers.push(() => makeCharacter(
  16468. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16469. {
  16470. front: {
  16471. height: math.unit(6, "feet"),
  16472. name: "front",
  16473. image: {
  16474. source: "./media/characters/deja/front.svg",
  16475. extra: 926 / 840,
  16476. bottom: 0.07
  16477. }
  16478. },
  16479. },
  16480. [
  16481. {
  16482. name: "Planck Length",
  16483. height: math.unit(1.6e-35, "meters")
  16484. },
  16485. {
  16486. name: "Normal",
  16487. height: math.unit(30.48, "meters"),
  16488. default: true
  16489. },
  16490. {
  16491. name: "Universal",
  16492. height: math.unit(8.8e26, "meters")
  16493. },
  16494. ]
  16495. ))
  16496. characterMakers.push(() => makeCharacter(
  16497. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16498. {
  16499. side: {
  16500. height: math.unit(8, "feet"),
  16501. weight: math.unit(6300, "lb"),
  16502. name: "Side",
  16503. image: {
  16504. source: "./media/characters/anima/side.svg",
  16505. bottom: 0.035
  16506. }
  16507. },
  16508. },
  16509. [
  16510. {
  16511. name: "Normal",
  16512. height: math.unit(8, "feet"),
  16513. default: true
  16514. },
  16515. ]
  16516. ))
  16517. characterMakers.push(() => makeCharacter(
  16518. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16519. {
  16520. front: {
  16521. height: math.unit(8, "feet"),
  16522. weight: math.unit(350, "lb"),
  16523. name: "Front",
  16524. image: {
  16525. source: "./media/characters/bianca/front.svg",
  16526. extra: 234 / 225,
  16527. bottom: 0.03
  16528. }
  16529. },
  16530. },
  16531. [
  16532. {
  16533. name: "Normal",
  16534. height: math.unit(8, "feet"),
  16535. default: true
  16536. },
  16537. ]
  16538. ))
  16539. characterMakers.push(() => makeCharacter(
  16540. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16541. {
  16542. front: {
  16543. height: math.unit(6, "feet"),
  16544. weight: math.unit(150, "lb"),
  16545. name: "Front",
  16546. image: {
  16547. source: "./media/characters/adinia/front.svg",
  16548. extra: 1845 / 1672,
  16549. bottom: 0.02
  16550. }
  16551. },
  16552. back: {
  16553. height: math.unit(6, "feet"),
  16554. weight: math.unit(150, "lb"),
  16555. name: "Back",
  16556. image: {
  16557. source: "./media/characters/adinia/back.svg",
  16558. extra: 1845 / 1672,
  16559. bottom: 0.002
  16560. }
  16561. },
  16562. },
  16563. [
  16564. {
  16565. name: "Normal",
  16566. height: math.unit(11 + 5 / 12, "feet"),
  16567. default: true
  16568. },
  16569. ]
  16570. ))
  16571. characterMakers.push(() => makeCharacter(
  16572. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16573. {
  16574. front: {
  16575. height: math.unit(3, "meters"),
  16576. weight: math.unit(200, "kg"),
  16577. name: "Front",
  16578. image: {
  16579. source: "./media/characters/lykasa/front.svg",
  16580. extra: 1076 / 976,
  16581. bottom: 0.06
  16582. }
  16583. },
  16584. },
  16585. [
  16586. {
  16587. name: "Normal",
  16588. height: math.unit(3, "meters")
  16589. },
  16590. {
  16591. name: "Kaiju",
  16592. height: math.unit(120, "meters"),
  16593. default: true
  16594. },
  16595. {
  16596. name: "Mega Kaiju",
  16597. height: math.unit(240, "km")
  16598. },
  16599. {
  16600. name: "Giga Kaiju",
  16601. height: math.unit(400, "megameters")
  16602. },
  16603. {
  16604. name: "Tera Kaiju",
  16605. height: math.unit(800, "gigameters")
  16606. },
  16607. {
  16608. name: "Kaiju Dragon Goddess",
  16609. height: math.unit(26, "zettaparsecs")
  16610. },
  16611. ]
  16612. ))
  16613. characterMakers.push(() => makeCharacter(
  16614. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16615. {
  16616. side: {
  16617. height: math.unit(283 / 124 * 6, "feet"),
  16618. weight: math.unit(35000, "lb"),
  16619. name: "Side",
  16620. image: {
  16621. source: "./media/characters/malfaren/side.svg",
  16622. extra: 2500 / 1010,
  16623. bottom: 0.01
  16624. }
  16625. },
  16626. front: {
  16627. height: math.unit(22.36, "feet"),
  16628. weight: math.unit(35000, "lb"),
  16629. name: "Front",
  16630. image: {
  16631. source: "./media/characters/malfaren/front.svg",
  16632. extra: 1631 / 1476,
  16633. bottom: 0.01
  16634. }
  16635. },
  16636. maw: {
  16637. height: math.unit(6.9, "feet"),
  16638. name: "Maw",
  16639. image: {
  16640. source: "./media/characters/malfaren/maw.svg"
  16641. }
  16642. },
  16643. },
  16644. [
  16645. {
  16646. name: "Big",
  16647. height: math.unit(283 / 162 * 6, "feet"),
  16648. },
  16649. {
  16650. name: "Bigger",
  16651. height: math.unit(283 / 124 * 6, "feet")
  16652. },
  16653. {
  16654. name: "Massive",
  16655. height: math.unit(283 / 92 * 6, "feet"),
  16656. default: true
  16657. },
  16658. {
  16659. name: "👀💦",
  16660. height: math.unit(283 / 73 * 6, "feet"),
  16661. },
  16662. ]
  16663. ))
  16664. characterMakers.push(() => makeCharacter(
  16665. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16666. {
  16667. front: {
  16668. height: math.unit(1.7, "m"),
  16669. weight: math.unit(70, "kg"),
  16670. name: "Front",
  16671. image: {
  16672. source: "./media/characters/kernel/front.svg",
  16673. extra: 222 / 210,
  16674. bottom: 0.007
  16675. }
  16676. },
  16677. },
  16678. [
  16679. {
  16680. name: "Nano",
  16681. height: math.unit(17, "micrometers")
  16682. },
  16683. {
  16684. name: "Micro",
  16685. height: math.unit(1.7, "mm")
  16686. },
  16687. {
  16688. name: "Small",
  16689. height: math.unit(1.7, "cm")
  16690. },
  16691. {
  16692. name: "Normal",
  16693. height: math.unit(1.7, "m"),
  16694. default: true
  16695. },
  16696. ]
  16697. ))
  16698. characterMakers.push(() => makeCharacter(
  16699. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16700. {
  16701. front: {
  16702. height: math.unit(1.75, "meters"),
  16703. weight: math.unit(65, "kg"),
  16704. name: "Front",
  16705. image: {
  16706. source: "./media/characters/jayne-folest/front.svg",
  16707. extra: 2115 / 2007,
  16708. bottom: 0.02
  16709. }
  16710. },
  16711. back: {
  16712. height: math.unit(1.75, "meters"),
  16713. weight: math.unit(65, "kg"),
  16714. name: "Back",
  16715. image: {
  16716. source: "./media/characters/jayne-folest/back.svg",
  16717. extra: 2115 / 2007,
  16718. bottom: 0.005
  16719. }
  16720. },
  16721. frontClothed: {
  16722. height: math.unit(1.75, "meters"),
  16723. weight: math.unit(65, "kg"),
  16724. name: "Front (Clothed)",
  16725. image: {
  16726. source: "./media/characters/jayne-folest/front-clothed.svg",
  16727. extra: 2115 / 2007,
  16728. bottom: 0.035
  16729. }
  16730. },
  16731. hand: {
  16732. height: math.unit(1 / 1.260, "feet"),
  16733. name: "Hand",
  16734. image: {
  16735. source: "./media/characters/jayne-folest/hand.svg"
  16736. }
  16737. },
  16738. foot: {
  16739. height: math.unit(1 / 0.918, "feet"),
  16740. name: "Foot",
  16741. image: {
  16742. source: "./media/characters/jayne-folest/foot.svg"
  16743. }
  16744. },
  16745. },
  16746. [
  16747. {
  16748. name: "Micro",
  16749. height: math.unit(4, "cm")
  16750. },
  16751. {
  16752. name: "Normal",
  16753. height: math.unit(1.75, "meters")
  16754. },
  16755. {
  16756. name: "Macro",
  16757. height: math.unit(47.5, "meters"),
  16758. default: true
  16759. },
  16760. ]
  16761. ))
  16762. characterMakers.push(() => makeCharacter(
  16763. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16764. {
  16765. front: {
  16766. height: math.unit(180, "cm"),
  16767. weight: math.unit(70, "kg"),
  16768. name: "Front",
  16769. image: {
  16770. source: "./media/characters/algier/front.svg",
  16771. extra: 596 / 572,
  16772. bottom: 0.04
  16773. }
  16774. },
  16775. back: {
  16776. height: math.unit(180, "cm"),
  16777. weight: math.unit(70, "kg"),
  16778. name: "Back",
  16779. image: {
  16780. source: "./media/characters/algier/back.svg",
  16781. extra: 596 / 572,
  16782. bottom: 0.025
  16783. }
  16784. },
  16785. frontdressed: {
  16786. height: math.unit(180, "cm"),
  16787. weight: math.unit(150, "kg"),
  16788. name: "Front-dressed",
  16789. image: {
  16790. source: "./media/characters/algier/front-dressed.svg",
  16791. extra: 596 / 572,
  16792. bottom: 0.038
  16793. }
  16794. },
  16795. },
  16796. [
  16797. {
  16798. name: "Micro",
  16799. height: math.unit(5, "cm")
  16800. },
  16801. {
  16802. name: "Normal",
  16803. height: math.unit(180, "cm"),
  16804. default: true
  16805. },
  16806. {
  16807. name: "Macro",
  16808. height: math.unit(64, "m")
  16809. },
  16810. ]
  16811. ))
  16812. characterMakers.push(() => makeCharacter(
  16813. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16814. {
  16815. upright: {
  16816. height: math.unit(7, "feet"),
  16817. weight: math.unit(300, "lb"),
  16818. name: "Upright",
  16819. image: {
  16820. source: "./media/characters/pretzel/upright.svg",
  16821. extra: 534 / 522,
  16822. bottom: 0.065
  16823. }
  16824. },
  16825. sprawling: {
  16826. height: math.unit(3.75, "feet"),
  16827. weight: math.unit(300, "lb"),
  16828. name: "Sprawling",
  16829. image: {
  16830. source: "./media/characters/pretzel/sprawling.svg",
  16831. extra: 314 / 281,
  16832. bottom: 0.1
  16833. }
  16834. },
  16835. tongue: {
  16836. height: math.unit(2, "feet"),
  16837. name: "Tongue",
  16838. image: {
  16839. source: "./media/characters/pretzel/tongue.svg"
  16840. }
  16841. },
  16842. },
  16843. [
  16844. {
  16845. name: "Normal",
  16846. height: math.unit(7, "feet"),
  16847. default: true
  16848. },
  16849. {
  16850. name: "Oversized",
  16851. height: math.unit(15, "feet")
  16852. },
  16853. {
  16854. name: "Huge",
  16855. height: math.unit(30, "feet")
  16856. },
  16857. {
  16858. name: "Macro",
  16859. height: math.unit(250, "feet")
  16860. },
  16861. ]
  16862. ))
  16863. characterMakers.push(() => makeCharacter(
  16864. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16865. {
  16866. sideFront: {
  16867. height: math.unit(5 + 2 / 12, "feet"),
  16868. weight: math.unit(120, "lb"),
  16869. name: "Front Side",
  16870. image: {
  16871. source: "./media/characters/roxi/side-front.svg",
  16872. extra: 2924 / 2717,
  16873. bottom: 0.08
  16874. }
  16875. },
  16876. sideBack: {
  16877. height: math.unit(5 + 2 / 12, "feet"),
  16878. weight: math.unit(120, "lb"),
  16879. name: "Back Side",
  16880. image: {
  16881. source: "./media/characters/roxi/side-back.svg",
  16882. extra: 2904 / 2693,
  16883. bottom: 0.06
  16884. }
  16885. },
  16886. front: {
  16887. height: math.unit(5 + 2 / 12, "feet"),
  16888. weight: math.unit(120, "lb"),
  16889. name: "Front",
  16890. image: {
  16891. source: "./media/characters/roxi/front.svg",
  16892. extra: 2028 / 1907,
  16893. bottom: 0.01
  16894. }
  16895. },
  16896. frontAlt: {
  16897. height: math.unit(5 + 2 / 12, "feet"),
  16898. weight: math.unit(120, "lb"),
  16899. name: "Front (Alt)",
  16900. image: {
  16901. source: "./media/characters/roxi/front-alt.svg",
  16902. extra: 1828 / 1798,
  16903. bottom: 0.01
  16904. }
  16905. },
  16906. sitting: {
  16907. height: math.unit(2.8, "feet"),
  16908. weight: math.unit(120, "lb"),
  16909. name: "Sitting",
  16910. image: {
  16911. source: "./media/characters/roxi/sitting.svg",
  16912. extra: 2660 / 2462,
  16913. bottom: 0.1
  16914. }
  16915. },
  16916. },
  16917. [
  16918. {
  16919. name: "Normal",
  16920. height: math.unit(5 + 2 / 12, "feet"),
  16921. default: true
  16922. },
  16923. ]
  16924. ))
  16925. characterMakers.push(() => makeCharacter(
  16926. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  16927. {
  16928. side: {
  16929. height: math.unit(55, "feet"),
  16930. weight: math.unit(153, "tons"),
  16931. name: "Side",
  16932. image: {
  16933. source: "./media/characters/shadow/side.svg",
  16934. extra: 701 / 628,
  16935. bottom: 0.02
  16936. }
  16937. },
  16938. flying: {
  16939. height: math.unit(145, "feet"),
  16940. weight: math.unit(153, "tons"),
  16941. name: "Flying",
  16942. image: {
  16943. source: "./media/characters/shadow/flying.svg"
  16944. }
  16945. },
  16946. },
  16947. [
  16948. {
  16949. name: "Normal",
  16950. height: math.unit(55, "feet"),
  16951. default: true
  16952. },
  16953. ]
  16954. ))
  16955. characterMakers.push(() => makeCharacter(
  16956. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  16957. {
  16958. front: {
  16959. height: math.unit(6, "feet"),
  16960. weight: math.unit(200, "lb"),
  16961. name: "Front",
  16962. image: {
  16963. source: "./media/characters/marcie/front.svg",
  16964. extra: 960 / 876,
  16965. bottom: 58 / 1017.87
  16966. }
  16967. },
  16968. },
  16969. [
  16970. {
  16971. name: "Macro",
  16972. height: math.unit(1, "mile"),
  16973. default: true
  16974. },
  16975. ]
  16976. ))
  16977. characterMakers.push(() => makeCharacter(
  16978. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  16979. {
  16980. front: {
  16981. height: math.unit(7, "feet"),
  16982. weight: math.unit(200, "lb"),
  16983. name: "Front",
  16984. image: {
  16985. source: "./media/characters/kachina/front.svg",
  16986. extra: 1290.68 / 1119,
  16987. bottom: 36.5 / 1327.18
  16988. }
  16989. },
  16990. },
  16991. [
  16992. {
  16993. name: "Normal",
  16994. height: math.unit(7, "feet"),
  16995. default: true
  16996. },
  16997. ]
  16998. ))
  16999. characterMakers.push(() => makeCharacter(
  17000. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17001. {
  17002. looking: {
  17003. height: math.unit(2, "meters"),
  17004. weight: math.unit(300, "kg"),
  17005. name: "Looking",
  17006. image: {
  17007. source: "./media/characters/kash/looking.svg",
  17008. extra: 474 / 344,
  17009. bottom: 0.03
  17010. }
  17011. },
  17012. side: {
  17013. height: math.unit(2, "meters"),
  17014. weight: math.unit(300, "kg"),
  17015. name: "Side",
  17016. image: {
  17017. source: "./media/characters/kash/side.svg",
  17018. extra: 302 / 251,
  17019. bottom: 0.03
  17020. }
  17021. },
  17022. front: {
  17023. height: math.unit(2, "meters"),
  17024. weight: math.unit(300, "kg"),
  17025. name: "Front",
  17026. image: {
  17027. source: "./media/characters/kash/front.svg",
  17028. extra: 495 / 360,
  17029. bottom: 0.015
  17030. }
  17031. },
  17032. },
  17033. [
  17034. {
  17035. name: "Normal",
  17036. height: math.unit(2, "meters"),
  17037. default: true
  17038. },
  17039. {
  17040. name: "Big",
  17041. height: math.unit(3, "meters")
  17042. },
  17043. {
  17044. name: "Large",
  17045. height: math.unit(5, "meters")
  17046. },
  17047. ]
  17048. ))
  17049. characterMakers.push(() => makeCharacter(
  17050. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17051. {
  17052. feeding: {
  17053. height: math.unit(6.7, "feet"),
  17054. weight: math.unit(350, "lb"),
  17055. name: "Feeding",
  17056. image: {
  17057. source: "./media/characters/lalim/feeding.svg",
  17058. }
  17059. },
  17060. },
  17061. [
  17062. {
  17063. name: "Normal",
  17064. height: math.unit(6.7, "feet"),
  17065. default: true
  17066. },
  17067. ]
  17068. ))
  17069. characterMakers.push(() => makeCharacter(
  17070. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17071. {
  17072. front: {
  17073. height: math.unit(9.5, "feet"),
  17074. weight: math.unit(600, "lb"),
  17075. name: "Front",
  17076. image: {
  17077. source: "./media/characters/de'vout/front.svg",
  17078. extra: 1443 / 1328,
  17079. bottom: 0.025
  17080. }
  17081. },
  17082. back: {
  17083. height: math.unit(9.5, "feet"),
  17084. weight: math.unit(600, "lb"),
  17085. name: "Back",
  17086. image: {
  17087. source: "./media/characters/de'vout/back.svg",
  17088. extra: 1443 / 1328
  17089. }
  17090. },
  17091. frontDressed: {
  17092. height: math.unit(9.5, "feet"),
  17093. weight: math.unit(600, "lb"),
  17094. name: "Front (Dressed",
  17095. image: {
  17096. source: "./media/characters/de'vout/front-dressed.svg",
  17097. extra: 1443 / 1328,
  17098. bottom: 0.025
  17099. }
  17100. },
  17101. backDressed: {
  17102. height: math.unit(9.5, "feet"),
  17103. weight: math.unit(600, "lb"),
  17104. name: "Back (Dressed",
  17105. image: {
  17106. source: "./media/characters/de'vout/back-dressed.svg",
  17107. extra: 1443 / 1328
  17108. }
  17109. },
  17110. },
  17111. [
  17112. {
  17113. name: "Normal",
  17114. height: math.unit(9.5, "feet"),
  17115. default: true
  17116. },
  17117. ]
  17118. ))
  17119. characterMakers.push(() => makeCharacter(
  17120. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17121. {
  17122. front: {
  17123. height: math.unit(8, "feet"),
  17124. weight: math.unit(225, "lb"),
  17125. name: "Front",
  17126. image: {
  17127. source: "./media/characters/talana/front.svg",
  17128. extra: 1410 / 1300,
  17129. bottom: 0.015
  17130. }
  17131. },
  17132. frontDressed: {
  17133. height: math.unit(8, "feet"),
  17134. weight: math.unit(225, "lb"),
  17135. name: "Front (Dressed",
  17136. image: {
  17137. source: "./media/characters/talana/front-dressed.svg",
  17138. extra: 1410 / 1300,
  17139. bottom: 0.015
  17140. }
  17141. },
  17142. },
  17143. [
  17144. {
  17145. name: "Normal",
  17146. height: math.unit(8, "feet"),
  17147. default: true
  17148. },
  17149. ]
  17150. ))
  17151. characterMakers.push(() => makeCharacter(
  17152. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17153. {
  17154. side: {
  17155. height: math.unit(7.2, "feet"),
  17156. weight: math.unit(150, "lb"),
  17157. name: "Side",
  17158. image: {
  17159. source: "./media/characters/xeauvok/side.svg",
  17160. extra: 1975 / 1523,
  17161. bottom: 0.07
  17162. }
  17163. },
  17164. },
  17165. [
  17166. {
  17167. name: "Normal",
  17168. height: math.unit(7.2, "feet"),
  17169. default: true
  17170. },
  17171. ]
  17172. ))
  17173. characterMakers.push(() => makeCharacter(
  17174. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17175. {
  17176. side: {
  17177. height: math.unit(10, "feet"),
  17178. weight: math.unit(900, "kg"),
  17179. name: "Side",
  17180. image: {
  17181. source: "./media/characters/zara/side.svg",
  17182. extra: 504 / 498
  17183. }
  17184. },
  17185. },
  17186. [
  17187. {
  17188. name: "Normal",
  17189. height: math.unit(10, "feet"),
  17190. default: true
  17191. },
  17192. ]
  17193. ))
  17194. characterMakers.push(() => makeCharacter(
  17195. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17196. {
  17197. side: {
  17198. height: math.unit(6, "feet"),
  17199. weight: math.unit(150, "lb"),
  17200. name: "Side",
  17201. image: {
  17202. source: "./media/characters/richard-dragon/side.svg",
  17203. extra: 845 / 340,
  17204. bottom: 0.017
  17205. }
  17206. },
  17207. maw: {
  17208. height: math.unit(2.97, "feet"),
  17209. name: "Maw",
  17210. image: {
  17211. source: "./media/characters/richard-dragon/maw.svg"
  17212. }
  17213. },
  17214. },
  17215. [
  17216. ]
  17217. ))
  17218. characterMakers.push(() => makeCharacter(
  17219. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17220. {
  17221. front: {
  17222. height: math.unit(4, "feet"),
  17223. weight: math.unit(100, "lb"),
  17224. name: "Front",
  17225. image: {
  17226. source: "./media/characters/richard-smeargle/front.svg",
  17227. extra: 2952 / 2820,
  17228. bottom: 0.028
  17229. }
  17230. },
  17231. },
  17232. [
  17233. {
  17234. name: "Normal",
  17235. height: math.unit(4, "feet"),
  17236. default: true
  17237. },
  17238. {
  17239. name: "Dynamax",
  17240. height: math.unit(20, "meters")
  17241. },
  17242. ]
  17243. ))
  17244. characterMakers.push(() => makeCharacter(
  17245. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17246. {
  17247. front: {
  17248. height: math.unit(6, "feet"),
  17249. weight: math.unit(110, "lb"),
  17250. name: "Front",
  17251. image: {
  17252. source: "./media/characters/klay/front.svg",
  17253. extra: 962 / 883,
  17254. bottom: 0.04
  17255. }
  17256. },
  17257. back: {
  17258. height: math.unit(6, "feet"),
  17259. weight: math.unit(110, "lb"),
  17260. name: "Back",
  17261. image: {
  17262. source: "./media/characters/klay/back.svg",
  17263. extra: 962 / 883
  17264. }
  17265. },
  17266. beans: {
  17267. height: math.unit(1.15, "feet"),
  17268. name: "Beans",
  17269. image: {
  17270. source: "./media/characters/klay/beans.svg"
  17271. }
  17272. },
  17273. },
  17274. [
  17275. {
  17276. name: "Micro",
  17277. height: math.unit(6, "inches")
  17278. },
  17279. {
  17280. name: "Mini",
  17281. height: math.unit(3, "feet")
  17282. },
  17283. {
  17284. name: "Normal",
  17285. height: math.unit(6, "feet"),
  17286. default: true
  17287. },
  17288. {
  17289. name: "Big",
  17290. height: math.unit(25, "feet")
  17291. },
  17292. {
  17293. name: "Macro",
  17294. height: math.unit(100, "feet")
  17295. },
  17296. {
  17297. name: "Megamacro",
  17298. height: math.unit(400, "feet")
  17299. },
  17300. ]
  17301. ))
  17302. characterMakers.push(() => makeCharacter(
  17303. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17304. {
  17305. front: {
  17306. height: math.unit(6, "feet"),
  17307. weight: math.unit(160, "lb"),
  17308. name: "Front",
  17309. image: {
  17310. source: "./media/characters/marcus/front.svg",
  17311. extra: 734 / 676,
  17312. bottom: 0.03
  17313. }
  17314. },
  17315. },
  17316. [
  17317. {
  17318. name: "Little",
  17319. height: math.unit(6, "feet")
  17320. },
  17321. {
  17322. name: "Normal",
  17323. height: math.unit(110, "feet"),
  17324. default: true
  17325. },
  17326. {
  17327. name: "Macro",
  17328. height: math.unit(250, "feet")
  17329. },
  17330. {
  17331. name: "Megamacro",
  17332. height: math.unit(1000, "feet")
  17333. },
  17334. ]
  17335. ))
  17336. characterMakers.push(() => makeCharacter(
  17337. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17338. {
  17339. front: {
  17340. height: math.unit(7, "feet"),
  17341. weight: math.unit(275, "lb"),
  17342. name: "Front",
  17343. image: {
  17344. source: "./media/characters/claude-delroute/front.svg",
  17345. extra: 230 / 214,
  17346. bottom: 0.007
  17347. }
  17348. },
  17349. side: {
  17350. height: math.unit(7, "feet"),
  17351. weight: math.unit(275, "lb"),
  17352. name: "Side",
  17353. image: {
  17354. source: "./media/characters/claude-delroute/side.svg",
  17355. extra: 222 / 214,
  17356. bottom: 0.01
  17357. }
  17358. },
  17359. back: {
  17360. height: math.unit(7, "feet"),
  17361. weight: math.unit(275, "lb"),
  17362. name: "Back",
  17363. image: {
  17364. source: "./media/characters/claude-delroute/back.svg",
  17365. extra: 230 / 214,
  17366. bottom: 0.015
  17367. }
  17368. },
  17369. maw: {
  17370. height: math.unit(0.6407, "meters"),
  17371. name: "Maw",
  17372. image: {
  17373. source: "./media/characters/claude-delroute/maw.svg"
  17374. }
  17375. },
  17376. },
  17377. [
  17378. {
  17379. name: "Normal",
  17380. height: math.unit(7, "feet"),
  17381. default: true
  17382. },
  17383. {
  17384. name: "Lorge",
  17385. height: math.unit(20, "feet")
  17386. },
  17387. ]
  17388. ))
  17389. characterMakers.push(() => makeCharacter(
  17390. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17391. {
  17392. front: {
  17393. height: math.unit(8 + 4 / 12, "feet"),
  17394. weight: math.unit(600, "lb"),
  17395. name: "Front",
  17396. image: {
  17397. source: "./media/characters/dragonien/front.svg",
  17398. extra: 100 / 94,
  17399. bottom: 3.3 / 103.3445
  17400. }
  17401. },
  17402. back: {
  17403. height: math.unit(8 + 4 / 12, "feet"),
  17404. weight: math.unit(600, "lb"),
  17405. name: "Back",
  17406. image: {
  17407. source: "./media/characters/dragonien/back.svg",
  17408. extra: 776 / 746,
  17409. bottom: 6.4 / 782.0616
  17410. }
  17411. },
  17412. foot: {
  17413. height: math.unit(1.54, "feet"),
  17414. name: "Foot",
  17415. image: {
  17416. source: "./media/characters/dragonien/foot.svg",
  17417. }
  17418. },
  17419. },
  17420. [
  17421. {
  17422. name: "Normal",
  17423. height: math.unit(8 + 4 / 12, "feet"),
  17424. default: true
  17425. },
  17426. {
  17427. name: "Macro",
  17428. height: math.unit(200, "feet")
  17429. },
  17430. {
  17431. name: "Megamacro",
  17432. height: math.unit(1, "mile")
  17433. },
  17434. {
  17435. name: "Gigamacro",
  17436. height: math.unit(1000, "miles")
  17437. },
  17438. ]
  17439. ))
  17440. characterMakers.push(() => makeCharacter(
  17441. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17442. {
  17443. front: {
  17444. height: math.unit(5 + 2 / 12, "feet"),
  17445. weight: math.unit(110, "lb"),
  17446. name: "Front",
  17447. image: {
  17448. source: "./media/characters/desta/front.svg",
  17449. extra: 767/726,
  17450. bottom: 11.7/779
  17451. }
  17452. },
  17453. back: {
  17454. height: math.unit(5 + 2 / 12, "feet"),
  17455. weight: math.unit(110, "lb"),
  17456. name: "Back",
  17457. image: {
  17458. source: "./media/characters/desta/back.svg",
  17459. extra: 777/728,
  17460. bottom: 6/784
  17461. }
  17462. },
  17463. frontAlt: {
  17464. height: math.unit(5 + 2 / 12, "feet"),
  17465. weight: math.unit(110, "lb"),
  17466. name: "Front",
  17467. image: {
  17468. source: "./media/characters/desta/front-alt.svg",
  17469. extra: 1482 / 1417
  17470. }
  17471. },
  17472. side: {
  17473. height: math.unit(5 + 2 / 12, "feet"),
  17474. weight: math.unit(110, "lb"),
  17475. name: "Side",
  17476. image: {
  17477. source: "./media/characters/desta/side.svg",
  17478. extra: 2579 / 2491,
  17479. bottom: 0.053
  17480. }
  17481. },
  17482. },
  17483. [
  17484. {
  17485. name: "Micro",
  17486. height: math.unit(6, "inches")
  17487. },
  17488. {
  17489. name: "Normal",
  17490. height: math.unit(5 + 2 / 12, "feet"),
  17491. default: true
  17492. },
  17493. {
  17494. name: "Macro",
  17495. height: math.unit(62, "feet")
  17496. },
  17497. {
  17498. name: "Megamacro",
  17499. height: math.unit(1800, "feet")
  17500. },
  17501. ]
  17502. ))
  17503. characterMakers.push(() => makeCharacter(
  17504. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17505. {
  17506. front: {
  17507. height: math.unit(10, "feet"),
  17508. weight: math.unit(700, "lb"),
  17509. name: "Front",
  17510. image: {
  17511. source: "./media/characters/storm-alystar/front.svg",
  17512. extra: 2112 / 1898,
  17513. bottom: 0.034
  17514. }
  17515. },
  17516. },
  17517. [
  17518. {
  17519. name: "Micro",
  17520. height: math.unit(3.5, "inches")
  17521. },
  17522. {
  17523. name: "Normal",
  17524. height: math.unit(10, "feet"),
  17525. default: true
  17526. },
  17527. {
  17528. name: "Macro",
  17529. height: math.unit(400, "feet")
  17530. },
  17531. {
  17532. name: "Deific",
  17533. height: math.unit(60, "miles")
  17534. },
  17535. ]
  17536. ))
  17537. characterMakers.push(() => makeCharacter(
  17538. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17539. {
  17540. front: {
  17541. height: math.unit(2.35, "meters"),
  17542. weight: math.unit(119, "kg"),
  17543. name: "Front",
  17544. image: {
  17545. source: "./media/characters/ilia/front.svg",
  17546. extra: 1285 / 1255,
  17547. bottom: 0.06
  17548. }
  17549. },
  17550. },
  17551. [
  17552. {
  17553. name: "Normal",
  17554. height: math.unit(2.35, "meters")
  17555. },
  17556. {
  17557. name: "Macro",
  17558. height: math.unit(140, "meters"),
  17559. default: true
  17560. },
  17561. {
  17562. name: "Megamacro",
  17563. height: math.unit(100, "miles")
  17564. },
  17565. ]
  17566. ))
  17567. characterMakers.push(() => makeCharacter(
  17568. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17569. {
  17570. front: {
  17571. height: math.unit(6 + 5 / 12, "feet"),
  17572. weight: math.unit(190, "lb"),
  17573. name: "Front",
  17574. image: {
  17575. source: "./media/characters/kingdead/front.svg",
  17576. extra: 1228 / 1177
  17577. }
  17578. },
  17579. },
  17580. [
  17581. {
  17582. name: "Micro",
  17583. height: math.unit(7, "inches")
  17584. },
  17585. {
  17586. name: "Normal",
  17587. height: math.unit(6 + 5 / 12, "feet")
  17588. },
  17589. {
  17590. name: "Macro",
  17591. height: math.unit(150, "feet"),
  17592. default: true
  17593. },
  17594. {
  17595. name: "Megamacro",
  17596. height: math.unit(200, "miles")
  17597. },
  17598. ]
  17599. ))
  17600. characterMakers.push(() => makeCharacter(
  17601. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17602. {
  17603. front: {
  17604. height: math.unit(8, "feet"),
  17605. weight: math.unit(600, "lb"),
  17606. name: "Front",
  17607. image: {
  17608. source: "./media/characters/kyrehx/front.svg",
  17609. extra: 1195 / 1095,
  17610. bottom: 0.034
  17611. }
  17612. },
  17613. },
  17614. [
  17615. {
  17616. name: "Micro",
  17617. height: math.unit(2, "inches")
  17618. },
  17619. {
  17620. name: "Normal",
  17621. height: math.unit(8, "feet"),
  17622. default: true
  17623. },
  17624. {
  17625. name: "Macro",
  17626. height: math.unit(255, "feet")
  17627. },
  17628. ]
  17629. ))
  17630. characterMakers.push(() => makeCharacter(
  17631. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17632. {
  17633. front: {
  17634. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17635. weight: math.unit(184, "lb"),
  17636. name: "Front",
  17637. image: {
  17638. source: "./media/characters/xang/front.svg",
  17639. extra: 845 / 755
  17640. }
  17641. },
  17642. },
  17643. [
  17644. {
  17645. name: "Normal",
  17646. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17647. default: true
  17648. },
  17649. {
  17650. name: "Macro",
  17651. height: math.unit(0.935 * 146, "feet")
  17652. },
  17653. {
  17654. name: "Megamacro",
  17655. height: math.unit(0.935 * 3, "miles")
  17656. },
  17657. ]
  17658. ))
  17659. characterMakers.push(() => makeCharacter(
  17660. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17661. {
  17662. frontDressed: {
  17663. height: math.unit(5 + 7 / 12, "feet"),
  17664. weight: math.unit(140, "lb"),
  17665. name: "Front (Dressed)",
  17666. image: {
  17667. source: "./media/characters/doc-weardno/front-dressed.svg",
  17668. extra: 263 / 234
  17669. }
  17670. },
  17671. backDressed: {
  17672. height: math.unit(5 + 7 / 12, "feet"),
  17673. weight: math.unit(140, "lb"),
  17674. name: "Back (Dressed)",
  17675. image: {
  17676. source: "./media/characters/doc-weardno/back-dressed.svg",
  17677. extra: 266 / 238
  17678. }
  17679. },
  17680. front: {
  17681. height: math.unit(5 + 7 / 12, "feet"),
  17682. weight: math.unit(140, "lb"),
  17683. name: "Front",
  17684. image: {
  17685. source: "./media/characters/doc-weardno/front.svg",
  17686. extra: 254 / 233
  17687. }
  17688. },
  17689. },
  17690. [
  17691. {
  17692. name: "Micro",
  17693. height: math.unit(3, "inches")
  17694. },
  17695. {
  17696. name: "Normal",
  17697. height: math.unit(5 + 7 / 12, "feet"),
  17698. default: true
  17699. },
  17700. {
  17701. name: "Macro",
  17702. height: math.unit(25, "feet")
  17703. },
  17704. {
  17705. name: "Megamacro",
  17706. height: math.unit(2, "miles")
  17707. },
  17708. ]
  17709. ))
  17710. characterMakers.push(() => makeCharacter(
  17711. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17712. {
  17713. front: {
  17714. height: math.unit(6 + 2 / 12, "feet"),
  17715. weight: math.unit(153, "lb"),
  17716. name: "Front",
  17717. image: {
  17718. source: "./media/characters/seth-whilst/front.svg",
  17719. bottom: 0.07
  17720. }
  17721. },
  17722. },
  17723. [
  17724. {
  17725. name: "Micro",
  17726. height: math.unit(5, "inches")
  17727. },
  17728. {
  17729. name: "Normal",
  17730. height: math.unit(6 + 2 / 12, "feet"),
  17731. default: true
  17732. },
  17733. ]
  17734. ))
  17735. characterMakers.push(() => makeCharacter(
  17736. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17737. {
  17738. front: {
  17739. height: math.unit(3, "inches"),
  17740. weight: math.unit(8, "grams"),
  17741. name: "Front",
  17742. image: {
  17743. source: "./media/characters/pocket-jabari/front.svg",
  17744. extra: 1024 / 974,
  17745. bottom: 0.039
  17746. }
  17747. },
  17748. },
  17749. [
  17750. {
  17751. name: "Minimicro",
  17752. height: math.unit(8, "mm")
  17753. },
  17754. {
  17755. name: "Micro",
  17756. height: math.unit(3, "inches"),
  17757. default: true
  17758. },
  17759. {
  17760. name: "Normal",
  17761. height: math.unit(3, "feet")
  17762. },
  17763. ]
  17764. ))
  17765. characterMakers.push(() => makeCharacter(
  17766. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17767. {
  17768. front: {
  17769. height: math.unit(15, "feet"),
  17770. weight: math.unit(3280, "lb"),
  17771. name: "Front",
  17772. image: {
  17773. source: "./media/characters/sapphy/front.svg",
  17774. extra: 671 / 577,
  17775. bottom: 0.085
  17776. }
  17777. },
  17778. back: {
  17779. height: math.unit(15, "feet"),
  17780. weight: math.unit(3280, "lb"),
  17781. name: "Back",
  17782. image: {
  17783. source: "./media/characters/sapphy/back.svg",
  17784. extra: 631 / 607,
  17785. bottom: 0.045
  17786. }
  17787. },
  17788. },
  17789. [
  17790. {
  17791. name: "Normal",
  17792. height: math.unit(15, "feet")
  17793. },
  17794. {
  17795. name: "Casual Macro",
  17796. height: math.unit(120, "feet")
  17797. },
  17798. {
  17799. name: "Macro",
  17800. height: math.unit(2150, "feet"),
  17801. default: true
  17802. },
  17803. {
  17804. name: "Megamacro",
  17805. height: math.unit(8, "miles")
  17806. },
  17807. {
  17808. name: "Galaxy Mom",
  17809. height: math.unit(6, "megalightyears")
  17810. },
  17811. ]
  17812. ))
  17813. characterMakers.push(() => makeCharacter(
  17814. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17815. {
  17816. front: {
  17817. height: math.unit(6, "feet"),
  17818. weight: math.unit(170, "lb"),
  17819. name: "Front",
  17820. image: {
  17821. source: "./media/characters/kiro/front.svg",
  17822. extra: 1064 / 1012,
  17823. bottom: 0.052
  17824. }
  17825. },
  17826. },
  17827. [
  17828. {
  17829. name: "Micro",
  17830. height: math.unit(6, "inches")
  17831. },
  17832. {
  17833. name: "Normal",
  17834. height: math.unit(6, "feet"),
  17835. default: true
  17836. },
  17837. {
  17838. name: "Macro",
  17839. height: math.unit(72, "feet")
  17840. },
  17841. ]
  17842. ))
  17843. characterMakers.push(() => makeCharacter(
  17844. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17845. {
  17846. front: {
  17847. height: math.unit(5 + 9 / 12, "feet"),
  17848. weight: math.unit(175, "lb"),
  17849. name: "Front",
  17850. image: {
  17851. source: "./media/characters/irishfox/front.svg",
  17852. extra: 1912 / 1680,
  17853. bottom: 0.02
  17854. }
  17855. },
  17856. },
  17857. [
  17858. {
  17859. name: "Nano",
  17860. height: math.unit(1, "mm")
  17861. },
  17862. {
  17863. name: "Micro",
  17864. height: math.unit(2, "inches")
  17865. },
  17866. {
  17867. name: "Normal",
  17868. height: math.unit(5 + 9 / 12, "feet"),
  17869. default: true
  17870. },
  17871. {
  17872. name: "Macro",
  17873. height: math.unit(45, "feet")
  17874. },
  17875. ]
  17876. ))
  17877. characterMakers.push(() => makeCharacter(
  17878. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  17879. {
  17880. front: {
  17881. height: math.unit(6 + 1 / 12, "feet"),
  17882. weight: math.unit(150, "lb"),
  17883. name: "Front",
  17884. image: {
  17885. source: "./media/characters/aronai-sieyes/front.svg",
  17886. extra: 1556 / 1480,
  17887. bottom: 0.015
  17888. }
  17889. },
  17890. side: {
  17891. height: math.unit(6 + 1 / 12, "feet"),
  17892. weight: math.unit(150, "lb"),
  17893. name: "Side",
  17894. image: {
  17895. source: "./media/characters/aronai-sieyes/side.svg",
  17896. extra: 1433 / 1390,
  17897. bottom: 0.0393
  17898. }
  17899. },
  17900. back: {
  17901. height: math.unit(6 + 1 / 12, "feet"),
  17902. weight: math.unit(150, "lb"),
  17903. name: "Back",
  17904. image: {
  17905. source: "./media/characters/aronai-sieyes/back.svg",
  17906. extra: 1544 / 1494,
  17907. bottom: 0.02
  17908. }
  17909. },
  17910. frontClothed: {
  17911. height: math.unit(6 + 1 / 12, "feet"),
  17912. weight: math.unit(150, "lb"),
  17913. name: "Front (Clothed)",
  17914. image: {
  17915. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17916. extra: 1582 / 1527
  17917. }
  17918. },
  17919. feral: {
  17920. height: math.unit(18, "feet"),
  17921. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17922. name: "Feral",
  17923. image: {
  17924. source: "./media/characters/aronai-sieyes/feral.svg",
  17925. extra: 1530 / 1240,
  17926. bottom: 0.035
  17927. }
  17928. },
  17929. },
  17930. [
  17931. {
  17932. name: "Micro",
  17933. height: math.unit(2, "inches")
  17934. },
  17935. {
  17936. name: "Normal",
  17937. height: math.unit(6 + 1 / 12, "feet"),
  17938. default: true
  17939. }
  17940. ]
  17941. ))
  17942. characterMakers.push(() => makeCharacter(
  17943. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  17944. {
  17945. front: {
  17946. height: math.unit(12, "feet"),
  17947. weight: math.unit(410, "kg"),
  17948. name: "Front",
  17949. image: {
  17950. source: "./media/characters/xuna/front.svg",
  17951. extra: 2184 / 1980
  17952. }
  17953. },
  17954. side: {
  17955. height: math.unit(12, "feet"),
  17956. weight: math.unit(410, "kg"),
  17957. name: "Side",
  17958. image: {
  17959. source: "./media/characters/xuna/side.svg",
  17960. extra: 2184 / 1980
  17961. }
  17962. },
  17963. back: {
  17964. height: math.unit(12, "feet"),
  17965. weight: math.unit(410, "kg"),
  17966. name: "Back",
  17967. image: {
  17968. source: "./media/characters/xuna/back.svg",
  17969. extra: 2184 / 1980
  17970. }
  17971. },
  17972. },
  17973. [
  17974. {
  17975. name: "Nano glow",
  17976. height: math.unit(10, "nm")
  17977. },
  17978. {
  17979. name: "Micro floof",
  17980. height: math.unit(0.3, "m")
  17981. },
  17982. {
  17983. name: "Huggable softy boi",
  17984. height: math.unit(3.6576, "m"),
  17985. default: true
  17986. },
  17987. {
  17988. name: "Admirable floof",
  17989. height: math.unit(80, "meters")
  17990. },
  17991. {
  17992. name: "Gentle macro",
  17993. height: math.unit(300, "meters")
  17994. },
  17995. {
  17996. name: "Very careful floof",
  17997. height: math.unit(3200, "meters")
  17998. },
  17999. {
  18000. name: "The mega floof",
  18001. height: math.unit(36000, "meters")
  18002. },
  18003. {
  18004. name: "Giga-fur-Wicker",
  18005. height: math.unit(4800000, "meters")
  18006. },
  18007. {
  18008. name: "Licky world",
  18009. height: math.unit(20000000, "meters")
  18010. },
  18011. {
  18012. name: "Floofy cyan sun",
  18013. height: math.unit(1500000000, "meters")
  18014. },
  18015. {
  18016. name: "Milky Wicker",
  18017. height: math.unit(1000000000000000000000, "meters")
  18018. },
  18019. {
  18020. name: "The observing Wicker",
  18021. height: math.unit(999999999999999999999999999, "meters")
  18022. },
  18023. ]
  18024. ))
  18025. characterMakers.push(() => makeCharacter(
  18026. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18027. {
  18028. front: {
  18029. height: math.unit(5 + 9 / 12, "feet"),
  18030. weight: math.unit(150, "lb"),
  18031. name: "Front",
  18032. image: {
  18033. source: "./media/characters/arokha-sieyes/front.svg",
  18034. extra: 1425 / 1284,
  18035. bottom: 0.05
  18036. }
  18037. },
  18038. },
  18039. [
  18040. {
  18041. name: "Normal",
  18042. height: math.unit(5 + 9 / 12, "feet")
  18043. },
  18044. {
  18045. name: "Macro",
  18046. height: math.unit(30, "meters"),
  18047. default: true
  18048. },
  18049. ]
  18050. ))
  18051. characterMakers.push(() => makeCharacter(
  18052. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18053. {
  18054. front: {
  18055. height: math.unit(6, "feet"),
  18056. weight: math.unit(180, "lb"),
  18057. name: "Front",
  18058. image: {
  18059. source: "./media/characters/arokh-sieyes/front.svg",
  18060. extra: 1830 / 1769,
  18061. bottom: 0.01
  18062. }
  18063. },
  18064. },
  18065. [
  18066. {
  18067. name: "Normal",
  18068. height: math.unit(6, "feet")
  18069. },
  18070. {
  18071. name: "Macro",
  18072. height: math.unit(30, "meters"),
  18073. default: true
  18074. },
  18075. ]
  18076. ))
  18077. characterMakers.push(() => makeCharacter(
  18078. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18079. {
  18080. side: {
  18081. height: math.unit(13 + 1 / 12, "feet"),
  18082. weight: math.unit(8.5, "tonnes"),
  18083. name: "Side",
  18084. image: {
  18085. source: "./media/characters/goldeneye/side.svg",
  18086. extra: 1182 / 778,
  18087. bottom: 0.067
  18088. }
  18089. },
  18090. paw: {
  18091. height: math.unit(3.4, "feet"),
  18092. name: "Paw",
  18093. image: {
  18094. source: "./media/characters/goldeneye/paw.svg"
  18095. }
  18096. },
  18097. },
  18098. [
  18099. {
  18100. name: "Normal",
  18101. height: math.unit(13 + 1 / 12, "feet"),
  18102. default: true
  18103. },
  18104. ]
  18105. ))
  18106. characterMakers.push(() => makeCharacter(
  18107. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18108. {
  18109. front: {
  18110. height: math.unit(6 + 1 / 12, "feet"),
  18111. weight: math.unit(210, "lb"),
  18112. name: "Front",
  18113. image: {
  18114. source: "./media/characters/leonardo-lycheborne/front.svg",
  18115. extra: 390 / 365,
  18116. bottom: 0.032
  18117. }
  18118. },
  18119. side: {
  18120. height: math.unit(6 + 1 / 12, "feet"),
  18121. weight: math.unit(210, "lb"),
  18122. name: "Side",
  18123. image: {
  18124. source: "./media/characters/leonardo-lycheborne/side.svg",
  18125. extra: 390 / 365,
  18126. bottom: 0.005
  18127. }
  18128. },
  18129. back: {
  18130. height: math.unit(6 + 1 / 12, "feet"),
  18131. weight: math.unit(210, "lb"),
  18132. name: "Back",
  18133. image: {
  18134. source: "./media/characters/leonardo-lycheborne/back.svg",
  18135. extra: 392 / 366,
  18136. bottom: 0.01
  18137. }
  18138. },
  18139. hand: {
  18140. height: math.unit(1.08, "feet"),
  18141. name: "Hand",
  18142. image: {
  18143. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18144. }
  18145. },
  18146. foot: {
  18147. height: math.unit(1.32, "feet"),
  18148. name: "Foot",
  18149. image: {
  18150. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18151. }
  18152. },
  18153. were: {
  18154. height: math.unit(20, "feet"),
  18155. weight: math.unit(7800, "lb"),
  18156. name: "Were",
  18157. image: {
  18158. source: "./media/characters/leonardo-lycheborne/were.svg",
  18159. extra: 308 / 294,
  18160. bottom: 0.048
  18161. }
  18162. },
  18163. feral: {
  18164. height: math.unit(7.5, "feet"),
  18165. weight: math.unit(600, "lb"),
  18166. name: "Feral",
  18167. image: {
  18168. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18169. extra: 210 / 186,
  18170. bottom: 0.108
  18171. }
  18172. },
  18173. taur: {
  18174. height: math.unit(11, "feet"),
  18175. weight: math.unit(3300, "lb"),
  18176. name: "Taur",
  18177. image: {
  18178. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18179. extra: 320 / 303,
  18180. bottom: 0.025
  18181. }
  18182. },
  18183. barghest: {
  18184. height: math.unit(11, "feet"),
  18185. weight: math.unit(1300, "lb"),
  18186. name: "Barghest",
  18187. image: {
  18188. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18189. extra: 323 / 302,
  18190. bottom: 0.027
  18191. }
  18192. },
  18193. dick: {
  18194. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18195. name: "Dick",
  18196. image: {
  18197. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18198. }
  18199. },
  18200. dickWere: {
  18201. height: math.unit((20) / 3.8, "feet"),
  18202. name: "Dick (Were)",
  18203. image: {
  18204. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18205. }
  18206. },
  18207. },
  18208. [
  18209. {
  18210. name: "Normal",
  18211. height: math.unit(6 + 1 / 12, "feet"),
  18212. default: true
  18213. },
  18214. ]
  18215. ))
  18216. characterMakers.push(() => makeCharacter(
  18217. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18218. {
  18219. front: {
  18220. height: math.unit(10, "feet"),
  18221. weight: math.unit(350, "lb"),
  18222. name: "Front",
  18223. image: {
  18224. source: "./media/characters/jet/front.svg",
  18225. extra: 2050 / 1980,
  18226. bottom: 0.013
  18227. }
  18228. },
  18229. back: {
  18230. height: math.unit(10, "feet"),
  18231. weight: math.unit(350, "lb"),
  18232. name: "Back",
  18233. image: {
  18234. source: "./media/characters/jet/back.svg",
  18235. extra: 2050 / 1980,
  18236. bottom: 0.013
  18237. }
  18238. },
  18239. },
  18240. [
  18241. {
  18242. name: "Micro",
  18243. height: math.unit(6, "inches")
  18244. },
  18245. {
  18246. name: "Normal",
  18247. height: math.unit(10, "feet"),
  18248. default: true
  18249. },
  18250. {
  18251. name: "Macro",
  18252. height: math.unit(100, "feet")
  18253. },
  18254. ]
  18255. ))
  18256. characterMakers.push(() => makeCharacter(
  18257. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18258. {
  18259. front: {
  18260. height: math.unit(15, "feet"),
  18261. weight: math.unit(2800, "lb"),
  18262. name: "Front",
  18263. image: {
  18264. source: "./media/characters/tanarath/front.svg",
  18265. extra: 2392 / 2220,
  18266. bottom: 0.03
  18267. }
  18268. },
  18269. back: {
  18270. height: math.unit(15, "feet"),
  18271. weight: math.unit(2800, "lb"),
  18272. name: "Back",
  18273. image: {
  18274. source: "./media/characters/tanarath/back.svg",
  18275. extra: 2392 / 2220,
  18276. bottom: 0.03
  18277. }
  18278. },
  18279. },
  18280. [
  18281. {
  18282. name: "Normal",
  18283. height: math.unit(15, "feet"),
  18284. default: true
  18285. },
  18286. ]
  18287. ))
  18288. characterMakers.push(() => makeCharacter(
  18289. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18290. {
  18291. front: {
  18292. height: math.unit(7 + 1 / 12, "feet"),
  18293. weight: math.unit(175, "lb"),
  18294. name: "Front",
  18295. image: {
  18296. source: "./media/characters/patty-cattybatty/front.svg",
  18297. extra: 908 / 874,
  18298. bottom: 0.025
  18299. }
  18300. },
  18301. },
  18302. [
  18303. {
  18304. name: "Micro",
  18305. height: math.unit(1, "inch")
  18306. },
  18307. {
  18308. name: "Normal",
  18309. height: math.unit(7 + 1 / 12, "feet")
  18310. },
  18311. {
  18312. name: "Mini Macro",
  18313. height: math.unit(155, "feet")
  18314. },
  18315. {
  18316. name: "Macro",
  18317. height: math.unit(1077, "feet")
  18318. },
  18319. {
  18320. name: "Mega Macro",
  18321. height: math.unit(47650, "feet"),
  18322. default: true
  18323. },
  18324. {
  18325. name: "Giga Macro",
  18326. height: math.unit(440, "miles")
  18327. },
  18328. {
  18329. name: "Tera Macro",
  18330. height: math.unit(8700, "miles")
  18331. },
  18332. {
  18333. name: "Planetary Macro",
  18334. height: math.unit(32700, "miles")
  18335. },
  18336. {
  18337. name: "Solar Macro",
  18338. height: math.unit(550000, "miles")
  18339. },
  18340. {
  18341. name: "Celestial Macro",
  18342. height: math.unit(2.5, "AU")
  18343. },
  18344. ]
  18345. ))
  18346. characterMakers.push(() => makeCharacter(
  18347. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18348. {
  18349. front: {
  18350. height: math.unit(4 + 5 / 12, "feet"),
  18351. weight: math.unit(90, "lb"),
  18352. name: "Front",
  18353. image: {
  18354. source: "./media/characters/cappu/front.svg",
  18355. extra: 1247 / 1152,
  18356. bottom: 0.012
  18357. }
  18358. },
  18359. },
  18360. [
  18361. {
  18362. name: "Normal",
  18363. height: math.unit(4 + 5 / 12, "feet"),
  18364. default: true
  18365. },
  18366. ]
  18367. ))
  18368. characterMakers.push(() => makeCharacter(
  18369. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18370. {
  18371. frontDressed: {
  18372. height: math.unit(70, "cm"),
  18373. weight: math.unit(6, "kg"),
  18374. name: "Front (Dressed)",
  18375. image: {
  18376. source: "./media/characters/sebi/front-dressed.svg",
  18377. extra: 713.5 / 686.5,
  18378. bottom: 0.003
  18379. }
  18380. },
  18381. front: {
  18382. height: math.unit(70, "cm"),
  18383. weight: math.unit(5, "kg"),
  18384. name: "Front",
  18385. image: {
  18386. source: "./media/characters/sebi/front.svg",
  18387. extra: 713.5 / 686.5,
  18388. bottom: 0.003
  18389. }
  18390. }
  18391. },
  18392. [
  18393. {
  18394. name: "Normal",
  18395. height: math.unit(70, "cm"),
  18396. default: true
  18397. },
  18398. {
  18399. name: "Macro",
  18400. height: math.unit(8, "meters")
  18401. },
  18402. ]
  18403. ))
  18404. characterMakers.push(() => makeCharacter(
  18405. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18406. {
  18407. front: {
  18408. height: math.unit(6, "feet"),
  18409. weight: math.unit(150, "lb"),
  18410. name: "Front",
  18411. image: {
  18412. source: "./media/characters/typhek/front.svg",
  18413. extra: 1948 / 1929,
  18414. bottom: 0.025
  18415. }
  18416. },
  18417. side: {
  18418. height: math.unit(6, "feet"),
  18419. weight: math.unit(150, "lb"),
  18420. name: "Side",
  18421. image: {
  18422. source: "./media/characters/typhek/side.svg",
  18423. extra: 2034 / 2010,
  18424. bottom: 0.003
  18425. }
  18426. },
  18427. back: {
  18428. height: math.unit(6, "feet"),
  18429. weight: math.unit(150, "lb"),
  18430. name: "Back",
  18431. image: {
  18432. source: "./media/characters/typhek/back.svg",
  18433. extra: 2005 / 1978,
  18434. bottom: 0.004
  18435. }
  18436. },
  18437. palm: {
  18438. height: math.unit(1.2, "feet"),
  18439. name: "Palm",
  18440. image: {
  18441. source: "./media/characters/typhek/palm.svg"
  18442. }
  18443. },
  18444. fist: {
  18445. height: math.unit(1.1, "feet"),
  18446. name: "Fist",
  18447. image: {
  18448. source: "./media/characters/typhek/fist.svg"
  18449. }
  18450. },
  18451. foot: {
  18452. height: math.unit(1.57, "feet"),
  18453. name: "Foot",
  18454. image: {
  18455. source: "./media/characters/typhek/foot.svg"
  18456. }
  18457. },
  18458. sole: {
  18459. height: math.unit(2.05, "feet"),
  18460. name: "Sole",
  18461. image: {
  18462. source: "./media/characters/typhek/sole.svg"
  18463. }
  18464. },
  18465. },
  18466. [
  18467. {
  18468. name: "Macro",
  18469. height: math.unit(40, "stories"),
  18470. default: true
  18471. },
  18472. {
  18473. name: "Megamacro",
  18474. height: math.unit(1, "mile")
  18475. },
  18476. {
  18477. name: "Gigamacro",
  18478. height: math.unit(4000, "solarradii")
  18479. },
  18480. {
  18481. name: "Universal",
  18482. height: math.unit(1.1, "universes")
  18483. }
  18484. ]
  18485. ))
  18486. characterMakers.push(() => makeCharacter(
  18487. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18488. {
  18489. side: {
  18490. height: math.unit(5 + 7 / 12, "feet"),
  18491. weight: math.unit(150, "lb"),
  18492. name: "Side",
  18493. image: {
  18494. source: "./media/characters/kassy/side.svg",
  18495. extra: 1280 / 1225,
  18496. bottom: 0.002
  18497. }
  18498. },
  18499. front: {
  18500. height: math.unit(5 + 7 / 12, "feet"),
  18501. weight: math.unit(150, "lb"),
  18502. name: "Front",
  18503. image: {
  18504. source: "./media/characters/kassy/front.svg",
  18505. extra: 1280 / 1225,
  18506. bottom: 0.025
  18507. }
  18508. },
  18509. back: {
  18510. height: math.unit(5 + 7 / 12, "feet"),
  18511. weight: math.unit(150, "lb"),
  18512. name: "Back",
  18513. image: {
  18514. source: "./media/characters/kassy/back.svg",
  18515. extra: 1280 / 1225,
  18516. bottom: 0.002
  18517. }
  18518. },
  18519. foot: {
  18520. height: math.unit(1.266, "feet"),
  18521. name: "Foot",
  18522. image: {
  18523. source: "./media/characters/kassy/foot.svg"
  18524. }
  18525. },
  18526. },
  18527. [
  18528. {
  18529. name: "Normal",
  18530. height: math.unit(5 + 7 / 12, "feet")
  18531. },
  18532. {
  18533. name: "Macro",
  18534. height: math.unit(137, "feet"),
  18535. default: true
  18536. },
  18537. {
  18538. name: "Megamacro",
  18539. height: math.unit(1, "mile")
  18540. },
  18541. ]
  18542. ))
  18543. characterMakers.push(() => makeCharacter(
  18544. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18545. {
  18546. front: {
  18547. height: math.unit(6 + 1 / 12, "feet"),
  18548. weight: math.unit(200, "lb"),
  18549. name: "Front",
  18550. image: {
  18551. source: "./media/characters/neil/front.svg",
  18552. extra: 1326 / 1250,
  18553. bottom: 0.023
  18554. }
  18555. },
  18556. },
  18557. [
  18558. {
  18559. name: "Normal",
  18560. height: math.unit(6 + 1 / 12, "feet"),
  18561. default: true
  18562. },
  18563. {
  18564. name: "Macro",
  18565. height: math.unit(200, "feet")
  18566. },
  18567. ]
  18568. ))
  18569. characterMakers.push(() => makeCharacter(
  18570. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18571. {
  18572. front: {
  18573. height: math.unit(5 + 9 / 12, "feet"),
  18574. weight: math.unit(190, "lb"),
  18575. name: "Front",
  18576. image: {
  18577. source: "./media/characters/atticus/front.svg",
  18578. extra: 2934 / 2785,
  18579. bottom: 0.025
  18580. }
  18581. },
  18582. },
  18583. [
  18584. {
  18585. name: "Normal",
  18586. height: math.unit(5 + 9 / 12, "feet"),
  18587. default: true
  18588. },
  18589. {
  18590. name: "Macro",
  18591. height: math.unit(180, "feet")
  18592. },
  18593. ]
  18594. ))
  18595. characterMakers.push(() => makeCharacter(
  18596. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18597. {
  18598. side: {
  18599. height: math.unit(9, "feet"),
  18600. weight: math.unit(650, "lb"),
  18601. name: "Side",
  18602. image: {
  18603. source: "./media/characters/milo/side.svg",
  18604. extra: 2644 / 2310,
  18605. bottom: 0.032
  18606. }
  18607. },
  18608. },
  18609. [
  18610. {
  18611. name: "Normal",
  18612. height: math.unit(9, "feet"),
  18613. default: true
  18614. },
  18615. {
  18616. name: "Macro",
  18617. height: math.unit(300, "feet")
  18618. },
  18619. ]
  18620. ))
  18621. characterMakers.push(() => makeCharacter(
  18622. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18623. {
  18624. side: {
  18625. height: math.unit(8, "meters"),
  18626. weight: math.unit(90000, "kg"),
  18627. name: "Side",
  18628. image: {
  18629. source: "./media/characters/ijzer/side.svg",
  18630. extra: 2756 / 1600,
  18631. bottom: 0.01
  18632. }
  18633. },
  18634. },
  18635. [
  18636. {
  18637. name: "Small",
  18638. height: math.unit(3, "meters")
  18639. },
  18640. {
  18641. name: "Normal",
  18642. height: math.unit(8, "meters"),
  18643. default: true
  18644. },
  18645. {
  18646. name: "Normal+",
  18647. height: math.unit(10, "meters")
  18648. },
  18649. {
  18650. name: "Bigger",
  18651. height: math.unit(24, "meters")
  18652. },
  18653. {
  18654. name: "Huge",
  18655. height: math.unit(80, "meters")
  18656. },
  18657. ]
  18658. ))
  18659. characterMakers.push(() => makeCharacter(
  18660. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18661. {
  18662. front: {
  18663. height: math.unit(6 + 2 / 12, "feet"),
  18664. weight: math.unit(153, "lb"),
  18665. name: "Front",
  18666. image: {
  18667. source: "./media/characters/luca-cervicum/front.svg",
  18668. extra: 370 / 327,
  18669. bottom: 0.015
  18670. }
  18671. },
  18672. back: {
  18673. height: math.unit(6 + 2 / 12, "feet"),
  18674. weight: math.unit(153, "lb"),
  18675. name: "Back",
  18676. image: {
  18677. source: "./media/characters/luca-cervicum/back.svg",
  18678. extra: 367 / 333,
  18679. bottom: 0.005
  18680. }
  18681. },
  18682. frontGear: {
  18683. height: math.unit(6 + 2 / 12, "feet"),
  18684. weight: math.unit(173, "lb"),
  18685. name: "Front (Gear)",
  18686. image: {
  18687. source: "./media/characters/luca-cervicum/front-gear.svg",
  18688. extra: 377 / 333,
  18689. bottom: 0.006
  18690. }
  18691. },
  18692. },
  18693. [
  18694. {
  18695. name: "Normal",
  18696. height: math.unit(6 + 2 / 12, "feet"),
  18697. default: true
  18698. },
  18699. ]
  18700. ))
  18701. characterMakers.push(() => makeCharacter(
  18702. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18703. {
  18704. front: {
  18705. height: math.unit(6 + 1 / 12, "feet"),
  18706. weight: math.unit(304, "lb"),
  18707. name: "Front",
  18708. image: {
  18709. source: "./media/characters/oliver/front.svg",
  18710. extra: 157 / 143,
  18711. bottom: 0.08
  18712. }
  18713. },
  18714. },
  18715. [
  18716. {
  18717. name: "Normal",
  18718. height: math.unit(6 + 1 / 12, "feet"),
  18719. default: true
  18720. },
  18721. ]
  18722. ))
  18723. characterMakers.push(() => makeCharacter(
  18724. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18725. {
  18726. front: {
  18727. height: math.unit(5 + 7 / 12, "feet"),
  18728. weight: math.unit(140, "lb"),
  18729. name: "Front",
  18730. image: {
  18731. source: "./media/characters/shane/front.svg",
  18732. extra: 304 / 289,
  18733. bottom: 0.005
  18734. }
  18735. },
  18736. },
  18737. [
  18738. {
  18739. name: "Normal",
  18740. height: math.unit(5 + 7 / 12, "feet"),
  18741. default: true
  18742. },
  18743. ]
  18744. ))
  18745. characterMakers.push(() => makeCharacter(
  18746. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18747. {
  18748. front: {
  18749. height: math.unit(5 + 9 / 12, "feet"),
  18750. weight: math.unit(178, "lb"),
  18751. name: "Front",
  18752. image: {
  18753. source: "./media/characters/shin/front.svg",
  18754. extra: 159 / 151,
  18755. bottom: 0.015
  18756. }
  18757. },
  18758. },
  18759. [
  18760. {
  18761. name: "Normal",
  18762. height: math.unit(5 + 9 / 12, "feet"),
  18763. default: true
  18764. },
  18765. ]
  18766. ))
  18767. characterMakers.push(() => makeCharacter(
  18768. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18769. {
  18770. front: {
  18771. height: math.unit(5 + 10 / 12, "feet"),
  18772. weight: math.unit(168, "lb"),
  18773. name: "Front",
  18774. image: {
  18775. source: "./media/characters/xerxes/front.svg",
  18776. extra: 282 / 260,
  18777. bottom: 0.045
  18778. }
  18779. },
  18780. },
  18781. [
  18782. {
  18783. name: "Normal",
  18784. height: math.unit(5 + 10 / 12, "feet"),
  18785. default: true
  18786. },
  18787. ]
  18788. ))
  18789. characterMakers.push(() => makeCharacter(
  18790. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18791. {
  18792. front: {
  18793. height: math.unit(6 + 7 / 12, "feet"),
  18794. weight: math.unit(208, "lb"),
  18795. name: "Front",
  18796. image: {
  18797. source: "./media/characters/chaska/front.svg",
  18798. extra: 332 / 319,
  18799. bottom: 0.015
  18800. }
  18801. },
  18802. },
  18803. [
  18804. {
  18805. name: "Normal",
  18806. height: math.unit(6 + 7 / 12, "feet"),
  18807. default: true
  18808. },
  18809. ]
  18810. ))
  18811. characterMakers.push(() => makeCharacter(
  18812. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18813. {
  18814. front: {
  18815. height: math.unit(5 + 8 / 12, "feet"),
  18816. weight: math.unit(208, "lb"),
  18817. name: "Front",
  18818. image: {
  18819. source: "./media/characters/enuk/front.svg",
  18820. extra: 437 / 406,
  18821. bottom: 0.02
  18822. }
  18823. },
  18824. },
  18825. [
  18826. {
  18827. name: "Normal",
  18828. height: math.unit(5 + 8 / 12, "feet"),
  18829. default: true
  18830. },
  18831. ]
  18832. ))
  18833. characterMakers.push(() => makeCharacter(
  18834. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18835. {
  18836. front: {
  18837. height: math.unit(5 + 10 / 12, "feet"),
  18838. weight: math.unit(252, "lb"),
  18839. name: "Front",
  18840. image: {
  18841. source: "./media/characters/bruun/front.svg",
  18842. extra: 197 / 187,
  18843. bottom: 0.012
  18844. }
  18845. },
  18846. },
  18847. [
  18848. {
  18849. name: "Normal",
  18850. height: math.unit(5 + 10 / 12, "feet"),
  18851. default: true
  18852. },
  18853. ]
  18854. ))
  18855. characterMakers.push(() => makeCharacter(
  18856. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18857. {
  18858. front: {
  18859. height: math.unit(6 + 10 / 12, "feet"),
  18860. weight: math.unit(255, "lb"),
  18861. name: "Front",
  18862. image: {
  18863. source: "./media/characters/alexeev/front.svg",
  18864. extra: 213 / 200,
  18865. bottom: 0.05
  18866. }
  18867. },
  18868. },
  18869. [
  18870. {
  18871. name: "Normal",
  18872. height: math.unit(6 + 10 / 12, "feet"),
  18873. default: true
  18874. },
  18875. ]
  18876. ))
  18877. characterMakers.push(() => makeCharacter(
  18878. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  18879. {
  18880. front: {
  18881. height: math.unit(2 + 8 / 12, "feet"),
  18882. weight: math.unit(22, "lb"),
  18883. name: "Front",
  18884. image: {
  18885. source: "./media/characters/evelyn/front.svg",
  18886. extra: 208 / 180
  18887. }
  18888. },
  18889. },
  18890. [
  18891. {
  18892. name: "Normal",
  18893. height: math.unit(2 + 8 / 12, "feet"),
  18894. default: true
  18895. },
  18896. ]
  18897. ))
  18898. characterMakers.push(() => makeCharacter(
  18899. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  18900. {
  18901. front: {
  18902. height: math.unit(5 + 9 / 12, "feet"),
  18903. weight: math.unit(139, "lb"),
  18904. name: "Front",
  18905. image: {
  18906. source: "./media/characters/inca/front.svg",
  18907. extra: 294 / 291,
  18908. bottom: 0.03
  18909. }
  18910. },
  18911. },
  18912. [
  18913. {
  18914. name: "Normal",
  18915. height: math.unit(5 + 9 / 12, "feet"),
  18916. default: true
  18917. },
  18918. ]
  18919. ))
  18920. characterMakers.push(() => makeCharacter(
  18921. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  18922. {
  18923. front: {
  18924. height: math.unit(5 + 1 / 12, "feet"),
  18925. weight: math.unit(84, "lb"),
  18926. name: "Front",
  18927. image: {
  18928. source: "./media/characters/magdalene/front.svg",
  18929. extra: 293 / 273
  18930. }
  18931. },
  18932. },
  18933. [
  18934. {
  18935. name: "Normal",
  18936. height: math.unit(5 + 1 / 12, "feet"),
  18937. default: true
  18938. },
  18939. ]
  18940. ))
  18941. characterMakers.push(() => makeCharacter(
  18942. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  18943. {
  18944. front: {
  18945. height: math.unit(6 + 3 / 12, "feet"),
  18946. weight: math.unit(185, "lb"),
  18947. name: "Front",
  18948. image: {
  18949. source: "./media/characters/mera/front.svg",
  18950. extra: 291 / 277,
  18951. bottom: 0.03
  18952. }
  18953. },
  18954. },
  18955. [
  18956. {
  18957. name: "Normal",
  18958. height: math.unit(6 + 3 / 12, "feet"),
  18959. default: true
  18960. },
  18961. ]
  18962. ))
  18963. characterMakers.push(() => makeCharacter(
  18964. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  18965. {
  18966. front: {
  18967. height: math.unit(6 + 7 / 12, "feet"),
  18968. weight: math.unit(160, "lb"),
  18969. name: "Front",
  18970. image: {
  18971. source: "./media/characters/ceres/front.svg",
  18972. extra: 1023 / 950,
  18973. bottom: 0.027
  18974. }
  18975. },
  18976. back: {
  18977. height: math.unit(6 + 7 / 12, "feet"),
  18978. weight: math.unit(160, "lb"),
  18979. name: "Back",
  18980. image: {
  18981. source: "./media/characters/ceres/back.svg",
  18982. extra: 1023 / 950
  18983. }
  18984. },
  18985. },
  18986. [
  18987. {
  18988. name: "Normal",
  18989. height: math.unit(6 + 7 / 12, "feet"),
  18990. default: true
  18991. },
  18992. ]
  18993. ))
  18994. characterMakers.push(() => makeCharacter(
  18995. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  18996. {
  18997. front: {
  18998. height: math.unit(5 + 10 / 12, "feet"),
  18999. weight: math.unit(150, "lb"),
  19000. name: "Front",
  19001. image: {
  19002. source: "./media/characters/kris/front.svg",
  19003. extra: 885 / 803,
  19004. bottom: 0.03
  19005. }
  19006. },
  19007. },
  19008. [
  19009. {
  19010. name: "Normal",
  19011. height: math.unit(5 + 10 / 12, "feet"),
  19012. default: true
  19013. },
  19014. ]
  19015. ))
  19016. characterMakers.push(() => makeCharacter(
  19017. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19018. {
  19019. front: {
  19020. height: math.unit(7, "feet"),
  19021. weight: math.unit(120, "kg"),
  19022. name: "Front",
  19023. image: {
  19024. source: "./media/characters/taluthus/front.svg",
  19025. extra: 903 / 833,
  19026. bottom: 0.015
  19027. }
  19028. },
  19029. },
  19030. [
  19031. {
  19032. name: "Normal",
  19033. height: math.unit(7, "feet"),
  19034. default: true
  19035. },
  19036. {
  19037. name: "Macro",
  19038. height: math.unit(300, "feet")
  19039. },
  19040. ]
  19041. ))
  19042. characterMakers.push(() => makeCharacter(
  19043. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19044. {
  19045. front: {
  19046. height: math.unit(5 + 9 / 12, "feet"),
  19047. weight: math.unit(145, "lb"),
  19048. name: "Front",
  19049. image: {
  19050. source: "./media/characters/dawn/front.svg",
  19051. extra: 2094 / 2016,
  19052. bottom: 0.025
  19053. }
  19054. },
  19055. back: {
  19056. height: math.unit(5 + 9 / 12, "feet"),
  19057. weight: math.unit(160, "lb"),
  19058. name: "Back",
  19059. image: {
  19060. source: "./media/characters/dawn/back.svg",
  19061. extra: 2112 / 2080,
  19062. bottom: 0.005
  19063. }
  19064. },
  19065. },
  19066. [
  19067. {
  19068. name: "Normal",
  19069. height: math.unit(6 + 7 / 12, "feet"),
  19070. default: true
  19071. },
  19072. ]
  19073. ))
  19074. characterMakers.push(() => makeCharacter(
  19075. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19076. {
  19077. anthro: {
  19078. height: math.unit(8 + 3 / 12, "feet"),
  19079. weight: math.unit(450, "lb"),
  19080. name: "Anthro",
  19081. image: {
  19082. source: "./media/characters/arador/anthro.svg",
  19083. extra: 1835 / 1718,
  19084. bottom: 0.025
  19085. }
  19086. },
  19087. feral: {
  19088. height: math.unit(4, "feet"),
  19089. weight: math.unit(200, "lb"),
  19090. name: "Feral",
  19091. image: {
  19092. source: "./media/characters/arador/feral.svg",
  19093. extra: 1683 / 1514,
  19094. bottom: 0.07
  19095. }
  19096. },
  19097. },
  19098. [
  19099. {
  19100. name: "Normal",
  19101. height: math.unit(8 + 3 / 12, "feet")
  19102. },
  19103. {
  19104. name: "Macro",
  19105. height: math.unit(82.5, "feet"),
  19106. default: true
  19107. },
  19108. ]
  19109. ))
  19110. characterMakers.push(() => makeCharacter(
  19111. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19112. {
  19113. front: {
  19114. height: math.unit(5 + 10 / 12, "feet"),
  19115. weight: math.unit(125, "lb"),
  19116. name: "Front",
  19117. image: {
  19118. source: "./media/characters/dharsi/front.svg",
  19119. extra: 716 / 630,
  19120. bottom: 0.035
  19121. }
  19122. },
  19123. },
  19124. [
  19125. {
  19126. name: "Nano",
  19127. height: math.unit(100, "nm")
  19128. },
  19129. {
  19130. name: "Micro",
  19131. height: math.unit(2, "inches")
  19132. },
  19133. {
  19134. name: "Normal",
  19135. height: math.unit(5 + 10 / 12, "feet"),
  19136. default: true
  19137. },
  19138. {
  19139. name: "Macro",
  19140. height: math.unit(1000, "feet")
  19141. },
  19142. {
  19143. name: "Megamacro",
  19144. height: math.unit(10, "miles")
  19145. },
  19146. {
  19147. name: "Gigamacro",
  19148. height: math.unit(3000, "miles")
  19149. },
  19150. {
  19151. name: "Teramacro",
  19152. height: math.unit(500000, "miles")
  19153. },
  19154. {
  19155. name: "Teramacro+",
  19156. height: math.unit(30, "galaxies")
  19157. },
  19158. ]
  19159. ))
  19160. characterMakers.push(() => makeCharacter(
  19161. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19162. {
  19163. front: {
  19164. height: math.unit(6, "feet"),
  19165. weight: math.unit(150, "lb"),
  19166. name: "Front",
  19167. image: {
  19168. source: "./media/characters/deathy/front.svg",
  19169. extra: 1552 / 1463,
  19170. bottom: 0.025
  19171. }
  19172. },
  19173. side: {
  19174. height: math.unit(6, "feet"),
  19175. weight: math.unit(150, "lb"),
  19176. name: "Side",
  19177. image: {
  19178. source: "./media/characters/deathy/side.svg",
  19179. extra: 1604 / 1455,
  19180. bottom: 0.025
  19181. }
  19182. },
  19183. back: {
  19184. height: math.unit(6, "feet"),
  19185. weight: math.unit(150, "lb"),
  19186. name: "Back",
  19187. image: {
  19188. source: "./media/characters/deathy/back.svg",
  19189. extra: 1580 / 1463,
  19190. bottom: 0.005
  19191. }
  19192. },
  19193. },
  19194. [
  19195. {
  19196. name: "Micro",
  19197. height: math.unit(5, "millimeters")
  19198. },
  19199. {
  19200. name: "Normal",
  19201. height: math.unit(6 + 5 / 12, "feet"),
  19202. default: true
  19203. },
  19204. ]
  19205. ))
  19206. characterMakers.push(() => makeCharacter(
  19207. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19208. {
  19209. front: {
  19210. height: math.unit(16, "feet"),
  19211. weight: math.unit(4000, "lb"),
  19212. name: "Front",
  19213. image: {
  19214. source: "./media/characters/juniper/front.svg",
  19215. bottom: 0.04
  19216. }
  19217. },
  19218. },
  19219. [
  19220. {
  19221. name: "Normal",
  19222. height: math.unit(16, "feet"),
  19223. default: true
  19224. },
  19225. ]
  19226. ))
  19227. characterMakers.push(() => makeCharacter(
  19228. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19229. {
  19230. front: {
  19231. height: math.unit(6, "feet"),
  19232. weight: math.unit(150, "lb"),
  19233. name: "Front",
  19234. image: {
  19235. source: "./media/characters/hipster/front.svg",
  19236. extra: 1312 / 1209,
  19237. bottom: 0.025
  19238. }
  19239. },
  19240. back: {
  19241. height: math.unit(6, "feet"),
  19242. weight: math.unit(150, "lb"),
  19243. name: "Back",
  19244. image: {
  19245. source: "./media/characters/hipster/back.svg",
  19246. extra: 1281 / 1196,
  19247. bottom: 0.01
  19248. }
  19249. },
  19250. },
  19251. [
  19252. {
  19253. name: "Micro",
  19254. height: math.unit(1, "mm")
  19255. },
  19256. {
  19257. name: "Normal",
  19258. height: math.unit(4, "inches"),
  19259. default: true
  19260. },
  19261. {
  19262. name: "Macro",
  19263. height: math.unit(500, "feet")
  19264. },
  19265. {
  19266. name: "Megamacro",
  19267. height: math.unit(1000, "miles")
  19268. },
  19269. ]
  19270. ))
  19271. characterMakers.push(() => makeCharacter(
  19272. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19273. {
  19274. front: {
  19275. height: math.unit(6, "feet"),
  19276. weight: math.unit(150, "lb"),
  19277. name: "Front",
  19278. image: {
  19279. source: "./media/characters/tendirmuldr/front.svg",
  19280. extra: 1878 / 1772,
  19281. bottom: 0.015
  19282. }
  19283. },
  19284. },
  19285. [
  19286. {
  19287. name: "Megamacro",
  19288. height: math.unit(1500, "miles"),
  19289. default: true
  19290. },
  19291. ]
  19292. ))
  19293. characterMakers.push(() => makeCharacter(
  19294. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19295. {
  19296. front: {
  19297. height: math.unit(14, "feet"),
  19298. weight: math.unit(12000, "lb"),
  19299. name: "Front",
  19300. image: {
  19301. source: "./media/characters/mort/front.svg",
  19302. extra: 365 / 318,
  19303. bottom: 0.01
  19304. }
  19305. },
  19306. side: {
  19307. height: math.unit(14, "feet"),
  19308. weight: math.unit(12000, "lb"),
  19309. name: "Side",
  19310. image: {
  19311. source: "./media/characters/mort/side.svg",
  19312. extra: 365 / 318,
  19313. bottom: 0.052
  19314. },
  19315. default: true
  19316. },
  19317. back: {
  19318. height: math.unit(14, "feet"),
  19319. weight: math.unit(12000, "lb"),
  19320. name: "Back",
  19321. image: {
  19322. source: "./media/characters/mort/back.svg",
  19323. extra: 371 / 332,
  19324. bottom: 0.18
  19325. }
  19326. },
  19327. },
  19328. [
  19329. {
  19330. name: "Normal",
  19331. height: math.unit(14, "feet"),
  19332. default: true
  19333. },
  19334. ]
  19335. ))
  19336. characterMakers.push(() => makeCharacter(
  19337. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19338. {
  19339. front: {
  19340. height: math.unit(8, "feet"),
  19341. weight: math.unit(1, "ton"),
  19342. name: "Front",
  19343. image: {
  19344. source: "./media/characters/lycoa/front.svg",
  19345. extra: 1875 / 1789,
  19346. bottom: 0.022
  19347. }
  19348. },
  19349. back: {
  19350. height: math.unit(8, "feet"),
  19351. weight: math.unit(1, "ton"),
  19352. name: "Back",
  19353. image: {
  19354. source: "./media/characters/lycoa/back.svg",
  19355. extra: 1835 / 1781,
  19356. bottom: 0.03
  19357. }
  19358. },
  19359. head: {
  19360. height: math.unit(2.1, "feet"),
  19361. name: "Head",
  19362. image: {
  19363. source: "./media/characters/lycoa/head.svg"
  19364. }
  19365. },
  19366. tailmaw: {
  19367. height: math.unit(1.9, "feet"),
  19368. name: "Tailmaw",
  19369. image: {
  19370. source: "./media/characters/lycoa/tailmaw.svg"
  19371. }
  19372. },
  19373. tentacles: {
  19374. height: math.unit(2.1, "feet"),
  19375. name: "Tentacles",
  19376. image: {
  19377. source: "./media/characters/lycoa/tentacles.svg"
  19378. }
  19379. },
  19380. dick: {
  19381. height: math.unit(1.73, "feet"),
  19382. name: "Dick",
  19383. image: {
  19384. source: "./media/characters/lycoa/dick.svg"
  19385. }
  19386. },
  19387. },
  19388. [
  19389. {
  19390. name: "Normal",
  19391. height: math.unit(8, "feet"),
  19392. default: true
  19393. },
  19394. {
  19395. name: "Macro",
  19396. height: math.unit(30, "feet")
  19397. },
  19398. ]
  19399. ))
  19400. characterMakers.push(() => makeCharacter(
  19401. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19402. {
  19403. front: {
  19404. height: math.unit(4 + 2 / 12, "feet"),
  19405. weight: math.unit(70, "lb"),
  19406. name: "Front",
  19407. image: {
  19408. source: "./media/characters/naldara/front.svg",
  19409. extra: 841 / 720,
  19410. bottom: 0.04
  19411. }
  19412. },
  19413. naga: {
  19414. height: math.unit(23, "feet"),
  19415. weight: math.unit(15000, "kg"),
  19416. name: "Naga",
  19417. image: {
  19418. source: "./media/characters/naldara/naga.svg",
  19419. extra: 3290/2959,
  19420. bottom: 124/3432
  19421. }
  19422. },
  19423. },
  19424. [
  19425. {
  19426. name: "Normal",
  19427. height: math.unit(4 + 2 / 12, "feet"),
  19428. default: true
  19429. },
  19430. ]
  19431. ))
  19432. characterMakers.push(() => makeCharacter(
  19433. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19434. {
  19435. front: {
  19436. height: math.unit(13 + 7 / 12, "feet"),
  19437. weight: math.unit(1500, "lb"),
  19438. name: "Front",
  19439. image: {
  19440. source: "./media/characters/briar/front.svg",
  19441. extra: 626 / 596,
  19442. bottom: 0.08
  19443. }
  19444. },
  19445. },
  19446. [
  19447. {
  19448. name: "Normal",
  19449. height: math.unit(13 + 7 / 12, "feet"),
  19450. default: true
  19451. },
  19452. ]
  19453. ))
  19454. characterMakers.push(() => makeCharacter(
  19455. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19456. {
  19457. side: {
  19458. height: math.unit(10, "feet"),
  19459. weight: math.unit(500, "lb"),
  19460. name: "Side",
  19461. image: {
  19462. source: "./media/characters/vanguard/side.svg",
  19463. extra: 502 / 425,
  19464. bottom: 0.087
  19465. }
  19466. },
  19467. },
  19468. [
  19469. {
  19470. name: "Normal",
  19471. height: math.unit(10, "feet"),
  19472. default: true
  19473. },
  19474. ]
  19475. ))
  19476. characterMakers.push(() => makeCharacter(
  19477. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19478. {
  19479. front: {
  19480. height: math.unit(7.5, "feet"),
  19481. weight: math.unit(2, "lb"),
  19482. name: "Front",
  19483. image: {
  19484. source: "./media/characters/artemis/front.svg",
  19485. extra: 1192 / 1075,
  19486. bottom: 0.07
  19487. }
  19488. },
  19489. frontNsfw: {
  19490. height: math.unit(7.5, "feet"),
  19491. weight: math.unit(2, "lb"),
  19492. name: "Front (NSFW)",
  19493. image: {
  19494. source: "./media/characters/artemis/front-nsfw.svg",
  19495. extra: 1192 / 1075,
  19496. bottom: 0.07
  19497. }
  19498. },
  19499. frontNsfwer: {
  19500. height: math.unit(7.5, "feet"),
  19501. weight: math.unit(2, "lb"),
  19502. name: "Front (NSFW-er)",
  19503. image: {
  19504. source: "./media/characters/artemis/front-nsfwer.svg",
  19505. extra: 1192 / 1075,
  19506. bottom: 0.07
  19507. }
  19508. },
  19509. side: {
  19510. height: math.unit(7.5, "feet"),
  19511. weight: math.unit(2, "lb"),
  19512. name: "Side",
  19513. image: {
  19514. source: "./media/characters/artemis/side.svg",
  19515. extra: 1192 / 1075,
  19516. bottom: 0.07
  19517. }
  19518. },
  19519. sideNsfw: {
  19520. height: math.unit(7.5, "feet"),
  19521. weight: math.unit(2, "lb"),
  19522. name: "Side (NSFW)",
  19523. image: {
  19524. source: "./media/characters/artemis/side-nsfw.svg",
  19525. extra: 1192 / 1075,
  19526. bottom: 0.07
  19527. }
  19528. },
  19529. sideNsfwer: {
  19530. height: math.unit(7.5, "feet"),
  19531. weight: math.unit(2, "lb"),
  19532. name: "Side (NSFW-er)",
  19533. image: {
  19534. source: "./media/characters/artemis/side-nsfwer.svg",
  19535. extra: 1192 / 1075,
  19536. bottom: 0.07
  19537. }
  19538. },
  19539. maw: {
  19540. height: math.unit(1.1, "feet"),
  19541. name: "Maw",
  19542. image: {
  19543. source: "./media/characters/artemis/maw.svg"
  19544. }
  19545. },
  19546. stomach: {
  19547. height: math.unit(0.95, "feet"),
  19548. name: "Stomach",
  19549. image: {
  19550. source: "./media/characters/artemis/stomach.svg"
  19551. }
  19552. },
  19553. dickCanine: {
  19554. height: math.unit(1, "feet"),
  19555. name: "Dick (Canine)",
  19556. image: {
  19557. source: "./media/characters/artemis/dick-canine.svg"
  19558. }
  19559. },
  19560. dickEquine: {
  19561. height: math.unit(0.85, "feet"),
  19562. name: "Dick (Equine)",
  19563. image: {
  19564. source: "./media/characters/artemis/dick-equine.svg"
  19565. }
  19566. },
  19567. dickExotic: {
  19568. height: math.unit(0.85, "feet"),
  19569. name: "Dick (Exotic)",
  19570. image: {
  19571. source: "./media/characters/artemis/dick-exotic.svg"
  19572. }
  19573. },
  19574. },
  19575. [
  19576. {
  19577. name: "Normal",
  19578. height: math.unit(7.5, "feet"),
  19579. default: true
  19580. },
  19581. {
  19582. name: "Enlarged",
  19583. height: math.unit(12, "feet")
  19584. },
  19585. ]
  19586. ))
  19587. characterMakers.push(() => makeCharacter(
  19588. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19589. {
  19590. front: {
  19591. height: math.unit(5 + 3 / 12, "feet"),
  19592. weight: math.unit(160, "lb"),
  19593. name: "Front",
  19594. image: {
  19595. source: "./media/characters/kira/front.svg",
  19596. extra: 906 / 786,
  19597. bottom: 0.01
  19598. }
  19599. },
  19600. back: {
  19601. height: math.unit(5 + 3 / 12, "feet"),
  19602. weight: math.unit(160, "lb"),
  19603. name: "Back",
  19604. image: {
  19605. source: "./media/characters/kira/back.svg",
  19606. extra: 882 / 757,
  19607. bottom: 0.005
  19608. }
  19609. },
  19610. frontDressed: {
  19611. height: math.unit(5 + 3 / 12, "feet"),
  19612. weight: math.unit(160, "lb"),
  19613. name: "Front (Dressed)",
  19614. image: {
  19615. source: "./media/characters/kira/front-dressed.svg",
  19616. extra: 906 / 786,
  19617. bottom: 0.01
  19618. }
  19619. },
  19620. beans: {
  19621. height: math.unit(0.92, "feet"),
  19622. name: "Beans",
  19623. image: {
  19624. source: "./media/characters/kira/beans.svg"
  19625. }
  19626. },
  19627. },
  19628. [
  19629. {
  19630. name: "Normal",
  19631. height: math.unit(5 + 3 / 12, "feet"),
  19632. default: true
  19633. },
  19634. ]
  19635. ))
  19636. characterMakers.push(() => makeCharacter(
  19637. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19638. {
  19639. front: {
  19640. height: math.unit(5 + 4 / 12, "feet"),
  19641. weight: math.unit(145, "lb"),
  19642. name: "Front",
  19643. image: {
  19644. source: "./media/characters/scramble/front.svg",
  19645. extra: 763 / 727,
  19646. bottom: 0.05
  19647. }
  19648. },
  19649. back: {
  19650. height: math.unit(5 + 4 / 12, "feet"),
  19651. weight: math.unit(145, "lb"),
  19652. name: "Back",
  19653. image: {
  19654. source: "./media/characters/scramble/back.svg",
  19655. extra: 826 / 737,
  19656. bottom: 0.002
  19657. }
  19658. },
  19659. },
  19660. [
  19661. {
  19662. name: "Normal",
  19663. height: math.unit(5 + 4 / 12, "feet"),
  19664. default: true
  19665. },
  19666. ]
  19667. ))
  19668. characterMakers.push(() => makeCharacter(
  19669. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19670. {
  19671. side: {
  19672. height: math.unit(6 + 2 / 12, "feet"),
  19673. weight: math.unit(190, "lb"),
  19674. name: "Side",
  19675. image: {
  19676. source: "./media/characters/biscuit/side.svg",
  19677. extra: 858 / 791,
  19678. bottom: 0.044
  19679. }
  19680. },
  19681. },
  19682. [
  19683. {
  19684. name: "Normal",
  19685. height: math.unit(6 + 2 / 12, "feet"),
  19686. default: true
  19687. },
  19688. ]
  19689. ))
  19690. characterMakers.push(() => makeCharacter(
  19691. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19692. {
  19693. front: {
  19694. height: math.unit(5 + 2 / 12, "feet"),
  19695. weight: math.unit(120, "lb"),
  19696. name: "Front",
  19697. image: {
  19698. source: "./media/characters/poffin/front.svg",
  19699. extra: 786 / 680,
  19700. bottom: 0.005
  19701. }
  19702. },
  19703. },
  19704. [
  19705. {
  19706. name: "Normal",
  19707. height: math.unit(5 + 2 / 12, "feet"),
  19708. default: true
  19709. },
  19710. ]
  19711. ))
  19712. characterMakers.push(() => makeCharacter(
  19713. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19714. {
  19715. front: {
  19716. height: math.unit(6 + 3 / 12, "feet"),
  19717. weight: math.unit(519, "lb"),
  19718. name: "Front",
  19719. image: {
  19720. source: "./media/characters/dhari/front.svg",
  19721. extra: 1048 / 946,
  19722. bottom: 0.015
  19723. }
  19724. },
  19725. back: {
  19726. height: math.unit(6 + 3 / 12, "feet"),
  19727. weight: math.unit(519, "lb"),
  19728. name: "Back",
  19729. image: {
  19730. source: "./media/characters/dhari/back.svg",
  19731. extra: 1048 / 931,
  19732. bottom: 0.005
  19733. }
  19734. },
  19735. frontDressed: {
  19736. height: math.unit(6 + 3 / 12, "feet"),
  19737. weight: math.unit(519, "lb"),
  19738. name: "Front (Dressed)",
  19739. image: {
  19740. source: "./media/characters/dhari/front-dressed.svg",
  19741. extra: 1713 / 1546,
  19742. bottom: 0.02
  19743. }
  19744. },
  19745. backDressed: {
  19746. height: math.unit(6 + 3 / 12, "feet"),
  19747. weight: math.unit(519, "lb"),
  19748. name: "Back (Dressed)",
  19749. image: {
  19750. source: "./media/characters/dhari/back-dressed.svg",
  19751. extra: 1699 / 1537,
  19752. bottom: 0.01
  19753. }
  19754. },
  19755. maw: {
  19756. height: math.unit(0.95, "feet"),
  19757. name: "Maw",
  19758. image: {
  19759. source: "./media/characters/dhari/maw.svg"
  19760. }
  19761. },
  19762. wereFront: {
  19763. height: math.unit(12 + 8 / 12, "feet"),
  19764. weight: math.unit(4000, "lb"),
  19765. name: "Front (Were)",
  19766. image: {
  19767. source: "./media/characters/dhari/were-front.svg",
  19768. extra: 1065 / 969,
  19769. bottom: 0.015
  19770. }
  19771. },
  19772. wereBack: {
  19773. height: math.unit(12 + 8 / 12, "feet"),
  19774. weight: math.unit(4000, "lb"),
  19775. name: "Back (Were)",
  19776. image: {
  19777. source: "./media/characters/dhari/were-back.svg",
  19778. extra: 1065 / 969,
  19779. bottom: 0.012
  19780. }
  19781. },
  19782. wereMaw: {
  19783. height: math.unit(0.625, "meters"),
  19784. name: "Maw (Were)",
  19785. image: {
  19786. source: "./media/characters/dhari/were-maw.svg"
  19787. }
  19788. },
  19789. },
  19790. [
  19791. {
  19792. name: "Normal",
  19793. height: math.unit(6 + 3 / 12, "feet"),
  19794. default: true
  19795. },
  19796. ]
  19797. ))
  19798. characterMakers.push(() => makeCharacter(
  19799. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19800. {
  19801. anthro: {
  19802. height: math.unit(5 + 7 / 12, "feet"),
  19803. weight: math.unit(175, "lb"),
  19804. name: "Anthro",
  19805. image: {
  19806. source: "./media/characters/rena-dyne/anthro.svg",
  19807. extra: 1849 / 1785,
  19808. bottom: 0.005
  19809. }
  19810. },
  19811. taur: {
  19812. height: math.unit(15 + 6 / 12, "feet"),
  19813. weight: math.unit(8000, "lb"),
  19814. name: "Taur",
  19815. image: {
  19816. source: "./media/characters/rena-dyne/taur.svg",
  19817. extra: 2315 / 2234,
  19818. bottom: 0.033
  19819. }
  19820. },
  19821. },
  19822. [
  19823. {
  19824. name: "Normal",
  19825. height: math.unit(5 + 7 / 12, "feet"),
  19826. default: true
  19827. },
  19828. ]
  19829. ))
  19830. characterMakers.push(() => makeCharacter(
  19831. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19832. {
  19833. front: {
  19834. height: math.unit(8, "feet"),
  19835. weight: math.unit(600, "lb"),
  19836. name: "Front",
  19837. image: {
  19838. source: "./media/characters/weremeep/front.svg",
  19839. extra: 967 / 862,
  19840. bottom: 0.01
  19841. }
  19842. },
  19843. },
  19844. [
  19845. {
  19846. name: "Normal",
  19847. height: math.unit(8, "feet"),
  19848. default: true
  19849. },
  19850. {
  19851. name: "Lorg",
  19852. height: math.unit(12, "feet")
  19853. },
  19854. {
  19855. name: "Oh Lawd She Comin'",
  19856. height: math.unit(20, "feet")
  19857. },
  19858. ]
  19859. ))
  19860. characterMakers.push(() => makeCharacter(
  19861. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19862. {
  19863. front: {
  19864. height: math.unit(4, "feet"),
  19865. weight: math.unit(90, "lb"),
  19866. name: "Front",
  19867. image: {
  19868. source: "./media/characters/reza/front.svg",
  19869. extra: 1183 / 1111,
  19870. bottom: 0.017
  19871. }
  19872. },
  19873. back: {
  19874. height: math.unit(4, "feet"),
  19875. weight: math.unit(90, "lb"),
  19876. name: "Back",
  19877. image: {
  19878. source: "./media/characters/reza/back.svg",
  19879. extra: 1183 / 1111,
  19880. bottom: 0.01
  19881. }
  19882. },
  19883. drake: {
  19884. height: math.unit(30, "feet"),
  19885. weight: math.unit(246960, "lb"),
  19886. name: "Drake",
  19887. image: {
  19888. source: "./media/characters/reza/drake.svg",
  19889. extra: 2350 / 2024,
  19890. bottom: 60.7 / 2403
  19891. }
  19892. },
  19893. },
  19894. [
  19895. {
  19896. name: "Normal",
  19897. height: math.unit(4, "feet"),
  19898. default: true
  19899. },
  19900. ]
  19901. ))
  19902. characterMakers.push(() => makeCharacter(
  19903. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  19904. {
  19905. side: {
  19906. height: math.unit(15, "feet"),
  19907. weight: math.unit(14, "tons"),
  19908. name: "Side",
  19909. image: {
  19910. source: "./media/characters/athea/side.svg",
  19911. extra: 960 / 540,
  19912. bottom: 0.003
  19913. }
  19914. },
  19915. sitting: {
  19916. height: math.unit(6 * 2.85, "feet"),
  19917. weight: math.unit(14, "tons"),
  19918. name: "Sitting",
  19919. image: {
  19920. source: "./media/characters/athea/sitting.svg",
  19921. extra: 621 / 581,
  19922. bottom: 0.075
  19923. }
  19924. },
  19925. maw: {
  19926. height: math.unit(7.59498031496063, "feet"),
  19927. name: "Maw",
  19928. image: {
  19929. source: "./media/characters/athea/maw.svg"
  19930. }
  19931. },
  19932. },
  19933. [
  19934. {
  19935. name: "Lap Cat",
  19936. height: math.unit(2.5, "feet")
  19937. },
  19938. {
  19939. name: "Minimacro",
  19940. height: math.unit(15, "feet"),
  19941. default: true
  19942. },
  19943. {
  19944. name: "Macro",
  19945. height: math.unit(120, "feet")
  19946. },
  19947. {
  19948. name: "Macro+",
  19949. height: math.unit(640, "feet")
  19950. },
  19951. {
  19952. name: "Colossus",
  19953. height: math.unit(2.2, "miles")
  19954. },
  19955. ]
  19956. ))
  19957. characterMakers.push(() => makeCharacter(
  19958. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  19959. {
  19960. front: {
  19961. height: math.unit(8 + 8 / 12, "feet"),
  19962. weight: math.unit(130, "kg"),
  19963. name: "Front",
  19964. image: {
  19965. source: "./media/characters/seroko/front.svg",
  19966. extra: 1385 / 1280,
  19967. bottom: 0.025
  19968. }
  19969. },
  19970. back: {
  19971. height: math.unit(8 + 8 / 12, "feet"),
  19972. weight: math.unit(130, "kg"),
  19973. name: "Back",
  19974. image: {
  19975. source: "./media/characters/seroko/back.svg",
  19976. extra: 1369 / 1238,
  19977. bottom: 0.018
  19978. }
  19979. },
  19980. frontDressed: {
  19981. height: math.unit(8 + 8 / 12, "feet"),
  19982. weight: math.unit(130, "kg"),
  19983. name: "Front (Dressed)",
  19984. image: {
  19985. source: "./media/characters/seroko/front-dressed.svg",
  19986. extra: 1366 / 1275,
  19987. bottom: 0.03
  19988. }
  19989. },
  19990. },
  19991. [
  19992. {
  19993. name: "Normal",
  19994. height: math.unit(8 + 8 / 12, "feet"),
  19995. default: true
  19996. },
  19997. ]
  19998. ))
  19999. characterMakers.push(() => makeCharacter(
  20000. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20001. {
  20002. front: {
  20003. height: math.unit(5.5, "feet"),
  20004. weight: math.unit(160, "lb"),
  20005. name: "Front",
  20006. image: {
  20007. source: "./media/characters/quatzi/front.svg",
  20008. extra: 2346 / 2242,
  20009. bottom: 0.015
  20010. }
  20011. },
  20012. },
  20013. [
  20014. {
  20015. name: "Normal",
  20016. height: math.unit(5.5, "feet"),
  20017. default: true
  20018. },
  20019. {
  20020. name: "Big",
  20021. height: math.unit(7.7, "feet")
  20022. },
  20023. ]
  20024. ))
  20025. characterMakers.push(() => makeCharacter(
  20026. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20027. {
  20028. front: {
  20029. height: math.unit(5 + 11 / 12, "feet"),
  20030. weight: math.unit(180, "lb"),
  20031. name: "Front",
  20032. image: {
  20033. source: "./media/characters/sen/front.svg",
  20034. extra: 1321 / 1254,
  20035. bottom: 0.015
  20036. }
  20037. },
  20038. side: {
  20039. height: math.unit(5 + 11 / 12, "feet"),
  20040. weight: math.unit(180, "lb"),
  20041. name: "Side",
  20042. image: {
  20043. source: "./media/characters/sen/side.svg",
  20044. extra: 1321 / 1254,
  20045. bottom: 0.007
  20046. }
  20047. },
  20048. back: {
  20049. height: math.unit(5 + 11 / 12, "feet"),
  20050. weight: math.unit(180, "lb"),
  20051. name: "Back",
  20052. image: {
  20053. source: "./media/characters/sen/back.svg",
  20054. extra: 1321 / 1254
  20055. }
  20056. },
  20057. },
  20058. [
  20059. {
  20060. name: "Normal",
  20061. height: math.unit(5 + 11 / 12, "feet"),
  20062. default: true
  20063. },
  20064. ]
  20065. ))
  20066. characterMakers.push(() => makeCharacter(
  20067. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20068. {
  20069. front: {
  20070. height: math.unit(166.6, "cm"),
  20071. weight: math.unit(66.6, "kg"),
  20072. name: "Front",
  20073. image: {
  20074. source: "./media/characters/fruity/front.svg",
  20075. extra: 1510 / 1386,
  20076. bottom: 0.04
  20077. }
  20078. },
  20079. back: {
  20080. height: math.unit(166.6, "cm"),
  20081. weight: math.unit(66.6, "lb"),
  20082. name: "Back",
  20083. image: {
  20084. source: "./media/characters/fruity/back.svg",
  20085. extra: 1563 / 1435,
  20086. bottom: 0.005
  20087. }
  20088. },
  20089. },
  20090. [
  20091. {
  20092. name: "Normal",
  20093. height: math.unit(166.6, "cm"),
  20094. default: true
  20095. },
  20096. {
  20097. name: "Demonic",
  20098. height: math.unit(166.6, "feet")
  20099. },
  20100. ]
  20101. ))
  20102. characterMakers.push(() => makeCharacter(
  20103. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20104. {
  20105. side: {
  20106. height: math.unit(10, "feet"),
  20107. weight: math.unit(500, "lb"),
  20108. name: "Side",
  20109. image: {
  20110. source: "./media/characters/zost/side.svg",
  20111. extra: 966 / 880,
  20112. bottom: 0.075
  20113. }
  20114. },
  20115. mawFront: {
  20116. height: math.unit(1.08, "meters"),
  20117. name: "Maw (Front)",
  20118. image: {
  20119. source: "./media/characters/zost/maw-front.svg"
  20120. }
  20121. },
  20122. mawSide: {
  20123. height: math.unit(2.66, "feet"),
  20124. name: "Maw (Side)",
  20125. image: {
  20126. source: "./media/characters/zost/maw-side.svg"
  20127. }
  20128. },
  20129. },
  20130. [
  20131. {
  20132. name: "Normal",
  20133. height: math.unit(10, "feet"),
  20134. default: true
  20135. },
  20136. ]
  20137. ))
  20138. characterMakers.push(() => makeCharacter(
  20139. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20140. {
  20141. front: {
  20142. height: math.unit(5 + 4 / 12, "feet"),
  20143. weight: math.unit(120, "lb"),
  20144. name: "Front",
  20145. image: {
  20146. source: "./media/characters/luci/front.svg",
  20147. extra: 1985 / 1884,
  20148. bottom: 0.04
  20149. }
  20150. },
  20151. back: {
  20152. height: math.unit(5 + 4 / 12, "feet"),
  20153. weight: math.unit(120, "lb"),
  20154. name: "Back",
  20155. image: {
  20156. source: "./media/characters/luci/back.svg",
  20157. extra: 1892 / 1791,
  20158. bottom: 0.002
  20159. }
  20160. },
  20161. },
  20162. [
  20163. {
  20164. name: "Normal",
  20165. height: math.unit(5 + 4 / 12, "feet"),
  20166. default: true
  20167. },
  20168. ]
  20169. ))
  20170. characterMakers.push(() => makeCharacter(
  20171. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20172. {
  20173. front: {
  20174. height: math.unit(1500, "feet"),
  20175. weight: math.unit(3.8e6, "tons"),
  20176. name: "Front",
  20177. image: {
  20178. source: "./media/characters/2th/front.svg",
  20179. extra: 3489 / 3350,
  20180. bottom: 0.1
  20181. }
  20182. },
  20183. foot: {
  20184. height: math.unit(461, "feet"),
  20185. name: "Foot",
  20186. image: {
  20187. source: "./media/characters/2th/foot.svg"
  20188. }
  20189. },
  20190. },
  20191. [
  20192. {
  20193. name: "\"Micro\"",
  20194. height: math.unit(15 + 7 / 12, "feet")
  20195. },
  20196. {
  20197. name: "Normal",
  20198. height: math.unit(1500, "feet"),
  20199. default: true
  20200. },
  20201. {
  20202. name: "Macro",
  20203. height: math.unit(5000, "feet")
  20204. },
  20205. {
  20206. name: "Megamacro",
  20207. height: math.unit(15, "miles")
  20208. },
  20209. {
  20210. name: "Gigamacro",
  20211. height: math.unit(4000, "miles")
  20212. },
  20213. {
  20214. name: "Galactic",
  20215. height: math.unit(50, "AU")
  20216. },
  20217. ]
  20218. ))
  20219. characterMakers.push(() => makeCharacter(
  20220. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20221. {
  20222. front: {
  20223. height: math.unit(5 + 6 / 12, "feet"),
  20224. weight: math.unit(220, "lb"),
  20225. name: "Front",
  20226. image: {
  20227. source: "./media/characters/amethyst/front.svg",
  20228. extra: 2078 / 2040,
  20229. bottom: 0.045
  20230. }
  20231. },
  20232. back: {
  20233. height: math.unit(5 + 6 / 12, "feet"),
  20234. weight: math.unit(220, "lb"),
  20235. name: "Back",
  20236. image: {
  20237. source: "./media/characters/amethyst/back.svg",
  20238. extra: 2021 / 1989,
  20239. bottom: 0.02
  20240. }
  20241. },
  20242. },
  20243. [
  20244. {
  20245. name: "Normal",
  20246. height: math.unit(5 + 6 / 12, "feet"),
  20247. default: true
  20248. },
  20249. ]
  20250. ))
  20251. characterMakers.push(() => makeCharacter(
  20252. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20253. {
  20254. front: {
  20255. height: math.unit(4 + 11 / 12, "feet"),
  20256. weight: math.unit(120, "lb"),
  20257. name: "Front",
  20258. image: {
  20259. source: "./media/characters/yumi-akiyama/front.svg",
  20260. extra: 1327 / 1235,
  20261. bottom: 0.02
  20262. }
  20263. },
  20264. back: {
  20265. height: math.unit(4 + 11 / 12, "feet"),
  20266. weight: math.unit(120, "lb"),
  20267. name: "Back",
  20268. image: {
  20269. source: "./media/characters/yumi-akiyama/back.svg",
  20270. extra: 1287 / 1245,
  20271. bottom: 0.002
  20272. }
  20273. },
  20274. },
  20275. [
  20276. {
  20277. name: "Galactic",
  20278. height: math.unit(50, "galaxies"),
  20279. default: true
  20280. },
  20281. {
  20282. name: "Universal",
  20283. height: math.unit(100, "universes")
  20284. },
  20285. ]
  20286. ))
  20287. characterMakers.push(() => makeCharacter(
  20288. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20289. {
  20290. front: {
  20291. height: math.unit(8, "feet"),
  20292. weight: math.unit(500, "lb"),
  20293. name: "Front",
  20294. image: {
  20295. source: "./media/characters/rifter-yrmori/front.svg",
  20296. extra: 1180 / 1125,
  20297. bottom: 0.02
  20298. }
  20299. },
  20300. back: {
  20301. height: math.unit(8, "feet"),
  20302. weight: math.unit(500, "lb"),
  20303. name: "Back",
  20304. image: {
  20305. source: "./media/characters/rifter-yrmori/back.svg",
  20306. extra: 1190 / 1145,
  20307. bottom: 0.001
  20308. }
  20309. },
  20310. wings: {
  20311. height: math.unit(7.75, "feet"),
  20312. weight: math.unit(500, "lb"),
  20313. name: "Wings",
  20314. image: {
  20315. source: "./media/characters/rifter-yrmori/wings.svg",
  20316. extra: 1357 / 1285
  20317. }
  20318. },
  20319. maw: {
  20320. height: math.unit(0.8, "feet"),
  20321. name: "Maw",
  20322. image: {
  20323. source: "./media/characters/rifter-yrmori/maw.svg"
  20324. }
  20325. },
  20326. mawfront: {
  20327. height: math.unit(1.45, "feet"),
  20328. name: "Maw (Front)",
  20329. image: {
  20330. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20331. }
  20332. },
  20333. },
  20334. [
  20335. {
  20336. name: "Normal",
  20337. height: math.unit(8, "feet"),
  20338. default: true
  20339. },
  20340. {
  20341. name: "Macro",
  20342. height: math.unit(42, "meters")
  20343. },
  20344. ]
  20345. ))
  20346. characterMakers.push(() => makeCharacter(
  20347. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20348. {
  20349. were: {
  20350. height: math.unit(25 + 6 / 12, "feet"),
  20351. weight: math.unit(10000, "lb"),
  20352. name: "Were",
  20353. image: {
  20354. source: "./media/characters/tahajin/were.svg",
  20355. extra: 801 / 770,
  20356. bottom: 0.042
  20357. }
  20358. },
  20359. aquatic: {
  20360. height: math.unit(6 + 4 / 12, "feet"),
  20361. weight: math.unit(160, "lb"),
  20362. name: "Aquatic",
  20363. image: {
  20364. source: "./media/characters/tahajin/aquatic.svg",
  20365. extra: 572 / 542,
  20366. bottom: 0.04
  20367. }
  20368. },
  20369. chow: {
  20370. height: math.unit(8 + 11 / 12, "feet"),
  20371. weight: math.unit(450, "lb"),
  20372. name: "Chow",
  20373. image: {
  20374. source: "./media/characters/tahajin/chow.svg",
  20375. extra: 660 / 640,
  20376. bottom: 0.015
  20377. }
  20378. },
  20379. demiNaga: {
  20380. height: math.unit(6 + 8 / 12, "feet"),
  20381. weight: math.unit(300, "lb"),
  20382. name: "Demi Naga",
  20383. image: {
  20384. source: "./media/characters/tahajin/demi-naga.svg",
  20385. extra: 643 / 615,
  20386. bottom: 0.1
  20387. }
  20388. },
  20389. data: {
  20390. height: math.unit(5, "inches"),
  20391. weight: math.unit(0.1, "lb"),
  20392. name: "Data",
  20393. image: {
  20394. source: "./media/characters/tahajin/data.svg"
  20395. }
  20396. },
  20397. fluu: {
  20398. height: math.unit(5 + 7 / 12, "feet"),
  20399. weight: math.unit(140, "lb"),
  20400. name: "Fluu",
  20401. image: {
  20402. source: "./media/characters/tahajin/fluu.svg",
  20403. extra: 628 / 592,
  20404. bottom: 0.02
  20405. }
  20406. },
  20407. starWarrior: {
  20408. height: math.unit(4 + 5 / 12, "feet"),
  20409. weight: math.unit(50, "lb"),
  20410. name: "Star Warrior",
  20411. image: {
  20412. source: "./media/characters/tahajin/star-warrior.svg"
  20413. }
  20414. },
  20415. },
  20416. [
  20417. {
  20418. name: "Normal",
  20419. height: math.unit(25 + 6 / 12, "feet"),
  20420. default: true
  20421. },
  20422. ]
  20423. ))
  20424. characterMakers.push(() => makeCharacter(
  20425. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20426. {
  20427. front: {
  20428. height: math.unit(8, "feet"),
  20429. weight: math.unit(350, "lb"),
  20430. name: "Front",
  20431. image: {
  20432. source: "./media/characters/gabira/front.svg",
  20433. extra: 608 / 580,
  20434. bottom: 0.03
  20435. }
  20436. },
  20437. back: {
  20438. height: math.unit(8, "feet"),
  20439. weight: math.unit(350, "lb"),
  20440. name: "Back",
  20441. image: {
  20442. source: "./media/characters/gabira/back.svg",
  20443. extra: 608 / 580,
  20444. bottom: 0.03
  20445. }
  20446. },
  20447. },
  20448. [
  20449. {
  20450. name: "Normal",
  20451. height: math.unit(8, "feet"),
  20452. default: true
  20453. },
  20454. ]
  20455. ))
  20456. characterMakers.push(() => makeCharacter(
  20457. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20458. {
  20459. front: {
  20460. height: math.unit(5 + 3 / 12, "feet"),
  20461. weight: math.unit(137, "lb"),
  20462. name: "Front",
  20463. image: {
  20464. source: "./media/characters/sasha-katraine/front.svg",
  20465. bottom: 0.045
  20466. }
  20467. },
  20468. },
  20469. [
  20470. {
  20471. name: "Micro",
  20472. height: math.unit(5, "inches")
  20473. },
  20474. {
  20475. name: "Normal",
  20476. height: math.unit(5 + 3 / 12, "feet"),
  20477. default: true
  20478. },
  20479. ]
  20480. ))
  20481. characterMakers.push(() => makeCharacter(
  20482. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20483. {
  20484. side: {
  20485. height: math.unit(4, "inches"),
  20486. weight: math.unit(200, "grams"),
  20487. name: "Side",
  20488. image: {
  20489. source: "./media/characters/der/side.svg",
  20490. extra: 719 / 400,
  20491. bottom: 30.6 / 749.9187
  20492. }
  20493. },
  20494. },
  20495. [
  20496. {
  20497. name: "Micro",
  20498. height: math.unit(4, "inches"),
  20499. default: true
  20500. },
  20501. ]
  20502. ))
  20503. characterMakers.push(() => makeCharacter(
  20504. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20505. {
  20506. side: {
  20507. height: math.unit(30, "meters"),
  20508. weight: math.unit(700, "tonnes"),
  20509. name: "Side",
  20510. image: {
  20511. source: "./media/characters/fixerdragon/side.svg",
  20512. extra: (1293.0514 - 116.03) / 1106.86,
  20513. bottom: 116.03 / 1293.0514
  20514. }
  20515. },
  20516. },
  20517. [
  20518. {
  20519. name: "Planck",
  20520. height: math.unit(1.6e-35, "meters")
  20521. },
  20522. {
  20523. name: "Micro",
  20524. height: math.unit(0.4, "meters")
  20525. },
  20526. {
  20527. name: "Normal",
  20528. height: math.unit(30, "meters"),
  20529. default: true
  20530. },
  20531. {
  20532. name: "Megamacro",
  20533. height: math.unit(1.2, "megameters")
  20534. },
  20535. {
  20536. name: "Teramacro",
  20537. height: math.unit(130, "terameters")
  20538. },
  20539. {
  20540. name: "Yottamacro",
  20541. height: math.unit(6200, "yottameters")
  20542. },
  20543. ]
  20544. ));
  20545. characterMakers.push(() => makeCharacter(
  20546. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20547. {
  20548. front: {
  20549. height: math.unit(8, "feet"),
  20550. weight: math.unit(250, "lb"),
  20551. name: "Front",
  20552. image: {
  20553. source: "./media/characters/kite/front.svg",
  20554. extra: 2796 / 2659,
  20555. bottom: 0.002
  20556. }
  20557. },
  20558. },
  20559. [
  20560. {
  20561. name: "Normal",
  20562. height: math.unit(8, "feet"),
  20563. default: true
  20564. },
  20565. {
  20566. name: "Macro",
  20567. height: math.unit(360, "feet")
  20568. },
  20569. {
  20570. name: "Megamacro",
  20571. height: math.unit(1500, "feet")
  20572. },
  20573. ]
  20574. ))
  20575. characterMakers.push(() => makeCharacter(
  20576. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20577. {
  20578. front: {
  20579. height: math.unit(5 + 10 / 12, "feet"),
  20580. weight: math.unit(150, "lb"),
  20581. name: "Front",
  20582. image: {
  20583. source: "./media/characters/poojawa-vynar/front.svg",
  20584. extra: (1506.1547 - 55) / 1356.6,
  20585. bottom: 55 / 1506.1547
  20586. }
  20587. },
  20588. frontTailless: {
  20589. height: math.unit(5 + 10 / 12, "feet"),
  20590. weight: math.unit(150, "lb"),
  20591. name: "Front (Tailless)",
  20592. image: {
  20593. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20594. extra: (1506.1547 - 55) / 1356.6,
  20595. bottom: 55 / 1506.1547
  20596. }
  20597. },
  20598. },
  20599. [
  20600. {
  20601. name: "Normal",
  20602. height: math.unit(5 + 10 / 12, "feet"),
  20603. default: true
  20604. },
  20605. ]
  20606. ))
  20607. characterMakers.push(() => makeCharacter(
  20608. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20609. {
  20610. front: {
  20611. height: math.unit(293, "meters"),
  20612. weight: math.unit(70400, "tons"),
  20613. name: "Front",
  20614. image: {
  20615. source: "./media/characters/violette/front.svg",
  20616. extra: 1227 / 1180,
  20617. bottom: 0.005
  20618. }
  20619. },
  20620. back: {
  20621. height: math.unit(293, "meters"),
  20622. weight: math.unit(70400, "tons"),
  20623. name: "Back",
  20624. image: {
  20625. source: "./media/characters/violette/back.svg",
  20626. extra: 1227 / 1180,
  20627. bottom: 0.005
  20628. }
  20629. },
  20630. },
  20631. [
  20632. {
  20633. name: "Macro",
  20634. height: math.unit(293, "meters"),
  20635. default: true
  20636. },
  20637. ]
  20638. ))
  20639. characterMakers.push(() => makeCharacter(
  20640. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20641. {
  20642. front: {
  20643. height: math.unit(1050, "feet"),
  20644. weight: math.unit(200000, "tons"),
  20645. name: "Front",
  20646. image: {
  20647. source: "./media/characters/alessandra/front.svg",
  20648. extra: 960 / 912,
  20649. bottom: 0.06
  20650. }
  20651. },
  20652. },
  20653. [
  20654. {
  20655. name: "Macro",
  20656. height: math.unit(1050, "feet")
  20657. },
  20658. {
  20659. name: "Macro+",
  20660. height: math.unit(900, "meters"),
  20661. default: true
  20662. },
  20663. ]
  20664. ))
  20665. characterMakers.push(() => makeCharacter(
  20666. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20667. {
  20668. front: {
  20669. height: math.unit(5, "feet"),
  20670. weight: math.unit(187, "lb"),
  20671. name: "Front",
  20672. image: {
  20673. source: "./media/characters/person/front.svg",
  20674. extra: 3087 / 2945,
  20675. bottom: 91 / 3181
  20676. }
  20677. },
  20678. },
  20679. [
  20680. {
  20681. name: "Micro",
  20682. height: math.unit(3, "inches")
  20683. },
  20684. {
  20685. name: "Normal",
  20686. height: math.unit(5, "feet"),
  20687. default: true
  20688. },
  20689. {
  20690. name: "Macro",
  20691. height: math.unit(90, "feet")
  20692. },
  20693. {
  20694. name: "Max Size",
  20695. height: math.unit(280, "feet")
  20696. },
  20697. ]
  20698. ))
  20699. characterMakers.push(() => makeCharacter(
  20700. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20701. {
  20702. front: {
  20703. height: math.unit(4.5, "meters"),
  20704. weight: math.unit(3200, "lb"),
  20705. name: "Front",
  20706. image: {
  20707. source: "./media/characters/ty/front.svg",
  20708. extra: 1038 / 960,
  20709. bottom: 31.156 / 1068
  20710. }
  20711. },
  20712. back: {
  20713. height: math.unit(4.5, "meters"),
  20714. weight: math.unit(3200, "lb"),
  20715. name: "Back",
  20716. image: {
  20717. source: "./media/characters/ty/back.svg",
  20718. extra: 1044 / 966,
  20719. bottom: 7.48 / 1049
  20720. }
  20721. },
  20722. },
  20723. [
  20724. {
  20725. name: "Normal",
  20726. height: math.unit(4.5, "meters"),
  20727. default: true
  20728. },
  20729. ]
  20730. ))
  20731. characterMakers.push(() => makeCharacter(
  20732. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20733. {
  20734. front: {
  20735. height: math.unit(5 + 4 / 12, "feet"),
  20736. weight: math.unit(115, "lb"),
  20737. name: "Front",
  20738. image: {
  20739. source: "./media/characters/rocky/front.svg",
  20740. extra: 1012 / 975,
  20741. bottom: 54 / 1066
  20742. }
  20743. },
  20744. },
  20745. [
  20746. {
  20747. name: "Normal",
  20748. height: math.unit(5 + 4 / 12, "feet"),
  20749. default: true
  20750. },
  20751. ]
  20752. ))
  20753. characterMakers.push(() => makeCharacter(
  20754. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20755. {
  20756. upright: {
  20757. height: math.unit(6, "meters"),
  20758. weight: math.unit(4000, "kg"),
  20759. name: "Upright",
  20760. image: {
  20761. source: "./media/characters/ruin/upright.svg",
  20762. extra: 668 / 661,
  20763. bottom: 42 / 799.8396
  20764. }
  20765. },
  20766. },
  20767. [
  20768. {
  20769. name: "Normal",
  20770. height: math.unit(6, "meters"),
  20771. default: true
  20772. },
  20773. ]
  20774. ))
  20775. characterMakers.push(() => makeCharacter(
  20776. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20777. {
  20778. front: {
  20779. height: math.unit(5, "feet"),
  20780. weight: math.unit(106, "lb"),
  20781. name: "Front",
  20782. image: {
  20783. source: "./media/characters/robin/front.svg",
  20784. extra: 862 / 799,
  20785. bottom: 42.4 / 914.8856
  20786. }
  20787. },
  20788. },
  20789. [
  20790. {
  20791. name: "Normal",
  20792. height: math.unit(5, "feet"),
  20793. default: true
  20794. },
  20795. ]
  20796. ))
  20797. characterMakers.push(() => makeCharacter(
  20798. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20799. {
  20800. side: {
  20801. height: math.unit(3, "feet"),
  20802. weight: math.unit(225, "lb"),
  20803. name: "Side",
  20804. image: {
  20805. source: "./media/characters/saian/side.svg",
  20806. extra: 566 / 356,
  20807. bottom: 79.7 / 643
  20808. }
  20809. },
  20810. maw: {
  20811. height: math.unit(2.85, "feet"),
  20812. name: "Maw",
  20813. image: {
  20814. source: "./media/characters/saian/maw.svg"
  20815. }
  20816. },
  20817. },
  20818. [
  20819. {
  20820. name: "Normal",
  20821. height: math.unit(3, "feet"),
  20822. default: true
  20823. },
  20824. ]
  20825. ))
  20826. characterMakers.push(() => makeCharacter(
  20827. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20828. {
  20829. side: {
  20830. height: math.unit(8, "feet"),
  20831. weight: math.unit(300, "lb"),
  20832. name: "Side",
  20833. image: {
  20834. source: "./media/characters/equus-silvermane/side.svg",
  20835. extra: 2176 / 2050,
  20836. bottom: 65.7 / 2245
  20837. }
  20838. },
  20839. front: {
  20840. height: math.unit(8, "feet"),
  20841. weight: math.unit(300, "lb"),
  20842. name: "Front",
  20843. image: {
  20844. source: "./media/characters/equus-silvermane/front.svg",
  20845. extra: 4633 / 4400,
  20846. bottom: 71.3 / 4706.915
  20847. }
  20848. },
  20849. sideStepping: {
  20850. height: math.unit(8, "feet"),
  20851. weight: math.unit(300, "lb"),
  20852. name: "Side (Stepping)",
  20853. image: {
  20854. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20855. extra: 1968 / 1860,
  20856. bottom: 16.4 / 1989
  20857. }
  20858. },
  20859. },
  20860. [
  20861. {
  20862. name: "Normal",
  20863. height: math.unit(8, "feet")
  20864. },
  20865. {
  20866. name: "Minimacro",
  20867. height: math.unit(75, "feet"),
  20868. default: true
  20869. },
  20870. {
  20871. name: "Macro",
  20872. height: math.unit(150, "feet")
  20873. },
  20874. {
  20875. name: "Macro+",
  20876. height: math.unit(1000, "feet")
  20877. },
  20878. {
  20879. name: "Megamacro",
  20880. height: math.unit(1, "mile")
  20881. },
  20882. ]
  20883. ))
  20884. characterMakers.push(() => makeCharacter(
  20885. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  20886. {
  20887. side: {
  20888. height: math.unit(20, "feet"),
  20889. weight: math.unit(30000, "kg"),
  20890. name: "Side",
  20891. image: {
  20892. source: "./media/characters/windar/side.svg",
  20893. extra: 1491 / 1248,
  20894. bottom: 82.56 / 1568
  20895. }
  20896. },
  20897. },
  20898. [
  20899. {
  20900. name: "Normal",
  20901. height: math.unit(20, "feet"),
  20902. default: true
  20903. },
  20904. ]
  20905. ))
  20906. characterMakers.push(() => makeCharacter(
  20907. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  20908. {
  20909. side: {
  20910. height: math.unit(15.66, "feet"),
  20911. weight: math.unit(150, "lb"),
  20912. name: "Side",
  20913. image: {
  20914. source: "./media/characters/melody/side.svg",
  20915. extra: 1097 / 944,
  20916. bottom: 11.8 / 1109
  20917. }
  20918. },
  20919. sideOutfit: {
  20920. height: math.unit(15.66, "feet"),
  20921. weight: math.unit(150, "lb"),
  20922. name: "Side (Outfit)",
  20923. image: {
  20924. source: "./media/characters/melody/side-outfit.svg",
  20925. extra: 1097 / 944,
  20926. bottom: 11.8 / 1109
  20927. }
  20928. },
  20929. },
  20930. [
  20931. {
  20932. name: "Normal",
  20933. height: math.unit(15.66, "feet"),
  20934. default: true
  20935. },
  20936. ]
  20937. ))
  20938. characterMakers.push(() => makeCharacter(
  20939. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  20940. {
  20941. front: {
  20942. height: math.unit(8, "feet"),
  20943. weight: math.unit(325, "lb"),
  20944. name: "Front",
  20945. image: {
  20946. source: "./media/characters/windera/front.svg",
  20947. extra: 3180 / 2845,
  20948. bottom: 178 / 3365
  20949. }
  20950. },
  20951. },
  20952. [
  20953. {
  20954. name: "Normal",
  20955. height: math.unit(8, "feet"),
  20956. default: true
  20957. },
  20958. ]
  20959. ))
  20960. characterMakers.push(() => makeCharacter(
  20961. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  20962. {
  20963. front: {
  20964. height: math.unit(28.75, "feet"),
  20965. weight: math.unit(2000, "kg"),
  20966. name: "Front",
  20967. image: {
  20968. source: "./media/characters/sonear/front.svg",
  20969. extra: 1041.1 / 964.9,
  20970. bottom: 53.7 / 1096.6
  20971. }
  20972. },
  20973. },
  20974. [
  20975. {
  20976. name: "Normal",
  20977. height: math.unit(28.75, "feet"),
  20978. default: true
  20979. },
  20980. ]
  20981. ))
  20982. characterMakers.push(() => makeCharacter(
  20983. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  20984. {
  20985. side: {
  20986. height: math.unit(25.5, "feet"),
  20987. weight: math.unit(23000, "kg"),
  20988. name: "Side",
  20989. image: {
  20990. source: "./media/characters/kanara/side.svg"
  20991. }
  20992. },
  20993. },
  20994. [
  20995. {
  20996. name: "Normal",
  20997. height: math.unit(25.5, "feet"),
  20998. default: true
  20999. },
  21000. ]
  21001. ))
  21002. characterMakers.push(() => makeCharacter(
  21003. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21004. {
  21005. side: {
  21006. height: math.unit(10, "feet"),
  21007. weight: math.unit(1000, "kg"),
  21008. name: "Side",
  21009. image: {
  21010. source: "./media/characters/ereus/side.svg",
  21011. extra: 1157 / 959,
  21012. bottom: 153 / 1312.5
  21013. }
  21014. },
  21015. },
  21016. [
  21017. {
  21018. name: "Normal",
  21019. height: math.unit(10, "feet"),
  21020. default: true
  21021. },
  21022. ]
  21023. ))
  21024. characterMakers.push(() => makeCharacter(
  21025. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21026. {
  21027. side: {
  21028. height: math.unit(4.5, "feet"),
  21029. weight: math.unit(500, "lb"),
  21030. name: "Side",
  21031. image: {
  21032. source: "./media/characters/e-ter/side.svg",
  21033. extra: 1550 / 1248,
  21034. bottom: 146 / 1694
  21035. }
  21036. },
  21037. },
  21038. [
  21039. {
  21040. name: "Normal",
  21041. height: math.unit(4.5, "feet"),
  21042. default: true
  21043. },
  21044. ]
  21045. ))
  21046. characterMakers.push(() => makeCharacter(
  21047. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21048. {
  21049. side: {
  21050. height: math.unit(9.7, "feet"),
  21051. weight: math.unit(4000, "kg"),
  21052. name: "Side",
  21053. image: {
  21054. source: "./media/characters/yamie/side.svg"
  21055. }
  21056. },
  21057. },
  21058. [
  21059. {
  21060. name: "Normal",
  21061. height: math.unit(9.7, "feet"),
  21062. default: true
  21063. },
  21064. ]
  21065. ))
  21066. characterMakers.push(() => makeCharacter(
  21067. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21068. {
  21069. front: {
  21070. height: math.unit(50, "feet"),
  21071. weight: math.unit(50000, "kg"),
  21072. name: "Front",
  21073. image: {
  21074. source: "./media/characters/anders/front.svg",
  21075. extra: 570 / 539,
  21076. bottom: 14.7 / 586.7
  21077. }
  21078. },
  21079. },
  21080. [
  21081. {
  21082. name: "Large",
  21083. height: math.unit(50, "feet")
  21084. },
  21085. {
  21086. name: "Macro",
  21087. height: math.unit(2000, "feet"),
  21088. default: true
  21089. },
  21090. {
  21091. name: "Megamacro",
  21092. height: math.unit(12, "miles")
  21093. },
  21094. ]
  21095. ))
  21096. characterMakers.push(() => makeCharacter(
  21097. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21098. {
  21099. front: {
  21100. height: math.unit(7 + 2 / 12, "feet"),
  21101. weight: math.unit(300, "lb"),
  21102. name: "Front",
  21103. image: {
  21104. source: "./media/characters/reban/front.svg",
  21105. extra: 516 / 487,
  21106. bottom: 42.82 / 558.356
  21107. }
  21108. },
  21109. dick: {
  21110. height: math.unit(7 / 5, "feet"),
  21111. name: "Dick",
  21112. image: {
  21113. source: "./media/characters/reban/dick.svg"
  21114. }
  21115. },
  21116. },
  21117. [
  21118. {
  21119. name: "Natural Height",
  21120. height: math.unit(7 + 2 / 12, "feet")
  21121. },
  21122. {
  21123. name: "Macro",
  21124. height: math.unit(500, "feet"),
  21125. default: true
  21126. },
  21127. {
  21128. name: "Canon Height",
  21129. height: math.unit(50, "AU")
  21130. },
  21131. ]
  21132. ))
  21133. characterMakers.push(() => makeCharacter(
  21134. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21135. {
  21136. front: {
  21137. height: math.unit(6, "feet"),
  21138. weight: math.unit(150, "lb"),
  21139. name: "Front",
  21140. image: {
  21141. source: "./media/characters/terrance-keayes/front.svg",
  21142. extra: 1.005,
  21143. bottom: 151 / 1615
  21144. }
  21145. },
  21146. side: {
  21147. height: math.unit(6, "feet"),
  21148. weight: math.unit(150, "lb"),
  21149. name: "Side",
  21150. image: {
  21151. source: "./media/characters/terrance-keayes/side.svg",
  21152. extra: 1.005,
  21153. bottom: 129.4 / 1544
  21154. }
  21155. },
  21156. back: {
  21157. height: math.unit(6, "feet"),
  21158. weight: math.unit(150, "lb"),
  21159. name: "Back",
  21160. image: {
  21161. source: "./media/characters/terrance-keayes/back.svg",
  21162. extra: 1.005,
  21163. bottom: 58.4 / 1557.3
  21164. }
  21165. },
  21166. dick: {
  21167. height: math.unit(6 * 0.208, "feet"),
  21168. name: "Dick",
  21169. image: {
  21170. source: "./media/characters/terrance-keayes/dick.svg"
  21171. }
  21172. },
  21173. },
  21174. [
  21175. {
  21176. name: "Canon Height",
  21177. height: math.unit(35, "miles"),
  21178. default: true
  21179. },
  21180. ]
  21181. ))
  21182. characterMakers.push(() => makeCharacter(
  21183. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21184. {
  21185. front: {
  21186. height: math.unit(6, "feet"),
  21187. weight: math.unit(150, "lb"),
  21188. name: "Front",
  21189. image: {
  21190. source: "./media/characters/ofelia/front.svg",
  21191. extra: 546 / 541,
  21192. bottom: 39 / 583
  21193. }
  21194. },
  21195. back: {
  21196. height: math.unit(6, "feet"),
  21197. weight: math.unit(150, "lb"),
  21198. name: "Back",
  21199. image: {
  21200. source: "./media/characters/ofelia/back.svg",
  21201. extra: 564 / 559.5,
  21202. bottom: 8.69 / 573.02
  21203. }
  21204. },
  21205. maw: {
  21206. height: math.unit(1, "feet"),
  21207. name: "Maw",
  21208. image: {
  21209. source: "./media/characters/ofelia/maw.svg"
  21210. }
  21211. },
  21212. foot: {
  21213. height: math.unit(1.949, "feet"),
  21214. name: "Foot",
  21215. image: {
  21216. source: "./media/characters/ofelia/foot.svg"
  21217. }
  21218. },
  21219. },
  21220. [
  21221. {
  21222. name: "Canon Height",
  21223. height: math.unit(2000, "miles"),
  21224. default: true
  21225. },
  21226. ]
  21227. ))
  21228. characterMakers.push(() => makeCharacter(
  21229. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21230. {
  21231. front: {
  21232. height: math.unit(6, "feet"),
  21233. weight: math.unit(150, "lb"),
  21234. name: "Front",
  21235. image: {
  21236. source: "./media/characters/samuel/front.svg",
  21237. extra: 265 / 258,
  21238. bottom: 2 / 266.1566
  21239. }
  21240. },
  21241. },
  21242. [
  21243. {
  21244. name: "Macro",
  21245. height: math.unit(100, "feet"),
  21246. default: true
  21247. },
  21248. {
  21249. name: "Full Size",
  21250. height: math.unit(1000, "miles")
  21251. },
  21252. ]
  21253. ))
  21254. characterMakers.push(() => makeCharacter(
  21255. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21256. {
  21257. front: {
  21258. height: math.unit(6, "feet"),
  21259. weight: math.unit(300, "lb"),
  21260. name: "Front",
  21261. image: {
  21262. source: "./media/characters/beishir-kiel/front.svg",
  21263. extra: 569 / 547,
  21264. bottom: 41.9 / 609
  21265. }
  21266. },
  21267. maw: {
  21268. height: math.unit(6 * 0.202, "feet"),
  21269. name: "Maw",
  21270. image: {
  21271. source: "./media/characters/beishir-kiel/maw.svg"
  21272. }
  21273. },
  21274. },
  21275. [
  21276. {
  21277. name: "Macro",
  21278. height: math.unit(300, "feet"),
  21279. default: true
  21280. },
  21281. ]
  21282. ))
  21283. characterMakers.push(() => makeCharacter(
  21284. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21285. {
  21286. front: {
  21287. height: math.unit(5 + 8 / 12, "feet"),
  21288. weight: math.unit(120, "lb"),
  21289. name: "Front",
  21290. image: {
  21291. source: "./media/characters/logan-grey/front.svg",
  21292. extra: 2539 / 2393,
  21293. bottom: 97.6 / 2636.37
  21294. }
  21295. },
  21296. frontAlt: {
  21297. height: math.unit(5 + 8 / 12, "feet"),
  21298. weight: math.unit(120, "lb"),
  21299. name: "Front (Alt)",
  21300. image: {
  21301. source: "./media/characters/logan-grey/front-alt.svg",
  21302. extra: 958 / 893,
  21303. bottom: 15 / 970.768
  21304. }
  21305. },
  21306. back: {
  21307. height: math.unit(5 + 8 / 12, "feet"),
  21308. weight: math.unit(120, "lb"),
  21309. name: "Back",
  21310. image: {
  21311. source: "./media/characters/logan-grey/back.svg",
  21312. extra: 958 / 893,
  21313. bottom: 2.1881 / 970.9788
  21314. }
  21315. },
  21316. dick: {
  21317. height: math.unit(1.437, "feet"),
  21318. name: "Dick",
  21319. image: {
  21320. source: "./media/characters/logan-grey/dick.svg"
  21321. }
  21322. },
  21323. },
  21324. [
  21325. {
  21326. name: "Normal",
  21327. height: math.unit(5 + 8 / 12, "feet")
  21328. },
  21329. {
  21330. name: "The 500 Foot Femboy",
  21331. height: math.unit(500, "feet"),
  21332. default: true
  21333. },
  21334. {
  21335. name: "Megmacro",
  21336. height: math.unit(20, "miles")
  21337. },
  21338. ]
  21339. ))
  21340. characterMakers.push(() => makeCharacter(
  21341. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21342. {
  21343. front: {
  21344. height: math.unit(8 + 2 / 12, "feet"),
  21345. weight: math.unit(275, "lb"),
  21346. name: "Front",
  21347. image: {
  21348. source: "./media/characters/draganta/front.svg",
  21349. extra: 1177 / 1135,
  21350. bottom: 33.46 / 1212.1
  21351. }
  21352. },
  21353. },
  21354. [
  21355. {
  21356. name: "Normal",
  21357. height: math.unit(8 + 6 / 12, "feet"),
  21358. default: true
  21359. },
  21360. {
  21361. name: "Macro",
  21362. height: math.unit(150, "feet")
  21363. },
  21364. {
  21365. name: "Megamacro",
  21366. height: math.unit(1000, "miles")
  21367. },
  21368. ]
  21369. ))
  21370. characterMakers.push(() => makeCharacter(
  21371. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21372. {
  21373. front: {
  21374. height: math.unit(1.72, "m"),
  21375. weight: math.unit(80, "lb"),
  21376. name: "Front",
  21377. image: {
  21378. source: "./media/characters/voski/front.svg",
  21379. extra: 2076.22 / 2022.4,
  21380. bottom: 102.7 / 2177.3866
  21381. }
  21382. },
  21383. frontNsfw: {
  21384. height: math.unit(1.72, "m"),
  21385. weight: math.unit(80, "lb"),
  21386. name: "Front (NSFW)",
  21387. image: {
  21388. source: "./media/characters/voski/front-nsfw.svg",
  21389. extra: 2076.22 / 2022.4,
  21390. bottom: 102.7 / 2177.3866
  21391. }
  21392. },
  21393. back: {
  21394. height: math.unit(1.72, "m"),
  21395. weight: math.unit(80, "lb"),
  21396. name: "Back",
  21397. image: {
  21398. source: "./media/characters/voski/back.svg",
  21399. extra: 2104 / 2051,
  21400. bottom: 10.45 / 2113.63
  21401. }
  21402. },
  21403. },
  21404. [
  21405. {
  21406. name: "Normal",
  21407. height: math.unit(1.72, "m")
  21408. },
  21409. {
  21410. name: "Macro",
  21411. height: math.unit(55, "m"),
  21412. default: true
  21413. },
  21414. {
  21415. name: "Macro+",
  21416. height: math.unit(300, "m")
  21417. },
  21418. {
  21419. name: "Macro++",
  21420. height: math.unit(700, "m")
  21421. },
  21422. {
  21423. name: "Macro+++",
  21424. height: math.unit(4500, "m")
  21425. },
  21426. {
  21427. name: "Macro++++",
  21428. height: math.unit(45, "km")
  21429. },
  21430. {
  21431. name: "Macro+++++",
  21432. height: math.unit(1220, "km")
  21433. },
  21434. ]
  21435. ))
  21436. characterMakers.push(() => makeCharacter(
  21437. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21438. {
  21439. front: {
  21440. height: math.unit(2.3, "m"),
  21441. weight: math.unit(304, "kg"),
  21442. name: "Front",
  21443. image: {
  21444. source: "./media/characters/icowom-lee/front.svg",
  21445. extra: 985 / 955,
  21446. bottom: 25.4 / 1012
  21447. }
  21448. },
  21449. fronttentacles: {
  21450. height: math.unit(2.3, "m"),
  21451. weight: math.unit(304, "kg"),
  21452. name: "Front-tentacles",
  21453. image: {
  21454. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21455. extra: 985 / 955,
  21456. bottom: 25.4 / 1012
  21457. }
  21458. },
  21459. back: {
  21460. height: math.unit(2.3, "m"),
  21461. weight: math.unit(304, "kg"),
  21462. name: "Back",
  21463. image: {
  21464. source: "./media/characters/icowom-lee/back.svg",
  21465. extra: 975 / 954,
  21466. bottom: 9.5 / 985
  21467. }
  21468. },
  21469. backtentacles: {
  21470. height: math.unit(2.3, "m"),
  21471. weight: math.unit(304, "kg"),
  21472. name: "Back-tentacles",
  21473. image: {
  21474. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21475. extra: 975 / 954,
  21476. bottom: 9.5 / 985
  21477. }
  21478. },
  21479. frontDressed: {
  21480. height: math.unit(2.3, "m"),
  21481. weight: math.unit(304, "kg"),
  21482. name: "Front (Dressed)",
  21483. image: {
  21484. source: "./media/characters/icowom-lee/front-dressed.svg",
  21485. extra: 3076 / 2933,
  21486. bottom: 51.4 / 3125.1889
  21487. }
  21488. },
  21489. rump: {
  21490. height: math.unit(0.776, "meters"),
  21491. name: "Rump",
  21492. image: {
  21493. source: "./media/characters/icowom-lee/rump.svg"
  21494. }
  21495. },
  21496. genitals: {
  21497. height: math.unit(0.78, "meters"),
  21498. name: "Genitals",
  21499. image: {
  21500. source: "./media/characters/icowom-lee/genitals.svg"
  21501. }
  21502. },
  21503. },
  21504. [
  21505. {
  21506. name: "Normal",
  21507. height: math.unit(2.3, "meters"),
  21508. default: true
  21509. },
  21510. {
  21511. name: "Macro",
  21512. height: math.unit(94, "meters"),
  21513. default: true
  21514. },
  21515. ]
  21516. ))
  21517. characterMakers.push(() => makeCharacter(
  21518. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21519. {
  21520. front: {
  21521. height: math.unit(22, "meters"),
  21522. weight: math.unit(21000, "kg"),
  21523. name: "Front",
  21524. image: {
  21525. source: "./media/characters/shock-diamond/front.svg",
  21526. extra: 2204 / 2053,
  21527. bottom: 65 / 2239.47
  21528. }
  21529. },
  21530. frontNude: {
  21531. height: math.unit(22, "meters"),
  21532. weight: math.unit(21000, "kg"),
  21533. name: "Front (Nude)",
  21534. image: {
  21535. source: "./media/characters/shock-diamond/front-nude.svg",
  21536. extra: 2514 / 2285,
  21537. bottom: 13 / 2527.56
  21538. }
  21539. },
  21540. },
  21541. [
  21542. {
  21543. name: "Normal",
  21544. height: math.unit(3, "meters")
  21545. },
  21546. {
  21547. name: "Macro",
  21548. height: math.unit(22, "meters"),
  21549. default: true
  21550. },
  21551. ]
  21552. ))
  21553. characterMakers.push(() => makeCharacter(
  21554. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21555. {
  21556. front: {
  21557. height: math.unit(5 + 4 / 12, "feet"),
  21558. weight: math.unit(120, "lb"),
  21559. name: "Front",
  21560. image: {
  21561. source: "./media/characters/rory/front.svg",
  21562. extra: 589 / 556,
  21563. bottom: 45.7 / 635.76
  21564. }
  21565. },
  21566. frontNude: {
  21567. height: math.unit(5 + 4 / 12, "feet"),
  21568. weight: math.unit(120, "lb"),
  21569. name: "Front (Nude)",
  21570. image: {
  21571. source: "./media/characters/rory/front-nude.svg",
  21572. extra: 589 / 556,
  21573. bottom: 45.7 / 635.76
  21574. }
  21575. },
  21576. side: {
  21577. height: math.unit(5 + 4 / 12, "feet"),
  21578. weight: math.unit(120, "lb"),
  21579. name: "Side",
  21580. image: {
  21581. source: "./media/characters/rory/side.svg",
  21582. extra: 597 / 564,
  21583. bottom: 55 / 653
  21584. }
  21585. },
  21586. back: {
  21587. height: math.unit(5 + 4 / 12, "feet"),
  21588. weight: math.unit(120, "lb"),
  21589. name: "Back",
  21590. image: {
  21591. source: "./media/characters/rory/back.svg",
  21592. extra: 620 / 585,
  21593. bottom: 8.86 / 630.43
  21594. }
  21595. },
  21596. dick: {
  21597. height: math.unit(0.86, "feet"),
  21598. name: "Dick",
  21599. image: {
  21600. source: "./media/characters/rory/dick.svg"
  21601. }
  21602. },
  21603. },
  21604. [
  21605. {
  21606. name: "Normal",
  21607. height: math.unit(5 + 4 / 12, "feet"),
  21608. default: true
  21609. },
  21610. {
  21611. name: "Macro",
  21612. height: math.unit(100, "feet")
  21613. },
  21614. {
  21615. name: "Macro+",
  21616. height: math.unit(140, "feet")
  21617. },
  21618. {
  21619. name: "Macro++",
  21620. height: math.unit(300, "feet")
  21621. },
  21622. ]
  21623. ))
  21624. characterMakers.push(() => makeCharacter(
  21625. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21626. {
  21627. front: {
  21628. height: math.unit(5 + 9 / 12, "feet"),
  21629. weight: math.unit(190, "lb"),
  21630. name: "Front",
  21631. image: {
  21632. source: "./media/characters/sprisk/front.svg",
  21633. extra: 1225 / 1180,
  21634. bottom: 42.7 / 1266.4
  21635. }
  21636. },
  21637. frontNsfw: {
  21638. height: math.unit(5 + 9 / 12, "feet"),
  21639. weight: math.unit(190, "lb"),
  21640. name: "Front (NSFW)",
  21641. image: {
  21642. source: "./media/characters/sprisk/front-nsfw.svg",
  21643. extra: 1225 / 1180,
  21644. bottom: 42.7 / 1266.4
  21645. }
  21646. },
  21647. back: {
  21648. height: math.unit(5 + 9 / 12, "feet"),
  21649. weight: math.unit(190, "lb"),
  21650. name: "Back",
  21651. image: {
  21652. source: "./media/characters/sprisk/back.svg",
  21653. extra: 1247 / 1200,
  21654. bottom: 5.6 / 1253.04
  21655. }
  21656. },
  21657. },
  21658. [
  21659. {
  21660. name: "Tiny",
  21661. height: math.unit(2, "inches")
  21662. },
  21663. {
  21664. name: "Normal",
  21665. height: math.unit(5 + 9 / 12, "feet"),
  21666. default: true
  21667. },
  21668. {
  21669. name: "Mini Macro",
  21670. height: math.unit(18, "feet")
  21671. },
  21672. {
  21673. name: "Macro",
  21674. height: math.unit(100, "feet")
  21675. },
  21676. {
  21677. name: "MACRO",
  21678. height: math.unit(50, "miles")
  21679. },
  21680. {
  21681. name: "M A C R O",
  21682. height: math.unit(300, "miles")
  21683. },
  21684. ]
  21685. ))
  21686. characterMakers.push(() => makeCharacter(
  21687. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21688. {
  21689. side: {
  21690. height: math.unit(15.6, "meters"),
  21691. weight: math.unit(700000, "kg"),
  21692. name: "Side",
  21693. image: {
  21694. source: "./media/characters/bunsen/side.svg",
  21695. extra: 1644 / 358
  21696. }
  21697. },
  21698. foot: {
  21699. height: math.unit(1.611 * 1644 / 358, "meter"),
  21700. name: "Foot",
  21701. image: {
  21702. source: "./media/characters/bunsen/foot.svg"
  21703. }
  21704. },
  21705. },
  21706. [
  21707. {
  21708. name: "Small",
  21709. height: math.unit(10, "feet")
  21710. },
  21711. {
  21712. name: "Normal",
  21713. height: math.unit(15.6, "meters"),
  21714. default: true
  21715. },
  21716. ]
  21717. ))
  21718. characterMakers.push(() => makeCharacter(
  21719. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21720. {
  21721. front: {
  21722. height: math.unit(4 + 11 / 12, "feet"),
  21723. weight: math.unit(140, "lb"),
  21724. name: "Front",
  21725. image: {
  21726. source: "./media/characters/sesh/front.svg",
  21727. extra: 3420 / 3231,
  21728. bottom: 72 / 3949.5
  21729. }
  21730. },
  21731. },
  21732. [
  21733. {
  21734. name: "Normal",
  21735. height: math.unit(4 + 11 / 12, "feet")
  21736. },
  21737. {
  21738. name: "Grown",
  21739. height: math.unit(15, "feet"),
  21740. default: true
  21741. },
  21742. {
  21743. name: "Macro",
  21744. height: math.unit(1500, "feet")
  21745. },
  21746. {
  21747. name: "Megamacro",
  21748. height: math.unit(30, "miles")
  21749. },
  21750. {
  21751. name: "Continental",
  21752. height: math.unit(3000, "miles")
  21753. },
  21754. {
  21755. name: "Gravity Mass",
  21756. height: math.unit(300000, "miles")
  21757. },
  21758. {
  21759. name: "Planet Buster",
  21760. height: math.unit(30000000, "miles")
  21761. },
  21762. {
  21763. name: "Big",
  21764. height: math.unit(3000000000, "miles")
  21765. },
  21766. ]
  21767. ))
  21768. characterMakers.push(() => makeCharacter(
  21769. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21770. {
  21771. front: {
  21772. height: math.unit(9, "feet"),
  21773. weight: math.unit(350, "lb"),
  21774. name: "Front",
  21775. image: {
  21776. source: "./media/characters/pepper/front.svg",
  21777. extra: 1448 / 1312,
  21778. bottom: 9.4 / 1457.88
  21779. }
  21780. },
  21781. back: {
  21782. height: math.unit(9, "feet"),
  21783. weight: math.unit(350, "lb"),
  21784. name: "Back",
  21785. image: {
  21786. source: "./media/characters/pepper/back.svg",
  21787. extra: 1423 / 1300,
  21788. bottom: 4.6 / 1429
  21789. }
  21790. },
  21791. maw: {
  21792. height: math.unit(0.932, "feet"),
  21793. name: "Maw",
  21794. image: {
  21795. source: "./media/characters/pepper/maw.svg"
  21796. }
  21797. },
  21798. },
  21799. [
  21800. {
  21801. name: "Normal",
  21802. height: math.unit(9, "feet"),
  21803. default: true
  21804. },
  21805. ]
  21806. ))
  21807. characterMakers.push(() => makeCharacter(
  21808. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21809. {
  21810. front: {
  21811. height: math.unit(6, "feet"),
  21812. weight: math.unit(150, "lb"),
  21813. name: "Front",
  21814. image: {
  21815. source: "./media/characters/maelstrom/front.svg",
  21816. extra: 2100 / 1883,
  21817. bottom: 94 / 2196.7
  21818. }
  21819. },
  21820. },
  21821. [
  21822. {
  21823. name: "Less Kaiju",
  21824. height: math.unit(200, "feet")
  21825. },
  21826. {
  21827. name: "Kaiju",
  21828. height: math.unit(400, "feet"),
  21829. default: true
  21830. },
  21831. {
  21832. name: "Kaiju-er",
  21833. height: math.unit(600, "feet")
  21834. },
  21835. ]
  21836. ))
  21837. characterMakers.push(() => makeCharacter(
  21838. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21839. {
  21840. front: {
  21841. height: math.unit(6 + 5 / 12, "feet"),
  21842. weight: math.unit(180, "lb"),
  21843. name: "Front",
  21844. image: {
  21845. source: "./media/characters/lexir/front.svg",
  21846. extra: 180 / 172,
  21847. bottom: 12 / 192
  21848. }
  21849. },
  21850. back: {
  21851. height: math.unit(6 + 5 / 12, "feet"),
  21852. weight: math.unit(180, "lb"),
  21853. name: "Back",
  21854. image: {
  21855. source: "./media/characters/lexir/back.svg",
  21856. extra: 183.84 / 175.5,
  21857. bottom: 3.1 / 187
  21858. }
  21859. },
  21860. },
  21861. [
  21862. {
  21863. name: "Very Smal",
  21864. height: math.unit(1, "nm")
  21865. },
  21866. {
  21867. name: "Normal",
  21868. height: math.unit(6 + 5 / 12, "feet"),
  21869. default: true
  21870. },
  21871. {
  21872. name: "Macro",
  21873. height: math.unit(1, "mile")
  21874. },
  21875. {
  21876. name: "Megamacro",
  21877. height: math.unit(50, "miles")
  21878. },
  21879. ]
  21880. ))
  21881. characterMakers.push(() => makeCharacter(
  21882. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  21883. {
  21884. front: {
  21885. height: math.unit(1.5, "meters"),
  21886. weight: math.unit(100, "lb"),
  21887. name: "Front",
  21888. image: {
  21889. source: "./media/characters/maksio/front.svg",
  21890. extra: 1549 / 1531,
  21891. bottom: 123.7 / 1674.5429
  21892. }
  21893. },
  21894. back: {
  21895. height: math.unit(1.5, "meters"),
  21896. weight: math.unit(100, "lb"),
  21897. name: "Back",
  21898. image: {
  21899. source: "./media/characters/maksio/back.svg",
  21900. extra: 1541 / 1509,
  21901. bottom: 97 / 1639
  21902. }
  21903. },
  21904. hand: {
  21905. height: math.unit(0.621, "feet"),
  21906. name: "Hand",
  21907. image: {
  21908. source: "./media/characters/maksio/hand.svg"
  21909. }
  21910. },
  21911. foot: {
  21912. height: math.unit(1.611, "feet"),
  21913. name: "Foot",
  21914. image: {
  21915. source: "./media/characters/maksio/foot.svg"
  21916. }
  21917. },
  21918. },
  21919. [
  21920. {
  21921. name: "Shrunken",
  21922. height: math.unit(10, "cm")
  21923. },
  21924. {
  21925. name: "Normal",
  21926. height: math.unit(150, "cm"),
  21927. default: true
  21928. },
  21929. ]
  21930. ))
  21931. characterMakers.push(() => makeCharacter(
  21932. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  21933. {
  21934. front: {
  21935. height: math.unit(100, "feet"),
  21936. name: "Front",
  21937. image: {
  21938. source: "./media/characters/erza-bear/front.svg",
  21939. extra: 2449 / 2390,
  21940. bottom: 46 / 2494
  21941. }
  21942. },
  21943. back: {
  21944. height: math.unit(100, "feet"),
  21945. name: "Back",
  21946. image: {
  21947. source: "./media/characters/erza-bear/back.svg",
  21948. extra: 2489 / 2430,
  21949. bottom: 85.4 / 2480
  21950. }
  21951. },
  21952. tail: {
  21953. height: math.unit(42, "feet"),
  21954. name: "Tail",
  21955. image: {
  21956. source: "./media/characters/erza-bear/tail.svg"
  21957. }
  21958. },
  21959. tongue: {
  21960. height: math.unit(8, "feet"),
  21961. name: "Tongue",
  21962. image: {
  21963. source: "./media/characters/erza-bear/tongue.svg"
  21964. }
  21965. },
  21966. dick: {
  21967. height: math.unit(10.5, "feet"),
  21968. name: "Dick",
  21969. image: {
  21970. source: "./media/characters/erza-bear/dick.svg"
  21971. }
  21972. },
  21973. dickVertical: {
  21974. height: math.unit(16.9, "feet"),
  21975. name: "Dick (Vertical)",
  21976. image: {
  21977. source: "./media/characters/erza-bear/dick-vertical.svg"
  21978. }
  21979. },
  21980. },
  21981. [
  21982. {
  21983. name: "Macro",
  21984. height: math.unit(100, "feet"),
  21985. default: true
  21986. },
  21987. ]
  21988. ))
  21989. characterMakers.push(() => makeCharacter(
  21990. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  21991. {
  21992. front: {
  21993. height: math.unit(172, "cm"),
  21994. weight: math.unit(73, "kg"),
  21995. name: "Front",
  21996. image: {
  21997. source: "./media/characters/violet-flor/front.svg",
  21998. extra: 1530 / 1442,
  21999. bottom: 61.9 / 1588.8
  22000. }
  22001. },
  22002. back: {
  22003. height: math.unit(180, "cm"),
  22004. weight: math.unit(73, "kg"),
  22005. name: "Back",
  22006. image: {
  22007. source: "./media/characters/violet-flor/back.svg",
  22008. extra: 1692 / 1630,
  22009. bottom: 20 / 1712
  22010. }
  22011. },
  22012. },
  22013. [
  22014. {
  22015. name: "Normal",
  22016. height: math.unit(172, "cm"),
  22017. default: true
  22018. },
  22019. ]
  22020. ))
  22021. characterMakers.push(() => makeCharacter(
  22022. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22023. {
  22024. front: {
  22025. height: math.unit(6, "feet"),
  22026. weight: math.unit(220, "lb"),
  22027. name: "Front",
  22028. image: {
  22029. source: "./media/characters/lynn-rhea/front.svg",
  22030. extra: 310 / 273
  22031. }
  22032. },
  22033. back: {
  22034. height: math.unit(6, "feet"),
  22035. weight: math.unit(220, "lb"),
  22036. name: "Back",
  22037. image: {
  22038. source: "./media/characters/lynn-rhea/back.svg",
  22039. extra: 310 / 273
  22040. }
  22041. },
  22042. dicks: {
  22043. height: math.unit(0.9, "feet"),
  22044. name: "Dicks",
  22045. image: {
  22046. source: "./media/characters/lynn-rhea/dicks.svg"
  22047. }
  22048. },
  22049. slit: {
  22050. height: math.unit(0.4, "feet"),
  22051. name: "Slit",
  22052. image: {
  22053. source: "./media/characters/lynn-rhea/slit.svg"
  22054. }
  22055. },
  22056. },
  22057. [
  22058. {
  22059. name: "Micro",
  22060. height: math.unit(1, "inch")
  22061. },
  22062. {
  22063. name: "Macro",
  22064. height: math.unit(60, "feet"),
  22065. default: true
  22066. },
  22067. {
  22068. name: "Megamacro",
  22069. height: math.unit(2, "miles")
  22070. },
  22071. {
  22072. name: "Gigamacro",
  22073. height: math.unit(3, "earths")
  22074. },
  22075. {
  22076. name: "Galactic",
  22077. height: math.unit(0.8, "galaxies")
  22078. },
  22079. ]
  22080. ))
  22081. characterMakers.push(() => makeCharacter(
  22082. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22083. {
  22084. front: {
  22085. height: math.unit(1600, "feet"),
  22086. weight: math.unit(85758785169, "kg"),
  22087. name: "Front",
  22088. image: {
  22089. source: "./media/characters/valathos/front.svg",
  22090. extra: 1451 / 1339
  22091. }
  22092. },
  22093. },
  22094. [
  22095. {
  22096. name: "Macro",
  22097. height: math.unit(1600, "feet"),
  22098. default: true
  22099. },
  22100. ]
  22101. ))
  22102. characterMakers.push(() => makeCharacter(
  22103. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22104. {
  22105. front: {
  22106. height: math.unit(7 + 5 / 12, "feet"),
  22107. weight: math.unit(300, "lb"),
  22108. name: "Front",
  22109. image: {
  22110. source: "./media/characters/azula/front.svg",
  22111. extra: 3208 / 2880,
  22112. bottom: 80.2 / 3277
  22113. }
  22114. },
  22115. back: {
  22116. height: math.unit(7 + 5 / 12, "feet"),
  22117. weight: math.unit(300, "lb"),
  22118. name: "Back",
  22119. image: {
  22120. source: "./media/characters/azula/back.svg",
  22121. extra: 3169 / 2822,
  22122. bottom: 150.6 / 3321
  22123. }
  22124. },
  22125. },
  22126. [
  22127. {
  22128. name: "Normal",
  22129. height: math.unit(7 + 5 / 12, "feet"),
  22130. default: true
  22131. },
  22132. {
  22133. name: "Big",
  22134. height: math.unit(20, "feet")
  22135. },
  22136. ]
  22137. ))
  22138. characterMakers.push(() => makeCharacter(
  22139. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22140. {
  22141. front: {
  22142. height: math.unit(5 + 1 / 12, "feet"),
  22143. weight: math.unit(110, "lb"),
  22144. name: "Front",
  22145. image: {
  22146. source: "./media/characters/rupert/front.svg",
  22147. extra: 1549 / 1495,
  22148. bottom: 54.2 / 1604.4
  22149. }
  22150. },
  22151. },
  22152. [
  22153. {
  22154. name: "Normal",
  22155. height: math.unit(5 + 1 / 12, "feet"),
  22156. default: true
  22157. },
  22158. ]
  22159. ))
  22160. characterMakers.push(() => makeCharacter(
  22161. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22162. {
  22163. front: {
  22164. height: math.unit(8 + 4 / 12, "feet"),
  22165. weight: math.unit(350, "lb"),
  22166. name: "Front",
  22167. image: {
  22168. source: "./media/characters/sheera-castellar/front.svg",
  22169. extra: 1957 / 1894,
  22170. bottom: 26.97 / 1975.017
  22171. }
  22172. },
  22173. side: {
  22174. height: math.unit(8 + 4 / 12, "feet"),
  22175. weight: math.unit(350, "lb"),
  22176. name: "Side",
  22177. image: {
  22178. source: "./media/characters/sheera-castellar/side.svg",
  22179. extra: 1957 / 1894
  22180. }
  22181. },
  22182. back: {
  22183. height: math.unit(8 + 4 / 12, "feet"),
  22184. weight: math.unit(350, "lb"),
  22185. name: "Back",
  22186. image: {
  22187. source: "./media/characters/sheera-castellar/back.svg",
  22188. extra: 1957 / 1894
  22189. }
  22190. },
  22191. angled: {
  22192. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22193. weight: math.unit(350, "lb"),
  22194. name: "Angled",
  22195. image: {
  22196. source: "./media/characters/sheera-castellar/angled.svg",
  22197. extra: 1807 / 1707,
  22198. bottom: 68 / 1875
  22199. }
  22200. },
  22201. genitals: {
  22202. height: math.unit(2.2, "feet"),
  22203. name: "Genitals",
  22204. image: {
  22205. source: "./media/characters/sheera-castellar/genitals.svg"
  22206. }
  22207. },
  22208. },
  22209. [
  22210. {
  22211. name: "Normal",
  22212. height: math.unit(8 + 4 / 12, "feet")
  22213. },
  22214. {
  22215. name: "Macro",
  22216. height: math.unit(150, "feet"),
  22217. default: true
  22218. },
  22219. {
  22220. name: "Macro+",
  22221. height: math.unit(800, "feet")
  22222. },
  22223. ]
  22224. ))
  22225. characterMakers.push(() => makeCharacter(
  22226. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22227. {
  22228. front: {
  22229. height: math.unit(6, "feet"),
  22230. weight: math.unit(150, "lb"),
  22231. name: "Front",
  22232. image: {
  22233. source: "./media/characters/jaipur/front.svg",
  22234. extra: 3860 / 3731,
  22235. bottom: 287 / 4140
  22236. }
  22237. },
  22238. back: {
  22239. height: math.unit(6, "feet"),
  22240. weight: math.unit(150, "lb"),
  22241. name: "Back",
  22242. image: {
  22243. source: "./media/characters/jaipur/back.svg",
  22244. extra: 4060 / 3930,
  22245. bottom: 151 / 4200
  22246. }
  22247. },
  22248. },
  22249. [
  22250. {
  22251. name: "Normal",
  22252. height: math.unit(1.85, "meters"),
  22253. default: true
  22254. },
  22255. {
  22256. name: "Macro",
  22257. height: math.unit(150, "meters")
  22258. },
  22259. {
  22260. name: "Macro+",
  22261. height: math.unit(0.5, "miles")
  22262. },
  22263. {
  22264. name: "Macro++",
  22265. height: math.unit(2.5, "miles")
  22266. },
  22267. {
  22268. name: "Macro+++",
  22269. height: math.unit(12, "miles")
  22270. },
  22271. {
  22272. name: "Macro++++",
  22273. height: math.unit(120, "miles")
  22274. },
  22275. {
  22276. name: "Macro+++++",
  22277. height: math.unit(1200, "miles")
  22278. },
  22279. ]
  22280. ))
  22281. characterMakers.push(() => makeCharacter(
  22282. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22283. {
  22284. front: {
  22285. height: math.unit(6, "feet"),
  22286. weight: math.unit(150, "lb"),
  22287. name: "Front",
  22288. image: {
  22289. source: "./media/characters/sheila-wolf/front.svg",
  22290. extra: 1931 / 1808,
  22291. bottom: 29.5 / 1960
  22292. }
  22293. },
  22294. dick: {
  22295. height: math.unit(1.464, "feet"),
  22296. name: "Dick",
  22297. image: {
  22298. source: "./media/characters/sheila-wolf/dick.svg"
  22299. }
  22300. },
  22301. muzzle: {
  22302. height: math.unit(0.513, "feet"),
  22303. name: "Muzzle",
  22304. image: {
  22305. source: "./media/characters/sheila-wolf/muzzle.svg"
  22306. }
  22307. },
  22308. },
  22309. [
  22310. {
  22311. name: "Macro",
  22312. height: math.unit(70, "feet"),
  22313. default: true
  22314. },
  22315. ]
  22316. ))
  22317. characterMakers.push(() => makeCharacter(
  22318. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22319. {
  22320. front: {
  22321. height: math.unit(32, "meters"),
  22322. weight: math.unit(300000, "kg"),
  22323. name: "Front",
  22324. image: {
  22325. source: "./media/characters/almor/front.svg",
  22326. extra: 1408 / 1322,
  22327. bottom: 94.6 / 1506.5
  22328. }
  22329. },
  22330. },
  22331. [
  22332. {
  22333. name: "Macro",
  22334. height: math.unit(32, "meters"),
  22335. default: true
  22336. },
  22337. ]
  22338. ))
  22339. characterMakers.push(() => makeCharacter(
  22340. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22341. {
  22342. front: {
  22343. height: math.unit(7, "feet"),
  22344. weight: math.unit(200, "lb"),
  22345. name: "Front",
  22346. image: {
  22347. source: "./media/characters/silver/front.svg",
  22348. extra: 472.1 / 450.5,
  22349. bottom: 26.5 / 499.424
  22350. }
  22351. },
  22352. },
  22353. [
  22354. {
  22355. name: "Normal",
  22356. height: math.unit(7, "feet"),
  22357. default: true
  22358. },
  22359. {
  22360. name: "Macro",
  22361. height: math.unit(800, "feet")
  22362. },
  22363. {
  22364. name: "Megamacro",
  22365. height: math.unit(250, "miles")
  22366. },
  22367. ]
  22368. ))
  22369. characterMakers.push(() => makeCharacter(
  22370. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22371. {
  22372. front: {
  22373. height: math.unit(6, "feet"),
  22374. weight: math.unit(150, "lb"),
  22375. name: "Front",
  22376. image: {
  22377. source: "./media/characters/pliskin/front.svg",
  22378. extra: 1469 / 1359,
  22379. bottom: 70 / 1540
  22380. }
  22381. },
  22382. },
  22383. [
  22384. {
  22385. name: "Micro",
  22386. height: math.unit(3, "inches")
  22387. },
  22388. {
  22389. name: "Normal",
  22390. height: math.unit(5 + 11 / 12, "feet"),
  22391. default: true
  22392. },
  22393. {
  22394. name: "Macro",
  22395. height: math.unit(120, "feet")
  22396. },
  22397. ]
  22398. ))
  22399. characterMakers.push(() => makeCharacter(
  22400. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22401. {
  22402. front: {
  22403. height: math.unit(6, "feet"),
  22404. weight: math.unit(150, "lb"),
  22405. name: "Front",
  22406. image: {
  22407. source: "./media/characters/sammy/front.svg",
  22408. extra: 1193 / 1089,
  22409. bottom: 30.5 / 1226
  22410. }
  22411. },
  22412. },
  22413. [
  22414. {
  22415. name: "Macro",
  22416. height: math.unit(1700, "feet"),
  22417. default: true
  22418. },
  22419. {
  22420. name: "Examacro",
  22421. height: math.unit(2.5e9, "lightyears")
  22422. },
  22423. ]
  22424. ))
  22425. characterMakers.push(() => makeCharacter(
  22426. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22427. {
  22428. front: {
  22429. height: math.unit(21, "meters"),
  22430. weight: math.unit(12, "tonnes"),
  22431. name: "Front",
  22432. image: {
  22433. source: "./media/characters/kuru/front.svg",
  22434. extra: 4301 / 3785,
  22435. bottom: 371.3 / 4691
  22436. }
  22437. },
  22438. },
  22439. [
  22440. {
  22441. name: "Macro",
  22442. height: math.unit(21, "meters"),
  22443. default: true
  22444. },
  22445. ]
  22446. ))
  22447. characterMakers.push(() => makeCharacter(
  22448. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22449. {
  22450. front: {
  22451. height: math.unit(23, "meters"),
  22452. weight: math.unit(12.2, "tonnes"),
  22453. name: "Front",
  22454. image: {
  22455. source: "./media/characters/rakka/front.svg",
  22456. extra: 4670 / 4169,
  22457. bottom: 301 / 4968.7
  22458. }
  22459. },
  22460. },
  22461. [
  22462. {
  22463. name: "Macro",
  22464. height: math.unit(23, "meters"),
  22465. default: true
  22466. },
  22467. ]
  22468. ))
  22469. characterMakers.push(() => makeCharacter(
  22470. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22471. {
  22472. front: {
  22473. height: math.unit(6, "feet"),
  22474. weight: math.unit(150, "lb"),
  22475. name: "Front",
  22476. image: {
  22477. source: "./media/characters/rhys-feline/front.svg",
  22478. extra: 2488 / 2308,
  22479. bottom: 35.67 / 2519.19
  22480. }
  22481. },
  22482. },
  22483. [
  22484. {
  22485. name: "Really Small",
  22486. height: math.unit(1, "nm")
  22487. },
  22488. {
  22489. name: "Micro",
  22490. height: math.unit(4, "inches")
  22491. },
  22492. {
  22493. name: "Normal",
  22494. height: math.unit(4 + 10 / 12, "feet"),
  22495. default: true
  22496. },
  22497. {
  22498. name: "Macro",
  22499. height: math.unit(100, "feet")
  22500. },
  22501. {
  22502. name: "Megamacto",
  22503. height: math.unit(50, "miles")
  22504. },
  22505. ]
  22506. ))
  22507. characterMakers.push(() => makeCharacter(
  22508. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22509. {
  22510. side: {
  22511. height: math.unit(30, "feet"),
  22512. weight: math.unit(35000, "kg"),
  22513. name: "Side",
  22514. image: {
  22515. source: "./media/characters/alydar/side.svg",
  22516. extra: 234 / 222,
  22517. bottom: 6.5 / 241
  22518. }
  22519. },
  22520. front: {
  22521. height: math.unit(30, "feet"),
  22522. weight: math.unit(35000, "kg"),
  22523. name: "Front",
  22524. image: {
  22525. source: "./media/characters/alydar/front.svg",
  22526. extra: 223.37 / 210.2,
  22527. bottom: 22.3 / 246.76
  22528. }
  22529. },
  22530. top: {
  22531. height: math.unit(64.54, "feet"),
  22532. weight: math.unit(35000, "kg"),
  22533. name: "Top",
  22534. image: {
  22535. source: "./media/characters/alydar/top.svg"
  22536. }
  22537. },
  22538. anthro: {
  22539. height: math.unit(30, "feet"),
  22540. weight: math.unit(9000, "kg"),
  22541. name: "Anthro",
  22542. image: {
  22543. source: "./media/characters/alydar/anthro.svg",
  22544. extra: 432 / 421,
  22545. bottom: 7.18 / 440
  22546. }
  22547. },
  22548. maw: {
  22549. height: math.unit(11.693, "feet"),
  22550. name: "Maw",
  22551. image: {
  22552. source: "./media/characters/alydar/maw.svg"
  22553. }
  22554. },
  22555. head: {
  22556. height: math.unit(11.693, "feet"),
  22557. name: "Head",
  22558. image: {
  22559. source: "./media/characters/alydar/head.svg"
  22560. }
  22561. },
  22562. headAlt: {
  22563. height: math.unit(12.861, "feet"),
  22564. name: "Head (Alt)",
  22565. image: {
  22566. source: "./media/characters/alydar/head-alt.svg"
  22567. }
  22568. },
  22569. wing: {
  22570. height: math.unit(20.712, "feet"),
  22571. name: "Wing",
  22572. image: {
  22573. source: "./media/characters/alydar/wing.svg"
  22574. }
  22575. },
  22576. wingFeather: {
  22577. height: math.unit(9.662, "feet"),
  22578. name: "Wing Feather",
  22579. image: {
  22580. source: "./media/characters/alydar/wing-feather.svg"
  22581. }
  22582. },
  22583. countourFeather: {
  22584. height: math.unit(4.154, "feet"),
  22585. name: "Contour Feather",
  22586. image: {
  22587. source: "./media/characters/alydar/contour-feather.svg"
  22588. }
  22589. },
  22590. },
  22591. [
  22592. {
  22593. name: "Diplomatic",
  22594. height: math.unit(13, "feet"),
  22595. default: true
  22596. },
  22597. {
  22598. name: "Small",
  22599. height: math.unit(30, "feet")
  22600. },
  22601. {
  22602. name: "Normal",
  22603. height: math.unit(95, "feet"),
  22604. default: true
  22605. },
  22606. {
  22607. name: "Large",
  22608. height: math.unit(285, "feet")
  22609. },
  22610. {
  22611. name: "Incomprehensible",
  22612. height: math.unit(450, "megameters")
  22613. },
  22614. ]
  22615. ))
  22616. characterMakers.push(() => makeCharacter(
  22617. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22618. {
  22619. side: {
  22620. height: math.unit(11, "feet"),
  22621. weight: math.unit(1750, "kg"),
  22622. name: "Side",
  22623. image: {
  22624. source: "./media/characters/selicia/side.svg",
  22625. extra: 440 / 396,
  22626. bottom: 24.8 / 465.979
  22627. }
  22628. },
  22629. maw: {
  22630. height: math.unit(4.665, "feet"),
  22631. name: "Maw",
  22632. image: {
  22633. source: "./media/characters/selicia/maw.svg"
  22634. }
  22635. },
  22636. },
  22637. [
  22638. {
  22639. name: "Normal",
  22640. height: math.unit(11, "feet"),
  22641. default: true
  22642. },
  22643. ]
  22644. ))
  22645. characterMakers.push(() => makeCharacter(
  22646. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22647. {
  22648. side: {
  22649. height: math.unit(2 + 6 / 12, "feet"),
  22650. weight: math.unit(30, "lb"),
  22651. name: "Side",
  22652. image: {
  22653. source: "./media/characters/layla/side.svg",
  22654. extra: 244 / 188,
  22655. bottom: 18.2 / 262.1
  22656. }
  22657. },
  22658. back: {
  22659. height: math.unit(2 + 6 / 12, "feet"),
  22660. weight: math.unit(30, "lb"),
  22661. name: "Back",
  22662. image: {
  22663. source: "./media/characters/layla/back.svg",
  22664. extra: 308 / 241.5,
  22665. bottom: 8.9 / 316.8
  22666. }
  22667. },
  22668. cumming: {
  22669. height: math.unit(2 + 6 / 12, "feet"),
  22670. weight: math.unit(30, "lb"),
  22671. name: "Cumming",
  22672. image: {
  22673. source: "./media/characters/layla/cumming.svg",
  22674. extra: 342 / 279,
  22675. bottom: 595 / 938
  22676. }
  22677. },
  22678. dickFlaccid: {
  22679. height: math.unit(2.595, "feet"),
  22680. name: "Flaccid Genitals",
  22681. image: {
  22682. source: "./media/characters/layla/dick-flaccid.svg"
  22683. }
  22684. },
  22685. dickErect: {
  22686. height: math.unit(2.359, "feet"),
  22687. name: "Erect Genitals",
  22688. image: {
  22689. source: "./media/characters/layla/dick-erect.svg"
  22690. }
  22691. },
  22692. },
  22693. [
  22694. {
  22695. name: "Micro",
  22696. height: math.unit(1, "inch")
  22697. },
  22698. {
  22699. name: "Small",
  22700. height: math.unit(1, "foot")
  22701. },
  22702. {
  22703. name: "Normal",
  22704. height: math.unit(2 + 6 / 12, "feet"),
  22705. default: true
  22706. },
  22707. {
  22708. name: "Macro",
  22709. height: math.unit(200, "feet")
  22710. },
  22711. {
  22712. name: "Megamacro",
  22713. height: math.unit(1000, "miles")
  22714. },
  22715. {
  22716. name: "Planetary",
  22717. height: math.unit(8000, "miles")
  22718. },
  22719. {
  22720. name: "True Layla",
  22721. height: math.unit(200000 * 7, "multiverses")
  22722. },
  22723. ]
  22724. ))
  22725. characterMakers.push(() => makeCharacter(
  22726. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22727. {
  22728. back: {
  22729. height: math.unit(10.5, "feet"),
  22730. weight: math.unit(800, "lb"),
  22731. name: "Back",
  22732. image: {
  22733. source: "./media/characters/knox/back.svg",
  22734. extra: 1486 / 1089,
  22735. bottom: 107 / 1601.4
  22736. }
  22737. },
  22738. side: {
  22739. height: math.unit(10.5, "feet"),
  22740. weight: math.unit(800, "lb"),
  22741. name: "Side",
  22742. image: {
  22743. source: "./media/characters/knox/side.svg",
  22744. extra: 244 / 218,
  22745. bottom: 14 / 260
  22746. }
  22747. },
  22748. },
  22749. [
  22750. {
  22751. name: "Compact",
  22752. height: math.unit(10.5, "feet"),
  22753. default: true
  22754. },
  22755. {
  22756. name: "Dynamax",
  22757. height: math.unit(210, "feet")
  22758. },
  22759. {
  22760. name: "Full Macro",
  22761. height: math.unit(850, "feet")
  22762. },
  22763. ]
  22764. ))
  22765. characterMakers.push(() => makeCharacter(
  22766. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22767. {
  22768. front: {
  22769. height: math.unit(6, "feet"),
  22770. weight: math.unit(152, "lb"),
  22771. name: "Front",
  22772. image: {
  22773. source: "./media/characters/shin-pikachu/front.svg",
  22774. extra: 1574 / 1480,
  22775. bottom: 53.3 / 1626
  22776. }
  22777. },
  22778. hand: {
  22779. height: math.unit(1.055, "feet"),
  22780. name: "Hand",
  22781. image: {
  22782. source: "./media/characters/shin-pikachu/hand.svg"
  22783. }
  22784. },
  22785. foot: {
  22786. height: math.unit(1.1, "feet"),
  22787. name: "Foot",
  22788. image: {
  22789. source: "./media/characters/shin-pikachu/foot.svg"
  22790. }
  22791. },
  22792. collar: {
  22793. height: math.unit(0.386, "feet"),
  22794. name: "Collar",
  22795. image: {
  22796. source: "./media/characters/shin-pikachu/collar.svg"
  22797. }
  22798. },
  22799. },
  22800. [
  22801. {
  22802. name: "Smallest",
  22803. height: math.unit(0.5, "inches")
  22804. },
  22805. {
  22806. name: "Micro",
  22807. height: math.unit(6, "inches")
  22808. },
  22809. {
  22810. name: "Normal",
  22811. height: math.unit(6, "feet"),
  22812. default: true
  22813. },
  22814. {
  22815. name: "Macro",
  22816. height: math.unit(150, "feet")
  22817. },
  22818. ]
  22819. ))
  22820. characterMakers.push(() => makeCharacter(
  22821. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22822. {
  22823. front: {
  22824. height: math.unit(28, "feet"),
  22825. weight: math.unit(10500, "lb"),
  22826. name: "Front",
  22827. image: {
  22828. source: "./media/characters/kayda/front.svg",
  22829. extra: 1536 / 1428,
  22830. bottom: 68.7 / 1603
  22831. }
  22832. },
  22833. back: {
  22834. height: math.unit(28, "feet"),
  22835. weight: math.unit(10500, "lb"),
  22836. name: "Back",
  22837. image: {
  22838. source: "./media/characters/kayda/back.svg",
  22839. extra: 1557 / 1464,
  22840. bottom: 39.5 / 1597.49
  22841. }
  22842. },
  22843. dick: {
  22844. height: math.unit(3.858, "feet"),
  22845. name: "Dick",
  22846. image: {
  22847. source: "./media/characters/kayda/dick.svg"
  22848. }
  22849. },
  22850. },
  22851. [
  22852. {
  22853. name: "Macro",
  22854. height: math.unit(28, "feet"),
  22855. default: true
  22856. },
  22857. ]
  22858. ))
  22859. characterMakers.push(() => makeCharacter(
  22860. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22861. {
  22862. front: {
  22863. height: math.unit(10 + 11 / 12, "feet"),
  22864. weight: math.unit(1400, "lb"),
  22865. name: "Front",
  22866. image: {
  22867. source: "./media/characters/brian/front.svg",
  22868. extra: 737 / 692,
  22869. bottom: 55.4 / 785
  22870. }
  22871. },
  22872. },
  22873. [
  22874. {
  22875. name: "Normal",
  22876. height: math.unit(10 + 11 / 12, "feet"),
  22877. default: true
  22878. },
  22879. ]
  22880. ))
  22881. characterMakers.push(() => makeCharacter(
  22882. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  22883. {
  22884. front: {
  22885. height: math.unit(5 + 8 / 12, "feet"),
  22886. weight: math.unit(140, "lb"),
  22887. name: "Front",
  22888. image: {
  22889. source: "./media/characters/khemri/front.svg",
  22890. extra: 4780 / 4059,
  22891. bottom: 80.1 / 4859.25
  22892. }
  22893. },
  22894. },
  22895. [
  22896. {
  22897. name: "Micro",
  22898. height: math.unit(6, "inches")
  22899. },
  22900. {
  22901. name: "Normal",
  22902. height: math.unit(5 + 8 / 12, "feet"),
  22903. default: true
  22904. },
  22905. ]
  22906. ))
  22907. characterMakers.push(() => makeCharacter(
  22908. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  22909. {
  22910. front: {
  22911. height: math.unit(13, "feet"),
  22912. weight: math.unit(1700, "lb"),
  22913. name: "Front",
  22914. image: {
  22915. source: "./media/characters/felix-braveheart/front.svg",
  22916. extra: 1222 / 1157,
  22917. bottom: 53.2 / 1280
  22918. }
  22919. },
  22920. back: {
  22921. height: math.unit(13, "feet"),
  22922. weight: math.unit(1700, "lb"),
  22923. name: "Back",
  22924. image: {
  22925. source: "./media/characters/felix-braveheart/back.svg",
  22926. extra: 1277 / 1203,
  22927. bottom: 50.2 / 1327
  22928. }
  22929. },
  22930. feral: {
  22931. height: math.unit(6, "feet"),
  22932. weight: math.unit(400, "lb"),
  22933. name: "Feral",
  22934. image: {
  22935. source: "./media/characters/felix-braveheart/feral.svg",
  22936. extra: 682 / 625,
  22937. bottom: 6.9 / 688
  22938. }
  22939. },
  22940. },
  22941. [
  22942. {
  22943. name: "Normal",
  22944. height: math.unit(13, "feet"),
  22945. default: true
  22946. },
  22947. ]
  22948. ))
  22949. characterMakers.push(() => makeCharacter(
  22950. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  22951. {
  22952. side: {
  22953. height: math.unit(5 + 11 / 12, "feet"),
  22954. weight: math.unit(1400, "lb"),
  22955. name: "Side",
  22956. image: {
  22957. source: "./media/characters/shadow-blade/side.svg",
  22958. extra: 1726 / 1267,
  22959. bottom: 58.4 / 1785
  22960. }
  22961. },
  22962. },
  22963. [
  22964. {
  22965. name: "Normal",
  22966. height: math.unit(5 + 11 / 12, "feet"),
  22967. default: true
  22968. },
  22969. ]
  22970. ))
  22971. characterMakers.push(() => makeCharacter(
  22972. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  22973. {
  22974. front: {
  22975. height: math.unit(1 + 6 / 12, "feet"),
  22976. weight: math.unit(25, "lb"),
  22977. name: "Front",
  22978. image: {
  22979. source: "./media/characters/karla-halldor/front.svg",
  22980. extra: 1459 / 1383,
  22981. bottom: 12 / 1472
  22982. }
  22983. },
  22984. },
  22985. [
  22986. {
  22987. name: "Normal",
  22988. height: math.unit(1 + 6 / 12, "feet"),
  22989. default: true
  22990. },
  22991. ]
  22992. ))
  22993. characterMakers.push(() => makeCharacter(
  22994. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  22995. {
  22996. front: {
  22997. height: math.unit(6 + 2 / 12, "feet"),
  22998. weight: math.unit(160, "lb"),
  22999. name: "Front",
  23000. image: {
  23001. source: "./media/characters/ariam/front.svg",
  23002. extra: 714 / 617,
  23003. bottom: 23.4 / 737,
  23004. }
  23005. },
  23006. squatting: {
  23007. height: math.unit(4.1, "feet"),
  23008. weight: math.unit(160, "lb"),
  23009. name: "Squatting",
  23010. image: {
  23011. source: "./media/characters/ariam/squatting.svg",
  23012. extra: 2617 / 2112,
  23013. bottom: 61.2 / 2681,
  23014. }
  23015. },
  23016. },
  23017. [
  23018. {
  23019. name: "Normal",
  23020. height: math.unit(6 + 2 / 12, "feet"),
  23021. default: true
  23022. },
  23023. {
  23024. name: "Normal+",
  23025. height: math.unit(4, "meters")
  23026. },
  23027. {
  23028. name: "Macro",
  23029. height: math.unit(50, "meters")
  23030. },
  23031. {
  23032. name: "Macro+",
  23033. height: math.unit(100, "meters")
  23034. },
  23035. {
  23036. name: "Megamacro",
  23037. height: math.unit(20, "km")
  23038. },
  23039. ]
  23040. ))
  23041. characterMakers.push(() => makeCharacter(
  23042. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23043. {
  23044. front: {
  23045. height: math.unit(1.67, "meters"),
  23046. weight: math.unit(140, "lb"),
  23047. name: "Front",
  23048. image: {
  23049. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23050. extra: 438 / 410,
  23051. bottom: 0.75 / 439
  23052. }
  23053. },
  23054. },
  23055. [
  23056. {
  23057. name: "Shrunken",
  23058. height: math.unit(7.6, "cm")
  23059. },
  23060. {
  23061. name: "Human Scale",
  23062. height: math.unit(1.67, "meters")
  23063. },
  23064. {
  23065. name: "Wolxi Scale",
  23066. height: math.unit(36.7, "meters"),
  23067. default: true
  23068. },
  23069. ]
  23070. ))
  23071. characterMakers.push(() => makeCharacter(
  23072. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23073. {
  23074. front: {
  23075. height: math.unit(1.73, "meters"),
  23076. weight: math.unit(240, "lb"),
  23077. name: "Front",
  23078. image: {
  23079. source: "./media/characters/izue-two-mothers/front.svg",
  23080. extra: 469 / 437,
  23081. bottom: 1.24 / 470.6
  23082. }
  23083. },
  23084. },
  23085. [
  23086. {
  23087. name: "Shrunken",
  23088. height: math.unit(7.86, "cm")
  23089. },
  23090. {
  23091. name: "Human Scale",
  23092. height: math.unit(1.73, "meters")
  23093. },
  23094. {
  23095. name: "Wolxi Scale",
  23096. height: math.unit(38, "meters"),
  23097. default: true
  23098. },
  23099. ]
  23100. ))
  23101. characterMakers.push(() => makeCharacter(
  23102. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23103. {
  23104. front: {
  23105. height: math.unit(1.55, "meters"),
  23106. weight: math.unit(120, "lb"),
  23107. name: "Front",
  23108. image: {
  23109. source: "./media/characters/teeku-love-shack/front.svg",
  23110. extra: 387 / 362,
  23111. bottom: 1.51 / 388
  23112. }
  23113. },
  23114. },
  23115. [
  23116. {
  23117. name: "Shrunken",
  23118. height: math.unit(7, "cm")
  23119. },
  23120. {
  23121. name: "Human Scale",
  23122. height: math.unit(1.55, "meters")
  23123. },
  23124. {
  23125. name: "Wolxi Scale",
  23126. height: math.unit(34.1, "meters"),
  23127. default: true
  23128. },
  23129. ]
  23130. ))
  23131. characterMakers.push(() => makeCharacter(
  23132. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23133. {
  23134. front: {
  23135. height: math.unit(1.83, "meters"),
  23136. weight: math.unit(135, "lb"),
  23137. name: "Front",
  23138. image: {
  23139. source: "./media/characters/dejma-the-red/front.svg",
  23140. extra: 480 / 458,
  23141. bottom: 1.8 / 482
  23142. }
  23143. },
  23144. },
  23145. [
  23146. {
  23147. name: "Shrunken",
  23148. height: math.unit(8.3, "cm")
  23149. },
  23150. {
  23151. name: "Human Scale",
  23152. height: math.unit(1.83, "meters")
  23153. },
  23154. {
  23155. name: "Wolxi Scale",
  23156. height: math.unit(40, "meters"),
  23157. default: true
  23158. },
  23159. ]
  23160. ))
  23161. characterMakers.push(() => makeCharacter(
  23162. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23163. {
  23164. front: {
  23165. height: math.unit(1.78, "meters"),
  23166. weight: math.unit(65, "kg"),
  23167. name: "Front",
  23168. image: {
  23169. source: "./media/characters/aki/front.svg",
  23170. extra: 452 / 415
  23171. }
  23172. },
  23173. frontNsfw: {
  23174. height: math.unit(1.78, "meters"),
  23175. weight: math.unit(65, "kg"),
  23176. name: "Front (NSFW)",
  23177. image: {
  23178. source: "./media/characters/aki/front-nsfw.svg",
  23179. extra: 452 / 415
  23180. }
  23181. },
  23182. back: {
  23183. height: math.unit(1.78, "meters"),
  23184. weight: math.unit(65, "kg"),
  23185. name: "Back",
  23186. image: {
  23187. source: "./media/characters/aki/back.svg",
  23188. extra: 452 / 415
  23189. }
  23190. },
  23191. rump: {
  23192. height: math.unit(2.05, "feet"),
  23193. name: "Rump",
  23194. image: {
  23195. source: "./media/characters/aki/rump.svg"
  23196. }
  23197. },
  23198. dick: {
  23199. height: math.unit(0.95, "feet"),
  23200. name: "Dick",
  23201. image: {
  23202. source: "./media/characters/aki/dick.svg"
  23203. }
  23204. },
  23205. },
  23206. [
  23207. {
  23208. name: "Micro",
  23209. height: math.unit(15, "cm")
  23210. },
  23211. {
  23212. name: "Normal",
  23213. height: math.unit(178, "cm"),
  23214. default: true
  23215. },
  23216. {
  23217. name: "Macro",
  23218. height: math.unit(214, "m")
  23219. },
  23220. {
  23221. name: "Macro+",
  23222. height: math.unit(534, "m")
  23223. },
  23224. ]
  23225. ))
  23226. characterMakers.push(() => makeCharacter(
  23227. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23228. {
  23229. front: {
  23230. height: math.unit(5 + 5 / 12, "feet"),
  23231. weight: math.unit(120, "lb"),
  23232. name: "Front",
  23233. image: {
  23234. source: "./media/characters/ari/front.svg",
  23235. extra: 714.5 / 682,
  23236. bottom: 8 / 722.5
  23237. }
  23238. },
  23239. },
  23240. [
  23241. {
  23242. name: "Normal",
  23243. height: math.unit(5 + 5 / 12, "feet")
  23244. },
  23245. {
  23246. name: "Macro",
  23247. height: math.unit(100, "feet"),
  23248. default: true
  23249. },
  23250. {
  23251. name: "Megamacro",
  23252. height: math.unit(100, "miles")
  23253. },
  23254. {
  23255. name: "Gigamacro",
  23256. height: math.unit(80000, "miles")
  23257. },
  23258. ]
  23259. ))
  23260. characterMakers.push(() => makeCharacter(
  23261. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23262. {
  23263. side: {
  23264. height: math.unit(9, "feet"),
  23265. weight: math.unit(400, "kg"),
  23266. name: "Side",
  23267. image: {
  23268. source: "./media/characters/bolt/side.svg",
  23269. extra: 1126 / 896,
  23270. bottom: 60 / 1187.3,
  23271. }
  23272. },
  23273. },
  23274. [
  23275. {
  23276. name: "Micro",
  23277. height: math.unit(5, "inches")
  23278. },
  23279. {
  23280. name: "Normal",
  23281. height: math.unit(9, "feet"),
  23282. default: true
  23283. },
  23284. {
  23285. name: "Macro",
  23286. height: math.unit(700, "feet")
  23287. },
  23288. {
  23289. name: "Max Size",
  23290. height: math.unit(1.52e22, "yottameters")
  23291. },
  23292. ]
  23293. ))
  23294. characterMakers.push(() => makeCharacter(
  23295. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23296. {
  23297. front: {
  23298. height: math.unit(4.53, "meters"),
  23299. weight: math.unit(3, "tons"),
  23300. name: "Front",
  23301. image: {
  23302. source: "./media/characters/draekon-sylviar/front.svg",
  23303. extra: 1228 / 1068,
  23304. bottom: 41 / 1270
  23305. }
  23306. },
  23307. tail: {
  23308. height: math.unit(1.772, "meter"),
  23309. name: "Tail",
  23310. image: {
  23311. source: "./media/characters/draekon-sylviar/tail.svg"
  23312. }
  23313. },
  23314. head: {
  23315. height: math.unit(1.331, "meter"),
  23316. name: "Head",
  23317. image: {
  23318. source: "./media/characters/draekon-sylviar/head.svg"
  23319. }
  23320. },
  23321. hand: {
  23322. height: math.unit(0.564, "meter"),
  23323. name: "Hand",
  23324. image: {
  23325. source: "./media/characters/draekon-sylviar/hand.svg"
  23326. }
  23327. },
  23328. foot: {
  23329. height: math.unit(0.621, "meter"),
  23330. name: "Foot",
  23331. image: {
  23332. source: "./media/characters/draekon-sylviar/foot.svg",
  23333. bottom: 32 / 324
  23334. }
  23335. },
  23336. dick: {
  23337. height: math.unit(61, "cm"),
  23338. name: "Dick",
  23339. image: {
  23340. source: "./media/characters/draekon-sylviar/dick.svg"
  23341. }
  23342. },
  23343. dickseparated: {
  23344. height: math.unit(61, "cm"),
  23345. name: "Dick-separated",
  23346. image: {
  23347. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23348. }
  23349. },
  23350. },
  23351. [
  23352. {
  23353. name: "Small",
  23354. height: math.unit(4.53 / 2, "meters"),
  23355. default: true
  23356. },
  23357. {
  23358. name: "Normal",
  23359. height: math.unit(4.53, "meters"),
  23360. default: true
  23361. },
  23362. {
  23363. name: "Large",
  23364. height: math.unit(4.53 * 2, "meters"),
  23365. },
  23366. ]
  23367. ))
  23368. characterMakers.push(() => makeCharacter(
  23369. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23370. {
  23371. front: {
  23372. height: math.unit(6 + 2 / 12, "feet"),
  23373. weight: math.unit(180, "lb"),
  23374. name: "Front",
  23375. image: {
  23376. source: "./media/characters/brawler/front.svg",
  23377. extra: 3301 / 3027,
  23378. bottom: 138 / 3439
  23379. }
  23380. },
  23381. },
  23382. [
  23383. {
  23384. name: "Normal",
  23385. height: math.unit(6 + 2 / 12, "feet"),
  23386. default: true
  23387. },
  23388. ]
  23389. ))
  23390. characterMakers.push(() => makeCharacter(
  23391. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23392. {
  23393. front: {
  23394. height: math.unit(11, "feet"),
  23395. weight: math.unit(1000, "lb"),
  23396. name: "Front",
  23397. image: {
  23398. source: "./media/characters/alex/front.svg",
  23399. bottom: 44.5 / 620
  23400. }
  23401. },
  23402. },
  23403. [
  23404. {
  23405. name: "Micro",
  23406. height: math.unit(5, "inches")
  23407. },
  23408. {
  23409. name: "Normal",
  23410. height: math.unit(11, "feet"),
  23411. default: true
  23412. },
  23413. {
  23414. name: "Macro",
  23415. height: math.unit(9.5e9, "feet")
  23416. },
  23417. {
  23418. name: "Max Size",
  23419. height: math.unit(1.4e283, "yottameters")
  23420. },
  23421. ]
  23422. ))
  23423. characterMakers.push(() => makeCharacter(
  23424. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23425. {
  23426. female: {
  23427. height: math.unit(29.9, "m"),
  23428. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23429. name: "Female",
  23430. image: {
  23431. source: "./media/characters/zenari/female.svg",
  23432. extra: 3281.6 / 3217,
  23433. bottom: 72.2 / 3353
  23434. }
  23435. },
  23436. male: {
  23437. height: math.unit(27.7, "m"),
  23438. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23439. name: "Male",
  23440. image: {
  23441. source: "./media/characters/zenari/male.svg",
  23442. extra: 3008 / 2991,
  23443. bottom: 54.6 / 3069
  23444. }
  23445. },
  23446. },
  23447. [
  23448. {
  23449. name: "Macro",
  23450. height: math.unit(29.7, "meters"),
  23451. default: true
  23452. },
  23453. ]
  23454. ))
  23455. characterMakers.push(() => makeCharacter(
  23456. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23457. {
  23458. female: {
  23459. height: math.unit(23.8, "m"),
  23460. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23461. name: "Female",
  23462. image: {
  23463. source: "./media/characters/mactarian/female.svg",
  23464. extra: 2662 / 2569,
  23465. bottom: 73 / 2736
  23466. }
  23467. },
  23468. male: {
  23469. height: math.unit(23.8, "m"),
  23470. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23471. name: "Male",
  23472. image: {
  23473. source: "./media/characters/mactarian/male.svg",
  23474. extra: 2673 / 2600,
  23475. bottom: 76 / 2750
  23476. }
  23477. },
  23478. },
  23479. [
  23480. {
  23481. name: "Macro",
  23482. height: math.unit(23.8, "meters"),
  23483. default: true
  23484. },
  23485. ]
  23486. ))
  23487. characterMakers.push(() => makeCharacter(
  23488. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23489. {
  23490. female: {
  23491. height: math.unit(19.3, "m"),
  23492. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23493. name: "Female",
  23494. image: {
  23495. source: "./media/characters/umok/female.svg",
  23496. extra: 2186 / 2078,
  23497. bottom: 87 / 2277
  23498. }
  23499. },
  23500. male: {
  23501. height: math.unit(19.5, "m"),
  23502. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23503. name: "Male",
  23504. image: {
  23505. source: "./media/characters/umok/male.svg",
  23506. extra: 2233 / 2140,
  23507. bottom: 24.4 / 2258
  23508. }
  23509. },
  23510. },
  23511. [
  23512. {
  23513. name: "Macro",
  23514. height: math.unit(19.3, "meters"),
  23515. default: true
  23516. },
  23517. ]
  23518. ))
  23519. characterMakers.push(() => makeCharacter(
  23520. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23521. {
  23522. female: {
  23523. height: math.unit(26.15, "m"),
  23524. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23525. name: "Female",
  23526. image: {
  23527. source: "./media/characters/joraxian/female.svg",
  23528. extra: 2912 / 2824,
  23529. bottom: 36 / 2956
  23530. }
  23531. },
  23532. male: {
  23533. height: math.unit(25.4, "m"),
  23534. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23535. name: "Male",
  23536. image: {
  23537. source: "./media/characters/joraxian/male.svg",
  23538. extra: 2877 / 2721,
  23539. bottom: 82 / 2967
  23540. }
  23541. },
  23542. },
  23543. [
  23544. {
  23545. name: "Macro",
  23546. height: math.unit(26.15, "meters"),
  23547. default: true
  23548. },
  23549. ]
  23550. ))
  23551. characterMakers.push(() => makeCharacter(
  23552. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23553. {
  23554. female: {
  23555. height: math.unit(21.6, "m"),
  23556. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23557. name: "Female",
  23558. image: {
  23559. source: "./media/characters/sthara/female.svg",
  23560. extra: 2516 / 2347,
  23561. bottom: 21.5 / 2537
  23562. }
  23563. },
  23564. male: {
  23565. height: math.unit(24, "m"),
  23566. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23567. name: "Male",
  23568. image: {
  23569. source: "./media/characters/sthara/male.svg",
  23570. extra: 2732 / 2607,
  23571. bottom: 23 / 2732
  23572. }
  23573. },
  23574. },
  23575. [
  23576. {
  23577. name: "Macro",
  23578. height: math.unit(21.6, "meters"),
  23579. default: true
  23580. },
  23581. ]
  23582. ))
  23583. characterMakers.push(() => makeCharacter(
  23584. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23585. {
  23586. front: {
  23587. height: math.unit(6 + 4 / 12, "feet"),
  23588. weight: math.unit(175, "lb"),
  23589. name: "Front",
  23590. image: {
  23591. source: "./media/characters/luka-bryzant/front.svg",
  23592. extra: 311 / 289,
  23593. bottom: 4 / 315
  23594. }
  23595. },
  23596. back: {
  23597. height: math.unit(6 + 4 / 12, "feet"),
  23598. weight: math.unit(175, "lb"),
  23599. name: "Back",
  23600. image: {
  23601. source: "./media/characters/luka-bryzant/back.svg",
  23602. extra: 311 / 289,
  23603. bottom: 3.8 / 313.7
  23604. }
  23605. },
  23606. },
  23607. [
  23608. {
  23609. name: "Micro",
  23610. height: math.unit(10, "inches")
  23611. },
  23612. {
  23613. name: "Normal",
  23614. height: math.unit(6 + 4 / 12, "feet"),
  23615. default: true
  23616. },
  23617. {
  23618. name: "Large",
  23619. height: math.unit(12, "feet")
  23620. },
  23621. ]
  23622. ))
  23623. characterMakers.push(() => makeCharacter(
  23624. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23625. {
  23626. front: {
  23627. height: math.unit(5 + 7 / 12, "feet"),
  23628. weight: math.unit(185, "lb"),
  23629. name: "Front",
  23630. image: {
  23631. source: "./media/characters/aman-aquila/front.svg",
  23632. extra: 1013 / 976,
  23633. bottom: 45.6 / 1057
  23634. }
  23635. },
  23636. side: {
  23637. height: math.unit(5 + 7 / 12, "feet"),
  23638. weight: math.unit(185, "lb"),
  23639. name: "Side",
  23640. image: {
  23641. source: "./media/characters/aman-aquila/side.svg",
  23642. extra: 1054 / 1011,
  23643. bottom: 15 / 1070
  23644. }
  23645. },
  23646. back: {
  23647. height: math.unit(5 + 7 / 12, "feet"),
  23648. weight: math.unit(185, "lb"),
  23649. name: "Back",
  23650. image: {
  23651. source: "./media/characters/aman-aquila/back.svg",
  23652. extra: 1026 / 970,
  23653. bottom: 12 / 1039
  23654. }
  23655. },
  23656. head: {
  23657. height: math.unit(1.211, "feet"),
  23658. name: "Head",
  23659. image: {
  23660. source: "./media/characters/aman-aquila/head.svg",
  23661. }
  23662. },
  23663. },
  23664. [
  23665. {
  23666. name: "Minimicro",
  23667. height: math.unit(0.057, "inches")
  23668. },
  23669. {
  23670. name: "Micro",
  23671. height: math.unit(7, "inches")
  23672. },
  23673. {
  23674. name: "Mini",
  23675. height: math.unit(3 + 7 / 12, "feet")
  23676. },
  23677. {
  23678. name: "Normal",
  23679. height: math.unit(5 + 7 / 12, "feet"),
  23680. default: true
  23681. },
  23682. {
  23683. name: "Macro",
  23684. height: math.unit(157 + 7 / 12, "feet")
  23685. },
  23686. {
  23687. name: "Megamacro",
  23688. height: math.unit(1557 + 7 / 12, "feet")
  23689. },
  23690. {
  23691. name: "Gigamacro",
  23692. height: math.unit(15557 + 7 / 12, "feet")
  23693. },
  23694. ]
  23695. ))
  23696. characterMakers.push(() => makeCharacter(
  23697. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23698. {
  23699. front: {
  23700. height: math.unit(3 + 2 / 12, "inches"),
  23701. weight: math.unit(0.3, "ounces"),
  23702. name: "Front",
  23703. image: {
  23704. source: "./media/characters/hiphae/front.svg",
  23705. extra: 1931 / 1683,
  23706. bottom: 24 / 1955
  23707. }
  23708. },
  23709. },
  23710. [
  23711. {
  23712. name: "Normal",
  23713. height: math.unit(3 + 1 / 2, "inches"),
  23714. default: true
  23715. },
  23716. ]
  23717. ))
  23718. characterMakers.push(() => makeCharacter(
  23719. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23720. {
  23721. front: {
  23722. height: math.unit(5 + 10 / 12, "feet"),
  23723. weight: math.unit(165, "lb"),
  23724. name: "Front",
  23725. image: {
  23726. source: "./media/characters/nicky/front.svg",
  23727. extra: 3144 / 2886,
  23728. bottom: 45.6 / 3192
  23729. }
  23730. },
  23731. back: {
  23732. height: math.unit(5 + 10 / 12, "feet"),
  23733. weight: math.unit(165, "lb"),
  23734. name: "Back",
  23735. image: {
  23736. source: "./media/characters/nicky/back.svg",
  23737. extra: 3055 / 2804,
  23738. bottom: 28.4 / 3087
  23739. }
  23740. },
  23741. frontclothed: {
  23742. height: math.unit(5 + 10 / 12, "feet"),
  23743. weight: math.unit(165, "lb"),
  23744. name: "Front-clothed",
  23745. image: {
  23746. source: "./media/characters/nicky/front-clothed.svg",
  23747. extra: 3184.9 / 2926.9,
  23748. bottom: 86.5 / 3239.9
  23749. }
  23750. },
  23751. foot: {
  23752. height: math.unit(1.16, "feet"),
  23753. name: "Foot",
  23754. image: {
  23755. source: "./media/characters/nicky/foot.svg"
  23756. }
  23757. },
  23758. feet: {
  23759. height: math.unit(1.34, "feet"),
  23760. name: "Feet",
  23761. image: {
  23762. source: "./media/characters/nicky/feet.svg"
  23763. }
  23764. },
  23765. maw: {
  23766. height: math.unit(0.9, "feet"),
  23767. name: "Maw",
  23768. image: {
  23769. source: "./media/characters/nicky/maw.svg"
  23770. }
  23771. },
  23772. },
  23773. [
  23774. {
  23775. name: "Normal",
  23776. height: math.unit(5 + 10 / 12, "feet"),
  23777. default: true
  23778. },
  23779. {
  23780. name: "Macro",
  23781. height: math.unit(60, "feet")
  23782. },
  23783. {
  23784. name: "Megamacro",
  23785. height: math.unit(1, "mile")
  23786. },
  23787. ]
  23788. ))
  23789. characterMakers.push(() => makeCharacter(
  23790. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23791. {
  23792. side: {
  23793. height: math.unit(10, "feet"),
  23794. weight: math.unit(600, "lb"),
  23795. name: "Side",
  23796. image: {
  23797. source: "./media/characters/blair/side.svg",
  23798. bottom: 16.6 / 475,
  23799. extra: 458 / 431
  23800. }
  23801. },
  23802. },
  23803. [
  23804. {
  23805. name: "Micro",
  23806. height: math.unit(8, "inches")
  23807. },
  23808. {
  23809. name: "Normal",
  23810. height: math.unit(10, "feet"),
  23811. default: true
  23812. },
  23813. {
  23814. name: "Macro",
  23815. height: math.unit(180, "feet")
  23816. },
  23817. ]
  23818. ))
  23819. characterMakers.push(() => makeCharacter(
  23820. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23821. {
  23822. front: {
  23823. height: math.unit(5 + 4 / 12, "feet"),
  23824. weight: math.unit(125, "lb"),
  23825. name: "Front",
  23826. image: {
  23827. source: "./media/characters/fisher/front.svg",
  23828. extra: 444 / 390,
  23829. bottom: 2 / 444.8
  23830. }
  23831. },
  23832. },
  23833. [
  23834. {
  23835. name: "Micro",
  23836. height: math.unit(4, "inches")
  23837. },
  23838. {
  23839. name: "Normal",
  23840. height: math.unit(5 + 4 / 12, "feet"),
  23841. default: true
  23842. },
  23843. {
  23844. name: "Macro",
  23845. height: math.unit(100, "feet")
  23846. },
  23847. ]
  23848. ))
  23849. characterMakers.push(() => makeCharacter(
  23850. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23851. {
  23852. front: {
  23853. height: math.unit(6.71, "feet"),
  23854. weight: math.unit(200, "lb"),
  23855. capacity: math.unit(1000000, "people"),
  23856. name: "Front",
  23857. image: {
  23858. source: "./media/characters/gliss/front.svg",
  23859. extra: 2347 / 2231,
  23860. bottom: 113 / 2462
  23861. }
  23862. },
  23863. hammerspaceSize: {
  23864. height: math.unit(6.71 * 717, "feet"),
  23865. weight: math.unit(200, "lb"),
  23866. capacity: math.unit(1000000, "people"),
  23867. name: "Hammerspace Size",
  23868. image: {
  23869. source: "./media/characters/gliss/front.svg",
  23870. extra: 2347 / 2231,
  23871. bottom: 113 / 2462
  23872. }
  23873. },
  23874. },
  23875. [
  23876. {
  23877. name: "Normal",
  23878. height: math.unit(6.71, "feet"),
  23879. default: true
  23880. },
  23881. ]
  23882. ))
  23883. characterMakers.push(() => makeCharacter(
  23884. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  23885. {
  23886. side: {
  23887. height: math.unit(1.44, "m"),
  23888. weight: math.unit(80, "kg"),
  23889. name: "Side",
  23890. image: {
  23891. source: "./media/characters/dune-anderson/side.svg",
  23892. bottom: 49 / 1426
  23893. }
  23894. },
  23895. },
  23896. [
  23897. {
  23898. name: "Wolf-sized",
  23899. height: math.unit(1.44, "meters")
  23900. },
  23901. {
  23902. name: "Normal",
  23903. height: math.unit(5.05, "meters"),
  23904. default: true
  23905. },
  23906. {
  23907. name: "Big",
  23908. height: math.unit(14.4, "meters")
  23909. },
  23910. {
  23911. name: "Huge",
  23912. height: math.unit(144, "meters")
  23913. },
  23914. ]
  23915. ))
  23916. characterMakers.push(() => makeCharacter(
  23917. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  23918. {
  23919. front: {
  23920. height: math.unit(7, "feet"),
  23921. weight: math.unit(425, "lb"),
  23922. name: "Front",
  23923. image: {
  23924. source: "./media/characters/hind/front.svg",
  23925. extra: 2091 / 1860,
  23926. bottom: 129 / 2220
  23927. }
  23928. },
  23929. back: {
  23930. height: math.unit(7, "feet"),
  23931. weight: math.unit(425, "lb"),
  23932. name: "Back",
  23933. image: {
  23934. source: "./media/characters/hind/back.svg",
  23935. extra: 2091 / 1860,
  23936. bottom: 24.6 / 2309
  23937. }
  23938. },
  23939. tail: {
  23940. height: math.unit(2.8, "feet"),
  23941. name: "Tail",
  23942. image: {
  23943. source: "./media/characters/hind/tail.svg"
  23944. }
  23945. },
  23946. head: {
  23947. height: math.unit(2.55, "feet"),
  23948. name: "Head",
  23949. image: {
  23950. source: "./media/characters/hind/head.svg"
  23951. }
  23952. },
  23953. },
  23954. [
  23955. {
  23956. name: "XS",
  23957. height: math.unit(0.7, "feet")
  23958. },
  23959. {
  23960. name: "Normal",
  23961. height: math.unit(7, "feet"),
  23962. default: true
  23963. },
  23964. {
  23965. name: "XL",
  23966. height: math.unit(70, "feet")
  23967. },
  23968. ]
  23969. ))
  23970. characterMakers.push(() => makeCharacter(
  23971. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  23972. {
  23973. front: {
  23974. height: math.unit(6, "feet"),
  23975. weight: math.unit(150, "lb"),
  23976. name: "Front",
  23977. image: {
  23978. source: "./media/characters/dylan-skaven/front.svg",
  23979. extra: 2318 / 2063,
  23980. bottom: 93.4 / 2410
  23981. }
  23982. },
  23983. },
  23984. [
  23985. {
  23986. name: "Nano",
  23987. height: math.unit(1, "mm")
  23988. },
  23989. {
  23990. name: "Micro",
  23991. height: math.unit(1, "cm")
  23992. },
  23993. {
  23994. name: "Normal",
  23995. height: math.unit(2.1, "meters"),
  23996. default: true
  23997. },
  23998. ]
  23999. ))
  24000. characterMakers.push(() => makeCharacter(
  24001. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24002. {
  24003. front: {
  24004. height: math.unit(7 + 5 / 12, "feet"),
  24005. weight: math.unit(357, "lb"),
  24006. name: "Front",
  24007. image: {
  24008. source: "./media/characters/solex-draconov/front.svg",
  24009. extra: 1993 / 1865,
  24010. bottom: 117 / 2111
  24011. }
  24012. },
  24013. },
  24014. [
  24015. {
  24016. name: "Natural Height",
  24017. height: math.unit(7 + 5 / 12, "feet"),
  24018. default: true
  24019. },
  24020. {
  24021. name: "Macro",
  24022. height: math.unit(350, "feet")
  24023. },
  24024. {
  24025. name: "Macro+",
  24026. height: math.unit(1000, "feet")
  24027. },
  24028. {
  24029. name: "Megamacro",
  24030. height: math.unit(20, "km")
  24031. },
  24032. {
  24033. name: "Megamacro+",
  24034. height: math.unit(1000, "km")
  24035. },
  24036. {
  24037. name: "Gigamacro",
  24038. height: math.unit(2.5, "Gm")
  24039. },
  24040. {
  24041. name: "Teramacro",
  24042. height: math.unit(15, "Tm")
  24043. },
  24044. {
  24045. name: "Galactic",
  24046. height: math.unit(30, "Zm")
  24047. },
  24048. {
  24049. name: "Universal",
  24050. height: math.unit(21000, "Ym")
  24051. },
  24052. {
  24053. name: "Omniversal",
  24054. height: math.unit(9.861e50, "Ym")
  24055. },
  24056. {
  24057. name: "Existential",
  24058. height: math.unit(1e300, "meters")
  24059. },
  24060. ]
  24061. ))
  24062. characterMakers.push(() => makeCharacter(
  24063. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24064. {
  24065. side: {
  24066. height: math.unit(25, "feet"),
  24067. weight: math.unit(90000, "lb"),
  24068. name: "Side",
  24069. image: {
  24070. source: "./media/characters/mandarax/side.svg",
  24071. extra: 614 / 332,
  24072. bottom: 55 / 630
  24073. }
  24074. },
  24075. head: {
  24076. height: math.unit(11.4, "feet"),
  24077. name: "Head",
  24078. image: {
  24079. source: "./media/characters/mandarax/head.svg"
  24080. }
  24081. },
  24082. belly: {
  24083. height: math.unit(33, "feet"),
  24084. name: "Belly",
  24085. capacity: math.unit(500, "people"),
  24086. image: {
  24087. source: "./media/characters/mandarax/belly.svg"
  24088. }
  24089. },
  24090. dick: {
  24091. height: math.unit(8.46, "feet"),
  24092. name: "Dick",
  24093. image: {
  24094. source: "./media/characters/mandarax/dick.svg"
  24095. }
  24096. },
  24097. top: {
  24098. height: math.unit(28, "meters"),
  24099. name: "Top",
  24100. image: {
  24101. source: "./media/characters/mandarax/top.svg"
  24102. }
  24103. },
  24104. },
  24105. [
  24106. {
  24107. name: "Normal",
  24108. height: math.unit(25, "feet"),
  24109. default: true
  24110. },
  24111. ]
  24112. ))
  24113. characterMakers.push(() => makeCharacter(
  24114. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24115. {
  24116. front: {
  24117. height: math.unit(5, "feet"),
  24118. weight: math.unit(90, "lb"),
  24119. name: "Front",
  24120. image: {
  24121. source: "./media/characters/pixil/front.svg",
  24122. extra: 2000 / 1618,
  24123. bottom: 12.3 / 2011
  24124. }
  24125. },
  24126. },
  24127. [
  24128. {
  24129. name: "Normal",
  24130. height: math.unit(5, "feet"),
  24131. default: true
  24132. },
  24133. {
  24134. name: "Megamacro",
  24135. height: math.unit(10, "miles"),
  24136. },
  24137. ]
  24138. ))
  24139. characterMakers.push(() => makeCharacter(
  24140. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24141. {
  24142. front: {
  24143. height: math.unit(7 + 2 / 12, "feet"),
  24144. weight: math.unit(200, "lb"),
  24145. name: "Front",
  24146. image: {
  24147. source: "./media/characters/angel/front.svg",
  24148. extra: 1830 / 1737,
  24149. bottom: 22.6 / 1854,
  24150. }
  24151. },
  24152. },
  24153. [
  24154. {
  24155. name: "Normal",
  24156. height: math.unit(7 + 2 / 12, "feet"),
  24157. default: true
  24158. },
  24159. {
  24160. name: "Macro",
  24161. height: math.unit(1000, "feet")
  24162. },
  24163. {
  24164. name: "Megamacro",
  24165. height: math.unit(2, "miles")
  24166. },
  24167. {
  24168. name: "Gigamacro",
  24169. height: math.unit(20, "earths")
  24170. },
  24171. ]
  24172. ))
  24173. characterMakers.push(() => makeCharacter(
  24174. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24175. {
  24176. front: {
  24177. height: math.unit(5, "feet"),
  24178. weight: math.unit(180, "lb"),
  24179. name: "Front",
  24180. image: {
  24181. source: "./media/characters/mekana/front.svg",
  24182. extra: 1671 / 1605,
  24183. bottom: 3.5 / 1691
  24184. }
  24185. },
  24186. side: {
  24187. height: math.unit(5, "feet"),
  24188. weight: math.unit(180, "lb"),
  24189. name: "Side",
  24190. image: {
  24191. source: "./media/characters/mekana/side.svg",
  24192. extra: 1671 / 1605,
  24193. bottom: 3.5 / 1691
  24194. }
  24195. },
  24196. back: {
  24197. height: math.unit(5, "feet"),
  24198. weight: math.unit(180, "lb"),
  24199. name: "Back",
  24200. image: {
  24201. source: "./media/characters/mekana/back.svg",
  24202. extra: 1671 / 1605,
  24203. bottom: 3.5 / 1691
  24204. }
  24205. },
  24206. },
  24207. [
  24208. {
  24209. name: "Normal",
  24210. height: math.unit(5, "feet"),
  24211. default: true
  24212. },
  24213. ]
  24214. ))
  24215. characterMakers.push(() => makeCharacter(
  24216. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24217. {
  24218. front: {
  24219. height: math.unit(4 + 6 / 12, "feet"),
  24220. weight: math.unit(80, "lb"),
  24221. name: "Front",
  24222. image: {
  24223. source: "./media/characters/pixie/front.svg",
  24224. extra: 1924 / 1825,
  24225. bottom: 22.4 / 1946
  24226. }
  24227. },
  24228. },
  24229. [
  24230. {
  24231. name: "Normal",
  24232. height: math.unit(4 + 6 / 12, "feet"),
  24233. default: true
  24234. },
  24235. {
  24236. name: "Macro",
  24237. height: math.unit(40, "feet")
  24238. },
  24239. ]
  24240. ))
  24241. characterMakers.push(() => makeCharacter(
  24242. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24243. {
  24244. front: {
  24245. height: math.unit(2.1, "meters"),
  24246. weight: math.unit(200, "lb"),
  24247. name: "Front",
  24248. image: {
  24249. source: "./media/characters/the-lascivious/front.svg",
  24250. extra: 1 / 0.893,
  24251. bottom: 3.5 / 573.7
  24252. }
  24253. },
  24254. },
  24255. [
  24256. {
  24257. name: "Human Scale",
  24258. height: math.unit(2.1, "meters")
  24259. },
  24260. {
  24261. name: "Wolxi Scale",
  24262. height: math.unit(46.2, "m"),
  24263. default: true
  24264. },
  24265. {
  24266. name: "Boinker of Buildings",
  24267. height: math.unit(10, "km")
  24268. },
  24269. {
  24270. name: "Shagger of Skyscrapers",
  24271. height: math.unit(40, "km")
  24272. },
  24273. {
  24274. name: "Banger of Boroughs",
  24275. height: math.unit(4000, "km")
  24276. },
  24277. {
  24278. name: "Screwer of States",
  24279. height: math.unit(100000, "km")
  24280. },
  24281. {
  24282. name: "Pounder of Planets",
  24283. height: math.unit(2000000, "km")
  24284. },
  24285. ]
  24286. ))
  24287. characterMakers.push(() => makeCharacter(
  24288. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24289. {
  24290. front: {
  24291. height: math.unit(6, "feet"),
  24292. weight: math.unit(150, "lb"),
  24293. name: "Front",
  24294. image: {
  24295. source: "./media/characters/aj/front.svg",
  24296. extra: 2039 / 1562,
  24297. bottom: 40 / 2079
  24298. }
  24299. },
  24300. },
  24301. [
  24302. {
  24303. name: "Normal",
  24304. height: math.unit(11 + 6 / 12, "feet"),
  24305. default: true
  24306. },
  24307. {
  24308. name: "Megamacro",
  24309. height: math.unit(60, "megameters")
  24310. },
  24311. ]
  24312. ))
  24313. characterMakers.push(() => makeCharacter(
  24314. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24315. {
  24316. side: {
  24317. height: math.unit(31 + 8/12, "feet"),
  24318. weight: math.unit(75000, "kg"),
  24319. name: "Side",
  24320. image: {
  24321. source: "./media/characters/koros/side.svg",
  24322. extra: 1442/1297,
  24323. bottom: 122.7/1562
  24324. }
  24325. },
  24326. dicksKingsCrown: {
  24327. height: math.unit(6, "feet"),
  24328. name: "Dicks (King's Crown)",
  24329. image: {
  24330. source: "./media/characters/koros/dicks-kings-crown.svg"
  24331. }
  24332. },
  24333. dicksTailSet: {
  24334. height: math.unit(3, "feet"),
  24335. name: "Dicks (Tail Set)",
  24336. image: {
  24337. source: "./media/characters/koros/dicks-tail-set.svg"
  24338. }
  24339. },
  24340. dickCumming: {
  24341. height: math.unit(7.98, "feet"),
  24342. name: "Dick (Cumming)",
  24343. image: {
  24344. source: "./media/characters/koros/dick-cumming.svg"
  24345. }
  24346. },
  24347. dicksBack: {
  24348. height: math.unit(5.9, "feet"),
  24349. name: "Dicks (Back)",
  24350. image: {
  24351. source: "./media/characters/koros/dicks-back.svg"
  24352. }
  24353. },
  24354. dicksFront: {
  24355. height: math.unit(3.72, "feet"),
  24356. name: "Dicks (Front)",
  24357. image: {
  24358. source: "./media/characters/koros/dicks-front.svg"
  24359. }
  24360. },
  24361. dicksPeeking: {
  24362. height: math.unit(3.0, "feet"),
  24363. name: "Dicks (Peeking)",
  24364. image: {
  24365. source: "./media/characters/koros/dicks-peeking.svg"
  24366. }
  24367. },
  24368. eye: {
  24369. height: math.unit(1.7, "feet"),
  24370. name: "Eye",
  24371. image: {
  24372. source: "./media/characters/koros/eye.svg"
  24373. }
  24374. },
  24375. headFront: {
  24376. height: math.unit(11.69, "feet"),
  24377. name: "Head (Front)",
  24378. image: {
  24379. source: "./media/characters/koros/head-front.svg"
  24380. }
  24381. },
  24382. headSide: {
  24383. height: math.unit(14, "feet"),
  24384. name: "Head (Side)",
  24385. image: {
  24386. source: "./media/characters/koros/head-side.svg"
  24387. }
  24388. },
  24389. leg: {
  24390. height: math.unit(17, "feet"),
  24391. name: "Leg",
  24392. image: {
  24393. source: "./media/characters/koros/leg.svg"
  24394. }
  24395. },
  24396. mawSide: {
  24397. height: math.unit(12.8, "feet"),
  24398. name: "Maw (Side)",
  24399. image: {
  24400. source: "./media/characters/koros/maw-side.svg"
  24401. }
  24402. },
  24403. mawSpitting: {
  24404. height: math.unit(17, "feet"),
  24405. name: "Maw (Spitting)",
  24406. image: {
  24407. source: "./media/characters/koros/maw-spitting.svg"
  24408. }
  24409. },
  24410. slit: {
  24411. height: math.unit(2.8, "feet"),
  24412. name: "Slit",
  24413. image: {
  24414. source: "./media/characters/koros/slit.svg"
  24415. }
  24416. },
  24417. stomach: {
  24418. height: math.unit(6.8, "feet"),
  24419. capacity: math.unit(20, "people"),
  24420. name: "Stomach",
  24421. image: {
  24422. source: "./media/characters/koros/stomach.svg"
  24423. }
  24424. },
  24425. wingspanBottom: {
  24426. height: math.unit(114, "feet"),
  24427. name: "Wingspan (Bottom)",
  24428. image: {
  24429. source: "./media/characters/koros/wingspan-bottom.svg"
  24430. }
  24431. },
  24432. wingspanTop: {
  24433. height: math.unit(104, "feet"),
  24434. name: "Wingspan (Top)",
  24435. image: {
  24436. source: "./media/characters/koros/wingspan-top.svg"
  24437. }
  24438. },
  24439. },
  24440. [
  24441. {
  24442. name: "Normal",
  24443. height: math.unit(31 + 8/12, "feet"),
  24444. default: true
  24445. },
  24446. ]
  24447. ))
  24448. characterMakers.push(() => makeCharacter(
  24449. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24450. {
  24451. front: {
  24452. height: math.unit(18 + 5/12, "feet"),
  24453. weight: math.unit(3750, "kg"),
  24454. name: "Front",
  24455. image: {
  24456. source: "./media/characters/vexx/front.svg",
  24457. extra: 426/396,
  24458. bottom: 31.5/458
  24459. }
  24460. },
  24461. maw: {
  24462. height: math.unit(6, "feet"),
  24463. name: "Maw",
  24464. image: {
  24465. source: "./media/characters/vexx/maw.svg"
  24466. }
  24467. },
  24468. },
  24469. [
  24470. {
  24471. name: "Normal",
  24472. height: math.unit(18 + 5/12, "feet"),
  24473. default: true
  24474. },
  24475. ]
  24476. ))
  24477. characterMakers.push(() => makeCharacter(
  24478. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24479. {
  24480. front: {
  24481. height: math.unit(17 + 6/12, "feet"),
  24482. weight: math.unit(150, "lb"),
  24483. name: "Front",
  24484. image: {
  24485. source: "./media/characters/baadra/front.svg",
  24486. extra: 3137/2890,
  24487. bottom: 168.4/3305
  24488. }
  24489. },
  24490. back: {
  24491. height: math.unit(17 + 6/12, "feet"),
  24492. weight: math.unit(150, "lb"),
  24493. name: "Back",
  24494. image: {
  24495. source: "./media/characters/baadra/back.svg",
  24496. extra: 3142/2890,
  24497. bottom: 220/3371
  24498. }
  24499. },
  24500. head: {
  24501. height: math.unit(5.45, "feet"),
  24502. name: "Head",
  24503. image: {
  24504. source: "./media/characters/baadra/head.svg"
  24505. }
  24506. },
  24507. headAngry: {
  24508. height: math.unit(4.95, "feet"),
  24509. name: "Head (Angry)",
  24510. image: {
  24511. source: "./media/characters/baadra/head-angry.svg"
  24512. }
  24513. },
  24514. headOpen: {
  24515. height: math.unit(6, "feet"),
  24516. name: "Head (Open)",
  24517. image: {
  24518. source: "./media/characters/baadra/head-open.svg"
  24519. }
  24520. },
  24521. },
  24522. [
  24523. {
  24524. name: "Normal",
  24525. height: math.unit(17 + 6/12, "feet"),
  24526. default: true
  24527. },
  24528. ]
  24529. ))
  24530. characterMakers.push(() => makeCharacter(
  24531. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24532. {
  24533. front: {
  24534. height: math.unit(7 + 3/12, "feet"),
  24535. weight: math.unit(180, "lb"),
  24536. name: "Front",
  24537. image: {
  24538. source: "./media/characters/juri/front.svg",
  24539. extra: 1401/1237,
  24540. bottom: 18.5/1418
  24541. }
  24542. },
  24543. side: {
  24544. height: math.unit(7 + 3/12, "feet"),
  24545. weight: math.unit(180, "lb"),
  24546. name: "Side",
  24547. image: {
  24548. source: "./media/characters/juri/side.svg",
  24549. extra: 1424/1242,
  24550. bottom: 18.5/1447
  24551. }
  24552. },
  24553. sitting: {
  24554. height: math.unit(6, "feet"),
  24555. weight: math.unit(180, "lb"),
  24556. name: "Sitting",
  24557. image: {
  24558. source: "./media/characters/juri/sitting.svg",
  24559. extra: 1270/1143,
  24560. bottom: 100/1343
  24561. }
  24562. },
  24563. back: {
  24564. height: math.unit(7 + 3/12, "feet"),
  24565. weight: math.unit(180, "lb"),
  24566. name: "Back",
  24567. image: {
  24568. source: "./media/characters/juri/back.svg",
  24569. extra: 1377/1240,
  24570. bottom: 23.7/1405
  24571. }
  24572. },
  24573. maw: {
  24574. height: math.unit(2.8, "feet"),
  24575. name: "Maw",
  24576. image: {
  24577. source: "./media/characters/juri/maw.svg"
  24578. }
  24579. },
  24580. stomach: {
  24581. height: math.unit(0.89, "feet"),
  24582. capacity: math.unit(4, "liters"),
  24583. name: "Stomach",
  24584. image: {
  24585. source: "./media/characters/juri/stomach.svg"
  24586. }
  24587. },
  24588. },
  24589. [
  24590. {
  24591. name: "Normal",
  24592. height: math.unit(7 + 3/12, "feet"),
  24593. default: true
  24594. },
  24595. ]
  24596. ))
  24597. characterMakers.push(() => makeCharacter(
  24598. { name: "Maxene Sita", species: ["fox"], tags: ["anthro"] },
  24599. {
  24600. fox: {
  24601. height: math.unit(5 + 6/12, "feet"),
  24602. weight: math.unit(140, "lb"),
  24603. name: "Fox",
  24604. image: {
  24605. source: "./media/characters/maxene-sita/fox.svg",
  24606. extra: 146/138,
  24607. bottom: 2.1/148.19
  24608. }
  24609. },
  24610. kitsune: {
  24611. height: math.unit(10, "feet"),
  24612. weight: math.unit(800, "lb"),
  24613. name: "Kitsune",
  24614. image: {
  24615. source: "./media/characters/maxene-sita/kitsune.svg",
  24616. extra: 185/176,
  24617. bottom: 4.7/189.9
  24618. }
  24619. },
  24620. },
  24621. [
  24622. {
  24623. name: "Normal",
  24624. height: math.unit(5 + 6/12, "feet"),
  24625. default: true
  24626. },
  24627. ]
  24628. ))
  24629. characterMakers.push(() => makeCharacter(
  24630. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24631. {
  24632. front: {
  24633. height: math.unit(3 + 4/12, "feet"),
  24634. weight: math.unit(70, "lb"),
  24635. name: "Front",
  24636. image: {
  24637. source: "./media/characters/maia/front.svg",
  24638. extra: 227/219.5,
  24639. bottom: 40 / 267
  24640. }
  24641. },
  24642. back: {
  24643. height: math.unit(3 + 4/12, "feet"),
  24644. weight: math.unit(70, "lb"),
  24645. name: "Back",
  24646. image: {
  24647. source: "./media/characters/maia/back.svg",
  24648. extra: 237/225
  24649. }
  24650. },
  24651. },
  24652. [
  24653. {
  24654. name: "Normal",
  24655. height: math.unit(3 + 4/12, "feet"),
  24656. default: true
  24657. },
  24658. ]
  24659. ))
  24660. characterMakers.push(() => makeCharacter(
  24661. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24662. {
  24663. front: {
  24664. height: math.unit(5 + 10/12, "feet"),
  24665. weight: math.unit(197, "lb"),
  24666. name: "Front",
  24667. image: {
  24668. source: "./media/characters/jabaro/front.svg",
  24669. extra: 225/216,
  24670. bottom: 5.06/230
  24671. }
  24672. },
  24673. back: {
  24674. height: math.unit(5 + 10/12, "feet"),
  24675. weight: math.unit(197, "lb"),
  24676. name: "Back",
  24677. image: {
  24678. source: "./media/characters/jabaro/back.svg",
  24679. extra: 225/219,
  24680. bottom: 1.9/227
  24681. }
  24682. },
  24683. },
  24684. [
  24685. {
  24686. name: "Normal",
  24687. height: math.unit(5 + 10/12, "feet"),
  24688. default: true
  24689. },
  24690. ]
  24691. ))
  24692. characterMakers.push(() => makeCharacter(
  24693. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24694. {
  24695. front: {
  24696. height: math.unit(5 + 8/12, "feet"),
  24697. weight: math.unit(139, "lb"),
  24698. name: "Front",
  24699. image: {
  24700. source: "./media/characters/risa/front.svg",
  24701. extra: 270/260,
  24702. bottom: 11.2/282
  24703. }
  24704. },
  24705. back: {
  24706. height: math.unit(5 + 8/12, "feet"),
  24707. weight: math.unit(139, "lb"),
  24708. name: "Back",
  24709. image: {
  24710. source: "./media/characters/risa/back.svg",
  24711. extra: 264/255,
  24712. bottom: 4/268
  24713. }
  24714. },
  24715. },
  24716. [
  24717. {
  24718. name: "Normal",
  24719. height: math.unit(5 + 8/12, "feet"),
  24720. default: true
  24721. },
  24722. ]
  24723. ))
  24724. characterMakers.push(() => makeCharacter(
  24725. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  24726. {
  24727. front: {
  24728. height: math.unit(2 + 11/12, "feet"),
  24729. weight: math.unit(30, "lb"),
  24730. name: "Front",
  24731. image: {
  24732. source: "./media/characters/weatley/front.svg",
  24733. bottom: 10.7/414,
  24734. extra: 403.5/362
  24735. }
  24736. },
  24737. back: {
  24738. height: math.unit(2 + 11/12, "feet"),
  24739. weight: math.unit(30, "lb"),
  24740. name: "Back",
  24741. image: {
  24742. source: "./media/characters/weatley/back.svg",
  24743. bottom: 10.7/414,
  24744. extra: 403.5/362
  24745. }
  24746. },
  24747. },
  24748. [
  24749. {
  24750. name: "Normal",
  24751. height: math.unit(2 + 11/12, "feet"),
  24752. default: true
  24753. },
  24754. ]
  24755. ))
  24756. characterMakers.push(() => makeCharacter(
  24757. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  24758. {
  24759. front: {
  24760. height: math.unit(5 + 2/12, "feet"),
  24761. weight: math.unit(50, "kg"),
  24762. name: "Front",
  24763. image: {
  24764. source: "./media/characters/mercury-crescent/front.svg",
  24765. extra: 1088/1033,
  24766. bottom: 18.9/1109
  24767. }
  24768. },
  24769. },
  24770. [
  24771. {
  24772. name: "Normal",
  24773. height: math.unit(5 + 2/12, "feet"),
  24774. default: true
  24775. },
  24776. ]
  24777. ))
  24778. characterMakers.push(() => makeCharacter(
  24779. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  24780. {
  24781. front: {
  24782. height: math.unit(2, "feet"),
  24783. weight: math.unit(15, "kg"),
  24784. name: "Front",
  24785. image: {
  24786. source: "./media/characters/diamond-jones/front.svg",
  24787. bottom: 16/568
  24788. }
  24789. },
  24790. },
  24791. [
  24792. {
  24793. name: "Normal",
  24794. height: math.unit(2, "feet"),
  24795. default: true
  24796. },
  24797. ]
  24798. ))
  24799. characterMakers.push(() => makeCharacter(
  24800. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  24801. {
  24802. front: {
  24803. height: math.unit(3, "feet"),
  24804. weight: math.unit(30, "kg"),
  24805. name: "Front",
  24806. image: {
  24807. source: "./media/characters/sweet-bit/front.svg",
  24808. extra: 675/567,
  24809. bottom: 27.7/703
  24810. }
  24811. },
  24812. },
  24813. [
  24814. {
  24815. name: "Normal",
  24816. height: math.unit(3, "feet"),
  24817. default: true
  24818. },
  24819. ]
  24820. ))
  24821. characterMakers.push(() => makeCharacter(
  24822. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  24823. {
  24824. side: {
  24825. height: math.unit(9.178, "feet"),
  24826. weight: math.unit(500, "lb"),
  24827. name: "Side",
  24828. image: {
  24829. source: "./media/characters/umbrazen/side.svg",
  24830. extra: 1730/1473,
  24831. bottom: 34.6/1765
  24832. }
  24833. },
  24834. },
  24835. [
  24836. {
  24837. name: "Normal",
  24838. height: math.unit(9.178, "feet"),
  24839. default: true
  24840. },
  24841. ]
  24842. ))
  24843. characterMakers.push(() => makeCharacter(
  24844. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  24845. {
  24846. front: {
  24847. height: math.unit(10, "feet"),
  24848. weight: math.unit(750, "lb"),
  24849. name: "Front",
  24850. image: {
  24851. source: "./media/characters/arlist/front.svg",
  24852. extra: 961/778,
  24853. bottom: 6.2/986
  24854. }
  24855. },
  24856. },
  24857. [
  24858. {
  24859. name: "Normal",
  24860. height: math.unit(10, "feet"),
  24861. default: true
  24862. },
  24863. ]
  24864. ))
  24865. characterMakers.push(() => makeCharacter(
  24866. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  24867. {
  24868. front: {
  24869. height: math.unit(5 + 1/12, "feet"),
  24870. weight: math.unit(110, "lb"),
  24871. name: "Front",
  24872. image: {
  24873. source: "./media/characters/aradel/front.svg",
  24874. extra: 324/303,
  24875. bottom: 3.6/329.4
  24876. }
  24877. },
  24878. },
  24879. [
  24880. {
  24881. name: "Normal",
  24882. height: math.unit(5 + 1/12, "feet"),
  24883. default: true
  24884. },
  24885. ]
  24886. ))
  24887. characterMakers.push(() => makeCharacter(
  24888. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  24889. {
  24890. front: {
  24891. height: math.unit(3 + 8/12, "feet"),
  24892. weight: math.unit(50, "lb"),
  24893. name: "Front",
  24894. image: {
  24895. source: "./media/characters/serryn/front.svg",
  24896. extra: 1792/1656,
  24897. bottom: 43.5/1840
  24898. }
  24899. },
  24900. },
  24901. [
  24902. {
  24903. name: "Normal",
  24904. height: math.unit(3 + 8/12, "feet"),
  24905. default: true
  24906. },
  24907. ]
  24908. ))
  24909. characterMakers.push(() => makeCharacter(
  24910. { name: "Xavier Thyme" },
  24911. {
  24912. front: {
  24913. height: math.unit(7 + 10/12, "feet"),
  24914. weight: math.unit(255, "lb"),
  24915. name: "Front",
  24916. image: {
  24917. source: "./media/characters/xavier-thyme/front.svg",
  24918. extra: 3733/3642,
  24919. bottom: 131/3869
  24920. }
  24921. },
  24922. frontRaven: {
  24923. height: math.unit(7 + 10/12, "feet"),
  24924. weight: math.unit(255, "lb"),
  24925. name: "Front (Raven)",
  24926. image: {
  24927. source: "./media/characters/xavier-thyme/front-raven.svg",
  24928. extra: 4385/3642,
  24929. bottom: 131/4517
  24930. }
  24931. },
  24932. },
  24933. [
  24934. {
  24935. name: "Normal",
  24936. height: math.unit(7 + 10/12, "feet"),
  24937. default: true
  24938. },
  24939. ]
  24940. ))
  24941. characterMakers.push(() => makeCharacter(
  24942. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  24943. {
  24944. front: {
  24945. height: math.unit(1.6, "m"),
  24946. weight: math.unit(50, "kg"),
  24947. name: "Front",
  24948. image: {
  24949. source: "./media/characters/kiki/front.svg",
  24950. extra: 4682/3610,
  24951. bottom: 115/4777
  24952. }
  24953. },
  24954. },
  24955. [
  24956. {
  24957. name: "Normal",
  24958. height: math.unit(1.6, "meters"),
  24959. default: true
  24960. },
  24961. ]
  24962. ))
  24963. characterMakers.push(() => makeCharacter(
  24964. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  24965. {
  24966. front: {
  24967. height: math.unit(50, "m"),
  24968. weight: math.unit(500, "tonnes"),
  24969. name: "Front",
  24970. image: {
  24971. source: "./media/characters/ryoko/front.svg",
  24972. extra: 4632/3926,
  24973. bottom: 193/4823
  24974. }
  24975. },
  24976. },
  24977. [
  24978. {
  24979. name: "Normal",
  24980. height: math.unit(50, "meters"),
  24981. default: true
  24982. },
  24983. ]
  24984. ))
  24985. characterMakers.push(() => makeCharacter(
  24986. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  24987. {
  24988. front: {
  24989. height: math.unit(30, "m"),
  24990. weight: math.unit(22, "tonnes"),
  24991. name: "Front",
  24992. image: {
  24993. source: "./media/characters/elio/front.svg",
  24994. extra: 4582/3720,
  24995. bottom: 236/4828
  24996. }
  24997. },
  24998. },
  24999. [
  25000. {
  25001. name: "Normal",
  25002. height: math.unit(30, "meters"),
  25003. default: true
  25004. },
  25005. ]
  25006. ))
  25007. characterMakers.push(() => makeCharacter(
  25008. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25009. {
  25010. front: {
  25011. height: math.unit(6 + 3/12, "feet"),
  25012. weight: math.unit(120, "lb"),
  25013. name: "Front",
  25014. image: {
  25015. source: "./media/characters/azura/front.svg",
  25016. extra: 1149/1135,
  25017. bottom: 45/1194
  25018. }
  25019. },
  25020. frontClothed: {
  25021. height: math.unit(6 + 3/12, "feet"),
  25022. weight: math.unit(120, "lb"),
  25023. name: "Front (Clothed)",
  25024. image: {
  25025. source: "./media/characters/azura/front-clothed.svg",
  25026. extra: 1149/1135,
  25027. bottom: 45/1194
  25028. }
  25029. },
  25030. },
  25031. [
  25032. {
  25033. name: "Normal",
  25034. height: math.unit(6 + 3/12, "feet"),
  25035. default: true
  25036. },
  25037. {
  25038. name: "Macro",
  25039. height: math.unit(20 + 6/12, "feet")
  25040. },
  25041. {
  25042. name: "Megamacro",
  25043. height: math.unit(12, "miles")
  25044. },
  25045. {
  25046. name: "Gigamacro",
  25047. height: math.unit(10000, "miles")
  25048. },
  25049. {
  25050. name: "Teramacro",
  25051. height: math.unit(900000, "miles")
  25052. },
  25053. ]
  25054. ))
  25055. characterMakers.push(() => makeCharacter(
  25056. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25057. {
  25058. front: {
  25059. height: math.unit(12, "feet"),
  25060. weight: math.unit(1, "ton"),
  25061. capacity: math.unit(660000, "gallons"),
  25062. name: "Front",
  25063. image: {
  25064. source: "./media/characters/zeus/front.svg",
  25065. extra: 5005/4717,
  25066. bottom: 363/5388
  25067. }
  25068. },
  25069. },
  25070. [
  25071. {
  25072. name: "Normal",
  25073. height: math.unit(12, "feet")
  25074. },
  25075. {
  25076. name: "Preferred Size",
  25077. height: math.unit(0.5, "miles"),
  25078. default: true
  25079. },
  25080. {
  25081. name: "Giga Horse",
  25082. height: math.unit(300, "miles")
  25083. },
  25084. {
  25085. name: "Riding Planets",
  25086. height: math.unit(30, "megameters")
  25087. },
  25088. {
  25089. name: "Cosmic Giant",
  25090. height: math.unit(3, "zettameters")
  25091. },
  25092. {
  25093. name: "Breeding God",
  25094. height: math.unit(9.92e22, "yottameters")
  25095. },
  25096. ]
  25097. ))
  25098. characterMakers.push(() => makeCharacter(
  25099. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25100. {
  25101. side: {
  25102. height: math.unit(9, "feet"),
  25103. weight: math.unit(1500, "kg"),
  25104. name: "Side",
  25105. image: {
  25106. source: "./media/characters/fang/side.svg",
  25107. extra: 924/866,
  25108. bottom: 47.5/972.3
  25109. }
  25110. },
  25111. },
  25112. [
  25113. {
  25114. name: "Normal",
  25115. height: math.unit(9, "feet"),
  25116. default: true
  25117. },
  25118. {
  25119. name: "Macro",
  25120. height: math.unit(75 + 6/12, "feet")
  25121. },
  25122. {
  25123. name: "Teramacro",
  25124. height: math.unit(50000, "miles")
  25125. },
  25126. ]
  25127. ))
  25128. characterMakers.push(() => makeCharacter(
  25129. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25130. {
  25131. front: {
  25132. height: math.unit(10, "feet"),
  25133. weight: math.unit(2, "tons"),
  25134. name: "Front",
  25135. image: {
  25136. source: "./media/characters/rekhit/front.svg",
  25137. extra: 2796/2590,
  25138. bottom: 225/3022
  25139. }
  25140. },
  25141. },
  25142. [
  25143. {
  25144. name: "Normal",
  25145. height: math.unit(10, "feet"),
  25146. default: true
  25147. },
  25148. {
  25149. name: "Macro",
  25150. height: math.unit(500, "feet")
  25151. },
  25152. ]
  25153. ))
  25154. characterMakers.push(() => makeCharacter(
  25155. { name: "Dahlia Verrick" },
  25156. {
  25157. front: {
  25158. height: math.unit(7 + 6.451/12, "feet"),
  25159. weight: math.unit(310, "lb"),
  25160. name: "Front",
  25161. image: {
  25162. source: "./media/characters/dahlia-verrick/front.svg",
  25163. extra: 1488/1365,
  25164. bottom: 6.2/1495
  25165. }
  25166. },
  25167. back: {
  25168. height: math.unit(7 + 6.451/12, "feet"),
  25169. weight: math.unit(310, "lb"),
  25170. name: "Back",
  25171. image: {
  25172. source: "./media/characters/dahlia-verrick/back.svg",
  25173. extra: 1472/1351,
  25174. bottom: 5.28/1477
  25175. }
  25176. },
  25177. frontBusiness: {
  25178. height: math.unit(7 + 6.451/12, "feet"),
  25179. weight: math.unit(200, "lb"),
  25180. name: "Front (Business)",
  25181. image: {
  25182. source: "./media/characters/dahlia-verrick/front-business.svg",
  25183. extra: 1478/1381,
  25184. bottom: 5.5/1484
  25185. }
  25186. },
  25187. frontCasual: {
  25188. height: math.unit(7 + 6.451/12, "feet"),
  25189. weight: math.unit(200, "lb"),
  25190. name: "Front (Casual)",
  25191. image: {
  25192. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25193. extra: 1478/1381,
  25194. bottom: 5.5/1484
  25195. }
  25196. },
  25197. },
  25198. [
  25199. {
  25200. name: "Travel-Sized",
  25201. height: math.unit(7.45, "inches")
  25202. },
  25203. {
  25204. name: "Normal",
  25205. height: math.unit(7 + 6.451/12, "feet"),
  25206. default: true
  25207. },
  25208. {
  25209. name: "Hitting the Town",
  25210. height: math.unit(37 + 8/12, "feet")
  25211. },
  25212. {
  25213. name: "Stomp in the Suburbs",
  25214. height: math.unit(964 + 9.728/12, "feet")
  25215. },
  25216. {
  25217. name: "Sit on the City",
  25218. height: math.unit(61747 + 10.592/12, "feet")
  25219. },
  25220. {
  25221. name: "Glomp the Globe",
  25222. height: math.unit(252919327 + 4.832/12, "feet")
  25223. },
  25224. ]
  25225. ))
  25226. characterMakers.push(() => makeCharacter(
  25227. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25228. {
  25229. front: {
  25230. height: math.unit(6 + 4/12, "feet"),
  25231. weight: math.unit(320, "lb"),
  25232. name: "Front",
  25233. image: {
  25234. source: "./media/characters/balina-mahigan/front.svg",
  25235. extra: 447/428,
  25236. bottom: 18/466
  25237. }
  25238. },
  25239. back: {
  25240. height: math.unit(6 + 4/12, "feet"),
  25241. weight: math.unit(320, "lb"),
  25242. name: "Back",
  25243. image: {
  25244. source: "./media/characters/balina-mahigan/back.svg",
  25245. extra: 445/428,
  25246. bottom: 4.07/448
  25247. }
  25248. },
  25249. arm: {
  25250. height: math.unit(1.88, "feet"),
  25251. name: "Arm",
  25252. image: {
  25253. source: "./media/characters/balina-mahigan/arm.svg"
  25254. }
  25255. },
  25256. backPort: {
  25257. height: math.unit(0.685, "feet"),
  25258. name: "Back Port",
  25259. image: {
  25260. source: "./media/characters/balina-mahigan/back-port.svg"
  25261. }
  25262. },
  25263. hoofpaw: {
  25264. height: math.unit(1.41, "feet"),
  25265. name: "Hoofpaw",
  25266. image: {
  25267. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25268. }
  25269. },
  25270. leftHandBack: {
  25271. height: math.unit(0.938, "feet"),
  25272. name: "Left Hand (Back)",
  25273. image: {
  25274. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25275. }
  25276. },
  25277. leftHandFront: {
  25278. height: math.unit(0.938, "feet"),
  25279. name: "Left Hand (Front)",
  25280. image: {
  25281. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25282. }
  25283. },
  25284. rightHandBack: {
  25285. height: math.unit(0.95, "feet"),
  25286. name: "Right Hand (Back)",
  25287. image: {
  25288. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25289. }
  25290. },
  25291. rightHandFront: {
  25292. height: math.unit(0.95, "feet"),
  25293. name: "Right Hand (Front)",
  25294. image: {
  25295. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25296. }
  25297. },
  25298. },
  25299. [
  25300. {
  25301. name: "Normal",
  25302. height: math.unit(6 + 4/12, "feet"),
  25303. default: true
  25304. },
  25305. ]
  25306. ))
  25307. characterMakers.push(() => makeCharacter(
  25308. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25309. {
  25310. front: {
  25311. height: math.unit(6, "feet"),
  25312. weight: math.unit(320, "lb"),
  25313. name: "Front",
  25314. image: {
  25315. source: "./media/characters/balina-mejeri/front.svg",
  25316. extra: 517/488,
  25317. bottom: 44.2/561
  25318. }
  25319. },
  25320. },
  25321. [
  25322. {
  25323. name: "Normal",
  25324. height: math.unit(6 + 4/12, "feet")
  25325. },
  25326. {
  25327. name: "Business",
  25328. height: math.unit(155, "feet"),
  25329. default: true
  25330. },
  25331. ]
  25332. ))
  25333. characterMakers.push(() => makeCharacter(
  25334. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25335. {
  25336. kneeling: {
  25337. height: math.unit(6 + 4/12, "feet"),
  25338. weight: math.unit(300*20, "lb"),
  25339. name: "Kneeling",
  25340. image: {
  25341. source: "./media/characters/balbarian/kneeling.svg",
  25342. extra: 922/862,
  25343. bottom: 42.4/965
  25344. }
  25345. },
  25346. },
  25347. [
  25348. {
  25349. name: "Normal",
  25350. height: math.unit(6 + 4/12, "feet")
  25351. },
  25352. {
  25353. name: "Treasured",
  25354. height: math.unit(18 + 9/12, "feet"),
  25355. default: true
  25356. },
  25357. {
  25358. name: "Macro",
  25359. height: math.unit(900, "feet")
  25360. },
  25361. ]
  25362. ))
  25363. characterMakers.push(() => makeCharacter(
  25364. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25365. {
  25366. front: {
  25367. height: math.unit(6 + 4/12, "feet"),
  25368. weight: math.unit(325, "lb"),
  25369. name: "Front",
  25370. image: {
  25371. source: "./media/characters/balina-amarini/front.svg",
  25372. extra: 415/403,
  25373. bottom: 19/433.4
  25374. }
  25375. },
  25376. back: {
  25377. height: math.unit(6 + 4/12, "feet"),
  25378. weight: math.unit(325, "lb"),
  25379. name: "Back",
  25380. image: {
  25381. source: "./media/characters/balina-amarini/back.svg",
  25382. extra: 415/403,
  25383. bottom: 13.5/432
  25384. }
  25385. },
  25386. overdrive: {
  25387. height: math.unit(6 + 4/12, "feet"),
  25388. weight: math.unit(400, "lb"),
  25389. name: "Overdrive",
  25390. image: {
  25391. source: "./media/characters/balina-amarini/overdrive.svg",
  25392. extra: 269/259,
  25393. bottom: 12/282
  25394. }
  25395. },
  25396. },
  25397. [
  25398. {
  25399. name: "Boom",
  25400. height: math.unit(9 + 10/12, "feet"),
  25401. default: true
  25402. },
  25403. {
  25404. name: "Macro",
  25405. height: math.unit(280, "feet")
  25406. },
  25407. ]
  25408. ))
  25409. characterMakers.push(() => makeCharacter(
  25410. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25411. {
  25412. goddess: {
  25413. height: math.unit(600, "feet"),
  25414. weight: math.unit(2000000, "tons"),
  25415. name: "Goddess",
  25416. image: {
  25417. source: "./media/characters/lady-kubwa/goddess.svg",
  25418. extra: 1240.5/1223,
  25419. bottom: 22/1263
  25420. }
  25421. },
  25422. goddesser: {
  25423. height: math.unit(900, "feet"),
  25424. weight: math.unit(20000000, "lb"),
  25425. name: "Goddess-er",
  25426. image: {
  25427. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25428. extra: 899/888,
  25429. bottom: 12.6/912
  25430. }
  25431. },
  25432. },
  25433. [
  25434. {
  25435. name: "Macro",
  25436. height: math.unit(600, "feet"),
  25437. default: true
  25438. },
  25439. {
  25440. name: "Megamacro",
  25441. height: math.unit(250, "miles")
  25442. },
  25443. ]
  25444. ))
  25445. characterMakers.push(() => makeCharacter(
  25446. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25447. {
  25448. front: {
  25449. height: math.unit(7 + 7/12, "feet"),
  25450. weight: math.unit(250, "lb"),
  25451. name: "Front",
  25452. image: {
  25453. source: "./media/characters/tala-grovehorn/front.svg",
  25454. extra: 2636/2525,
  25455. bottom: 147/2781
  25456. }
  25457. },
  25458. back: {
  25459. height: math.unit(7 + 7/12, "feet"),
  25460. weight: math.unit(250, "lb"),
  25461. name: "Back",
  25462. image: {
  25463. source: "./media/characters/tala-grovehorn/back.svg",
  25464. extra: 2635/2539,
  25465. bottom: 100/2732.8
  25466. }
  25467. },
  25468. mouth: {
  25469. height: math.unit(1.15, "feet"),
  25470. name: "Mouth",
  25471. image: {
  25472. source: "./media/characters/tala-grovehorn/mouth.svg"
  25473. }
  25474. },
  25475. dick: {
  25476. height: math.unit(2.36, "feet"),
  25477. name: "Dick",
  25478. image: {
  25479. source: "./media/characters/tala-grovehorn/dick.svg"
  25480. }
  25481. },
  25482. slit: {
  25483. height: math.unit(0.61, "feet"),
  25484. name: "Slit",
  25485. image: {
  25486. source: "./media/characters/tala-grovehorn/slit.svg"
  25487. }
  25488. },
  25489. },
  25490. [
  25491. ]
  25492. ))
  25493. characterMakers.push(() => makeCharacter(
  25494. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25495. {
  25496. front: {
  25497. height: math.unit(7 + 7/12, "feet"),
  25498. weight: math.unit(225, "lb"),
  25499. name: "Front",
  25500. image: {
  25501. source: "./media/characters/epona/front.svg",
  25502. extra: 2445/2290,
  25503. bottom: 251/2696
  25504. }
  25505. },
  25506. back: {
  25507. height: math.unit(7 + 7/12, "feet"),
  25508. weight: math.unit(225, "lb"),
  25509. name: "Back",
  25510. image: {
  25511. source: "./media/characters/epona/back.svg",
  25512. extra: 2546/2408,
  25513. bottom: 44/2589
  25514. }
  25515. },
  25516. genitals: {
  25517. height: math.unit(1.5, "feet"),
  25518. name: "Genitals",
  25519. image: {
  25520. source: "./media/characters/epona/genitals.svg"
  25521. }
  25522. },
  25523. },
  25524. [
  25525. {
  25526. name: "Normal",
  25527. height: math.unit(7 + 7/12, "feet")
  25528. },
  25529. ]
  25530. ))
  25531. characterMakers.push(() => makeCharacter(
  25532. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25533. {
  25534. front: {
  25535. height: math.unit(7, "feet"),
  25536. weight: math.unit(518, "lb"),
  25537. name: "Front",
  25538. image: {
  25539. source: "./media/characters/avia-bloodbourn/front.svg",
  25540. extra: 1466/1350,
  25541. bottom: 65/1527
  25542. }
  25543. },
  25544. },
  25545. [
  25546. ]
  25547. ))
  25548. characterMakers.push(() => makeCharacter(
  25549. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25550. {
  25551. front: {
  25552. height: math.unit(9.35, "feet"),
  25553. weight: math.unit(600, "lb"),
  25554. name: "Front",
  25555. image: {
  25556. source: "./media/characters/amera/front.svg",
  25557. extra: 891/818,
  25558. bottom: 30/922.7
  25559. }
  25560. },
  25561. back: {
  25562. height: math.unit(9.35, "feet"),
  25563. weight: math.unit(600, "lb"),
  25564. name: "Back",
  25565. image: {
  25566. source: "./media/characters/amera/back.svg",
  25567. extra: 876/824,
  25568. bottom: 6.8/884
  25569. }
  25570. },
  25571. dick: {
  25572. height: math.unit(2.14, "feet"),
  25573. name: "Dick",
  25574. image: {
  25575. source: "./media/characters/amera/dick.svg"
  25576. }
  25577. },
  25578. },
  25579. [
  25580. {
  25581. name: "Normal",
  25582. height: math.unit(9.35, "feet"),
  25583. default: true
  25584. },
  25585. ]
  25586. ))
  25587. characterMakers.push(() => makeCharacter(
  25588. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25589. {
  25590. kneeling: {
  25591. height: math.unit(3 + 4/12, "feet"),
  25592. weight: math.unit(90, "lb"),
  25593. name: "Kneeling",
  25594. image: {
  25595. source: "./media/characters/rosewen/kneeling.svg",
  25596. extra: 1835/1571,
  25597. bottom: 27.7/1862
  25598. }
  25599. },
  25600. },
  25601. [
  25602. {
  25603. name: "Normal",
  25604. height: math.unit(3 + 4/12, "feet"),
  25605. default: true
  25606. },
  25607. ]
  25608. ))
  25609. characterMakers.push(() => makeCharacter(
  25610. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25611. {
  25612. front: {
  25613. height: math.unit(5 + 10/12, "feet"),
  25614. weight: math.unit(200, "lb"),
  25615. name: "Front",
  25616. image: {
  25617. source: "./media/characters/sabah/front.svg",
  25618. extra: 849/763,
  25619. bottom: 33.9/881
  25620. }
  25621. },
  25622. },
  25623. [
  25624. {
  25625. name: "Normal",
  25626. height: math.unit(5 + 10/12, "feet"),
  25627. default: true
  25628. },
  25629. ]
  25630. ))
  25631. characterMakers.push(() => makeCharacter(
  25632. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25633. {
  25634. front: {
  25635. height: math.unit(3 + 5/12, "feet"),
  25636. weight: math.unit(40, "kg"),
  25637. name: "Front",
  25638. image: {
  25639. source: "./media/characters/purple-flame/front.svg",
  25640. extra: 1577/1412,
  25641. bottom: 97/1694
  25642. }
  25643. },
  25644. frontDressed: {
  25645. height: math.unit(3 + 5/12, "feet"),
  25646. weight: math.unit(40, "kg"),
  25647. name: "Front (Dressed)",
  25648. image: {
  25649. source: "./media/characters/purple-flame/front-dressed.svg",
  25650. extra: 1577/1412,
  25651. bottom: 97/1694
  25652. }
  25653. },
  25654. headphones: {
  25655. height: math.unit(0.85, "feet"),
  25656. name: "Headphones",
  25657. image: {
  25658. source: "./media/characters/purple-flame/headphones.svg"
  25659. }
  25660. },
  25661. },
  25662. [
  25663. {
  25664. name: "Really Small",
  25665. height: math.unit(5, "cm")
  25666. },
  25667. {
  25668. name: "Micro",
  25669. height: math.unit(1 + 5/12, "feet")
  25670. },
  25671. {
  25672. name: "Normal",
  25673. height: math.unit(3 + 5/12, "feet"),
  25674. default: true
  25675. },
  25676. {
  25677. name: "Minimacro",
  25678. height: math.unit(125, "feet")
  25679. },
  25680. {
  25681. name: "Macro",
  25682. height: math.unit(0.5, "miles")
  25683. },
  25684. {
  25685. name: "Megamacro",
  25686. height: math.unit(50, "miles")
  25687. },
  25688. {
  25689. name: "Gigantic",
  25690. height: math.unit(750, "miles")
  25691. },
  25692. {
  25693. name: "Planetary",
  25694. height: math.unit(15000, "miles")
  25695. },
  25696. ]
  25697. ))
  25698. characterMakers.push(() => makeCharacter(
  25699. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  25700. {
  25701. front: {
  25702. height: math.unit(14, "feet"),
  25703. weight: math.unit(959, "lb"),
  25704. name: "Front",
  25705. image: {
  25706. source: "./media/characters/arsenal/front.svg",
  25707. extra: 2357/2157,
  25708. bottom: 93/2458
  25709. }
  25710. },
  25711. },
  25712. [
  25713. {
  25714. name: "Normal",
  25715. height: math.unit(14, "feet"),
  25716. default: true
  25717. },
  25718. ]
  25719. ))
  25720. characterMakers.push(() => makeCharacter(
  25721. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  25722. {
  25723. front: {
  25724. height: math.unit(6, "feet"),
  25725. weight: math.unit(150, "lb"),
  25726. name: "Front",
  25727. image: {
  25728. source: "./media/characters/adira/front.svg",
  25729. extra: 1078/1029,
  25730. bottom: 87/1166
  25731. }
  25732. },
  25733. },
  25734. [
  25735. {
  25736. name: "Micro",
  25737. height: math.unit(4, "inches"),
  25738. default: true
  25739. },
  25740. {
  25741. name: "Macro",
  25742. height: math.unit(50, "feet")
  25743. },
  25744. ]
  25745. ))
  25746. characterMakers.push(() => makeCharacter(
  25747. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  25748. {
  25749. front: {
  25750. height: math.unit(16, "feet"),
  25751. weight: math.unit(1000, "lb"),
  25752. name: "Front",
  25753. image: {
  25754. source: "./media/characters/grim/front.svg",
  25755. extra: 622/614,
  25756. bottom: 18.1/642
  25757. }
  25758. },
  25759. back: {
  25760. height: math.unit(16, "feet"),
  25761. weight: math.unit(1000, "lb"),
  25762. name: "Back",
  25763. image: {
  25764. source: "./media/characters/grim/back.svg",
  25765. extra: 610.6/602,
  25766. bottom: 40.8/652
  25767. }
  25768. },
  25769. hunched: {
  25770. height: math.unit(9.75, "feet"),
  25771. weight: math.unit(1000, "lb"),
  25772. name: "Hunched",
  25773. image: {
  25774. source: "./media/characters/grim/hunched.svg",
  25775. extra: 304/297,
  25776. bottom: 35.4/394
  25777. }
  25778. },
  25779. },
  25780. [
  25781. {
  25782. name: "Normal",
  25783. height: math.unit(16, "feet"),
  25784. default: true
  25785. },
  25786. ]
  25787. ))
  25788. characterMakers.push(() => makeCharacter(
  25789. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  25790. {
  25791. front: {
  25792. height: math.unit(2.3, "meters"),
  25793. weight: math.unit(300, "lb"),
  25794. name: "Front",
  25795. image: {
  25796. source: "./media/characters/sinja/front-sfw.svg",
  25797. extra: 1393/1294,
  25798. bottom: 70/1463
  25799. }
  25800. },
  25801. frontNsfw: {
  25802. height: math.unit(2.3, "meters"),
  25803. weight: math.unit(300, "lb"),
  25804. name: "Front (NSFW)",
  25805. image: {
  25806. source: "./media/characters/sinja/front-nsfw.svg",
  25807. extra: 1393/1294,
  25808. bottom: 70/1463
  25809. }
  25810. },
  25811. back: {
  25812. height: math.unit(2.3, "meters"),
  25813. weight: math.unit(300, "lb"),
  25814. name: "Back",
  25815. image: {
  25816. source: "./media/characters/sinja/back.svg",
  25817. extra: 1393/1294,
  25818. bottom: 70/1463
  25819. }
  25820. },
  25821. head: {
  25822. height: math.unit(1.771, "feet"),
  25823. name: "Head",
  25824. image: {
  25825. source: "./media/characters/sinja/head.svg"
  25826. }
  25827. },
  25828. slit: {
  25829. height: math.unit(0.8, "feet"),
  25830. name: "Slit",
  25831. image: {
  25832. source: "./media/characters/sinja/slit.svg"
  25833. }
  25834. },
  25835. },
  25836. [
  25837. {
  25838. name: "Normal",
  25839. height: math.unit(2.3, "meters")
  25840. },
  25841. {
  25842. name: "Macro",
  25843. height: math.unit(91, "meters"),
  25844. default: true
  25845. },
  25846. {
  25847. name: "Megamacro",
  25848. height: math.unit(91440, "meters")
  25849. },
  25850. {
  25851. name: "Gigamacro",
  25852. height: math.unit(60960000, "meters")
  25853. },
  25854. {
  25855. name: "Teramacro",
  25856. height: math.unit(9144000000, "meters")
  25857. },
  25858. ]
  25859. ))
  25860. characterMakers.push(() => makeCharacter(
  25861. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  25862. {
  25863. front: {
  25864. height: math.unit(1.7, "meters"),
  25865. weight: math.unit(130, "lb"),
  25866. name: "Front",
  25867. image: {
  25868. source: "./media/characters/kyu/front.svg",
  25869. extra: 415/395,
  25870. bottom: 5/420
  25871. }
  25872. },
  25873. head: {
  25874. height: math.unit(1.75, "feet"),
  25875. name: "Head",
  25876. image: {
  25877. source: "./media/characters/kyu/head.svg"
  25878. }
  25879. },
  25880. foot: {
  25881. height: math.unit(0.81, "feet"),
  25882. name: "Foot",
  25883. image: {
  25884. source: "./media/characters/kyu/foot.svg"
  25885. }
  25886. },
  25887. },
  25888. [
  25889. {
  25890. name: "Normal",
  25891. height: math.unit(1.7, "meters")
  25892. },
  25893. {
  25894. name: "Macro",
  25895. height: math.unit(131, "feet"),
  25896. default: true
  25897. },
  25898. {
  25899. name: "Megamacro",
  25900. height: math.unit(91440, "meters")
  25901. },
  25902. {
  25903. name: "Gigamacro",
  25904. height: math.unit(60960000, "meters")
  25905. },
  25906. {
  25907. name: "Teramacro",
  25908. height: math.unit(9144000000, "meters")
  25909. },
  25910. ]
  25911. ))
  25912. characterMakers.push(() => makeCharacter(
  25913. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  25914. {
  25915. front: {
  25916. height: math.unit(7 + 1/12, "feet"),
  25917. weight: math.unit(250, "lb"),
  25918. name: "Front",
  25919. image: {
  25920. source: "./media/characters/joey/front.svg",
  25921. extra: 1791/1537,
  25922. bottom: 28/1816
  25923. }
  25924. },
  25925. },
  25926. [
  25927. {
  25928. name: "Micro",
  25929. height: math.unit(3, "inches")
  25930. },
  25931. {
  25932. name: "Normal",
  25933. height: math.unit(7 + 1/12, "feet"),
  25934. default: true
  25935. },
  25936. ]
  25937. ))
  25938. characterMakers.push(() => makeCharacter(
  25939. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  25940. {
  25941. front: {
  25942. height: math.unit(165, "cm"),
  25943. weight: math.unit(140, "lb"),
  25944. name: "Front",
  25945. image: {
  25946. source: "./media/characters/sam-evans/front.svg",
  25947. extra: 3417/3230,
  25948. bottom: 41.3/3417
  25949. }
  25950. },
  25951. frontSixTails: {
  25952. height: math.unit(165, "cm"),
  25953. weight: math.unit(140, "lb"),
  25954. name: "Front-six-tails",
  25955. image: {
  25956. source: "./media/characters/sam-evans/front-six-tails.svg",
  25957. extra: 3417/3230,
  25958. bottom: 41.3/3417
  25959. }
  25960. },
  25961. back: {
  25962. height: math.unit(165, "cm"),
  25963. weight: math.unit(140, "lb"),
  25964. name: "Back",
  25965. image: {
  25966. source: "./media/characters/sam-evans/back.svg",
  25967. extra: 3227/3032,
  25968. bottom: 6.8/3234
  25969. }
  25970. },
  25971. face: {
  25972. height: math.unit(0.68, "feet"),
  25973. name: "Face",
  25974. image: {
  25975. source: "./media/characters/sam-evans/face.svg"
  25976. }
  25977. },
  25978. },
  25979. [
  25980. {
  25981. name: "Normal",
  25982. height: math.unit(165, "cm"),
  25983. default: true
  25984. },
  25985. {
  25986. name: "Macro",
  25987. height: math.unit(100, "meters")
  25988. },
  25989. {
  25990. name: "Macro+",
  25991. height: math.unit(800, "meters")
  25992. },
  25993. {
  25994. name: "Macro++",
  25995. height: math.unit(3, "km")
  25996. },
  25997. {
  25998. name: "Macro+++",
  25999. height: math.unit(30, "km")
  26000. },
  26001. ]
  26002. ))
  26003. characterMakers.push(() => makeCharacter(
  26004. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26005. {
  26006. front: {
  26007. height: math.unit(10, "feet"),
  26008. weight: math.unit(750, "lb"),
  26009. name: "Front",
  26010. image: {
  26011. source: "./media/characters/juliet-a/front.svg",
  26012. extra: 1766/1720,
  26013. bottom: 43/1809
  26014. }
  26015. },
  26016. back: {
  26017. height: math.unit(10, "feet"),
  26018. weight: math.unit(750, "lb"),
  26019. name: "Back",
  26020. image: {
  26021. source: "./media/characters/juliet-a/back.svg",
  26022. extra: 1781/1734,
  26023. bottom: 35/1810,
  26024. }
  26025. },
  26026. },
  26027. [
  26028. {
  26029. name: "Normal",
  26030. height: math.unit(10, "feet"),
  26031. default: true
  26032. },
  26033. {
  26034. name: "Dragon Form",
  26035. height: math.unit(250, "feet")
  26036. },
  26037. {
  26038. name: "Macro",
  26039. height: math.unit(1000, "feet")
  26040. },
  26041. {
  26042. name: "Megamacro",
  26043. height: math.unit(10000, "feet")
  26044. }
  26045. ]
  26046. ))
  26047. characterMakers.push(() => makeCharacter(
  26048. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26049. {
  26050. regular: {
  26051. height: math.unit(7 + 3/12, "feet"),
  26052. weight: math.unit(260, "lb"),
  26053. name: "Regular",
  26054. image: {
  26055. source: "./media/characters/wild/regular.svg",
  26056. extra: 97.45/92,
  26057. bottom: 6.8/104.3
  26058. }
  26059. },
  26060. biggums: {
  26061. height: math.unit(8 + 6 /12, "feet"),
  26062. weight: math.unit(425, "lb"),
  26063. name: "Biggums",
  26064. image: {
  26065. source: "./media/characters/wild/biggums.svg",
  26066. extra: 97.45/92,
  26067. bottom: 7.5/132.34
  26068. }
  26069. },
  26070. mawRegular: {
  26071. height: math.unit(1.24, "feet"),
  26072. name: "Maw (Regular)",
  26073. image: {
  26074. source: "./media/characters/wild/maw.svg"
  26075. }
  26076. },
  26077. mawBiggums: {
  26078. height: math.unit(1.47, "feet"),
  26079. name: "Maw (Biggums)",
  26080. image: {
  26081. source: "./media/characters/wild/maw.svg"
  26082. }
  26083. },
  26084. },
  26085. [
  26086. {
  26087. name: "Normal",
  26088. height: math.unit(7 + 3/12, "feet"),
  26089. default: true
  26090. },
  26091. ]
  26092. ))
  26093. characterMakers.push(() => makeCharacter(
  26094. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26095. {
  26096. front: {
  26097. height: math.unit(2.5, "meters"),
  26098. weight: math.unit(200, "kg"),
  26099. name: "Front",
  26100. image: {
  26101. source: "./media/characters/vidar/front.svg",
  26102. extra: 2994/2795,
  26103. bottom: 56/3061
  26104. }
  26105. },
  26106. back: {
  26107. height: math.unit(2.5, "meters"),
  26108. weight: math.unit(200, "kg"),
  26109. name: "Back",
  26110. image: {
  26111. source: "./media/characters/vidar/back.svg",
  26112. extra: 3131/2928,
  26113. bottom: 13.5/3141.5
  26114. }
  26115. },
  26116. feral: {
  26117. height: math.unit(2.5, "meters"),
  26118. weight: math.unit(2000, "kg"),
  26119. name: "Feral",
  26120. image: {
  26121. source: "./media/characters/vidar/feral.svg",
  26122. extra: 2790/1765,
  26123. bottom: 6/2796
  26124. }
  26125. },
  26126. },
  26127. [
  26128. {
  26129. name: "Normal",
  26130. height: math.unit(2.5, "meters"),
  26131. default: true
  26132. },
  26133. {
  26134. name: "Macro",
  26135. height: math.unit(100, "meters")
  26136. },
  26137. ]
  26138. ))
  26139. characterMakers.push(() => makeCharacter(
  26140. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26141. {
  26142. front: {
  26143. height: math.unit(5 + 9/12, "feet"),
  26144. weight: math.unit(120, "lb"),
  26145. name: "Front",
  26146. image: {
  26147. source: "./media/characters/ash/front.svg",
  26148. extra: 2189/1961,
  26149. bottom: 5.2/2194
  26150. }
  26151. },
  26152. },
  26153. [
  26154. {
  26155. name: "Normal",
  26156. height: math.unit(5 + 9/12, "feet"),
  26157. default: true
  26158. },
  26159. ]
  26160. ))
  26161. characterMakers.push(() => makeCharacter(
  26162. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26163. {
  26164. front: {
  26165. height: math.unit(9, "feet"),
  26166. weight: math.unit(10000, "lb"),
  26167. name: "Front",
  26168. image: {
  26169. source: "./media/characters/gygabite/front.svg",
  26170. bottom: 31.7/537.8,
  26171. extra: 505/370
  26172. }
  26173. },
  26174. },
  26175. [
  26176. {
  26177. name: "Normal",
  26178. height: math.unit(9, "feet"),
  26179. default: true
  26180. },
  26181. ]
  26182. ))
  26183. characterMakers.push(() => makeCharacter(
  26184. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26185. {
  26186. front: {
  26187. height: math.unit(12, "feet"),
  26188. weight: math.unit(35000, "lb"),
  26189. name: "Front",
  26190. image: {
  26191. source: "./media/characters/p0tat0/front.svg",
  26192. extra: 1065/921,
  26193. bottom: 55.7/1121.25
  26194. }
  26195. },
  26196. },
  26197. [
  26198. {
  26199. name: "Normal",
  26200. height: math.unit(12, "feet"),
  26201. default: true
  26202. },
  26203. ]
  26204. ))
  26205. characterMakers.push(() => makeCharacter(
  26206. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26207. {
  26208. side: {
  26209. height: math.unit(6.5, "feet"),
  26210. weight: math.unit(800, "lb"),
  26211. name: "Side",
  26212. image: {
  26213. source: "./media/characters/dusk/side.svg",
  26214. extra: 615/373,
  26215. bottom: 53/664
  26216. }
  26217. },
  26218. sitting: {
  26219. height: math.unit(7, "feet"),
  26220. weight: math.unit(800, "lb"),
  26221. name: "Sitting",
  26222. image: {
  26223. source: "./media/characters/dusk/sitting.svg",
  26224. extra: 753/425,
  26225. bottom: 33/774
  26226. }
  26227. },
  26228. head: {
  26229. height: math.unit(6.1, "feet"),
  26230. name: "Head",
  26231. image: {
  26232. source: "./media/characters/dusk/head.svg"
  26233. }
  26234. },
  26235. },
  26236. [
  26237. {
  26238. name: "Normal",
  26239. height: math.unit(7, "feet"),
  26240. default: true
  26241. },
  26242. ]
  26243. ))
  26244. characterMakers.push(() => makeCharacter(
  26245. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26246. {
  26247. front: {
  26248. height: math.unit(15, "feet"),
  26249. weight: math.unit(7000, "lb"),
  26250. name: "Front",
  26251. image: {
  26252. source: "./media/characters/jay-direwolf/front.svg",
  26253. extra: 1810/1732,
  26254. bottom: 66/1892
  26255. }
  26256. },
  26257. },
  26258. [
  26259. {
  26260. name: "Normal",
  26261. height: math.unit(15, "feet"),
  26262. default: true
  26263. },
  26264. ]
  26265. ))
  26266. characterMakers.push(() => makeCharacter(
  26267. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26268. {
  26269. front: {
  26270. height: math.unit(4 + 9/12, "feet"),
  26271. weight: math.unit(130, "lb"),
  26272. name: "Front",
  26273. image: {
  26274. source: "./media/characters/anchovie/front.svg",
  26275. extra: 382/350,
  26276. bottom: 25/409
  26277. }
  26278. },
  26279. back: {
  26280. height: math.unit(4 + 9/12, "feet"),
  26281. weight: math.unit(130, "lb"),
  26282. name: "Back",
  26283. image: {
  26284. source: "./media/characters/anchovie/back.svg",
  26285. extra: 385/352,
  26286. bottom: 16.6/402
  26287. }
  26288. },
  26289. frontDressed: {
  26290. height: math.unit(4 + 9/12, "feet"),
  26291. weight: math.unit(130, "lb"),
  26292. name: "Front (Dressed)",
  26293. image: {
  26294. source: "./media/characters/anchovie/front-dressed.svg",
  26295. extra: 382/350,
  26296. bottom: 25/409
  26297. }
  26298. },
  26299. backDressed: {
  26300. height: math.unit(4 + 9/12, "feet"),
  26301. weight: math.unit(130, "lb"),
  26302. name: "Back (Dressed)",
  26303. image: {
  26304. source: "./media/characters/anchovie/back-dressed.svg",
  26305. extra: 385/352,
  26306. bottom: 16.6/402
  26307. }
  26308. },
  26309. },
  26310. [
  26311. {
  26312. name: "Micro",
  26313. height: math.unit(6.4, "inches")
  26314. },
  26315. {
  26316. name: "Normal",
  26317. height: math.unit(4 + 9/12, "feet"),
  26318. default: true
  26319. },
  26320. ]
  26321. ))
  26322. characterMakers.push(() => makeCharacter(
  26323. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26324. {
  26325. front: {
  26326. height: math.unit(2, "meters"),
  26327. weight: math.unit(180, "lb"),
  26328. name: "Front",
  26329. image: {
  26330. source: "./media/characters/acidrenamon/front.svg",
  26331. extra: 987/890,
  26332. bottom: 22.8/1009
  26333. }
  26334. },
  26335. back: {
  26336. height: math.unit(2, "meters"),
  26337. weight: math.unit(180, "lb"),
  26338. name: "Back",
  26339. image: {
  26340. source: "./media/characters/acidrenamon/back.svg",
  26341. extra: 983/891,
  26342. bottom: 8.4/992
  26343. }
  26344. },
  26345. head: {
  26346. height: math.unit(1.92, "feet"),
  26347. name: "Head",
  26348. image: {
  26349. source: "./media/characters/acidrenamon/head.svg"
  26350. }
  26351. },
  26352. rump: {
  26353. height: math.unit(1.72, "feet"),
  26354. name: "Rump",
  26355. image: {
  26356. source: "./media/characters/acidrenamon/rump.svg"
  26357. }
  26358. },
  26359. tail: {
  26360. height: math.unit(4.2, "feet"),
  26361. name: "Tail",
  26362. image: {
  26363. source: "./media/characters/acidrenamon/tail.svg"
  26364. }
  26365. },
  26366. },
  26367. [
  26368. {
  26369. name: "Normal",
  26370. height: math.unit(2, "meters"),
  26371. default: true
  26372. },
  26373. {
  26374. name: "Minimacro",
  26375. height: math.unit(7, "meters")
  26376. },
  26377. {
  26378. name: "Macro",
  26379. height: math.unit(200, "meters")
  26380. },
  26381. {
  26382. name: "Gigamacro",
  26383. height: math.unit(0.2, "earths")
  26384. },
  26385. ]
  26386. ))
  26387. characterMakers.push(() => makeCharacter(
  26388. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26389. {
  26390. front: {
  26391. height: math.unit(6, "feet"),
  26392. weight: math.unit(150, "lb"),
  26393. name: "Front",
  26394. image: {
  26395. source: "./media/characters/kenzie-lee/front.svg",
  26396. extra: 1525/1465,
  26397. bottom: 45/1570
  26398. }
  26399. },
  26400. side: {
  26401. height: math.unit(6, "feet"),
  26402. weight: math.unit(150, "lb"),
  26403. name: "Side",
  26404. image: {
  26405. source: "./media/characters/kenzie-lee/side.svg",
  26406. extra: 5505/5383,
  26407. bottom: 60/5573
  26408. }
  26409. },
  26410. },
  26411. [
  26412. {
  26413. name: "Normal",
  26414. height: math.unit(152, "feet"),
  26415. default: true
  26416. },
  26417. {
  26418. name: "Megamacro",
  26419. height: math.unit(7, "miles")
  26420. },
  26421. {
  26422. name: "Gigamacro",
  26423. height: math.unit(8000, "miles")
  26424. },
  26425. ]
  26426. ))
  26427. characterMakers.push(() => makeCharacter(
  26428. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26429. {
  26430. side: {
  26431. height: math.unit(6, "feet"),
  26432. weight: math.unit(150, "lb"),
  26433. name: "Side",
  26434. image: {
  26435. source: "./media/characters/withers/side.svg",
  26436. extra: 1830/1728,
  26437. bottom: 96/1927
  26438. }
  26439. },
  26440. },
  26441. [
  26442. {
  26443. name: "Normal",
  26444. height: math.unit(6, "feet")
  26445. },
  26446. {
  26447. name: "Macro",
  26448. height: math.unit(50, "feet")
  26449. },
  26450. {
  26451. name: "Megamacro",
  26452. height: math.unit(15, "miles"),
  26453. default: true
  26454. },
  26455. {
  26456. name: "Megamacro+",
  26457. height: math.unit(100, "km")
  26458. },
  26459. {
  26460. name: "Gigamacro",
  26461. height: math.unit(4750, "miles")
  26462. },
  26463. {
  26464. name: "Gigamacro+",
  26465. height: math.unit(32000, "miles")
  26466. },
  26467. ]
  26468. ))
  26469. characterMakers.push(() => makeCharacter(
  26470. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26471. {
  26472. front: {
  26473. height: math.unit(6 + 7/12, "feet"),
  26474. weight: math.unit(250, "lb"),
  26475. name: "Front",
  26476. image: {
  26477. source: "./media/characters/nemoskii/front.svg",
  26478. extra: 2270/1734,
  26479. bottom: 86/2354
  26480. }
  26481. },
  26482. back: {
  26483. height: math.unit(6 + 7/12, "feet"),
  26484. weight: math.unit(250, "lb"),
  26485. name: "Back",
  26486. image: {
  26487. source: "./media/characters/nemoskii/back.svg",
  26488. extra: 1845/1788,
  26489. bottom: 10.5/1852
  26490. }
  26491. },
  26492. head: {
  26493. height: math.unit(1.31, "feet"),
  26494. name: "Head",
  26495. image: {
  26496. source: "./media/characters/nemoskii/head.svg"
  26497. }
  26498. },
  26499. },
  26500. [
  26501. {
  26502. name: "Normal",
  26503. height: math.unit(6 + 7/12, "feet"),
  26504. default: true
  26505. },
  26506. ]
  26507. ))
  26508. characterMakers.push(() => makeCharacter(
  26509. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26510. {
  26511. front: {
  26512. height: math.unit(1, "mile"),
  26513. weight: math.unit(265261.9, "lb"),
  26514. name: "Front",
  26515. image: {
  26516. source: "./media/characters/shui/front.svg",
  26517. extra: 1633/1564,
  26518. bottom: 91.5/1726
  26519. }
  26520. },
  26521. },
  26522. [
  26523. {
  26524. name: "Macro",
  26525. height: math.unit(1, "mile"),
  26526. default: true
  26527. },
  26528. ]
  26529. ))
  26530. characterMakers.push(() => makeCharacter(
  26531. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26532. {
  26533. front: {
  26534. height: math.unit(12 + 6/12, "feet"),
  26535. weight: math.unit(1342, "lb"),
  26536. name: "Front",
  26537. image: {
  26538. source: "./media/characters/arokh-takakura/front.svg",
  26539. extra: 1089/1043,
  26540. bottom: 77.4/1176.7
  26541. }
  26542. },
  26543. back: {
  26544. height: math.unit(12 + 6/12, "feet"),
  26545. weight: math.unit(1342, "lb"),
  26546. name: "Back",
  26547. image: {
  26548. source: "./media/characters/arokh-takakura/back.svg",
  26549. extra: 1046/1019,
  26550. bottom: 102/1150
  26551. }
  26552. },
  26553. },
  26554. [
  26555. {
  26556. name: "Big",
  26557. height: math.unit(12 + 6/12, "feet"),
  26558. default: true
  26559. },
  26560. ]
  26561. ))
  26562. characterMakers.push(() => makeCharacter(
  26563. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  26564. {
  26565. front: {
  26566. height: math.unit(5 + 6/12, "feet"),
  26567. weight: math.unit(150, "lb"),
  26568. name: "Front",
  26569. image: {
  26570. source: "./media/characters/theo/front.svg",
  26571. extra: 1184/1131,
  26572. bottom: 7.4/1191
  26573. }
  26574. },
  26575. },
  26576. [
  26577. {
  26578. name: "Micro",
  26579. height: math.unit(5, "inches")
  26580. },
  26581. {
  26582. name: "Normal",
  26583. height: math.unit(5 + 6/12, "feet"),
  26584. default: true
  26585. },
  26586. ]
  26587. ))
  26588. characterMakers.push(() => makeCharacter(
  26589. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  26590. {
  26591. front: {
  26592. height: math.unit(5 + 9/12, "feet"),
  26593. weight: math.unit(130, "lb"),
  26594. name: "Front",
  26595. image: {
  26596. source: "./media/characters/cecelia-swift/front.svg",
  26597. extra: 502/484,
  26598. bottom: 23/523
  26599. }
  26600. },
  26601. back: {
  26602. height: math.unit(5 + 9/12, "feet"),
  26603. weight: math.unit(130, "lb"),
  26604. name: "Back",
  26605. image: {
  26606. source: "./media/characters/cecelia-swift/back.svg",
  26607. extra: 499/485,
  26608. bottom: 12/511
  26609. }
  26610. },
  26611. head: {
  26612. height: math.unit(0.90, "feet"),
  26613. name: "Head",
  26614. image: {
  26615. source: "./media/characters/cecelia-swift/head.svg"
  26616. }
  26617. },
  26618. rump: {
  26619. height: math.unit(1.75, "feet"),
  26620. name: "Rump",
  26621. image: {
  26622. source: "./media/characters/cecelia-swift/rump.svg"
  26623. }
  26624. },
  26625. },
  26626. [
  26627. {
  26628. name: "Normal",
  26629. height: math.unit(5 + 9/12, "feet"),
  26630. default: true
  26631. },
  26632. {
  26633. name: "Big",
  26634. height: math.unit(50, "feet")
  26635. },
  26636. {
  26637. name: "Macro",
  26638. height: math.unit(100, "feet")
  26639. },
  26640. {
  26641. name: "Macro+",
  26642. height: math.unit(500, "feet")
  26643. },
  26644. {
  26645. name: "Macro++",
  26646. height: math.unit(1000, "feet")
  26647. },
  26648. ]
  26649. ))
  26650. characterMakers.push(() => makeCharacter(
  26651. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  26652. {
  26653. front: {
  26654. height: math.unit(6, "feet"),
  26655. weight: math.unit(150, "lb"),
  26656. name: "Front",
  26657. image: {
  26658. source: "./media/characters/kaunan/front.svg",
  26659. extra: 2890/2523,
  26660. bottom: 49/2939
  26661. }
  26662. },
  26663. },
  26664. [
  26665. {
  26666. name: "Macro",
  26667. height: math.unit(150, "feet"),
  26668. default: true
  26669. },
  26670. ]
  26671. ))
  26672. characterMakers.push(() => makeCharacter(
  26673. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  26674. {
  26675. front: {
  26676. height: math.unit(175, "cm"),
  26677. weight: math.unit(60, "kg"),
  26678. name: "Front",
  26679. image: {
  26680. source: "./media/characters/fei/front.svg",
  26681. extra: 2581/2400,
  26682. bottom: 82.2/2663
  26683. }
  26684. },
  26685. },
  26686. [
  26687. {
  26688. name: "Mortal",
  26689. height: math.unit(175, "cm")
  26690. },
  26691. {
  26692. name: "Normal",
  26693. height: math.unit(3500, "m"),
  26694. default: true
  26695. },
  26696. {
  26697. name: "Stroll",
  26698. height: math.unit(17.5, "km")
  26699. },
  26700. {
  26701. name: "Showoff",
  26702. height: math.unit(175, "km")
  26703. },
  26704. ]
  26705. ))
  26706. characterMakers.push(() => makeCharacter(
  26707. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  26708. {
  26709. front: {
  26710. height: math.unit(7, "feet"),
  26711. weight: math.unit(1000, "kg"),
  26712. name: "Front",
  26713. image: {
  26714. source: "./media/characters/edrax/front.svg",
  26715. extra: 2838/2550,
  26716. bottom: 130/2968
  26717. }
  26718. },
  26719. },
  26720. [
  26721. {
  26722. name: "Small",
  26723. height: math.unit(7, "feet")
  26724. },
  26725. {
  26726. name: "Normal",
  26727. height: math.unit(1500, "meters")
  26728. },
  26729. {
  26730. name: "Mega",
  26731. height: math.unit(12000000, "km"),
  26732. default: true
  26733. },
  26734. {
  26735. name: "Megamacro",
  26736. height: math.unit(10600000, "lightyears")
  26737. },
  26738. {
  26739. name: "Hypermacro",
  26740. height: math.unit(256, "yottameters")
  26741. },
  26742. ]
  26743. ))
  26744. characterMakers.push(() => makeCharacter(
  26745. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  26746. {
  26747. front: {
  26748. height: math.unit(10, "feet"),
  26749. weight: math.unit(750, "lb"),
  26750. name: "Front",
  26751. image: {
  26752. source: "./media/characters/clove/front.svg",
  26753. extra: 2031/1860,
  26754. bottom: 47.8/2080
  26755. }
  26756. },
  26757. back: {
  26758. height: math.unit(10, "feet"),
  26759. weight: math.unit(750, "lb"),
  26760. name: "Back",
  26761. image: {
  26762. source: "./media/characters/clove/back.svg",
  26763. extra: 2025/1859,
  26764. bottom: 46/2071
  26765. }
  26766. },
  26767. },
  26768. [
  26769. {
  26770. name: "Normal",
  26771. height: math.unit(10, "feet")
  26772. },
  26773. ]
  26774. ))
  26775. characterMakers.push(() => makeCharacter(
  26776. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  26777. {
  26778. front: {
  26779. height: math.unit(4, "feet"),
  26780. weight: math.unit(50, "lb"),
  26781. name: "Front",
  26782. image: {
  26783. source: "./media/characters/alex-rabbit/front.svg",
  26784. extra: 507/458,
  26785. bottom: 18.5/527
  26786. }
  26787. },
  26788. back: {
  26789. height: math.unit(4, "feet"),
  26790. weight: math.unit(50, "lb"),
  26791. name: "Back",
  26792. image: {
  26793. source: "./media/characters/alex-rabbit/back.svg",
  26794. extra: 502/460,
  26795. bottom: 18.9/521
  26796. }
  26797. },
  26798. },
  26799. [
  26800. {
  26801. name: "Normal",
  26802. height: math.unit(4, "feet"),
  26803. default: true
  26804. },
  26805. ]
  26806. ))
  26807. //characters
  26808. function makeCharacters() {
  26809. const results = [];
  26810. characterMakers.forEach(character => {
  26811. results.push(character());
  26812. });
  26813. return results;
  26814. }