less copy protection, more size visualization
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 

27682 行
689 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. "meowth": {
  1308. name: "Meowth",
  1309. parents: ["cat", "pokemon"]
  1310. },
  1311. "pavodragon": {
  1312. name: "Pavodragon",
  1313. parents: ["dragon"]
  1314. },
  1315. }
  1316. //species
  1317. function getSpeciesInfo(speciesList) {
  1318. let result = new Set();
  1319. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1320. result.add(entry)
  1321. });
  1322. return Array.from(result);
  1323. };
  1324. function getSpeciesInfoHelper(species) {
  1325. if (!speciesData[species]) {
  1326. console.warn(species + " doesn't exist");
  1327. return [];
  1328. }
  1329. if (speciesData[species].parents) {
  1330. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1331. } else {
  1332. return [species];
  1333. }
  1334. }
  1335. characterMakers.push(() => makeCharacter(
  1336. {
  1337. name: "Fen",
  1338. species: ["crux"],
  1339. description: {
  1340. title: "Bio",
  1341. text: "Very furry. Sheds on everything."
  1342. },
  1343. tags: [
  1344. "anthro",
  1345. "goo"
  1346. ]
  1347. },
  1348. {
  1349. back: {
  1350. height: math.unit(2.2428, "meter"),
  1351. weight: math.unit(124.738, "kg"),
  1352. name: "Back",
  1353. image: {
  1354. source: "./media/characters/fen/back.svg",
  1355. extra: 1025 / 935,
  1356. bottom: 0.01
  1357. },
  1358. info: {
  1359. description: {
  1360. mode: "append",
  1361. text: "\n\nHe is not currently looking at you."
  1362. }
  1363. }
  1364. },
  1365. full: {
  1366. height: math.unit(1.34, "meter"),
  1367. weight: math.unit(225, "kg"),
  1368. name: "Full",
  1369. image: {
  1370. source: "./media/characters/fen/full.svg"
  1371. },
  1372. info: {
  1373. description: {
  1374. mode: "append",
  1375. text: "\n\nMunch."
  1376. }
  1377. }
  1378. },
  1379. kneeling: {
  1380. height: math.unit(5.4, "feet"),
  1381. weight: math.unit(124.738, "kg"),
  1382. name: "Kneeling",
  1383. image: {
  1384. source: "./media/characters/fen/kneeling.svg",
  1385. extra: 563 / 507
  1386. }
  1387. },
  1388. goo: {
  1389. height: math.unit(2.8, "feet"),
  1390. weight: math.unit(125, "kg"),
  1391. capacity: math.unit(1, "people"),
  1392. name: "Goo",
  1393. image: {
  1394. source: "./media/characters/fen/goo.svg",
  1395. bottom: 116 / 613
  1396. }
  1397. },
  1398. lounging: {
  1399. height: math.unit(6.5, "feet"),
  1400. weight: math.unit(125, "kg"),
  1401. name: "Lounging",
  1402. image: {
  1403. source: "./media/characters/fen/lounging.svg"
  1404. }
  1405. },
  1406. },
  1407. [
  1408. {
  1409. name: "Normal",
  1410. height: math.unit(2.2428, "meter")
  1411. },
  1412. {
  1413. name: "Big",
  1414. height: math.unit(12, "feet")
  1415. },
  1416. {
  1417. name: "Minimacro",
  1418. height: math.unit(40, "feet"),
  1419. default: true,
  1420. info: {
  1421. description: {
  1422. mode: "append",
  1423. text: "\n\nTOO DAMN BIG"
  1424. }
  1425. }
  1426. },
  1427. {
  1428. name: "Macro",
  1429. height: math.unit(100, "feet"),
  1430. info: {
  1431. description: {
  1432. mode: "append",
  1433. text: "\n\nTOO DAMN BIG"
  1434. }
  1435. }
  1436. },
  1437. {
  1438. name: "Macro+",
  1439. height: math.unit(300, "feet")
  1440. },
  1441. {
  1442. name: "Megamacro",
  1443. height: math.unit(2, "miles")
  1444. }
  1445. ]
  1446. ))
  1447. characterMakers.push(() => makeCharacter(
  1448. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1449. {
  1450. front: {
  1451. height: math.unit(183, "cm"),
  1452. weight: math.unit(80, "kg"),
  1453. name: "Front",
  1454. image: {
  1455. source: "./media/characters/sofia-fluttertail/front.svg",
  1456. bottom: 0.01,
  1457. extra: 2154 / 2081
  1458. }
  1459. },
  1460. frontAlt: {
  1461. height: math.unit(183, "cm"),
  1462. weight: math.unit(80, "kg"),
  1463. name: "Front (alt)",
  1464. image: {
  1465. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1466. }
  1467. },
  1468. back: {
  1469. height: math.unit(183, "cm"),
  1470. weight: math.unit(80, "kg"),
  1471. name: "Back",
  1472. image: {
  1473. source: "./media/characters/sofia-fluttertail/back.svg"
  1474. }
  1475. },
  1476. kneeling: {
  1477. height: math.unit(125, "cm"),
  1478. weight: math.unit(80, "kg"),
  1479. name: "Kneeling",
  1480. image: {
  1481. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1482. extra: 1033 / 977,
  1483. bottom: 23.7 / 1057
  1484. }
  1485. },
  1486. maw: {
  1487. height: math.unit(183 / 5, "cm"),
  1488. name: "Maw",
  1489. image: {
  1490. source: "./media/characters/sofia-fluttertail/maw.svg"
  1491. }
  1492. },
  1493. mawcloseup: {
  1494. height: math.unit(183 / 5 * 0.41, "cm"),
  1495. name: "Maw (Closeup)",
  1496. image: {
  1497. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1498. }
  1499. },
  1500. },
  1501. [
  1502. {
  1503. name: "Normal",
  1504. height: math.unit(1.83, "meter")
  1505. },
  1506. {
  1507. name: "Size Thief",
  1508. height: math.unit(18, "feet")
  1509. },
  1510. {
  1511. name: "50 Foot Collie",
  1512. height: math.unit(50, "feet")
  1513. },
  1514. {
  1515. name: "Macro",
  1516. height: math.unit(96, "feet"),
  1517. default: true
  1518. },
  1519. {
  1520. name: "Megamerger",
  1521. height: math.unit(650, "feet")
  1522. },
  1523. ]
  1524. ))
  1525. characterMakers.push(() => makeCharacter(
  1526. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1527. {
  1528. front: {
  1529. height: math.unit(7, "feet"),
  1530. weight: math.unit(100, "kg"),
  1531. name: "Front",
  1532. image: {
  1533. source: "./media/characters/march/front.svg",
  1534. extra: 1,
  1535. bottom: 0.015
  1536. }
  1537. },
  1538. foot: {
  1539. height: math.unit(0.9, "feet"),
  1540. name: "Foot",
  1541. image: {
  1542. source: "./media/characters/march/foot.svg"
  1543. }
  1544. },
  1545. },
  1546. [
  1547. {
  1548. name: "Normal",
  1549. height: math.unit(7.9, "feet")
  1550. },
  1551. {
  1552. name: "Macro",
  1553. height: math.unit(220, "meters")
  1554. },
  1555. {
  1556. name: "Megamacro",
  1557. height: math.unit(2.98, "km"),
  1558. default: true
  1559. },
  1560. {
  1561. name: "Gigamacro",
  1562. height: math.unit(15963, "km")
  1563. },
  1564. {
  1565. name: "Teramacro",
  1566. height: math.unit(2980000000, "km")
  1567. },
  1568. {
  1569. name: "Examacro",
  1570. height: math.unit(250, "parsecs")
  1571. },
  1572. ]
  1573. ))
  1574. characterMakers.push(() => makeCharacter(
  1575. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1576. {
  1577. front: {
  1578. height: math.unit(6, "feet"),
  1579. weight: math.unit(60, "kg"),
  1580. name: "Front",
  1581. image: {
  1582. source: "./media/characters/noir/front.svg",
  1583. extra: 1,
  1584. bottom: 0.032
  1585. }
  1586. },
  1587. },
  1588. [
  1589. {
  1590. name: "Normal",
  1591. height: math.unit(6.6, "feet")
  1592. },
  1593. {
  1594. name: "Macro",
  1595. height: math.unit(500, "feet")
  1596. },
  1597. {
  1598. name: "Megamacro",
  1599. height: math.unit(2.5, "km"),
  1600. default: true
  1601. },
  1602. {
  1603. name: "Gigamacro",
  1604. height: math.unit(22500, "km")
  1605. },
  1606. {
  1607. name: "Teramacro",
  1608. height: math.unit(2500000000, "km")
  1609. },
  1610. {
  1611. name: "Examacro",
  1612. height: math.unit(200, "parsecs")
  1613. },
  1614. ]
  1615. ))
  1616. characterMakers.push(() => makeCharacter(
  1617. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1618. {
  1619. front: {
  1620. height: math.unit(7, "feet"),
  1621. weight: math.unit(100, "kg"),
  1622. name: "Front",
  1623. image: {
  1624. source: "./media/characters/okuri/front.svg",
  1625. extra: 1,
  1626. bottom: 0.037
  1627. }
  1628. },
  1629. back: {
  1630. height: math.unit(7, "feet"),
  1631. weight: math.unit(100, "kg"),
  1632. name: "Back",
  1633. image: {
  1634. source: "./media/characters/okuri/back.svg",
  1635. extra: 1,
  1636. bottom: 0.007
  1637. }
  1638. },
  1639. },
  1640. [
  1641. {
  1642. name: "Megamacro",
  1643. height: math.unit(100, "miles"),
  1644. default: true
  1645. },
  1646. ]
  1647. ))
  1648. characterMakers.push(() => makeCharacter(
  1649. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1650. {
  1651. front: {
  1652. height: math.unit(7, "feet"),
  1653. weight: math.unit(100, "kg"),
  1654. name: "Front",
  1655. image: {
  1656. source: "./media/characters/manny/front.svg",
  1657. extra: 1,
  1658. bottom: 0.06
  1659. }
  1660. },
  1661. back: {
  1662. height: math.unit(7, "feet"),
  1663. weight: math.unit(100, "kg"),
  1664. name: "Back",
  1665. image: {
  1666. source: "./media/characters/manny/back.svg",
  1667. extra: 1,
  1668. bottom: 0.014
  1669. }
  1670. },
  1671. },
  1672. [
  1673. {
  1674. name: "Normal",
  1675. height: math.unit(7, "feet"),
  1676. },
  1677. {
  1678. name: "Macro",
  1679. height: math.unit(78, "feet"),
  1680. default: true
  1681. },
  1682. {
  1683. name: "Macro+",
  1684. height: math.unit(300, "meters")
  1685. },
  1686. {
  1687. name: "Macro++",
  1688. height: math.unit(2400, "meters")
  1689. },
  1690. {
  1691. name: "Megamacro",
  1692. height: math.unit(5167, "meters")
  1693. },
  1694. {
  1695. name: "Gigamacro",
  1696. height: math.unit(41769, "miles")
  1697. },
  1698. ]
  1699. ))
  1700. characterMakers.push(() => makeCharacter(
  1701. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1702. {
  1703. front: {
  1704. height: math.unit(7, "feet"),
  1705. weight: math.unit(100, "kg"),
  1706. name: "Front",
  1707. image: {
  1708. source: "./media/characters/adake/front-1.svg"
  1709. }
  1710. },
  1711. frontAlt: {
  1712. height: math.unit(7, "feet"),
  1713. weight: math.unit(100, "kg"),
  1714. name: "Front (Alt)",
  1715. image: {
  1716. source: "./media/characters/adake/front-2.svg",
  1717. extra: 1,
  1718. bottom: 0.01
  1719. }
  1720. },
  1721. back: {
  1722. height: math.unit(7, "feet"),
  1723. weight: math.unit(100, "kg"),
  1724. name: "Back",
  1725. image: {
  1726. source: "./media/characters/adake/back.svg",
  1727. }
  1728. },
  1729. kneel: {
  1730. height: math.unit(5.385, "feet"),
  1731. weight: math.unit(100, "kg"),
  1732. name: "Kneeling",
  1733. image: {
  1734. source: "./media/characters/adake/kneel.svg",
  1735. bottom: 0.052
  1736. }
  1737. },
  1738. },
  1739. [
  1740. {
  1741. name: "Normal",
  1742. height: math.unit(7, "feet"),
  1743. },
  1744. {
  1745. name: "Macro",
  1746. height: math.unit(78, "feet"),
  1747. default: true
  1748. },
  1749. {
  1750. name: "Macro+",
  1751. height: math.unit(300, "meters")
  1752. },
  1753. {
  1754. name: "Macro++",
  1755. height: math.unit(2400, "meters")
  1756. },
  1757. {
  1758. name: "Megamacro",
  1759. height: math.unit(5167, "meters")
  1760. },
  1761. {
  1762. name: "Gigamacro",
  1763. height: math.unit(41769, "miles")
  1764. },
  1765. ]
  1766. ))
  1767. characterMakers.push(() => makeCharacter(
  1768. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1769. {
  1770. front: {
  1771. height: math.unit(1.65, "meters"),
  1772. weight: math.unit(50, "kg"),
  1773. name: "Front",
  1774. image: {
  1775. source: "./media/characters/elijah/front.svg",
  1776. extra: 858 / 830,
  1777. bottom: 95.5 / 953.8559
  1778. }
  1779. },
  1780. back: {
  1781. height: math.unit(1.65, "meters"),
  1782. weight: math.unit(50, "kg"),
  1783. name: "Back",
  1784. image: {
  1785. source: "./media/characters/elijah/back.svg",
  1786. extra: 895 / 850,
  1787. bottom: 5.3 / 897.956
  1788. }
  1789. },
  1790. frontNsfw: {
  1791. height: math.unit(1.65, "meters"),
  1792. weight: math.unit(50, "kg"),
  1793. name: "Front (NSFW)",
  1794. image: {
  1795. source: "./media/characters/elijah/front-nsfw.svg",
  1796. extra: 858 / 830,
  1797. bottom: 95.5 / 953.8559
  1798. }
  1799. },
  1800. backNsfw: {
  1801. height: math.unit(1.65, "meters"),
  1802. weight: math.unit(50, "kg"),
  1803. name: "Back (NSFW)",
  1804. image: {
  1805. source: "./media/characters/elijah/back-nsfw.svg",
  1806. extra: 895 / 850,
  1807. bottom: 5.3 / 897.956
  1808. }
  1809. },
  1810. dick: {
  1811. height: math.unit(1, "feet"),
  1812. name: "Dick",
  1813. image: {
  1814. source: "./media/characters/elijah/dick.svg"
  1815. }
  1816. },
  1817. beakOpen: {
  1818. height: math.unit(1.25, "feet"),
  1819. name: "Beak (Open)",
  1820. image: {
  1821. source: "./media/characters/elijah/beak-open.svg"
  1822. }
  1823. },
  1824. beakShut: {
  1825. height: math.unit(1.25, "feet"),
  1826. name: "Beak (Shut)",
  1827. image: {
  1828. source: "./media/characters/elijah/beak-shut.svg"
  1829. }
  1830. },
  1831. footFlexing: {
  1832. height: math.unit(1.61, "feet"),
  1833. name: "Foot (Flexing)",
  1834. image: {
  1835. source: "./media/characters/elijah/foot-flexing.svg"
  1836. }
  1837. },
  1838. footStepping: {
  1839. height: math.unit(1.44, "feet"),
  1840. name: "Foot (Stepping)",
  1841. image: {
  1842. source: "./media/characters/elijah/foot-stepping.svg"
  1843. }
  1844. },
  1845. plantigradeLeg: {
  1846. height: math.unit(2.34, "feet"),
  1847. name: "Plantigrade Leg",
  1848. image: {
  1849. source: "./media/characters/elijah/plantigrade-leg.svg"
  1850. }
  1851. },
  1852. plantigradeFootLeft: {
  1853. height: math.unit(0.9, "feet"),
  1854. name: "Plantigrade Foot (Left)",
  1855. image: {
  1856. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1857. }
  1858. },
  1859. plantigradeFootRight: {
  1860. height: math.unit(0.9, "feet"),
  1861. name: "Plantigrade Foot (Right)",
  1862. image: {
  1863. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1864. }
  1865. },
  1866. },
  1867. [
  1868. {
  1869. name: "Normal",
  1870. height: math.unit(1.65, "meters")
  1871. },
  1872. {
  1873. name: "Macro",
  1874. height: math.unit(55, "meters"),
  1875. default: true
  1876. },
  1877. {
  1878. name: "Macro+",
  1879. height: math.unit(105, "meters")
  1880. },
  1881. ]
  1882. ))
  1883. characterMakers.push(() => makeCharacter(
  1884. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1885. {
  1886. front: {
  1887. height: math.unit(11, "feet"),
  1888. weight: math.unit(80, "kg"),
  1889. name: "Front",
  1890. image: {
  1891. source: "./media/characters/rai/front.svg",
  1892. extra: 1,
  1893. bottom: 0.03
  1894. }
  1895. },
  1896. side: {
  1897. height: math.unit(11, "feet"),
  1898. weight: math.unit(80, "kg"),
  1899. name: "Side",
  1900. image: {
  1901. source: "./media/characters/rai/side.svg"
  1902. }
  1903. },
  1904. back: {
  1905. height: math.unit(11, "feet"),
  1906. weight: math.unit(80, "lb"),
  1907. name: "Back",
  1908. image: {
  1909. source: "./media/characters/rai/back.svg",
  1910. extra: 1,
  1911. bottom: 0.01
  1912. }
  1913. },
  1914. feral: {
  1915. height: math.unit(11, "feet"),
  1916. weight: math.unit(800, "lb"),
  1917. name: "Feral",
  1918. image: {
  1919. source: "./media/characters/rai/feral.svg",
  1920. extra: 1050 / 659,
  1921. bottom: 0.07
  1922. }
  1923. },
  1924. dragon: {
  1925. height: math.unit(23, "feet"),
  1926. weight: math.unit(50000, "lb"),
  1927. name: "Dragon",
  1928. image: {
  1929. source: "./media/characters/rai/dragon.svg",
  1930. extra: 2498 / 2030,
  1931. bottom: 85.2 / 2584
  1932. }
  1933. },
  1934. maw: {
  1935. height: math.unit(6 / 3.81416, "feet"),
  1936. name: "Maw",
  1937. image: {
  1938. source: "./media/characters/rai/maw.svg"
  1939. }
  1940. },
  1941. },
  1942. [
  1943. {
  1944. name: "Normal",
  1945. height: math.unit(11, "feet")
  1946. },
  1947. {
  1948. name: "Macro",
  1949. height: math.unit(302, "feet"),
  1950. default: true
  1951. },
  1952. ]
  1953. ))
  1954. characterMakers.push(() => makeCharacter(
  1955. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  1956. {
  1957. frontDressed: {
  1958. height: math.unit(216, "feet"),
  1959. weight: math.unit(7000000, "lb"),
  1960. name: "Front (Dressed)",
  1961. image: {
  1962. source: "./media/characters/jazzy/front-dressed.svg",
  1963. extra: 2738 / 2651,
  1964. bottom: 41.8 / 2786
  1965. }
  1966. },
  1967. backDressed: {
  1968. height: math.unit(216, "feet"),
  1969. weight: math.unit(7000000, "lb"),
  1970. name: "Back (Dressed)",
  1971. image: {
  1972. source: "./media/characters/jazzy/back-dressed.svg",
  1973. extra: 2775 / 2673,
  1974. bottom: 36.8 / 2817
  1975. }
  1976. },
  1977. front: {
  1978. height: math.unit(216, "feet"),
  1979. weight: math.unit(7000000, "lb"),
  1980. name: "Front",
  1981. image: {
  1982. source: "./media/characters/jazzy/front.svg",
  1983. extra: 2738 / 2651,
  1984. bottom: 41.8 / 2786
  1985. }
  1986. },
  1987. back: {
  1988. height: math.unit(216, "feet"),
  1989. weight: math.unit(7000000, "lb"),
  1990. name: "Back",
  1991. image: {
  1992. source: "./media/characters/jazzy/back.svg",
  1993. extra: 2775 / 2673,
  1994. bottom: 36.8 / 2817
  1995. }
  1996. },
  1997. maw: {
  1998. height: math.unit(20, "feet"),
  1999. name: "Maw",
  2000. image: {
  2001. source: "./media/characters/jazzy/maw.svg"
  2002. }
  2003. },
  2004. paws: {
  2005. height: math.unit(27.5, "feet"),
  2006. name: "Paws",
  2007. image: {
  2008. source: "./media/characters/jazzy/paws.svg"
  2009. }
  2010. },
  2011. eye: {
  2012. height: math.unit(4.4, "feet"),
  2013. name: "Eye",
  2014. image: {
  2015. source: "./media/characters/jazzy/eye.svg"
  2016. }
  2017. },
  2018. droneOffense: {
  2019. height: math.unit(9.5, "inches"),
  2020. name: "Drone (Offense)",
  2021. image: {
  2022. source: "./media/characters/jazzy/drone-offense.svg"
  2023. }
  2024. },
  2025. droneRecon: {
  2026. height: math.unit(9.5, "inches"),
  2027. name: "Drone (Recon)",
  2028. image: {
  2029. source: "./media/characters/jazzy/drone-recon.svg"
  2030. }
  2031. },
  2032. droneDefense: {
  2033. height: math.unit(9.5, "inches"),
  2034. name: "Drone (Defense)",
  2035. image: {
  2036. source: "./media/characters/jazzy/drone-defense.svg"
  2037. }
  2038. },
  2039. },
  2040. [
  2041. {
  2042. name: "Macro",
  2043. height: math.unit(216, "feet"),
  2044. default: true
  2045. },
  2046. ]
  2047. ))
  2048. characterMakers.push(() => makeCharacter(
  2049. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2050. {
  2051. front: {
  2052. height: math.unit(7, "feet"),
  2053. weight: math.unit(80, "kg"),
  2054. name: "Front",
  2055. image: {
  2056. source: "./media/characters/flamm/front.svg",
  2057. extra: 1794 / 1677,
  2058. bottom: 31.7 / 1828.5
  2059. }
  2060. },
  2061. },
  2062. [
  2063. {
  2064. name: "Normal",
  2065. height: math.unit(9.5, "feet")
  2066. },
  2067. {
  2068. name: "Macro",
  2069. height: math.unit(200, "feet"),
  2070. default: true
  2071. },
  2072. ]
  2073. ))
  2074. characterMakers.push(() => makeCharacter(
  2075. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2076. {
  2077. front: {
  2078. height: math.unit(7, "feet"),
  2079. weight: math.unit(80, "kg"),
  2080. name: "Front",
  2081. image: {
  2082. source: "./media/characters/zephiro/front.svg",
  2083. extra: 2309 / 2162,
  2084. bottom: 0.069
  2085. }
  2086. },
  2087. side: {
  2088. height: math.unit(7, "feet"),
  2089. weight: math.unit(80, "kg"),
  2090. name: "Side",
  2091. image: {
  2092. source: "./media/characters/zephiro/side.svg",
  2093. extra: 2403 / 2279,
  2094. bottom: 0.015
  2095. }
  2096. },
  2097. back: {
  2098. height: math.unit(7, "feet"),
  2099. weight: math.unit(80, "kg"),
  2100. name: "Back",
  2101. image: {
  2102. source: "./media/characters/zephiro/back.svg",
  2103. extra: 2373 / 2244,
  2104. bottom: 0.013
  2105. }
  2106. },
  2107. },
  2108. [
  2109. {
  2110. name: "Micro",
  2111. height: math.unit(3, "inches")
  2112. },
  2113. {
  2114. name: "Normal",
  2115. height: math.unit(5 + 3 / 12, "feet"),
  2116. default: true
  2117. },
  2118. {
  2119. name: "Macro",
  2120. height: math.unit(118, "feet")
  2121. },
  2122. ]
  2123. ))
  2124. characterMakers.push(() => makeCharacter(
  2125. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2126. {
  2127. front: {
  2128. height: math.unit(5, "feet"),
  2129. weight: math.unit(90, "kg"),
  2130. name: "Front",
  2131. image: {
  2132. source: "./media/characters/fory/front.svg",
  2133. extra: 2862 / 2674,
  2134. bottom: 180 / 3043.8
  2135. }
  2136. },
  2137. back: {
  2138. height: math.unit(5, "feet"),
  2139. weight: math.unit(90, "kg"),
  2140. name: "Back",
  2141. image: {
  2142. source: "./media/characters/fory/back.svg",
  2143. extra: 2962 / 2791,
  2144. bottom: 106 / 3071.8
  2145. }
  2146. },
  2147. foot: {
  2148. height: math.unit(2.14, "feet"),
  2149. name: "Foot",
  2150. image: {
  2151. source: "./media/characters/fory/foot.svg"
  2152. }
  2153. },
  2154. },
  2155. [
  2156. {
  2157. name: "Normal",
  2158. height: math.unit(5, "feet")
  2159. },
  2160. {
  2161. name: "Macro",
  2162. height: math.unit(50, "feet"),
  2163. default: true
  2164. },
  2165. {
  2166. name: "Megamacro",
  2167. height: math.unit(10, "miles")
  2168. },
  2169. {
  2170. name: "Gigamacro",
  2171. height: math.unit(5, "earths")
  2172. },
  2173. ]
  2174. ))
  2175. characterMakers.push(() => makeCharacter(
  2176. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2177. {
  2178. front: {
  2179. height: math.unit(7, "feet"),
  2180. weight: math.unit(90, "kg"),
  2181. name: "Front",
  2182. image: {
  2183. source: "./media/characters/kurrikage/front.svg",
  2184. extra: 1,
  2185. bottom: 0.035
  2186. }
  2187. },
  2188. back: {
  2189. height: math.unit(7, "feet"),
  2190. weight: math.unit(90, "lb"),
  2191. name: "Back",
  2192. image: {
  2193. source: "./media/characters/kurrikage/back.svg"
  2194. }
  2195. },
  2196. paw: {
  2197. height: math.unit(1.5, "feet"),
  2198. name: "Paw",
  2199. image: {
  2200. source: "./media/characters/kurrikage/paw.svg"
  2201. }
  2202. },
  2203. staff: {
  2204. height: math.unit(6.7, "feet"),
  2205. name: "Staff",
  2206. image: {
  2207. source: "./media/characters/kurrikage/staff.svg"
  2208. }
  2209. },
  2210. peek: {
  2211. height: math.unit(1.05, "feet"),
  2212. name: "Peeking",
  2213. image: {
  2214. source: "./media/characters/kurrikage/peek.svg",
  2215. bottom: 0.08
  2216. }
  2217. },
  2218. },
  2219. [
  2220. {
  2221. name: "Normal",
  2222. height: math.unit(12, "feet"),
  2223. default: true
  2224. },
  2225. {
  2226. name: "Big",
  2227. height: math.unit(20, "feet")
  2228. },
  2229. {
  2230. name: "Macro",
  2231. height: math.unit(500, "feet")
  2232. },
  2233. {
  2234. name: "Megamacro",
  2235. height: math.unit(20, "miles")
  2236. },
  2237. ]
  2238. ))
  2239. characterMakers.push(() => makeCharacter(
  2240. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2241. {
  2242. front: {
  2243. height: math.unit(6, "feet"),
  2244. weight: math.unit(75, "kg"),
  2245. name: "Front",
  2246. image: {
  2247. source: "./media/characters/shingo/front.svg",
  2248. extra: 3511 / 3338,
  2249. bottom: 0.005
  2250. }
  2251. },
  2252. paw: {
  2253. height: math.unit(1, "feet"),
  2254. name: "Paw",
  2255. image: {
  2256. source: "./media/characters/shingo/paw.svg"
  2257. }
  2258. },
  2259. },
  2260. [
  2261. {
  2262. name: "Micro",
  2263. height: math.unit(4, "inches")
  2264. },
  2265. {
  2266. name: "Normal",
  2267. height: math.unit(6, "feet"),
  2268. default: true
  2269. },
  2270. {
  2271. name: "Macro",
  2272. height: math.unit(108, "feet")
  2273. }
  2274. ]
  2275. ))
  2276. characterMakers.push(() => makeCharacter(
  2277. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2278. {
  2279. side: {
  2280. height: math.unit(6, "feet"),
  2281. weight: math.unit(75, "kg"),
  2282. name: "Side",
  2283. image: {
  2284. source: "./media/characters/aigey/side.svg"
  2285. }
  2286. },
  2287. },
  2288. [
  2289. {
  2290. name: "Macro",
  2291. height: math.unit(200, "feet"),
  2292. default: true
  2293. },
  2294. {
  2295. name: "Megamacro",
  2296. height: math.unit(100, "miles")
  2297. },
  2298. ]
  2299. )
  2300. )
  2301. characterMakers.push(() => makeCharacter(
  2302. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2303. {
  2304. front: {
  2305. height: math.unit(5 + 5 / 12, "feet"),
  2306. weight: math.unit(75, "kg"),
  2307. name: "Front",
  2308. image: {
  2309. source: "./media/characters/natasha/front.svg",
  2310. extra: 859 / 824,
  2311. bottom: 23 / 879.6
  2312. }
  2313. },
  2314. frontNsfw: {
  2315. height: math.unit(5 + 5 / 12, "feet"),
  2316. weight: math.unit(75, "kg"),
  2317. name: "Front (NSFW)",
  2318. image: {
  2319. source: "./media/characters/natasha/front-nsfw.svg",
  2320. extra: 859 / 824,
  2321. bottom: 23 / 879.6
  2322. }
  2323. },
  2324. frontErect: {
  2325. height: math.unit(5 + 5 / 12, "feet"),
  2326. weight: math.unit(75, "kg"),
  2327. name: "Front (Erect)",
  2328. image: {
  2329. source: "./media/characters/natasha/front-erect.svg",
  2330. extra: 859 / 824,
  2331. bottom: 23 / 879.6
  2332. }
  2333. },
  2334. back: {
  2335. height: math.unit(5 + 5 / 12, "feet"),
  2336. weight: math.unit(75, "kg"),
  2337. name: "Back",
  2338. image: {
  2339. source: "./media/characters/natasha/back.svg",
  2340. extra: 887.9 / 852.6,
  2341. bottom: 9.7 / 896.4
  2342. }
  2343. },
  2344. backAlt: {
  2345. height: math.unit(5 + 5 / 12, "feet"),
  2346. weight: math.unit(75, "kg"),
  2347. name: "Back (Alt)",
  2348. image: {
  2349. source: "./media/characters/natasha/back-alt.svg",
  2350. extra: 1236.7 / 1192,
  2351. bottom: 22.3 / 1258.2
  2352. }
  2353. },
  2354. dick: {
  2355. height: math.unit(1.772, "feet"),
  2356. name: "Dick",
  2357. image: {
  2358. source: "./media/characters/natasha/dick.svg"
  2359. }
  2360. },
  2361. },
  2362. [
  2363. {
  2364. name: "Normal",
  2365. height: math.unit(5 + 5 / 12, "feet")
  2366. },
  2367. {
  2368. name: "Large",
  2369. height: math.unit(12, "feet")
  2370. },
  2371. {
  2372. name: "Macro",
  2373. height: math.unit(100, "feet"),
  2374. default: true
  2375. },
  2376. {
  2377. name: "Macro+",
  2378. height: math.unit(260, "feet")
  2379. },
  2380. {
  2381. name: "Macro++",
  2382. height: math.unit(1, "mile")
  2383. },
  2384. ]
  2385. ))
  2386. characterMakers.push(() => makeCharacter(
  2387. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2388. {
  2389. front: {
  2390. height: math.unit(6, "feet"),
  2391. weight: math.unit(75, "kg"),
  2392. name: "Front",
  2393. image: {
  2394. source: "./media/characters/malik/front.svg"
  2395. }
  2396. },
  2397. side: {
  2398. height: math.unit(6, "feet"),
  2399. weight: math.unit(75, "kg"),
  2400. name: "Side",
  2401. image: {
  2402. source: "./media/characters/malik/side.svg",
  2403. extra: 1.1539
  2404. }
  2405. },
  2406. back: {
  2407. height: math.unit(6, "feet"),
  2408. weight: math.unit(75, "kg"),
  2409. name: "Back",
  2410. image: {
  2411. source: "./media/characters/malik/back.svg"
  2412. }
  2413. },
  2414. },
  2415. [
  2416. {
  2417. name: "Macro",
  2418. height: math.unit(156, "feet"),
  2419. default: true
  2420. },
  2421. {
  2422. name: "Macro+",
  2423. height: math.unit(1188, "feet")
  2424. },
  2425. ]
  2426. ))
  2427. characterMakers.push(() => makeCharacter(
  2428. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2429. {
  2430. front: {
  2431. height: math.unit(6, "feet"),
  2432. weight: math.unit(75, "kg"),
  2433. name: "Front",
  2434. image: {
  2435. source: "./media/characters/sefer/front.svg",
  2436. extra: 848 / 659,
  2437. bottom: 28.3 / 876.442
  2438. }
  2439. },
  2440. back: {
  2441. height: math.unit(6, "feet"),
  2442. weight: math.unit(75, "kg"),
  2443. name: "Back",
  2444. image: {
  2445. source: "./media/characters/sefer/back.svg",
  2446. extra: 864 / 695,
  2447. bottom: 10 / 871
  2448. }
  2449. },
  2450. frontDressed: {
  2451. height: math.unit(6, "feet"),
  2452. weight: math.unit(75, "kg"),
  2453. name: "Front (Dressed)",
  2454. image: {
  2455. source: "./media/characters/sefer/front-dressed.svg",
  2456. extra: 839 / 653,
  2457. bottom: 37.6 / 878
  2458. }
  2459. },
  2460. },
  2461. [
  2462. {
  2463. name: "Normal",
  2464. height: math.unit(6, "feet"),
  2465. default: true
  2466. },
  2467. ]
  2468. ))
  2469. characterMakers.push(() => makeCharacter(
  2470. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2471. {
  2472. body: {
  2473. height: math.unit(2.2428, "meter"),
  2474. weight: math.unit(124.738, "kg"),
  2475. name: "Body",
  2476. image: {
  2477. extra: 1225 / 1050,
  2478. source: "./media/characters/north/front.svg"
  2479. }
  2480. }
  2481. },
  2482. [
  2483. {
  2484. name: "Micro",
  2485. height: math.unit(4, "inches")
  2486. },
  2487. {
  2488. name: "Macro",
  2489. height: math.unit(63, "meters")
  2490. },
  2491. {
  2492. name: "Megamacro",
  2493. height: math.unit(101, "miles"),
  2494. default: true
  2495. }
  2496. ]
  2497. ))
  2498. characterMakers.push(() => makeCharacter(
  2499. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2500. {
  2501. angled: {
  2502. height: math.unit(4, "meter"),
  2503. weight: math.unit(150, "kg"),
  2504. name: "Angled",
  2505. image: {
  2506. source: "./media/characters/talan/angled-sfw.svg",
  2507. bottom: 29 / 3734
  2508. }
  2509. },
  2510. angledNsfw: {
  2511. height: math.unit(4, "meter"),
  2512. weight: math.unit(150, "kg"),
  2513. name: "Angled (NSFW)",
  2514. image: {
  2515. source: "./media/characters/talan/angled-nsfw.svg",
  2516. bottom: 29 / 3734
  2517. }
  2518. },
  2519. frontNsfw: {
  2520. height: math.unit(4, "meter"),
  2521. weight: math.unit(150, "kg"),
  2522. name: "Front (NSFW)",
  2523. image: {
  2524. source: "./media/characters/talan/front-nsfw.svg",
  2525. bottom: 29 / 3734
  2526. }
  2527. },
  2528. sideNsfw: {
  2529. height: math.unit(4, "meter"),
  2530. weight: math.unit(150, "kg"),
  2531. name: "Side (NSFW)",
  2532. image: {
  2533. source: "./media/characters/talan/side-nsfw.svg",
  2534. bottom: 29 / 3734
  2535. }
  2536. },
  2537. back: {
  2538. height: math.unit(4, "meter"),
  2539. weight: math.unit(150, "kg"),
  2540. name: "Back",
  2541. image: {
  2542. source: "./media/characters/talan/back.svg"
  2543. }
  2544. },
  2545. dickBottom: {
  2546. height: math.unit(0.621, "meter"),
  2547. name: "Dick (Bottom)",
  2548. image: {
  2549. source: "./media/characters/talan/dick-bottom.svg"
  2550. }
  2551. },
  2552. dickTop: {
  2553. height: math.unit(0.621, "meter"),
  2554. name: "Dick (Top)",
  2555. image: {
  2556. source: "./media/characters/talan/dick-top.svg"
  2557. }
  2558. },
  2559. dickSide: {
  2560. height: math.unit(0.305, "meter"),
  2561. name: "Dick (Side)",
  2562. image: {
  2563. source: "./media/characters/talan/dick-side.svg"
  2564. }
  2565. },
  2566. dickFront: {
  2567. height: math.unit(0.305, "meter"),
  2568. name: "Dick (Front)",
  2569. image: {
  2570. source: "./media/characters/talan/dick-front.svg"
  2571. }
  2572. },
  2573. },
  2574. [
  2575. {
  2576. name: "Normal",
  2577. height: math.unit(4, "meters")
  2578. },
  2579. {
  2580. name: "Macro",
  2581. height: math.unit(100, "meters")
  2582. },
  2583. {
  2584. name: "Megamacro",
  2585. height: math.unit(2, "miles"),
  2586. default: true
  2587. },
  2588. {
  2589. name: "Gigamacro",
  2590. height: math.unit(5000, "miles")
  2591. },
  2592. {
  2593. name: "Teramacro",
  2594. height: math.unit(100, "parsecs")
  2595. }
  2596. ]
  2597. ))
  2598. characterMakers.push(() => makeCharacter(
  2599. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2600. {
  2601. front: {
  2602. height: math.unit(2, "meter"),
  2603. weight: math.unit(90, "kg"),
  2604. name: "Front",
  2605. image: {
  2606. source: "./media/characters/gael'rathus/front.svg"
  2607. }
  2608. },
  2609. frontAlt: {
  2610. height: math.unit(2, "meter"),
  2611. weight: math.unit(90, "kg"),
  2612. name: "Front (alt)",
  2613. image: {
  2614. source: "./media/characters/gael'rathus/front-alt.svg"
  2615. }
  2616. },
  2617. frontAlt2: {
  2618. height: math.unit(2, "meter"),
  2619. weight: math.unit(90, "kg"),
  2620. name: "Front (alt 2)",
  2621. image: {
  2622. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2623. }
  2624. }
  2625. },
  2626. [
  2627. {
  2628. name: "Normal",
  2629. height: math.unit(9, "feet"),
  2630. default: true
  2631. },
  2632. {
  2633. name: "Large",
  2634. height: math.unit(25, "feet")
  2635. },
  2636. {
  2637. name: "Macro",
  2638. height: math.unit(0.25, "miles")
  2639. },
  2640. {
  2641. name: "Megamacro",
  2642. height: math.unit(10, "miles")
  2643. }
  2644. ]
  2645. ))
  2646. characterMakers.push(() => makeCharacter(
  2647. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2648. {
  2649. side: {
  2650. height: math.unit(2, "meter"),
  2651. weight: math.unit(140, "kg"),
  2652. name: "Side",
  2653. image: {
  2654. source: "./media/characters/sosha/side.svg",
  2655. bottom: 0.042
  2656. }
  2657. },
  2658. },
  2659. [
  2660. {
  2661. name: "Normal",
  2662. height: math.unit(12, "feet"),
  2663. default: true
  2664. }
  2665. ]
  2666. ))
  2667. characterMakers.push(() => makeCharacter(
  2668. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2669. {
  2670. side: {
  2671. height: math.unit(5 + 5 / 12, "feet"),
  2672. weight: math.unit(170, "kg"),
  2673. name: "Side",
  2674. image: {
  2675. source: "./media/characters/runnola/side.svg",
  2676. extra: 741 / 448,
  2677. bottom: 0.05
  2678. }
  2679. },
  2680. },
  2681. [
  2682. {
  2683. name: "Small",
  2684. height: math.unit(3, "feet")
  2685. },
  2686. {
  2687. name: "Normal",
  2688. height: math.unit(5 + 5 / 12, "feet"),
  2689. default: true
  2690. },
  2691. {
  2692. name: "Big",
  2693. height: math.unit(10, "feet")
  2694. },
  2695. ]
  2696. ))
  2697. characterMakers.push(() => makeCharacter(
  2698. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2699. {
  2700. front: {
  2701. height: math.unit(2, "meter"),
  2702. weight: math.unit(50, "kg"),
  2703. name: "Front",
  2704. image: {
  2705. source: "./media/characters/kurribird/front.svg",
  2706. bottom: 0.015
  2707. }
  2708. },
  2709. frontAlt: {
  2710. height: math.unit(1.5, "meter"),
  2711. weight: math.unit(50, "kg"),
  2712. name: "Front (Alt)",
  2713. image: {
  2714. source: "./media/characters/kurribird/front-alt.svg",
  2715. extra: 1.45
  2716. }
  2717. },
  2718. },
  2719. [
  2720. {
  2721. name: "Normal",
  2722. height: math.unit(7, "feet")
  2723. },
  2724. {
  2725. name: "Big",
  2726. height: math.unit(12, "feet"),
  2727. default: true
  2728. },
  2729. {
  2730. name: "Macro",
  2731. height: math.unit(1500, "feet")
  2732. },
  2733. {
  2734. name: "Megamacro",
  2735. height: math.unit(2, "miles")
  2736. }
  2737. ]
  2738. ))
  2739. characterMakers.push(() => makeCharacter(
  2740. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2741. {
  2742. front: {
  2743. height: math.unit(2, "meter"),
  2744. weight: math.unit(80, "kg"),
  2745. name: "Front",
  2746. image: {
  2747. source: "./media/characters/elbial/front.svg",
  2748. extra: 1643 / 1556,
  2749. bottom: 60.2 / 1696
  2750. }
  2751. },
  2752. side: {
  2753. height: math.unit(2, "meter"),
  2754. weight: math.unit(80, "kg"),
  2755. name: "Side",
  2756. image: {
  2757. source: "./media/characters/elbial/side.svg",
  2758. extra: 1630 / 1565,
  2759. bottom: 71.5 / 1697
  2760. }
  2761. },
  2762. back: {
  2763. height: math.unit(2, "meter"),
  2764. weight: math.unit(80, "kg"),
  2765. name: "Back",
  2766. image: {
  2767. source: "./media/characters/elbial/back.svg",
  2768. extra: 1668 / 1595,
  2769. bottom: 5.6 / 1672
  2770. }
  2771. },
  2772. frontDressed: {
  2773. height: math.unit(2, "meter"),
  2774. weight: math.unit(80, "kg"),
  2775. name: "Front (Dressed)",
  2776. image: {
  2777. source: "./media/characters/elbial/front-dressed.svg",
  2778. extra: 1653 / 1584,
  2779. bottom: 57 / 1708
  2780. }
  2781. },
  2782. genitals: {
  2783. height: math.unit(2 / 3.367, "meter"),
  2784. name: "Genitals",
  2785. image: {
  2786. source: "./media/characters/elbial/genitals.svg"
  2787. }
  2788. },
  2789. },
  2790. [
  2791. {
  2792. name: "Large",
  2793. height: math.unit(100, "feet")
  2794. },
  2795. {
  2796. name: "Macro",
  2797. height: math.unit(500, "feet"),
  2798. default: true
  2799. },
  2800. {
  2801. name: "Megamacro",
  2802. height: math.unit(10, "miles")
  2803. },
  2804. {
  2805. name: "Gigamacro",
  2806. height: math.unit(25000, "miles")
  2807. },
  2808. {
  2809. name: "Full-Size",
  2810. height: math.unit(8000000, "gigaparsecs")
  2811. }
  2812. ]
  2813. ))
  2814. characterMakers.push(() => makeCharacter(
  2815. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2816. {
  2817. front: {
  2818. height: math.unit(2, "meter"),
  2819. weight: math.unit(60, "kg"),
  2820. name: "Front",
  2821. image: {
  2822. source: "./media/characters/noah/front.svg"
  2823. }
  2824. },
  2825. talons: {
  2826. height: math.unit(0.315, "meter"),
  2827. name: "Talons",
  2828. image: {
  2829. source: "./media/characters/noah/talons.svg"
  2830. }
  2831. }
  2832. },
  2833. [
  2834. {
  2835. name: "Large",
  2836. height: math.unit(50, "feet")
  2837. },
  2838. {
  2839. name: "Macro",
  2840. height: math.unit(750, "feet"),
  2841. default: true
  2842. },
  2843. {
  2844. name: "Megamacro",
  2845. height: math.unit(50, "miles")
  2846. },
  2847. {
  2848. name: "Gigamacro",
  2849. height: math.unit(100000, "miles")
  2850. },
  2851. {
  2852. name: "Full-Size",
  2853. height: math.unit(3000000000, "miles")
  2854. }
  2855. ]
  2856. ))
  2857. characterMakers.push(() => makeCharacter(
  2858. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2859. {
  2860. front: {
  2861. height: math.unit(2, "meter"),
  2862. weight: math.unit(80, "kg"),
  2863. name: "Front",
  2864. image: {
  2865. source: "./media/characters/natalya/front.svg"
  2866. }
  2867. },
  2868. back: {
  2869. height: math.unit(2, "meter"),
  2870. weight: math.unit(80, "kg"),
  2871. name: "Back",
  2872. image: {
  2873. source: "./media/characters/natalya/back.svg"
  2874. }
  2875. }
  2876. },
  2877. [
  2878. {
  2879. name: "Normal",
  2880. height: math.unit(150, "feet"),
  2881. default: true
  2882. },
  2883. {
  2884. name: "Megamacro",
  2885. height: math.unit(5, "miles")
  2886. },
  2887. {
  2888. name: "Full-Size",
  2889. height: math.unit(600, "kiloparsecs")
  2890. }
  2891. ]
  2892. ))
  2893. characterMakers.push(() => makeCharacter(
  2894. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2895. {
  2896. front: {
  2897. height: math.unit(2, "meter"),
  2898. weight: math.unit(50, "kg"),
  2899. name: "Front",
  2900. image: {
  2901. source: "./media/characters/erestrebah/front.svg",
  2902. extra: 208 / 193,
  2903. bottom: 0.055
  2904. }
  2905. },
  2906. back: {
  2907. height: math.unit(2, "meter"),
  2908. weight: math.unit(50, "kg"),
  2909. name: "Back",
  2910. image: {
  2911. source: "./media/characters/erestrebah/back.svg",
  2912. extra: 1.3
  2913. }
  2914. }
  2915. },
  2916. [
  2917. {
  2918. name: "Normal",
  2919. height: math.unit(10, "feet")
  2920. },
  2921. {
  2922. name: "Large",
  2923. height: math.unit(50, "feet"),
  2924. default: true
  2925. },
  2926. {
  2927. name: "Macro",
  2928. height: math.unit(300, "feet")
  2929. },
  2930. {
  2931. name: "Macro+",
  2932. height: math.unit(750, "feet")
  2933. },
  2934. {
  2935. name: "Megamacro",
  2936. height: math.unit(3, "miles")
  2937. }
  2938. ]
  2939. ))
  2940. characterMakers.push(() => makeCharacter(
  2941. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2942. {
  2943. front: {
  2944. height: math.unit(2, "meter"),
  2945. weight: math.unit(80, "kg"),
  2946. name: "Front",
  2947. image: {
  2948. source: "./media/characters/jennifer/front.svg",
  2949. bottom: 0.11,
  2950. extra: 1.16
  2951. }
  2952. },
  2953. frontAlt: {
  2954. height: math.unit(2, "meter"),
  2955. weight: math.unit(80, "kg"),
  2956. name: "Front (Alt)",
  2957. image: {
  2958. source: "./media/characters/jennifer/front-alt.svg"
  2959. }
  2960. }
  2961. },
  2962. [
  2963. {
  2964. name: "Canon Height",
  2965. height: math.unit(120, "feet"),
  2966. default: true
  2967. },
  2968. {
  2969. name: "Macro+",
  2970. height: math.unit(300, "feet")
  2971. },
  2972. {
  2973. name: "Megamacro",
  2974. height: math.unit(20000, "feet")
  2975. }
  2976. ]
  2977. ))
  2978. characterMakers.push(() => makeCharacter(
  2979. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  2980. {
  2981. front: {
  2982. height: math.unit(2, "meter"),
  2983. weight: math.unit(50, "kg"),
  2984. name: "Front",
  2985. image: {
  2986. source: "./media/characters/kalista/front.svg",
  2987. extra: 1947 / 1700,
  2988. bottom: 76.6 / 1412.98
  2989. }
  2990. },
  2991. back: {
  2992. height: math.unit(2, "meter"),
  2993. weight: math.unit(50, "kg"),
  2994. name: "Back",
  2995. image: {
  2996. source: "./media/characters/kalista/back.svg",
  2997. extra: 1366 / 1156,
  2998. bottom: 33.9 / 1362.78
  2999. }
  3000. }
  3001. },
  3002. [
  3003. {
  3004. name: "Uncomfortably Small",
  3005. height: math.unit(10, "feet")
  3006. },
  3007. {
  3008. name: "Small",
  3009. height: math.unit(30, "feet")
  3010. },
  3011. {
  3012. name: "Macro",
  3013. height: math.unit(100, "feet"),
  3014. default: true
  3015. },
  3016. {
  3017. name: "Macro+",
  3018. height: math.unit(2000, "feet")
  3019. },
  3020. {
  3021. name: "True Form",
  3022. height: math.unit(8924, "miles")
  3023. }
  3024. ]
  3025. ))
  3026. characterMakers.push(() => makeCharacter(
  3027. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3028. {
  3029. front: {
  3030. height: math.unit(2, "meter"),
  3031. weight: math.unit(120, "kg"),
  3032. name: "Front",
  3033. image: {
  3034. source: "./media/characters/ggv/front.svg"
  3035. }
  3036. },
  3037. side: {
  3038. height: math.unit(2, "meter"),
  3039. weight: math.unit(120, "kg"),
  3040. name: "Side",
  3041. image: {
  3042. source: "./media/characters/ggv/side.svg"
  3043. }
  3044. }
  3045. },
  3046. [
  3047. {
  3048. name: "Extremely Puny",
  3049. height: math.unit(9 + 5 / 12, "feet")
  3050. },
  3051. {
  3052. name: "Horribly Small",
  3053. height: math.unit(47.7, "miles"),
  3054. default: true
  3055. },
  3056. {
  3057. name: "Reasonably Sized",
  3058. height: math.unit(25000, "parsecs")
  3059. },
  3060. {
  3061. name: "Slightly Uncompressed",
  3062. height: math.unit(7.77e31, "parsecs")
  3063. },
  3064. {
  3065. name: "Omniversal",
  3066. height: math.unit(1e300, "meters")
  3067. },
  3068. ]
  3069. ))
  3070. characterMakers.push(() => makeCharacter(
  3071. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3072. {
  3073. front: {
  3074. height: math.unit(2, "meter"),
  3075. weight: math.unit(75, "lb"),
  3076. name: "Front",
  3077. image: {
  3078. source: "./media/characters/napalm/front.svg"
  3079. }
  3080. },
  3081. back: {
  3082. height: math.unit(2, "meter"),
  3083. weight: math.unit(75, "lb"),
  3084. name: "Back",
  3085. image: {
  3086. source: "./media/characters/napalm/back.svg"
  3087. }
  3088. }
  3089. },
  3090. [
  3091. {
  3092. name: "Standard",
  3093. height: math.unit(55, "feet"),
  3094. default: true
  3095. }
  3096. ]
  3097. ))
  3098. characterMakers.push(() => makeCharacter(
  3099. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3100. {
  3101. front: {
  3102. height: math.unit(7 + 5 / 6, "feet"),
  3103. weight: math.unit(325, "lb"),
  3104. name: "Front",
  3105. image: {
  3106. source: "./media/characters/asana/front.svg",
  3107. extra: 1133 / 1060,
  3108. bottom: 15.2/1148.6
  3109. }
  3110. },
  3111. back: {
  3112. height: math.unit(7 + 5 / 6, "feet"),
  3113. weight: math.unit(325, "lb"),
  3114. name: "Back",
  3115. image: {
  3116. source: "./media/characters/asana/back.svg",
  3117. extra: 1114 / 1043,
  3118. bottom: 5/1120
  3119. }
  3120. },
  3121. dressedDark: {
  3122. height: math.unit(7 + 5 / 6, "feet"),
  3123. weight: math.unit(325, "lb"),
  3124. name: "Dressed (Dark)",
  3125. image: {
  3126. source: "./media/characters/asana/dressed-dark.svg",
  3127. extra: 1133 / 1060,
  3128. bottom: 15.2/1148.6
  3129. }
  3130. },
  3131. dressedLight: {
  3132. height: math.unit(7 + 5 / 6, "feet"),
  3133. weight: math.unit(325, "lb"),
  3134. name: "Dressed (Light)",
  3135. image: {
  3136. source: "./media/characters/asana/dressed-light.svg",
  3137. extra: 1133 / 1060,
  3138. bottom: 15.2/1148.6
  3139. }
  3140. },
  3141. },
  3142. [
  3143. {
  3144. name: "Standard",
  3145. height: math.unit(7 + 5 / 6, "feet"),
  3146. default: true
  3147. },
  3148. {
  3149. name: "Large",
  3150. height: math.unit(10, "meters")
  3151. },
  3152. {
  3153. name: "Macro",
  3154. height: math.unit(2500, "meters")
  3155. },
  3156. {
  3157. name: "Megamacro",
  3158. height: math.unit(5e6, "meters")
  3159. },
  3160. {
  3161. name: "Examacro",
  3162. height: math.unit(5e12, "lightyears")
  3163. },
  3164. {
  3165. name: "Max Size",
  3166. height: math.unit(1e31, "lightyears")
  3167. }
  3168. ]
  3169. ))
  3170. characterMakers.push(() => makeCharacter(
  3171. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3172. {
  3173. front: {
  3174. height: math.unit(2, "meter"),
  3175. weight: math.unit(60, "kg"),
  3176. name: "Front",
  3177. image: {
  3178. source: "./media/characters/ebony/front.svg",
  3179. bottom: 0.03,
  3180. extra: 1045 / 810 + 0.03
  3181. }
  3182. },
  3183. side: {
  3184. height: math.unit(2, "meter"),
  3185. weight: math.unit(60, "kg"),
  3186. name: "Side",
  3187. image: {
  3188. source: "./media/characters/ebony/side.svg",
  3189. bottom: 0.03,
  3190. extra: 1045 / 810 + 0.03
  3191. }
  3192. },
  3193. back: {
  3194. height: math.unit(2, "meter"),
  3195. weight: math.unit(60, "kg"),
  3196. name: "Back",
  3197. image: {
  3198. source: "./media/characters/ebony/back.svg",
  3199. bottom: 0.01,
  3200. extra: 1045 / 810 + 0.01
  3201. }
  3202. },
  3203. },
  3204. [
  3205. // TODO check why I did this lol
  3206. {
  3207. name: "Standard",
  3208. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3209. default: true
  3210. },
  3211. {
  3212. name: "Macro",
  3213. height: math.unit(200, "feet")
  3214. },
  3215. {
  3216. name: "Gigamacro",
  3217. height: math.unit(13000, "km")
  3218. }
  3219. ]
  3220. ))
  3221. characterMakers.push(() => makeCharacter(
  3222. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3223. {
  3224. front: {
  3225. height: math.unit(6, "feet"),
  3226. weight: math.unit(175, "lb"),
  3227. name: "Front",
  3228. image: {
  3229. source: "./media/characters/mountain/front.svg",
  3230. extra: 972/955,
  3231. bottom: 64/1036.6
  3232. }
  3233. },
  3234. back: {
  3235. height: math.unit(6, "feet"),
  3236. weight: math.unit(175, "lb"),
  3237. name: "Back",
  3238. image: {
  3239. source: "./media/characters/mountain/back.svg",
  3240. extra: 970/950,
  3241. bottom: 28.25/999
  3242. }
  3243. },
  3244. },
  3245. [
  3246. {
  3247. name: "Large",
  3248. height: math.unit(20, "meters")
  3249. },
  3250. {
  3251. name: "Macro",
  3252. height: math.unit(300, "meters")
  3253. },
  3254. {
  3255. name: "Gigamacro",
  3256. height: math.unit(10000, "km"),
  3257. default: true
  3258. },
  3259. {
  3260. name: "Examacro",
  3261. height: math.unit(10e9, "lightyears")
  3262. }
  3263. ]
  3264. ))
  3265. characterMakers.push(() => makeCharacter(
  3266. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3267. {
  3268. front: {
  3269. height: math.unit(8, "feet"),
  3270. weight: math.unit(500, "lb"),
  3271. name: "Front",
  3272. image: {
  3273. source: "./media/characters/rick/front.svg"
  3274. }
  3275. }
  3276. },
  3277. [
  3278. {
  3279. name: "Normal",
  3280. height: math.unit(8, "feet"),
  3281. default: true
  3282. },
  3283. {
  3284. name: "Macro",
  3285. height: math.unit(5, "km")
  3286. }
  3287. ]
  3288. ))
  3289. characterMakers.push(() => makeCharacter(
  3290. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3291. {
  3292. front: {
  3293. height: math.unit(8, "feet"),
  3294. weight: math.unit(120, "lb"),
  3295. name: "Front",
  3296. image: {
  3297. source: "./media/characters/ona/front.svg"
  3298. }
  3299. },
  3300. frontAlt: {
  3301. height: math.unit(8, "feet"),
  3302. weight: math.unit(120, "lb"),
  3303. name: "Front (Alt)",
  3304. image: {
  3305. source: "./media/characters/ona/front-alt.svg"
  3306. }
  3307. },
  3308. back: {
  3309. height: math.unit(8, "feet"),
  3310. weight: math.unit(120, "lb"),
  3311. name: "Back",
  3312. image: {
  3313. source: "./media/characters/ona/back.svg"
  3314. }
  3315. },
  3316. foot: {
  3317. height: math.unit(1.1, "feet"),
  3318. name: "Foot",
  3319. image: {
  3320. source: "./media/characters/ona/foot.svg"
  3321. }
  3322. }
  3323. },
  3324. [
  3325. {
  3326. name: "Megamacro",
  3327. height: math.unit(70, "km"),
  3328. default: true
  3329. },
  3330. {
  3331. name: "Gigamacro",
  3332. height: math.unit(681818, "miles")
  3333. },
  3334. {
  3335. name: "Examacro",
  3336. height: math.unit(3800000, "lightyears")
  3337. },
  3338. ]
  3339. ))
  3340. characterMakers.push(() => makeCharacter(
  3341. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3342. {
  3343. front: {
  3344. height: math.unit(12, "feet"),
  3345. weight: math.unit(3000, "lb"),
  3346. name: "Front",
  3347. image: {
  3348. source: "./media/characters/mech/front.svg",
  3349. bottom: 0.025,
  3350. }
  3351. },
  3352. back: {
  3353. height: math.unit(12, "feet"),
  3354. weight: math.unit(3000, "lb"),
  3355. name: "Back",
  3356. image: {
  3357. source: "./media/characters/mech/back.svg",
  3358. bottom: 0.03,
  3359. }
  3360. }
  3361. },
  3362. [
  3363. {
  3364. name: "Normal",
  3365. height: math.unit(12, "feet")
  3366. },
  3367. {
  3368. name: "Macro",
  3369. height: math.unit(300, "feet"),
  3370. default: true
  3371. },
  3372. {
  3373. name: "Macro+",
  3374. height: math.unit(1500, "feet")
  3375. },
  3376. ]
  3377. ))
  3378. characterMakers.push(() => makeCharacter(
  3379. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3380. {
  3381. front: {
  3382. height: math.unit(1.3, "meter"),
  3383. weight: math.unit(30, "kg"),
  3384. name: "Front",
  3385. image: {
  3386. source: "./media/characters/gregory/front.svg",
  3387. }
  3388. }
  3389. },
  3390. [
  3391. {
  3392. name: "Normal",
  3393. height: math.unit(1.3, "meter"),
  3394. default: true
  3395. },
  3396. {
  3397. name: "Macro",
  3398. height: math.unit(20, "meter")
  3399. }
  3400. ]
  3401. ))
  3402. characterMakers.push(() => makeCharacter(
  3403. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3404. {
  3405. front: {
  3406. height: math.unit(2.8, "meter"),
  3407. weight: math.unit(200, "kg"),
  3408. name: "Front",
  3409. image: {
  3410. source: "./media/characters/elory/front.svg",
  3411. }
  3412. }
  3413. },
  3414. [
  3415. {
  3416. name: "Normal",
  3417. height: math.unit(2.8, "meter"),
  3418. default: true
  3419. },
  3420. {
  3421. name: "Macro",
  3422. height: math.unit(38, "meter")
  3423. }
  3424. ]
  3425. ))
  3426. characterMakers.push(() => makeCharacter(
  3427. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3428. {
  3429. front: {
  3430. height: math.unit(470, "feet"),
  3431. weight: math.unit(924, "tons"),
  3432. name: "Front",
  3433. image: {
  3434. source: "./media/characters/angelpatamon/front.svg",
  3435. }
  3436. }
  3437. },
  3438. [
  3439. {
  3440. name: "Normal",
  3441. height: math.unit(470, "feet"),
  3442. default: true
  3443. },
  3444. {
  3445. name: "Deity Size I",
  3446. height: math.unit(28651.2, "km")
  3447. },
  3448. {
  3449. name: "Deity Size II",
  3450. height: math.unit(171907.2, "km")
  3451. }
  3452. ]
  3453. ))
  3454. characterMakers.push(() => makeCharacter(
  3455. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3456. {
  3457. side: {
  3458. height: math.unit(7.2, "meter"),
  3459. weight: math.unit(8.2, "tons"),
  3460. name: "Side",
  3461. image: {
  3462. source: "./media/characters/cryae/side.svg",
  3463. extra: 3500 / 1500
  3464. }
  3465. }
  3466. },
  3467. [
  3468. {
  3469. name: "Normal",
  3470. height: math.unit(7.2, "meter"),
  3471. default: true
  3472. }
  3473. ]
  3474. ))
  3475. characterMakers.push(() => makeCharacter(
  3476. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3477. {
  3478. front: {
  3479. height: math.unit(6, "feet"),
  3480. weight: math.unit(175, "lb"),
  3481. name: "Front",
  3482. image: {
  3483. source: "./media/characters/xera/front.svg",
  3484. extra: 2377 / 1972,
  3485. bottom: 75.5/2452
  3486. }
  3487. },
  3488. side: {
  3489. height: math.unit(6, "feet"),
  3490. weight: math.unit(175, "lb"),
  3491. name: "Side",
  3492. image: {
  3493. source: "./media/characters/xera/side.svg",
  3494. extra: 2345/2019,
  3495. bottom: 39.7/2384
  3496. }
  3497. },
  3498. back: {
  3499. height: math.unit(6, "feet"),
  3500. weight: math.unit(175, "lb"),
  3501. name: "Back",
  3502. image: {
  3503. source: "./media/characters/xera/back.svg",
  3504. extra: 2095/1984,
  3505. bottom: 67/2166
  3506. }
  3507. },
  3508. },
  3509. [
  3510. {
  3511. name: "Small",
  3512. height: math.unit(10, "feet")
  3513. },
  3514. {
  3515. name: "Macro",
  3516. height: math.unit(500, "meters"),
  3517. default: true
  3518. },
  3519. {
  3520. name: "Macro+",
  3521. height: math.unit(10, "km")
  3522. },
  3523. {
  3524. name: "Gigamacro",
  3525. height: math.unit(25000, "km")
  3526. },
  3527. {
  3528. name: "Teramacro",
  3529. height: math.unit(3e6, "km")
  3530. }
  3531. ]
  3532. ))
  3533. characterMakers.push(() => makeCharacter(
  3534. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3535. {
  3536. front: {
  3537. height: math.unit(6, "feet"),
  3538. weight: math.unit(175, "lb"),
  3539. name: "Front",
  3540. image: {
  3541. source: "./media/characters/nebula/front.svg",
  3542. extra: 2566/2362,
  3543. bottom: 81/2644
  3544. }
  3545. }
  3546. },
  3547. [
  3548. {
  3549. name: "Small",
  3550. height: math.unit(4.5, "meters")
  3551. },
  3552. {
  3553. name: "Macro",
  3554. height: math.unit(1500, "meters"),
  3555. default: true
  3556. },
  3557. {
  3558. name: "Megamacro",
  3559. height: math.unit(150, "km")
  3560. },
  3561. {
  3562. name: "Gigamacro",
  3563. height: math.unit(27000, "km")
  3564. }
  3565. ]
  3566. ))
  3567. characterMakers.push(() => makeCharacter(
  3568. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3569. {
  3570. front: {
  3571. height: math.unit(6, "feet"),
  3572. weight: math.unit(225, "lb"),
  3573. name: "Front",
  3574. image: {
  3575. source: "./media/characters/abysgar/front.svg"
  3576. }
  3577. }
  3578. },
  3579. [
  3580. {
  3581. name: "Small",
  3582. height: math.unit(4.5, "meters")
  3583. },
  3584. {
  3585. name: "Macro",
  3586. height: math.unit(1250, "meters"),
  3587. default: true
  3588. },
  3589. {
  3590. name: "Megamacro",
  3591. height: math.unit(125, "km")
  3592. },
  3593. {
  3594. name: "Gigamacro",
  3595. height: math.unit(26000, "km")
  3596. }
  3597. ]
  3598. ))
  3599. characterMakers.push(() => makeCharacter(
  3600. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3601. {
  3602. front: {
  3603. height: math.unit(6, "feet"),
  3604. weight: math.unit(180, "lb"),
  3605. name: "Front",
  3606. image: {
  3607. source: "./media/characters/yakuz/front.svg"
  3608. }
  3609. }
  3610. },
  3611. [
  3612. {
  3613. name: "Small",
  3614. height: math.unit(5, "meters")
  3615. },
  3616. {
  3617. name: "Macro",
  3618. height: math.unit(1500, "meters"),
  3619. default: true
  3620. },
  3621. {
  3622. name: "Megamacro",
  3623. height: math.unit(200, "km")
  3624. },
  3625. {
  3626. name: "Gigamacro",
  3627. height: math.unit(100000, "km")
  3628. }
  3629. ]
  3630. ))
  3631. characterMakers.push(() => makeCharacter(
  3632. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3633. {
  3634. front: {
  3635. height: math.unit(6, "feet"),
  3636. weight: math.unit(175, "lb"),
  3637. name: "Front",
  3638. image: {
  3639. source: "./media/characters/mirova/front.svg",
  3640. extra: 3334/3071,
  3641. bottom: 42/3375.6
  3642. }
  3643. }
  3644. },
  3645. [
  3646. {
  3647. name: "Small",
  3648. height: math.unit(5, "meters")
  3649. },
  3650. {
  3651. name: "Macro",
  3652. height: math.unit(900, "meters"),
  3653. default: true
  3654. },
  3655. {
  3656. name: "Megamacro",
  3657. height: math.unit(135, "km")
  3658. },
  3659. {
  3660. name: "Gigamacro",
  3661. height: math.unit(20000, "km")
  3662. }
  3663. ]
  3664. ))
  3665. characterMakers.push(() => makeCharacter(
  3666. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3667. {
  3668. side: {
  3669. height: math.unit(28.35, "feet"),
  3670. weight: math.unit(99.75, "tons"),
  3671. name: "Side",
  3672. image: {
  3673. source: "./media/characters/asana-mech/side.svg",
  3674. extra: 923/699,
  3675. bottom: 50/975
  3676. }
  3677. },
  3678. chaingun: {
  3679. height: math.unit(7, "feet"),
  3680. weight: math.unit(2400, "lb"),
  3681. name: "Chaingun",
  3682. image: {
  3683. source: "./media/characters/asana-mech/chaingun.svg"
  3684. }
  3685. },
  3686. laser: {
  3687. height: math.unit(7.12, "feet"),
  3688. weight: math.unit(2000, "lb"),
  3689. name: "Laser",
  3690. image: {
  3691. source: "./media/characters/asana-mech/laser.svg"
  3692. }
  3693. },
  3694. },
  3695. [
  3696. {
  3697. name: "Normal",
  3698. height: math.unit(28.35, "feet"),
  3699. default: true
  3700. },
  3701. {
  3702. name: "Macro",
  3703. height: math.unit(2500, "feet")
  3704. },
  3705. {
  3706. name: "Megamacro",
  3707. height: math.unit(25, "miles")
  3708. },
  3709. {
  3710. name: "Examacro",
  3711. height: math.unit(6e8, "lightyears")
  3712. },
  3713. ]
  3714. ))
  3715. characterMakers.push(() => makeCharacter(
  3716. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3717. {
  3718. front: {
  3719. height: math.unit(5, "meters"),
  3720. weight: math.unit(1000, "kg"),
  3721. name: "Front",
  3722. image: {
  3723. source: "./media/characters/asche/front.svg",
  3724. extra: 1258/1190,
  3725. bottom: 47/1305
  3726. }
  3727. },
  3728. frontUnderwear: {
  3729. height: math.unit(5, "meters"),
  3730. weight: math.unit(1000, "kg"),
  3731. name: "Front (Underwear)",
  3732. image: {
  3733. source: "./media/characters/asche/front-underwear.svg",
  3734. extra: 1258/1190,
  3735. bottom: 47/1305
  3736. }
  3737. },
  3738. frontDressed: {
  3739. height: math.unit(5, "meters"),
  3740. weight: math.unit(1000, "kg"),
  3741. name: "Front (Dressed)",
  3742. image: {
  3743. source: "./media/characters/asche/front-dressed.svg",
  3744. extra: 1258/1190,
  3745. bottom: 47/1305
  3746. }
  3747. },
  3748. frontArmor: {
  3749. height: math.unit(5, "meters"),
  3750. weight: math.unit(1000, "kg"),
  3751. name: "Front (Armored)",
  3752. image: {
  3753. source: "./media/characters/asche/front-armored.svg",
  3754. extra: 1374 / 1308,
  3755. bottom: 23/1397
  3756. }
  3757. },
  3758. mp724: {
  3759. height: math.unit(0.96, "meters"),
  3760. weight: math.unit(38, "kg"),
  3761. name: "H&K MP724",
  3762. image: {
  3763. source: "./media/characters/asche/h&k-mp724.svg"
  3764. }
  3765. },
  3766. side: {
  3767. height: math.unit(5, "meters"),
  3768. weight: math.unit(1000, "kg"),
  3769. name: "Side",
  3770. image: {
  3771. source: "./media/characters/asche/side.svg",
  3772. extra: 1717 / 1609,
  3773. bottom: 0.005
  3774. }
  3775. },
  3776. back: {
  3777. height: math.unit(5, "meters"),
  3778. weight: math.unit(1000, "kg"),
  3779. name: "Back",
  3780. image: {
  3781. source: "./media/characters/asche/back.svg",
  3782. extra: 1570 / 1501
  3783. }
  3784. },
  3785. },
  3786. [
  3787. {
  3788. name: "DEFCON 5",
  3789. height: math.unit(5, "meters")
  3790. },
  3791. {
  3792. name: "DEFCON 4",
  3793. height: math.unit(500, "meters"),
  3794. default: true
  3795. },
  3796. {
  3797. name: "DEFCON 3",
  3798. height: math.unit(5, "km")
  3799. },
  3800. {
  3801. name: "DEFCON 2",
  3802. height: math.unit(500, "km")
  3803. },
  3804. {
  3805. name: "DEFCON 1",
  3806. height: math.unit(500000, "km")
  3807. },
  3808. {
  3809. name: "DEFCON 0",
  3810. height: math.unit(3, "gigaparsecs")
  3811. },
  3812. ]
  3813. ))
  3814. characterMakers.push(() => makeCharacter(
  3815. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3816. {
  3817. front: {
  3818. height: math.unit(2, "meters"),
  3819. weight: math.unit(76, "kg"),
  3820. name: "Front",
  3821. image: {
  3822. source: "./media/characters/gale/front.svg"
  3823. }
  3824. },
  3825. frontAlt1: {
  3826. height: math.unit(2, "meters"),
  3827. weight: math.unit(76, "kg"),
  3828. name: "Front (Alt 1)",
  3829. image: {
  3830. source: "./media/characters/gale/front-alt-1.svg"
  3831. }
  3832. },
  3833. frontAlt2: {
  3834. height: math.unit(2, "meters"),
  3835. weight: math.unit(76, "kg"),
  3836. name: "Front (Alt 2)",
  3837. image: {
  3838. source: "./media/characters/gale/front-alt-2.svg"
  3839. }
  3840. },
  3841. },
  3842. [
  3843. {
  3844. name: "Normal",
  3845. height: math.unit(7, "feet")
  3846. },
  3847. {
  3848. name: "Macro",
  3849. height: math.unit(150, "feet"),
  3850. default: true
  3851. },
  3852. {
  3853. name: "Macro+",
  3854. height: math.unit(300, "feet")
  3855. },
  3856. ]
  3857. ))
  3858. characterMakers.push(() => makeCharacter(
  3859. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3860. {
  3861. front: {
  3862. height: math.unit(2, "meters"),
  3863. weight: math.unit(76, "kg"),
  3864. name: "Front",
  3865. image: {
  3866. source: "./media/characters/draylen/front.svg"
  3867. }
  3868. }
  3869. },
  3870. [
  3871. {
  3872. name: "Macro",
  3873. height: math.unit(150, "feet"),
  3874. default: true
  3875. }
  3876. ]
  3877. ))
  3878. characterMakers.push(() => makeCharacter(
  3879. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3880. {
  3881. front: {
  3882. height: math.unit(7 + 9 / 12, "feet"),
  3883. weight: math.unit(379, "lbs"),
  3884. name: "Front",
  3885. image: {
  3886. source: "./media/characters/chez/front.svg"
  3887. }
  3888. },
  3889. side: {
  3890. height: math.unit(7 + 9 / 12, "feet"),
  3891. weight: math.unit(379, "lbs"),
  3892. name: "Side",
  3893. image: {
  3894. source: "./media/characters/chez/side.svg"
  3895. }
  3896. }
  3897. },
  3898. [
  3899. {
  3900. name: "Normal",
  3901. height: math.unit(7 + 9 / 12, "feet"),
  3902. default: true
  3903. },
  3904. {
  3905. name: "God King",
  3906. height: math.unit(9750000, "meters")
  3907. }
  3908. ]
  3909. ))
  3910. characterMakers.push(() => makeCharacter(
  3911. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  3912. {
  3913. front: {
  3914. height: math.unit(6, "feet"),
  3915. weight: math.unit(275, "lbs"),
  3916. name: "Front",
  3917. image: {
  3918. source: "./media/characters/kaylum/front.svg",
  3919. bottom: 0.01,
  3920. extra: 1166 / 1031
  3921. }
  3922. },
  3923. frontWingless: {
  3924. height: math.unit(6, "feet"),
  3925. weight: math.unit(275, "lbs"),
  3926. name: "Front (Wingless)",
  3927. image: {
  3928. source: "./media/characters/kaylum/front-wingless.svg",
  3929. bottom: 0.01,
  3930. extra: 1117 / 1031
  3931. }
  3932. }
  3933. },
  3934. [
  3935. {
  3936. name: "Normal",
  3937. height: math.unit(3.05, "meters")
  3938. },
  3939. {
  3940. name: "Master",
  3941. height: math.unit(5.5, "meters")
  3942. },
  3943. {
  3944. name: "Rampage",
  3945. height: math.unit(19, "meters")
  3946. },
  3947. {
  3948. name: "Macro Lite",
  3949. height: math.unit(37, "meters")
  3950. },
  3951. {
  3952. name: "Hyper Predator",
  3953. height: math.unit(61, "meters")
  3954. },
  3955. {
  3956. name: "Macro",
  3957. height: math.unit(138, "meters"),
  3958. default: true
  3959. }
  3960. ]
  3961. ))
  3962. characterMakers.push(() => makeCharacter(
  3963. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  3964. {
  3965. front: {
  3966. height: math.unit(6, "feet"),
  3967. weight: math.unit(150, "lbs"),
  3968. name: "Front",
  3969. image: {
  3970. source: "./media/characters/geta/front.svg"
  3971. }
  3972. }
  3973. },
  3974. [
  3975. {
  3976. name: "Micro",
  3977. height: math.unit(3, "inches"),
  3978. default: true
  3979. },
  3980. {
  3981. name: "Normal",
  3982. height: math.unit(5 + 5 / 12, "feet")
  3983. }
  3984. ]
  3985. ))
  3986. characterMakers.push(() => makeCharacter(
  3987. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  3988. {
  3989. front: {
  3990. height: math.unit(6, "feet"),
  3991. weight: math.unit(300, "lbs"),
  3992. name: "Front",
  3993. image: {
  3994. source: "./media/characters/tyrnn/front.svg"
  3995. }
  3996. }
  3997. },
  3998. [
  3999. {
  4000. name: "Main Height",
  4001. height: math.unit(355, "feet"),
  4002. default: true
  4003. },
  4004. {
  4005. name: "Fave. Height",
  4006. height: math.unit(2400, "feet")
  4007. }
  4008. ]
  4009. ))
  4010. characterMakers.push(() => makeCharacter(
  4011. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4012. {
  4013. front: {
  4014. height: math.unit(6, "feet"),
  4015. weight: math.unit(300, "lbs"),
  4016. name: "Front",
  4017. image: {
  4018. source: "./media/characters/appledectomy/front.svg"
  4019. }
  4020. }
  4021. },
  4022. [
  4023. {
  4024. name: "Macro",
  4025. height: math.unit(2500, "feet")
  4026. },
  4027. {
  4028. name: "Megamacro",
  4029. height: math.unit(50, "miles"),
  4030. default: true
  4031. },
  4032. {
  4033. name: "Gigamacro",
  4034. height: math.unit(5000, "miles")
  4035. },
  4036. {
  4037. name: "Teramacro",
  4038. height: math.unit(250000, "miles")
  4039. },
  4040. ]
  4041. ))
  4042. characterMakers.push(() => makeCharacter(
  4043. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4044. {
  4045. front: {
  4046. height: math.unit(6, "feet"),
  4047. weight: math.unit(200, "lbs"),
  4048. name: "Front",
  4049. image: {
  4050. source: "./media/characters/vulpes/front.svg",
  4051. extra: 573 / 543,
  4052. bottom: 0.033
  4053. }
  4054. },
  4055. side: {
  4056. height: math.unit(6, "feet"),
  4057. weight: math.unit(200, "lbs"),
  4058. name: "Side",
  4059. image: {
  4060. source: "./media/characters/vulpes/side.svg",
  4061. extra: 573 / 543,
  4062. bottom: 0.01
  4063. }
  4064. },
  4065. back: {
  4066. height: math.unit(6, "feet"),
  4067. weight: math.unit(200, "lbs"),
  4068. name: "Back",
  4069. image: {
  4070. source: "./media/characters/vulpes/back.svg",
  4071. extra: 573 / 543,
  4072. }
  4073. },
  4074. feet: {
  4075. height: math.unit(1.276, "feet"),
  4076. name: "Feet",
  4077. image: {
  4078. source: "./media/characters/vulpes/feet.svg"
  4079. }
  4080. },
  4081. maw: {
  4082. height: math.unit(1.18, "feet"),
  4083. name: "Maw",
  4084. image: {
  4085. source: "./media/characters/vulpes/maw.svg"
  4086. }
  4087. },
  4088. },
  4089. [
  4090. {
  4091. name: "Micro",
  4092. height: math.unit(2, "inches")
  4093. },
  4094. {
  4095. name: "Normal",
  4096. height: math.unit(6.3, "feet")
  4097. },
  4098. {
  4099. name: "Macro",
  4100. height: math.unit(850, "feet")
  4101. },
  4102. {
  4103. name: "Megamacro",
  4104. height: math.unit(7500, "feet"),
  4105. default: true
  4106. },
  4107. {
  4108. name: "Gigamacro",
  4109. height: math.unit(570000, "miles")
  4110. }
  4111. ]
  4112. ))
  4113. characterMakers.push(() => makeCharacter(
  4114. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4115. {
  4116. front: {
  4117. height: math.unit(6, "feet"),
  4118. weight: math.unit(210, "lbs"),
  4119. name: "Front",
  4120. image: {
  4121. source: "./media/characters/rain-fallen/front.svg"
  4122. }
  4123. },
  4124. side: {
  4125. height: math.unit(6, "feet"),
  4126. weight: math.unit(210, "lbs"),
  4127. name: "Side",
  4128. image: {
  4129. source: "./media/characters/rain-fallen/side.svg"
  4130. }
  4131. },
  4132. back: {
  4133. height: math.unit(6, "feet"),
  4134. weight: math.unit(210, "lbs"),
  4135. name: "Back",
  4136. image: {
  4137. source: "./media/characters/rain-fallen/back.svg"
  4138. }
  4139. },
  4140. feral: {
  4141. height: math.unit(9, "feet"),
  4142. weight: math.unit(700, "lbs"),
  4143. name: "Feral",
  4144. image: {
  4145. source: "./media/characters/rain-fallen/feral.svg"
  4146. }
  4147. },
  4148. },
  4149. [
  4150. {
  4151. name: "Normal",
  4152. height: math.unit(5, "meter")
  4153. },
  4154. {
  4155. name: "Macro",
  4156. height: math.unit(150, "meter"),
  4157. default: true
  4158. },
  4159. {
  4160. name: "Megamacro",
  4161. height: math.unit(278e6, "meter")
  4162. },
  4163. {
  4164. name: "Gigamacro",
  4165. height: math.unit(2e9, "meter")
  4166. },
  4167. {
  4168. name: "Teramacro",
  4169. height: math.unit(8e12, "meter")
  4170. },
  4171. {
  4172. name: "Devourer",
  4173. height: math.unit(14, "zettameters")
  4174. },
  4175. {
  4176. name: "Scarlet King",
  4177. height: math.unit(18, "yottameters")
  4178. },
  4179. {
  4180. name: "Void",
  4181. height: math.unit(6.66e66, "yottameters")
  4182. }
  4183. ]
  4184. ))
  4185. characterMakers.push(() => makeCharacter(
  4186. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4187. {
  4188. standing: {
  4189. height: math.unit(6, "feet"),
  4190. weight: math.unit(180, "lbs"),
  4191. name: "Standing",
  4192. image: {
  4193. source: "./media/characters/zaakira/standing.svg"
  4194. }
  4195. },
  4196. laying: {
  4197. height: math.unit(3, "feet"),
  4198. weight: math.unit(180, "lbs"),
  4199. name: "Laying",
  4200. image: {
  4201. source: "./media/characters/zaakira/laying.svg"
  4202. }
  4203. },
  4204. },
  4205. [
  4206. {
  4207. name: "Normal",
  4208. height: math.unit(12, "feet")
  4209. },
  4210. {
  4211. name: "Macro",
  4212. height: math.unit(279, "feet"),
  4213. default: true
  4214. }
  4215. ]
  4216. ))
  4217. characterMakers.push(() => makeCharacter(
  4218. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4219. {
  4220. femSfw: {
  4221. height: math.unit(8, "feet"),
  4222. weight: math.unit(350, "lb"),
  4223. name: "Fem",
  4224. image: {
  4225. source: "./media/characters/sigvald/fem-sfw.svg",
  4226. extra: 182/164,
  4227. bottom: 8.7/190.5
  4228. }
  4229. },
  4230. femNsfw: {
  4231. height: math.unit(8, "feet"),
  4232. weight: math.unit(350, "lb"),
  4233. name: "Fem (NSFW)",
  4234. image: {
  4235. source: "./media/characters/sigvald/fem-nsfw.svg",
  4236. extra: 182/164,
  4237. bottom: 8.7/190.5
  4238. }
  4239. },
  4240. maleNsfw: {
  4241. height: math.unit(8, "feet"),
  4242. weight: math.unit(350, "lb"),
  4243. name: "Male (NSFW)",
  4244. image: {
  4245. source: "./media/characters/sigvald/male-nsfw.svg",
  4246. extra: 182/164,
  4247. bottom: 8.7/190.5
  4248. }
  4249. },
  4250. hermNsfw: {
  4251. height: math.unit(8, "feet"),
  4252. weight: math.unit(350, "lb"),
  4253. name: "Herm (NSFW)",
  4254. image: {
  4255. source: "./media/characters/sigvald/herm-nsfw.svg",
  4256. extra: 182/164,
  4257. bottom: 8.7/190.5
  4258. }
  4259. },
  4260. dick: {
  4261. height: math.unit(2.36, "feet"),
  4262. name: "Dick",
  4263. image: {
  4264. source: "./media/characters/sigvald/dick.svg"
  4265. }
  4266. },
  4267. eye: {
  4268. height: math.unit(0.31, "feet"),
  4269. name: "Eye",
  4270. image: {
  4271. source: "./media/characters/sigvald/eye.svg"
  4272. }
  4273. },
  4274. mouth: {
  4275. height: math.unit(0.92, "feet"),
  4276. name: "Mouth",
  4277. image: {
  4278. source: "./media/characters/sigvald/mouth.svg"
  4279. }
  4280. },
  4281. paws: {
  4282. height: math.unit(2.2, "feet"),
  4283. name: "Paws",
  4284. image: {
  4285. source: "./media/characters/sigvald/paws.svg"
  4286. }
  4287. }
  4288. },
  4289. [
  4290. {
  4291. name: "Normal",
  4292. height: math.unit(8, "feet")
  4293. },
  4294. {
  4295. name: "Large",
  4296. height: math.unit(12, "feet")
  4297. },
  4298. {
  4299. name: "Larger",
  4300. height: math.unit(20, "feet")
  4301. },
  4302. {
  4303. name: "Macro",
  4304. height: math.unit(150, "feet")
  4305. },
  4306. {
  4307. name: "Macro+",
  4308. height: math.unit(200, "feet"),
  4309. default: true
  4310. },
  4311. ]
  4312. ))
  4313. characterMakers.push(() => makeCharacter(
  4314. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4315. {
  4316. side: {
  4317. height: math.unit(12, "feet"),
  4318. weight: math.unit(2000, "kg"),
  4319. name: "Side",
  4320. image: {
  4321. source: "./media/characters/scott/side.svg",
  4322. extra: 754 / 724,
  4323. bottom: 0.069
  4324. }
  4325. },
  4326. upright: {
  4327. height: math.unit(12, "feet"),
  4328. weight: math.unit(2000, "kg"),
  4329. name: "Upright",
  4330. image: {
  4331. source: "./media/characters/scott/upright.svg",
  4332. extra: 3881 / 3722,
  4333. bottom: 0.05
  4334. }
  4335. },
  4336. },
  4337. [
  4338. {
  4339. name: "Normal",
  4340. height: math.unit(12, "feet"),
  4341. default: true
  4342. },
  4343. ]
  4344. ))
  4345. characterMakers.push(() => makeCharacter(
  4346. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4347. {
  4348. side: {
  4349. height: math.unit(8, "meters"),
  4350. weight: math.unit(84755, "lbs"),
  4351. name: "Side",
  4352. image: {
  4353. source: "./media/characters/tobias/side.svg",
  4354. extra: 1474 / 1096,
  4355. bottom: 38.9 / 1513.1235
  4356. }
  4357. },
  4358. },
  4359. [
  4360. {
  4361. name: "Normal",
  4362. height: math.unit(8, "meters"),
  4363. default: true
  4364. },
  4365. ]
  4366. ))
  4367. characterMakers.push(() => makeCharacter(
  4368. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4369. {
  4370. front: {
  4371. height: math.unit(5.5, "feet"),
  4372. weight: math.unit(400, "lbs"),
  4373. name: "Front",
  4374. image: {
  4375. source: "./media/characters/kieran/front.svg",
  4376. extra: 2694 / 2364,
  4377. bottom: 217 / 2908
  4378. }
  4379. },
  4380. side: {
  4381. height: math.unit(5.5, "feet"),
  4382. weight: math.unit(400, "lbs"),
  4383. name: "Side",
  4384. image: {
  4385. source: "./media/characters/kieran/side.svg",
  4386. extra: 875 / 777,
  4387. bottom: 84.6 / 959
  4388. }
  4389. },
  4390. },
  4391. [
  4392. {
  4393. name: "Normal",
  4394. height: math.unit(5.5, "feet"),
  4395. default: true
  4396. },
  4397. ]
  4398. ))
  4399. characterMakers.push(() => makeCharacter(
  4400. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4401. {
  4402. side: {
  4403. height: math.unit(2, "meters"),
  4404. weight: math.unit(70, "kg"),
  4405. name: "Side",
  4406. image: {
  4407. source: "./media/characters/sanya/side.svg",
  4408. bottom: 0.02,
  4409. extra: 1.02
  4410. }
  4411. },
  4412. },
  4413. [
  4414. {
  4415. name: "Small",
  4416. height: math.unit(2, "meters")
  4417. },
  4418. {
  4419. name: "Normal",
  4420. height: math.unit(3, "meters")
  4421. },
  4422. {
  4423. name: "Macro",
  4424. height: math.unit(16, "meters"),
  4425. default: true
  4426. },
  4427. ]
  4428. ))
  4429. characterMakers.push(() => makeCharacter(
  4430. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4431. {
  4432. front: {
  4433. height: math.unit(2, "meters"),
  4434. weight: math.unit(120, "kg"),
  4435. name: "Front",
  4436. image: {
  4437. source: "./media/characters/miranda/front.svg",
  4438. extra: 195/185,
  4439. bottom: 10.9/206.5
  4440. }
  4441. },
  4442. back: {
  4443. height: math.unit(2, "meters"),
  4444. weight: math.unit(120, "kg"),
  4445. name: "Back",
  4446. image: {
  4447. source: "./media/characters/miranda/back.svg",
  4448. extra: 201/193,
  4449. bottom: 2.3/203.7
  4450. }
  4451. },
  4452. },
  4453. [
  4454. {
  4455. name: "Normal",
  4456. height: math.unit(10, "feet"),
  4457. default: true
  4458. }
  4459. ]
  4460. ))
  4461. characterMakers.push(() => makeCharacter(
  4462. { name: "James", species: ["deer"], tags: ["anthro"] },
  4463. {
  4464. side: {
  4465. height: math.unit(2, "meters"),
  4466. weight: math.unit(100, "kg"),
  4467. name: "Front",
  4468. image: {
  4469. source: "./media/characters/james/front.svg",
  4470. extra: 10 / 8.5
  4471. }
  4472. },
  4473. },
  4474. [
  4475. {
  4476. name: "Normal",
  4477. height: math.unit(8.5, "feet"),
  4478. default: true
  4479. }
  4480. ]
  4481. ))
  4482. characterMakers.push(() => makeCharacter(
  4483. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4484. {
  4485. side: {
  4486. height: math.unit(9.5, "feet"),
  4487. weight: math.unit(2500, "lbs"),
  4488. name: "Side",
  4489. image: {
  4490. source: "./media/characters/heather/side.svg"
  4491. }
  4492. },
  4493. },
  4494. [
  4495. {
  4496. name: "Normal",
  4497. height: math.unit(9.5, "feet"),
  4498. default: true
  4499. }
  4500. ]
  4501. ))
  4502. characterMakers.push(() => makeCharacter(
  4503. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4504. {
  4505. side: {
  4506. height: math.unit(6.5, "feet"),
  4507. weight: math.unit(400, "lbs"),
  4508. name: "Side",
  4509. image: {
  4510. source: "./media/characters/lukas/side.svg",
  4511. extra: 7.25 / 6.5
  4512. }
  4513. },
  4514. },
  4515. [
  4516. {
  4517. name: "Normal",
  4518. height: math.unit(6.5, "feet"),
  4519. default: true
  4520. }
  4521. ]
  4522. ))
  4523. characterMakers.push(() => makeCharacter(
  4524. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4525. {
  4526. side: {
  4527. height: math.unit(5, "feet"),
  4528. weight: math.unit(3000, "lbs"),
  4529. name: "Side",
  4530. image: {
  4531. source: "./media/characters/louise/side.svg"
  4532. }
  4533. },
  4534. },
  4535. [
  4536. {
  4537. name: "Normal",
  4538. height: math.unit(5, "feet"),
  4539. default: true
  4540. }
  4541. ]
  4542. ))
  4543. characterMakers.push(() => makeCharacter(
  4544. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4545. {
  4546. side: {
  4547. height: math.unit(6, "feet"),
  4548. weight: math.unit(150, "lbs"),
  4549. name: "Side",
  4550. image: {
  4551. source: "./media/characters/ramona/side.svg"
  4552. }
  4553. },
  4554. },
  4555. [
  4556. {
  4557. name: "Normal",
  4558. height: math.unit(5.3, "meters"),
  4559. default: true
  4560. },
  4561. {
  4562. name: "Macro",
  4563. height: math.unit(20, "stories")
  4564. },
  4565. {
  4566. name: "Macro+",
  4567. height: math.unit(50, "stories")
  4568. },
  4569. ]
  4570. ))
  4571. characterMakers.push(() => makeCharacter(
  4572. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4573. {
  4574. standing: {
  4575. height: math.unit(5.75, "feet"),
  4576. weight: math.unit(160, "lbs"),
  4577. name: "Standing",
  4578. image: {
  4579. source: "./media/characters/deerpuff/standing.svg",
  4580. extra: 682 / 624
  4581. }
  4582. },
  4583. sitting: {
  4584. height: math.unit(5.75 / 1.79, "feet"),
  4585. weight: math.unit(160, "lbs"),
  4586. name: "Sitting",
  4587. image: {
  4588. source: "./media/characters/deerpuff/sitting.svg",
  4589. bottom: 44 / 400,
  4590. extra: 1
  4591. }
  4592. },
  4593. taurLaying: {
  4594. height: math.unit(6, "feet"),
  4595. weight: math.unit(400, "lbs"),
  4596. name: "Taur (Laying)",
  4597. image: {
  4598. source: "./media/characters/deerpuff/taur-laying.svg"
  4599. }
  4600. },
  4601. },
  4602. [
  4603. {
  4604. name: "Puffball",
  4605. height: math.unit(6, "inches")
  4606. },
  4607. {
  4608. name: "Normalpuff",
  4609. height: math.unit(5.75, "feet")
  4610. },
  4611. {
  4612. name: "Macropuff",
  4613. height: math.unit(1500, "feet"),
  4614. default: true
  4615. },
  4616. {
  4617. name: "Megapuff",
  4618. height: math.unit(500, "miles")
  4619. },
  4620. {
  4621. name: "Gigapuff",
  4622. height: math.unit(250000, "miles")
  4623. },
  4624. {
  4625. name: "Omegapuff",
  4626. height: math.unit(1000, "lightyears")
  4627. },
  4628. ]
  4629. ))
  4630. characterMakers.push(() => makeCharacter(
  4631. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4632. {
  4633. stomping: {
  4634. height: math.unit(6, "feet"),
  4635. weight: math.unit(170, "lbs"),
  4636. name: "Stomping",
  4637. image: {
  4638. source: "./media/characters/vivian/stomping.svg"
  4639. }
  4640. },
  4641. sitting: {
  4642. height: math.unit(6 / 1.75, "feet"),
  4643. weight: math.unit(170, "lbs"),
  4644. name: "Sitting",
  4645. image: {
  4646. source: "./media/characters/vivian/sitting.svg",
  4647. bottom: 1 / 6.4,
  4648. extra: 1,
  4649. }
  4650. },
  4651. },
  4652. [
  4653. {
  4654. name: "Normal",
  4655. height: math.unit(7, "feet"),
  4656. default: true
  4657. },
  4658. {
  4659. name: "Macro",
  4660. height: math.unit(10, "stories")
  4661. },
  4662. {
  4663. name: "Macro+",
  4664. height: math.unit(30, "stories")
  4665. },
  4666. {
  4667. name: "Megamacro",
  4668. height: math.unit(10, "miles")
  4669. },
  4670. {
  4671. name: "Megamacro+",
  4672. height: math.unit(2750000, "meters")
  4673. },
  4674. ]
  4675. ))
  4676. characterMakers.push(() => makeCharacter(
  4677. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4678. {
  4679. front: {
  4680. height: math.unit(6, "feet"),
  4681. weight: math.unit(160, "lbs"),
  4682. name: "Front",
  4683. image: {
  4684. source: "./media/characters/prince/front.svg",
  4685. extra: 3400 / 3000
  4686. }
  4687. },
  4688. jumping: {
  4689. height: math.unit(6, "feet"),
  4690. weight: math.unit(160, "lbs"),
  4691. name: "Jumping",
  4692. image: {
  4693. source: "./media/characters/prince/jump.svg",
  4694. extra: 2555 / 2134
  4695. }
  4696. },
  4697. },
  4698. [
  4699. {
  4700. name: "Normal",
  4701. height: math.unit(7.75, "feet"),
  4702. default: true
  4703. },
  4704. {
  4705. name: "Not cute",
  4706. height: math.unit(17, "feet")
  4707. },
  4708. {
  4709. name: "I said NOT",
  4710. height: math.unit(91, "feet")
  4711. },
  4712. {
  4713. name: "Please stop",
  4714. height: math.unit(560, "feet")
  4715. },
  4716. {
  4717. name: "What have you done",
  4718. height: math.unit(2200, "feet")
  4719. },
  4720. {
  4721. name: "Deer God",
  4722. height: math.unit(3.6, "miles")
  4723. },
  4724. ]
  4725. ))
  4726. characterMakers.push(() => makeCharacter(
  4727. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4728. {
  4729. standing: {
  4730. height: math.unit(6, "feet"),
  4731. weight: math.unit(300, "lbs"),
  4732. name: "Standing",
  4733. image: {
  4734. source: "./media/characters/psymon/standing.svg",
  4735. extra: 1888 / 1810,
  4736. bottom: 0.05
  4737. }
  4738. },
  4739. slithering: {
  4740. height: math.unit(6, "feet"),
  4741. weight: math.unit(300, "lbs"),
  4742. name: "Slithering",
  4743. image: {
  4744. source: "./media/characters/psymon/slithering.svg",
  4745. extra: 1330 / 1224
  4746. }
  4747. },
  4748. slitheringAlt: {
  4749. height: math.unit(6, "feet"),
  4750. weight: math.unit(300, "lbs"),
  4751. name: "Slithering (Alt)",
  4752. image: {
  4753. source: "./media/characters/psymon/slithering-alt.svg",
  4754. extra: 1330 / 1224
  4755. }
  4756. },
  4757. },
  4758. [
  4759. {
  4760. name: "Normal",
  4761. height: math.unit(11.25, "feet"),
  4762. default: true
  4763. },
  4764. {
  4765. name: "Large",
  4766. height: math.unit(27, "feet")
  4767. },
  4768. {
  4769. name: "Giant",
  4770. height: math.unit(87, "feet")
  4771. },
  4772. {
  4773. name: "Macro",
  4774. height: math.unit(365, "feet")
  4775. },
  4776. {
  4777. name: "Megamacro",
  4778. height: math.unit(3, "miles")
  4779. },
  4780. {
  4781. name: "World Serpent",
  4782. height: math.unit(8000, "miles")
  4783. },
  4784. ]
  4785. ))
  4786. characterMakers.push(() => makeCharacter(
  4787. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4788. {
  4789. front: {
  4790. height: math.unit(6, "feet"),
  4791. weight: math.unit(180, "lbs"),
  4792. name: "Front",
  4793. image: {
  4794. source: "./media/characters/daimos/front.svg",
  4795. extra: 4160 / 3897,
  4796. bottom: 0.021
  4797. }
  4798. }
  4799. },
  4800. [
  4801. {
  4802. name: "Normal",
  4803. height: math.unit(8, "feet"),
  4804. default: true
  4805. },
  4806. {
  4807. name: "Big Dog",
  4808. height: math.unit(22, "feet")
  4809. },
  4810. {
  4811. name: "Macro",
  4812. height: math.unit(127, "feet")
  4813. },
  4814. {
  4815. name: "Megamacro",
  4816. height: math.unit(3600, "feet")
  4817. },
  4818. ]
  4819. ))
  4820. characterMakers.push(() => makeCharacter(
  4821. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4822. {
  4823. side: {
  4824. height: math.unit(6, "feet"),
  4825. weight: math.unit(180, "lbs"),
  4826. name: "Side",
  4827. image: {
  4828. source: "./media/characters/blake/side.svg",
  4829. extra: 1212 / 1120,
  4830. bottom: 0.05
  4831. }
  4832. },
  4833. crouched: {
  4834. height: math.unit(6 * 0.57, "feet"),
  4835. weight: math.unit(180, "lbs"),
  4836. name: "Crouched",
  4837. image: {
  4838. source: "./media/characters/blake/crouched.svg",
  4839. extra: 840 / 587,
  4840. bottom: 0.04
  4841. }
  4842. },
  4843. bent: {
  4844. height: math.unit(6 * 0.75, "feet"),
  4845. weight: math.unit(180, "lbs"),
  4846. name: "Bent",
  4847. image: {
  4848. source: "./media/characters/blake/bent.svg",
  4849. extra: 592 / 544,
  4850. bottom: 0.035
  4851. }
  4852. },
  4853. },
  4854. [
  4855. {
  4856. name: "Normal",
  4857. height: math.unit(8 + 1 / 6, "feet"),
  4858. default: true
  4859. },
  4860. {
  4861. name: "Big Backside",
  4862. height: math.unit(37, "feet")
  4863. },
  4864. {
  4865. name: "Subway Shredder",
  4866. height: math.unit(72, "feet")
  4867. },
  4868. {
  4869. name: "City Carver",
  4870. height: math.unit(1675, "feet")
  4871. },
  4872. {
  4873. name: "Tectonic Tweaker",
  4874. height: math.unit(2300, "miles")
  4875. },
  4876. ]
  4877. ))
  4878. characterMakers.push(() => makeCharacter(
  4879. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4880. {
  4881. front: {
  4882. height: math.unit(6, "feet"),
  4883. weight: math.unit(180, "lbs"),
  4884. name: "Front",
  4885. image: {
  4886. source: "./media/characters/guisetto/front.svg",
  4887. extra: 856 / 817,
  4888. bottom: 0.06
  4889. }
  4890. },
  4891. airborne: {
  4892. height: math.unit(6, "feet"),
  4893. weight: math.unit(180, "lbs"),
  4894. name: "Airborne",
  4895. image: {
  4896. source: "./media/characters/guisetto/airborne.svg",
  4897. extra: 584 / 525
  4898. }
  4899. },
  4900. },
  4901. [
  4902. {
  4903. name: "Normal",
  4904. height: math.unit(10 + 11 / 12, "feet"),
  4905. default: true
  4906. },
  4907. {
  4908. name: "Large",
  4909. height: math.unit(35, "feet")
  4910. },
  4911. {
  4912. name: "Macro",
  4913. height: math.unit(475, "feet")
  4914. },
  4915. ]
  4916. ))
  4917. characterMakers.push(() => makeCharacter(
  4918. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  4919. {
  4920. front: {
  4921. height: math.unit(6, "feet"),
  4922. weight: math.unit(180, "lbs"),
  4923. name: "Front",
  4924. image: {
  4925. source: "./media/characters/luxor/front.svg",
  4926. extra: 2940 / 2152
  4927. }
  4928. },
  4929. back: {
  4930. height: math.unit(6, "feet"),
  4931. weight: math.unit(180, "lbs"),
  4932. name: "Back",
  4933. image: {
  4934. source: "./media/characters/luxor/back.svg",
  4935. extra: 1083 / 960
  4936. }
  4937. },
  4938. },
  4939. [
  4940. {
  4941. name: "Normal",
  4942. height: math.unit(5 + 5 / 6, "feet"),
  4943. default: true
  4944. },
  4945. {
  4946. name: "Lamp",
  4947. height: math.unit(50, "feet")
  4948. },
  4949. {
  4950. name: "Lämp",
  4951. height: math.unit(300, "feet")
  4952. },
  4953. {
  4954. name: "The sun is a lamp",
  4955. height: math.unit(250000, "miles")
  4956. },
  4957. ]
  4958. ))
  4959. characterMakers.push(() => makeCharacter(
  4960. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  4961. {
  4962. front: {
  4963. height: math.unit(6, "feet"),
  4964. weight: math.unit(50, "lbs"),
  4965. name: "Front",
  4966. image: {
  4967. source: "./media/characters/huoyan/front.svg"
  4968. }
  4969. },
  4970. side: {
  4971. height: math.unit(6, "feet"),
  4972. weight: math.unit(180, "lbs"),
  4973. name: "Side",
  4974. image: {
  4975. source: "./media/characters/huoyan/side.svg"
  4976. }
  4977. },
  4978. },
  4979. [
  4980. {
  4981. name: "Chef",
  4982. height: math.unit(9, "feet")
  4983. },
  4984. {
  4985. name: "Normal",
  4986. height: math.unit(65, "feet"),
  4987. default: true
  4988. },
  4989. {
  4990. name: "Macro",
  4991. height: math.unit(780, "feet")
  4992. },
  4993. {
  4994. name: "Flaming Mountain",
  4995. height: math.unit(4.8, "miles")
  4996. },
  4997. {
  4998. name: "Celestial",
  4999. height: math.unit(765000, "miles")
  5000. },
  5001. ]
  5002. ))
  5003. characterMakers.push(() => makeCharacter(
  5004. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5005. {
  5006. front: {
  5007. height: math.unit(5 + 3 / 4, "feet"),
  5008. weight: math.unit(120, "lbs"),
  5009. name: "Front",
  5010. image: {
  5011. source: "./media/characters/tails/front.svg"
  5012. }
  5013. }
  5014. },
  5015. [
  5016. {
  5017. name: "Normal",
  5018. height: math.unit(5 + 3 / 4, "feet"),
  5019. default: true
  5020. }
  5021. ]
  5022. ))
  5023. characterMakers.push(() => makeCharacter(
  5024. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5025. {
  5026. front: {
  5027. height: math.unit(4, "feet"),
  5028. weight: math.unit(50, "lbs"),
  5029. name: "Front",
  5030. image: {
  5031. source: "./media/characters/rainy/front.svg"
  5032. }
  5033. }
  5034. },
  5035. [
  5036. {
  5037. name: "Macro",
  5038. height: math.unit(800, "feet"),
  5039. default: true
  5040. }
  5041. ]
  5042. ))
  5043. characterMakers.push(() => makeCharacter(
  5044. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5045. {
  5046. front: {
  5047. height: math.unit(6, "feet"),
  5048. weight: math.unit(150, "lbs"),
  5049. name: "Front",
  5050. image: {
  5051. source: "./media/characters/rainier/front.svg"
  5052. }
  5053. }
  5054. },
  5055. [
  5056. {
  5057. name: "Micro",
  5058. height: math.unit(2, "mm"),
  5059. default: true
  5060. }
  5061. ]
  5062. ))
  5063. characterMakers.push(() => makeCharacter(
  5064. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5065. {
  5066. front: {
  5067. height: math.unit(6, "feet"),
  5068. weight: math.unit(180, "lbs"),
  5069. name: "Front",
  5070. image: {
  5071. source: "./media/characters/andy/front.svg"
  5072. }
  5073. }
  5074. },
  5075. [
  5076. {
  5077. name: "Normal",
  5078. height: math.unit(8, "feet"),
  5079. default: true
  5080. },
  5081. {
  5082. name: "Macro",
  5083. height: math.unit(1000, "feet")
  5084. },
  5085. {
  5086. name: "Megamacro",
  5087. height: math.unit(5, "miles")
  5088. },
  5089. {
  5090. name: "Gigamacro",
  5091. height: math.unit(5000, "miles")
  5092. },
  5093. ]
  5094. ))
  5095. characterMakers.push(() => makeCharacter(
  5096. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5097. {
  5098. front: {
  5099. height: math.unit(6, "feet"),
  5100. weight: math.unit(210, "lbs"),
  5101. name: "Front",
  5102. image: {
  5103. source: "./media/characters/cimmaron/front-sfw.svg",
  5104. extra: 701 / 676,
  5105. bottom: 0.046
  5106. }
  5107. },
  5108. back: {
  5109. height: math.unit(6, "feet"),
  5110. weight: math.unit(210, "lbs"),
  5111. name: "Back",
  5112. image: {
  5113. source: "./media/characters/cimmaron/back-sfw.svg",
  5114. extra: 701 / 676,
  5115. bottom: 0.046
  5116. }
  5117. },
  5118. frontNsfw: {
  5119. height: math.unit(6, "feet"),
  5120. weight: math.unit(210, "lbs"),
  5121. name: "Front (NSFW)",
  5122. image: {
  5123. source: "./media/characters/cimmaron/front-nsfw.svg",
  5124. extra: 701 / 676,
  5125. bottom: 0.046
  5126. }
  5127. },
  5128. backNsfw: {
  5129. height: math.unit(6, "feet"),
  5130. weight: math.unit(210, "lbs"),
  5131. name: "Back (NSFW)",
  5132. image: {
  5133. source: "./media/characters/cimmaron/back-nsfw.svg",
  5134. extra: 701 / 676,
  5135. bottom: 0.046
  5136. }
  5137. },
  5138. dick: {
  5139. height: math.unit(1.714, "feet"),
  5140. name: "Dick",
  5141. image: {
  5142. source: "./media/characters/cimmaron/dick.svg"
  5143. }
  5144. },
  5145. },
  5146. [
  5147. {
  5148. name: "Normal",
  5149. height: math.unit(6, "feet"),
  5150. default: true
  5151. },
  5152. {
  5153. name: "Macro Mayor",
  5154. height: math.unit(350, "meters")
  5155. },
  5156. ]
  5157. ))
  5158. characterMakers.push(() => makeCharacter(
  5159. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5160. {
  5161. front: {
  5162. height: math.unit(6, "feet"),
  5163. weight: math.unit(200, "lbs"),
  5164. name: "Front",
  5165. image: {
  5166. source: "./media/characters/akari/front.svg",
  5167. extra: 962 / 901,
  5168. bottom: 0.04
  5169. }
  5170. }
  5171. },
  5172. [
  5173. {
  5174. name: "Micro",
  5175. height: math.unit(5, "inches"),
  5176. default: true
  5177. },
  5178. {
  5179. name: "Normal",
  5180. height: math.unit(7, "feet")
  5181. },
  5182. ]
  5183. ))
  5184. characterMakers.push(() => makeCharacter(
  5185. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5186. {
  5187. front: {
  5188. height: math.unit(6, "feet"),
  5189. weight: math.unit(140, "lbs"),
  5190. name: "Front",
  5191. image: {
  5192. source: "./media/characters/cynosura/front.svg",
  5193. extra: 896 / 847
  5194. }
  5195. },
  5196. back: {
  5197. height: math.unit(6, "feet"),
  5198. weight: math.unit(140, "lbs"),
  5199. name: "Back",
  5200. image: {
  5201. source: "./media/characters/cynosura/back.svg",
  5202. extra: 1365 / 1250
  5203. }
  5204. },
  5205. },
  5206. [
  5207. {
  5208. name: "Micro",
  5209. height: math.unit(4, "inches")
  5210. },
  5211. {
  5212. name: "Normal",
  5213. height: math.unit(5.75, "feet"),
  5214. default: true
  5215. },
  5216. {
  5217. name: "Tall",
  5218. height: math.unit(10, "feet")
  5219. },
  5220. {
  5221. name: "Big",
  5222. height: math.unit(20, "feet")
  5223. },
  5224. {
  5225. name: "Macro",
  5226. height: math.unit(50, "feet")
  5227. },
  5228. ]
  5229. ))
  5230. characterMakers.push(() => makeCharacter(
  5231. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5232. {
  5233. front: {
  5234. height: math.unit(6, "feet"),
  5235. weight: math.unit(170, "lbs"),
  5236. name: "Front",
  5237. image: {
  5238. source: "./media/characters/gin/front.svg",
  5239. extra: 1.053,
  5240. bottom: 0.025
  5241. }
  5242. },
  5243. foot: {
  5244. height: math.unit(6 / 4.25, "feet"),
  5245. name: "Foot",
  5246. image: {
  5247. source: "./media/characters/gin/foot.svg"
  5248. }
  5249. },
  5250. sole: {
  5251. height: math.unit(6 / 4.40, "feet"),
  5252. name: "Sole",
  5253. image: {
  5254. source: "./media/characters/gin/sole.svg"
  5255. }
  5256. },
  5257. },
  5258. [
  5259. {
  5260. name: "Normal",
  5261. height: math.unit(13 + 2 / 12, "feet")
  5262. },
  5263. {
  5264. name: "Macro",
  5265. height: math.unit(1500, "feet")
  5266. },
  5267. {
  5268. name: "Megamacro",
  5269. height: math.unit(200, "miles"),
  5270. default: true
  5271. },
  5272. {
  5273. name: "Gigamacro",
  5274. height: math.unit(500, "megameters")
  5275. },
  5276. {
  5277. name: "Teramacro",
  5278. height: math.unit(15, "lightyears")
  5279. }
  5280. ]
  5281. ))
  5282. characterMakers.push(() => makeCharacter(
  5283. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5284. {
  5285. front: {
  5286. height: math.unit(6 + 1 / 6, "feet"),
  5287. weight: math.unit(178, "lbs"),
  5288. name: "Front",
  5289. image: {
  5290. source: "./media/characters/guy/front.svg"
  5291. }
  5292. }
  5293. },
  5294. [
  5295. {
  5296. name: "Normal",
  5297. height: math.unit(6 + 1 / 6, "feet"),
  5298. default: true
  5299. },
  5300. {
  5301. name: "Large",
  5302. height: math.unit(25 + 7 / 12, "feet")
  5303. },
  5304. {
  5305. name: "Macro",
  5306. height: math.unit(60 + 9 / 12, "feet")
  5307. },
  5308. {
  5309. name: "Macro+",
  5310. height: math.unit(246, "feet")
  5311. },
  5312. {
  5313. name: "Macro++",
  5314. height: math.unit(878, "feet")
  5315. }
  5316. ]
  5317. ))
  5318. characterMakers.push(() => makeCharacter(
  5319. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5320. {
  5321. front: {
  5322. height: math.unit(9, "feet"),
  5323. weight: math.unit(800, "lbs"),
  5324. name: "Front",
  5325. image: {
  5326. source: "./media/characters/tiberius/front.svg",
  5327. extra: 2295 / 2071
  5328. }
  5329. },
  5330. back: {
  5331. height: math.unit(9, "feet"),
  5332. weight: math.unit(800, "lbs"),
  5333. name: "Back",
  5334. image: {
  5335. source: "./media/characters/tiberius/back.svg",
  5336. extra: 2373 / 2160
  5337. }
  5338. },
  5339. },
  5340. [
  5341. {
  5342. name: "Normal",
  5343. height: math.unit(9, "feet"),
  5344. default: true
  5345. }
  5346. ]
  5347. ))
  5348. characterMakers.push(() => makeCharacter(
  5349. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5350. {
  5351. front: {
  5352. height: math.unit(6, "feet"),
  5353. weight: math.unit(600, "lbs"),
  5354. name: "Front",
  5355. image: {
  5356. source: "./media/characters/surgo/front.svg",
  5357. extra: 3591 / 2227
  5358. }
  5359. },
  5360. back: {
  5361. height: math.unit(6, "feet"),
  5362. weight: math.unit(600, "lbs"),
  5363. name: "Back",
  5364. image: {
  5365. source: "./media/characters/surgo/back.svg",
  5366. extra: 3557 / 2228
  5367. }
  5368. },
  5369. laying: {
  5370. height: math.unit(6 * 0.85, "feet"),
  5371. weight: math.unit(600, "lbs"),
  5372. name: "Laying",
  5373. image: {
  5374. source: "./media/characters/surgo/laying.svg"
  5375. }
  5376. },
  5377. },
  5378. [
  5379. {
  5380. name: "Normal",
  5381. height: math.unit(6, "feet"),
  5382. default: true
  5383. }
  5384. ]
  5385. ))
  5386. characterMakers.push(() => makeCharacter(
  5387. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5388. {
  5389. side: {
  5390. height: math.unit(6, "feet"),
  5391. weight: math.unit(150, "lbs"),
  5392. name: "Side",
  5393. image: {
  5394. source: "./media/characters/cibus/side.svg",
  5395. extra: 800 / 400
  5396. }
  5397. },
  5398. },
  5399. [
  5400. {
  5401. name: "Normal",
  5402. height: math.unit(6, "feet"),
  5403. default: true
  5404. }
  5405. ]
  5406. ))
  5407. characterMakers.push(() => makeCharacter(
  5408. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5409. {
  5410. front: {
  5411. height: math.unit(6, "feet"),
  5412. weight: math.unit(240, "lbs"),
  5413. name: "Front",
  5414. image: {
  5415. source: "./media/characters/nibbles/front.svg"
  5416. }
  5417. },
  5418. side: {
  5419. height: math.unit(6, "feet"),
  5420. weight: math.unit(240, "lbs"),
  5421. name: "Side",
  5422. image: {
  5423. source: "./media/characters/nibbles/side.svg"
  5424. }
  5425. },
  5426. },
  5427. [
  5428. {
  5429. name: "Normal",
  5430. height: math.unit(9, "feet"),
  5431. default: true
  5432. }
  5433. ]
  5434. ))
  5435. characterMakers.push(() => makeCharacter(
  5436. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5437. {
  5438. side: {
  5439. height: math.unit(5 + 1 / 6, "feet"),
  5440. weight: math.unit(130, "lbs"),
  5441. name: "Side",
  5442. image: {
  5443. source: "./media/characters/rikky/side.svg",
  5444. extra: 851/801
  5445. }
  5446. },
  5447. },
  5448. [
  5449. {
  5450. name: "Normal",
  5451. height: math.unit(5 + 1 / 6, "feet")
  5452. },
  5453. {
  5454. name: "Macro",
  5455. height: math.unit(152, "feet"),
  5456. default: true
  5457. },
  5458. {
  5459. name: "Megamacro",
  5460. height: math.unit(7, "miles")
  5461. }
  5462. ]
  5463. ))
  5464. characterMakers.push(() => makeCharacter(
  5465. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5466. {
  5467. side: {
  5468. height: math.unit(370, "cm"),
  5469. weight: math.unit(350, "lbs"),
  5470. name: "Side",
  5471. image: {
  5472. source: "./media/characters/malfressa/side.svg"
  5473. }
  5474. },
  5475. walking: {
  5476. height: math.unit(370, "cm"),
  5477. weight: math.unit(350, "lbs"),
  5478. name: "Walking",
  5479. image: {
  5480. source: "./media/characters/malfressa/walking.svg"
  5481. }
  5482. },
  5483. feral: {
  5484. height: math.unit(2500, "cm"),
  5485. weight: math.unit(100000, "lbs"),
  5486. name: "Feral",
  5487. image: {
  5488. source: "./media/characters/malfressa/feral.svg",
  5489. extra: 2108 / 837,
  5490. bottom: 0.02
  5491. }
  5492. },
  5493. },
  5494. [
  5495. {
  5496. name: "Normal",
  5497. height: math.unit(370, "cm")
  5498. },
  5499. {
  5500. name: "Macro",
  5501. height: math.unit(300, "meters"),
  5502. default: true
  5503. }
  5504. ]
  5505. ))
  5506. characterMakers.push(() => makeCharacter(
  5507. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5508. {
  5509. front: {
  5510. height: math.unit(6, "feet"),
  5511. weight: math.unit(60, "kg"),
  5512. name: "Front",
  5513. image: {
  5514. source: "./media/characters/jaro/front.svg"
  5515. }
  5516. },
  5517. back: {
  5518. height: math.unit(6, "feet"),
  5519. weight: math.unit(60, "kg"),
  5520. name: "Back",
  5521. image: {
  5522. source: "./media/characters/jaro/back.svg"
  5523. }
  5524. },
  5525. },
  5526. [
  5527. {
  5528. name: "Micro",
  5529. height: math.unit(7, "inches")
  5530. },
  5531. {
  5532. name: "Normal",
  5533. height: math.unit(5.5, "feet"),
  5534. default: true
  5535. },
  5536. {
  5537. name: "Minimacro",
  5538. height: math.unit(20, "feet")
  5539. },
  5540. {
  5541. name: "Macro",
  5542. height: math.unit(200, "meters")
  5543. }
  5544. ]
  5545. ))
  5546. characterMakers.push(() => makeCharacter(
  5547. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5548. {
  5549. front: {
  5550. height: math.unit(6, "feet"),
  5551. weight: math.unit(195, "lb"),
  5552. name: "Front",
  5553. image: {
  5554. source: "./media/characters/rogue/front.svg"
  5555. }
  5556. },
  5557. },
  5558. [
  5559. {
  5560. name: "Macro",
  5561. height: math.unit(90, "feet"),
  5562. default: true
  5563. },
  5564. ]
  5565. ))
  5566. characterMakers.push(() => makeCharacter(
  5567. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5568. {
  5569. front: {
  5570. height: math.unit(5 + 8 / 12, "feet"),
  5571. weight: math.unit(140, "lb"),
  5572. name: "Front",
  5573. image: {
  5574. source: "./media/characters/piper/front.svg",
  5575. extra: 3928 / 3681
  5576. }
  5577. },
  5578. },
  5579. [
  5580. {
  5581. name: "Micro",
  5582. height: math.unit(2, "inches")
  5583. },
  5584. {
  5585. name: "Normal",
  5586. height: math.unit(5 + 8 / 12, "feet")
  5587. },
  5588. {
  5589. name: "Macro",
  5590. height: math.unit(250, "feet"),
  5591. default: true
  5592. },
  5593. {
  5594. name: "Megamacro",
  5595. height: math.unit(7, "miles")
  5596. },
  5597. ]
  5598. ))
  5599. characterMakers.push(() => makeCharacter(
  5600. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5601. {
  5602. front: {
  5603. height: math.unit(6, "feet"),
  5604. weight: math.unit(220, "lb"),
  5605. name: "Front",
  5606. image: {
  5607. source: "./media/characters/gemini/front.svg"
  5608. }
  5609. },
  5610. back: {
  5611. height: math.unit(6, "feet"),
  5612. weight: math.unit(220, "lb"),
  5613. name: "Back",
  5614. image: {
  5615. source: "./media/characters/gemini/back.svg"
  5616. }
  5617. },
  5618. kneeling: {
  5619. height: math.unit(6 / 1.5, "feet"),
  5620. weight: math.unit(220, "lb"),
  5621. name: "Kneeling",
  5622. image: {
  5623. source: "./media/characters/gemini/kneeling.svg",
  5624. bottom: 0.02
  5625. }
  5626. },
  5627. },
  5628. [
  5629. {
  5630. name: "Macro",
  5631. height: math.unit(300, "meters"),
  5632. default: true
  5633. },
  5634. {
  5635. name: "Megamacro",
  5636. height: math.unit(6900, "meters")
  5637. },
  5638. ]
  5639. ))
  5640. characterMakers.push(() => makeCharacter(
  5641. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5642. {
  5643. anthro: {
  5644. height: math.unit(2.35, "meters"),
  5645. weight: math.unit(73, "kg"),
  5646. name: "Anthro",
  5647. image: {
  5648. source: "./media/characters/alicia/anthro.svg",
  5649. extra: 2571 / 2385,
  5650. bottom: 75 / 2648
  5651. }
  5652. },
  5653. paw: {
  5654. height: math.unit(1.32, "feet"),
  5655. name: "Paw",
  5656. image: {
  5657. source: "./media/characters/alicia/paw.svg"
  5658. }
  5659. },
  5660. feral: {
  5661. height: math.unit(1.69, "meters"),
  5662. weight: math.unit(73, "kg"),
  5663. name: "Feral",
  5664. image: {
  5665. source: "./media/characters/alicia/feral.svg",
  5666. extra: 2123 / 1715,
  5667. bottom: 222 / 2349
  5668. }
  5669. },
  5670. },
  5671. [
  5672. {
  5673. name: "Normal",
  5674. height: math.unit(2.35, "meters")
  5675. },
  5676. {
  5677. name: "Macro",
  5678. height: math.unit(60, "meters"),
  5679. default: true
  5680. },
  5681. {
  5682. name: "Megamacro",
  5683. height: math.unit(10000, "kilometers")
  5684. },
  5685. ]
  5686. ))
  5687. characterMakers.push(() => makeCharacter(
  5688. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5689. {
  5690. front: {
  5691. height: math.unit(7, "feet"),
  5692. weight: math.unit(250, "lbs"),
  5693. name: "Front",
  5694. image: {
  5695. source: "./media/characters/archy/front.svg"
  5696. }
  5697. }
  5698. },
  5699. [
  5700. {
  5701. name: "Micro",
  5702. height: math.unit(1, "inch")
  5703. },
  5704. {
  5705. name: "Shorty",
  5706. height: math.unit(5, "feet")
  5707. },
  5708. {
  5709. name: "Normal",
  5710. height: math.unit(7, "feet")
  5711. },
  5712. {
  5713. name: "Macro",
  5714. height: math.unit(600, "meters"),
  5715. default: true
  5716. },
  5717. {
  5718. name: "Megamacro",
  5719. height: math.unit(1, "mile")
  5720. },
  5721. ]
  5722. ))
  5723. characterMakers.push(() => makeCharacter(
  5724. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5725. {
  5726. front: {
  5727. height: math.unit(1.65, "meters"),
  5728. weight: math.unit(74, "kg"),
  5729. name: "Front",
  5730. image: {
  5731. source: "./media/characters/berri/front.svg",
  5732. extra: 857 / 837,
  5733. bottom: 18 / 877
  5734. }
  5735. },
  5736. bum: {
  5737. height: math.unit(1.46, "feet"),
  5738. name: "Bum",
  5739. image: {
  5740. source: "./media/characters/berri/bum.svg"
  5741. }
  5742. },
  5743. mouth: {
  5744. height: math.unit(0.44, "feet"),
  5745. name: "Mouth",
  5746. image: {
  5747. source: "./media/characters/berri/mouth.svg"
  5748. }
  5749. },
  5750. paw: {
  5751. height: math.unit(0.826, "feet"),
  5752. name: "Paw",
  5753. image: {
  5754. source: "./media/characters/berri/paw.svg"
  5755. }
  5756. },
  5757. },
  5758. [
  5759. {
  5760. name: "Normal",
  5761. height: math.unit(1.65, "meters")
  5762. },
  5763. {
  5764. name: "Macro",
  5765. height: math.unit(60, "m"),
  5766. default: true
  5767. },
  5768. {
  5769. name: "Megamacro",
  5770. height: math.unit(9.213, "km")
  5771. },
  5772. {
  5773. name: "Planet Eater",
  5774. height: math.unit(489, "megameters")
  5775. },
  5776. {
  5777. name: "Teramacro",
  5778. height: math.unit(2471635000000, "meters")
  5779. },
  5780. {
  5781. name: "Examacro",
  5782. height: math.unit(8.0624e+26, "meters")
  5783. }
  5784. ]
  5785. ))
  5786. characterMakers.push(() => makeCharacter(
  5787. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5788. {
  5789. front: {
  5790. height: math.unit(1.72, "meters"),
  5791. weight: math.unit(68, "kg"),
  5792. name: "Front",
  5793. image: {
  5794. source: "./media/characters/lexi/front.svg"
  5795. }
  5796. }
  5797. },
  5798. [
  5799. {
  5800. name: "Very Smol",
  5801. height: math.unit(10, "mm")
  5802. },
  5803. {
  5804. name: "Micro",
  5805. height: math.unit(6.8, "cm"),
  5806. default: true
  5807. },
  5808. {
  5809. name: "Normal",
  5810. height: math.unit(1.72, "m")
  5811. }
  5812. ]
  5813. ))
  5814. characterMakers.push(() => makeCharacter(
  5815. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5816. {
  5817. front: {
  5818. height: math.unit(1.69, "meters"),
  5819. weight: math.unit(68, "kg"),
  5820. name: "Front",
  5821. image: {
  5822. source: "./media/characters/martin/front.svg",
  5823. extra: 596 / 581
  5824. }
  5825. }
  5826. },
  5827. [
  5828. {
  5829. name: "Micro",
  5830. height: math.unit(6.85, "cm"),
  5831. default: true
  5832. },
  5833. {
  5834. name: "Normal",
  5835. height: math.unit(1.69, "m")
  5836. }
  5837. ]
  5838. ))
  5839. characterMakers.push(() => makeCharacter(
  5840. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5841. {
  5842. front: {
  5843. height: math.unit(1.69, "meters"),
  5844. weight: math.unit(68, "kg"),
  5845. name: "Front",
  5846. image: {
  5847. source: "./media/characters/juno/front.svg"
  5848. }
  5849. }
  5850. },
  5851. [
  5852. {
  5853. name: "Micro",
  5854. height: math.unit(7, "cm")
  5855. },
  5856. {
  5857. name: "Normal",
  5858. height: math.unit(1.89, "m")
  5859. },
  5860. {
  5861. name: "Macro",
  5862. height: math.unit(353, "meters"),
  5863. default: true
  5864. }
  5865. ]
  5866. ))
  5867. characterMakers.push(() => makeCharacter(
  5868. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5869. {
  5870. front: {
  5871. height: math.unit(1.93, "meters"),
  5872. weight: math.unit(83, "kg"),
  5873. name: "Front",
  5874. image: {
  5875. source: "./media/characters/samantha/front.svg"
  5876. }
  5877. },
  5878. frontClothed: {
  5879. height: math.unit(1.93, "meters"),
  5880. weight: math.unit(83, "kg"),
  5881. name: "Front (Clothed)",
  5882. image: {
  5883. source: "./media/characters/samantha/front-clothed.svg"
  5884. }
  5885. },
  5886. back: {
  5887. height: math.unit(1.93, "meters"),
  5888. weight: math.unit(83, "kg"),
  5889. name: "Back",
  5890. image: {
  5891. source: "./media/characters/samantha/back.svg"
  5892. }
  5893. },
  5894. },
  5895. [
  5896. {
  5897. name: "Normal",
  5898. height: math.unit(1.93, "m")
  5899. },
  5900. {
  5901. name: "Macro",
  5902. height: math.unit(74, "meters"),
  5903. default: true
  5904. },
  5905. {
  5906. name: "Macro+",
  5907. height: math.unit(223, "meters"),
  5908. },
  5909. {
  5910. name: "Megamacro",
  5911. height: math.unit(8381, "meters"),
  5912. },
  5913. {
  5914. name: "Megamacro+",
  5915. height: math.unit(12000, "kilometers")
  5916. },
  5917. ]
  5918. ))
  5919. characterMakers.push(() => makeCharacter(
  5920. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  5921. {
  5922. front: {
  5923. height: math.unit(1.92, "meters"),
  5924. weight: math.unit(80, "kg"),
  5925. name: "Front",
  5926. image: {
  5927. source: "./media/characters/dr-clay/front.svg"
  5928. }
  5929. },
  5930. frontClothed: {
  5931. height: math.unit(1.92, "meters"),
  5932. weight: math.unit(80, "kg"),
  5933. name: "Front (Clothed)",
  5934. image: {
  5935. source: "./media/characters/dr-clay/front-clothed.svg"
  5936. }
  5937. }
  5938. },
  5939. [
  5940. {
  5941. name: "Normal",
  5942. height: math.unit(1.92, "m")
  5943. },
  5944. {
  5945. name: "Macro",
  5946. height: math.unit(214, "meters"),
  5947. default: true
  5948. },
  5949. {
  5950. name: "Macro+",
  5951. height: math.unit(12.237, "meters"),
  5952. },
  5953. {
  5954. name: "Megamacro",
  5955. height: math.unit(557, "megameters"),
  5956. },
  5957. {
  5958. name: "Unimaginable",
  5959. height: math.unit(120e9, "lightyears")
  5960. },
  5961. ]
  5962. ))
  5963. characterMakers.push(() => makeCharacter(
  5964. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  5965. {
  5966. front: {
  5967. height: math.unit(2, "meters"),
  5968. weight: math.unit(80, "kg"),
  5969. name: "Front",
  5970. image: {
  5971. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  5972. }
  5973. }
  5974. },
  5975. [
  5976. {
  5977. name: "Teramacro",
  5978. height: math.unit(500000, "lightyears"),
  5979. default: true
  5980. },
  5981. ]
  5982. ))
  5983. characterMakers.push(() => makeCharacter(
  5984. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  5985. {
  5986. front: {
  5987. height: math.unit(2, "meters"),
  5988. weight: math.unit(150, "kg"),
  5989. name: "Front",
  5990. image: {
  5991. source: "./media/characters/vemus/front.svg",
  5992. extra: 2384 / 2084,
  5993. bottom: 0.0123
  5994. }
  5995. }
  5996. },
  5997. [
  5998. {
  5999. name: "Normal",
  6000. height: math.unit(3.75, "meters"),
  6001. default: true
  6002. },
  6003. {
  6004. name: "Big",
  6005. height: math.unit(8, "meters")
  6006. },
  6007. {
  6008. name: "Macro",
  6009. height: math.unit(100, "meters")
  6010. },
  6011. {
  6012. name: "Macro+",
  6013. height: math.unit(1500, "meters")
  6014. },
  6015. {
  6016. name: "Stellar",
  6017. height: math.unit(14e8, "meters")
  6018. },
  6019. ]
  6020. ))
  6021. characterMakers.push(() => makeCharacter(
  6022. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6023. {
  6024. front: {
  6025. height: math.unit(2, "meters"),
  6026. weight: math.unit(70, "kg"),
  6027. name: "Front",
  6028. image: {
  6029. source: "./media/characters/beherit/front.svg",
  6030. extra: 1408 / 1242
  6031. }
  6032. }
  6033. },
  6034. [
  6035. {
  6036. name: "Normal",
  6037. height: math.unit(6, "feet")
  6038. },
  6039. {
  6040. name: "Lorg",
  6041. height: math.unit(25, "feet"),
  6042. default: true
  6043. },
  6044. {
  6045. name: "Lorger",
  6046. height: math.unit(75, "feet")
  6047. },
  6048. {
  6049. name: "Macro",
  6050. height: math.unit(200, "meters")
  6051. },
  6052. ]
  6053. ))
  6054. characterMakers.push(() => makeCharacter(
  6055. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6056. {
  6057. front: {
  6058. height: math.unit(2, "meters"),
  6059. weight: math.unit(150, "kg"),
  6060. name: "Front",
  6061. image: {
  6062. source: "./media/characters/everett/front.svg",
  6063. extra: 2038 / 1737,
  6064. bottom: 0.03
  6065. }
  6066. },
  6067. paw: {
  6068. height: math.unit(2 / 3.6, "meters"),
  6069. name: "Paw",
  6070. image: {
  6071. source: "./media/characters/everett/paw.svg"
  6072. }
  6073. },
  6074. },
  6075. [
  6076. {
  6077. name: "Normal",
  6078. height: math.unit(15, "feet"),
  6079. default: true
  6080. },
  6081. {
  6082. name: "Lorg",
  6083. height: math.unit(70, "feet"),
  6084. default: true
  6085. },
  6086. {
  6087. name: "Lorger",
  6088. height: math.unit(250, "feet")
  6089. },
  6090. {
  6091. name: "Macro",
  6092. height: math.unit(500, "meters")
  6093. },
  6094. ]
  6095. ))
  6096. characterMakers.push(() => makeCharacter(
  6097. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  6098. {
  6099. front: {
  6100. height: math.unit(2, "meters"),
  6101. weight: math.unit(86, "kg"),
  6102. name: "Front",
  6103. image: {
  6104. source: "./media/characters/rose-lion/front.svg"
  6105. }
  6106. },
  6107. bent: {
  6108. height: math.unit(2 / 1.4288, "meters"),
  6109. weight: math.unit(86, "kg"),
  6110. name: "Bent",
  6111. image: {
  6112. source: "./media/characters/rose-lion/bent.svg"
  6113. }
  6114. }
  6115. },
  6116. [
  6117. {
  6118. name: "Mini-Micro",
  6119. height: math.unit(1, "cm")
  6120. },
  6121. {
  6122. name: "Micro",
  6123. height: math.unit(3.5, "inches"),
  6124. default: true
  6125. },
  6126. {
  6127. name: "Normal",
  6128. height: math.unit(6 + 1 / 6, "feet")
  6129. },
  6130. {
  6131. name: "Mini-Macro",
  6132. height: math.unit(9 + 10 / 12, "feet")
  6133. },
  6134. ]
  6135. ))
  6136. characterMakers.push(() => makeCharacter(
  6137. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6138. {
  6139. front: {
  6140. height: math.unit(2, "meters"),
  6141. weight: math.unit(350, "lbs"),
  6142. name: "Front",
  6143. image: {
  6144. source: "./media/characters/regal/front.svg"
  6145. }
  6146. },
  6147. back: {
  6148. height: math.unit(2, "meters"),
  6149. weight: math.unit(350, "lbs"),
  6150. name: "Back",
  6151. image: {
  6152. source: "./media/characters/regal/back.svg"
  6153. }
  6154. },
  6155. },
  6156. [
  6157. {
  6158. name: "Macro",
  6159. height: math.unit(350, "feet"),
  6160. default: true
  6161. }
  6162. ]
  6163. ))
  6164. characterMakers.push(() => makeCharacter(
  6165. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6166. {
  6167. front: {
  6168. height: math.unit(4 + 11 / 12, "feet"),
  6169. weight: math.unit(100, "lbs"),
  6170. name: "Front",
  6171. image: {
  6172. source: "./media/characters/opal/front.svg"
  6173. }
  6174. },
  6175. frontAlt: {
  6176. height: math.unit(4 + 11 / 12, "feet"),
  6177. weight: math.unit(100, "lbs"),
  6178. name: "Front (Alt)",
  6179. image: {
  6180. source: "./media/characters/opal/front-alt.svg"
  6181. }
  6182. },
  6183. },
  6184. [
  6185. {
  6186. name: "Small",
  6187. height: math.unit(4 + 11 / 12, "feet")
  6188. },
  6189. {
  6190. name: "Normal",
  6191. height: math.unit(20, "feet"),
  6192. default: true
  6193. },
  6194. {
  6195. name: "Macro",
  6196. height: math.unit(120, "feet")
  6197. },
  6198. {
  6199. name: "Megamacro",
  6200. height: math.unit(80, "miles")
  6201. },
  6202. {
  6203. name: "True Size",
  6204. height: math.unit(100000, "lightyears")
  6205. },
  6206. ]
  6207. ))
  6208. characterMakers.push(() => makeCharacter(
  6209. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6210. {
  6211. front: {
  6212. height: math.unit(6, "feet"),
  6213. weight: math.unit(200, "lbs"),
  6214. name: "Front",
  6215. image: {
  6216. source: "./media/characters/vector-wuff/front.svg"
  6217. }
  6218. }
  6219. },
  6220. [
  6221. {
  6222. name: "Normal",
  6223. height: math.unit(2.8, "meters")
  6224. },
  6225. {
  6226. name: "Macro",
  6227. height: math.unit(450, "meters"),
  6228. default: true
  6229. },
  6230. {
  6231. name: "Megamacro",
  6232. height: math.unit(15, "kilometers")
  6233. }
  6234. ]
  6235. ))
  6236. characterMakers.push(() => makeCharacter(
  6237. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6238. {
  6239. front: {
  6240. height: math.unit(6, "feet"),
  6241. weight: math.unit(256, "lbs"),
  6242. name: "Front",
  6243. image: {
  6244. source: "./media/characters/dannik/front.svg"
  6245. }
  6246. }
  6247. },
  6248. [
  6249. {
  6250. name: "Macro",
  6251. height: math.unit(69.57, "meters"),
  6252. default: true
  6253. },
  6254. ]
  6255. ))
  6256. characterMakers.push(() => makeCharacter(
  6257. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6258. {
  6259. front: {
  6260. height: math.unit(6, "feet"),
  6261. weight: math.unit(120, "lbs"),
  6262. name: "Front",
  6263. image: {
  6264. source: "./media/characters/azura-saharah/front.svg"
  6265. }
  6266. },
  6267. back: {
  6268. height: math.unit(6, "feet"),
  6269. weight: math.unit(120, "lbs"),
  6270. name: "Back",
  6271. image: {
  6272. source: "./media/characters/azura-saharah/back.svg"
  6273. }
  6274. },
  6275. },
  6276. [
  6277. {
  6278. name: "Macro",
  6279. height: math.unit(100, "feet"),
  6280. default: true
  6281. },
  6282. ]
  6283. ))
  6284. characterMakers.push(() => makeCharacter(
  6285. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6286. {
  6287. side: {
  6288. height: math.unit(5 + 4 / 12, "feet"),
  6289. weight: math.unit(163, "lbs"),
  6290. name: "Side",
  6291. image: {
  6292. source: "./media/characters/kennedy/side.svg"
  6293. }
  6294. }
  6295. },
  6296. [
  6297. {
  6298. name: "Standard Doggo",
  6299. height: math.unit(5 + 4 / 12, "feet")
  6300. },
  6301. {
  6302. name: "Big Doggo",
  6303. height: math.unit(25 + 3 / 12, "feet"),
  6304. default: true
  6305. },
  6306. ]
  6307. ))
  6308. characterMakers.push(() => makeCharacter(
  6309. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6310. {
  6311. front: {
  6312. height: math.unit(6, "feet"),
  6313. weight: math.unit(90, "lbs"),
  6314. name: "Front",
  6315. image: {
  6316. source: "./media/characters/odi-lunar/front.svg"
  6317. }
  6318. }
  6319. },
  6320. [
  6321. {
  6322. name: "Micro",
  6323. height: math.unit(3, "inches"),
  6324. default: true
  6325. },
  6326. {
  6327. name: "Normal",
  6328. height: math.unit(5.5, "feet")
  6329. }
  6330. ]
  6331. ))
  6332. characterMakers.push(() => makeCharacter(
  6333. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6334. {
  6335. back: {
  6336. height: math.unit(6, "feet"),
  6337. weight: math.unit(220, "lbs"),
  6338. name: "Back",
  6339. image: {
  6340. source: "./media/characters/mandake/back.svg"
  6341. }
  6342. }
  6343. },
  6344. [
  6345. {
  6346. name: "Normal",
  6347. height: math.unit(7, "feet"),
  6348. default: true
  6349. },
  6350. {
  6351. name: "Macro",
  6352. height: math.unit(78, "feet")
  6353. },
  6354. {
  6355. name: "Macro+",
  6356. height: math.unit(300, "meters")
  6357. },
  6358. {
  6359. name: "Macro++",
  6360. height: math.unit(2400, "feet")
  6361. },
  6362. {
  6363. name: "Megamacro",
  6364. height: math.unit(5167, "meters")
  6365. },
  6366. {
  6367. name: "Gigamacro",
  6368. height: math.unit(41769, "miles")
  6369. },
  6370. ]
  6371. ))
  6372. characterMakers.push(() => makeCharacter(
  6373. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6374. {
  6375. front: {
  6376. height: math.unit(6, "feet"),
  6377. weight: math.unit(120, "lbs"),
  6378. name: "Front",
  6379. image: {
  6380. source: "./media/characters/yozey/front.svg"
  6381. }
  6382. },
  6383. frontAlt: {
  6384. height: math.unit(6, "feet"),
  6385. weight: math.unit(120, "lbs"),
  6386. name: "Front (Alt)",
  6387. image: {
  6388. source: "./media/characters/yozey/front-alt.svg"
  6389. }
  6390. },
  6391. side: {
  6392. height: math.unit(6, "feet"),
  6393. weight: math.unit(120, "lbs"),
  6394. name: "Side",
  6395. image: {
  6396. source: "./media/characters/yozey/side.svg"
  6397. }
  6398. },
  6399. },
  6400. [
  6401. {
  6402. name: "Micro",
  6403. height: math.unit(3, "inches"),
  6404. default: true
  6405. },
  6406. {
  6407. name: "Normal",
  6408. height: math.unit(6, "feet")
  6409. }
  6410. ]
  6411. ))
  6412. characterMakers.push(() => makeCharacter(
  6413. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6414. {
  6415. front: {
  6416. height: math.unit(6, "feet"),
  6417. weight: math.unit(103, "lbs"),
  6418. name: "Front",
  6419. image: {
  6420. source: "./media/characters/valeska-voss/front.svg"
  6421. }
  6422. }
  6423. },
  6424. [
  6425. {
  6426. name: "Mini-Sized Sub",
  6427. height: math.unit(3.1, "inches")
  6428. },
  6429. {
  6430. name: "Mid-Sized Sub",
  6431. height: math.unit(6.2, "inches")
  6432. },
  6433. {
  6434. name: "Full-Sized Sub",
  6435. height: math.unit(9.3, "inches")
  6436. },
  6437. {
  6438. name: "Normal",
  6439. height: math.unit(5 + 2 / 12, "foot"),
  6440. default: true
  6441. },
  6442. ]
  6443. ))
  6444. characterMakers.push(() => makeCharacter(
  6445. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6446. {
  6447. front: {
  6448. height: math.unit(6, "feet"),
  6449. weight: math.unit(160, "lbs"),
  6450. name: "Front",
  6451. image: {
  6452. source: "./media/characters/gene-zeta/front.svg",
  6453. bottom: 0.03,
  6454. extra: 1
  6455. }
  6456. }
  6457. },
  6458. [
  6459. {
  6460. name: "Normal",
  6461. height: math.unit(6.25, "foot"),
  6462. default: true
  6463. },
  6464. ]
  6465. ))
  6466. characterMakers.push(() => makeCharacter(
  6467. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6468. {
  6469. front: {
  6470. height: math.unit(6, "feet"),
  6471. weight: math.unit(350, "lbs"),
  6472. name: "Front",
  6473. image: {
  6474. source: "./media/characters/razinox/front.svg",
  6475. extra: 1686 / 1548,
  6476. bottom: 28.2 / 1868
  6477. }
  6478. },
  6479. back: {
  6480. height: math.unit(6, "feet"),
  6481. weight: math.unit(350, "lbs"),
  6482. name: "Back",
  6483. image: {
  6484. source: "./media/characters/razinox/back.svg",
  6485. extra: 1660 / 1590,
  6486. bottom: 15 / 1665
  6487. }
  6488. },
  6489. },
  6490. [
  6491. {
  6492. name: "Normal",
  6493. height: math.unit(10 + 8 / 12, "foot")
  6494. },
  6495. {
  6496. name: "Minimacro",
  6497. height: math.unit(15, "foot")
  6498. },
  6499. {
  6500. name: "Macro",
  6501. height: math.unit(60, "foot"),
  6502. default: true
  6503. },
  6504. {
  6505. name: "Megamacro",
  6506. height: math.unit(5, "miles")
  6507. },
  6508. {
  6509. name: "Gigamacro",
  6510. height: math.unit(6000, "miles")
  6511. },
  6512. ]
  6513. ))
  6514. characterMakers.push(() => makeCharacter(
  6515. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6516. {
  6517. front: {
  6518. height: math.unit(6, "feet"),
  6519. weight: math.unit(150, "lbs"),
  6520. name: "Front",
  6521. image: {
  6522. source: "./media/characters/cobalt/front.svg"
  6523. }
  6524. }
  6525. },
  6526. [
  6527. {
  6528. name: "Normal",
  6529. height: math.unit(8 + 1 / 12, "foot")
  6530. },
  6531. {
  6532. name: "Macro",
  6533. height: math.unit(111, "foot"),
  6534. default: true
  6535. },
  6536. {
  6537. name: "Supracosmic",
  6538. height: math.unit(1e42, "feet")
  6539. },
  6540. ]
  6541. ))
  6542. characterMakers.push(() => makeCharacter(
  6543. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6544. {
  6545. front: {
  6546. height: math.unit(6, "feet"),
  6547. weight: math.unit(140, "lbs"),
  6548. name: "Front",
  6549. image: {
  6550. source: "./media/characters/amanda/front.svg"
  6551. }
  6552. }
  6553. },
  6554. [
  6555. {
  6556. name: "Micro",
  6557. height: math.unit(5, "inches"),
  6558. default: true
  6559. },
  6560. ]
  6561. ))
  6562. characterMakers.push(() => makeCharacter(
  6563. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6564. {
  6565. front: {
  6566. height: math.unit(5.59, "feet"),
  6567. weight: math.unit(250, "lbs"),
  6568. name: "Front",
  6569. image: {
  6570. source: "./media/characters/teal/front.svg"
  6571. }
  6572. },
  6573. frontAlt: {
  6574. height: math.unit(6, "feet"),
  6575. weight: math.unit(250, "lbs"),
  6576. name: "Front (Alt)",
  6577. image: {
  6578. source: "./media/characters/teal/front-alt.svg",
  6579. bottom: 0.04,
  6580. extra: 1
  6581. }
  6582. },
  6583. },
  6584. [
  6585. {
  6586. name: "Normal",
  6587. height: math.unit(12, "feet"),
  6588. default: true
  6589. },
  6590. {
  6591. name: "Macro",
  6592. height: math.unit(300, "feet")
  6593. },
  6594. ]
  6595. ))
  6596. characterMakers.push(() => makeCharacter(
  6597. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6598. {
  6599. frontCat: {
  6600. height: math.unit(6, "feet"),
  6601. weight: math.unit(180, "lbs"),
  6602. name: "Front (Cat)",
  6603. image: {
  6604. source: "./media/characters/ravin-amulet/front-cat.svg"
  6605. }
  6606. },
  6607. frontCatAlt: {
  6608. height: math.unit(6, "feet"),
  6609. weight: math.unit(180, "lbs"),
  6610. name: "Front (Alt, Cat)",
  6611. image: {
  6612. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6613. }
  6614. },
  6615. frontWerewolf: {
  6616. height: math.unit(6 * 1.2, "feet"),
  6617. weight: math.unit(225, "lbs"),
  6618. name: "Front (Werewolf)",
  6619. image: {
  6620. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6621. }
  6622. },
  6623. backWerewolf: {
  6624. height: math.unit(6 * 1.2, "feet"),
  6625. weight: math.unit(225, "lbs"),
  6626. name: "Back (Werewolf)",
  6627. image: {
  6628. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6629. }
  6630. },
  6631. },
  6632. [
  6633. {
  6634. name: "Nano",
  6635. height: math.unit(1, "micrometer")
  6636. },
  6637. {
  6638. name: "Micro",
  6639. height: math.unit(1, "inch")
  6640. },
  6641. {
  6642. name: "Normal",
  6643. height: math.unit(6, "feet"),
  6644. default: true
  6645. },
  6646. {
  6647. name: "Macro",
  6648. height: math.unit(60, "feet")
  6649. }
  6650. ]
  6651. ))
  6652. characterMakers.push(() => makeCharacter(
  6653. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6654. {
  6655. front: {
  6656. height: math.unit(6, "feet"),
  6657. weight: math.unit(165, "lbs"),
  6658. name: "Front",
  6659. image: {
  6660. source: "./media/characters/fluoresce/front.svg"
  6661. }
  6662. }
  6663. },
  6664. [
  6665. {
  6666. name: "Micro",
  6667. height: math.unit(6, "cm")
  6668. },
  6669. {
  6670. name: "Normal",
  6671. height: math.unit(5 + 7 / 12, "feet"),
  6672. default: true
  6673. },
  6674. {
  6675. name: "Macro",
  6676. height: math.unit(56, "feet")
  6677. },
  6678. {
  6679. name: "Megamacro",
  6680. height: math.unit(1.9, "miles")
  6681. },
  6682. ]
  6683. ))
  6684. characterMakers.push(() => makeCharacter(
  6685. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6686. {
  6687. front: {
  6688. height: math.unit(9 + 6 / 12, "feet"),
  6689. weight: math.unit(523, "lbs"),
  6690. name: "Side",
  6691. image: {
  6692. source: "./media/characters/aurora/side.svg"
  6693. }
  6694. }
  6695. },
  6696. [
  6697. {
  6698. name: "Normal",
  6699. height: math.unit(9 + 6 / 12, "feet")
  6700. },
  6701. {
  6702. name: "Macro",
  6703. height: math.unit(96, "feet"),
  6704. default: true
  6705. },
  6706. {
  6707. name: "Macro+",
  6708. height: math.unit(243, "feet")
  6709. },
  6710. ]
  6711. ))
  6712. characterMakers.push(() => makeCharacter(
  6713. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6714. {
  6715. front: {
  6716. height: math.unit(194, "cm"),
  6717. weight: math.unit(90, "kg"),
  6718. name: "Front",
  6719. image: {
  6720. source: "./media/characters/ranek/front.svg"
  6721. }
  6722. },
  6723. side: {
  6724. height: math.unit(194, "cm"),
  6725. weight: math.unit(90, "kg"),
  6726. name: "Side",
  6727. image: {
  6728. source: "./media/characters/ranek/side.svg"
  6729. }
  6730. },
  6731. back: {
  6732. height: math.unit(194, "cm"),
  6733. weight: math.unit(90, "kg"),
  6734. name: "Back",
  6735. image: {
  6736. source: "./media/characters/ranek/back.svg"
  6737. }
  6738. },
  6739. feral: {
  6740. height: math.unit(30, "cm"),
  6741. weight: math.unit(1.6, "lbs"),
  6742. name: "Feral",
  6743. image: {
  6744. source: "./media/characters/ranek/feral.svg"
  6745. }
  6746. },
  6747. },
  6748. [
  6749. {
  6750. name: "Normal",
  6751. height: math.unit(194, "cm"),
  6752. default: true
  6753. },
  6754. {
  6755. name: "Macro",
  6756. height: math.unit(100, "meters")
  6757. },
  6758. ]
  6759. ))
  6760. characterMakers.push(() => makeCharacter(
  6761. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6762. {
  6763. front: {
  6764. height: math.unit(5 + 6 / 12, "feet"),
  6765. weight: math.unit(153, "lbs"),
  6766. name: "Front",
  6767. image: {
  6768. source: "./media/characters/andrew-cooper/front.svg"
  6769. }
  6770. },
  6771. },
  6772. [
  6773. {
  6774. name: "Nano",
  6775. height: math.unit(1, "mm")
  6776. },
  6777. {
  6778. name: "Micro",
  6779. height: math.unit(2, "inches")
  6780. },
  6781. {
  6782. name: "Normal",
  6783. height: math.unit(5 + 6 / 12, "feet"),
  6784. default: true
  6785. }
  6786. ]
  6787. ))
  6788. characterMakers.push(() => makeCharacter(
  6789. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6790. {
  6791. front: {
  6792. height: math.unit(6, "feet"),
  6793. weight: math.unit(180, "lbs"),
  6794. name: "Front",
  6795. image: {
  6796. source: "./media/characters/akane-sato/front.svg",
  6797. extra: 1219 / 1140
  6798. }
  6799. },
  6800. back: {
  6801. height: math.unit(6, "feet"),
  6802. weight: math.unit(180, "lbs"),
  6803. name: "Back",
  6804. image: {
  6805. source: "./media/characters/akane-sato/back.svg",
  6806. extra: 1219 / 1170
  6807. }
  6808. },
  6809. },
  6810. [
  6811. {
  6812. name: "Normal",
  6813. height: math.unit(2.5, "meters")
  6814. },
  6815. {
  6816. name: "Macro",
  6817. height: math.unit(250, "meters"),
  6818. default: true
  6819. },
  6820. {
  6821. name: "Megamacro",
  6822. height: math.unit(25, "km")
  6823. },
  6824. ]
  6825. ))
  6826. characterMakers.push(() => makeCharacter(
  6827. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6828. {
  6829. front: {
  6830. height: math.unit(6, "feet"),
  6831. weight: math.unit(65, "kg"),
  6832. name: "Front",
  6833. image: {
  6834. source: "./media/characters/rook/front.svg",
  6835. extra: 960 / 950
  6836. }
  6837. }
  6838. },
  6839. [
  6840. {
  6841. name: "Normal",
  6842. height: math.unit(8.8, "feet")
  6843. },
  6844. {
  6845. name: "Macro",
  6846. height: math.unit(88, "feet"),
  6847. default: true
  6848. },
  6849. {
  6850. name: "Megamacro",
  6851. height: math.unit(8, "miles")
  6852. },
  6853. ]
  6854. ))
  6855. characterMakers.push(() => makeCharacter(
  6856. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6857. {
  6858. front: {
  6859. height: math.unit(12 + 2 / 12, "feet"),
  6860. weight: math.unit(808, "lbs"),
  6861. name: "Front",
  6862. image: {
  6863. source: "./media/characters/prodigy/front.svg"
  6864. }
  6865. }
  6866. },
  6867. [
  6868. {
  6869. name: "Normal",
  6870. height: math.unit(12 + 2 / 12, "feet"),
  6871. default: true
  6872. },
  6873. {
  6874. name: "Macro",
  6875. height: math.unit(143, "feet")
  6876. },
  6877. {
  6878. name: "Macro+",
  6879. height: math.unit(400, "feet")
  6880. },
  6881. ]
  6882. ))
  6883. characterMakers.push(() => makeCharacter(
  6884. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6885. {
  6886. front: {
  6887. height: math.unit(6, "feet"),
  6888. weight: math.unit(225, "lbs"),
  6889. name: "Front",
  6890. image: {
  6891. source: "./media/characters/daniel/front.svg"
  6892. }
  6893. },
  6894. leaning: {
  6895. height: math.unit(6, "feet"),
  6896. weight: math.unit(225, "lbs"),
  6897. name: "Leaning",
  6898. image: {
  6899. source: "./media/characters/daniel/leaning.svg"
  6900. }
  6901. },
  6902. },
  6903. [
  6904. {
  6905. name: "Macro",
  6906. height: math.unit(1000, "feet"),
  6907. default: true
  6908. },
  6909. ]
  6910. ))
  6911. characterMakers.push(() => makeCharacter(
  6912. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  6913. {
  6914. front: {
  6915. height: math.unit(6, "feet"),
  6916. weight: math.unit(88, "lbs"),
  6917. name: "Front",
  6918. image: {
  6919. source: "./media/characters/chiros/front.svg",
  6920. extra: 306 / 226
  6921. }
  6922. },
  6923. side: {
  6924. height: math.unit(6, "feet"),
  6925. weight: math.unit(88, "lbs"),
  6926. name: "Side",
  6927. image: {
  6928. source: "./media/characters/chiros/side.svg",
  6929. extra: 306 / 226
  6930. }
  6931. },
  6932. },
  6933. [
  6934. {
  6935. name: "Normal",
  6936. height: math.unit(6, "cm"),
  6937. default: true
  6938. },
  6939. ]
  6940. ))
  6941. characterMakers.push(() => makeCharacter(
  6942. { name: "Selka", species: ["snake"], tags: ["naga"] },
  6943. {
  6944. front: {
  6945. height: math.unit(6, "feet"),
  6946. weight: math.unit(100, "lbs"),
  6947. name: "Front",
  6948. image: {
  6949. source: "./media/characters/selka/front.svg",
  6950. extra: 947 / 887
  6951. }
  6952. }
  6953. },
  6954. [
  6955. {
  6956. name: "Normal",
  6957. height: math.unit(5, "cm"),
  6958. default: true
  6959. },
  6960. ]
  6961. ))
  6962. characterMakers.push(() => makeCharacter(
  6963. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  6964. {
  6965. front: {
  6966. height: math.unit(8 + 3 / 12, "feet"),
  6967. weight: math.unit(424, "lbs"),
  6968. name: "Front",
  6969. image: {
  6970. source: "./media/characters/verin/front.svg",
  6971. extra: 1845 / 1550
  6972. }
  6973. },
  6974. frontArmored: {
  6975. height: math.unit(8 + 3 / 12, "feet"),
  6976. weight: math.unit(424, "lbs"),
  6977. name: "Front (Armored)",
  6978. image: {
  6979. source: "./media/characters/verin/front-armor.svg",
  6980. extra: 1845 / 1550,
  6981. bottom: 0.01
  6982. }
  6983. },
  6984. back: {
  6985. height: math.unit(8 + 3 / 12, "feet"),
  6986. weight: math.unit(424, "lbs"),
  6987. name: "Back",
  6988. image: {
  6989. source: "./media/characters/verin/back.svg",
  6990. bottom: 0.1,
  6991. extra: 1
  6992. }
  6993. },
  6994. foot: {
  6995. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  6996. name: "Foot",
  6997. image: {
  6998. source: "./media/characters/verin/foot.svg"
  6999. }
  7000. },
  7001. },
  7002. [
  7003. {
  7004. name: "Normal",
  7005. height: math.unit(8 + 3 / 12, "feet")
  7006. },
  7007. {
  7008. name: "Minimacro",
  7009. height: math.unit(21, "feet"),
  7010. default: true
  7011. },
  7012. {
  7013. name: "Macro",
  7014. height: math.unit(626, "feet")
  7015. },
  7016. ]
  7017. ))
  7018. characterMakers.push(() => makeCharacter(
  7019. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7020. {
  7021. front: {
  7022. height: math.unit(2.718, "meters"),
  7023. weight: math.unit(150, "lbs"),
  7024. name: "Front",
  7025. image: {
  7026. source: "./media/characters/sovrim-terraquian/front.svg"
  7027. }
  7028. },
  7029. back: {
  7030. height: math.unit(2.718, "meters"),
  7031. weight: math.unit(150, "lbs"),
  7032. name: "Back",
  7033. image: {
  7034. source: "./media/characters/sovrim-terraquian/back.svg"
  7035. }
  7036. }
  7037. },
  7038. [
  7039. {
  7040. name: "Micro",
  7041. height: math.unit(2, "inches")
  7042. },
  7043. {
  7044. name: "Small",
  7045. height: math.unit(1, "meter")
  7046. },
  7047. {
  7048. name: "Normal",
  7049. height: math.unit(Math.E, "meters"),
  7050. default: true
  7051. },
  7052. {
  7053. name: "Macro",
  7054. height: math.unit(20, "meters")
  7055. },
  7056. {
  7057. name: "Macro+",
  7058. height: math.unit(400, "meters")
  7059. },
  7060. ]
  7061. ))
  7062. characterMakers.push(() => makeCharacter(
  7063. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7064. {
  7065. front: {
  7066. height: math.unit(7, "feet"),
  7067. weight: math.unit(489, "lbs"),
  7068. name: "Front",
  7069. image: {
  7070. source: "./media/characters/reece-silvermane/front.svg",
  7071. bottom: 0.02,
  7072. extra: 1
  7073. }
  7074. },
  7075. },
  7076. [
  7077. {
  7078. name: "Macro",
  7079. height: math.unit(1.5, "miles"),
  7080. default: true
  7081. },
  7082. ]
  7083. ))
  7084. characterMakers.push(() => makeCharacter(
  7085. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7086. {
  7087. front: {
  7088. height: math.unit(6, "feet"),
  7089. weight: math.unit(78, "kg"),
  7090. name: "Front",
  7091. image: {
  7092. source: "./media/characters/kane/front.svg",
  7093. extra: 978 / 899
  7094. }
  7095. },
  7096. },
  7097. [
  7098. {
  7099. name: "Normal",
  7100. height: math.unit(2.1, "m"),
  7101. },
  7102. {
  7103. name: "Macro",
  7104. height: math.unit(1, "km"),
  7105. default: true
  7106. },
  7107. ]
  7108. ))
  7109. characterMakers.push(() => makeCharacter(
  7110. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7111. {
  7112. front: {
  7113. height: math.unit(6, "feet"),
  7114. weight: math.unit(200, "kg"),
  7115. name: "Front",
  7116. image: {
  7117. source: "./media/characters/tegon/front.svg",
  7118. bottom: 0.01,
  7119. extra: 1
  7120. }
  7121. },
  7122. },
  7123. [
  7124. {
  7125. name: "Micro",
  7126. height: math.unit(1, "inch")
  7127. },
  7128. {
  7129. name: "Normal",
  7130. height: math.unit(6 + 3 / 12, "feet"),
  7131. default: true
  7132. },
  7133. {
  7134. name: "Macro",
  7135. height: math.unit(300, "feet")
  7136. },
  7137. {
  7138. name: "Megamacro",
  7139. height: math.unit(69, "miles")
  7140. },
  7141. ]
  7142. ))
  7143. characterMakers.push(() => makeCharacter(
  7144. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7145. {
  7146. side: {
  7147. height: math.unit(6, "feet"),
  7148. weight: math.unit(2304, "lbs"),
  7149. name: "Side",
  7150. image: {
  7151. source: "./media/characters/arcturax/side.svg",
  7152. extra: 790 / 376,
  7153. bottom: 0.01
  7154. }
  7155. },
  7156. },
  7157. [
  7158. {
  7159. name: "Micro",
  7160. height: math.unit(2, "inch")
  7161. },
  7162. {
  7163. name: "Normal",
  7164. height: math.unit(6, "feet")
  7165. },
  7166. {
  7167. name: "Macro",
  7168. height: math.unit(39, "feet"),
  7169. default: true
  7170. },
  7171. {
  7172. name: "Megamacro",
  7173. height: math.unit(7, "miles")
  7174. },
  7175. ]
  7176. ))
  7177. characterMakers.push(() => makeCharacter(
  7178. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7179. {
  7180. front: {
  7181. height: math.unit(6, "feet"),
  7182. weight: math.unit(50, "lbs"),
  7183. name: "Front",
  7184. image: {
  7185. source: "./media/characters/sentri/front.svg",
  7186. extra: 1750 / 1570,
  7187. bottom: 0.025
  7188. }
  7189. },
  7190. frontAlt: {
  7191. height: math.unit(6, "feet"),
  7192. weight: math.unit(50, "lbs"),
  7193. name: "Front (Alt)",
  7194. image: {
  7195. source: "./media/characters/sentri/front-alt.svg",
  7196. extra: 1750 / 1570,
  7197. bottom: 0.025
  7198. }
  7199. },
  7200. },
  7201. [
  7202. {
  7203. name: "Normal",
  7204. height: math.unit(15, "feet"),
  7205. default: true
  7206. },
  7207. {
  7208. name: "Macro",
  7209. height: math.unit(2500, "feet")
  7210. }
  7211. ]
  7212. ))
  7213. characterMakers.push(() => makeCharacter(
  7214. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7215. {
  7216. front: {
  7217. height: math.unit(5 + 8 / 12, "feet"),
  7218. weight: math.unit(130, "lbs"),
  7219. name: "Front",
  7220. image: {
  7221. source: "./media/characters/corvin/front.svg",
  7222. extra: 1803 / 1629
  7223. }
  7224. },
  7225. frontShirt: {
  7226. height: math.unit(5 + 8 / 12, "feet"),
  7227. weight: math.unit(130, "lbs"),
  7228. name: "Front (Shirt)",
  7229. image: {
  7230. source: "./media/characters/corvin/front-shirt.svg",
  7231. extra: 1803 / 1629
  7232. }
  7233. },
  7234. frontPoncho: {
  7235. height: math.unit(5 + 8 / 12, "feet"),
  7236. weight: math.unit(130, "lbs"),
  7237. name: "Front (Poncho)",
  7238. image: {
  7239. source: "./media/characters/corvin/front-poncho.svg",
  7240. extra: 1803 / 1629
  7241. }
  7242. },
  7243. side: {
  7244. height: math.unit(5 + 8 / 12, "feet"),
  7245. weight: math.unit(130, "lbs"),
  7246. name: "Side",
  7247. image: {
  7248. source: "./media/characters/corvin/side.svg",
  7249. extra: 1012 / 945
  7250. }
  7251. },
  7252. back: {
  7253. height: math.unit(5 + 8 / 12, "feet"),
  7254. weight: math.unit(130, "lbs"),
  7255. name: "Back",
  7256. image: {
  7257. source: "./media/characters/corvin/back.svg",
  7258. extra: 1803 / 1629
  7259. }
  7260. },
  7261. },
  7262. [
  7263. {
  7264. name: "Micro",
  7265. height: math.unit(3, "inches")
  7266. },
  7267. {
  7268. name: "Normal",
  7269. height: math.unit(5 + 8 / 12, "feet")
  7270. },
  7271. {
  7272. name: "Macro",
  7273. height: math.unit(300, "feet"),
  7274. default: true
  7275. },
  7276. {
  7277. name: "Megamacro",
  7278. height: math.unit(500, "miles")
  7279. }
  7280. ]
  7281. ))
  7282. characterMakers.push(() => makeCharacter(
  7283. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7284. {
  7285. front: {
  7286. height: math.unit(6, "feet"),
  7287. weight: math.unit(135, "lbs"),
  7288. name: "Front",
  7289. image: {
  7290. source: "./media/characters/q/front.svg",
  7291. extra: 854 / 752,
  7292. bottom: 0.005
  7293. }
  7294. },
  7295. back: {
  7296. height: math.unit(6, "feet"),
  7297. weight: math.unit(130, "lbs"),
  7298. name: "Back",
  7299. image: {
  7300. source: "./media/characters/q/back.svg",
  7301. extra: 854 / 752
  7302. }
  7303. },
  7304. },
  7305. [
  7306. {
  7307. name: "Macro",
  7308. height: math.unit(90, "feet"),
  7309. default: true
  7310. },
  7311. {
  7312. name: "Extra Macro",
  7313. height: math.unit(300, "feet"),
  7314. },
  7315. {
  7316. name: "BIG WALF",
  7317. height: math.unit(750, "feet"),
  7318. },
  7319. ]
  7320. ))
  7321. characterMakers.push(() => makeCharacter(
  7322. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7323. {
  7324. front: {
  7325. height: math.unit(6, "feet"),
  7326. weight: math.unit(150, "lbs"),
  7327. name: "Front",
  7328. image: {
  7329. source: "./media/characters/carley/front.svg",
  7330. extra: 3927 / 3540,
  7331. bottom: 29.2/735
  7332. }
  7333. }
  7334. },
  7335. [
  7336. {
  7337. name: "Normal",
  7338. height: math.unit(6 + 3 / 12, "feet")
  7339. },
  7340. {
  7341. name: "Macro",
  7342. height: math.unit(185, "feet"),
  7343. default: true
  7344. },
  7345. {
  7346. name: "Megamacro",
  7347. height: math.unit(8, "miles"),
  7348. },
  7349. ]
  7350. ))
  7351. characterMakers.push(() => makeCharacter(
  7352. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7353. {
  7354. front: {
  7355. height: math.unit(3, "feet"),
  7356. weight: math.unit(28, "lbs"),
  7357. name: "Front",
  7358. image: {
  7359. source: "./media/characters/citrine/front.svg"
  7360. }
  7361. }
  7362. },
  7363. [
  7364. {
  7365. name: "Normal",
  7366. height: math.unit(3, "feet"),
  7367. default: true
  7368. }
  7369. ]
  7370. ))
  7371. characterMakers.push(() => makeCharacter(
  7372. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7373. {
  7374. front: {
  7375. height: math.unit(14, "feet"),
  7376. weight: math.unit(1450, "kg"),
  7377. capacity: math.unit(15, "people"),
  7378. name: "Front",
  7379. image: {
  7380. source: "./media/characters/aura-starwind/front.svg",
  7381. extra: 1455 / 1335
  7382. }
  7383. },
  7384. side: {
  7385. height: math.unit(14, "feet"),
  7386. weight: math.unit(1450, "kg"),
  7387. capacity: math.unit(15, "people"),
  7388. name: "Side",
  7389. image: {
  7390. source: "./media/characters/aura-starwind/side.svg",
  7391. extra: 1654 / 1497
  7392. }
  7393. },
  7394. taur: {
  7395. height: math.unit(18, "feet"),
  7396. weight: math.unit(5500, "kg"),
  7397. capacity: math.unit(50, "people"),
  7398. name: "Taur",
  7399. image: {
  7400. source: "./media/characters/aura-starwind/taur.svg",
  7401. extra: 1760 / 1650
  7402. }
  7403. },
  7404. feral: {
  7405. height: math.unit(46, "feet"),
  7406. weight: math.unit(25000, "kg"),
  7407. capacity: math.unit(120, "people"),
  7408. name: "Feral",
  7409. image: {
  7410. source: "./media/characters/aura-starwind/feral.svg"
  7411. }
  7412. },
  7413. },
  7414. [
  7415. {
  7416. name: "Normal",
  7417. height: math.unit(14, "feet"),
  7418. default: true
  7419. },
  7420. {
  7421. name: "Macro",
  7422. height: math.unit(50, "meters")
  7423. },
  7424. {
  7425. name: "Megamacro",
  7426. height: math.unit(5000, "meters")
  7427. },
  7428. {
  7429. name: "Gigamacro",
  7430. height: math.unit(100000, "kilometers")
  7431. },
  7432. ]
  7433. ))
  7434. characterMakers.push(() => makeCharacter(
  7435. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7436. {
  7437. front: {
  7438. height: math.unit(2 + 7 / 12, "feet"),
  7439. weight: math.unit(32, "lbs"),
  7440. name: "Front",
  7441. image: {
  7442. source: "./media/characters/rivet/front.svg",
  7443. extra: 1716 / 1658,
  7444. bottom: 0.03
  7445. }
  7446. },
  7447. foot: {
  7448. height: math.unit(0.551, "feet"),
  7449. name: "Rivet's Foot",
  7450. image: {
  7451. source: "./media/characters/rivet/foot.svg"
  7452. },
  7453. rename: true
  7454. }
  7455. },
  7456. [
  7457. {
  7458. name: "Micro",
  7459. height: math.unit(1.5, "inches"),
  7460. },
  7461. {
  7462. name: "Normal",
  7463. height: math.unit(2 + 7 / 12, "feet"),
  7464. default: true
  7465. },
  7466. {
  7467. name: "Macro",
  7468. height: math.unit(85, "feet")
  7469. },
  7470. {
  7471. name: "Megamacro",
  7472. height: math.unit(2.2, "km")
  7473. }
  7474. ]
  7475. ))
  7476. characterMakers.push(() => makeCharacter(
  7477. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7478. {
  7479. front: {
  7480. height: math.unit(5 + 9 / 12, "feet"),
  7481. weight: math.unit(150, "lbs"),
  7482. name: "Front",
  7483. image: {
  7484. source: "./media/characters/coffee/front.svg",
  7485. extra: 3666 / 3032,
  7486. bottom: 0.04
  7487. }
  7488. },
  7489. foot: {
  7490. height: math.unit(1.29, "feet"),
  7491. name: "Foot",
  7492. image: {
  7493. source: "./media/characters/coffee/foot.svg"
  7494. }
  7495. },
  7496. },
  7497. [
  7498. {
  7499. name: "Micro",
  7500. height: math.unit(2, "inches"),
  7501. },
  7502. {
  7503. name: "Normal",
  7504. height: math.unit(5 + 9 / 12, "feet"),
  7505. default: true
  7506. },
  7507. {
  7508. name: "Macro",
  7509. height: math.unit(800, "feet")
  7510. },
  7511. {
  7512. name: "Megamacro",
  7513. height: math.unit(25, "miles")
  7514. }
  7515. ]
  7516. ))
  7517. characterMakers.push(() => makeCharacter(
  7518. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7519. {
  7520. front: {
  7521. height: math.unit(6, "feet"),
  7522. weight: math.unit(200, "lbs"),
  7523. name: "Front",
  7524. image: {
  7525. source: "./media/characters/chari-gal/front.svg",
  7526. extra: 1568 / 1385,
  7527. bottom: 0.047
  7528. }
  7529. },
  7530. gigantamax: {
  7531. height: math.unit(6 * 16, "feet"),
  7532. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7533. name: "Gigantamax",
  7534. image: {
  7535. source: "./media/characters/chari-gal/gigantamax.svg",
  7536. extra: 1124 / 888,
  7537. bottom: 0.03
  7538. }
  7539. },
  7540. },
  7541. [
  7542. {
  7543. name: "Normal",
  7544. height: math.unit(5 + 7 / 12, "feet")
  7545. },
  7546. {
  7547. name: "Macro",
  7548. height: math.unit(200, "feet"),
  7549. default: true
  7550. }
  7551. ]
  7552. ))
  7553. characterMakers.push(() => makeCharacter(
  7554. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7555. {
  7556. front: {
  7557. height: math.unit(6, "feet"),
  7558. weight: math.unit(150, "lbs"),
  7559. name: "Front",
  7560. image: {
  7561. source: "./media/characters/nova/front.svg",
  7562. extra: 5000 / 4722,
  7563. bottom: 0.02
  7564. }
  7565. }
  7566. },
  7567. [
  7568. {
  7569. name: "Micro-",
  7570. height: math.unit(0.8, "inches")
  7571. },
  7572. {
  7573. name: "Micro",
  7574. height: math.unit(2, "inches"),
  7575. default: true
  7576. },
  7577. ]
  7578. ))
  7579. characterMakers.push(() => makeCharacter(
  7580. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7581. {
  7582. front: {
  7583. height: math.unit(3 + 1 / 12, "feet"),
  7584. weight: math.unit(21.7, "lbs"),
  7585. name: "Front",
  7586. image: {
  7587. source: "./media/characters/argent/front.svg",
  7588. extra: 1471 / 1331,
  7589. bottom: 100.8 / 1575.5
  7590. }
  7591. }
  7592. },
  7593. [
  7594. {
  7595. name: "Micro",
  7596. height: math.unit(2, "inches")
  7597. },
  7598. {
  7599. name: "Normal",
  7600. height: math.unit(3 + 1 / 12, "feet"),
  7601. default: true
  7602. },
  7603. {
  7604. name: "Macro",
  7605. height: math.unit(120, "feet")
  7606. },
  7607. ]
  7608. ))
  7609. characterMakers.push(() => makeCharacter(
  7610. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7611. {
  7612. lamp: {
  7613. height: math.unit(7 * 1559 / 989, "feet"),
  7614. name: "Magic Lamp",
  7615. image: {
  7616. source: "./media/characters/mira-al-cul/lamp.svg",
  7617. extra: 1617 / 1559
  7618. }
  7619. },
  7620. front: {
  7621. height: math.unit(7, "feet"),
  7622. name: "Front",
  7623. image: {
  7624. source: "./media/characters/mira-al-cul/front.svg",
  7625. extra: 1044 / 990
  7626. }
  7627. },
  7628. },
  7629. [
  7630. {
  7631. name: "Heavily Restricted",
  7632. height: math.unit(7 * 1559 / 989, "feet")
  7633. },
  7634. {
  7635. name: "Freshly Freed",
  7636. height: math.unit(50 * 1559 / 989, "feet")
  7637. },
  7638. {
  7639. name: "World Encompassing",
  7640. height: math.unit(10000 * 1559 / 989, "miles")
  7641. },
  7642. {
  7643. name: "Galactic",
  7644. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7645. },
  7646. {
  7647. name: "Palmed Universe",
  7648. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7649. default: true
  7650. },
  7651. {
  7652. name: "Multiversal Matriarch",
  7653. height: math.unit(8.87e10, "yottameters")
  7654. },
  7655. {
  7656. name: "Void Mother",
  7657. height: math.unit(3.14e110, "yottaparsecs")
  7658. },
  7659. {
  7660. name: "Toying with Transcendence",
  7661. height: math.unit(1e307, "meters")
  7662. },
  7663. ]
  7664. ))
  7665. characterMakers.push(() => makeCharacter(
  7666. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7667. {
  7668. front: {
  7669. height: math.unit(17 + 1 / 12, "feet"),
  7670. weight: math.unit(476.2 * 5, "lbs"),
  7671. name: "Front",
  7672. image: {
  7673. source: "./media/characters/kuro-shi-uchū/front.svg",
  7674. extra: 2329 / 1835,
  7675. bottom: 0.02
  7676. }
  7677. },
  7678. },
  7679. [
  7680. {
  7681. name: "Micro",
  7682. height: math.unit(2, "inches")
  7683. },
  7684. {
  7685. name: "Normal",
  7686. height: math.unit(12, "meters")
  7687. },
  7688. {
  7689. name: "Planetary",
  7690. height: math.unit(0.00929, "AU"),
  7691. default: true
  7692. },
  7693. {
  7694. name: "Universal",
  7695. height: math.unit(20, "gigaparsecs")
  7696. },
  7697. ]
  7698. ))
  7699. characterMakers.push(() => makeCharacter(
  7700. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7701. {
  7702. front: {
  7703. height: math.unit(5 + 2 / 12, "feet"),
  7704. weight: math.unit(120, "lbs"),
  7705. name: "Front",
  7706. image: {
  7707. source: "./media/characters/katherine/front.svg",
  7708. extra: 2075 / 1969
  7709. }
  7710. },
  7711. dress: {
  7712. height: math.unit(5 + 2 / 12, "feet"),
  7713. weight: math.unit(120, "lbs"),
  7714. name: "Dress",
  7715. image: {
  7716. source: "./media/characters/katherine/dress.svg",
  7717. extra: 2258 / 2064
  7718. }
  7719. },
  7720. },
  7721. [
  7722. {
  7723. name: "Micro",
  7724. height: math.unit(1, "inches"),
  7725. default: true
  7726. },
  7727. {
  7728. name: "Normal",
  7729. height: math.unit(5 + 2 / 12, "feet")
  7730. },
  7731. {
  7732. name: "Macro",
  7733. height: math.unit(100, "meters")
  7734. },
  7735. {
  7736. name: "Megamacro",
  7737. height: math.unit(80, "miles")
  7738. },
  7739. ]
  7740. ))
  7741. characterMakers.push(() => makeCharacter(
  7742. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7743. {
  7744. front: {
  7745. height: math.unit(7 + 8 / 12, "feet"),
  7746. weight: math.unit(250, "lbs"),
  7747. name: "Front",
  7748. image: {
  7749. source: "./media/characters/yevis/front.svg",
  7750. extra: 1938 / 1755
  7751. }
  7752. }
  7753. },
  7754. [
  7755. {
  7756. name: "Mortal",
  7757. height: math.unit(7 + 8 / 12, "feet")
  7758. },
  7759. {
  7760. name: "Battle",
  7761. height: math.unit(25 + 11 / 12, "feet")
  7762. },
  7763. {
  7764. name: "Wrath",
  7765. height: math.unit(1654 + 11 / 12, "feet")
  7766. },
  7767. {
  7768. name: "Planet Destroyer",
  7769. height: math.unit(12000, "miles")
  7770. },
  7771. {
  7772. name: "Galaxy Conqueror",
  7773. height: math.unit(1.45, "zettameters"),
  7774. default: true
  7775. },
  7776. {
  7777. name: "Universal War",
  7778. height: math.unit(184, "gigaparsecs")
  7779. },
  7780. {
  7781. name: "Eternity War",
  7782. height: math.unit(1.98e55, "yottaparsecs")
  7783. },
  7784. ]
  7785. ))
  7786. characterMakers.push(() => makeCharacter(
  7787. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7788. {
  7789. front: {
  7790. height: math.unit(5 + 8 / 12, "feet"),
  7791. weight: math.unit(63, "kg"),
  7792. name: "Front",
  7793. image: {
  7794. source: "./media/characters/xavier/front.svg",
  7795. extra: 944 / 883
  7796. }
  7797. },
  7798. frontStretch: {
  7799. height: math.unit(5 + 8 / 12, "feet"),
  7800. weight: math.unit(63, "kg"),
  7801. name: "Stretching",
  7802. image: {
  7803. source: "./media/characters/xavier/front-stretch.svg",
  7804. extra: 962 / 820
  7805. }
  7806. },
  7807. },
  7808. [
  7809. {
  7810. name: "Normal",
  7811. height: math.unit(5 + 8 / 12, "feet")
  7812. },
  7813. {
  7814. name: "Macro",
  7815. height: math.unit(100, "meters"),
  7816. default: true
  7817. },
  7818. {
  7819. name: "McLargeHuge",
  7820. height: math.unit(10, "miles")
  7821. },
  7822. ]
  7823. ))
  7824. characterMakers.push(() => makeCharacter(
  7825. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7826. {
  7827. front: {
  7828. height: math.unit(5 + 5 / 12, "feet"),
  7829. weight: math.unit(150, "lb"),
  7830. name: "Front",
  7831. image: {
  7832. source: "./media/characters/joshii/front.svg"
  7833. }
  7834. },
  7835. foot: {
  7836. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7837. name: "Foot",
  7838. image: {
  7839. source: "./media/characters/joshii/foot.svg"
  7840. }
  7841. },
  7842. },
  7843. [
  7844. {
  7845. name: "Micro",
  7846. height: math.unit(2, "inches")
  7847. },
  7848. {
  7849. name: "Normal",
  7850. height: math.unit(5 + 5 / 12, "feet"),
  7851. default: true
  7852. },
  7853. {
  7854. name: "Macro",
  7855. height: math.unit(785, "feet")
  7856. },
  7857. {
  7858. name: "Megamacro",
  7859. height: math.unit(24.5, "miles")
  7860. },
  7861. ]
  7862. ))
  7863. characterMakers.push(() => makeCharacter(
  7864. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  7865. {
  7866. front: {
  7867. height: math.unit(6, "feet"),
  7868. weight: math.unit(150, "lb"),
  7869. name: "Front",
  7870. image: {
  7871. source: "./media/characters/goddess-elizabeth/front.svg",
  7872. extra: 1800 / 1525,
  7873. bottom: 0.005
  7874. }
  7875. },
  7876. foot: {
  7877. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7878. name: "Foot",
  7879. image: {
  7880. source: "./media/characters/goddess-elizabeth/foot.svg"
  7881. }
  7882. },
  7883. mouth: {
  7884. height: math.unit(6, "feet"),
  7885. name: "Mouth",
  7886. image: {
  7887. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7888. }
  7889. },
  7890. },
  7891. [
  7892. {
  7893. name: "Micro",
  7894. height: math.unit(12, "feet")
  7895. },
  7896. {
  7897. name: "Normal",
  7898. height: math.unit(80, "miles"),
  7899. default: true
  7900. },
  7901. {
  7902. name: "Macro",
  7903. height: math.unit(15000, "parsecs")
  7904. },
  7905. ]
  7906. ))
  7907. characterMakers.push(() => makeCharacter(
  7908. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  7909. {
  7910. front: {
  7911. height: math.unit(5 + 9 / 12, "feet"),
  7912. weight: math.unit(144, "lb"),
  7913. name: "Front",
  7914. image: {
  7915. source: "./media/characters/kara/front.svg"
  7916. }
  7917. },
  7918. feet: {
  7919. height: math.unit(6 / 6.765, "feet"),
  7920. name: "Kara's Feet",
  7921. rename: true,
  7922. image: {
  7923. source: "./media/characters/kara/feet.svg"
  7924. }
  7925. },
  7926. },
  7927. [
  7928. {
  7929. name: "Normal",
  7930. height: math.unit(5 + 9 / 12, "feet")
  7931. },
  7932. {
  7933. name: "Macro",
  7934. height: math.unit(174, "feet"),
  7935. default: true
  7936. },
  7937. ]
  7938. ))
  7939. characterMakers.push(() => makeCharacter(
  7940. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  7941. {
  7942. front: {
  7943. height: math.unit(18, "feet"),
  7944. weight: math.unit(4050, "lb"),
  7945. name: "Front",
  7946. image: {
  7947. source: "./media/characters/tyrone/front.svg",
  7948. extra: 2520 / 2402,
  7949. bottom: 0.025
  7950. }
  7951. },
  7952. },
  7953. [
  7954. {
  7955. name: "Normal",
  7956. height: math.unit(18, "feet"),
  7957. default: true
  7958. },
  7959. {
  7960. name: "Macro",
  7961. height: math.unit(300, "feet")
  7962. },
  7963. ]
  7964. ))
  7965. characterMakers.push(() => makeCharacter(
  7966. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  7967. {
  7968. front: {
  7969. height: math.unit(7 + 8 / 12, "feet"),
  7970. weight: math.unit(120, "lb"),
  7971. name: "Front",
  7972. image: {
  7973. source: "./media/characters/danny/front.svg",
  7974. extra: 1490 / 1350
  7975. }
  7976. },
  7977. back: {
  7978. height: math.unit(7 + 8 / 12, "feet"),
  7979. weight: math.unit(120, "lb"),
  7980. name: "Back",
  7981. image: {
  7982. source: "./media/characters/danny/back.svg",
  7983. extra: 1490 / 1350
  7984. }
  7985. },
  7986. },
  7987. [
  7988. {
  7989. name: "Normal",
  7990. height: math.unit(7 + 8 / 12, "feet"),
  7991. default: true
  7992. },
  7993. ]
  7994. ))
  7995. characterMakers.push(() => makeCharacter(
  7996. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  7997. {
  7998. front: {
  7999. height: math.unit(3.5, "inches"),
  8000. weight: math.unit(19, "grams"),
  8001. name: "Front",
  8002. image: {
  8003. source: "./media/characters/mallow/front.svg",
  8004. extra: 471 / 431
  8005. }
  8006. },
  8007. back: {
  8008. height: math.unit(3.5, "inches"),
  8009. weight: math.unit(19, "grams"),
  8010. name: "Back",
  8011. image: {
  8012. source: "./media/characters/mallow/back.svg",
  8013. extra: 471 / 431
  8014. }
  8015. },
  8016. },
  8017. [
  8018. {
  8019. name: "Normal",
  8020. height: math.unit(3.5, "inches"),
  8021. default: true
  8022. },
  8023. ]
  8024. ))
  8025. characterMakers.push(() => makeCharacter(
  8026. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8027. {
  8028. front: {
  8029. height: math.unit(9, "feet"),
  8030. weight: math.unit(230, "kg"),
  8031. name: "Front",
  8032. image: {
  8033. source: "./media/characters/starry-aqua/front.svg"
  8034. }
  8035. },
  8036. back: {
  8037. height: math.unit(9, "feet"),
  8038. weight: math.unit(230, "kg"),
  8039. name: "Back",
  8040. image: {
  8041. source: "./media/characters/starry-aqua/back.svg"
  8042. }
  8043. },
  8044. hand: {
  8045. height: math.unit(9 * 0.1168, "feet"),
  8046. name: "Hand",
  8047. image: {
  8048. source: "./media/characters/starry-aqua/hand.svg"
  8049. }
  8050. },
  8051. foot: {
  8052. height: math.unit(9 * 0.18, "feet"),
  8053. name: "Foot",
  8054. image: {
  8055. source: "./media/characters/starry-aqua/foot.svg"
  8056. }
  8057. }
  8058. },
  8059. [
  8060. {
  8061. name: "Micro",
  8062. height: math.unit(3, "inches")
  8063. },
  8064. {
  8065. name: "Normal",
  8066. height: math.unit(9, "feet")
  8067. },
  8068. {
  8069. name: "Macro",
  8070. height: math.unit(300, "feet"),
  8071. default: true
  8072. },
  8073. {
  8074. name: "Megamacro",
  8075. height: math.unit(3200, "feet")
  8076. }
  8077. ]
  8078. ))
  8079. characterMakers.push(() => makeCharacter(
  8080. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8081. {
  8082. front: {
  8083. height: math.unit(6, "feet"),
  8084. weight: math.unit(230, "lb"),
  8085. name: "Front",
  8086. image: {
  8087. source: "./media/characters/luka/front.svg",
  8088. extra: 1,
  8089. bottom: 0.025
  8090. }
  8091. },
  8092. },
  8093. [
  8094. {
  8095. name: "Normal",
  8096. height: math.unit(12 + 8 / 12, "feet"),
  8097. default: true
  8098. },
  8099. {
  8100. name: "Minimacro",
  8101. height: math.unit(20, "feet")
  8102. },
  8103. {
  8104. name: "Macro",
  8105. height: math.unit(250, "feet")
  8106. },
  8107. {
  8108. name: "Megamacro",
  8109. height: math.unit(5, "miles")
  8110. },
  8111. {
  8112. name: "Gigamacro",
  8113. height: math.unit(8000, "miles")
  8114. },
  8115. ]
  8116. ))
  8117. characterMakers.push(() => makeCharacter(
  8118. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8119. {
  8120. front: {
  8121. height: math.unit(6, "feet"),
  8122. weight: math.unit(150, "lb"),
  8123. name: "Front",
  8124. image: {
  8125. source: "./media/characters/natalie-nightring/front.svg",
  8126. extra: 1,
  8127. bottom: 0.06
  8128. }
  8129. },
  8130. },
  8131. [
  8132. {
  8133. name: "Uh Oh",
  8134. height: math.unit(0.1, "mm")
  8135. },
  8136. {
  8137. name: "Small",
  8138. height: math.unit(3, "inches")
  8139. },
  8140. {
  8141. name: "Human Scale",
  8142. height: math.unit(6, "feet")
  8143. },
  8144. {
  8145. name: "Librarian",
  8146. height: math.unit(50, "feet"),
  8147. default: true
  8148. },
  8149. {
  8150. name: "Immense",
  8151. height: math.unit(200, "miles")
  8152. },
  8153. ]
  8154. ))
  8155. characterMakers.push(() => makeCharacter(
  8156. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8157. {
  8158. front: {
  8159. height: math.unit(6, "feet"),
  8160. weight: math.unit(180, "lbs"),
  8161. name: "Front",
  8162. image: {
  8163. source: "./media/characters/danni-rosie/front.svg",
  8164. extra: 1260 / 1128,
  8165. bottom: 0.022
  8166. }
  8167. },
  8168. },
  8169. [
  8170. {
  8171. name: "Micro",
  8172. height: math.unit(2, "inches"),
  8173. default: true
  8174. },
  8175. ]
  8176. ))
  8177. characterMakers.push(() => makeCharacter(
  8178. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8179. {
  8180. front: {
  8181. height: math.unit(5 + 9 / 12, "feet"),
  8182. weight: math.unit(220, "lb"),
  8183. name: "Front",
  8184. image: {
  8185. source: "./media/characters/samantha-kruse/front.svg",
  8186. extra: (985 / 935),
  8187. bottom: 0.03
  8188. }
  8189. },
  8190. frontUndressed: {
  8191. height: math.unit(5 + 9 / 12, "feet"),
  8192. weight: math.unit(220, "lb"),
  8193. name: "Front (Undressed)",
  8194. image: {
  8195. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8196. extra: (973 / 923),
  8197. bottom: 0.025
  8198. }
  8199. },
  8200. fat: {
  8201. height: math.unit(5 + 9 / 12, "feet"),
  8202. weight: math.unit(900, "lb"),
  8203. name: "Front (Fat)",
  8204. image: {
  8205. source: "./media/characters/samantha-kruse/fat.svg",
  8206. extra: 2688 / 2561
  8207. }
  8208. },
  8209. },
  8210. [
  8211. {
  8212. name: "Normal",
  8213. height: math.unit(5 + 9 / 12, "feet"),
  8214. default: true
  8215. }
  8216. ]
  8217. ))
  8218. characterMakers.push(() => makeCharacter(
  8219. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8220. {
  8221. back: {
  8222. height: math.unit(5 + 4 / 12, "feet"),
  8223. weight: math.unit(4963, "lb"),
  8224. name: "Back",
  8225. image: {
  8226. source: "./media/characters/amelia-rosie/back.svg",
  8227. extra: 1113 / 963,
  8228. bottom: 0.01
  8229. }
  8230. },
  8231. },
  8232. [
  8233. {
  8234. name: "Level 0",
  8235. height: math.unit(5 + 4 / 12, "feet")
  8236. },
  8237. {
  8238. name: "Level 1",
  8239. height: math.unit(164597, "feet"),
  8240. default: true
  8241. },
  8242. {
  8243. name: "Level 2",
  8244. height: math.unit(956243, "miles")
  8245. },
  8246. {
  8247. name: "Level 3",
  8248. height: math.unit(29421709423, "miles")
  8249. },
  8250. {
  8251. name: "Level 4",
  8252. height: math.unit(154, "lightyears")
  8253. },
  8254. {
  8255. name: "Level 5",
  8256. height: math.unit(4738272, "lightyears")
  8257. },
  8258. {
  8259. name: "Level 6",
  8260. height: math.unit(145787152896, "lightyears")
  8261. },
  8262. ]
  8263. ))
  8264. characterMakers.push(() => makeCharacter(
  8265. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8266. {
  8267. front: {
  8268. height: math.unit(5 + 11 / 12, "feet"),
  8269. weight: math.unit(65, "kg"),
  8270. name: "Front",
  8271. image: {
  8272. source: "./media/characters/rook-kitara/front.svg",
  8273. extra: 1347 / 1274,
  8274. bottom: 0.005
  8275. }
  8276. },
  8277. },
  8278. [
  8279. {
  8280. name: "Totally Unfair",
  8281. height: math.unit(1.8, "mm")
  8282. },
  8283. {
  8284. name: "Lap Rookie",
  8285. height: math.unit(1.4, "feet")
  8286. },
  8287. {
  8288. name: "Normal",
  8289. height: math.unit(5 + 11 / 12, "feet"),
  8290. default: true
  8291. },
  8292. {
  8293. name: "How Did This Happen",
  8294. height: math.unit(80, "miles")
  8295. }
  8296. ]
  8297. ))
  8298. characterMakers.push(() => makeCharacter(
  8299. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8300. {
  8301. front: {
  8302. height: math.unit(7, "feet"),
  8303. weight: math.unit(300, "lb"),
  8304. name: "Front",
  8305. image: {
  8306. source: "./media/characters/pisces/front.svg",
  8307. extra: 2255 / 2115,
  8308. bottom: 0.03
  8309. }
  8310. },
  8311. back: {
  8312. height: math.unit(7, "feet"),
  8313. weight: math.unit(300, "lb"),
  8314. name: "Back",
  8315. image: {
  8316. source: "./media/characters/pisces/back.svg",
  8317. extra: 2146 / 2055,
  8318. bottom: 0.04
  8319. }
  8320. },
  8321. },
  8322. [
  8323. {
  8324. name: "Normal",
  8325. height: math.unit(7, "feet"),
  8326. default: true
  8327. },
  8328. {
  8329. name: "Swimming Pool",
  8330. height: math.unit(12.2, "meters")
  8331. },
  8332. {
  8333. name: "Olympic Swimming Pool",
  8334. height: math.unit(56.3, "meters")
  8335. },
  8336. {
  8337. name: "Lake Superior",
  8338. height: math.unit(93900, "meters")
  8339. },
  8340. {
  8341. name: "Mediterranean Sea",
  8342. height: math.unit(644457, "meters")
  8343. },
  8344. {
  8345. name: "World's Oceans",
  8346. height: math.unit(4567491, "meters")
  8347. },
  8348. ]
  8349. ))
  8350. characterMakers.push(() => makeCharacter(
  8351. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8352. {
  8353. front: {
  8354. height: math.unit(2.3, "meters"),
  8355. weight: math.unit(120, "kg"),
  8356. name: "Front",
  8357. image: {
  8358. source: "./media/characters/zelas/front.svg"
  8359. }
  8360. },
  8361. side: {
  8362. height: math.unit(2.3, "meters"),
  8363. weight: math.unit(120, "kg"),
  8364. name: "Side",
  8365. image: {
  8366. source: "./media/characters/zelas/side.svg"
  8367. }
  8368. },
  8369. back: {
  8370. height: math.unit(2.3, "meters"),
  8371. weight: math.unit(120, "kg"),
  8372. name: "Back",
  8373. image: {
  8374. source: "./media/characters/zelas/back.svg"
  8375. }
  8376. },
  8377. foot: {
  8378. height: math.unit(1.116, "feet"),
  8379. name: "Foot",
  8380. image: {
  8381. source: "./media/characters/zelas/foot.svg"
  8382. }
  8383. },
  8384. },
  8385. [
  8386. {
  8387. name: "Normal",
  8388. height: math.unit(2.3, "meters")
  8389. },
  8390. {
  8391. name: "Macro",
  8392. height: math.unit(30, "meters"),
  8393. default: true
  8394. },
  8395. ]
  8396. ))
  8397. characterMakers.push(() => makeCharacter(
  8398. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8399. {
  8400. front: {
  8401. height: math.unit(1, "inch"),
  8402. weight: math.unit(0.21, "grams"),
  8403. name: "Front",
  8404. image: {
  8405. source: "./media/characters/talbot/front.svg",
  8406. extra: 594 / 544
  8407. }
  8408. },
  8409. },
  8410. [
  8411. {
  8412. name: "Micro",
  8413. height: math.unit(1, "inch"),
  8414. default: true
  8415. },
  8416. ]
  8417. ))
  8418. characterMakers.push(() => makeCharacter(
  8419. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8420. {
  8421. front: {
  8422. height: math.unit(3 + 3 / 12, "feet"),
  8423. weight: math.unit(51.8, "lb"),
  8424. name: "Front",
  8425. image: {
  8426. source: "./media/characters/fliss/front.svg",
  8427. extra: 840 / 640
  8428. }
  8429. },
  8430. },
  8431. [
  8432. {
  8433. name: "Teeny Tiny",
  8434. height: math.unit(1, "mm")
  8435. },
  8436. {
  8437. name: "Small",
  8438. height: math.unit(1, "inch"),
  8439. default: true
  8440. },
  8441. {
  8442. name: "Standard Sylveon",
  8443. height: math.unit(3 + 3 / 12, "feet")
  8444. },
  8445. {
  8446. name: "Large Nuisance",
  8447. height: math.unit(33, "feet")
  8448. },
  8449. {
  8450. name: "City Filler",
  8451. height: math.unit(3000, "feet")
  8452. },
  8453. {
  8454. name: "New Horizon",
  8455. height: math.unit(6000, "miles")
  8456. },
  8457. ]
  8458. ))
  8459. characterMakers.push(() => makeCharacter(
  8460. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8461. {
  8462. front: {
  8463. height: math.unit(5, "cm"),
  8464. weight: math.unit(1.94, "g"),
  8465. name: "Front",
  8466. image: {
  8467. source: "./media/characters/fleta/front.svg",
  8468. extra: 835 / 803
  8469. }
  8470. },
  8471. back: {
  8472. height: math.unit(5, "cm"),
  8473. weight: math.unit(1.94, "g"),
  8474. name: "Back",
  8475. image: {
  8476. source: "./media/characters/fleta/back.svg",
  8477. extra: 835 / 803
  8478. }
  8479. },
  8480. },
  8481. [
  8482. {
  8483. name: "Micro",
  8484. height: math.unit(5, "cm"),
  8485. default: true
  8486. },
  8487. ]
  8488. ))
  8489. characterMakers.push(() => makeCharacter(
  8490. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8491. {
  8492. front: {
  8493. height: math.unit(6, "feet"),
  8494. weight: math.unit(225, "lb"),
  8495. name: "Front",
  8496. image: {
  8497. source: "./media/characters/dominic/front.svg",
  8498. extra: 1770 / 1620,
  8499. bottom: 0.025
  8500. }
  8501. },
  8502. back: {
  8503. height: math.unit(6, "feet"),
  8504. weight: math.unit(225, "lb"),
  8505. name: "Back",
  8506. image: {
  8507. source: "./media/characters/dominic/back.svg",
  8508. extra: 1745 / 1620,
  8509. bottom: 0.065
  8510. }
  8511. },
  8512. },
  8513. [
  8514. {
  8515. name: "Nano",
  8516. height: math.unit(0.1, "mm")
  8517. },
  8518. {
  8519. name: "Micro-",
  8520. height: math.unit(1, "mm")
  8521. },
  8522. {
  8523. name: "Micro",
  8524. height: math.unit(4, "inches")
  8525. },
  8526. {
  8527. name: "Normal",
  8528. height: math.unit(6 + 4 / 12, "feet"),
  8529. default: true
  8530. },
  8531. {
  8532. name: "Macro",
  8533. height: math.unit(115, "feet")
  8534. },
  8535. {
  8536. name: "Macro+",
  8537. height: math.unit(955, "feet")
  8538. },
  8539. {
  8540. name: "Megamacro",
  8541. height: math.unit(8990, "feet")
  8542. },
  8543. {
  8544. name: "Gigmacro",
  8545. height: math.unit(9310, "miles")
  8546. },
  8547. {
  8548. name: "Teramacro",
  8549. height: math.unit(1567005010, "miles")
  8550. },
  8551. {
  8552. name: "Examacro",
  8553. height: math.unit(1425, "parsecs")
  8554. },
  8555. ]
  8556. ))
  8557. characterMakers.push(() => makeCharacter(
  8558. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8559. {
  8560. front: {
  8561. height: math.unit(400, "feet"),
  8562. weight: math.unit(44444444, "lb"),
  8563. name: "Front",
  8564. image: {
  8565. source: "./media/characters/major-colonel/front.svg"
  8566. }
  8567. },
  8568. back: {
  8569. height: math.unit(400, "feet"),
  8570. weight: math.unit(44444444, "lb"),
  8571. name: "Back",
  8572. image: {
  8573. source: "./media/characters/major-colonel/back.svg"
  8574. }
  8575. },
  8576. },
  8577. [
  8578. {
  8579. name: "Macro",
  8580. height: math.unit(400, "feet"),
  8581. default: true
  8582. },
  8583. ]
  8584. ))
  8585. characterMakers.push(() => makeCharacter(
  8586. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8587. {
  8588. catFront: {
  8589. height: math.unit(6, "feet"),
  8590. weight: math.unit(120, "lb"),
  8591. name: "Front (Cat Side)",
  8592. image: {
  8593. source: "./media/characters/axel-lycan/cat-front.svg",
  8594. extra: 430 / 402,
  8595. bottom: 43 / 472.35
  8596. }
  8597. },
  8598. catBack: {
  8599. height: math.unit(6, "feet"),
  8600. weight: math.unit(120, "lb"),
  8601. name: "Back (Cat Side)",
  8602. image: {
  8603. source: "./media/characters/axel-lycan/cat-back.svg",
  8604. extra: 447 / 419,
  8605. bottom: 23.3 / 469
  8606. }
  8607. },
  8608. wolfFront: {
  8609. height: math.unit(6, "feet"),
  8610. weight: math.unit(120, "lb"),
  8611. name: "Front (Wolf Side)",
  8612. image: {
  8613. source: "./media/characters/axel-lycan/wolf-front.svg",
  8614. extra: 485 / 456,
  8615. bottom: 19 / 504
  8616. }
  8617. },
  8618. wolfBack: {
  8619. height: math.unit(6, "feet"),
  8620. weight: math.unit(120, "lb"),
  8621. name: "Back (Wolf Side)",
  8622. image: {
  8623. source: "./media/characters/axel-lycan/wolf-back.svg",
  8624. extra: 475 / 438,
  8625. bottom: 39.2 / 514
  8626. }
  8627. },
  8628. },
  8629. [
  8630. {
  8631. name: "Macro",
  8632. height: math.unit(1, "km"),
  8633. default: true
  8634. },
  8635. ]
  8636. ))
  8637. characterMakers.push(() => makeCharacter(
  8638. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8639. {
  8640. front: {
  8641. height: math.unit(5 + 9 / 12, "feet"),
  8642. weight: math.unit(175, "lb"),
  8643. name: "Front",
  8644. image: {
  8645. source: "./media/characters/vanrel-hyena/front.svg",
  8646. extra: 1086 / 1010,
  8647. bottom: 0.04
  8648. }
  8649. },
  8650. },
  8651. [
  8652. {
  8653. name: "Normal",
  8654. height: math.unit(5 + 9 / 12, "feet"),
  8655. default: true
  8656. },
  8657. ]
  8658. ))
  8659. characterMakers.push(() => makeCharacter(
  8660. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8661. {
  8662. front: {
  8663. height: math.unit(6, "feet"),
  8664. weight: math.unit(103, "lb"),
  8665. name: "Front",
  8666. image: {
  8667. source: "./media/characters/abbott-absol/front.svg",
  8668. extra: 2010 / 1842
  8669. }
  8670. },
  8671. },
  8672. [
  8673. {
  8674. name: "Megamicro",
  8675. height: math.unit(0.1, "mm")
  8676. },
  8677. {
  8678. name: "Micro",
  8679. height: math.unit(1, "inch")
  8680. },
  8681. {
  8682. name: "Normal",
  8683. height: math.unit(6, "feet"),
  8684. default: true
  8685. },
  8686. ]
  8687. ))
  8688. characterMakers.push(() => makeCharacter(
  8689. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8690. {
  8691. front: {
  8692. height: math.unit(6, "feet"),
  8693. weight: math.unit(264, "lb"),
  8694. name: "Front",
  8695. image: {
  8696. source: "./media/characters/hector/front.svg",
  8697. extra: 2280 / 2130,
  8698. bottom: 0.07
  8699. }
  8700. },
  8701. },
  8702. [
  8703. {
  8704. name: "Normal",
  8705. height: math.unit(12.25, "foot"),
  8706. default: true
  8707. },
  8708. {
  8709. name: "Macro",
  8710. height: math.unit(160, "feet")
  8711. },
  8712. ]
  8713. ))
  8714. characterMakers.push(() => makeCharacter(
  8715. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8716. {
  8717. front: {
  8718. height: math.unit(6, "feet"),
  8719. weight: math.unit(150, "lb"),
  8720. name: "Front",
  8721. image: {
  8722. source: "./media/characters/sal/front.svg",
  8723. extra: 1846 / 1699,
  8724. bottom: 0.04
  8725. }
  8726. },
  8727. },
  8728. [
  8729. {
  8730. name: "Megamacro",
  8731. height: math.unit(10, "miles"),
  8732. default: true
  8733. },
  8734. ]
  8735. ))
  8736. characterMakers.push(() => makeCharacter(
  8737. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8738. {
  8739. front: {
  8740. height: math.unit(3, "meters"),
  8741. weight: math.unit(450, "kg"),
  8742. name: "front",
  8743. image: {
  8744. source: "./media/characters/ranger/front.svg",
  8745. extra: 2401 / 2243,
  8746. bottom: 0.05
  8747. }
  8748. },
  8749. },
  8750. [
  8751. {
  8752. name: "Normal",
  8753. height: math.unit(3, "meters"),
  8754. default: true
  8755. },
  8756. ]
  8757. ))
  8758. characterMakers.push(() => makeCharacter(
  8759. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8760. {
  8761. front: {
  8762. height: math.unit(14, "feet"),
  8763. weight: math.unit(800, "kg"),
  8764. name: "Front",
  8765. image: {
  8766. source: "./media/characters/theresa/front.svg",
  8767. extra: 3575 / 3346,
  8768. bottom: 0.03
  8769. }
  8770. },
  8771. },
  8772. [
  8773. {
  8774. name: "Normal",
  8775. height: math.unit(14, "feet"),
  8776. default: true
  8777. },
  8778. ]
  8779. ))
  8780. characterMakers.push(() => makeCharacter(
  8781. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8782. {
  8783. front: {
  8784. height: math.unit(6, "feet"),
  8785. weight: math.unit(3, "kg"),
  8786. name: "Front",
  8787. image: {
  8788. source: "./media/characters/ine/front.svg",
  8789. extra: 678 / 539,
  8790. bottom: 0.023
  8791. }
  8792. },
  8793. },
  8794. [
  8795. {
  8796. name: "Normal",
  8797. height: math.unit(2.265, "feet"),
  8798. default: true
  8799. },
  8800. ]
  8801. ))
  8802. characterMakers.push(() => makeCharacter(
  8803. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8804. {
  8805. front: {
  8806. height: math.unit(5, "feet"),
  8807. weight: math.unit(30, "kg"),
  8808. name: "Front",
  8809. image: {
  8810. source: "./media/characters/vial/front.svg",
  8811. extra: 1365 / 1277,
  8812. bottom: 0.04
  8813. }
  8814. },
  8815. },
  8816. [
  8817. {
  8818. name: "Normal",
  8819. height: math.unit(5, "feet"),
  8820. default: true
  8821. },
  8822. ]
  8823. ))
  8824. characterMakers.push(() => makeCharacter(
  8825. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8826. {
  8827. side: {
  8828. height: math.unit(3.4, "meters"),
  8829. weight: math.unit(1000, "lb"),
  8830. name: "Side",
  8831. image: {
  8832. source: "./media/characters/rovoska/side.svg",
  8833. extra: 4403 / 1515
  8834. }
  8835. },
  8836. },
  8837. [
  8838. {
  8839. name: "Normal",
  8840. height: math.unit(3.4, "meters"),
  8841. default: true
  8842. },
  8843. ]
  8844. ))
  8845. characterMakers.push(() => makeCharacter(
  8846. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8847. {
  8848. front: {
  8849. height: math.unit(8, "feet"),
  8850. weight: math.unit(315, "lb"),
  8851. name: "Front",
  8852. image: {
  8853. source: "./media/characters/gunner-rotthbauer/front.svg"
  8854. }
  8855. },
  8856. back: {
  8857. height: math.unit(8, "feet"),
  8858. weight: math.unit(315, "lb"),
  8859. name: "Back",
  8860. image: {
  8861. source: "./media/characters/gunner-rotthbauer/back.svg"
  8862. }
  8863. },
  8864. },
  8865. [
  8866. {
  8867. name: "Micro",
  8868. height: math.unit(3.5, "inches")
  8869. },
  8870. {
  8871. name: "Normal",
  8872. height: math.unit(8, "feet"),
  8873. default: true
  8874. },
  8875. {
  8876. name: "Macro",
  8877. height: math.unit(250, "feet")
  8878. },
  8879. {
  8880. name: "Megamacro",
  8881. height: math.unit(1, "AU")
  8882. },
  8883. ]
  8884. ))
  8885. characterMakers.push(() => makeCharacter(
  8886. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8887. {
  8888. front: {
  8889. height: math.unit(5 + 5 / 12, "feet"),
  8890. weight: math.unit(140, "lb"),
  8891. name: "Front",
  8892. image: {
  8893. source: "./media/characters/allatia/front.svg",
  8894. extra: 1227 / 1180,
  8895. bottom: 0.027
  8896. }
  8897. },
  8898. },
  8899. [
  8900. {
  8901. name: "Normal",
  8902. height: math.unit(5 + 5 / 12, "feet")
  8903. },
  8904. {
  8905. name: "Macro",
  8906. height: math.unit(250, "feet"),
  8907. default: true
  8908. },
  8909. {
  8910. name: "Megamacro",
  8911. height: math.unit(8, "miles")
  8912. }
  8913. ]
  8914. ))
  8915. characterMakers.push(() => makeCharacter(
  8916. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  8917. {
  8918. front: {
  8919. height: math.unit(6, "feet"),
  8920. weight: math.unit(120, "lb"),
  8921. name: "Front",
  8922. image: {
  8923. source: "./media/characters/tene/front.svg",
  8924. extra: 1728 / 1578,
  8925. bottom: 0.022
  8926. }
  8927. },
  8928. stomping: {
  8929. height: math.unit(2.025, "meters"),
  8930. weight: math.unit(120, "lb"),
  8931. name: "Stomping",
  8932. image: {
  8933. source: "./media/characters/tene/stomping.svg",
  8934. extra: 938 / 873,
  8935. bottom: 0.01
  8936. }
  8937. },
  8938. sitting: {
  8939. height: math.unit(1, "meter"),
  8940. weight: math.unit(120, "lb"),
  8941. name: "Sitting",
  8942. image: {
  8943. source: "./media/characters/tene/sitting.svg",
  8944. extra: 437 / 415,
  8945. bottom: 0.1
  8946. }
  8947. },
  8948. feral: {
  8949. height: math.unit(3.9, "feet"),
  8950. weight: math.unit(250, "lb"),
  8951. name: "Feral",
  8952. image: {
  8953. source: "./media/characters/tene/feral.svg",
  8954. extra: 717 / 458,
  8955. bottom: 0.179
  8956. }
  8957. },
  8958. },
  8959. [
  8960. {
  8961. name: "Normal",
  8962. height: math.unit(6, "feet")
  8963. },
  8964. {
  8965. name: "Macro",
  8966. height: math.unit(300, "feet"),
  8967. default: true
  8968. },
  8969. {
  8970. name: "Megamacro",
  8971. height: math.unit(5, "miles")
  8972. },
  8973. ]
  8974. ))
  8975. characterMakers.push(() => makeCharacter(
  8976. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  8977. {
  8978. side: {
  8979. height: math.unit(6, "feet"),
  8980. name: "Side",
  8981. image: {
  8982. source: "./media/characters/evander/side.svg",
  8983. extra: 877 / 477
  8984. }
  8985. },
  8986. },
  8987. [
  8988. {
  8989. name: "Normal",
  8990. height: math.unit(0.83, "meters"),
  8991. default: true
  8992. },
  8993. ]
  8994. ))
  8995. characterMakers.push(() => makeCharacter(
  8996. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  8997. {
  8998. front: {
  8999. height: math.unit(12, "feet"),
  9000. weight: math.unit(1000, "lb"),
  9001. name: "Front",
  9002. image: {
  9003. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9004. extra: 1762 / 1611
  9005. }
  9006. },
  9007. back: {
  9008. height: math.unit(12, "feet"),
  9009. weight: math.unit(1000, "lb"),
  9010. name: "Back",
  9011. image: {
  9012. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9013. extra: 1762 / 1611
  9014. }
  9015. },
  9016. },
  9017. [
  9018. {
  9019. name: "Normal",
  9020. height: math.unit(12, "feet"),
  9021. default: true
  9022. },
  9023. {
  9024. name: "Kaiju",
  9025. height: math.unit(150, "feet")
  9026. },
  9027. ]
  9028. ))
  9029. characterMakers.push(() => makeCharacter(
  9030. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9031. {
  9032. front: {
  9033. height: math.unit(6, "feet"),
  9034. weight: math.unit(150, "lb"),
  9035. name: "Front",
  9036. image: {
  9037. source: "./media/characters/zero-alurus/front.svg"
  9038. }
  9039. },
  9040. back: {
  9041. height: math.unit(6, "feet"),
  9042. weight: math.unit(150, "lb"),
  9043. name: "Back",
  9044. image: {
  9045. source: "./media/characters/zero-alurus/back.svg"
  9046. }
  9047. },
  9048. },
  9049. [
  9050. {
  9051. name: "Normal",
  9052. height: math.unit(5 + 10 / 12, "feet")
  9053. },
  9054. {
  9055. name: "Macro",
  9056. height: math.unit(60, "feet"),
  9057. default: true
  9058. },
  9059. {
  9060. name: "Macro+",
  9061. height: math.unit(450, "feet")
  9062. },
  9063. ]
  9064. ))
  9065. characterMakers.push(() => makeCharacter(
  9066. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9067. {
  9068. front: {
  9069. height: math.unit(6, "feet"),
  9070. weight: math.unit(200, "lb"),
  9071. name: "Front",
  9072. image: {
  9073. source: "./media/characters/mega-shi/front.svg",
  9074. extra: 1279 / 1250,
  9075. bottom: 0.02
  9076. }
  9077. },
  9078. back: {
  9079. height: math.unit(6, "feet"),
  9080. weight: math.unit(200, "lb"),
  9081. name: "Back",
  9082. image: {
  9083. source: "./media/characters/mega-shi/back.svg",
  9084. extra: 1279 / 1250,
  9085. bottom: 0.02
  9086. }
  9087. },
  9088. },
  9089. [
  9090. {
  9091. name: "Micro",
  9092. height: math.unit(16 + 6 / 12, "feet")
  9093. },
  9094. {
  9095. name: "Third Dimension",
  9096. height: math.unit(40, "meters")
  9097. },
  9098. {
  9099. name: "Normal",
  9100. height: math.unit(660, "feet"),
  9101. default: true
  9102. },
  9103. {
  9104. name: "Megamacro",
  9105. height: math.unit(10, "miles")
  9106. },
  9107. {
  9108. name: "Planetary Launch",
  9109. height: math.unit(500, "miles")
  9110. },
  9111. {
  9112. name: "Interstellar",
  9113. height: math.unit(1e9, "miles")
  9114. },
  9115. {
  9116. name: "Leaving the Universe",
  9117. height: math.unit(1, "gigaparsec")
  9118. },
  9119. {
  9120. name: "Travelling Universes",
  9121. height: math.unit(30e15, "parsecs")
  9122. },
  9123. ]
  9124. ))
  9125. characterMakers.push(() => makeCharacter(
  9126. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9127. {
  9128. front: {
  9129. height: math.unit(6, "feet"),
  9130. weight: math.unit(150, "lb"),
  9131. name: "Front",
  9132. image: {
  9133. source: "./media/characters/odyssey/front.svg",
  9134. extra: 1782 / 1582,
  9135. bottom: 0.01
  9136. }
  9137. },
  9138. side: {
  9139. height: math.unit(5.7, "feet"),
  9140. weight: math.unit(140, "lb"),
  9141. name: "Side",
  9142. image: {
  9143. source: "./media/characters/odyssey/side.svg",
  9144. extra: 6462 / 5700
  9145. }
  9146. },
  9147. },
  9148. [
  9149. {
  9150. name: "Normal",
  9151. height: math.unit(5 + 4 / 12, "feet")
  9152. },
  9153. {
  9154. name: "Macro",
  9155. height: math.unit(1, "km")
  9156. },
  9157. {
  9158. name: "Megamacro",
  9159. height: math.unit(3000, "km")
  9160. },
  9161. {
  9162. name: "Gigamacro",
  9163. height: math.unit(1, "AU"),
  9164. default: true
  9165. },
  9166. {
  9167. name: "Omniversal",
  9168. height: math.unit(100e14, "lightyears")
  9169. },
  9170. ]
  9171. ))
  9172. characterMakers.push(() => makeCharacter(
  9173. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9174. {
  9175. front: {
  9176. height: math.unit(6, "feet"),
  9177. weight: math.unit(300, "lb"),
  9178. name: "Front",
  9179. image: {
  9180. source: "./media/characters/mekuto/front.svg",
  9181. extra: 921 / 832,
  9182. bottom: 0.03
  9183. }
  9184. },
  9185. hand: {
  9186. height: math.unit(6 / 10.24, "feet"),
  9187. name: "Hand",
  9188. image: {
  9189. source: "./media/characters/mekuto/hand.svg"
  9190. }
  9191. },
  9192. foot: {
  9193. height: math.unit(6 / 5.05, "feet"),
  9194. name: "Foot",
  9195. image: {
  9196. source: "./media/characters/mekuto/foot.svg"
  9197. }
  9198. },
  9199. },
  9200. [
  9201. {
  9202. name: "Minimicro",
  9203. height: math.unit(0.2, "inches")
  9204. },
  9205. {
  9206. name: "Micro",
  9207. height: math.unit(1.5, "inches")
  9208. },
  9209. {
  9210. name: "Normal",
  9211. height: math.unit(5 + 11 / 12, "feet"),
  9212. default: true
  9213. },
  9214. {
  9215. name: "Minimacro",
  9216. height: math.unit(17 + 9 / 12, "feet")
  9217. },
  9218. {
  9219. name: "Macro",
  9220. height: math.unit(177.5, "feet")
  9221. },
  9222. {
  9223. name: "Megamacro",
  9224. height: math.unit(152, "miles")
  9225. },
  9226. ]
  9227. ))
  9228. characterMakers.push(() => makeCharacter(
  9229. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9230. {
  9231. front: {
  9232. height: math.unit(6.5, "inches"),
  9233. weight: math.unit(13, "oz"),
  9234. name: "Front",
  9235. image: {
  9236. source: "./media/characters/dafydd-tomos/front.svg",
  9237. extra: 2990 / 2603,
  9238. bottom: 0.03
  9239. }
  9240. },
  9241. },
  9242. [
  9243. {
  9244. name: "Micro",
  9245. height: math.unit(6.5, "inches"),
  9246. default: true
  9247. },
  9248. ]
  9249. ))
  9250. characterMakers.push(() => makeCharacter(
  9251. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9252. {
  9253. front: {
  9254. height: math.unit(6, "feet"),
  9255. weight: math.unit(150, "lb"),
  9256. name: "Front",
  9257. image: {
  9258. source: "./media/characters/splinter/front.svg",
  9259. extra: 2990 / 2882,
  9260. bottom: 0.04
  9261. }
  9262. },
  9263. back: {
  9264. height: math.unit(6, "feet"),
  9265. weight: math.unit(150, "lb"),
  9266. name: "Back",
  9267. image: {
  9268. source: "./media/characters/splinter/back.svg",
  9269. extra: 2990 / 2882,
  9270. bottom: 0.04
  9271. }
  9272. },
  9273. },
  9274. [
  9275. {
  9276. name: "Normal",
  9277. height: math.unit(6, "feet")
  9278. },
  9279. {
  9280. name: "Macro",
  9281. height: math.unit(230, "meters"),
  9282. default: true
  9283. },
  9284. ]
  9285. ))
  9286. characterMakers.push(() => makeCharacter(
  9287. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9288. {
  9289. front: {
  9290. height: math.unit(4 + 10 / 12, "feet"),
  9291. weight: math.unit(480, "lb"),
  9292. name: "Front",
  9293. image: {
  9294. source: "./media/characters/snow-gabumon/front.svg",
  9295. extra: 1140 / 963,
  9296. bottom: 0.058
  9297. }
  9298. },
  9299. back: {
  9300. height: math.unit(4 + 10 / 12, "feet"),
  9301. weight: math.unit(480, "lb"),
  9302. name: "Back",
  9303. image: {
  9304. source: "./media/characters/snow-gabumon/back.svg",
  9305. extra: 1115 / 962,
  9306. bottom: 0.041
  9307. }
  9308. },
  9309. frontUndresed: {
  9310. height: math.unit(4 + 10 / 12, "feet"),
  9311. weight: math.unit(480, "lb"),
  9312. name: "Front (Undressed)",
  9313. image: {
  9314. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9315. extra: 1061 / 960,
  9316. bottom: 0.045
  9317. }
  9318. },
  9319. },
  9320. [
  9321. {
  9322. name: "Micro",
  9323. height: math.unit(1, "inch")
  9324. },
  9325. {
  9326. name: "Normal",
  9327. height: math.unit(4 + 10 / 12, "feet"),
  9328. default: true
  9329. },
  9330. {
  9331. name: "Macro",
  9332. height: math.unit(200, "feet")
  9333. },
  9334. {
  9335. name: "Megamacro",
  9336. height: math.unit(120, "miles")
  9337. },
  9338. {
  9339. name: "Gigamacro",
  9340. height: math.unit(9800, "miles")
  9341. },
  9342. ]
  9343. ))
  9344. characterMakers.push(() => makeCharacter(
  9345. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9346. {
  9347. front: {
  9348. height: math.unit(1.7, "meters"),
  9349. weight: math.unit(140, "lb"),
  9350. name: "Front",
  9351. image: {
  9352. source: "./media/characters/moody/front.svg",
  9353. extra: 3226 / 3007,
  9354. bottom: 0.087
  9355. }
  9356. },
  9357. },
  9358. [
  9359. {
  9360. name: "Micro",
  9361. height: math.unit(1, "mm")
  9362. },
  9363. {
  9364. name: "Normal",
  9365. height: math.unit(1.7, "meters"),
  9366. default: true
  9367. },
  9368. {
  9369. name: "Macro",
  9370. height: math.unit(80, "meters")
  9371. },
  9372. {
  9373. name: "Macro+",
  9374. height: math.unit(500, "meters")
  9375. },
  9376. ]
  9377. ))
  9378. characterMakers.push(() => makeCharacter(
  9379. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9380. {
  9381. front: {
  9382. height: math.unit(6, "feet"),
  9383. weight: math.unit(150, "lb"),
  9384. name: "Front",
  9385. image: {
  9386. source: "./media/characters/zyas/front.svg",
  9387. extra: 1180 / 1120,
  9388. bottom: 0.045
  9389. }
  9390. },
  9391. },
  9392. [
  9393. {
  9394. name: "Normal",
  9395. height: math.unit(10, "feet"),
  9396. default: true
  9397. },
  9398. {
  9399. name: "Macro",
  9400. height: math.unit(500, "feet")
  9401. },
  9402. {
  9403. name: "Megamacro",
  9404. height: math.unit(5, "miles")
  9405. },
  9406. {
  9407. name: "Teramacro",
  9408. height: math.unit(150000, "miles")
  9409. },
  9410. ]
  9411. ))
  9412. characterMakers.push(() => makeCharacter(
  9413. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9414. {
  9415. front: {
  9416. height: math.unit(6, "feet"),
  9417. weight: math.unit(150, "lb"),
  9418. name: "Front",
  9419. image: {
  9420. source: "./media/characters/cuon/front.svg",
  9421. extra: 1390 / 1320,
  9422. bottom: 0.008
  9423. }
  9424. },
  9425. },
  9426. [
  9427. {
  9428. name: "Micro",
  9429. height: math.unit(3, "inches")
  9430. },
  9431. {
  9432. name: "Normal",
  9433. height: math.unit(18 + 9 / 12, "feet"),
  9434. default: true
  9435. },
  9436. {
  9437. name: "Macro",
  9438. height: math.unit(360, "feet")
  9439. },
  9440. {
  9441. name: "Megamacro",
  9442. height: math.unit(360, "miles")
  9443. },
  9444. ]
  9445. ))
  9446. characterMakers.push(() => makeCharacter(
  9447. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9448. {
  9449. front: {
  9450. height: math.unit(2.4, "meters"),
  9451. weight: math.unit(70, "kg"),
  9452. name: "Front",
  9453. image: {
  9454. source: "./media/characters/nyanuxk/front.svg",
  9455. extra: 1172 / 1084,
  9456. bottom: 0.065
  9457. }
  9458. },
  9459. side: {
  9460. height: math.unit(2.4, "meters"),
  9461. weight: math.unit(70, "kg"),
  9462. name: "Side",
  9463. image: {
  9464. source: "./media/characters/nyanuxk/side.svg",
  9465. extra: 1190 / 1132,
  9466. bottom: 0.007
  9467. }
  9468. },
  9469. back: {
  9470. height: math.unit(2.4, "meters"),
  9471. weight: math.unit(70, "kg"),
  9472. name: "Back",
  9473. image: {
  9474. source: "./media/characters/nyanuxk/back.svg",
  9475. extra: 1200 / 1141,
  9476. bottom: 0.015
  9477. }
  9478. },
  9479. foot: {
  9480. height: math.unit(0.52, "meters"),
  9481. name: "Foot",
  9482. image: {
  9483. source: "./media/characters/nyanuxk/foot.svg"
  9484. }
  9485. },
  9486. },
  9487. [
  9488. {
  9489. name: "Micro",
  9490. height: math.unit(2, "cm")
  9491. },
  9492. {
  9493. name: "Normal",
  9494. height: math.unit(2.4, "meters"),
  9495. default: true
  9496. },
  9497. {
  9498. name: "Smaller Macro",
  9499. height: math.unit(120, "meters")
  9500. },
  9501. {
  9502. name: "Bigger Macro",
  9503. height: math.unit(1.2, "km")
  9504. },
  9505. {
  9506. name: "Megamacro",
  9507. height: math.unit(15, "kilometers")
  9508. },
  9509. {
  9510. name: "Gigamacro",
  9511. height: math.unit(2000, "km")
  9512. },
  9513. {
  9514. name: "Teramacro",
  9515. height: math.unit(500000, "km")
  9516. },
  9517. ]
  9518. ))
  9519. characterMakers.push(() => makeCharacter(
  9520. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9521. {
  9522. side: {
  9523. height: math.unit(6, "feet"),
  9524. name: "Side",
  9525. image: {
  9526. source: "./media/characters/ailbhe/side.svg",
  9527. extra: 757 / 464,
  9528. bottom: 0.041
  9529. }
  9530. },
  9531. },
  9532. [
  9533. {
  9534. name: "Normal",
  9535. height: math.unit(1.07, "meters"),
  9536. default: true
  9537. },
  9538. ]
  9539. ))
  9540. characterMakers.push(() => makeCharacter(
  9541. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9542. {
  9543. front: {
  9544. height: math.unit(6, "feet"),
  9545. weight: math.unit(120, "kg"),
  9546. name: "Front",
  9547. image: {
  9548. source: "./media/characters/zevulfius/front.svg",
  9549. extra: 965 / 903
  9550. }
  9551. },
  9552. side: {
  9553. height: math.unit(6, "feet"),
  9554. weight: math.unit(120, "kg"),
  9555. name: "Side",
  9556. image: {
  9557. source: "./media/characters/zevulfius/side.svg",
  9558. extra: 939 / 900
  9559. }
  9560. },
  9561. back: {
  9562. height: math.unit(6, "feet"),
  9563. weight: math.unit(120, "kg"),
  9564. name: "Back",
  9565. image: {
  9566. source: "./media/characters/zevulfius/back.svg",
  9567. extra: 918 / 854,
  9568. bottom: 0.005
  9569. }
  9570. },
  9571. foot: {
  9572. height: math.unit(6 / 3.72, "feet"),
  9573. name: "Foot",
  9574. image: {
  9575. source: "./media/characters/zevulfius/foot.svg"
  9576. }
  9577. },
  9578. },
  9579. [
  9580. {
  9581. name: "Macro",
  9582. height: math.unit(750, "meters")
  9583. },
  9584. {
  9585. name: "Megamacro",
  9586. height: math.unit(20, "km"),
  9587. default: true
  9588. },
  9589. {
  9590. name: "Gigamacro",
  9591. height: math.unit(2000, "km")
  9592. },
  9593. {
  9594. name: "Teramacro",
  9595. height: math.unit(250000, "km")
  9596. },
  9597. ]
  9598. ))
  9599. characterMakers.push(() => makeCharacter(
  9600. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9601. {
  9602. front: {
  9603. height: math.unit(100, "feet"),
  9604. weight: math.unit(350, "kg"),
  9605. name: "Front",
  9606. image: {
  9607. source: "./media/characters/rikes/front.svg",
  9608. extra: 1565 / 1483,
  9609. bottom: 0.017
  9610. }
  9611. },
  9612. },
  9613. [
  9614. {
  9615. name: "Macro",
  9616. height: math.unit(100, "feet"),
  9617. default: true
  9618. },
  9619. ]
  9620. ))
  9621. characterMakers.push(() => makeCharacter(
  9622. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9623. {
  9624. anthro: {
  9625. height: math.unit(8, "feet"),
  9626. weight: math.unit(120, "kg"),
  9627. name: "Anthro",
  9628. image: {
  9629. source: "./media/characters/adam-silver-mane/anthro.svg",
  9630. extra: 5743 / 5339,
  9631. bottom: 0.07
  9632. }
  9633. },
  9634. taur: {
  9635. height: math.unit(16, "feet"),
  9636. weight: math.unit(1500, "kg"),
  9637. name: "Taur",
  9638. image: {
  9639. source: "./media/characters/adam-silver-mane/taur.svg",
  9640. extra: 1713 / 1571,
  9641. bottom: 0.01
  9642. }
  9643. },
  9644. },
  9645. [
  9646. {
  9647. name: "Normal",
  9648. height: math.unit(8, "feet")
  9649. },
  9650. {
  9651. name: "Minimacro",
  9652. height: math.unit(80, "feet")
  9653. },
  9654. {
  9655. name: "Macro",
  9656. height: math.unit(800, "feet"),
  9657. default: true
  9658. },
  9659. {
  9660. name: "Megamacro",
  9661. height: math.unit(8000, "feet")
  9662. },
  9663. {
  9664. name: "Gigamacro",
  9665. height: math.unit(800, "miles")
  9666. },
  9667. {
  9668. name: "Teramacro",
  9669. height: math.unit(80000, "miles")
  9670. },
  9671. {
  9672. name: "Celestial",
  9673. height: math.unit(8e6, "miles")
  9674. },
  9675. {
  9676. name: "Star Dragon",
  9677. height: math.unit(800000, "parsecs")
  9678. },
  9679. {
  9680. name: "Godly",
  9681. height: math.unit(800, "teraparsecs")
  9682. },
  9683. ]
  9684. ))
  9685. characterMakers.push(() => makeCharacter(
  9686. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9687. {
  9688. front: {
  9689. height: math.unit(6, "feet"),
  9690. weight: math.unit(150, "lb"),
  9691. name: "Front",
  9692. image: {
  9693. source: "./media/characters/ky'owin/front.svg",
  9694. extra: 3888 / 3068,
  9695. bottom: 0.015
  9696. }
  9697. },
  9698. },
  9699. [
  9700. {
  9701. name: "Normal",
  9702. height: math.unit(6 + 8 / 12, "feet")
  9703. },
  9704. {
  9705. name: "Large",
  9706. height: math.unit(68, "feet")
  9707. },
  9708. {
  9709. name: "Macro",
  9710. height: math.unit(132, "feet")
  9711. },
  9712. {
  9713. name: "Macro+",
  9714. height: math.unit(340, "feet")
  9715. },
  9716. {
  9717. name: "Macro++",
  9718. height: math.unit(680, "feet"),
  9719. default: true
  9720. },
  9721. {
  9722. name: "Megamacro",
  9723. height: math.unit(1, "mile")
  9724. },
  9725. {
  9726. name: "Megamacro+",
  9727. height: math.unit(10, "miles")
  9728. },
  9729. ]
  9730. ))
  9731. characterMakers.push(() => makeCharacter(
  9732. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9733. {
  9734. front: {
  9735. height: math.unit(4, "feet"),
  9736. weight: math.unit(50, "lb"),
  9737. name: "Front",
  9738. image: {
  9739. source: "./media/characters/mal/front.svg",
  9740. extra: 785 / 724,
  9741. bottom: 0.07
  9742. }
  9743. },
  9744. },
  9745. [
  9746. {
  9747. name: "Micro",
  9748. height: math.unit(4, "inches")
  9749. },
  9750. {
  9751. name: "Normal",
  9752. height: math.unit(4, "feet"),
  9753. default: true
  9754. },
  9755. {
  9756. name: "Macro",
  9757. height: math.unit(200, "feet")
  9758. },
  9759. ]
  9760. ))
  9761. characterMakers.push(() => makeCharacter(
  9762. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9763. {
  9764. front: {
  9765. height: math.unit(6, "feet"),
  9766. weight: math.unit(150, "lb"),
  9767. name: "Front",
  9768. image: {
  9769. source: "./media/characters/jordan-deware/front.svg",
  9770. extra: 1191 / 1012
  9771. }
  9772. },
  9773. },
  9774. [
  9775. {
  9776. name: "Nano",
  9777. height: math.unit(0.01, "mm")
  9778. },
  9779. {
  9780. name: "Minimicro",
  9781. height: math.unit(1, "mm")
  9782. },
  9783. {
  9784. name: "Micro",
  9785. height: math.unit(0.5, "inches")
  9786. },
  9787. {
  9788. name: "Normal",
  9789. height: math.unit(4, "feet"),
  9790. default: true
  9791. },
  9792. {
  9793. name: "Minimacro",
  9794. height: math.unit(40, "meters")
  9795. },
  9796. {
  9797. name: "Small Macro",
  9798. height: math.unit(400, "meters")
  9799. },
  9800. {
  9801. name: "Macro",
  9802. height: math.unit(4, "miles")
  9803. },
  9804. {
  9805. name: "Megamacro",
  9806. height: math.unit(40, "miles")
  9807. },
  9808. {
  9809. name: "Megamacro+",
  9810. height: math.unit(400, "miles")
  9811. },
  9812. {
  9813. name: "Gigamacro",
  9814. height: math.unit(400000, "miles")
  9815. },
  9816. ]
  9817. ))
  9818. characterMakers.push(() => makeCharacter(
  9819. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9820. {
  9821. side: {
  9822. height: math.unit(6, "feet"),
  9823. weight: math.unit(150, "lb"),
  9824. name: "Side",
  9825. image: {
  9826. source: "./media/characters/kimiko/side.svg",
  9827. extra: 600 / 358
  9828. }
  9829. },
  9830. },
  9831. [
  9832. {
  9833. name: "Normal",
  9834. height: math.unit(15, "feet"),
  9835. default: true
  9836. },
  9837. {
  9838. name: "Macro",
  9839. height: math.unit(220, "feet")
  9840. },
  9841. {
  9842. name: "Macro+",
  9843. height: math.unit(1450, "feet")
  9844. },
  9845. {
  9846. name: "Megamacro",
  9847. height: math.unit(11500, "feet")
  9848. },
  9849. {
  9850. name: "Gigamacro",
  9851. height: math.unit(9500, "miles")
  9852. },
  9853. {
  9854. name: "Teramacro",
  9855. height: math.unit(2208005005, "miles")
  9856. },
  9857. {
  9858. name: "Examacro",
  9859. height: math.unit(2750, "parsecs")
  9860. },
  9861. {
  9862. name: "Zettamacro",
  9863. height: math.unit(101500, "parsecs")
  9864. },
  9865. ]
  9866. ))
  9867. characterMakers.push(() => makeCharacter(
  9868. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9869. {
  9870. front: {
  9871. height: math.unit(6, "feet"),
  9872. weight: math.unit(70, "kg"),
  9873. name: "Front",
  9874. image: {
  9875. source: "./media/characters/andrew-sleepy/front.svg"
  9876. }
  9877. },
  9878. side: {
  9879. height: math.unit(6, "feet"),
  9880. weight: math.unit(70, "kg"),
  9881. name: "Side",
  9882. image: {
  9883. source: "./media/characters/andrew-sleepy/side.svg"
  9884. }
  9885. },
  9886. },
  9887. [
  9888. {
  9889. name: "Micro",
  9890. height: math.unit(1, "mm"),
  9891. default: true
  9892. },
  9893. ]
  9894. ))
  9895. characterMakers.push(() => makeCharacter(
  9896. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  9897. {
  9898. front: {
  9899. height: math.unit(6, "feet"),
  9900. weight: math.unit(150, "lb"),
  9901. name: "Front",
  9902. image: {
  9903. source: "./media/characters/judio/front.svg",
  9904. extra: 1258 / 1110
  9905. }
  9906. },
  9907. },
  9908. [
  9909. {
  9910. name: "Normal",
  9911. height: math.unit(5 + 6 / 12, "feet")
  9912. },
  9913. {
  9914. name: "Macro",
  9915. height: math.unit(1000, "feet"),
  9916. default: true
  9917. },
  9918. {
  9919. name: "Megamacro",
  9920. height: math.unit(10, "miles")
  9921. },
  9922. ]
  9923. ))
  9924. characterMakers.push(() => makeCharacter(
  9925. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  9926. {
  9927. front: {
  9928. height: math.unit(6, "feet"),
  9929. weight: math.unit(68, "kg"),
  9930. name: "Front",
  9931. image: {
  9932. source: "./media/characters/nomaxice/front.svg",
  9933. extra: 1498 / 1073,
  9934. bottom: 0.075
  9935. }
  9936. },
  9937. foot: {
  9938. height: math.unit(1.1, "feet"),
  9939. name: "Foot",
  9940. image: {
  9941. source: "./media/characters/nomaxice/foot.svg"
  9942. }
  9943. },
  9944. },
  9945. [
  9946. {
  9947. name: "Micro",
  9948. height: math.unit(8, "cm")
  9949. },
  9950. {
  9951. name: "Norm",
  9952. height: math.unit(1.82, "m")
  9953. },
  9954. {
  9955. name: "Norm+",
  9956. height: math.unit(8.8, "feet")
  9957. },
  9958. {
  9959. name: "Big",
  9960. height: math.unit(8, "meters"),
  9961. default: true
  9962. },
  9963. {
  9964. name: "Macro",
  9965. height: math.unit(18, "meters")
  9966. },
  9967. {
  9968. name: "Macro+",
  9969. height: math.unit(88, "meters")
  9970. },
  9971. ]
  9972. ))
  9973. characterMakers.push(() => makeCharacter(
  9974. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  9975. {
  9976. front: {
  9977. height: math.unit(12, "feet"),
  9978. weight: math.unit(1.5, "tons"),
  9979. name: "Front",
  9980. image: {
  9981. source: "./media/characters/dydros/front.svg",
  9982. extra: 863 / 800,
  9983. bottom: 0.015
  9984. }
  9985. },
  9986. back: {
  9987. height: math.unit(12, "feet"),
  9988. weight: math.unit(1.5, "tons"),
  9989. name: "Back",
  9990. image: {
  9991. source: "./media/characters/dydros/back.svg",
  9992. extra: 900 / 843,
  9993. bottom: 0.005
  9994. }
  9995. },
  9996. },
  9997. [
  9998. {
  9999. name: "Normal",
  10000. height: math.unit(12, "feet"),
  10001. default: true
  10002. },
  10003. ]
  10004. ))
  10005. characterMakers.push(() => makeCharacter(
  10006. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10007. {
  10008. front: {
  10009. height: math.unit(6, "feet"),
  10010. weight: math.unit(100, "kg"),
  10011. name: "Front",
  10012. image: {
  10013. source: "./media/characters/riggi/front.svg",
  10014. extra: 5787 / 5303
  10015. }
  10016. },
  10017. hyper: {
  10018. height: math.unit(6 * 5 / 3, "feet"),
  10019. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10020. name: "Hyper",
  10021. image: {
  10022. source: "./media/characters/riggi/hyper.svg",
  10023. extra: 3595 / 3485
  10024. }
  10025. },
  10026. },
  10027. [
  10028. {
  10029. name: "Small Macro",
  10030. height: math.unit(50, "feet")
  10031. },
  10032. {
  10033. name: "Default",
  10034. height: math.unit(200, "feet"),
  10035. default: true
  10036. },
  10037. {
  10038. name: "Loom",
  10039. height: math.unit(10000, "feet")
  10040. },
  10041. {
  10042. name: "Cruising Altitude",
  10043. height: math.unit(30000, "feet")
  10044. },
  10045. {
  10046. name: "Megamacro",
  10047. height: math.unit(100, "miles")
  10048. },
  10049. {
  10050. name: "Continent Sized",
  10051. height: math.unit(2800, "miles")
  10052. },
  10053. {
  10054. name: "Earth Sized",
  10055. height: math.unit(8000, "miles")
  10056. },
  10057. ]
  10058. ))
  10059. characterMakers.push(() => makeCharacter(
  10060. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10061. {
  10062. front: {
  10063. height: math.unit(6, "feet"),
  10064. weight: math.unit(250, "lb"),
  10065. name: "Front",
  10066. image: {
  10067. source: "./media/characters/alexi/front.svg",
  10068. extra: 3483 / 3291,
  10069. bottom: 0.04
  10070. }
  10071. },
  10072. back: {
  10073. height: math.unit(6, "feet"),
  10074. weight: math.unit(250, "lb"),
  10075. name: "Back",
  10076. image: {
  10077. source: "./media/characters/alexi/back.svg",
  10078. extra: 3533 / 3356,
  10079. bottom: 0.021
  10080. }
  10081. },
  10082. frontTransforming: {
  10083. height: math.unit(8.58, "feet"),
  10084. weight: math.unit(1300, "lb"),
  10085. name: "Transforming",
  10086. image: {
  10087. source: "./media/characters/alexi/front-transforming.svg",
  10088. extra: 437 / 409,
  10089. bottom: 19 / 458.66
  10090. }
  10091. },
  10092. frontTransformed: {
  10093. height: math.unit(12.5, "feet"),
  10094. weight: math.unit(4000, "lb"),
  10095. name: "Transformed",
  10096. image: {
  10097. source: "./media/characters/alexi/front-transformed.svg",
  10098. extra: 639 / 614,
  10099. bottom: 30.55 / 671
  10100. }
  10101. },
  10102. },
  10103. [
  10104. {
  10105. name: "Normal",
  10106. height: math.unit(3, "meters"),
  10107. default: true
  10108. },
  10109. {
  10110. name: "Minimacro",
  10111. height: math.unit(30, "meters")
  10112. },
  10113. {
  10114. name: "Macro",
  10115. height: math.unit(500, "meters")
  10116. },
  10117. {
  10118. name: "Megamacro",
  10119. height: math.unit(9000, "km")
  10120. },
  10121. {
  10122. name: "Teramacro",
  10123. height: math.unit(384000, "km")
  10124. },
  10125. ]
  10126. ))
  10127. characterMakers.push(() => makeCharacter(
  10128. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10129. {
  10130. front: {
  10131. height: math.unit(6, "feet"),
  10132. weight: math.unit(150, "lb"),
  10133. name: "Front",
  10134. image: {
  10135. source: "./media/characters/kayroo/front.svg",
  10136. extra: 1153 / 1038,
  10137. bottom: 0.06
  10138. }
  10139. },
  10140. foot: {
  10141. height: math.unit(6, "feet"),
  10142. weight: math.unit(150, "lb"),
  10143. name: "Foot",
  10144. image: {
  10145. source: "./media/characters/kayroo/foot.svg"
  10146. }
  10147. },
  10148. },
  10149. [
  10150. {
  10151. name: "Normal",
  10152. height: math.unit(8, "feet"),
  10153. default: true
  10154. },
  10155. {
  10156. name: "Minimacro",
  10157. height: math.unit(250, "feet")
  10158. },
  10159. {
  10160. name: "Macro",
  10161. height: math.unit(2800, "feet")
  10162. },
  10163. {
  10164. name: "Megamacro",
  10165. height: math.unit(5200, "feet")
  10166. },
  10167. {
  10168. name: "Gigamacro",
  10169. height: math.unit(27000, "feet")
  10170. },
  10171. {
  10172. name: "Omega",
  10173. height: math.unit(45000, "feet")
  10174. },
  10175. ]
  10176. ))
  10177. characterMakers.push(() => makeCharacter(
  10178. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10179. {
  10180. front: {
  10181. height: math.unit(18, "feet"),
  10182. weight: math.unit(5800, "lb"),
  10183. name: "Front",
  10184. image: {
  10185. source: "./media/characters/rhys/front.svg",
  10186. extra: 3386 / 3090,
  10187. bottom: 0.07
  10188. }
  10189. },
  10190. },
  10191. [
  10192. {
  10193. name: "Normal",
  10194. height: math.unit(18, "feet"),
  10195. default: true
  10196. },
  10197. {
  10198. name: "Working Size",
  10199. height: math.unit(200, "feet")
  10200. },
  10201. {
  10202. name: "Demolition Size",
  10203. height: math.unit(2000, "feet")
  10204. },
  10205. {
  10206. name: "Maximum Licensed Size",
  10207. height: math.unit(5, "miles")
  10208. },
  10209. {
  10210. name: "Maximum Observed Size",
  10211. height: math.unit(10, "yottameters")
  10212. },
  10213. ]
  10214. ))
  10215. characterMakers.push(() => makeCharacter(
  10216. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10217. {
  10218. front: {
  10219. height: math.unit(6, "feet"),
  10220. weight: math.unit(250, "lb"),
  10221. name: "Front",
  10222. image: {
  10223. source: "./media/characters/toto/front.svg",
  10224. extra: 527 / 479,
  10225. bottom: 0.05
  10226. }
  10227. },
  10228. },
  10229. [
  10230. {
  10231. name: "Micro",
  10232. height: math.unit(3, "feet")
  10233. },
  10234. {
  10235. name: "Normal",
  10236. height: math.unit(10, "feet")
  10237. },
  10238. {
  10239. name: "Macro",
  10240. height: math.unit(150, "feet"),
  10241. default: true
  10242. },
  10243. {
  10244. name: "Megamacro",
  10245. height: math.unit(1200, "feet")
  10246. },
  10247. ]
  10248. ))
  10249. characterMakers.push(() => makeCharacter(
  10250. { name: "King", species: ["lion"], tags: ["anthro"] },
  10251. {
  10252. back: {
  10253. height: math.unit(6, "feet"),
  10254. weight: math.unit(150, "lb"),
  10255. name: "Back",
  10256. image: {
  10257. source: "./media/characters/king/back.svg"
  10258. }
  10259. },
  10260. },
  10261. [
  10262. {
  10263. name: "Micro",
  10264. height: math.unit(2, "inches")
  10265. },
  10266. {
  10267. name: "Normal",
  10268. height: math.unit(8, "feet")
  10269. },
  10270. {
  10271. name: "Macro",
  10272. height: math.unit(200, "feet"),
  10273. default: true
  10274. },
  10275. {
  10276. name: "Megamacro",
  10277. height: math.unit(50, "miles")
  10278. },
  10279. ]
  10280. ))
  10281. characterMakers.push(() => makeCharacter(
  10282. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10283. {
  10284. anthro: {
  10285. height: math.unit(6 + 5 / 12, "feet"),
  10286. weight: math.unit(280, "lb"),
  10287. name: "Anthro",
  10288. image: {
  10289. source: "./media/characters/cordite/anthro.svg",
  10290. extra: 1986 / 1905,
  10291. bottom: 0.025
  10292. }
  10293. },
  10294. feral: {
  10295. height: math.unit(2, "feet"),
  10296. weight: math.unit(90, "lb"),
  10297. name: "Feral",
  10298. image: {
  10299. source: "./media/characters/cordite/feral.svg",
  10300. extra: 1260 / 755,
  10301. bottom: 0.05
  10302. }
  10303. },
  10304. },
  10305. [
  10306. {
  10307. name: "Normal",
  10308. height: math.unit(6 + 5 / 12, "feet"),
  10309. default: true
  10310. },
  10311. ]
  10312. ))
  10313. characterMakers.push(() => makeCharacter(
  10314. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10315. {
  10316. front: {
  10317. height: math.unit(6, "feet"),
  10318. weight: math.unit(150, "lb"),
  10319. name: "Front",
  10320. image: {
  10321. source: "./media/characters/pianostrong/front.svg",
  10322. extra: 6577 / 6254,
  10323. bottom: 0.02
  10324. }
  10325. },
  10326. side: {
  10327. height: math.unit(6, "feet"),
  10328. weight: math.unit(150, "lb"),
  10329. name: "Side",
  10330. image: {
  10331. source: "./media/characters/pianostrong/side.svg",
  10332. extra: 6106 / 5730
  10333. }
  10334. },
  10335. back: {
  10336. height: math.unit(6, "feet"),
  10337. weight: math.unit(150, "lb"),
  10338. name: "Back",
  10339. image: {
  10340. source: "./media/characters/pianostrong/back.svg",
  10341. extra: 6085 / 5733,
  10342. bottom: 0.01
  10343. }
  10344. },
  10345. },
  10346. [
  10347. {
  10348. name: "Macro",
  10349. height: math.unit(100, "feet")
  10350. },
  10351. {
  10352. name: "Macro+",
  10353. height: math.unit(300, "feet"),
  10354. default: true
  10355. },
  10356. {
  10357. name: "Macro++",
  10358. height: math.unit(1000, "feet")
  10359. },
  10360. ]
  10361. ))
  10362. characterMakers.push(() => makeCharacter(
  10363. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10364. {
  10365. front: {
  10366. height: math.unit(6, "feet"),
  10367. weight: math.unit(150, "lb"),
  10368. name: "Front",
  10369. image: {
  10370. source: "./media/characters/kona/front.svg",
  10371. extra: 2960 / 2629,
  10372. bottom: 0.005
  10373. }
  10374. },
  10375. },
  10376. [
  10377. {
  10378. name: "Normal",
  10379. height: math.unit(11 + 8 / 12, "feet")
  10380. },
  10381. {
  10382. name: "Macro",
  10383. height: math.unit(850, "feet"),
  10384. default: true
  10385. },
  10386. {
  10387. name: "Macro+",
  10388. height: math.unit(1.5, "km"),
  10389. default: true
  10390. },
  10391. {
  10392. name: "Megamacro",
  10393. height: math.unit(80, "miles")
  10394. },
  10395. {
  10396. name: "Gigamacro",
  10397. height: math.unit(3500, "miles")
  10398. },
  10399. ]
  10400. ))
  10401. characterMakers.push(() => makeCharacter(
  10402. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10403. {
  10404. side: {
  10405. height: math.unit(1.9, "meters"),
  10406. weight: math.unit(326, "kg"),
  10407. name: "Side",
  10408. image: {
  10409. source: "./media/characters/levi/side.svg",
  10410. extra: 1704 / 1334,
  10411. bottom: 0.02
  10412. }
  10413. },
  10414. },
  10415. [
  10416. {
  10417. name: "Normal",
  10418. height: math.unit(1.9, "meters"),
  10419. default: true
  10420. },
  10421. {
  10422. name: "Macro",
  10423. height: math.unit(20, "meters")
  10424. },
  10425. {
  10426. name: "Macro+",
  10427. height: math.unit(200, "meters")
  10428. },
  10429. {
  10430. name: "Megamacro",
  10431. height: math.unit(2, "km")
  10432. },
  10433. {
  10434. name: "Megamacro+",
  10435. height: math.unit(20, "km")
  10436. },
  10437. {
  10438. name: "Gigamacro",
  10439. height: math.unit(2500, "km")
  10440. },
  10441. {
  10442. name: "Gigamacro+",
  10443. height: math.unit(120000, "km")
  10444. },
  10445. {
  10446. name: "Teramacro",
  10447. height: math.unit(7.77e6, "km")
  10448. },
  10449. ]
  10450. ))
  10451. characterMakers.push(() => makeCharacter(
  10452. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10453. {
  10454. front: {
  10455. height: math.unit(6 + 4 / 12, "feet"),
  10456. weight: math.unit(188, "lb"),
  10457. name: "Front",
  10458. image: {
  10459. source: "./media/characters/bmc/front.svg",
  10460. extra: 1067 / 1022,
  10461. bottom: 0.047
  10462. }
  10463. },
  10464. },
  10465. [
  10466. {
  10467. name: "Human-sized",
  10468. height: math.unit(6 + 4 / 12, "feet")
  10469. },
  10470. {
  10471. name: "Small",
  10472. height: math.unit(250, "feet")
  10473. },
  10474. {
  10475. name: "Normal",
  10476. height: math.unit(1250, "feet"),
  10477. default: true
  10478. },
  10479. {
  10480. name: "Good Day",
  10481. height: math.unit(88, "miles")
  10482. },
  10483. {
  10484. name: "Largest Measured Size",
  10485. height: math.unit(11.2e6, "lightyears")
  10486. },
  10487. ]
  10488. ))
  10489. characterMakers.push(() => makeCharacter(
  10490. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10491. {
  10492. front: {
  10493. height: math.unit(20, "feet"),
  10494. weight: math.unit(2016, "kg"),
  10495. name: "Front",
  10496. image: {
  10497. source: "./media/characters/sven-the-kaiju/front.svg",
  10498. extra: 1479 / 1449,
  10499. bottom: 0.05
  10500. }
  10501. },
  10502. },
  10503. [
  10504. {
  10505. name: "Fairy",
  10506. height: math.unit(6, "inches")
  10507. },
  10508. {
  10509. name: "Normal",
  10510. height: math.unit(20, "feet"),
  10511. default: true
  10512. },
  10513. {
  10514. name: "Rampage",
  10515. height: math.unit(200, "feet")
  10516. },
  10517. {
  10518. name: "Archfey Forest Guardian",
  10519. height: math.unit(1, "mile")
  10520. },
  10521. ]
  10522. ))
  10523. characterMakers.push(() => makeCharacter(
  10524. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10525. {
  10526. front: {
  10527. height: math.unit(4, "meters"),
  10528. weight: math.unit(2, "tons"),
  10529. name: "Front",
  10530. image: {
  10531. source: "./media/characters/marik/front.svg",
  10532. extra: 1057 / 1003,
  10533. bottom: 0.08
  10534. }
  10535. },
  10536. },
  10537. [
  10538. {
  10539. name: "Normal",
  10540. height: math.unit(4, "meters"),
  10541. default: true
  10542. },
  10543. {
  10544. name: "Macro",
  10545. height: math.unit(20, "meters")
  10546. },
  10547. {
  10548. name: "Megamacro",
  10549. height: math.unit(50, "km")
  10550. },
  10551. {
  10552. name: "Gigamacro",
  10553. height: math.unit(100, "km")
  10554. },
  10555. {
  10556. name: "Alpha Macro",
  10557. height: math.unit(7.88e7, "yottameters")
  10558. },
  10559. ]
  10560. ))
  10561. characterMakers.push(() => makeCharacter(
  10562. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10563. {
  10564. front: {
  10565. height: math.unit(6, "feet"),
  10566. weight: math.unit(110, "lb"),
  10567. name: "Front",
  10568. image: {
  10569. source: "./media/characters/mel/front.svg",
  10570. extra: 736 / 617,
  10571. bottom: 0.017
  10572. }
  10573. },
  10574. },
  10575. [
  10576. {
  10577. name: "Pico",
  10578. height: math.unit(3, "pm")
  10579. },
  10580. {
  10581. name: "Nano",
  10582. height: math.unit(3, "nm")
  10583. },
  10584. {
  10585. name: "Micro",
  10586. height: math.unit(0.3, "mm"),
  10587. default: true
  10588. },
  10589. {
  10590. name: "Micro+",
  10591. height: math.unit(3, "mm")
  10592. },
  10593. {
  10594. name: "Normal",
  10595. height: math.unit(5 + 10.5 / 12, "feet")
  10596. },
  10597. ]
  10598. ))
  10599. characterMakers.push(() => makeCharacter(
  10600. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10601. {
  10602. kaiju: {
  10603. height: math.unit(1.75, "meters"),
  10604. weight: math.unit(55, "kg"),
  10605. name: "Kaiju",
  10606. image: {
  10607. source: "./media/characters/lykonous/kaiju.svg",
  10608. extra: 1055 / 946,
  10609. bottom: 0.135
  10610. }
  10611. },
  10612. },
  10613. [
  10614. {
  10615. name: "Normal",
  10616. height: math.unit(2.5, "meters"),
  10617. default: true
  10618. },
  10619. {
  10620. name: "Kaiju Dragon",
  10621. height: math.unit(60, "meters")
  10622. },
  10623. {
  10624. name: "Mega Kaiju",
  10625. height: math.unit(120, "km")
  10626. },
  10627. {
  10628. name: "Giga Kaiju",
  10629. height: math.unit(200, "megameters")
  10630. },
  10631. {
  10632. name: "Terra Kaiju",
  10633. height: math.unit(400, "gigameters")
  10634. },
  10635. {
  10636. name: "Kaiju Dragon God",
  10637. height: math.unit(13000, "exaparsecs")
  10638. },
  10639. ]
  10640. ))
  10641. characterMakers.push(() => makeCharacter(
  10642. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10643. {
  10644. front: {
  10645. height: math.unit(6, "feet"),
  10646. weight: math.unit(150, "lb"),
  10647. name: "Front",
  10648. image: {
  10649. source: "./media/characters/blü/front.svg",
  10650. extra: 1883 / 1564,
  10651. bottom: 0.031
  10652. }
  10653. },
  10654. },
  10655. [
  10656. {
  10657. name: "Normal",
  10658. height: math.unit(13, "feet"),
  10659. default: true
  10660. },
  10661. {
  10662. name: "Big Boi",
  10663. height: math.unit(150, "meters")
  10664. },
  10665. {
  10666. name: "Mini Stomper",
  10667. height: math.unit(300, "meters")
  10668. },
  10669. {
  10670. name: "Macro",
  10671. height: math.unit(1000, "meters")
  10672. },
  10673. {
  10674. name: "Megamacro",
  10675. height: math.unit(11000, "meters")
  10676. },
  10677. {
  10678. name: "Gigamacro",
  10679. height: math.unit(11000, "km")
  10680. },
  10681. {
  10682. name: "Teramacro",
  10683. height: math.unit(420000, "km")
  10684. },
  10685. {
  10686. name: "Examacro",
  10687. height: math.unit(120, "parsecs")
  10688. },
  10689. {
  10690. name: "God Tho",
  10691. height: math.unit(98000000000, "parsecs")
  10692. },
  10693. ]
  10694. ))
  10695. characterMakers.push(() => makeCharacter(
  10696. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10697. {
  10698. taurFront: {
  10699. height: math.unit(6, "feet"),
  10700. weight: math.unit(200, "lb"),
  10701. name: "Taur (Front)",
  10702. image: {
  10703. source: "./media/characters/scales/taur-front.svg",
  10704. extra: 1,
  10705. bottom: 0.05
  10706. }
  10707. },
  10708. taurBack: {
  10709. height: math.unit(6, "feet"),
  10710. weight: math.unit(200, "lb"),
  10711. name: "Taur (Back)",
  10712. image: {
  10713. source: "./media/characters/scales/taur-back.svg",
  10714. extra: 1,
  10715. bottom: 0.08
  10716. }
  10717. },
  10718. anthro: {
  10719. height: math.unit(6 * 7 / 12, "feet"),
  10720. weight: math.unit(100, "lb"),
  10721. name: "Anthro",
  10722. image: {
  10723. source: "./media/characters/scales/anthro.svg",
  10724. extra: 1,
  10725. bottom: 0.06
  10726. }
  10727. },
  10728. },
  10729. [
  10730. {
  10731. name: "Normal",
  10732. height: math.unit(12, "feet"),
  10733. default: true
  10734. },
  10735. ]
  10736. ))
  10737. characterMakers.push(() => makeCharacter(
  10738. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10739. {
  10740. front: {
  10741. height: math.unit(6, "feet"),
  10742. weight: math.unit(150, "lb"),
  10743. name: "Front",
  10744. image: {
  10745. source: "./media/characters/koragos/front.svg",
  10746. extra: 841 / 794,
  10747. bottom: 0.035
  10748. }
  10749. },
  10750. back: {
  10751. height: math.unit(6, "feet"),
  10752. weight: math.unit(150, "lb"),
  10753. name: "Back",
  10754. image: {
  10755. source: "./media/characters/koragos/back.svg",
  10756. extra: 841 / 810,
  10757. bottom: 0.022
  10758. }
  10759. },
  10760. },
  10761. [
  10762. {
  10763. name: "Normal",
  10764. height: math.unit(6 + 11 / 12, "feet"),
  10765. default: true
  10766. },
  10767. {
  10768. name: "Macro",
  10769. height: math.unit(490, "feet")
  10770. },
  10771. {
  10772. name: "Megamacro",
  10773. height: math.unit(10, "miles")
  10774. },
  10775. {
  10776. name: "Gigamacro",
  10777. height: math.unit(50, "miles")
  10778. },
  10779. ]
  10780. ))
  10781. characterMakers.push(() => makeCharacter(
  10782. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10783. {
  10784. front: {
  10785. height: math.unit(6, "feet"),
  10786. weight: math.unit(250, "lb"),
  10787. name: "Front",
  10788. image: {
  10789. source: "./media/characters/xylrem/front.svg",
  10790. extra: 3323 / 3050,
  10791. bottom: 0.065
  10792. }
  10793. },
  10794. },
  10795. [
  10796. {
  10797. name: "Micro",
  10798. height: math.unit(4, "feet")
  10799. },
  10800. {
  10801. name: "Normal",
  10802. height: math.unit(16, "feet"),
  10803. default: true
  10804. },
  10805. {
  10806. name: "Macro",
  10807. height: math.unit(2720, "feet")
  10808. },
  10809. {
  10810. name: "Megamacro",
  10811. height: math.unit(25000, "miles")
  10812. },
  10813. ]
  10814. ))
  10815. characterMakers.push(() => makeCharacter(
  10816. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10817. {
  10818. front: {
  10819. height: math.unit(8, "feet"),
  10820. weight: math.unit(250, "kg"),
  10821. name: "Front",
  10822. image: {
  10823. source: "./media/characters/ikideru/front.svg",
  10824. extra: 930 / 870,
  10825. bottom: 0.087
  10826. }
  10827. },
  10828. back: {
  10829. height: math.unit(8, "feet"),
  10830. weight: math.unit(250, "kg"),
  10831. name: "Back",
  10832. image: {
  10833. source: "./media/characters/ikideru/back.svg",
  10834. extra: 919 / 852,
  10835. bottom: 0.055
  10836. }
  10837. },
  10838. },
  10839. [
  10840. {
  10841. name: "Rare",
  10842. height: math.unit(8, "feet"),
  10843. default: true
  10844. },
  10845. {
  10846. name: "Playful Loom",
  10847. height: math.unit(80, "feet")
  10848. },
  10849. {
  10850. name: "City Leaner",
  10851. height: math.unit(230, "feet")
  10852. },
  10853. {
  10854. name: "Megamacro",
  10855. height: math.unit(2500, "feet")
  10856. },
  10857. {
  10858. name: "Gigamacro",
  10859. height: math.unit(26400, "feet")
  10860. },
  10861. {
  10862. name: "Tectonic Shifter",
  10863. height: math.unit(1.7, "megameters")
  10864. },
  10865. {
  10866. name: "Planet Carer",
  10867. height: math.unit(21, "megameters")
  10868. },
  10869. {
  10870. name: "God",
  10871. height: math.unit(11157.22, "parsecs")
  10872. },
  10873. ]
  10874. ))
  10875. characterMakers.push(() => makeCharacter(
  10876. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10877. {
  10878. front: {
  10879. height: math.unit(6, "feet"),
  10880. weight: math.unit(120, "lb"),
  10881. name: "Front",
  10882. image: {
  10883. source: "./media/characters/neo/front.svg"
  10884. }
  10885. },
  10886. },
  10887. [
  10888. {
  10889. name: "Micro",
  10890. height: math.unit(2, "inches"),
  10891. default: true
  10892. },
  10893. {
  10894. name: "Human Size",
  10895. height: math.unit(5 + 8 / 12, "feet")
  10896. },
  10897. ]
  10898. ))
  10899. characterMakers.push(() => makeCharacter(
  10900. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  10901. {
  10902. front: {
  10903. height: math.unit(13 + 10 / 12, "feet"),
  10904. weight: math.unit(5320, "lb"),
  10905. name: "Front",
  10906. image: {
  10907. source: "./media/characters/chauncey-chantz/front.svg",
  10908. extra: 1587 / 1435,
  10909. bottom: 0.02
  10910. }
  10911. },
  10912. },
  10913. [
  10914. {
  10915. name: "Normal",
  10916. height: math.unit(13 + 10 / 12, "feet"),
  10917. default: true
  10918. },
  10919. {
  10920. name: "Macro",
  10921. height: math.unit(45, "feet")
  10922. },
  10923. {
  10924. name: "Megamacro",
  10925. height: math.unit(250, "miles")
  10926. },
  10927. {
  10928. name: "Planetary",
  10929. height: math.unit(10000, "miles")
  10930. },
  10931. {
  10932. name: "Galactic",
  10933. height: math.unit(40000, "parsecs")
  10934. },
  10935. {
  10936. name: "Universal",
  10937. height: math.unit(1, "yottameter")
  10938. },
  10939. ]
  10940. ))
  10941. characterMakers.push(() => makeCharacter(
  10942. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  10943. {
  10944. front: {
  10945. height: math.unit(6, "feet"),
  10946. weight: math.unit(150, "lb"),
  10947. name: "Front",
  10948. image: {
  10949. source: "./media/characters/epifox/front.svg",
  10950. extra: 1,
  10951. bottom: 0.075
  10952. }
  10953. },
  10954. },
  10955. [
  10956. {
  10957. name: "Micro",
  10958. height: math.unit(6, "inches")
  10959. },
  10960. {
  10961. name: "Normal",
  10962. height: math.unit(12, "feet"),
  10963. default: true
  10964. },
  10965. {
  10966. name: "Macro",
  10967. height: math.unit(3810, "feet")
  10968. },
  10969. {
  10970. name: "Megamacro",
  10971. height: math.unit(500, "miles")
  10972. },
  10973. ]
  10974. ))
  10975. characterMakers.push(() => makeCharacter(
  10976. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  10977. {
  10978. front: {
  10979. height: math.unit(1.8796, "m"),
  10980. weight: math.unit(230, "lb"),
  10981. name: "Front",
  10982. image: {
  10983. source: "./media/characters/colin-t/front.svg",
  10984. extra: 1272 / 1193,
  10985. bottom: 0.07
  10986. }
  10987. },
  10988. },
  10989. [
  10990. {
  10991. name: "Micro",
  10992. height: math.unit(0.571, "meters")
  10993. },
  10994. {
  10995. name: "Normal",
  10996. height: math.unit(1.8796, "meters"),
  10997. default: true
  10998. },
  10999. {
  11000. name: "Tall",
  11001. height: math.unit(4, "meters")
  11002. },
  11003. {
  11004. name: "Macro",
  11005. height: math.unit(67.241, "meters")
  11006. },
  11007. {
  11008. name: "Megamacro",
  11009. height: math.unit(371.856, "meters")
  11010. },
  11011. {
  11012. name: "Planetary",
  11013. height: math.unit(12631.5689, "km")
  11014. },
  11015. ]
  11016. ))
  11017. characterMakers.push(() => makeCharacter(
  11018. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11019. {
  11020. front: {
  11021. height: math.unit(1.85, "meters"),
  11022. weight: math.unit(80, "kg"),
  11023. name: "Front",
  11024. image: {
  11025. source: "./media/characters/matvei/front.svg",
  11026. extra: 614 / 594,
  11027. bottom: 0.01
  11028. }
  11029. },
  11030. },
  11031. [
  11032. {
  11033. name: "Normal",
  11034. height: math.unit(1.85, "meters"),
  11035. default: true
  11036. },
  11037. ]
  11038. ))
  11039. characterMakers.push(() => makeCharacter(
  11040. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11041. {
  11042. front: {
  11043. height: math.unit(5 + 9 / 12, "feet"),
  11044. weight: math.unit(70, "lb"),
  11045. name: "Front",
  11046. image: {
  11047. source: "./media/characters/quincy/front.svg",
  11048. extra: 3041 / 2751
  11049. }
  11050. },
  11051. back: {
  11052. height: math.unit(5 + 9 / 12, "feet"),
  11053. weight: math.unit(70, "lb"),
  11054. name: "Back",
  11055. image: {
  11056. source: "./media/characters/quincy/back.svg",
  11057. extra: 3041 / 2751
  11058. }
  11059. },
  11060. flying: {
  11061. height: math.unit(5 + 4 / 12, "feet"),
  11062. weight: math.unit(70, "lb"),
  11063. name: "Flying",
  11064. image: {
  11065. source: "./media/characters/quincy/flying.svg",
  11066. extra: 1044 / 930
  11067. }
  11068. },
  11069. },
  11070. [
  11071. {
  11072. name: "Micro",
  11073. height: math.unit(3, "cm")
  11074. },
  11075. {
  11076. name: "Normal",
  11077. height: math.unit(5 + 9 / 12, "feet")
  11078. },
  11079. {
  11080. name: "Macro",
  11081. height: math.unit(200, "meters"),
  11082. default: true
  11083. },
  11084. {
  11085. name: "Megamacro",
  11086. height: math.unit(1000, "meters")
  11087. },
  11088. ]
  11089. ))
  11090. characterMakers.push(() => makeCharacter(
  11091. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11092. {
  11093. front: {
  11094. height: math.unit(4 + 7 / 12, "feet"),
  11095. weight: math.unit(150, "lb"),
  11096. name: "Front",
  11097. image: {
  11098. source: "./media/characters/vanrel/front.svg",
  11099. extra: 1,
  11100. bottom: 0.02
  11101. }
  11102. },
  11103. elemental: {
  11104. height: math.unit(3, "feet"),
  11105. weight: math.unit(150, "lb"),
  11106. name: "Elemental",
  11107. image: {
  11108. source: "./media/characters/vanrel/elemental.svg",
  11109. extra: 192.3 / 162.8,
  11110. bottom: 1.79 / 194.17
  11111. }
  11112. },
  11113. side: {
  11114. height: math.unit(4 + 7 / 12, "feet"),
  11115. weight: math.unit(150, "lb"),
  11116. name: "Side",
  11117. image: {
  11118. source: "./media/characters/vanrel/side.svg",
  11119. extra: 1,
  11120. bottom: 0.025
  11121. }
  11122. },
  11123. tome: {
  11124. height: math.unit(1.35, "feet"),
  11125. weight: math.unit(10, "lb"),
  11126. name: "Vanrel's Tome",
  11127. rename: true,
  11128. image: {
  11129. source: "./media/characters/vanrel/tome.svg"
  11130. }
  11131. },
  11132. beans: {
  11133. height: math.unit(0.89, "feet"),
  11134. name: "Beans",
  11135. image: {
  11136. source: "./media/characters/vanrel/beans.svg"
  11137. }
  11138. },
  11139. },
  11140. [
  11141. {
  11142. name: "Normal",
  11143. height: math.unit(4 + 7 / 12, "feet"),
  11144. default: true
  11145. },
  11146. ]
  11147. ))
  11148. characterMakers.push(() => makeCharacter(
  11149. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11150. {
  11151. front: {
  11152. height: math.unit(7 + 5 / 12, "feet"),
  11153. weight: math.unit(150, "lb"),
  11154. name: "Front",
  11155. image: {
  11156. source: "./media/characters/kuiper-vanrel/front.svg",
  11157. extra: 1118 / 1068,
  11158. bottom: 0.09
  11159. }
  11160. },
  11161. foot: {
  11162. height: math.unit(0.55, "meters"),
  11163. name: "Foot",
  11164. image: {
  11165. source: "./media/characters/kuiper-vanrel/foot.svg",
  11166. }
  11167. },
  11168. battle: {
  11169. height: math.unit(6.824, "feet"),
  11170. weight: math.unit(150, "lb"),
  11171. name: "Battle",
  11172. image: {
  11173. source: "./media/characters/kuiper-vanrel/battle.svg",
  11174. extra: 1466 / 1327,
  11175. bottom: 29 / 1492.5
  11176. }
  11177. },
  11178. },
  11179. [
  11180. {
  11181. name: "Normal",
  11182. height: math.unit(7 + 5 / 12, "feet"),
  11183. default: true
  11184. },
  11185. ]
  11186. ))
  11187. characterMakers.push(() => makeCharacter(
  11188. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11189. {
  11190. front: {
  11191. height: math.unit(8 + 5 / 12, "feet"),
  11192. weight: math.unit(150, "lb"),
  11193. name: "Front",
  11194. image: {
  11195. source: "./media/characters/keset-vanrel/front.svg",
  11196. extra: 1150 / 1084,
  11197. bottom: 0.05
  11198. }
  11199. },
  11200. hand: {
  11201. height: math.unit(0.6, "meters"),
  11202. name: "Hand",
  11203. image: {
  11204. source: "./media/characters/keset-vanrel/hand.svg"
  11205. }
  11206. },
  11207. foot: {
  11208. height: math.unit(0.94978, "meters"),
  11209. name: "Foot",
  11210. image: {
  11211. source: "./media/characters/keset-vanrel/foot.svg"
  11212. }
  11213. },
  11214. battle: {
  11215. height: math.unit(7.408, "feet"),
  11216. weight: math.unit(150, "lb"),
  11217. name: "Battle",
  11218. image: {
  11219. source: "./media/characters/keset-vanrel/battle.svg",
  11220. extra: 1890 / 1386,
  11221. bottom: 73.28 / 1970
  11222. }
  11223. },
  11224. },
  11225. [
  11226. {
  11227. name: "Normal",
  11228. height: math.unit(8 + 5 / 12, "feet"),
  11229. default: true
  11230. },
  11231. ]
  11232. ))
  11233. characterMakers.push(() => makeCharacter(
  11234. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11235. {
  11236. front: {
  11237. height: math.unit(6, "feet"),
  11238. weight: math.unit(150, "lb"),
  11239. name: "Front",
  11240. image: {
  11241. source: "./media/characters/neos/front.svg",
  11242. extra: 1696 / 992,
  11243. bottom: 0.14
  11244. }
  11245. },
  11246. },
  11247. [
  11248. {
  11249. name: "Normal",
  11250. height: math.unit(54, "cm"),
  11251. default: true
  11252. },
  11253. {
  11254. name: "Macro",
  11255. height: math.unit(100, "m")
  11256. },
  11257. {
  11258. name: "Megamacro",
  11259. height: math.unit(10, "km")
  11260. },
  11261. {
  11262. name: "Megamacro+",
  11263. height: math.unit(100, "km")
  11264. },
  11265. {
  11266. name: "Gigamacro",
  11267. height: math.unit(100, "Mm")
  11268. },
  11269. {
  11270. name: "Teramacro",
  11271. height: math.unit(100, "Gm")
  11272. },
  11273. {
  11274. name: "Examacro",
  11275. height: math.unit(100, "Em")
  11276. },
  11277. {
  11278. name: "Godly",
  11279. height: math.unit(10000, "Ym")
  11280. },
  11281. {
  11282. name: "Beyond Godly",
  11283. height: math.unit(25, "multiverses")
  11284. },
  11285. ]
  11286. ))
  11287. characterMakers.push(() => makeCharacter(
  11288. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11289. {
  11290. feminine: {
  11291. height: math.unit(5, "feet"),
  11292. weight: math.unit(100, "lb"),
  11293. name: "Feminine",
  11294. image: {
  11295. source: "./media/characters/sammy-mouse/feminine.svg",
  11296. extra: 2526 / 2425,
  11297. bottom: 0.123
  11298. }
  11299. },
  11300. masculine: {
  11301. height: math.unit(5, "feet"),
  11302. weight: math.unit(100, "lb"),
  11303. name: "Masculine",
  11304. image: {
  11305. source: "./media/characters/sammy-mouse/masculine.svg",
  11306. extra: 2526 / 2425,
  11307. bottom: 0.123
  11308. }
  11309. },
  11310. },
  11311. [
  11312. {
  11313. name: "Micro",
  11314. height: math.unit(5, "inches")
  11315. },
  11316. {
  11317. name: "Normal",
  11318. height: math.unit(5, "feet"),
  11319. default: true
  11320. },
  11321. {
  11322. name: "Macro",
  11323. height: math.unit(60, "feet")
  11324. },
  11325. ]
  11326. ))
  11327. characterMakers.push(() => makeCharacter(
  11328. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11329. {
  11330. front: {
  11331. height: math.unit(4, "feet"),
  11332. weight: math.unit(50, "lb"),
  11333. name: "Front",
  11334. image: {
  11335. source: "./media/characters/kole/front.svg",
  11336. extra: 1423 / 1303,
  11337. bottom: 0.025
  11338. }
  11339. },
  11340. back: {
  11341. height: math.unit(4, "feet"),
  11342. weight: math.unit(50, "lb"),
  11343. name: "Back",
  11344. image: {
  11345. source: "./media/characters/kole/back.svg",
  11346. extra: 1426 / 1280,
  11347. bottom: 0.02
  11348. }
  11349. },
  11350. },
  11351. [
  11352. {
  11353. name: "Normal",
  11354. height: math.unit(4, "feet"),
  11355. default: true
  11356. },
  11357. ]
  11358. ))
  11359. characterMakers.push(() => makeCharacter(
  11360. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11361. {
  11362. front: {
  11363. height: math.unit(2 + 6 / 12, "feet"),
  11364. weight: math.unit(20, "lb"),
  11365. name: "Front",
  11366. image: {
  11367. source: "./media/characters/rufran/front.svg",
  11368. extra: 2041 / 1839,
  11369. bottom: 0.055
  11370. }
  11371. },
  11372. back: {
  11373. height: math.unit(2 + 6 / 12, "feet"),
  11374. weight: math.unit(20, "lb"),
  11375. name: "Back",
  11376. image: {
  11377. source: "./media/characters/rufran/back.svg",
  11378. extra: 2054 / 1839,
  11379. bottom: 0.01
  11380. }
  11381. },
  11382. hand: {
  11383. height: math.unit(0.2166, "meters"),
  11384. name: "Hand",
  11385. image: {
  11386. source: "./media/characters/rufran/hand.svg"
  11387. }
  11388. },
  11389. foot: {
  11390. height: math.unit(0.185, "meters"),
  11391. name: "Foot",
  11392. image: {
  11393. source: "./media/characters/rufran/foot.svg"
  11394. }
  11395. },
  11396. },
  11397. [
  11398. {
  11399. name: "Micro",
  11400. height: math.unit(1, "inch")
  11401. },
  11402. {
  11403. name: "Normal",
  11404. height: math.unit(2 + 6 / 12, "feet"),
  11405. default: true
  11406. },
  11407. {
  11408. name: "Big",
  11409. height: math.unit(60, "feet")
  11410. },
  11411. {
  11412. name: "Macro",
  11413. height: math.unit(325, "feet")
  11414. },
  11415. ]
  11416. ))
  11417. characterMakers.push(() => makeCharacter(
  11418. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11419. {
  11420. front: {
  11421. height: math.unit(0.3, "meters"),
  11422. weight: math.unit(3.5, "kg"),
  11423. name: "Front",
  11424. image: {
  11425. source: "./media/characters/chip/front.svg",
  11426. extra: 748 / 674
  11427. }
  11428. },
  11429. },
  11430. [
  11431. {
  11432. name: "Micro",
  11433. height: math.unit(1, "inch"),
  11434. default: true
  11435. },
  11436. ]
  11437. ))
  11438. characterMakers.push(() => makeCharacter(
  11439. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11440. {
  11441. side: {
  11442. height: math.unit(2.3, "meters"),
  11443. weight: math.unit(3500, "lb"),
  11444. name: "Side",
  11445. image: {
  11446. source: "./media/characters/torvid/side.svg",
  11447. extra: 1972 / 722,
  11448. bottom: 0.035
  11449. }
  11450. },
  11451. },
  11452. [
  11453. {
  11454. name: "Normal",
  11455. height: math.unit(2.3, "meters"),
  11456. default: true
  11457. },
  11458. ]
  11459. ))
  11460. characterMakers.push(() => makeCharacter(
  11461. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11462. {
  11463. front: {
  11464. height: math.unit(2, "meters"),
  11465. weight: math.unit(150.5, "kg"),
  11466. name: "Front",
  11467. image: {
  11468. source: "./media/characters/susan/front.svg",
  11469. extra: 693 / 635,
  11470. bottom: 0.05
  11471. }
  11472. },
  11473. },
  11474. [
  11475. {
  11476. name: "Megamacro",
  11477. height: math.unit(505, "miles"),
  11478. default: true
  11479. },
  11480. ]
  11481. ))
  11482. characterMakers.push(() => makeCharacter(
  11483. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11484. {
  11485. front: {
  11486. height: math.unit(6, "feet"),
  11487. weight: math.unit(150, "lb"),
  11488. name: "Front",
  11489. image: {
  11490. source: "./media/characters/raindrops/front.svg",
  11491. extra: 2655 / 2461,
  11492. bottom: 49/2705
  11493. }
  11494. },
  11495. back: {
  11496. height: math.unit(6, "feet"),
  11497. weight: math.unit(150, "lb"),
  11498. name: "Back",
  11499. image: {
  11500. source: "./media/characters/raindrops/back.svg",
  11501. extra: 2574 / 2400,
  11502. bottom: 65/2634
  11503. }
  11504. },
  11505. },
  11506. [
  11507. {
  11508. name: "Micro",
  11509. height: math.unit(6, "inches")
  11510. },
  11511. {
  11512. name: "Normal",
  11513. height: math.unit(6 + 2 / 12, "feet")
  11514. },
  11515. {
  11516. name: "Macro",
  11517. height: math.unit(131, "feet"),
  11518. default: true
  11519. },
  11520. {
  11521. name: "Megamacro",
  11522. height: math.unit(15, "miles")
  11523. },
  11524. {
  11525. name: "Gigamacro",
  11526. height: math.unit(4000, "miles")
  11527. },
  11528. {
  11529. name: "Teramacro",
  11530. height: math.unit(315000, "miles")
  11531. },
  11532. ]
  11533. ))
  11534. characterMakers.push(() => makeCharacter(
  11535. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11536. {
  11537. front: {
  11538. height: math.unit(2.794, "meters"),
  11539. weight: math.unit(325, "kg"),
  11540. name: "Front",
  11541. image: {
  11542. source: "./media/characters/tezwa/front.svg",
  11543. extra: 2083 / 1906,
  11544. bottom: 0.031
  11545. }
  11546. },
  11547. foot: {
  11548. height: math.unit(0.687, "meters"),
  11549. name: "Foot",
  11550. image: {
  11551. source: "./media/characters/tezwa/foot.svg"
  11552. }
  11553. },
  11554. },
  11555. [
  11556. {
  11557. name: "Normal",
  11558. height: math.unit(9 + 2 / 12, "feet"),
  11559. default: true
  11560. },
  11561. ]
  11562. ))
  11563. characterMakers.push(() => makeCharacter(
  11564. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11565. {
  11566. front: {
  11567. height: math.unit(58, "feet"),
  11568. weight: math.unit(89000, "lb"),
  11569. name: "Front",
  11570. image: {
  11571. source: "./media/characters/typhus/front.svg",
  11572. extra: 816 / 800,
  11573. bottom: 0.065
  11574. }
  11575. },
  11576. },
  11577. [
  11578. {
  11579. name: "Macro",
  11580. height: math.unit(58, "feet"),
  11581. default: true
  11582. },
  11583. ]
  11584. ))
  11585. characterMakers.push(() => makeCharacter(
  11586. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11587. {
  11588. front: {
  11589. height: math.unit(12, "feet"),
  11590. weight: math.unit(6, "tonnes"),
  11591. name: "Front",
  11592. image: {
  11593. source: "./media/characters/lyra-von-wulf/front.svg",
  11594. extra: 1,
  11595. bottom: 0.10
  11596. }
  11597. },
  11598. frontMecha: {
  11599. height: math.unit(12, "feet"),
  11600. weight: math.unit(12, "tonnes"),
  11601. name: "Front (Mecha)",
  11602. image: {
  11603. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11604. extra: 1,
  11605. bottom: 0.042
  11606. }
  11607. },
  11608. maw: {
  11609. height: math.unit(2.2, "feet"),
  11610. name: "Maw",
  11611. image: {
  11612. source: "./media/characters/lyra-von-wulf/maw.svg"
  11613. }
  11614. },
  11615. },
  11616. [
  11617. {
  11618. name: "Normal",
  11619. height: math.unit(12, "feet"),
  11620. default: true
  11621. },
  11622. {
  11623. name: "Classic",
  11624. height: math.unit(50, "feet")
  11625. },
  11626. {
  11627. name: "Macro",
  11628. height: math.unit(500, "feet")
  11629. },
  11630. {
  11631. name: "Megamacro",
  11632. height: math.unit(1, "mile")
  11633. },
  11634. {
  11635. name: "Gigamacro",
  11636. height: math.unit(400, "miles")
  11637. },
  11638. {
  11639. name: "Teramacro",
  11640. height: math.unit(22000, "miles")
  11641. },
  11642. {
  11643. name: "Solarmacro",
  11644. height: math.unit(8600000, "miles")
  11645. },
  11646. {
  11647. name: "Galactic",
  11648. height: math.unit(1057000, "lightyears")
  11649. },
  11650. ]
  11651. ))
  11652. characterMakers.push(() => makeCharacter(
  11653. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11654. {
  11655. front: {
  11656. height: math.unit(6 + 10 / 12, "feet"),
  11657. weight: math.unit(150, "lb"),
  11658. name: "Front",
  11659. image: {
  11660. source: "./media/characters/dixon/front.svg",
  11661. extra: 3361 / 3209,
  11662. bottom: 0.01
  11663. }
  11664. },
  11665. },
  11666. [
  11667. {
  11668. name: "Normal",
  11669. height: math.unit(6 + 10 / 12, "feet"),
  11670. default: true
  11671. },
  11672. {
  11673. name: "Big",
  11674. height: math.unit(12, "meters")
  11675. },
  11676. {
  11677. name: "Macro",
  11678. height: math.unit(500, "meters")
  11679. },
  11680. {
  11681. name: "Megamacro",
  11682. height: math.unit(2, "km")
  11683. },
  11684. ]
  11685. ))
  11686. characterMakers.push(() => makeCharacter(
  11687. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11688. {
  11689. front: {
  11690. height: math.unit(185, "cm"),
  11691. weight: math.unit(68, "kg"),
  11692. name: "Front",
  11693. image: {
  11694. source: "./media/characters/kauko/front.svg",
  11695. extra: 1455 / 1421,
  11696. bottom: 0.03
  11697. }
  11698. },
  11699. back: {
  11700. height: math.unit(185, "cm"),
  11701. weight: math.unit(68, "kg"),
  11702. name: "Back",
  11703. image: {
  11704. source: "./media/characters/kauko/back.svg",
  11705. extra: 1455 / 1421,
  11706. bottom: 0.004
  11707. }
  11708. },
  11709. },
  11710. [
  11711. {
  11712. name: "Normal",
  11713. height: math.unit(185, "cm"),
  11714. default: true
  11715. },
  11716. ]
  11717. ))
  11718. characterMakers.push(() => makeCharacter(
  11719. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11720. {
  11721. front: {
  11722. height: math.unit(6, "feet"),
  11723. weight: math.unit(150, "kg"),
  11724. name: "Front",
  11725. image: {
  11726. source: "./media/characters/varg/front.svg",
  11727. extra: 1108 / 1018,
  11728. bottom: 0.0375
  11729. }
  11730. },
  11731. },
  11732. [
  11733. {
  11734. name: "Normal",
  11735. height: math.unit(5, "meters")
  11736. },
  11737. {
  11738. name: "Macro",
  11739. height: math.unit(200, "meters")
  11740. },
  11741. {
  11742. name: "Megamacro",
  11743. height: math.unit(20, "kilometers")
  11744. },
  11745. {
  11746. name: "True Size",
  11747. height: math.unit(211, "km"),
  11748. default: true
  11749. },
  11750. {
  11751. name: "Gigamacro",
  11752. height: math.unit(1000, "km")
  11753. },
  11754. {
  11755. name: "Gigamacro+",
  11756. height: math.unit(8000, "km")
  11757. },
  11758. {
  11759. name: "Teramacro",
  11760. height: math.unit(1000000, "km")
  11761. },
  11762. ]
  11763. ))
  11764. characterMakers.push(() => makeCharacter(
  11765. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11766. {
  11767. front: {
  11768. height: math.unit(7 + 7 / 12, "feet"),
  11769. weight: math.unit(267, "lb"),
  11770. name: "Front",
  11771. image: {
  11772. source: "./media/characters/dayza/front.svg",
  11773. extra: 1262 / 1200,
  11774. bottom: 0.035
  11775. }
  11776. },
  11777. side: {
  11778. height: math.unit(7 + 7 / 12, "feet"),
  11779. weight: math.unit(267, "lb"),
  11780. name: "Side",
  11781. image: {
  11782. source: "./media/characters/dayza/side.svg",
  11783. extra: 1295 / 1245,
  11784. bottom: 0.05
  11785. }
  11786. },
  11787. back: {
  11788. height: math.unit(7 + 7 / 12, "feet"),
  11789. weight: math.unit(267, "lb"),
  11790. name: "Back",
  11791. image: {
  11792. source: "./media/characters/dayza/back.svg",
  11793. extra: 1241 / 1170
  11794. }
  11795. },
  11796. },
  11797. [
  11798. {
  11799. name: "Normal",
  11800. height: math.unit(7 + 7 / 12, "feet"),
  11801. default: true
  11802. },
  11803. {
  11804. name: "Macro",
  11805. height: math.unit(155, "feet")
  11806. },
  11807. ]
  11808. ))
  11809. characterMakers.push(() => makeCharacter(
  11810. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11811. {
  11812. front: {
  11813. height: math.unit(6 + 5 / 12, "feet"),
  11814. weight: math.unit(160, "lb"),
  11815. name: "Front",
  11816. image: {
  11817. source: "./media/characters/xanthos/front.svg",
  11818. extra: 1,
  11819. bottom: 0.04
  11820. }
  11821. },
  11822. back: {
  11823. height: math.unit(6 + 5 / 12, "feet"),
  11824. weight: math.unit(160, "lb"),
  11825. name: "Back",
  11826. image: {
  11827. source: "./media/characters/xanthos/back.svg",
  11828. extra: 1,
  11829. bottom: 0.03
  11830. }
  11831. },
  11832. hand: {
  11833. height: math.unit(0.928, "feet"),
  11834. name: "Hand",
  11835. image: {
  11836. source: "./media/characters/xanthos/hand.svg"
  11837. }
  11838. },
  11839. foot: {
  11840. height: math.unit(1.286, "feet"),
  11841. name: "Foot",
  11842. image: {
  11843. source: "./media/characters/xanthos/foot.svg"
  11844. }
  11845. },
  11846. },
  11847. [
  11848. {
  11849. name: "Normal",
  11850. height: math.unit(6 + 5 / 12, "feet"),
  11851. default: true
  11852. },
  11853. {
  11854. name: "Normal+",
  11855. height: math.unit(6, "meters")
  11856. },
  11857. {
  11858. name: "Macro",
  11859. height: math.unit(40, "feet")
  11860. },
  11861. {
  11862. name: "Macro+",
  11863. height: math.unit(200, "meters")
  11864. },
  11865. {
  11866. name: "Megamacro",
  11867. height: math.unit(20, "km")
  11868. },
  11869. {
  11870. name: "Megamacro+",
  11871. height: math.unit(100, "km")
  11872. },
  11873. ]
  11874. ))
  11875. characterMakers.push(() => makeCharacter(
  11876. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11877. {
  11878. front: {
  11879. height: math.unit(6 + 3 / 12, "feet"),
  11880. weight: math.unit(215, "lb"),
  11881. name: "Front",
  11882. image: {
  11883. source: "./media/characters/grynn/front.svg",
  11884. extra: 4627 / 4209,
  11885. bottom: 0.047
  11886. }
  11887. },
  11888. },
  11889. [
  11890. {
  11891. name: "Micro",
  11892. height: math.unit(6, "inches")
  11893. },
  11894. {
  11895. name: "Normal",
  11896. height: math.unit(6 + 3 / 12, "feet"),
  11897. default: true
  11898. },
  11899. {
  11900. name: "Big",
  11901. height: math.unit(104, "feet")
  11902. },
  11903. {
  11904. name: "Macro",
  11905. height: math.unit(944, "feet")
  11906. },
  11907. {
  11908. name: "Macro+",
  11909. height: math.unit(9480, "feet")
  11910. },
  11911. {
  11912. name: "Megamacro",
  11913. height: math.unit(78752, "feet")
  11914. },
  11915. {
  11916. name: "Megamacro+",
  11917. height: math.unit(630128, "feet")
  11918. },
  11919. {
  11920. name: "Megamacro++",
  11921. height: math.unit(3150695, "feet")
  11922. },
  11923. ]
  11924. ))
  11925. characterMakers.push(() => makeCharacter(
  11926. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  11927. {
  11928. front: {
  11929. height: math.unit(7 + 5 / 12, "feet"),
  11930. weight: math.unit(450, "lb"),
  11931. name: "Front",
  11932. image: {
  11933. source: "./media/characters/mocha-aura/front.svg",
  11934. extra: 1907 / 1817,
  11935. bottom: 0.04
  11936. }
  11937. },
  11938. back: {
  11939. height: math.unit(7 + 5 / 12, "feet"),
  11940. weight: math.unit(450, "lb"),
  11941. name: "Back",
  11942. image: {
  11943. source: "./media/characters/mocha-aura/back.svg",
  11944. extra: 1900 / 1825,
  11945. bottom: 0.045
  11946. }
  11947. },
  11948. },
  11949. [
  11950. {
  11951. name: "Nano",
  11952. height: math.unit(1, "nm")
  11953. },
  11954. {
  11955. name: "Megamicro",
  11956. height: math.unit(1, "mm")
  11957. },
  11958. {
  11959. name: "Micro",
  11960. height: math.unit(3, "inches")
  11961. },
  11962. {
  11963. name: "Normal",
  11964. height: math.unit(7 + 5 / 12, "feet"),
  11965. default: true
  11966. },
  11967. {
  11968. name: "Macro",
  11969. height: math.unit(30, "feet")
  11970. },
  11971. {
  11972. name: "Megamacro",
  11973. height: math.unit(3500, "feet")
  11974. },
  11975. {
  11976. name: "Teramacro",
  11977. height: math.unit(500000, "miles")
  11978. },
  11979. {
  11980. name: "Petamacro",
  11981. height: math.unit(50000000000000000, "parsecs")
  11982. },
  11983. ]
  11984. ))
  11985. characterMakers.push(() => makeCharacter(
  11986. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  11987. {
  11988. front: {
  11989. height: math.unit(6, "feet"),
  11990. weight: math.unit(150, "lb"),
  11991. name: "Front",
  11992. image: {
  11993. source: "./media/characters/ilisha-devya/front.svg",
  11994. extra: 1,
  11995. bottom: 0.175
  11996. }
  11997. },
  11998. back: {
  11999. height: math.unit(6, "feet"),
  12000. weight: math.unit(150, "lb"),
  12001. name: "Back",
  12002. image: {
  12003. source: "./media/characters/ilisha-devya/back.svg",
  12004. extra: 1,
  12005. bottom: 0.015
  12006. }
  12007. },
  12008. },
  12009. [
  12010. {
  12011. name: "Macro",
  12012. height: math.unit(500, "feet"),
  12013. default: true
  12014. },
  12015. {
  12016. name: "Megamacro",
  12017. height: math.unit(10, "miles")
  12018. },
  12019. {
  12020. name: "Gigamacro",
  12021. height: math.unit(100000, "miles")
  12022. },
  12023. {
  12024. name: "Examacro",
  12025. height: math.unit(1e9, "lightyears")
  12026. },
  12027. {
  12028. name: "Omniversal",
  12029. height: math.unit(1e33, "lightyears")
  12030. },
  12031. {
  12032. name: "Beyond Infinite",
  12033. height: math.unit(1e100, "lightyears")
  12034. },
  12035. ]
  12036. ))
  12037. characterMakers.push(() => makeCharacter(
  12038. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12039. {
  12040. Side: {
  12041. height: math.unit(6, "feet"),
  12042. weight: math.unit(150, "lb"),
  12043. name: "Side",
  12044. image: {
  12045. source: "./media/characters/mira/side.svg",
  12046. extra: 900 / 799,
  12047. bottom: 0.02
  12048. }
  12049. },
  12050. },
  12051. [
  12052. {
  12053. name: "Human Size",
  12054. height: math.unit(6, "feet")
  12055. },
  12056. {
  12057. name: "Macro",
  12058. height: math.unit(100, "feet"),
  12059. default: true
  12060. },
  12061. {
  12062. name: "Megamacro",
  12063. height: math.unit(10, "miles")
  12064. },
  12065. {
  12066. name: "Gigamacro",
  12067. height: math.unit(25000, "miles")
  12068. },
  12069. {
  12070. name: "Teramacro",
  12071. height: math.unit(300, "AU")
  12072. },
  12073. {
  12074. name: "Full Size",
  12075. height: math.unit(4.5e10, "lightyears")
  12076. },
  12077. ]
  12078. ))
  12079. characterMakers.push(() => makeCharacter(
  12080. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12081. {
  12082. front: {
  12083. height: math.unit(6, "feet"),
  12084. weight: math.unit(150, "lb"),
  12085. name: "Front",
  12086. image: {
  12087. source: "./media/characters/holly/front.svg",
  12088. extra: 639 / 606
  12089. }
  12090. },
  12091. back: {
  12092. height: math.unit(6, "feet"),
  12093. weight: math.unit(150, "lb"),
  12094. name: "Back",
  12095. image: {
  12096. source: "./media/characters/holly/back.svg",
  12097. extra: 623 / 598
  12098. }
  12099. },
  12100. frontWorking: {
  12101. height: math.unit(6, "feet"),
  12102. weight: math.unit(150, "lb"),
  12103. name: "Front (Working)",
  12104. image: {
  12105. source: "./media/characters/holly/front-working.svg",
  12106. extra: 607 / 577,
  12107. bottom: 0.048
  12108. }
  12109. },
  12110. },
  12111. [
  12112. {
  12113. name: "Normal",
  12114. height: math.unit(12 + 3 / 12, "feet"),
  12115. default: true
  12116. },
  12117. ]
  12118. ))
  12119. characterMakers.push(() => makeCharacter(
  12120. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12121. {
  12122. front: {
  12123. height: math.unit(6, "feet"),
  12124. weight: math.unit(150, "lb"),
  12125. name: "Front",
  12126. image: {
  12127. source: "./media/characters/porter/front.svg",
  12128. extra: 1,
  12129. bottom: 0.01
  12130. }
  12131. },
  12132. frontRobes: {
  12133. height: math.unit(6, "feet"),
  12134. weight: math.unit(150, "lb"),
  12135. name: "Front (Robes)",
  12136. image: {
  12137. source: "./media/characters/porter/front-robes.svg",
  12138. extra: 1.01,
  12139. bottom: 0.01
  12140. }
  12141. },
  12142. },
  12143. [
  12144. {
  12145. name: "Normal",
  12146. height: math.unit(11 + 9 / 12, "feet"),
  12147. default: true
  12148. },
  12149. ]
  12150. ))
  12151. characterMakers.push(() => makeCharacter(
  12152. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12153. {
  12154. legendary: {
  12155. height: math.unit(6, "feet"),
  12156. weight: math.unit(150, "lb"),
  12157. name: "Legendary",
  12158. image: {
  12159. source: "./media/characters/lucy/legendary.svg",
  12160. extra: 1355 / 1100,
  12161. bottom: 0.045
  12162. }
  12163. },
  12164. },
  12165. [
  12166. {
  12167. name: "Legendary",
  12168. height: math.unit(86882 * 2, "miles"),
  12169. default: true
  12170. },
  12171. ]
  12172. ))
  12173. characterMakers.push(() => makeCharacter(
  12174. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12175. {
  12176. front: {
  12177. height: math.unit(6, "feet"),
  12178. weight: math.unit(150, "lb"),
  12179. name: "Front",
  12180. image: {
  12181. source: "./media/characters/drusilla/front.svg",
  12182. extra: 678 / 635,
  12183. bottom: 0.03
  12184. }
  12185. },
  12186. back: {
  12187. height: math.unit(6, "feet"),
  12188. weight: math.unit(150, "lb"),
  12189. name: "Back",
  12190. image: {
  12191. source: "./media/characters/drusilla/back.svg",
  12192. extra: 678 / 635,
  12193. bottom: 0.005
  12194. }
  12195. },
  12196. },
  12197. [
  12198. {
  12199. name: "Macro",
  12200. height: math.unit(100, "feet")
  12201. },
  12202. {
  12203. name: "Canon Height",
  12204. height: math.unit(2000, "feet"),
  12205. default: true
  12206. },
  12207. ]
  12208. ))
  12209. characterMakers.push(() => makeCharacter(
  12210. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12211. {
  12212. front: {
  12213. height: math.unit(6, "feet"),
  12214. weight: math.unit(180, "lb"),
  12215. name: "Front",
  12216. image: {
  12217. source: "./media/characters/renard-thatch/front.svg",
  12218. extra: 2411 / 2275,
  12219. bottom: 0.01
  12220. }
  12221. },
  12222. frontPosing: {
  12223. height: math.unit(6, "feet"),
  12224. weight: math.unit(180, "lb"),
  12225. name: "Front (Posing)",
  12226. image: {
  12227. source: "./media/characters/renard-thatch/front-posing.svg",
  12228. extra: 2381 / 2261,
  12229. bottom: 0.01
  12230. }
  12231. },
  12232. back: {
  12233. height: math.unit(6, "feet"),
  12234. weight: math.unit(180, "lb"),
  12235. name: "Back",
  12236. image: {
  12237. source: "./media/characters/renard-thatch/back.svg",
  12238. extra: 2428 / 2288
  12239. }
  12240. },
  12241. },
  12242. [
  12243. {
  12244. name: "Micro",
  12245. height: math.unit(3, "inches")
  12246. },
  12247. {
  12248. name: "Default",
  12249. height: math.unit(6, "feet"),
  12250. default: true
  12251. },
  12252. {
  12253. name: "Macro",
  12254. height: math.unit(75, "feet")
  12255. },
  12256. ]
  12257. ))
  12258. characterMakers.push(() => makeCharacter(
  12259. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12260. {
  12261. front: {
  12262. height: math.unit(1450, "feet"),
  12263. weight: math.unit(1.21e6, "tons"),
  12264. name: "Front",
  12265. image: {
  12266. source: "./media/characters/sekvra/front.svg",
  12267. extra: 1,
  12268. bottom: 0.03
  12269. }
  12270. },
  12271. frontClothed: {
  12272. height: math.unit(1450, "feet"),
  12273. weight: math.unit(1.21e6, "tons"),
  12274. name: "Front (Clothed)",
  12275. image: {
  12276. source: "./media/characters/sekvra/front-clothed.svg",
  12277. extra: 1,
  12278. bottom: 0.03
  12279. }
  12280. },
  12281. side: {
  12282. height: math.unit(1450, "feet"),
  12283. weight: math.unit(1.21e6, "tons"),
  12284. name: "Side",
  12285. image: {
  12286. source: "./media/characters/sekvra/side.svg",
  12287. extra: 1,
  12288. bottom: 0.025
  12289. }
  12290. },
  12291. back: {
  12292. height: math.unit(1450, "feet"),
  12293. weight: math.unit(1.21e6, "tons"),
  12294. name: "Back",
  12295. image: {
  12296. source: "./media/characters/sekvra/back.svg",
  12297. extra: 1,
  12298. bottom: 0.005
  12299. }
  12300. },
  12301. },
  12302. [
  12303. {
  12304. name: "Macro",
  12305. height: math.unit(1450, "feet"),
  12306. default: true
  12307. },
  12308. {
  12309. name: "Megamacro",
  12310. height: math.unit(15000, "feet")
  12311. },
  12312. ]
  12313. ))
  12314. characterMakers.push(() => makeCharacter(
  12315. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12316. {
  12317. front: {
  12318. height: math.unit(6, "feet"),
  12319. weight: math.unit(150, "lb"),
  12320. name: "Front",
  12321. image: {
  12322. source: "./media/characters/carmine/front.svg",
  12323. extra: 1,
  12324. bottom: 0.035
  12325. }
  12326. },
  12327. frontArmor: {
  12328. height: math.unit(6, "feet"),
  12329. weight: math.unit(150, "lb"),
  12330. name: "Front (Armor)",
  12331. image: {
  12332. source: "./media/characters/carmine/front-armor.svg",
  12333. extra: 1,
  12334. bottom: 0.035
  12335. }
  12336. },
  12337. },
  12338. [
  12339. {
  12340. name: "Large",
  12341. height: math.unit(1, "mile")
  12342. },
  12343. {
  12344. name: "Huge",
  12345. height: math.unit(40, "miles"),
  12346. default: true
  12347. },
  12348. {
  12349. name: "Colossal",
  12350. height: math.unit(2500, "miles")
  12351. },
  12352. ]
  12353. ))
  12354. characterMakers.push(() => makeCharacter(
  12355. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12356. {
  12357. front: {
  12358. height: math.unit(6, "feet"),
  12359. weight: math.unit(150, "lb"),
  12360. name: "Front",
  12361. image: {
  12362. source: "./media/characters/elyssia/front.svg",
  12363. extra: 2201 / 2035,
  12364. bottom: 0.05
  12365. }
  12366. },
  12367. frontClothed: {
  12368. height: math.unit(6, "feet"),
  12369. weight: math.unit(150, "lb"),
  12370. name: "Front (Clothed)",
  12371. image: {
  12372. source: "./media/characters/elyssia/front-clothed.svg",
  12373. extra: 2201 / 2035,
  12374. bottom: 0.05
  12375. }
  12376. },
  12377. back: {
  12378. height: math.unit(6, "feet"),
  12379. weight: math.unit(150, "lb"),
  12380. name: "Back",
  12381. image: {
  12382. source: "./media/characters/elyssia/back.svg",
  12383. extra: 2201 / 2035,
  12384. bottom: 0.013
  12385. }
  12386. },
  12387. },
  12388. [
  12389. {
  12390. name: "Smaller",
  12391. height: math.unit(150, "feet")
  12392. },
  12393. {
  12394. name: "Standard",
  12395. height: math.unit(1400, "feet"),
  12396. default: true
  12397. },
  12398. {
  12399. name: "Distracted",
  12400. height: math.unit(15000, "feet")
  12401. },
  12402. ]
  12403. ))
  12404. characterMakers.push(() => makeCharacter(
  12405. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12406. {
  12407. front: {
  12408. height: math.unit(7 + 4 / 12, "feet"),
  12409. weight: math.unit(500, "lb"),
  12410. name: "Front",
  12411. image: {
  12412. source: "./media/characters/geno-maxwell/front.svg",
  12413. extra: 2207 / 2040,
  12414. bottom: 0.015
  12415. }
  12416. },
  12417. },
  12418. [
  12419. {
  12420. name: "Micro",
  12421. height: math.unit(3, "inches")
  12422. },
  12423. {
  12424. name: "Normal",
  12425. height: math.unit(7 + 4 / 12, "feet"),
  12426. default: true
  12427. },
  12428. {
  12429. name: "Macro",
  12430. height: math.unit(220, "feet")
  12431. },
  12432. {
  12433. name: "Megamacro",
  12434. height: math.unit(11, "miles")
  12435. },
  12436. ]
  12437. ))
  12438. characterMakers.push(() => makeCharacter(
  12439. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12440. {
  12441. front: {
  12442. height: math.unit(7 + 4 / 12, "feet"),
  12443. weight: math.unit(500, "lb"),
  12444. name: "Front",
  12445. image: {
  12446. source: "./media/characters/regena-maxwell/front.svg",
  12447. extra: 3115 / 2770,
  12448. bottom: 0.02
  12449. }
  12450. },
  12451. },
  12452. [
  12453. {
  12454. name: "Normal",
  12455. height: math.unit(7 + 4 / 12, "feet"),
  12456. default: true
  12457. },
  12458. {
  12459. name: "Macro",
  12460. height: math.unit(220, "feet")
  12461. },
  12462. {
  12463. name: "Megamacro",
  12464. height: math.unit(11, "miles")
  12465. },
  12466. ]
  12467. ))
  12468. characterMakers.push(() => makeCharacter(
  12469. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12470. {
  12471. front: {
  12472. height: math.unit(6, "feet"),
  12473. weight: math.unit(150, "lb"),
  12474. name: "Front",
  12475. image: {
  12476. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12477. extra: 860 / 690,
  12478. bottom: 0.03
  12479. }
  12480. },
  12481. },
  12482. [
  12483. {
  12484. name: "Normal",
  12485. height: math.unit(1.7, "meters"),
  12486. default: true
  12487. },
  12488. ]
  12489. ))
  12490. characterMakers.push(() => makeCharacter(
  12491. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12492. {
  12493. front: {
  12494. height: math.unit(6, "feet"),
  12495. weight: math.unit(150, "lb"),
  12496. name: "Front",
  12497. image: {
  12498. source: "./media/characters/quilly/front.svg",
  12499. extra: 890 / 776
  12500. }
  12501. },
  12502. },
  12503. [
  12504. {
  12505. name: "Gigamacro",
  12506. height: math.unit(404090, "miles"),
  12507. default: true
  12508. },
  12509. ]
  12510. ))
  12511. characterMakers.push(() => makeCharacter(
  12512. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12513. {
  12514. front: {
  12515. height: math.unit(7 + 8 / 12, "feet"),
  12516. weight: math.unit(350, "lb"),
  12517. name: "Front",
  12518. image: {
  12519. source: "./media/characters/tempest/front.svg",
  12520. extra: 1175 / 1086,
  12521. bottom: 0.02
  12522. }
  12523. },
  12524. },
  12525. [
  12526. {
  12527. name: "Normal",
  12528. height: math.unit(7 + 8 / 12, "feet"),
  12529. default: true
  12530. },
  12531. ]
  12532. ))
  12533. characterMakers.push(() => makeCharacter(
  12534. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12535. {
  12536. side: {
  12537. height: math.unit(4 + 5 / 12, "feet"),
  12538. weight: math.unit(80, "lb"),
  12539. name: "Side",
  12540. image: {
  12541. source: "./media/characters/rodger/side.svg",
  12542. extra: 1235 / 1118
  12543. }
  12544. },
  12545. },
  12546. [
  12547. {
  12548. name: "Micro",
  12549. height: math.unit(1, "inch")
  12550. },
  12551. {
  12552. name: "Normal",
  12553. height: math.unit(4 + 5 / 12, "feet"),
  12554. default: true
  12555. },
  12556. {
  12557. name: "Macro",
  12558. height: math.unit(120, "feet")
  12559. },
  12560. ]
  12561. ))
  12562. characterMakers.push(() => makeCharacter(
  12563. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12564. {
  12565. front: {
  12566. height: math.unit(6, "feet"),
  12567. weight: math.unit(150, "lb"),
  12568. name: "Front",
  12569. image: {
  12570. source: "./media/characters/danyel/front.svg",
  12571. extra: 1185 / 1123,
  12572. bottom: 0.05
  12573. }
  12574. },
  12575. },
  12576. [
  12577. {
  12578. name: "Shrunken",
  12579. height: math.unit(0.5, "mm")
  12580. },
  12581. {
  12582. name: "Micro",
  12583. height: math.unit(1, "mm"),
  12584. default: true
  12585. },
  12586. {
  12587. name: "Upsized",
  12588. height: math.unit(5 + 5 / 12, "feet")
  12589. },
  12590. ]
  12591. ))
  12592. characterMakers.push(() => makeCharacter(
  12593. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12594. {
  12595. front: {
  12596. height: math.unit(5 + 6 / 12, "feet"),
  12597. weight: math.unit(200, "lb"),
  12598. name: "Front",
  12599. image: {
  12600. source: "./media/characters/vivian-bijoux/front.svg",
  12601. extra: 1,
  12602. bottom: 0.072
  12603. }
  12604. },
  12605. },
  12606. [
  12607. {
  12608. name: "Normal",
  12609. height: math.unit(5 + 6 / 12, "feet"),
  12610. default: true
  12611. },
  12612. {
  12613. name: "Bad Dream",
  12614. height: math.unit(500, "feet")
  12615. },
  12616. {
  12617. name: "Nightmare",
  12618. height: math.unit(500, "miles")
  12619. },
  12620. ]
  12621. ))
  12622. characterMakers.push(() => makeCharacter(
  12623. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12624. {
  12625. front: {
  12626. height: math.unit(6 + 1 / 12, "feet"),
  12627. weight: math.unit(260, "lb"),
  12628. name: "Front",
  12629. image: {
  12630. source: "./media/characters/zeta/front.svg",
  12631. extra: 1968 / 1889,
  12632. bottom: 0.06
  12633. }
  12634. },
  12635. back: {
  12636. height: math.unit(6 + 1 / 12, "feet"),
  12637. weight: math.unit(260, "lb"),
  12638. name: "Back",
  12639. image: {
  12640. source: "./media/characters/zeta/back.svg",
  12641. extra: 1944 / 1858,
  12642. bottom: 0.03
  12643. }
  12644. },
  12645. hand: {
  12646. height: math.unit(1.112, "feet"),
  12647. name: "Hand",
  12648. image: {
  12649. source: "./media/characters/zeta/hand.svg"
  12650. }
  12651. },
  12652. foot: {
  12653. height: math.unit(1.48, "feet"),
  12654. name: "Foot",
  12655. image: {
  12656. source: "./media/characters/zeta/foot.svg"
  12657. }
  12658. },
  12659. },
  12660. [
  12661. {
  12662. name: "Micro",
  12663. height: math.unit(6, "inches")
  12664. },
  12665. {
  12666. name: "Normal",
  12667. height: math.unit(6 + 1 / 12, "feet"),
  12668. default: true
  12669. },
  12670. {
  12671. name: "Macro",
  12672. height: math.unit(20, "feet")
  12673. },
  12674. ]
  12675. ))
  12676. characterMakers.push(() => makeCharacter(
  12677. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12678. {
  12679. front: {
  12680. height: math.unit(6, "feet"),
  12681. weight: math.unit(150, "lb"),
  12682. name: "Front",
  12683. image: {
  12684. source: "./media/characters/jamie-larsen/front.svg",
  12685. extra: 962 / 933,
  12686. bottom: 0.02
  12687. }
  12688. },
  12689. back: {
  12690. height: math.unit(6, "feet"),
  12691. weight: math.unit(150, "lb"),
  12692. name: "Back",
  12693. image: {
  12694. source: "./media/characters/jamie-larsen/back.svg",
  12695. extra: 997 / 946
  12696. }
  12697. },
  12698. },
  12699. [
  12700. {
  12701. name: "Macro",
  12702. height: math.unit(28 + 7 / 12, "feet"),
  12703. default: true
  12704. },
  12705. {
  12706. name: "Macro+",
  12707. height: math.unit(180, "feet")
  12708. },
  12709. {
  12710. name: "Megamacro",
  12711. height: math.unit(10, "miles")
  12712. },
  12713. {
  12714. name: "Gigamacro",
  12715. height: math.unit(200000, "miles")
  12716. },
  12717. ]
  12718. ))
  12719. characterMakers.push(() => makeCharacter(
  12720. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12721. {
  12722. front: {
  12723. height: math.unit(6, "feet"),
  12724. weight: math.unit(120, "lb"),
  12725. name: "Front",
  12726. image: {
  12727. source: "./media/characters/vance/front.svg",
  12728. extra: 1980 / 1890,
  12729. bottom: 0.09
  12730. }
  12731. },
  12732. back: {
  12733. height: math.unit(6, "feet"),
  12734. weight: math.unit(120, "lb"),
  12735. name: "Back",
  12736. image: {
  12737. source: "./media/characters/vance/back.svg",
  12738. extra: 2081 / 1994,
  12739. bottom: 0.014
  12740. }
  12741. },
  12742. hand: {
  12743. height: math.unit(0.88, "feet"),
  12744. name: "Hand",
  12745. image: {
  12746. source: "./media/characters/vance/hand.svg"
  12747. }
  12748. },
  12749. foot: {
  12750. height: math.unit(0.64, "feet"),
  12751. name: "Foot",
  12752. image: {
  12753. source: "./media/characters/vance/foot.svg"
  12754. }
  12755. },
  12756. },
  12757. [
  12758. {
  12759. name: "Small",
  12760. height: math.unit(90, "feet"),
  12761. default: true
  12762. },
  12763. {
  12764. name: "Macro",
  12765. height: math.unit(100, "meters")
  12766. },
  12767. {
  12768. name: "Megamacro",
  12769. height: math.unit(15, "miles")
  12770. },
  12771. ]
  12772. ))
  12773. characterMakers.push(() => makeCharacter(
  12774. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12775. {
  12776. front: {
  12777. height: math.unit(6, "feet"),
  12778. weight: math.unit(180, "lb"),
  12779. name: "Front",
  12780. image: {
  12781. source: "./media/characters/xochitl/front.svg",
  12782. extra: 2297 / 2261,
  12783. bottom: 0.065
  12784. }
  12785. },
  12786. back: {
  12787. height: math.unit(6, "feet"),
  12788. weight: math.unit(180, "lb"),
  12789. name: "Back",
  12790. image: {
  12791. source: "./media/characters/xochitl/back.svg",
  12792. extra: 2386 / 2354,
  12793. bottom: 0.01
  12794. }
  12795. },
  12796. foot: {
  12797. height: math.unit(6 / 5 * 1.15, "feet"),
  12798. weight: math.unit(150, "lb"),
  12799. name: "Foot",
  12800. image: {
  12801. source: "./media/characters/xochitl/foot.svg"
  12802. }
  12803. },
  12804. },
  12805. [
  12806. {
  12807. name: "Macro",
  12808. height: math.unit(80, "feet")
  12809. },
  12810. {
  12811. name: "Macro+",
  12812. height: math.unit(400, "feet"),
  12813. default: true
  12814. },
  12815. {
  12816. name: "Gigamacro",
  12817. height: math.unit(80000, "miles")
  12818. },
  12819. {
  12820. name: "Gigamacro+",
  12821. height: math.unit(400000, "miles")
  12822. },
  12823. {
  12824. name: "Teramacro",
  12825. height: math.unit(300, "AU")
  12826. },
  12827. ]
  12828. ))
  12829. characterMakers.push(() => makeCharacter(
  12830. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12831. {
  12832. front: {
  12833. height: math.unit(6, "feet"),
  12834. weight: math.unit(150, "lb"),
  12835. name: "Front",
  12836. image: {
  12837. source: "./media/characters/vincent/front.svg",
  12838. extra: 1130 / 1080,
  12839. bottom: 0.055
  12840. }
  12841. },
  12842. beak: {
  12843. height: math.unit(6 * 0.1, "feet"),
  12844. name: "Beak",
  12845. image: {
  12846. source: "./media/characters/vincent/beak.svg"
  12847. }
  12848. },
  12849. hand: {
  12850. height: math.unit(6 * 0.85, "feet"),
  12851. weight: math.unit(150, "lb"),
  12852. name: "Hand",
  12853. image: {
  12854. source: "./media/characters/vincent/hand.svg"
  12855. }
  12856. },
  12857. foot: {
  12858. height: math.unit(6 * 0.19, "feet"),
  12859. weight: math.unit(150, "lb"),
  12860. name: "Foot",
  12861. image: {
  12862. source: "./media/characters/vincent/foot.svg"
  12863. }
  12864. },
  12865. },
  12866. [
  12867. {
  12868. name: "Base",
  12869. height: math.unit(6 + 5 / 12, "feet"),
  12870. default: true
  12871. },
  12872. {
  12873. name: "Macro",
  12874. height: math.unit(300, "feet")
  12875. },
  12876. {
  12877. name: "Megamacro",
  12878. height: math.unit(2, "miles")
  12879. },
  12880. {
  12881. name: "Gigamacro",
  12882. height: math.unit(1000, "miles")
  12883. },
  12884. ]
  12885. ))
  12886. characterMakers.push(() => makeCharacter(
  12887. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  12888. {
  12889. front: {
  12890. height: math.unit(6 + 2 / 12, "feet"),
  12891. weight: math.unit(265, "lb"),
  12892. name: "Front",
  12893. image: {
  12894. source: "./media/characters/jay/front.svg",
  12895. extra: 1510 / 1430,
  12896. bottom: 0.042
  12897. }
  12898. },
  12899. back: {
  12900. height: math.unit(6 + 2 / 12, "feet"),
  12901. weight: math.unit(265, "lb"),
  12902. name: "Back",
  12903. image: {
  12904. source: "./media/characters/jay/back.svg",
  12905. extra: 1510 / 1430,
  12906. bottom: 0.025
  12907. }
  12908. },
  12909. clothed: {
  12910. height: math.unit(6 + 2 / 12, "feet"),
  12911. weight: math.unit(265, "lb"),
  12912. name: "Front (Clothed)",
  12913. image: {
  12914. source: "./media/characters/jay/clothed.svg",
  12915. extra: 744 / 699,
  12916. bottom: 0.043
  12917. }
  12918. },
  12919. head: {
  12920. height: math.unit(1.772, "feet"),
  12921. name: "Head",
  12922. image: {
  12923. source: "./media/characters/jay/head.svg"
  12924. }
  12925. },
  12926. sizeRay: {
  12927. height: math.unit(1.331, "feet"),
  12928. name: "Size Ray",
  12929. image: {
  12930. source: "./media/characters/jay/size-ray.svg"
  12931. }
  12932. },
  12933. },
  12934. [
  12935. {
  12936. name: "Micro",
  12937. height: math.unit(1, "inch")
  12938. },
  12939. {
  12940. name: "Normal",
  12941. height: math.unit(6 + 2 / 12, "feet"),
  12942. default: true
  12943. },
  12944. {
  12945. name: "Macro",
  12946. height: math.unit(1, "mile")
  12947. },
  12948. {
  12949. name: "Megamacro",
  12950. height: math.unit(100, "miles")
  12951. },
  12952. ]
  12953. ))
  12954. characterMakers.push(() => makeCharacter(
  12955. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  12956. {
  12957. front: {
  12958. height: math.unit(2, "meters"),
  12959. weight: math.unit(500, "kg"),
  12960. name: "Front",
  12961. image: {
  12962. source: "./media/characters/coatl/front.svg",
  12963. extra: 3948 / 3500,
  12964. bottom: 0.082
  12965. }
  12966. },
  12967. },
  12968. [
  12969. {
  12970. name: "Normal",
  12971. height: math.unit(4, "meters")
  12972. },
  12973. {
  12974. name: "Macro",
  12975. height: math.unit(100, "meters"),
  12976. default: true
  12977. },
  12978. {
  12979. name: "Macro+",
  12980. height: math.unit(300, "meters")
  12981. },
  12982. {
  12983. name: "Megamacro",
  12984. height: math.unit(3, "gigameters")
  12985. },
  12986. {
  12987. name: "Megamacro+",
  12988. height: math.unit(300, "terameters")
  12989. },
  12990. {
  12991. name: "Megamacro++",
  12992. height: math.unit(3, "lightyears")
  12993. },
  12994. ]
  12995. ))
  12996. characterMakers.push(() => makeCharacter(
  12997. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  12998. {
  12999. front: {
  13000. height: math.unit(6, "feet"),
  13001. weight: math.unit(50, "kg"),
  13002. name: "front",
  13003. image: {
  13004. source: "./media/characters/shiroryu/front.svg",
  13005. extra: 1990 / 1935
  13006. }
  13007. },
  13008. },
  13009. [
  13010. {
  13011. name: "Mortal Mingling",
  13012. height: math.unit(3, "meters")
  13013. },
  13014. {
  13015. name: "Kaiju-ish",
  13016. height: math.unit(250, "meters")
  13017. },
  13018. {
  13019. name: "Somewhat Godly",
  13020. height: math.unit(400, "km"),
  13021. default: true
  13022. },
  13023. {
  13024. name: "Planetary",
  13025. height: math.unit(300, "megameters")
  13026. },
  13027. {
  13028. name: "Galaxy-dwarfing",
  13029. height: math.unit(450, "kiloparsecs")
  13030. },
  13031. {
  13032. name: "Universe Eater",
  13033. height: math.unit(150, "gigaparsecs")
  13034. },
  13035. {
  13036. name: "Almost Immeasurable",
  13037. height: math.unit(1.3e266, "yottaparsecs")
  13038. },
  13039. ]
  13040. ))
  13041. characterMakers.push(() => makeCharacter(
  13042. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13043. {
  13044. front: {
  13045. height: math.unit(6, "feet"),
  13046. weight: math.unit(150, "lb"),
  13047. name: "Front",
  13048. image: {
  13049. source: "./media/characters/umeko/front.svg",
  13050. extra: 1,
  13051. bottom: 0.019
  13052. }
  13053. },
  13054. frontArmored: {
  13055. height: math.unit(6, "feet"),
  13056. weight: math.unit(150, "lb"),
  13057. name: "Front (Armored)",
  13058. image: {
  13059. source: "./media/characters/umeko/front-armored.svg",
  13060. extra: 1,
  13061. bottom: 0.021
  13062. }
  13063. },
  13064. },
  13065. [
  13066. {
  13067. name: "Macro",
  13068. height: math.unit(220, "feet"),
  13069. default: true
  13070. },
  13071. {
  13072. name: "Guardian Dragon",
  13073. height: math.unit(50, "miles")
  13074. },
  13075. {
  13076. name: "Cosmic",
  13077. height: math.unit(800000, "miles")
  13078. },
  13079. ]
  13080. ))
  13081. characterMakers.push(() => makeCharacter(
  13082. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13083. {
  13084. front: {
  13085. height: math.unit(6, "feet"),
  13086. weight: math.unit(150, "lb"),
  13087. name: "Front",
  13088. image: {
  13089. source: "./media/characters/cassidy/front.svg",
  13090. extra: 1,
  13091. bottom: 0.043
  13092. }
  13093. },
  13094. },
  13095. [
  13096. {
  13097. name: "Canon Height",
  13098. height: math.unit(120, "feet"),
  13099. default: true
  13100. },
  13101. {
  13102. name: "Macro+",
  13103. height: math.unit(400, "feet")
  13104. },
  13105. {
  13106. name: "Macro++",
  13107. height: math.unit(4000, "feet")
  13108. },
  13109. {
  13110. name: "Megamacro",
  13111. height: math.unit(3, "miles")
  13112. },
  13113. ]
  13114. ))
  13115. characterMakers.push(() => makeCharacter(
  13116. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13117. {
  13118. front: {
  13119. height: math.unit(6, "feet"),
  13120. weight: math.unit(150, "lb"),
  13121. name: "Front",
  13122. image: {
  13123. source: "./media/characters/isaac/front.svg",
  13124. extra: 896 / 815,
  13125. bottom: 0.11
  13126. }
  13127. },
  13128. },
  13129. [
  13130. {
  13131. name: "Human Size",
  13132. height: math.unit(8, "feet"),
  13133. default: true
  13134. },
  13135. {
  13136. name: "Macro",
  13137. height: math.unit(400, "feet")
  13138. },
  13139. {
  13140. name: "Megamacro",
  13141. height: math.unit(50, "miles")
  13142. },
  13143. {
  13144. name: "Canon Height",
  13145. height: math.unit(200, "AU")
  13146. },
  13147. ]
  13148. ))
  13149. characterMakers.push(() => makeCharacter(
  13150. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13151. {
  13152. front: {
  13153. height: math.unit(6, "feet"),
  13154. weight: math.unit(72, "kg"),
  13155. name: "Front",
  13156. image: {
  13157. source: "./media/characters/sleekit/front.svg",
  13158. extra: 4693 / 4487,
  13159. bottom: 0.012
  13160. }
  13161. },
  13162. },
  13163. [
  13164. {
  13165. name: "Minimum Height",
  13166. height: math.unit(10, "meters")
  13167. },
  13168. {
  13169. name: "Smaller",
  13170. height: math.unit(25, "meters")
  13171. },
  13172. {
  13173. name: "Larger",
  13174. height: math.unit(38, "meters"),
  13175. default: true
  13176. },
  13177. {
  13178. name: "Maximum height",
  13179. height: math.unit(100, "meters")
  13180. },
  13181. ]
  13182. ))
  13183. characterMakers.push(() => makeCharacter(
  13184. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13185. {
  13186. front: {
  13187. height: math.unit(6, "feet"),
  13188. weight: math.unit(150, "lb"),
  13189. name: "Front",
  13190. image: {
  13191. source: "./media/characters/nillia/front.svg",
  13192. extra: 2195 / 2037,
  13193. bottom: 0.005
  13194. }
  13195. },
  13196. back: {
  13197. height: math.unit(6, "feet"),
  13198. weight: math.unit(150, "lb"),
  13199. name: "Back",
  13200. image: {
  13201. source: "./media/characters/nillia/back.svg",
  13202. extra: 2195 / 2037,
  13203. bottom: 0.005
  13204. }
  13205. },
  13206. },
  13207. [
  13208. {
  13209. name: "Canon Height",
  13210. height: math.unit(489, "feet"),
  13211. default: true
  13212. }
  13213. ]
  13214. ))
  13215. characterMakers.push(() => makeCharacter(
  13216. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13217. {
  13218. front: {
  13219. height: math.unit(6, "feet"),
  13220. weight: math.unit(150, "lb"),
  13221. name: "Front",
  13222. image: {
  13223. source: "./media/characters/mesmyriza/front.svg",
  13224. extra: 2067 / 1784,
  13225. bottom: 0.035
  13226. }
  13227. },
  13228. foot: {
  13229. height: math.unit(6 / (250 / 35), "feet"),
  13230. name: "Foot",
  13231. image: {
  13232. source: "./media/characters/mesmyriza/foot.svg"
  13233. }
  13234. },
  13235. },
  13236. [
  13237. {
  13238. name: "Macro",
  13239. height: math.unit(457, "meters"),
  13240. default: true
  13241. },
  13242. {
  13243. name: "Megamacro",
  13244. height: math.unit(8, "megameters")
  13245. },
  13246. ]
  13247. ))
  13248. characterMakers.push(() => makeCharacter(
  13249. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13250. {
  13251. front: {
  13252. height: math.unit(6, "feet"),
  13253. weight: math.unit(250, "lb"),
  13254. name: "Front",
  13255. image: {
  13256. source: "./media/characters/saudade/front.svg",
  13257. extra: 1172 / 1139,
  13258. bottom: 0.035
  13259. }
  13260. },
  13261. },
  13262. [
  13263. {
  13264. name: "Micro",
  13265. height: math.unit(3, "inches")
  13266. },
  13267. {
  13268. name: "Normal",
  13269. height: math.unit(6, "feet"),
  13270. default: true
  13271. },
  13272. {
  13273. name: "Macro",
  13274. height: math.unit(50, "feet")
  13275. },
  13276. {
  13277. name: "Megamacro",
  13278. height: math.unit(2800, "feet")
  13279. },
  13280. ]
  13281. ))
  13282. characterMakers.push(() => makeCharacter(
  13283. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13284. {
  13285. front: {
  13286. height: math.unit(5 + 4 / 12, "feet"),
  13287. weight: math.unit(100, "lb"),
  13288. name: "Front",
  13289. image: {
  13290. source: "./media/characters/keireer/front.svg",
  13291. extra: 716 / 666,
  13292. bottom: 0.05
  13293. }
  13294. },
  13295. },
  13296. [
  13297. {
  13298. name: "Normal",
  13299. height: math.unit(5 + 4 / 12, "feet"),
  13300. default: true
  13301. },
  13302. ]
  13303. ))
  13304. characterMakers.push(() => makeCharacter(
  13305. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13306. {
  13307. front: {
  13308. height: math.unit(6, "feet"),
  13309. weight: math.unit(90, "kg"),
  13310. name: "Front",
  13311. image: {
  13312. source: "./media/characters/mirja/front.svg",
  13313. extra: 1789 / 1683,
  13314. bottom: 0.05
  13315. }
  13316. },
  13317. frontDressed: {
  13318. height: math.unit(6, "feet"),
  13319. weight: math.unit(90, "lb"),
  13320. name: "Front (Dressed)",
  13321. image: {
  13322. source: "./media/characters/mirja/front-dressed.svg",
  13323. extra: 1789 / 1683,
  13324. bottom: 0.05
  13325. }
  13326. },
  13327. back: {
  13328. height: math.unit(6, "feet"),
  13329. weight: math.unit(90, "lb"),
  13330. name: "Back",
  13331. image: {
  13332. source: "./media/characters/mirja/back.svg",
  13333. extra: 953 / 917,
  13334. bottom: 0.017
  13335. }
  13336. },
  13337. },
  13338. [
  13339. {
  13340. name: "\"Incognito\"",
  13341. height: math.unit(3, "meters")
  13342. },
  13343. {
  13344. name: "Strolling Size",
  13345. height: math.unit(15, "km")
  13346. },
  13347. {
  13348. name: "Larger Strolling Size",
  13349. height: math.unit(400, "km")
  13350. },
  13351. {
  13352. name: "Preferred Size",
  13353. height: math.unit(5000, "km")
  13354. },
  13355. {
  13356. name: "True Size",
  13357. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13358. default: true
  13359. },
  13360. ]
  13361. ))
  13362. characterMakers.push(() => makeCharacter(
  13363. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13364. {
  13365. front: {
  13366. height: math.unit(15, "feet"),
  13367. weight: math.unit(880, "kg"),
  13368. name: "Front",
  13369. image: {
  13370. source: "./media/characters/nightraver/front.svg",
  13371. extra: 2444 / 2160,
  13372. bottom: 0.027
  13373. }
  13374. },
  13375. back: {
  13376. height: math.unit(15, "feet"),
  13377. weight: math.unit(880, "kg"),
  13378. name: "Back",
  13379. image: {
  13380. source: "./media/characters/nightraver/back.svg",
  13381. extra: 2309 / 2180,
  13382. bottom: 0.005
  13383. }
  13384. },
  13385. sole: {
  13386. height: math.unit(2.878, "feet"),
  13387. name: "Sole",
  13388. image: {
  13389. source: "./media/characters/nightraver/sole.svg"
  13390. }
  13391. },
  13392. foot: {
  13393. height: math.unit(2.285, "feet"),
  13394. name: "Foot",
  13395. image: {
  13396. source: "./media/characters/nightraver/foot.svg"
  13397. }
  13398. },
  13399. maw: {
  13400. height: math.unit(2.67, "feet"),
  13401. name: "Maw",
  13402. image: {
  13403. source: "./media/characters/nightraver/maw.svg"
  13404. }
  13405. },
  13406. },
  13407. [
  13408. {
  13409. name: "Micro",
  13410. height: math.unit(1, "cm")
  13411. },
  13412. {
  13413. name: "Normal",
  13414. height: math.unit(15, "feet"),
  13415. default: true
  13416. },
  13417. {
  13418. name: "Macro",
  13419. height: math.unit(300, "feet")
  13420. },
  13421. {
  13422. name: "Megamacro",
  13423. height: math.unit(300, "miles")
  13424. },
  13425. {
  13426. name: "Gigamacro",
  13427. height: math.unit(10000, "miles")
  13428. },
  13429. ]
  13430. ))
  13431. characterMakers.push(() => makeCharacter(
  13432. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13433. {
  13434. side: {
  13435. height: math.unit(2, "inches"),
  13436. weight: math.unit(5, "grams"),
  13437. name: "Side",
  13438. image: {
  13439. source: "./media/characters/arc/side.svg"
  13440. }
  13441. },
  13442. },
  13443. [
  13444. {
  13445. name: "Micro",
  13446. height: math.unit(2, "inches"),
  13447. default: true
  13448. },
  13449. ]
  13450. ))
  13451. characterMakers.push(() => makeCharacter(
  13452. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13453. {
  13454. front: {
  13455. height: math.unit(1.1938, "meters"),
  13456. weight: math.unit(54, "kg"),
  13457. name: "Front",
  13458. image: {
  13459. source: "./media/characters/nebula-shahar/front.svg",
  13460. extra: 1642 / 1436,
  13461. bottom: 0.06
  13462. }
  13463. },
  13464. },
  13465. [
  13466. {
  13467. name: "Megamicro",
  13468. height: math.unit(0.3, "mm")
  13469. },
  13470. {
  13471. name: "Micro",
  13472. height: math.unit(3, "cm")
  13473. },
  13474. {
  13475. name: "Normal",
  13476. height: math.unit(138, "cm"),
  13477. default: true
  13478. },
  13479. {
  13480. name: "Macro",
  13481. height: math.unit(30, "m")
  13482. },
  13483. ]
  13484. ))
  13485. characterMakers.push(() => makeCharacter(
  13486. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13487. {
  13488. front: {
  13489. height: math.unit(5.24, "feet"),
  13490. weight: math.unit(150, "lb"),
  13491. name: "Front",
  13492. image: {
  13493. source: "./media/characters/shayla/front.svg",
  13494. extra: 1512 / 1414,
  13495. bottom: 0.01
  13496. }
  13497. },
  13498. back: {
  13499. height: math.unit(5.24, "feet"),
  13500. weight: math.unit(150, "lb"),
  13501. name: "Back",
  13502. image: {
  13503. source: "./media/characters/shayla/back.svg",
  13504. extra: 1512 / 1414
  13505. }
  13506. },
  13507. hand: {
  13508. height: math.unit(0.7781496062992126, "feet"),
  13509. name: "Hand",
  13510. image: {
  13511. source: "./media/characters/shayla/hand.svg"
  13512. }
  13513. },
  13514. foot: {
  13515. height: math.unit(1.4206036745406823, "feet"),
  13516. name: "Foot",
  13517. image: {
  13518. source: "./media/characters/shayla/foot.svg"
  13519. }
  13520. },
  13521. },
  13522. [
  13523. {
  13524. name: "Micro",
  13525. height: math.unit(0.32, "feet")
  13526. },
  13527. {
  13528. name: "Normal",
  13529. height: math.unit(5.24, "feet"),
  13530. default: true
  13531. },
  13532. {
  13533. name: "Macro",
  13534. height: math.unit(492.12, "feet")
  13535. },
  13536. {
  13537. name: "Megamacro",
  13538. height: math.unit(186.41, "miles")
  13539. },
  13540. ]
  13541. ))
  13542. characterMakers.push(() => makeCharacter(
  13543. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13544. {
  13545. front: {
  13546. height: math.unit(2.2, "m"),
  13547. weight: math.unit(120, "kg"),
  13548. name: "Front",
  13549. image: {
  13550. source: "./media/characters/pia-jr/front.svg",
  13551. extra: 1000 / 970,
  13552. bottom: 0.035
  13553. }
  13554. },
  13555. hand: {
  13556. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13557. name: "Hand",
  13558. image: {
  13559. source: "./media/characters/pia-jr/hand.svg"
  13560. }
  13561. },
  13562. paw: {
  13563. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13564. name: "Paw",
  13565. image: {
  13566. source: "./media/characters/pia-jr/paw.svg"
  13567. }
  13568. },
  13569. },
  13570. [
  13571. {
  13572. name: "Micro",
  13573. height: math.unit(1.2, "cm")
  13574. },
  13575. {
  13576. name: "Normal",
  13577. height: math.unit(2.2, "m"),
  13578. default: true
  13579. },
  13580. {
  13581. name: "Macro",
  13582. height: math.unit(180, "m")
  13583. },
  13584. {
  13585. name: "Megamacro",
  13586. height: math.unit(420, "km")
  13587. },
  13588. ]
  13589. ))
  13590. characterMakers.push(() => makeCharacter(
  13591. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13592. {
  13593. front: {
  13594. height: math.unit(2, "m"),
  13595. weight: math.unit(115, "kg"),
  13596. name: "Front",
  13597. image: {
  13598. source: "./media/characters/pia-sr/front.svg",
  13599. extra: 760 / 730,
  13600. bottom: 0.015
  13601. }
  13602. },
  13603. back: {
  13604. height: math.unit(2, "m"),
  13605. weight: math.unit(115, "kg"),
  13606. name: "Back",
  13607. image: {
  13608. source: "./media/characters/pia-sr/back.svg",
  13609. extra: 760 / 730,
  13610. bottom: 0.01
  13611. }
  13612. },
  13613. hand: {
  13614. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13615. name: "Hand",
  13616. image: {
  13617. source: "./media/characters/pia-sr/hand.svg"
  13618. }
  13619. },
  13620. foot: {
  13621. height: math.unit(1.83, "feet"),
  13622. name: "Foot",
  13623. image: {
  13624. source: "./media/characters/pia-sr/foot.svg"
  13625. }
  13626. },
  13627. },
  13628. [
  13629. {
  13630. name: "Micro",
  13631. height: math.unit(88, "mm")
  13632. },
  13633. {
  13634. name: "Normal",
  13635. height: math.unit(2, "m"),
  13636. default: true
  13637. },
  13638. {
  13639. name: "Macro",
  13640. height: math.unit(200, "m")
  13641. },
  13642. {
  13643. name: "Megamacro",
  13644. height: math.unit(420, "km")
  13645. },
  13646. ]
  13647. ))
  13648. characterMakers.push(() => makeCharacter(
  13649. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13650. {
  13651. front: {
  13652. height: math.unit(8 + 2 / 12, "feet"),
  13653. weight: math.unit(300, "lb"),
  13654. name: "Front",
  13655. image: {
  13656. source: "./media/characters/kibibyte/front.svg",
  13657. extra: 2221 / 2098,
  13658. bottom: 0.04
  13659. }
  13660. },
  13661. },
  13662. [
  13663. {
  13664. name: "Normal",
  13665. height: math.unit(8 + 2 / 12, "feet"),
  13666. default: true
  13667. },
  13668. {
  13669. name: "Socialable Macro",
  13670. height: math.unit(50, "feet")
  13671. },
  13672. {
  13673. name: "Macro",
  13674. height: math.unit(300, "feet")
  13675. },
  13676. {
  13677. name: "Megamacro",
  13678. height: math.unit(500, "miles")
  13679. },
  13680. ]
  13681. ))
  13682. characterMakers.push(() => makeCharacter(
  13683. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13684. {
  13685. front: {
  13686. height: math.unit(6, "feet"),
  13687. weight: math.unit(150, "lb"),
  13688. name: "Front",
  13689. image: {
  13690. source: "./media/characters/felix/front.svg",
  13691. extra: 762 / 722,
  13692. bottom: 0.02
  13693. }
  13694. },
  13695. frontClothed: {
  13696. height: math.unit(6, "feet"),
  13697. weight: math.unit(150, "lb"),
  13698. name: "Front (Clothed)",
  13699. image: {
  13700. source: "./media/characters/felix/front-clothed.svg",
  13701. extra: 762 / 722,
  13702. bottom: 0.02
  13703. }
  13704. },
  13705. },
  13706. [
  13707. {
  13708. name: "Normal",
  13709. height: math.unit(6 + 8 / 12, "feet"),
  13710. default: true
  13711. },
  13712. {
  13713. name: "Macro",
  13714. height: math.unit(2600, "feet")
  13715. },
  13716. {
  13717. name: "Megamacro",
  13718. height: math.unit(450, "miles")
  13719. },
  13720. ]
  13721. ))
  13722. characterMakers.push(() => makeCharacter(
  13723. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13724. {
  13725. front: {
  13726. height: math.unit(6 + 1 / 12, "feet"),
  13727. weight: math.unit(250, "lb"),
  13728. name: "Front",
  13729. image: {
  13730. source: "./media/characters/tobo/front.svg",
  13731. extra: 608 / 586,
  13732. bottom: 0.023
  13733. }
  13734. },
  13735. back: {
  13736. height: math.unit(6 + 1 / 12, "feet"),
  13737. weight: math.unit(250, "lb"),
  13738. name: "Back",
  13739. image: {
  13740. source: "./media/characters/tobo/back.svg",
  13741. extra: 608 / 586
  13742. }
  13743. },
  13744. },
  13745. [
  13746. {
  13747. name: "Nano",
  13748. height: math.unit(2, "nm")
  13749. },
  13750. {
  13751. name: "Megamicro",
  13752. height: math.unit(0.1, "mm")
  13753. },
  13754. {
  13755. name: "Micro",
  13756. height: math.unit(1, "inch"),
  13757. default: true
  13758. },
  13759. {
  13760. name: "Human-sized",
  13761. height: math.unit(6 + 1 / 12, "feet")
  13762. },
  13763. {
  13764. name: "Macro",
  13765. height: math.unit(250, "feet")
  13766. },
  13767. {
  13768. name: "Megamacro",
  13769. height: math.unit(75, "miles")
  13770. },
  13771. {
  13772. name: "Texas-sized",
  13773. height: math.unit(750, "miles")
  13774. },
  13775. {
  13776. name: "Teramacro",
  13777. height: math.unit(50000, "miles")
  13778. },
  13779. ]
  13780. ))
  13781. characterMakers.push(() => makeCharacter(
  13782. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13783. {
  13784. front: {
  13785. height: math.unit(6, "feet"),
  13786. weight: math.unit(269, "lb"),
  13787. name: "Front",
  13788. image: {
  13789. source: "./media/characters/danny-kapowsky/front.svg",
  13790. extra: 766 / 736,
  13791. bottom: 0.044
  13792. }
  13793. },
  13794. back: {
  13795. height: math.unit(6, "feet"),
  13796. weight: math.unit(269, "lb"),
  13797. name: "Back",
  13798. image: {
  13799. source: "./media/characters/danny-kapowsky/back.svg",
  13800. extra: 797 / 760,
  13801. bottom: 0.025
  13802. }
  13803. },
  13804. },
  13805. [
  13806. {
  13807. name: "Macro",
  13808. height: math.unit(150, "feet"),
  13809. default: true
  13810. },
  13811. {
  13812. name: "Macro+",
  13813. height: math.unit(200, "feet")
  13814. },
  13815. {
  13816. name: "Macro++",
  13817. height: math.unit(300, "feet")
  13818. },
  13819. {
  13820. name: "Macro+++",
  13821. height: math.unit(400, "feet")
  13822. },
  13823. ]
  13824. ))
  13825. characterMakers.push(() => makeCharacter(
  13826. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13827. {
  13828. side: {
  13829. height: math.unit(6, "feet"),
  13830. weight: math.unit(170, "lb"),
  13831. name: "Side",
  13832. image: {
  13833. source: "./media/characters/finn/side.svg",
  13834. extra: 1953 / 1807,
  13835. bottom: 0.057
  13836. }
  13837. },
  13838. },
  13839. [
  13840. {
  13841. name: "Megamacro",
  13842. height: math.unit(14445, "feet"),
  13843. default: true
  13844. },
  13845. ]
  13846. ))
  13847. characterMakers.push(() => makeCharacter(
  13848. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13849. {
  13850. front: {
  13851. height: math.unit(5 + 6 / 12, "feet"),
  13852. weight: math.unit(125, "lb"),
  13853. name: "Front",
  13854. image: {
  13855. source: "./media/characters/roy/front.svg",
  13856. extra: 1,
  13857. bottom: 0.11
  13858. }
  13859. },
  13860. },
  13861. [
  13862. {
  13863. name: "Micro",
  13864. height: math.unit(3, "inches"),
  13865. default: true
  13866. },
  13867. {
  13868. name: "Normal",
  13869. height: math.unit(5 + 6 / 12, "feet")
  13870. },
  13871. {
  13872. name: "Lesser Macro",
  13873. height: math.unit(60, "feet")
  13874. },
  13875. {
  13876. name: "Greater Macro",
  13877. height: math.unit(120, "feet")
  13878. },
  13879. ]
  13880. ))
  13881. characterMakers.push(() => makeCharacter(
  13882. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  13883. {
  13884. front: {
  13885. height: math.unit(6, "feet"),
  13886. weight: math.unit(100, "lb"),
  13887. name: "Front",
  13888. image: {
  13889. source: "./media/characters/aevsivs/front.svg",
  13890. extra: 1,
  13891. bottom: 0.03
  13892. }
  13893. },
  13894. back: {
  13895. height: math.unit(6, "feet"),
  13896. weight: math.unit(100, "lb"),
  13897. name: "Back",
  13898. image: {
  13899. source: "./media/characters/aevsivs/back.svg"
  13900. }
  13901. },
  13902. },
  13903. [
  13904. {
  13905. name: "Micro",
  13906. height: math.unit(2, "inches"),
  13907. default: true
  13908. },
  13909. {
  13910. name: "Normal",
  13911. height: math.unit(5, "feet")
  13912. },
  13913. ]
  13914. ))
  13915. characterMakers.push(() => makeCharacter(
  13916. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  13917. {
  13918. front: {
  13919. height: math.unit(5 + 7 / 12, "feet"),
  13920. weight: math.unit(159, "lb"),
  13921. name: "Front",
  13922. image: {
  13923. source: "./media/characters/hildegard/front.svg",
  13924. extra: 289 / 269,
  13925. bottom: 7.63/297.8
  13926. }
  13927. },
  13928. back: {
  13929. height: math.unit(5 + 7 / 12, "feet"),
  13930. weight: math.unit(159, "lb"),
  13931. name: "Back",
  13932. image: {
  13933. source: "./media/characters/hildegard/back.svg",
  13934. extra: 280/260,
  13935. bottom: 2.3/282
  13936. }
  13937. },
  13938. },
  13939. [
  13940. {
  13941. name: "Normal",
  13942. height: math.unit(5 + 7 / 12, "feet"),
  13943. default: true
  13944. },
  13945. ]
  13946. ))
  13947. characterMakers.push(() => makeCharacter(
  13948. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  13949. {
  13950. bernard: {
  13951. height: math.unit(2 + 7 / 12, "feet"),
  13952. weight: math.unit(66, "lb"),
  13953. name: "Bernard",
  13954. rename: true,
  13955. image: {
  13956. source: "./media/characters/bernard-wilder/bernard.svg",
  13957. extra: 192 / 128,
  13958. bottom: 0.05
  13959. }
  13960. },
  13961. wilder: {
  13962. height: math.unit(5 + 8 / 12, "feet"),
  13963. weight: math.unit(143, "lb"),
  13964. name: "Wilder",
  13965. rename: true,
  13966. image: {
  13967. source: "./media/characters/bernard-wilder/wilder.svg",
  13968. extra: 361 / 312,
  13969. bottom: 0.02
  13970. }
  13971. },
  13972. },
  13973. [
  13974. {
  13975. name: "Normal",
  13976. height: math.unit(2 + 7 / 12, "feet"),
  13977. default: true
  13978. },
  13979. ]
  13980. ))
  13981. characterMakers.push(() => makeCharacter(
  13982. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  13983. {
  13984. anthro: {
  13985. height: math.unit(6 + 1 / 12, "feet"),
  13986. weight: math.unit(155, "lb"),
  13987. name: "Anthro",
  13988. image: {
  13989. source: "./media/characters/hearth/anthro.svg",
  13990. extra: 260 / 250,
  13991. bottom: 0.02
  13992. }
  13993. },
  13994. feral: {
  13995. height: math.unit(3.78, "feet"),
  13996. weight: math.unit(35, "kg"),
  13997. name: "Feral",
  13998. image: {
  13999. source: "./media/characters/hearth/feral.svg",
  14000. extra: 153 / 135,
  14001. bottom: 0.03
  14002. }
  14003. },
  14004. },
  14005. [
  14006. {
  14007. name: "Normal",
  14008. height: math.unit(6 + 1 / 12, "feet"),
  14009. default: true
  14010. },
  14011. ]
  14012. ))
  14013. characterMakers.push(() => makeCharacter(
  14014. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14015. {
  14016. front: {
  14017. height: math.unit(6, "feet"),
  14018. weight: math.unit(182, "lb"),
  14019. name: "Front",
  14020. image: {
  14021. source: "./media/characters/ingrid/front.svg",
  14022. extra: 294 / 268,
  14023. bottom: 0.027
  14024. }
  14025. },
  14026. },
  14027. [
  14028. {
  14029. name: "Normal",
  14030. height: math.unit(6, "feet"),
  14031. default: true
  14032. },
  14033. ]
  14034. ))
  14035. characterMakers.push(() => makeCharacter(
  14036. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14037. {
  14038. eevee: {
  14039. height: math.unit(2 + 10 / 12, "feet"),
  14040. weight: math.unit(86, "lb"),
  14041. name: "Malgam",
  14042. image: {
  14043. source: "./media/characters/malgam/eevee.svg",
  14044. extra: 218 / 180,
  14045. bottom: 0.2
  14046. }
  14047. },
  14048. sylveon: {
  14049. height: math.unit(4, "feet"),
  14050. weight: math.unit(101, "lb"),
  14051. name: "Future Malgam",
  14052. rename: true,
  14053. image: {
  14054. source: "./media/characters/malgam/sylveon.svg",
  14055. extra: 371 / 325,
  14056. bottom: 0.015
  14057. }
  14058. },
  14059. gigantamax: {
  14060. height: math.unit(50, "feet"),
  14061. name: "Gigantamax Malgam",
  14062. rename: true,
  14063. image: {
  14064. source: "./media/characters/malgam/gigantamax.svg"
  14065. }
  14066. },
  14067. },
  14068. [
  14069. {
  14070. name: "Normal",
  14071. height: math.unit(2 + 10 / 12, "feet"),
  14072. default: true
  14073. },
  14074. ]
  14075. ))
  14076. characterMakers.push(() => makeCharacter(
  14077. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14078. {
  14079. front: {
  14080. height: math.unit(5 + 11 / 12, "feet"),
  14081. weight: math.unit(188, "lb"),
  14082. name: "Front",
  14083. image: {
  14084. source: "./media/characters/fleur/front.svg",
  14085. extra: 309 / 283,
  14086. bottom: 0.007
  14087. }
  14088. },
  14089. },
  14090. [
  14091. {
  14092. name: "Normal",
  14093. height: math.unit(5 + 11 / 12, "feet"),
  14094. default: true
  14095. },
  14096. ]
  14097. ))
  14098. characterMakers.push(() => makeCharacter(
  14099. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14100. {
  14101. front: {
  14102. height: math.unit(5 + 4 / 12, "feet"),
  14103. weight: math.unit(122, "lb"),
  14104. name: "Front",
  14105. image: {
  14106. source: "./media/characters/jude/front.svg",
  14107. extra: 288 / 273,
  14108. bottom: 0.03
  14109. }
  14110. },
  14111. },
  14112. [
  14113. {
  14114. name: "Normal",
  14115. height: math.unit(5 + 4 / 12, "feet"),
  14116. default: true
  14117. },
  14118. ]
  14119. ))
  14120. characterMakers.push(() => makeCharacter(
  14121. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14122. {
  14123. front: {
  14124. height: math.unit(5 + 11 / 12, "feet"),
  14125. weight: math.unit(190, "lb"),
  14126. name: "Front",
  14127. image: {
  14128. source: "./media/characters/seara/front.svg",
  14129. extra: 1,
  14130. bottom: 0.05
  14131. }
  14132. },
  14133. },
  14134. [
  14135. {
  14136. name: "Normal",
  14137. height: math.unit(5 + 11 / 12, "feet"),
  14138. default: true
  14139. },
  14140. ]
  14141. ))
  14142. characterMakers.push(() => makeCharacter(
  14143. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14144. {
  14145. front: {
  14146. height: math.unit(16 + 5 / 12, "feet"),
  14147. weight: math.unit(524, "lb"),
  14148. name: "Front",
  14149. image: {
  14150. source: "./media/characters/caspian/front.svg",
  14151. extra: 1,
  14152. bottom: 0.04
  14153. }
  14154. },
  14155. },
  14156. [
  14157. {
  14158. name: "Normal",
  14159. height: math.unit(16 + 5 / 12, "feet"),
  14160. default: true
  14161. },
  14162. ]
  14163. ))
  14164. characterMakers.push(() => makeCharacter(
  14165. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14166. {
  14167. front: {
  14168. height: math.unit(5 + 7 / 12, "feet"),
  14169. weight: math.unit(170, "lb"),
  14170. name: "Front",
  14171. image: {
  14172. source: "./media/characters/mika/front.svg",
  14173. extra: 1,
  14174. bottom: 0.016
  14175. }
  14176. },
  14177. },
  14178. [
  14179. {
  14180. name: "Normal",
  14181. height: math.unit(5 + 7 / 12, "feet"),
  14182. default: true
  14183. },
  14184. ]
  14185. ))
  14186. characterMakers.push(() => makeCharacter(
  14187. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14188. {
  14189. front: {
  14190. height: math.unit(6 + 2 / 12, "feet"),
  14191. weight: math.unit(268, "lb"),
  14192. name: "Front",
  14193. image: {
  14194. source: "./media/characters/sol/front.svg",
  14195. extra: 247 / 231,
  14196. bottom: 0.05
  14197. }
  14198. },
  14199. },
  14200. [
  14201. {
  14202. name: "Normal",
  14203. height: math.unit(6 + 2 / 12, "feet"),
  14204. default: true
  14205. },
  14206. ]
  14207. ))
  14208. characterMakers.push(() => makeCharacter(
  14209. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14210. {
  14211. buizel: {
  14212. height: math.unit(2 + 5 / 12, "feet"),
  14213. weight: math.unit(87, "lb"),
  14214. name: "Buizel",
  14215. image: {
  14216. source: "./media/characters/umiko/buizel.svg",
  14217. extra: 172 / 157,
  14218. bottom: 0.01
  14219. }
  14220. },
  14221. floatzel: {
  14222. height: math.unit(5 + 9 / 12, "feet"),
  14223. weight: math.unit(250, "lb"),
  14224. name: "Floatzel",
  14225. image: {
  14226. source: "./media/characters/umiko/floatzel.svg",
  14227. extra: 262 / 248
  14228. }
  14229. },
  14230. },
  14231. [
  14232. {
  14233. name: "Normal",
  14234. height: math.unit(2 + 5 / 12, "feet"),
  14235. default: true
  14236. },
  14237. ]
  14238. ))
  14239. characterMakers.push(() => makeCharacter(
  14240. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14241. {
  14242. front: {
  14243. height: math.unit(6 + 2 / 12, "feet"),
  14244. weight: math.unit(146, "lb"),
  14245. name: "Front",
  14246. image: {
  14247. source: "./media/characters/iliac/front.svg",
  14248. extra: 389 / 365,
  14249. bottom: 0.035
  14250. }
  14251. },
  14252. },
  14253. [
  14254. {
  14255. name: "Normal",
  14256. height: math.unit(6 + 2 / 12, "feet"),
  14257. default: true
  14258. },
  14259. ]
  14260. ))
  14261. characterMakers.push(() => makeCharacter(
  14262. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14263. {
  14264. front: {
  14265. height: math.unit(6, "feet"),
  14266. weight: math.unit(170, "lb"),
  14267. name: "Front",
  14268. image: {
  14269. source: "./media/characters/topaz/front.svg",
  14270. extra: 317 / 303,
  14271. bottom: 0.055
  14272. }
  14273. },
  14274. },
  14275. [
  14276. {
  14277. name: "Normal",
  14278. height: math.unit(6, "feet"),
  14279. default: true
  14280. },
  14281. ]
  14282. ))
  14283. characterMakers.push(() => makeCharacter(
  14284. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14285. {
  14286. front: {
  14287. height: math.unit(5 + 11 / 12, "feet"),
  14288. weight: math.unit(144, "lb"),
  14289. name: "Front",
  14290. image: {
  14291. source: "./media/characters/gabriel/front.svg",
  14292. extra: 285 / 262,
  14293. bottom: 0.004
  14294. }
  14295. },
  14296. },
  14297. [
  14298. {
  14299. name: "Normal",
  14300. height: math.unit(5 + 11 / 12, "feet"),
  14301. default: true
  14302. },
  14303. ]
  14304. ))
  14305. characterMakers.push(() => makeCharacter(
  14306. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14307. {
  14308. side: {
  14309. height: math.unit(6 + 5 / 12, "feet"),
  14310. weight: math.unit(300, "lb"),
  14311. name: "Side",
  14312. image: {
  14313. source: "./media/characters/tempest-suicune/side.svg",
  14314. extra: 195 / 154,
  14315. bottom: 0.04
  14316. }
  14317. },
  14318. },
  14319. [
  14320. {
  14321. name: "Normal",
  14322. height: math.unit(6 + 5 / 12, "feet"),
  14323. default: true
  14324. },
  14325. ]
  14326. ))
  14327. characterMakers.push(() => makeCharacter(
  14328. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14329. {
  14330. front: {
  14331. height: math.unit(7 + 2 / 12, "feet"),
  14332. weight: math.unit(322, "lb"),
  14333. name: "Front",
  14334. image: {
  14335. source: "./media/characters/vulcan/front.svg",
  14336. extra: 154 / 147,
  14337. bottom: 0.04
  14338. }
  14339. },
  14340. },
  14341. [
  14342. {
  14343. name: "Normal",
  14344. height: math.unit(7 + 2 / 12, "feet"),
  14345. default: true
  14346. },
  14347. ]
  14348. ))
  14349. characterMakers.push(() => makeCharacter(
  14350. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14351. {
  14352. front: {
  14353. height: math.unit(5 + 10 / 12, "feet"),
  14354. weight: math.unit(264, "lb"),
  14355. name: "Front",
  14356. image: {
  14357. source: "./media/characters/gault/front.svg",
  14358. extra: 161 / 140,
  14359. bottom: 0.028
  14360. }
  14361. },
  14362. },
  14363. [
  14364. {
  14365. name: "Normal",
  14366. height: math.unit(5 + 10 / 12, "feet"),
  14367. default: true
  14368. },
  14369. ]
  14370. ))
  14371. characterMakers.push(() => makeCharacter(
  14372. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14373. {
  14374. front: {
  14375. height: math.unit(6, "feet"),
  14376. weight: math.unit(150, "lb"),
  14377. name: "Front",
  14378. image: {
  14379. source: "./media/characters/shard/front.svg",
  14380. extra: 273 / 238,
  14381. bottom: 0.02
  14382. }
  14383. },
  14384. },
  14385. [
  14386. {
  14387. name: "Normal",
  14388. height: math.unit(3 + 6 / 12, "feet"),
  14389. default: true
  14390. },
  14391. ]
  14392. ))
  14393. characterMakers.push(() => makeCharacter(
  14394. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14395. {
  14396. front: {
  14397. height: math.unit(5 + 11 / 12, "feet"),
  14398. weight: math.unit(146, "lb"),
  14399. name: "Front",
  14400. image: {
  14401. source: "./media/characters/ashe/front.svg",
  14402. extra: 400 / 373,
  14403. bottom: 0.01
  14404. }
  14405. },
  14406. },
  14407. [
  14408. {
  14409. name: "Normal",
  14410. height: math.unit(5 + 11 / 12, "feet"),
  14411. default: true
  14412. },
  14413. ]
  14414. ))
  14415. characterMakers.push(() => makeCharacter(
  14416. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14417. {
  14418. front: {
  14419. height: math.unit(5 + 5 / 12, "feet"),
  14420. weight: math.unit(135, "lb"),
  14421. name: "Front",
  14422. image: {
  14423. source: "./media/characters/beatrix/front.svg",
  14424. extra: 392 / 379,
  14425. bottom: 0.01
  14426. }
  14427. },
  14428. },
  14429. [
  14430. {
  14431. name: "Normal",
  14432. height: math.unit(6, "feet"),
  14433. default: true
  14434. },
  14435. ]
  14436. ))
  14437. characterMakers.push(() => makeCharacter(
  14438. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14439. {
  14440. front: {
  14441. height: math.unit(6, "feet"),
  14442. weight: math.unit(150, "lb"),
  14443. name: "Front",
  14444. image: {
  14445. source: "./media/characters/ignatius/front.svg",
  14446. extra: 245 / 222,
  14447. bottom: 0.01
  14448. }
  14449. },
  14450. },
  14451. [
  14452. {
  14453. name: "Normal",
  14454. height: math.unit(5 + 5 / 12, "feet"),
  14455. default: true
  14456. },
  14457. ]
  14458. ))
  14459. characterMakers.push(() => makeCharacter(
  14460. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14461. {
  14462. front: {
  14463. height: math.unit(6 + 2 / 12, "feet"),
  14464. weight: math.unit(138, "lb"),
  14465. name: "Front",
  14466. image: {
  14467. source: "./media/characters/mei-li/front.svg",
  14468. extra: 237 / 229,
  14469. bottom: 0.03
  14470. }
  14471. },
  14472. },
  14473. [
  14474. {
  14475. name: "Normal",
  14476. height: math.unit(6 + 2 / 12, "feet"),
  14477. default: true
  14478. },
  14479. ]
  14480. ))
  14481. characterMakers.push(() => makeCharacter(
  14482. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14483. {
  14484. front: {
  14485. height: math.unit(2 + 4 / 12, "feet"),
  14486. weight: math.unit(62, "lb"),
  14487. name: "Front",
  14488. image: {
  14489. source: "./media/characters/puru/front.svg",
  14490. extra: 206 / 149,
  14491. bottom: 0.06
  14492. }
  14493. },
  14494. },
  14495. [
  14496. {
  14497. name: "Normal",
  14498. height: math.unit(2 + 4 / 12, "feet"),
  14499. default: true
  14500. },
  14501. ]
  14502. ))
  14503. characterMakers.push(() => makeCharacter(
  14504. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14505. {
  14506. taur: {
  14507. height: math.unit(11, "feet"),
  14508. weight: math.unit(500, "lb"),
  14509. name: "Taur",
  14510. image: {
  14511. source: "./media/characters/kee/taur.svg",
  14512. extra: 1,
  14513. bottom: 0.04
  14514. }
  14515. },
  14516. },
  14517. [
  14518. {
  14519. name: "Normal",
  14520. height: math.unit(11, "feet"),
  14521. default: true
  14522. },
  14523. ]
  14524. ))
  14525. characterMakers.push(() => makeCharacter(
  14526. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14527. {
  14528. anthro: {
  14529. height: math.unit(7, "feet"),
  14530. weight: math.unit(190, "lb"),
  14531. name: "Anthro",
  14532. image: {
  14533. source: "./media/characters/cobalt-dracha/anthro.svg",
  14534. extra: 231 / 225,
  14535. bottom: 0.04
  14536. }
  14537. },
  14538. feral: {
  14539. height: math.unit(9 + 7 / 12, "feet"),
  14540. weight: math.unit(294, "lb"),
  14541. name: "Feral",
  14542. image: {
  14543. source: "./media/characters/cobalt-dracha/feral.svg",
  14544. extra: 692 / 633,
  14545. bottom: 0.05
  14546. }
  14547. },
  14548. },
  14549. [
  14550. {
  14551. name: "Normal",
  14552. height: math.unit(7, "feet"),
  14553. default: true
  14554. },
  14555. ]
  14556. ))
  14557. characterMakers.push(() => makeCharacter(
  14558. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14559. {
  14560. fallen: {
  14561. height: math.unit(11 + 8 / 12, "feet"),
  14562. weight: math.unit(485, "lb"),
  14563. name: "Java (Fallen)",
  14564. rename: true,
  14565. image: {
  14566. source: "./media/characters/java/fallen.svg",
  14567. extra: 226 / 208,
  14568. bottom: 0.005
  14569. }
  14570. },
  14571. godkin: {
  14572. height: math.unit(10 + 6 / 12, "feet"),
  14573. weight: math.unit(328, "lb"),
  14574. name: "Java (Godkin)",
  14575. rename: true,
  14576. image: {
  14577. source: "./media/characters/java/godkin.svg",
  14578. extra: 270 / 262,
  14579. bottom: 0.02
  14580. }
  14581. },
  14582. },
  14583. [
  14584. {
  14585. name: "Normal",
  14586. height: math.unit(11 + 8 / 12, "feet"),
  14587. default: true
  14588. },
  14589. ]
  14590. ))
  14591. characterMakers.push(() => makeCharacter(
  14592. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14593. {
  14594. front: {
  14595. height: math.unit(7 + 8 / 12, "feet"),
  14596. weight: math.unit(320, "lb"),
  14597. name: "Front",
  14598. image: {
  14599. source: "./media/characters/skoll/front.svg",
  14600. extra: 232 / 220,
  14601. bottom: 0.02
  14602. }
  14603. },
  14604. },
  14605. [
  14606. {
  14607. name: "Normal",
  14608. height: math.unit(7 + 8 / 12, "feet"),
  14609. default: true
  14610. },
  14611. ]
  14612. ))
  14613. characterMakers.push(() => makeCharacter(
  14614. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14615. {
  14616. front: {
  14617. height: math.unit(5 + 9 / 12, "feet"),
  14618. weight: math.unit(170, "lb"),
  14619. name: "Front",
  14620. image: {
  14621. source: "./media/characters/purna/front.svg",
  14622. extra: 239 / 229,
  14623. bottom: 0.01
  14624. }
  14625. },
  14626. },
  14627. [
  14628. {
  14629. name: "Normal",
  14630. height: math.unit(5 + 9 / 12, "feet"),
  14631. default: true
  14632. },
  14633. ]
  14634. ))
  14635. characterMakers.push(() => makeCharacter(
  14636. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14637. {
  14638. front: {
  14639. height: math.unit(5 + 9 / 12, "feet"),
  14640. weight: math.unit(142, "lb"),
  14641. name: "Front",
  14642. image: {
  14643. source: "./media/characters/kuva/front.svg",
  14644. extra: 281 / 271,
  14645. bottom: 0.006
  14646. }
  14647. },
  14648. },
  14649. [
  14650. {
  14651. name: "Normal",
  14652. height: math.unit(5 + 9 / 12, "feet"),
  14653. default: true
  14654. },
  14655. ]
  14656. ))
  14657. characterMakers.push(() => makeCharacter(
  14658. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14659. {
  14660. anthro: {
  14661. height: math.unit(9 + 2 / 12, "feet"),
  14662. weight: math.unit(270, "lb"),
  14663. name: "Anthro",
  14664. image: {
  14665. source: "./media/characters/embra/anthro.svg",
  14666. extra: 200 / 187,
  14667. bottom: 0.02
  14668. }
  14669. },
  14670. feral: {
  14671. height: math.unit(18 + 8 / 12, "feet"),
  14672. weight: math.unit(576, "lb"),
  14673. name: "Feral",
  14674. image: {
  14675. source: "./media/characters/embra/feral.svg",
  14676. extra: 152 / 137,
  14677. bottom: 0.037
  14678. }
  14679. },
  14680. },
  14681. [
  14682. {
  14683. name: "Normal",
  14684. height: math.unit(9 + 2 / 12, "feet"),
  14685. default: true
  14686. },
  14687. ]
  14688. ))
  14689. characterMakers.push(() => makeCharacter(
  14690. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14691. {
  14692. anthro: {
  14693. height: math.unit(10 + 9 / 12, "feet"),
  14694. weight: math.unit(224, "lb"),
  14695. name: "Anthro",
  14696. image: {
  14697. source: "./media/characters/grottos/anthro.svg",
  14698. extra: 350 / 332,
  14699. bottom: 0.045
  14700. }
  14701. },
  14702. feral: {
  14703. height: math.unit(20 + 7 / 12, "feet"),
  14704. weight: math.unit(629, "lb"),
  14705. name: "Feral",
  14706. image: {
  14707. source: "./media/characters/grottos/feral.svg",
  14708. extra: 207 / 190,
  14709. bottom: 0.05
  14710. }
  14711. },
  14712. },
  14713. [
  14714. {
  14715. name: "Normal",
  14716. height: math.unit(10 + 9 / 12, "feet"),
  14717. default: true
  14718. },
  14719. ]
  14720. ))
  14721. characterMakers.push(() => makeCharacter(
  14722. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14723. {
  14724. anthro: {
  14725. height: math.unit(9 + 6 / 12, "feet"),
  14726. weight: math.unit(298, "lb"),
  14727. name: "Anthro",
  14728. image: {
  14729. source: "./media/characters/frifna/anthro.svg",
  14730. extra: 282 / 269,
  14731. bottom: 0.015
  14732. }
  14733. },
  14734. feral: {
  14735. height: math.unit(16 + 2 / 12, "feet"),
  14736. weight: math.unit(624, "lb"),
  14737. name: "Feral",
  14738. image: {
  14739. source: "./media/characters/frifna/feral.svg"
  14740. }
  14741. },
  14742. },
  14743. [
  14744. {
  14745. name: "Normal",
  14746. height: math.unit(9 + 6 / 12, "feet"),
  14747. default: true
  14748. },
  14749. ]
  14750. ))
  14751. characterMakers.push(() => makeCharacter(
  14752. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14753. {
  14754. front: {
  14755. height: math.unit(6 + 2 / 12, "feet"),
  14756. weight: math.unit(168, "lb"),
  14757. name: "Front",
  14758. image: {
  14759. source: "./media/characters/elise/front.svg",
  14760. extra: 276 / 271
  14761. }
  14762. },
  14763. },
  14764. [
  14765. {
  14766. name: "Normal",
  14767. height: math.unit(6 + 2 / 12, "feet"),
  14768. default: true
  14769. },
  14770. ]
  14771. ))
  14772. characterMakers.push(() => makeCharacter(
  14773. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14774. {
  14775. front: {
  14776. height: math.unit(5 + 10 / 12, "feet"),
  14777. weight: math.unit(210, "lb"),
  14778. name: "Front",
  14779. image: {
  14780. source: "./media/characters/glade/front.svg",
  14781. extra: 258 / 247,
  14782. bottom: 0.008
  14783. }
  14784. },
  14785. },
  14786. [
  14787. {
  14788. name: "Normal",
  14789. height: math.unit(5 + 10 / 12, "feet"),
  14790. default: true
  14791. },
  14792. ]
  14793. ))
  14794. characterMakers.push(() => makeCharacter(
  14795. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14796. {
  14797. front: {
  14798. height: math.unit(5 + 10 / 12, "feet"),
  14799. weight: math.unit(129, "lb"),
  14800. name: "Front",
  14801. image: {
  14802. source: "./media/characters/rina/front.svg",
  14803. extra: 266 / 255,
  14804. bottom: 0.005
  14805. }
  14806. },
  14807. },
  14808. [
  14809. {
  14810. name: "Normal",
  14811. height: math.unit(5 + 10 / 12, "feet"),
  14812. default: true
  14813. },
  14814. ]
  14815. ))
  14816. characterMakers.push(() => makeCharacter(
  14817. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14818. {
  14819. front: {
  14820. height: math.unit(6 + 1 / 12, "feet"),
  14821. weight: math.unit(192, "lb"),
  14822. name: "Front",
  14823. image: {
  14824. source: "./media/characters/veronica/front.svg",
  14825. extra: 319 / 309,
  14826. bottom: 0.005
  14827. }
  14828. },
  14829. },
  14830. [
  14831. {
  14832. name: "Normal",
  14833. height: math.unit(6 + 1 / 12, "feet"),
  14834. default: true
  14835. },
  14836. ]
  14837. ))
  14838. characterMakers.push(() => makeCharacter(
  14839. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14840. {
  14841. front: {
  14842. height: math.unit(9 + 3 / 12, "feet"),
  14843. weight: math.unit(1100, "lb"),
  14844. name: "Front",
  14845. image: {
  14846. source: "./media/characters/braxton/front.svg",
  14847. extra: 1057 / 984,
  14848. bottom: 0.05
  14849. }
  14850. },
  14851. },
  14852. [
  14853. {
  14854. name: "Normal",
  14855. height: math.unit(9 + 3 / 12, "feet")
  14856. },
  14857. {
  14858. name: "Giant",
  14859. height: math.unit(300, "feet"),
  14860. default: true
  14861. },
  14862. {
  14863. name: "Macro",
  14864. height: math.unit(700, "feet")
  14865. },
  14866. {
  14867. name: "Megamacro",
  14868. height: math.unit(6000, "feet")
  14869. },
  14870. ]
  14871. ))
  14872. characterMakers.push(() => makeCharacter(
  14873. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14874. {
  14875. front: {
  14876. height: math.unit(6 + 7 / 12, "feet"),
  14877. weight: math.unit(150, "lb"),
  14878. name: "Front",
  14879. image: {
  14880. source: "./media/characters/blue-feyonics/front.svg",
  14881. extra: 1403 / 1306,
  14882. bottom: 0.047
  14883. }
  14884. },
  14885. },
  14886. [
  14887. {
  14888. name: "Normal",
  14889. height: math.unit(6 + 7 / 12, "feet"),
  14890. default: true
  14891. },
  14892. ]
  14893. ))
  14894. characterMakers.push(() => makeCharacter(
  14895. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  14896. {
  14897. front: {
  14898. height: math.unit(1.8, "meters"),
  14899. weight: math.unit(60, "kg"),
  14900. name: "Front",
  14901. image: {
  14902. source: "./media/characters/maxwell/front.svg",
  14903. extra: 2060 / 1873
  14904. }
  14905. },
  14906. },
  14907. [
  14908. {
  14909. name: "Micro",
  14910. height: math.unit(1, "mm")
  14911. },
  14912. {
  14913. name: "Normal",
  14914. height: math.unit(1.8, "meter"),
  14915. default: true
  14916. },
  14917. {
  14918. name: "Macro",
  14919. height: math.unit(30, "meters")
  14920. },
  14921. {
  14922. name: "Megamacro",
  14923. height: math.unit(10, "km")
  14924. },
  14925. ]
  14926. ))
  14927. characterMakers.push(() => makeCharacter(
  14928. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  14929. {
  14930. front: {
  14931. height: math.unit(6, "feet"),
  14932. weight: math.unit(150, "lb"),
  14933. name: "Front",
  14934. image: {
  14935. source: "./media/characters/jack/front.svg",
  14936. extra: 1754 / 1640,
  14937. bottom: 0.01
  14938. }
  14939. },
  14940. },
  14941. [
  14942. {
  14943. name: "Normal",
  14944. height: math.unit(80000, "feet"),
  14945. default: true
  14946. },
  14947. {
  14948. name: "Max size",
  14949. height: math.unit(10, "lightyears")
  14950. },
  14951. ]
  14952. ))
  14953. characterMakers.push(() => makeCharacter(
  14954. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  14955. {
  14956. upright: {
  14957. height: math.unit(7, "feet"),
  14958. weight: math.unit(170, "lb"),
  14959. name: "Upright",
  14960. image: {
  14961. source: "./media/characters/cafat/upright.svg",
  14962. bottom: 0.01
  14963. }
  14964. },
  14965. uprightFull: {
  14966. height: math.unit(7, "feet"),
  14967. weight: math.unit(170, "lb"),
  14968. name: "Upright (Full)",
  14969. image: {
  14970. source: "./media/characters/cafat/upright-full.svg",
  14971. bottom: 0.01
  14972. }
  14973. },
  14974. side: {
  14975. height: math.unit(5, "feet"),
  14976. weight: math.unit(150, "lb"),
  14977. name: "Side",
  14978. image: {
  14979. source: "./media/characters/cafat/side.svg"
  14980. }
  14981. },
  14982. },
  14983. [
  14984. {
  14985. name: "Small",
  14986. height: math.unit(7, "feet"),
  14987. default: true
  14988. },
  14989. {
  14990. name: "Large",
  14991. height: math.unit(15.5, "feet")
  14992. },
  14993. ]
  14994. ))
  14995. characterMakers.push(() => makeCharacter(
  14996. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  14997. {
  14998. front: {
  14999. height: math.unit(6, "feet"),
  15000. weight: math.unit(150, "lb"),
  15001. name: "Front",
  15002. image: {
  15003. source: "./media/characters/verin-raharra/front.svg",
  15004. extra: 5019 / 4835,
  15005. bottom: 0.023
  15006. }
  15007. },
  15008. },
  15009. [
  15010. {
  15011. name: "Normal",
  15012. height: math.unit(7 + 5 / 12, "feet"),
  15013. default: true
  15014. },
  15015. {
  15016. name: "Upsized",
  15017. height: math.unit(20, "feet")
  15018. },
  15019. ]
  15020. ))
  15021. characterMakers.push(() => makeCharacter(
  15022. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15023. {
  15024. front: {
  15025. height: math.unit(7, "feet"),
  15026. weight: math.unit(230, "lb"),
  15027. name: "Front",
  15028. image: {
  15029. source: "./media/characters/nakata/front.svg",
  15030. extra: 1.005,
  15031. bottom: 0.01
  15032. }
  15033. },
  15034. },
  15035. [
  15036. {
  15037. name: "Normal",
  15038. height: math.unit(7, "feet"),
  15039. default: true
  15040. },
  15041. {
  15042. name: "Big",
  15043. height: math.unit(14, "feet")
  15044. },
  15045. {
  15046. name: "Macro",
  15047. height: math.unit(400, "feet")
  15048. },
  15049. ]
  15050. ))
  15051. characterMakers.push(() => makeCharacter(
  15052. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15053. {
  15054. front: {
  15055. height: math.unit(4.91, "feet"),
  15056. weight: math.unit(100, "lb"),
  15057. name: "Front",
  15058. image: {
  15059. source: "./media/characters/lily/front.svg",
  15060. extra: 1585 / 1415,
  15061. bottom: 0.02
  15062. }
  15063. },
  15064. },
  15065. [
  15066. {
  15067. name: "Normal",
  15068. height: math.unit(4.91, "feet"),
  15069. default: true
  15070. },
  15071. ]
  15072. ))
  15073. characterMakers.push(() => makeCharacter(
  15074. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15075. {
  15076. laying: {
  15077. height: math.unit(4 + 4 / 12, "feet"),
  15078. weight: math.unit(600, "lb"),
  15079. name: "Laying",
  15080. image: {
  15081. source: "./media/characters/sheila/laying.svg",
  15082. extra: 1333 / 1265,
  15083. bottom: 0.16
  15084. }
  15085. },
  15086. },
  15087. [
  15088. {
  15089. name: "Normal",
  15090. height: math.unit(4 + 4 / 12, "feet"),
  15091. default: true
  15092. },
  15093. ]
  15094. ))
  15095. characterMakers.push(() => makeCharacter(
  15096. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15097. {
  15098. front: {
  15099. height: math.unit(6, "feet"),
  15100. weight: math.unit(190, "lb"),
  15101. name: "Front",
  15102. image: {
  15103. source: "./media/characters/sax/front.svg",
  15104. extra: 1187 / 973,
  15105. bottom: 0.042
  15106. }
  15107. },
  15108. },
  15109. [
  15110. {
  15111. name: "Micro",
  15112. height: math.unit(4, "inches"),
  15113. default: true
  15114. },
  15115. ]
  15116. ))
  15117. characterMakers.push(() => makeCharacter(
  15118. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15119. {
  15120. front: {
  15121. height: math.unit(6, "feet"),
  15122. weight: math.unit(150, "lb"),
  15123. name: "Front",
  15124. image: {
  15125. source: "./media/characters/pandora/front.svg",
  15126. extra: 2720 / 2556,
  15127. bottom: 0.015
  15128. }
  15129. },
  15130. back: {
  15131. height: math.unit(6, "feet"),
  15132. weight: math.unit(150, "lb"),
  15133. name: "Back",
  15134. image: {
  15135. source: "./media/characters/pandora/back.svg",
  15136. extra: 2720 / 2556,
  15137. bottom: 0.01
  15138. }
  15139. },
  15140. beans: {
  15141. height: math.unit(6 / 8, "feet"),
  15142. name: "Beans",
  15143. image: {
  15144. source: "./media/characters/pandora/beans.svg"
  15145. }
  15146. },
  15147. skirt: {
  15148. height: math.unit(6, "feet"),
  15149. weight: math.unit(150, "lb"),
  15150. name: "Skirt",
  15151. image: {
  15152. source: "./media/characters/pandora/skirt.svg",
  15153. extra: 1622 / 1525,
  15154. bottom: 0.015
  15155. }
  15156. },
  15157. hoodie: {
  15158. height: math.unit(6, "feet"),
  15159. weight: math.unit(150, "lb"),
  15160. name: "Hoodie",
  15161. image: {
  15162. source: "./media/characters/pandora/hoodie.svg",
  15163. extra: 1622 / 1525,
  15164. bottom: 0.015
  15165. }
  15166. },
  15167. casual: {
  15168. height: math.unit(6, "feet"),
  15169. weight: math.unit(150, "lb"),
  15170. name: "Casual",
  15171. image: {
  15172. source: "./media/characters/pandora/casual.svg",
  15173. extra: 1622 / 1525,
  15174. bottom: 0.015
  15175. }
  15176. },
  15177. },
  15178. [
  15179. {
  15180. name: "Normal",
  15181. height: math.unit(6, "feet")
  15182. },
  15183. {
  15184. name: "Big Steppy",
  15185. height: math.unit(1, "km"),
  15186. default: true
  15187. },
  15188. ]
  15189. ))
  15190. characterMakers.push(() => makeCharacter(
  15191. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15192. {
  15193. side: {
  15194. height: math.unit(10, "feet"),
  15195. weight: math.unit(800, "kg"),
  15196. name: "Side",
  15197. image: {
  15198. source: "./media/characters/venio-darcony/side.svg",
  15199. extra: 1373 / 1003,
  15200. bottom: 0.037
  15201. }
  15202. },
  15203. front: {
  15204. height: math.unit(19, "feet"),
  15205. weight: math.unit(800, "kg"),
  15206. name: "Front",
  15207. image: {
  15208. source: "./media/characters/venio-darcony/front.svg"
  15209. }
  15210. },
  15211. back: {
  15212. height: math.unit(19, "feet"),
  15213. weight: math.unit(800, "kg"),
  15214. name: "Back",
  15215. image: {
  15216. source: "./media/characters/venio-darcony/back.svg"
  15217. }
  15218. },
  15219. sideNsfw: {
  15220. height: math.unit(10, "feet"),
  15221. weight: math.unit(800, "kg"),
  15222. name: "Side (NSFW)",
  15223. image: {
  15224. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15225. extra: 1373 / 1003,
  15226. bottom: 0.037
  15227. }
  15228. },
  15229. frontNsfw: {
  15230. height: math.unit(19, "feet"),
  15231. weight: math.unit(800, "kg"),
  15232. name: "Front (NSFW)",
  15233. image: {
  15234. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15235. }
  15236. },
  15237. backNsfw: {
  15238. height: math.unit(19, "feet"),
  15239. weight: math.unit(800, "kg"),
  15240. name: "Back (NSFW)",
  15241. image: {
  15242. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15243. }
  15244. },
  15245. sideArmored: {
  15246. height: math.unit(10, "feet"),
  15247. weight: math.unit(800, "kg"),
  15248. name: "Side (Armored)",
  15249. image: {
  15250. source: "./media/characters/venio-darcony/side-armored.svg",
  15251. extra: 1373 / 1003,
  15252. bottom: 0.037
  15253. }
  15254. },
  15255. frontArmored: {
  15256. height: math.unit(19, "feet"),
  15257. weight: math.unit(900, "kg"),
  15258. name: "Front (Armored)",
  15259. image: {
  15260. source: "./media/characters/venio-darcony/front-armored.svg"
  15261. }
  15262. },
  15263. backArmored: {
  15264. height: math.unit(19, "feet"),
  15265. weight: math.unit(900, "kg"),
  15266. name: "Back (Armored)",
  15267. image: {
  15268. source: "./media/characters/venio-darcony/back-armored.svg"
  15269. }
  15270. },
  15271. sword: {
  15272. height: math.unit(10, "feet"),
  15273. weight: math.unit(50, "lb"),
  15274. name: "Sword",
  15275. image: {
  15276. source: "./media/characters/venio-darcony/sword.svg"
  15277. }
  15278. },
  15279. },
  15280. [
  15281. {
  15282. name: "Normal",
  15283. height: math.unit(10, "feet")
  15284. },
  15285. {
  15286. name: "Macro",
  15287. height: math.unit(130, "feet"),
  15288. default: true
  15289. },
  15290. {
  15291. name: "Macro+",
  15292. height: math.unit(240, "feet")
  15293. },
  15294. ]
  15295. ))
  15296. characterMakers.push(() => makeCharacter(
  15297. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15298. {
  15299. front: {
  15300. height: math.unit(6, "feet"),
  15301. weight: math.unit(150, "lb"),
  15302. name: "Front",
  15303. image: {
  15304. source: "./media/characters/veski/front.svg",
  15305. extra: 1299 / 1225,
  15306. bottom: 0.04
  15307. }
  15308. },
  15309. back: {
  15310. height: math.unit(6, "feet"),
  15311. weight: math.unit(150, "lb"),
  15312. name: "Back",
  15313. image: {
  15314. source: "./media/characters/veski/back.svg",
  15315. extra: 1299 / 1225,
  15316. bottom: 0.008
  15317. }
  15318. },
  15319. maw: {
  15320. height: math.unit(1.5 * 1.21, "feet"),
  15321. name: "Maw",
  15322. image: {
  15323. source: "./media/characters/veski/maw.svg"
  15324. }
  15325. },
  15326. },
  15327. [
  15328. {
  15329. name: "Macro",
  15330. height: math.unit(2, "km"),
  15331. default: true
  15332. },
  15333. ]
  15334. ))
  15335. characterMakers.push(() => makeCharacter(
  15336. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15337. {
  15338. front: {
  15339. height: math.unit(5 + 7 / 12, "feet"),
  15340. name: "Front",
  15341. image: {
  15342. source: "./media/characters/isabelle/front.svg",
  15343. extra: 2130 / 1976,
  15344. bottom: 0.05
  15345. }
  15346. },
  15347. },
  15348. [
  15349. {
  15350. name: "Supermicro",
  15351. height: math.unit(10, "micrometers")
  15352. },
  15353. {
  15354. name: "Micro",
  15355. height: math.unit(1, "inch")
  15356. },
  15357. {
  15358. name: "Tiny",
  15359. height: math.unit(5, "inches")
  15360. },
  15361. {
  15362. name: "Standard",
  15363. height: math.unit(5 + 7 / 12, "inches")
  15364. },
  15365. {
  15366. name: "Macro",
  15367. height: math.unit(80, "meters"),
  15368. default: true
  15369. },
  15370. {
  15371. name: "Megamacro",
  15372. height: math.unit(250, "meters")
  15373. },
  15374. {
  15375. name: "Gigamacro",
  15376. height: math.unit(5, "km")
  15377. },
  15378. {
  15379. name: "Cosmic",
  15380. height: math.unit(2.5e6, "miles")
  15381. },
  15382. ]
  15383. ))
  15384. characterMakers.push(() => makeCharacter(
  15385. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15386. {
  15387. front: {
  15388. height: math.unit(6, "feet"),
  15389. weight: math.unit(150, "lb"),
  15390. name: "Front",
  15391. image: {
  15392. source: "./media/characters/hanzo/front.svg",
  15393. extra: 374 / 344,
  15394. bottom: 0.02
  15395. }
  15396. },
  15397. },
  15398. [
  15399. {
  15400. name: "Normal",
  15401. height: math.unit(8, "feet"),
  15402. default: true
  15403. },
  15404. ]
  15405. ))
  15406. characterMakers.push(() => makeCharacter(
  15407. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15408. {
  15409. front: {
  15410. height: math.unit(7, "feet"),
  15411. weight: math.unit(130, "lb"),
  15412. name: "Front",
  15413. image: {
  15414. source: "./media/characters/anna/front.svg",
  15415. extra: 169 / 145,
  15416. bottom: 0.06
  15417. }
  15418. },
  15419. full: {
  15420. height: math.unit(4.96, "feet"),
  15421. weight: math.unit(220, "lb"),
  15422. name: "Full",
  15423. image: {
  15424. source: "./media/characters/anna/full.svg",
  15425. extra: 138 / 114,
  15426. bottom: 0.15
  15427. }
  15428. },
  15429. tongue: {
  15430. height: math.unit(2.53, "feet"),
  15431. name: "Tongue",
  15432. image: {
  15433. source: "./media/characters/anna/tongue.svg"
  15434. }
  15435. },
  15436. },
  15437. [
  15438. {
  15439. name: "Normal",
  15440. height: math.unit(7, "feet"),
  15441. default: true
  15442. },
  15443. ]
  15444. ))
  15445. characterMakers.push(() => makeCharacter(
  15446. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15447. {
  15448. front: {
  15449. height: math.unit(7, "feet"),
  15450. weight: math.unit(150, "lb"),
  15451. name: "Front",
  15452. image: {
  15453. source: "./media/characters/ian-corvid/front.svg",
  15454. extra: 150 / 142,
  15455. bottom: 0.02
  15456. }
  15457. },
  15458. back: {
  15459. height: math.unit(7, "feet"),
  15460. weight: math.unit(150, "lb"),
  15461. name: "Back",
  15462. image: {
  15463. source: "./media/characters/ian-corvid/back.svg",
  15464. extra: 150 / 143,
  15465. bottom: 0.01
  15466. }
  15467. },
  15468. stomping: {
  15469. height: math.unit(7, "feet"),
  15470. weight: math.unit(150, "lb"),
  15471. name: "Stomping",
  15472. image: {
  15473. source: "./media/characters/ian-corvid/stomping.svg",
  15474. extra: 76 / 72
  15475. }
  15476. },
  15477. sitting: {
  15478. height: math.unit(7 / 1.8, "feet"),
  15479. weight: math.unit(150, "lb"),
  15480. name: "Sitting",
  15481. image: {
  15482. source: "./media/characters/ian-corvid/sitting.svg",
  15483. extra: 1400 / 1269,
  15484. bottom: 0.15
  15485. }
  15486. },
  15487. },
  15488. [
  15489. {
  15490. name: "Tiny Microw",
  15491. height: math.unit(1, "inch")
  15492. },
  15493. {
  15494. name: "Microw",
  15495. height: math.unit(6, "inches")
  15496. },
  15497. {
  15498. name: "Crow",
  15499. height: math.unit(7 + 1 / 12, "feet"),
  15500. default: true
  15501. },
  15502. {
  15503. name: "Macrow",
  15504. height: math.unit(176, "feet")
  15505. },
  15506. ]
  15507. ))
  15508. characterMakers.push(() => makeCharacter(
  15509. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15510. {
  15511. front: {
  15512. height: math.unit(5 + 7 / 12, "feet"),
  15513. weight: math.unit(147, "lb"),
  15514. name: "Front",
  15515. image: {
  15516. source: "./media/characters/natalie-kellon/front.svg",
  15517. extra: 1214 / 1141,
  15518. bottom: 0.02
  15519. }
  15520. },
  15521. },
  15522. [
  15523. {
  15524. name: "Micro",
  15525. height: math.unit(1 / 16, "inch")
  15526. },
  15527. {
  15528. name: "Tiny",
  15529. height: math.unit(4, "inches")
  15530. },
  15531. {
  15532. name: "Normal",
  15533. height: math.unit(5 + 7 / 12, "feet"),
  15534. default: true
  15535. },
  15536. {
  15537. name: "Amazon",
  15538. height: math.unit(12, "feet")
  15539. },
  15540. {
  15541. name: "Giantess",
  15542. height: math.unit(160, "meters")
  15543. },
  15544. {
  15545. name: "Titaness",
  15546. height: math.unit(800, "meters")
  15547. },
  15548. ]
  15549. ))
  15550. characterMakers.push(() => makeCharacter(
  15551. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15552. {
  15553. front: {
  15554. height: math.unit(6, "feet"),
  15555. weight: math.unit(150, "lb"),
  15556. name: "Front",
  15557. image: {
  15558. source: "./media/characters/alluria/front.svg",
  15559. extra: 806 / 738,
  15560. bottom: 0.01
  15561. }
  15562. },
  15563. side: {
  15564. height: math.unit(6, "feet"),
  15565. weight: math.unit(150, "lb"),
  15566. name: "Side",
  15567. image: {
  15568. source: "./media/characters/alluria/side.svg",
  15569. extra: 800 / 750,
  15570. }
  15571. },
  15572. back: {
  15573. height: math.unit(6, "feet"),
  15574. weight: math.unit(150, "lb"),
  15575. name: "Back",
  15576. image: {
  15577. source: "./media/characters/alluria/back.svg",
  15578. extra: 806 / 738,
  15579. }
  15580. },
  15581. frontMaid: {
  15582. height: math.unit(6, "feet"),
  15583. weight: math.unit(150, "lb"),
  15584. name: "Front (Maid)",
  15585. image: {
  15586. source: "./media/characters/alluria/front-maid.svg",
  15587. extra: 806 / 738,
  15588. bottom: 0.01
  15589. }
  15590. },
  15591. sideMaid: {
  15592. height: math.unit(6, "feet"),
  15593. weight: math.unit(150, "lb"),
  15594. name: "Side (Maid)",
  15595. image: {
  15596. source: "./media/characters/alluria/side-maid.svg",
  15597. extra: 800 / 750,
  15598. bottom: 0.005
  15599. }
  15600. },
  15601. backMaid: {
  15602. height: math.unit(6, "feet"),
  15603. weight: math.unit(150, "lb"),
  15604. name: "Back (Maid)",
  15605. image: {
  15606. source: "./media/characters/alluria/back-maid.svg",
  15607. extra: 806 / 738,
  15608. }
  15609. },
  15610. },
  15611. [
  15612. {
  15613. name: "Micro",
  15614. height: math.unit(6, "inches"),
  15615. default: true
  15616. },
  15617. ]
  15618. ))
  15619. characterMakers.push(() => makeCharacter(
  15620. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15621. {
  15622. front: {
  15623. height: math.unit(6, "feet"),
  15624. weight: math.unit(150, "lb"),
  15625. name: "Front",
  15626. image: {
  15627. source: "./media/characters/kyle/front.svg",
  15628. extra: 1069 / 962,
  15629. bottom: 77.228 / 1727.45
  15630. }
  15631. },
  15632. },
  15633. [
  15634. {
  15635. name: "Macro",
  15636. height: math.unit(150, "feet"),
  15637. default: true
  15638. },
  15639. ]
  15640. ))
  15641. characterMakers.push(() => makeCharacter(
  15642. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15643. {
  15644. front: {
  15645. height: math.unit(6, "feet"),
  15646. weight: math.unit(300, "lb"),
  15647. name: "Front",
  15648. image: {
  15649. source: "./media/characters/duncan/front.svg",
  15650. extra: 1650 / 1482,
  15651. bottom: 0.05
  15652. }
  15653. },
  15654. },
  15655. [
  15656. {
  15657. name: "Macro",
  15658. height: math.unit(100, "feet"),
  15659. default: true
  15660. },
  15661. ]
  15662. ))
  15663. characterMakers.push(() => makeCharacter(
  15664. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15665. {
  15666. front: {
  15667. height: math.unit(5 + 4 / 12, "feet"),
  15668. weight: math.unit(220, "lb"),
  15669. name: "Front",
  15670. image: {
  15671. source: "./media/characters/memory/front.svg",
  15672. extra: 3641 / 3545,
  15673. bottom: 0.03
  15674. }
  15675. },
  15676. back: {
  15677. height: math.unit(5 + 4 / 12, "feet"),
  15678. weight: math.unit(220, "lb"),
  15679. name: "Back",
  15680. image: {
  15681. source: "./media/characters/memory/back.svg",
  15682. extra: 3641 / 3545,
  15683. bottom: 0.025
  15684. }
  15685. },
  15686. frontSkirt: {
  15687. height: math.unit(5 + 4 / 12, "feet"),
  15688. weight: math.unit(220, "lb"),
  15689. name: "Front (Skirt)",
  15690. image: {
  15691. source: "./media/characters/memory/front-skirt.svg",
  15692. extra: 3641 / 3545,
  15693. bottom: 0.03
  15694. }
  15695. },
  15696. frontDress: {
  15697. height: math.unit(5 + 4 / 12, "feet"),
  15698. weight: math.unit(220, "lb"),
  15699. name: "Front (Dress)",
  15700. image: {
  15701. source: "./media/characters/memory/front-dress.svg",
  15702. extra: 3641 / 3545,
  15703. bottom: 0.03
  15704. }
  15705. },
  15706. },
  15707. [
  15708. {
  15709. name: "Micro",
  15710. height: math.unit(6, "inches"),
  15711. default: true
  15712. },
  15713. {
  15714. name: "Normal",
  15715. height: math.unit(5 + 4 / 12, "feet")
  15716. },
  15717. ]
  15718. ))
  15719. characterMakers.push(() => makeCharacter(
  15720. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15721. {
  15722. front: {
  15723. height: math.unit(4 + 11 / 12, "feet"),
  15724. weight: math.unit(100, "lb"),
  15725. name: "Front",
  15726. image: {
  15727. source: "./media/characters/luno/front.svg",
  15728. extra: 1535 / 1487,
  15729. bottom: 0.03
  15730. }
  15731. },
  15732. },
  15733. [
  15734. {
  15735. name: "Micro",
  15736. height: math.unit(3, "inches")
  15737. },
  15738. {
  15739. name: "Normal",
  15740. height: math.unit(4 + 11 / 12, "feet"),
  15741. default: true
  15742. },
  15743. {
  15744. name: "Macro",
  15745. height: math.unit(300, "feet")
  15746. },
  15747. {
  15748. name: "Megamacro",
  15749. height: math.unit(700, "miles")
  15750. },
  15751. ]
  15752. ))
  15753. characterMakers.push(() => makeCharacter(
  15754. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15755. {
  15756. front: {
  15757. height: math.unit(6 + 2 / 12, "feet"),
  15758. weight: math.unit(170, "lb"),
  15759. name: "Front",
  15760. image: {
  15761. source: "./media/characters/jamesy/front.svg",
  15762. extra: 440 / 382,
  15763. bottom: 0.005
  15764. }
  15765. },
  15766. },
  15767. [
  15768. {
  15769. name: "Micro",
  15770. height: math.unit(3, "inches")
  15771. },
  15772. {
  15773. name: "Normal",
  15774. height: math.unit(6 + 2 / 12, "feet"),
  15775. default: true
  15776. },
  15777. {
  15778. name: "Macro",
  15779. height: math.unit(300, "feet")
  15780. },
  15781. {
  15782. name: "Megamacro",
  15783. height: math.unit(700, "miles")
  15784. },
  15785. ]
  15786. ))
  15787. characterMakers.push(() => makeCharacter(
  15788. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15789. {
  15790. front: {
  15791. height: math.unit(6, "feet"),
  15792. weight: math.unit(160, "lb"),
  15793. name: "Front",
  15794. image: {
  15795. source: "./media/characters/mark/front.svg",
  15796. extra: 3300 / 3100,
  15797. bottom: 136.42 / 3440.47
  15798. }
  15799. },
  15800. },
  15801. [
  15802. {
  15803. name: "Macro",
  15804. height: math.unit(120, "meters")
  15805. },
  15806. {
  15807. name: "Bigger Macro",
  15808. height: math.unit(350, "meters")
  15809. },
  15810. {
  15811. name: "Megamacro",
  15812. height: math.unit(8, "km"),
  15813. default: true
  15814. },
  15815. {
  15816. name: "Continental",
  15817. height: math.unit(4550, "km")
  15818. },
  15819. {
  15820. name: "Planetary",
  15821. height: math.unit(65000, "km")
  15822. },
  15823. ]
  15824. ))
  15825. characterMakers.push(() => makeCharacter(
  15826. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15827. {
  15828. front: {
  15829. height: math.unit(6, "feet"),
  15830. weight: math.unit(400, "lb"),
  15831. name: "Front",
  15832. image: {
  15833. source: "./media/characters/mac/front.svg",
  15834. extra: 1048 / 987.7,
  15835. bottom: 60 / 1107.6,
  15836. }
  15837. },
  15838. },
  15839. [
  15840. {
  15841. name: "Macro",
  15842. height: math.unit(500, "feet"),
  15843. default: true
  15844. },
  15845. ]
  15846. ))
  15847. characterMakers.push(() => makeCharacter(
  15848. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15849. {
  15850. front: {
  15851. height: math.unit(5 + 2 / 12, "feet"),
  15852. weight: math.unit(190, "lb"),
  15853. name: "Front",
  15854. image: {
  15855. source: "./media/characters/bari/front.svg",
  15856. extra: 3156 / 2880,
  15857. bottom: 0.03
  15858. }
  15859. },
  15860. back: {
  15861. height: math.unit(5 + 2 / 12, "feet"),
  15862. weight: math.unit(190, "lb"),
  15863. name: "Back",
  15864. image: {
  15865. source: "./media/characters/bari/back.svg",
  15866. extra: 3260 / 2834,
  15867. bottom: 0.025
  15868. }
  15869. },
  15870. frontPlush: {
  15871. height: math.unit(5 + 2 / 12, "feet"),
  15872. weight: math.unit(190, "lb"),
  15873. name: "Front (Plush)",
  15874. image: {
  15875. source: "./media/characters/bari/front-plush.svg",
  15876. extra: 1112 / 1061,
  15877. bottom: 0.002
  15878. }
  15879. },
  15880. },
  15881. [
  15882. {
  15883. name: "Micro",
  15884. height: math.unit(3, "inches")
  15885. },
  15886. {
  15887. name: "Normal",
  15888. height: math.unit(5 + 2 / 12, "feet"),
  15889. default: true
  15890. },
  15891. {
  15892. name: "Macro",
  15893. height: math.unit(20, "feet")
  15894. },
  15895. ]
  15896. ))
  15897. characterMakers.push(() => makeCharacter(
  15898. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  15899. {
  15900. front: {
  15901. height: math.unit(6 + 1 / 12, "feet"),
  15902. weight: math.unit(275, "lb"),
  15903. name: "Front",
  15904. image: {
  15905. source: "./media/characters/hunter-misha-raven/front.svg"
  15906. }
  15907. },
  15908. },
  15909. [
  15910. {
  15911. name: "Mortal",
  15912. height: math.unit(6 + 1 / 12, "feet")
  15913. },
  15914. {
  15915. name: "Divine",
  15916. height: math.unit(1.12134e34, "parsecs"),
  15917. default: true
  15918. },
  15919. ]
  15920. ))
  15921. characterMakers.push(() => makeCharacter(
  15922. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  15923. {
  15924. front: {
  15925. height: math.unit(6 + 3 / 12, "feet"),
  15926. weight: math.unit(220, "lb"),
  15927. name: "Front",
  15928. image: {
  15929. source: "./media/characters/max-calore/front.svg",
  15930. extra: 1700 / 1648,
  15931. bottom: 0.01
  15932. }
  15933. },
  15934. back: {
  15935. height: math.unit(6 + 3 / 12, "feet"),
  15936. weight: math.unit(220, "lb"),
  15937. name: "Back",
  15938. image: {
  15939. source: "./media/characters/max-calore/back.svg",
  15940. extra: 1700 / 1648,
  15941. bottom: 0.01
  15942. }
  15943. },
  15944. },
  15945. [
  15946. {
  15947. name: "Normal",
  15948. height: math.unit(6 + 3 / 12, "feet"),
  15949. default: true
  15950. },
  15951. ]
  15952. ))
  15953. characterMakers.push(() => makeCharacter(
  15954. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  15955. {
  15956. side: {
  15957. height: math.unit(2 + 8 / 12, "feet"),
  15958. weight: math.unit(99, "lb"),
  15959. name: "Side",
  15960. image: {
  15961. source: "./media/characters/aspen/side.svg",
  15962. extra: 152 / 138,
  15963. bottom: 0.032
  15964. }
  15965. },
  15966. },
  15967. [
  15968. {
  15969. name: "Normal",
  15970. height: math.unit(2 + 8 / 12, "feet"),
  15971. default: true
  15972. },
  15973. ]
  15974. ))
  15975. characterMakers.push(() => makeCharacter(
  15976. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  15977. {
  15978. side: {
  15979. height: math.unit(3 + 2 / 12, "feet"),
  15980. weight: math.unit(224, "lb"),
  15981. name: "Side",
  15982. image: {
  15983. source: "./media/characters/sheila-feral-wolf/side.svg",
  15984. extra: 179 / 166,
  15985. bottom: 0.03
  15986. }
  15987. },
  15988. },
  15989. [
  15990. {
  15991. name: "Normal",
  15992. height: math.unit(3 + 2 / 12, "feet"),
  15993. default: true
  15994. },
  15995. ]
  15996. ))
  15997. characterMakers.push(() => makeCharacter(
  15998. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  15999. {
  16000. side: {
  16001. height: math.unit(1 + 9 / 12, "feet"),
  16002. weight: math.unit(38, "lb"),
  16003. name: "Side",
  16004. image: {
  16005. source: "./media/characters/michelle/side.svg",
  16006. extra: 147 / 136.7,
  16007. bottom: 0.03
  16008. }
  16009. },
  16010. },
  16011. [
  16012. {
  16013. name: "Normal",
  16014. height: math.unit(1 + 9 / 12, "feet"),
  16015. default: true
  16016. },
  16017. ]
  16018. ))
  16019. characterMakers.push(() => makeCharacter(
  16020. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16021. {
  16022. front: {
  16023. height: math.unit(1 + 1 / 12, "feet"),
  16024. weight: math.unit(18, "lb"),
  16025. name: "Front",
  16026. image: {
  16027. source: "./media/characters/nino/front.svg"
  16028. }
  16029. },
  16030. },
  16031. [
  16032. {
  16033. name: "Normal",
  16034. height: math.unit(1 + 1 / 12, "feet"),
  16035. default: true
  16036. },
  16037. ]
  16038. ))
  16039. characterMakers.push(() => makeCharacter(
  16040. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16041. {
  16042. front: {
  16043. height: math.unit(1, "feet"),
  16044. weight: math.unit(16, "lb"),
  16045. name: "Front",
  16046. image: {
  16047. source: "./media/characters/viola/front.svg"
  16048. }
  16049. },
  16050. },
  16051. [
  16052. {
  16053. name: "Normal",
  16054. height: math.unit(1, "feet"),
  16055. default: true
  16056. },
  16057. ]
  16058. ))
  16059. characterMakers.push(() => makeCharacter(
  16060. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16061. {
  16062. front: {
  16063. height: math.unit(6 + 5 / 12, "feet"),
  16064. weight: math.unit(580, "lb"),
  16065. name: "Front",
  16066. image: {
  16067. source: "./media/characters/atlas/front.svg",
  16068. extra: 298.5 / 290,
  16069. bottom: 0.015
  16070. }
  16071. },
  16072. },
  16073. [
  16074. {
  16075. name: "Normal",
  16076. height: math.unit(6 + 5 / 12, "feet"),
  16077. default: true
  16078. },
  16079. ]
  16080. ))
  16081. characterMakers.push(() => makeCharacter(
  16082. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16083. {
  16084. side: {
  16085. height: math.unit(1 + 10 / 12, "feet"),
  16086. weight: math.unit(25, "lb"),
  16087. name: "Side",
  16088. image: {
  16089. source: "./media/characters/davy/side.svg",
  16090. extra: 200 / 170,
  16091. bottom: 0.01
  16092. }
  16093. },
  16094. },
  16095. [
  16096. {
  16097. name: "Normal",
  16098. height: math.unit(1 + 10 / 12, "feet"),
  16099. default: true
  16100. },
  16101. ]
  16102. ))
  16103. characterMakers.push(() => makeCharacter(
  16104. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16105. {
  16106. side: {
  16107. height: math.unit(4 + 8 / 12, "feet"),
  16108. weight: math.unit(166, "lb"),
  16109. name: "Side",
  16110. image: {
  16111. source: "./media/characters/fiona/side.svg",
  16112. extra: 232 / 220,
  16113. bottom: 0.03
  16114. }
  16115. },
  16116. },
  16117. [
  16118. {
  16119. name: "Normal",
  16120. height: math.unit(4 + 8 / 12, "feet"),
  16121. default: true
  16122. },
  16123. ]
  16124. ))
  16125. characterMakers.push(() => makeCharacter(
  16126. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16127. {
  16128. front: {
  16129. height: math.unit(2, "feet"),
  16130. weight: math.unit(62, "lb"),
  16131. name: "Front",
  16132. image: {
  16133. source: "./media/characters/lyla/front.svg",
  16134. bottom: 0.1
  16135. }
  16136. },
  16137. },
  16138. [
  16139. {
  16140. name: "Normal",
  16141. height: math.unit(2, "feet"),
  16142. default: true
  16143. },
  16144. ]
  16145. ))
  16146. characterMakers.push(() => makeCharacter(
  16147. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16148. {
  16149. side: {
  16150. height: math.unit(1.8, "feet"),
  16151. weight: math.unit(44, "lb"),
  16152. name: "Side",
  16153. image: {
  16154. source: "./media/characters/perseus/side.svg",
  16155. bottom: 0.21
  16156. }
  16157. },
  16158. },
  16159. [
  16160. {
  16161. name: "Normal",
  16162. height: math.unit(1.8, "feet"),
  16163. default: true
  16164. },
  16165. ]
  16166. ))
  16167. characterMakers.push(() => makeCharacter(
  16168. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16169. {
  16170. side: {
  16171. height: math.unit(4 + 2 / 12, "feet"),
  16172. weight: math.unit(20, "lb"),
  16173. name: "Side",
  16174. image: {
  16175. source: "./media/characters/remus/side.svg"
  16176. }
  16177. },
  16178. },
  16179. [
  16180. {
  16181. name: "Normal",
  16182. height: math.unit(4 + 2 / 12, "feet"),
  16183. default: true
  16184. },
  16185. ]
  16186. ))
  16187. characterMakers.push(() => makeCharacter(
  16188. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16189. {
  16190. front: {
  16191. height: math.unit(4 + 11 / 12, "feet"),
  16192. weight: math.unit(114, "lb"),
  16193. name: "Front",
  16194. image: {
  16195. source: "./media/characters/raf/front.svg",
  16196. bottom: 20.5/1863
  16197. }
  16198. },
  16199. side: {
  16200. height: math.unit(4 + 11 / 12, "feet"),
  16201. weight: math.unit(114, "lb"),
  16202. name: "Side",
  16203. image: {
  16204. source: "./media/characters/raf/side.svg",
  16205. bottom: 22/1822
  16206. }
  16207. },
  16208. },
  16209. [
  16210. {
  16211. name: "Micro",
  16212. height: math.unit(2, "inches")
  16213. },
  16214. {
  16215. name: "Normal",
  16216. height: math.unit(4 + 11 / 12, "feet"),
  16217. default: true
  16218. },
  16219. {
  16220. name: "Macro",
  16221. height: math.unit(70, "feet")
  16222. },
  16223. ]
  16224. ))
  16225. characterMakers.push(() => makeCharacter(
  16226. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16227. {
  16228. front: {
  16229. height: math.unit(1.5, "meters"),
  16230. weight: math.unit(68, "kg"),
  16231. name: "Front",
  16232. image: {
  16233. source: "./media/characters/liam-einarr/front.svg",
  16234. extra: 2822 / 2666
  16235. }
  16236. },
  16237. back: {
  16238. height: math.unit(1.5, "meters"),
  16239. weight: math.unit(68, "kg"),
  16240. name: "Back",
  16241. image: {
  16242. source: "./media/characters/liam-einarr/back.svg",
  16243. extra: 2822 / 2666,
  16244. bottom: 0.015
  16245. }
  16246. },
  16247. },
  16248. [
  16249. {
  16250. name: "Normal",
  16251. height: math.unit(1.5, "meters"),
  16252. default: true
  16253. },
  16254. {
  16255. name: "Macro",
  16256. height: math.unit(150, "meters")
  16257. },
  16258. {
  16259. name: "Megamacro",
  16260. height: math.unit(35, "km")
  16261. },
  16262. ]
  16263. ))
  16264. characterMakers.push(() => makeCharacter(
  16265. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16266. {
  16267. front: {
  16268. height: math.unit(6, "feet"),
  16269. weight: math.unit(75, "kg"),
  16270. name: "Front",
  16271. image: {
  16272. source: "./media/characters/linda/front.svg",
  16273. extra: 930 / 874,
  16274. bottom: 0.004
  16275. }
  16276. },
  16277. },
  16278. [
  16279. {
  16280. name: "Normal",
  16281. height: math.unit(6, "feet"),
  16282. default: true
  16283. },
  16284. ]
  16285. ))
  16286. characterMakers.push(() => makeCharacter(
  16287. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16288. {
  16289. front: {
  16290. height: math.unit(6 + 8 / 12, "feet"),
  16291. weight: math.unit(220, "lb"),
  16292. name: "Front",
  16293. image: {
  16294. source: "./media/characters/caylex/front.svg",
  16295. extra: 821 / 772,
  16296. bottom: 0.07
  16297. }
  16298. },
  16299. back: {
  16300. height: math.unit(6 + 8 / 12, "feet"),
  16301. weight: math.unit(220, "lb"),
  16302. name: "Back",
  16303. image: {
  16304. source: "./media/characters/caylex/back.svg",
  16305. extra: 821 / 772,
  16306. bottom: 0.022
  16307. }
  16308. },
  16309. hand: {
  16310. height: math.unit(1.25, "feet"),
  16311. name: "Hand",
  16312. image: {
  16313. source: "./media/characters/caylex/hand.svg"
  16314. }
  16315. },
  16316. foot: {
  16317. height: math.unit(1.6, "feet"),
  16318. name: "Foot",
  16319. image: {
  16320. source: "./media/characters/caylex/foot.svg"
  16321. }
  16322. },
  16323. armored: {
  16324. height: math.unit(6 + 8 / 12, "feet"),
  16325. weight: math.unit(250, "lb"),
  16326. name: "Armored",
  16327. image: {
  16328. source: "./media/characters/caylex/armored.svg",
  16329. extra: 1420 / 1310,
  16330. bottom: 0.045
  16331. }
  16332. },
  16333. },
  16334. [
  16335. {
  16336. name: "Normal",
  16337. height: math.unit(6 + 8 / 12, "feet"),
  16338. default: true
  16339. },
  16340. {
  16341. name: "Normal+",
  16342. height: math.unit(12, "feet")
  16343. },
  16344. ]
  16345. ))
  16346. characterMakers.push(() => makeCharacter(
  16347. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16348. {
  16349. front: {
  16350. height: math.unit(7 + 6 / 12, "feet"),
  16351. weight: math.unit(288, "lb"),
  16352. name: "Front",
  16353. image: {
  16354. source: "./media/characters/alana/front.svg",
  16355. extra: 679 / 653,
  16356. bottom: 22.5 / 701
  16357. }
  16358. },
  16359. },
  16360. [
  16361. {
  16362. name: "Normal",
  16363. height: math.unit(7 + 6 / 12, "feet")
  16364. },
  16365. {
  16366. name: "Large",
  16367. height: math.unit(50, "feet")
  16368. },
  16369. {
  16370. name: "Macro",
  16371. height: math.unit(100, "feet"),
  16372. default: true
  16373. },
  16374. {
  16375. name: "Macro+",
  16376. height: math.unit(200, "feet")
  16377. },
  16378. ]
  16379. ))
  16380. characterMakers.push(() => makeCharacter(
  16381. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16382. {
  16383. front: {
  16384. height: math.unit(6 + 1 / 12, "feet"),
  16385. weight: math.unit(210, "lb"),
  16386. name: "Front",
  16387. image: {
  16388. source: "./media/characters/hasani/front.svg",
  16389. extra: 244 / 232,
  16390. bottom: 0.01
  16391. }
  16392. },
  16393. back: {
  16394. height: math.unit(6 + 1 / 12, "feet"),
  16395. weight: math.unit(210, "lb"),
  16396. name: "Back",
  16397. image: {
  16398. source: "./media/characters/hasani/back.svg",
  16399. extra: 244 / 232,
  16400. bottom: 0.01
  16401. }
  16402. },
  16403. },
  16404. [
  16405. {
  16406. name: "Normal",
  16407. height: math.unit(6 + 1 / 12, "feet")
  16408. },
  16409. {
  16410. name: "Macro",
  16411. height: math.unit(175, "feet"),
  16412. default: true
  16413. },
  16414. ]
  16415. ))
  16416. characterMakers.push(() => makeCharacter(
  16417. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16418. {
  16419. front: {
  16420. height: math.unit(1.82, "meters"),
  16421. weight: math.unit(140, "lb"),
  16422. name: "Front",
  16423. image: {
  16424. source: "./media/characters/nita/front.svg",
  16425. extra: 2473 / 2363,
  16426. bottom: 0.01
  16427. }
  16428. },
  16429. },
  16430. [
  16431. {
  16432. name: "Normal",
  16433. height: math.unit(1.82, "m")
  16434. },
  16435. {
  16436. name: "Macro",
  16437. height: math.unit(300, "m")
  16438. },
  16439. {
  16440. name: "Mistake Canon",
  16441. height: math.unit(0.5, "miles"),
  16442. default: true
  16443. },
  16444. {
  16445. name: "Big Mistake",
  16446. height: math.unit(13, "miles")
  16447. },
  16448. {
  16449. name: "Playing God",
  16450. height: math.unit(2450, "miles")
  16451. },
  16452. ]
  16453. ))
  16454. characterMakers.push(() => makeCharacter(
  16455. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16456. {
  16457. front: {
  16458. height: math.unit(4, "feet"),
  16459. weight: math.unit(120, "lb"),
  16460. name: "Front",
  16461. image: {
  16462. source: "./media/characters/shiriko/front.svg",
  16463. extra: 195 / 188
  16464. }
  16465. },
  16466. },
  16467. [
  16468. {
  16469. name: "Normal",
  16470. height: math.unit(4, "feet"),
  16471. default: true
  16472. },
  16473. ]
  16474. ))
  16475. characterMakers.push(() => makeCharacter(
  16476. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16477. {
  16478. front: {
  16479. height: math.unit(6, "feet"),
  16480. name: "front",
  16481. image: {
  16482. source: "./media/characters/deja/front.svg",
  16483. extra: 926 / 840,
  16484. bottom: 0.07
  16485. }
  16486. },
  16487. },
  16488. [
  16489. {
  16490. name: "Planck Length",
  16491. height: math.unit(1.6e-35, "meters")
  16492. },
  16493. {
  16494. name: "Normal",
  16495. height: math.unit(30.48, "meters"),
  16496. default: true
  16497. },
  16498. {
  16499. name: "Universal",
  16500. height: math.unit(8.8e26, "meters")
  16501. },
  16502. ]
  16503. ))
  16504. characterMakers.push(() => makeCharacter(
  16505. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16506. {
  16507. side: {
  16508. height: math.unit(8, "feet"),
  16509. weight: math.unit(6300, "lb"),
  16510. name: "Side",
  16511. image: {
  16512. source: "./media/characters/anima/side.svg",
  16513. bottom: 0.035
  16514. }
  16515. },
  16516. },
  16517. [
  16518. {
  16519. name: "Normal",
  16520. height: math.unit(8, "feet"),
  16521. default: true
  16522. },
  16523. ]
  16524. ))
  16525. characterMakers.push(() => makeCharacter(
  16526. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16527. {
  16528. front: {
  16529. height: math.unit(8, "feet"),
  16530. weight: math.unit(350, "lb"),
  16531. name: "Front",
  16532. image: {
  16533. source: "./media/characters/bianca/front.svg",
  16534. extra: 234 / 225,
  16535. bottom: 0.03
  16536. }
  16537. },
  16538. },
  16539. [
  16540. {
  16541. name: "Normal",
  16542. height: math.unit(8, "feet"),
  16543. default: true
  16544. },
  16545. ]
  16546. ))
  16547. characterMakers.push(() => makeCharacter(
  16548. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16549. {
  16550. front: {
  16551. height: math.unit(6, "feet"),
  16552. weight: math.unit(150, "lb"),
  16553. name: "Front",
  16554. image: {
  16555. source: "./media/characters/adinia/front.svg",
  16556. extra: 1845 / 1672,
  16557. bottom: 0.02
  16558. }
  16559. },
  16560. back: {
  16561. height: math.unit(6, "feet"),
  16562. weight: math.unit(150, "lb"),
  16563. name: "Back",
  16564. image: {
  16565. source: "./media/characters/adinia/back.svg",
  16566. extra: 1845 / 1672,
  16567. bottom: 0.002
  16568. }
  16569. },
  16570. },
  16571. [
  16572. {
  16573. name: "Normal",
  16574. height: math.unit(11 + 5 / 12, "feet"),
  16575. default: true
  16576. },
  16577. ]
  16578. ))
  16579. characterMakers.push(() => makeCharacter(
  16580. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16581. {
  16582. front: {
  16583. height: math.unit(3, "meters"),
  16584. weight: math.unit(200, "kg"),
  16585. name: "Front",
  16586. image: {
  16587. source: "./media/characters/lykasa/front.svg",
  16588. extra: 1076 / 976,
  16589. bottom: 0.06
  16590. }
  16591. },
  16592. },
  16593. [
  16594. {
  16595. name: "Normal",
  16596. height: math.unit(3, "meters")
  16597. },
  16598. {
  16599. name: "Kaiju",
  16600. height: math.unit(120, "meters"),
  16601. default: true
  16602. },
  16603. {
  16604. name: "Mega Kaiju",
  16605. height: math.unit(240, "km")
  16606. },
  16607. {
  16608. name: "Giga Kaiju",
  16609. height: math.unit(400, "megameters")
  16610. },
  16611. {
  16612. name: "Tera Kaiju",
  16613. height: math.unit(800, "gigameters")
  16614. },
  16615. {
  16616. name: "Kaiju Dragon Goddess",
  16617. height: math.unit(26, "zettaparsecs")
  16618. },
  16619. ]
  16620. ))
  16621. characterMakers.push(() => makeCharacter(
  16622. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16623. {
  16624. side: {
  16625. height: math.unit(283 / 124 * 6, "feet"),
  16626. weight: math.unit(35000, "lb"),
  16627. name: "Side",
  16628. image: {
  16629. source: "./media/characters/malfaren/side.svg",
  16630. extra: 2500 / 1010,
  16631. bottom: 0.01
  16632. }
  16633. },
  16634. front: {
  16635. height: math.unit(22.36, "feet"),
  16636. weight: math.unit(35000, "lb"),
  16637. name: "Front",
  16638. image: {
  16639. source: "./media/characters/malfaren/front.svg",
  16640. extra: 1631 / 1476,
  16641. bottom: 0.01
  16642. }
  16643. },
  16644. maw: {
  16645. height: math.unit(6.9, "feet"),
  16646. name: "Maw",
  16647. image: {
  16648. source: "./media/characters/malfaren/maw.svg"
  16649. }
  16650. },
  16651. },
  16652. [
  16653. {
  16654. name: "Big",
  16655. height: math.unit(283 / 162 * 6, "feet"),
  16656. },
  16657. {
  16658. name: "Bigger",
  16659. height: math.unit(283 / 124 * 6, "feet")
  16660. },
  16661. {
  16662. name: "Massive",
  16663. height: math.unit(283 / 92 * 6, "feet"),
  16664. default: true
  16665. },
  16666. {
  16667. name: "👀💦",
  16668. height: math.unit(283 / 73 * 6, "feet"),
  16669. },
  16670. ]
  16671. ))
  16672. characterMakers.push(() => makeCharacter(
  16673. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16674. {
  16675. front: {
  16676. height: math.unit(1.7, "m"),
  16677. weight: math.unit(70, "kg"),
  16678. name: "Front",
  16679. image: {
  16680. source: "./media/characters/kernel/front.svg",
  16681. extra: 222 / 210,
  16682. bottom: 0.007
  16683. }
  16684. },
  16685. },
  16686. [
  16687. {
  16688. name: "Nano",
  16689. height: math.unit(17, "micrometers")
  16690. },
  16691. {
  16692. name: "Micro",
  16693. height: math.unit(1.7, "mm")
  16694. },
  16695. {
  16696. name: "Small",
  16697. height: math.unit(1.7, "cm")
  16698. },
  16699. {
  16700. name: "Normal",
  16701. height: math.unit(1.7, "m"),
  16702. default: true
  16703. },
  16704. ]
  16705. ))
  16706. characterMakers.push(() => makeCharacter(
  16707. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16708. {
  16709. front: {
  16710. height: math.unit(1.75, "meters"),
  16711. weight: math.unit(65, "kg"),
  16712. name: "Front",
  16713. image: {
  16714. source: "./media/characters/jayne-folest/front.svg",
  16715. extra: 2115 / 2007,
  16716. bottom: 0.02
  16717. }
  16718. },
  16719. back: {
  16720. height: math.unit(1.75, "meters"),
  16721. weight: math.unit(65, "kg"),
  16722. name: "Back",
  16723. image: {
  16724. source: "./media/characters/jayne-folest/back.svg",
  16725. extra: 2115 / 2007,
  16726. bottom: 0.005
  16727. }
  16728. },
  16729. frontClothed: {
  16730. height: math.unit(1.75, "meters"),
  16731. weight: math.unit(65, "kg"),
  16732. name: "Front (Clothed)",
  16733. image: {
  16734. source: "./media/characters/jayne-folest/front-clothed.svg",
  16735. extra: 2115 / 2007,
  16736. bottom: 0.035
  16737. }
  16738. },
  16739. hand: {
  16740. height: math.unit(1 / 1.260, "feet"),
  16741. name: "Hand",
  16742. image: {
  16743. source: "./media/characters/jayne-folest/hand.svg"
  16744. }
  16745. },
  16746. foot: {
  16747. height: math.unit(1 / 0.918, "feet"),
  16748. name: "Foot",
  16749. image: {
  16750. source: "./media/characters/jayne-folest/foot.svg"
  16751. }
  16752. },
  16753. },
  16754. [
  16755. {
  16756. name: "Micro",
  16757. height: math.unit(4, "cm")
  16758. },
  16759. {
  16760. name: "Normal",
  16761. height: math.unit(1.75, "meters")
  16762. },
  16763. {
  16764. name: "Macro",
  16765. height: math.unit(47.5, "meters"),
  16766. default: true
  16767. },
  16768. ]
  16769. ))
  16770. characterMakers.push(() => makeCharacter(
  16771. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16772. {
  16773. front: {
  16774. height: math.unit(180, "cm"),
  16775. weight: math.unit(70, "kg"),
  16776. name: "Front",
  16777. image: {
  16778. source: "./media/characters/algier/front.svg",
  16779. extra: 596 / 572,
  16780. bottom: 0.04
  16781. }
  16782. },
  16783. back: {
  16784. height: math.unit(180, "cm"),
  16785. weight: math.unit(70, "kg"),
  16786. name: "Back",
  16787. image: {
  16788. source: "./media/characters/algier/back.svg",
  16789. extra: 596 / 572,
  16790. bottom: 0.025
  16791. }
  16792. },
  16793. frontdressed: {
  16794. height: math.unit(180, "cm"),
  16795. weight: math.unit(150, "kg"),
  16796. name: "Front-dressed",
  16797. image: {
  16798. source: "./media/characters/algier/front-dressed.svg",
  16799. extra: 596 / 572,
  16800. bottom: 0.038
  16801. }
  16802. },
  16803. },
  16804. [
  16805. {
  16806. name: "Micro",
  16807. height: math.unit(5, "cm")
  16808. },
  16809. {
  16810. name: "Normal",
  16811. height: math.unit(180, "cm"),
  16812. default: true
  16813. },
  16814. {
  16815. name: "Macro",
  16816. height: math.unit(64, "m")
  16817. },
  16818. ]
  16819. ))
  16820. characterMakers.push(() => makeCharacter(
  16821. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16822. {
  16823. upright: {
  16824. height: math.unit(7, "feet"),
  16825. weight: math.unit(300, "lb"),
  16826. name: "Upright",
  16827. image: {
  16828. source: "./media/characters/pretzel/upright.svg",
  16829. extra: 534 / 522,
  16830. bottom: 0.065
  16831. }
  16832. },
  16833. sprawling: {
  16834. height: math.unit(3.75, "feet"),
  16835. weight: math.unit(300, "lb"),
  16836. name: "Sprawling",
  16837. image: {
  16838. source: "./media/characters/pretzel/sprawling.svg",
  16839. extra: 314 / 281,
  16840. bottom: 0.1
  16841. }
  16842. },
  16843. tongue: {
  16844. height: math.unit(2, "feet"),
  16845. name: "Tongue",
  16846. image: {
  16847. source: "./media/characters/pretzel/tongue.svg"
  16848. }
  16849. },
  16850. },
  16851. [
  16852. {
  16853. name: "Normal",
  16854. height: math.unit(7, "feet"),
  16855. default: true
  16856. },
  16857. {
  16858. name: "Oversized",
  16859. height: math.unit(15, "feet")
  16860. },
  16861. {
  16862. name: "Huge",
  16863. height: math.unit(30, "feet")
  16864. },
  16865. {
  16866. name: "Macro",
  16867. height: math.unit(250, "feet")
  16868. },
  16869. ]
  16870. ))
  16871. characterMakers.push(() => makeCharacter(
  16872. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16873. {
  16874. sideFront: {
  16875. height: math.unit(5 + 2 / 12, "feet"),
  16876. weight: math.unit(120, "lb"),
  16877. name: "Front Side",
  16878. image: {
  16879. source: "./media/characters/roxi/side-front.svg",
  16880. extra: 2924 / 2717,
  16881. bottom: 0.08
  16882. }
  16883. },
  16884. sideBack: {
  16885. height: math.unit(5 + 2 / 12, "feet"),
  16886. weight: math.unit(120, "lb"),
  16887. name: "Back Side",
  16888. image: {
  16889. source: "./media/characters/roxi/side-back.svg",
  16890. extra: 2904 / 2693,
  16891. bottom: 0.06
  16892. }
  16893. },
  16894. front: {
  16895. height: math.unit(5 + 2 / 12, "feet"),
  16896. weight: math.unit(120, "lb"),
  16897. name: "Front",
  16898. image: {
  16899. source: "./media/characters/roxi/front.svg",
  16900. extra: 2028 / 1907,
  16901. bottom: 0.01
  16902. }
  16903. },
  16904. frontAlt: {
  16905. height: math.unit(5 + 2 / 12, "feet"),
  16906. weight: math.unit(120, "lb"),
  16907. name: "Front (Alt)",
  16908. image: {
  16909. source: "./media/characters/roxi/front-alt.svg",
  16910. extra: 1828 / 1798,
  16911. bottom: 0.01
  16912. }
  16913. },
  16914. sitting: {
  16915. height: math.unit(2.8, "feet"),
  16916. weight: math.unit(120, "lb"),
  16917. name: "Sitting",
  16918. image: {
  16919. source: "./media/characters/roxi/sitting.svg",
  16920. extra: 2660 / 2462,
  16921. bottom: 0.1
  16922. }
  16923. },
  16924. },
  16925. [
  16926. {
  16927. name: "Normal",
  16928. height: math.unit(5 + 2 / 12, "feet"),
  16929. default: true
  16930. },
  16931. ]
  16932. ))
  16933. characterMakers.push(() => makeCharacter(
  16934. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  16935. {
  16936. side: {
  16937. height: math.unit(55, "feet"),
  16938. weight: math.unit(153, "tons"),
  16939. name: "Side",
  16940. image: {
  16941. source: "./media/characters/shadow/side.svg",
  16942. extra: 701 / 628,
  16943. bottom: 0.02
  16944. }
  16945. },
  16946. flying: {
  16947. height: math.unit(145, "feet"),
  16948. weight: math.unit(153, "tons"),
  16949. name: "Flying",
  16950. image: {
  16951. source: "./media/characters/shadow/flying.svg"
  16952. }
  16953. },
  16954. },
  16955. [
  16956. {
  16957. name: "Normal",
  16958. height: math.unit(55, "feet"),
  16959. default: true
  16960. },
  16961. ]
  16962. ))
  16963. characterMakers.push(() => makeCharacter(
  16964. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  16965. {
  16966. front: {
  16967. height: math.unit(6, "feet"),
  16968. weight: math.unit(200, "lb"),
  16969. name: "Front",
  16970. image: {
  16971. source: "./media/characters/marcie/front.svg",
  16972. extra: 960 / 876,
  16973. bottom: 58 / 1017.87
  16974. }
  16975. },
  16976. },
  16977. [
  16978. {
  16979. name: "Macro",
  16980. height: math.unit(1, "mile"),
  16981. default: true
  16982. },
  16983. ]
  16984. ))
  16985. characterMakers.push(() => makeCharacter(
  16986. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  16987. {
  16988. front: {
  16989. height: math.unit(7, "feet"),
  16990. weight: math.unit(200, "lb"),
  16991. name: "Front",
  16992. image: {
  16993. source: "./media/characters/kachina/front.svg",
  16994. extra: 1290.68 / 1119,
  16995. bottom: 36.5 / 1327.18
  16996. }
  16997. },
  16998. },
  16999. [
  17000. {
  17001. name: "Normal",
  17002. height: math.unit(7, "feet"),
  17003. default: true
  17004. },
  17005. ]
  17006. ))
  17007. characterMakers.push(() => makeCharacter(
  17008. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17009. {
  17010. looking: {
  17011. height: math.unit(2, "meters"),
  17012. weight: math.unit(300, "kg"),
  17013. name: "Looking",
  17014. image: {
  17015. source: "./media/characters/kash/looking.svg",
  17016. extra: 474 / 344,
  17017. bottom: 0.03
  17018. }
  17019. },
  17020. side: {
  17021. height: math.unit(2, "meters"),
  17022. weight: math.unit(300, "kg"),
  17023. name: "Side",
  17024. image: {
  17025. source: "./media/characters/kash/side.svg",
  17026. extra: 302 / 251,
  17027. bottom: 0.03
  17028. }
  17029. },
  17030. front: {
  17031. height: math.unit(2, "meters"),
  17032. weight: math.unit(300, "kg"),
  17033. name: "Front",
  17034. image: {
  17035. source: "./media/characters/kash/front.svg",
  17036. extra: 495 / 360,
  17037. bottom: 0.015
  17038. }
  17039. },
  17040. },
  17041. [
  17042. {
  17043. name: "Normal",
  17044. height: math.unit(2, "meters"),
  17045. default: true
  17046. },
  17047. {
  17048. name: "Big",
  17049. height: math.unit(3, "meters")
  17050. },
  17051. {
  17052. name: "Large",
  17053. height: math.unit(5, "meters")
  17054. },
  17055. ]
  17056. ))
  17057. characterMakers.push(() => makeCharacter(
  17058. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17059. {
  17060. feeding: {
  17061. height: math.unit(6.7, "feet"),
  17062. weight: math.unit(350, "lb"),
  17063. name: "Feeding",
  17064. image: {
  17065. source: "./media/characters/lalim/feeding.svg",
  17066. }
  17067. },
  17068. },
  17069. [
  17070. {
  17071. name: "Normal",
  17072. height: math.unit(6.7, "feet"),
  17073. default: true
  17074. },
  17075. ]
  17076. ))
  17077. characterMakers.push(() => makeCharacter(
  17078. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17079. {
  17080. front: {
  17081. height: math.unit(9.5, "feet"),
  17082. weight: math.unit(600, "lb"),
  17083. name: "Front",
  17084. image: {
  17085. source: "./media/characters/de'vout/front.svg",
  17086. extra: 1443 / 1328,
  17087. bottom: 0.025
  17088. }
  17089. },
  17090. back: {
  17091. height: math.unit(9.5, "feet"),
  17092. weight: math.unit(600, "lb"),
  17093. name: "Back",
  17094. image: {
  17095. source: "./media/characters/de'vout/back.svg",
  17096. extra: 1443 / 1328
  17097. }
  17098. },
  17099. frontDressed: {
  17100. height: math.unit(9.5, "feet"),
  17101. weight: math.unit(600, "lb"),
  17102. name: "Front (Dressed",
  17103. image: {
  17104. source: "./media/characters/de'vout/front-dressed.svg",
  17105. extra: 1443 / 1328,
  17106. bottom: 0.025
  17107. }
  17108. },
  17109. backDressed: {
  17110. height: math.unit(9.5, "feet"),
  17111. weight: math.unit(600, "lb"),
  17112. name: "Back (Dressed",
  17113. image: {
  17114. source: "./media/characters/de'vout/back-dressed.svg",
  17115. extra: 1443 / 1328
  17116. }
  17117. },
  17118. },
  17119. [
  17120. {
  17121. name: "Normal",
  17122. height: math.unit(9.5, "feet"),
  17123. default: true
  17124. },
  17125. ]
  17126. ))
  17127. characterMakers.push(() => makeCharacter(
  17128. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17129. {
  17130. front: {
  17131. height: math.unit(8, "feet"),
  17132. weight: math.unit(225, "lb"),
  17133. name: "Front",
  17134. image: {
  17135. source: "./media/characters/talana/front.svg",
  17136. extra: 1410 / 1300,
  17137. bottom: 0.015
  17138. }
  17139. },
  17140. frontDressed: {
  17141. height: math.unit(8, "feet"),
  17142. weight: math.unit(225, "lb"),
  17143. name: "Front (Dressed",
  17144. image: {
  17145. source: "./media/characters/talana/front-dressed.svg",
  17146. extra: 1410 / 1300,
  17147. bottom: 0.015
  17148. }
  17149. },
  17150. },
  17151. [
  17152. {
  17153. name: "Normal",
  17154. height: math.unit(8, "feet"),
  17155. default: true
  17156. },
  17157. ]
  17158. ))
  17159. characterMakers.push(() => makeCharacter(
  17160. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17161. {
  17162. side: {
  17163. height: math.unit(7.2, "feet"),
  17164. weight: math.unit(150, "lb"),
  17165. name: "Side",
  17166. image: {
  17167. source: "./media/characters/xeauvok/side.svg",
  17168. extra: 1975 / 1523,
  17169. bottom: 0.07
  17170. }
  17171. },
  17172. },
  17173. [
  17174. {
  17175. name: "Normal",
  17176. height: math.unit(7.2, "feet"),
  17177. default: true
  17178. },
  17179. ]
  17180. ))
  17181. characterMakers.push(() => makeCharacter(
  17182. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17183. {
  17184. side: {
  17185. height: math.unit(10, "feet"),
  17186. weight: math.unit(900, "kg"),
  17187. name: "Side",
  17188. image: {
  17189. source: "./media/characters/zara/side.svg",
  17190. extra: 504 / 498
  17191. }
  17192. },
  17193. },
  17194. [
  17195. {
  17196. name: "Normal",
  17197. height: math.unit(10, "feet"),
  17198. default: true
  17199. },
  17200. ]
  17201. ))
  17202. characterMakers.push(() => makeCharacter(
  17203. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17204. {
  17205. side: {
  17206. height: math.unit(6, "feet"),
  17207. weight: math.unit(150, "lb"),
  17208. name: "Side",
  17209. image: {
  17210. source: "./media/characters/richard-dragon/side.svg",
  17211. extra: 845 / 340,
  17212. bottom: 0.017
  17213. }
  17214. },
  17215. maw: {
  17216. height: math.unit(2.97, "feet"),
  17217. name: "Maw",
  17218. image: {
  17219. source: "./media/characters/richard-dragon/maw.svg"
  17220. }
  17221. },
  17222. },
  17223. [
  17224. ]
  17225. ))
  17226. characterMakers.push(() => makeCharacter(
  17227. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17228. {
  17229. front: {
  17230. height: math.unit(4, "feet"),
  17231. weight: math.unit(100, "lb"),
  17232. name: "Front",
  17233. image: {
  17234. source: "./media/characters/richard-smeargle/front.svg",
  17235. extra: 2952 / 2820,
  17236. bottom: 0.028
  17237. }
  17238. },
  17239. },
  17240. [
  17241. {
  17242. name: "Normal",
  17243. height: math.unit(4, "feet"),
  17244. default: true
  17245. },
  17246. {
  17247. name: "Dynamax",
  17248. height: math.unit(20, "meters")
  17249. },
  17250. ]
  17251. ))
  17252. characterMakers.push(() => makeCharacter(
  17253. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17254. {
  17255. front: {
  17256. height: math.unit(6, "feet"),
  17257. weight: math.unit(110, "lb"),
  17258. name: "Front",
  17259. image: {
  17260. source: "./media/characters/klay/front.svg",
  17261. extra: 962 / 883,
  17262. bottom: 0.04
  17263. }
  17264. },
  17265. back: {
  17266. height: math.unit(6, "feet"),
  17267. weight: math.unit(110, "lb"),
  17268. name: "Back",
  17269. image: {
  17270. source: "./media/characters/klay/back.svg",
  17271. extra: 962 / 883
  17272. }
  17273. },
  17274. beans: {
  17275. height: math.unit(1.15, "feet"),
  17276. name: "Beans",
  17277. image: {
  17278. source: "./media/characters/klay/beans.svg"
  17279. }
  17280. },
  17281. },
  17282. [
  17283. {
  17284. name: "Micro",
  17285. height: math.unit(6, "inches")
  17286. },
  17287. {
  17288. name: "Mini",
  17289. height: math.unit(3, "feet")
  17290. },
  17291. {
  17292. name: "Normal",
  17293. height: math.unit(6, "feet"),
  17294. default: true
  17295. },
  17296. {
  17297. name: "Big",
  17298. height: math.unit(25, "feet")
  17299. },
  17300. {
  17301. name: "Macro",
  17302. height: math.unit(100, "feet")
  17303. },
  17304. {
  17305. name: "Megamacro",
  17306. height: math.unit(400, "feet")
  17307. },
  17308. ]
  17309. ))
  17310. characterMakers.push(() => makeCharacter(
  17311. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17312. {
  17313. front: {
  17314. height: math.unit(6, "feet"),
  17315. weight: math.unit(160, "lb"),
  17316. name: "Front",
  17317. image: {
  17318. source: "./media/characters/marcus/front.svg",
  17319. extra: 734 / 676,
  17320. bottom: 0.03
  17321. }
  17322. },
  17323. },
  17324. [
  17325. {
  17326. name: "Little",
  17327. height: math.unit(6, "feet")
  17328. },
  17329. {
  17330. name: "Normal",
  17331. height: math.unit(110, "feet"),
  17332. default: true
  17333. },
  17334. {
  17335. name: "Macro",
  17336. height: math.unit(250, "feet")
  17337. },
  17338. {
  17339. name: "Megamacro",
  17340. height: math.unit(1000, "feet")
  17341. },
  17342. ]
  17343. ))
  17344. characterMakers.push(() => makeCharacter(
  17345. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17346. {
  17347. front: {
  17348. height: math.unit(7, "feet"),
  17349. weight: math.unit(275, "lb"),
  17350. name: "Front",
  17351. image: {
  17352. source: "./media/characters/claude-delroute/front.svg",
  17353. extra: 230 / 214,
  17354. bottom: 0.007
  17355. }
  17356. },
  17357. side: {
  17358. height: math.unit(7, "feet"),
  17359. weight: math.unit(275, "lb"),
  17360. name: "Side",
  17361. image: {
  17362. source: "./media/characters/claude-delroute/side.svg",
  17363. extra: 222 / 214,
  17364. bottom: 0.01
  17365. }
  17366. },
  17367. back: {
  17368. height: math.unit(7, "feet"),
  17369. weight: math.unit(275, "lb"),
  17370. name: "Back",
  17371. image: {
  17372. source: "./media/characters/claude-delroute/back.svg",
  17373. extra: 230 / 214,
  17374. bottom: 0.015
  17375. }
  17376. },
  17377. maw: {
  17378. height: math.unit(0.6407, "meters"),
  17379. name: "Maw",
  17380. image: {
  17381. source: "./media/characters/claude-delroute/maw.svg"
  17382. }
  17383. },
  17384. },
  17385. [
  17386. {
  17387. name: "Normal",
  17388. height: math.unit(7, "feet"),
  17389. default: true
  17390. },
  17391. {
  17392. name: "Lorge",
  17393. height: math.unit(20, "feet")
  17394. },
  17395. ]
  17396. ))
  17397. characterMakers.push(() => makeCharacter(
  17398. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17399. {
  17400. front: {
  17401. height: math.unit(8 + 4 / 12, "feet"),
  17402. weight: math.unit(600, "lb"),
  17403. name: "Front",
  17404. image: {
  17405. source: "./media/characters/dragonien/front.svg",
  17406. extra: 100 / 94,
  17407. bottom: 3.3 / 103.3445
  17408. }
  17409. },
  17410. back: {
  17411. height: math.unit(8 + 4 / 12, "feet"),
  17412. weight: math.unit(600, "lb"),
  17413. name: "Back",
  17414. image: {
  17415. source: "./media/characters/dragonien/back.svg",
  17416. extra: 776 / 746,
  17417. bottom: 6.4 / 782.0616
  17418. }
  17419. },
  17420. foot: {
  17421. height: math.unit(1.54, "feet"),
  17422. name: "Foot",
  17423. image: {
  17424. source: "./media/characters/dragonien/foot.svg",
  17425. }
  17426. },
  17427. },
  17428. [
  17429. {
  17430. name: "Normal",
  17431. height: math.unit(8 + 4 / 12, "feet"),
  17432. default: true
  17433. },
  17434. {
  17435. name: "Macro",
  17436. height: math.unit(200, "feet")
  17437. },
  17438. {
  17439. name: "Megamacro",
  17440. height: math.unit(1, "mile")
  17441. },
  17442. {
  17443. name: "Gigamacro",
  17444. height: math.unit(1000, "miles")
  17445. },
  17446. ]
  17447. ))
  17448. characterMakers.push(() => makeCharacter(
  17449. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17450. {
  17451. front: {
  17452. height: math.unit(5 + 2 / 12, "feet"),
  17453. weight: math.unit(110, "lb"),
  17454. name: "Front",
  17455. image: {
  17456. source: "./media/characters/desta/front.svg",
  17457. extra: 767/726,
  17458. bottom: 11.7/779
  17459. }
  17460. },
  17461. back: {
  17462. height: math.unit(5 + 2 / 12, "feet"),
  17463. weight: math.unit(110, "lb"),
  17464. name: "Back",
  17465. image: {
  17466. source: "./media/characters/desta/back.svg",
  17467. extra: 777/728,
  17468. bottom: 6/784
  17469. }
  17470. },
  17471. frontAlt: {
  17472. height: math.unit(5 + 2 / 12, "feet"),
  17473. weight: math.unit(110, "lb"),
  17474. name: "Front",
  17475. image: {
  17476. source: "./media/characters/desta/front-alt.svg",
  17477. extra: 1482 / 1417
  17478. }
  17479. },
  17480. side: {
  17481. height: math.unit(5 + 2 / 12, "feet"),
  17482. weight: math.unit(110, "lb"),
  17483. name: "Side",
  17484. image: {
  17485. source: "./media/characters/desta/side.svg",
  17486. extra: 2579 / 2491,
  17487. bottom: 0.053
  17488. }
  17489. },
  17490. },
  17491. [
  17492. {
  17493. name: "Micro",
  17494. height: math.unit(6, "inches")
  17495. },
  17496. {
  17497. name: "Normal",
  17498. height: math.unit(5 + 2 / 12, "feet"),
  17499. default: true
  17500. },
  17501. {
  17502. name: "Macro",
  17503. height: math.unit(62, "feet")
  17504. },
  17505. {
  17506. name: "Megamacro",
  17507. height: math.unit(1800, "feet")
  17508. },
  17509. ]
  17510. ))
  17511. characterMakers.push(() => makeCharacter(
  17512. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17513. {
  17514. front: {
  17515. height: math.unit(10, "feet"),
  17516. weight: math.unit(700, "lb"),
  17517. name: "Front",
  17518. image: {
  17519. source: "./media/characters/storm-alystar/front.svg",
  17520. extra: 2112 / 1898,
  17521. bottom: 0.034
  17522. }
  17523. },
  17524. },
  17525. [
  17526. {
  17527. name: "Micro",
  17528. height: math.unit(3.5, "inches")
  17529. },
  17530. {
  17531. name: "Normal",
  17532. height: math.unit(10, "feet"),
  17533. default: true
  17534. },
  17535. {
  17536. name: "Macro",
  17537. height: math.unit(400, "feet")
  17538. },
  17539. {
  17540. name: "Deific",
  17541. height: math.unit(60, "miles")
  17542. },
  17543. ]
  17544. ))
  17545. characterMakers.push(() => makeCharacter(
  17546. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17547. {
  17548. front: {
  17549. height: math.unit(2.35, "meters"),
  17550. weight: math.unit(119, "kg"),
  17551. name: "Front",
  17552. image: {
  17553. source: "./media/characters/ilia/front.svg",
  17554. extra: 1285 / 1255,
  17555. bottom: 0.06
  17556. }
  17557. },
  17558. },
  17559. [
  17560. {
  17561. name: "Normal",
  17562. height: math.unit(2.35, "meters")
  17563. },
  17564. {
  17565. name: "Macro",
  17566. height: math.unit(140, "meters"),
  17567. default: true
  17568. },
  17569. {
  17570. name: "Megamacro",
  17571. height: math.unit(100, "miles")
  17572. },
  17573. ]
  17574. ))
  17575. characterMakers.push(() => makeCharacter(
  17576. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17577. {
  17578. front: {
  17579. height: math.unit(6 + 5 / 12, "feet"),
  17580. weight: math.unit(190, "lb"),
  17581. name: "Front",
  17582. image: {
  17583. source: "./media/characters/kingdead/front.svg",
  17584. extra: 1228 / 1177
  17585. }
  17586. },
  17587. },
  17588. [
  17589. {
  17590. name: "Micro",
  17591. height: math.unit(7, "inches")
  17592. },
  17593. {
  17594. name: "Normal",
  17595. height: math.unit(6 + 5 / 12, "feet")
  17596. },
  17597. {
  17598. name: "Macro",
  17599. height: math.unit(150, "feet"),
  17600. default: true
  17601. },
  17602. {
  17603. name: "Megamacro",
  17604. height: math.unit(200, "miles")
  17605. },
  17606. ]
  17607. ))
  17608. characterMakers.push(() => makeCharacter(
  17609. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17610. {
  17611. front: {
  17612. height: math.unit(8, "feet"),
  17613. weight: math.unit(600, "lb"),
  17614. name: "Front",
  17615. image: {
  17616. source: "./media/characters/kyrehx/front.svg",
  17617. extra: 1195 / 1095,
  17618. bottom: 0.034
  17619. }
  17620. },
  17621. },
  17622. [
  17623. {
  17624. name: "Micro",
  17625. height: math.unit(2, "inches")
  17626. },
  17627. {
  17628. name: "Normal",
  17629. height: math.unit(8, "feet"),
  17630. default: true
  17631. },
  17632. {
  17633. name: "Macro",
  17634. height: math.unit(255, "feet")
  17635. },
  17636. ]
  17637. ))
  17638. characterMakers.push(() => makeCharacter(
  17639. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17640. {
  17641. front: {
  17642. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17643. weight: math.unit(184, "lb"),
  17644. name: "Front",
  17645. image: {
  17646. source: "./media/characters/xang/front.svg",
  17647. extra: 845 / 755
  17648. }
  17649. },
  17650. },
  17651. [
  17652. {
  17653. name: "Normal",
  17654. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17655. default: true
  17656. },
  17657. {
  17658. name: "Macro",
  17659. height: math.unit(0.935 * 146, "feet")
  17660. },
  17661. {
  17662. name: "Megamacro",
  17663. height: math.unit(0.935 * 3, "miles")
  17664. },
  17665. ]
  17666. ))
  17667. characterMakers.push(() => makeCharacter(
  17668. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17669. {
  17670. frontDressed: {
  17671. height: math.unit(5 + 7 / 12, "feet"),
  17672. weight: math.unit(140, "lb"),
  17673. name: "Front (Dressed)",
  17674. image: {
  17675. source: "./media/characters/doc-weardno/front-dressed.svg",
  17676. extra: 263 / 234
  17677. }
  17678. },
  17679. backDressed: {
  17680. height: math.unit(5 + 7 / 12, "feet"),
  17681. weight: math.unit(140, "lb"),
  17682. name: "Back (Dressed)",
  17683. image: {
  17684. source: "./media/characters/doc-weardno/back-dressed.svg",
  17685. extra: 266 / 238
  17686. }
  17687. },
  17688. front: {
  17689. height: math.unit(5 + 7 / 12, "feet"),
  17690. weight: math.unit(140, "lb"),
  17691. name: "Front",
  17692. image: {
  17693. source: "./media/characters/doc-weardno/front.svg",
  17694. extra: 254 / 233
  17695. }
  17696. },
  17697. },
  17698. [
  17699. {
  17700. name: "Micro",
  17701. height: math.unit(3, "inches")
  17702. },
  17703. {
  17704. name: "Normal",
  17705. height: math.unit(5 + 7 / 12, "feet"),
  17706. default: true
  17707. },
  17708. {
  17709. name: "Macro",
  17710. height: math.unit(25, "feet")
  17711. },
  17712. {
  17713. name: "Megamacro",
  17714. height: math.unit(2, "miles")
  17715. },
  17716. ]
  17717. ))
  17718. characterMakers.push(() => makeCharacter(
  17719. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17720. {
  17721. front: {
  17722. height: math.unit(6 + 2 / 12, "feet"),
  17723. weight: math.unit(153, "lb"),
  17724. name: "Front",
  17725. image: {
  17726. source: "./media/characters/seth-whilst/front.svg",
  17727. bottom: 0.07
  17728. }
  17729. },
  17730. },
  17731. [
  17732. {
  17733. name: "Micro",
  17734. height: math.unit(5, "inches")
  17735. },
  17736. {
  17737. name: "Normal",
  17738. height: math.unit(6 + 2 / 12, "feet"),
  17739. default: true
  17740. },
  17741. ]
  17742. ))
  17743. characterMakers.push(() => makeCharacter(
  17744. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17745. {
  17746. front: {
  17747. height: math.unit(3, "inches"),
  17748. weight: math.unit(8, "grams"),
  17749. name: "Front",
  17750. image: {
  17751. source: "./media/characters/pocket-jabari/front.svg",
  17752. extra: 1024 / 974,
  17753. bottom: 0.039
  17754. }
  17755. },
  17756. },
  17757. [
  17758. {
  17759. name: "Minimicro",
  17760. height: math.unit(8, "mm")
  17761. },
  17762. {
  17763. name: "Micro",
  17764. height: math.unit(3, "inches"),
  17765. default: true
  17766. },
  17767. {
  17768. name: "Normal",
  17769. height: math.unit(3, "feet")
  17770. },
  17771. ]
  17772. ))
  17773. characterMakers.push(() => makeCharacter(
  17774. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17775. {
  17776. front: {
  17777. height: math.unit(15, "feet"),
  17778. weight: math.unit(3280, "lb"),
  17779. name: "Front",
  17780. image: {
  17781. source: "./media/characters/sapphy/front.svg",
  17782. extra: 671 / 577,
  17783. bottom: 0.085
  17784. }
  17785. },
  17786. back: {
  17787. height: math.unit(15, "feet"),
  17788. weight: math.unit(3280, "lb"),
  17789. name: "Back",
  17790. image: {
  17791. source: "./media/characters/sapphy/back.svg",
  17792. extra: 631 / 607,
  17793. bottom: 0.045
  17794. }
  17795. },
  17796. },
  17797. [
  17798. {
  17799. name: "Normal",
  17800. height: math.unit(15, "feet")
  17801. },
  17802. {
  17803. name: "Casual Macro",
  17804. height: math.unit(120, "feet")
  17805. },
  17806. {
  17807. name: "Macro",
  17808. height: math.unit(2150, "feet"),
  17809. default: true
  17810. },
  17811. {
  17812. name: "Megamacro",
  17813. height: math.unit(8, "miles")
  17814. },
  17815. {
  17816. name: "Galaxy Mom",
  17817. height: math.unit(6, "megalightyears")
  17818. },
  17819. ]
  17820. ))
  17821. characterMakers.push(() => makeCharacter(
  17822. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17823. {
  17824. front: {
  17825. height: math.unit(6, "feet"),
  17826. weight: math.unit(170, "lb"),
  17827. name: "Front",
  17828. image: {
  17829. source: "./media/characters/kiro/front.svg",
  17830. extra: 1064 / 1012,
  17831. bottom: 0.052
  17832. }
  17833. },
  17834. },
  17835. [
  17836. {
  17837. name: "Micro",
  17838. height: math.unit(6, "inches")
  17839. },
  17840. {
  17841. name: "Normal",
  17842. height: math.unit(6, "feet"),
  17843. default: true
  17844. },
  17845. {
  17846. name: "Macro",
  17847. height: math.unit(72, "feet")
  17848. },
  17849. ]
  17850. ))
  17851. characterMakers.push(() => makeCharacter(
  17852. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17853. {
  17854. front: {
  17855. height: math.unit(5 + 9 / 12, "feet"),
  17856. weight: math.unit(175, "lb"),
  17857. name: "Front",
  17858. image: {
  17859. source: "./media/characters/irishfox/front.svg",
  17860. extra: 1912 / 1680,
  17861. bottom: 0.02
  17862. }
  17863. },
  17864. },
  17865. [
  17866. {
  17867. name: "Nano",
  17868. height: math.unit(1, "mm")
  17869. },
  17870. {
  17871. name: "Micro",
  17872. height: math.unit(2, "inches")
  17873. },
  17874. {
  17875. name: "Normal",
  17876. height: math.unit(5 + 9 / 12, "feet"),
  17877. default: true
  17878. },
  17879. {
  17880. name: "Macro",
  17881. height: math.unit(45, "feet")
  17882. },
  17883. ]
  17884. ))
  17885. characterMakers.push(() => makeCharacter(
  17886. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  17887. {
  17888. front: {
  17889. height: math.unit(6 + 1 / 12, "feet"),
  17890. weight: math.unit(150, "lb"),
  17891. name: "Front",
  17892. image: {
  17893. source: "./media/characters/aronai-sieyes/front.svg",
  17894. extra: 1556 / 1480,
  17895. bottom: 0.015
  17896. }
  17897. },
  17898. side: {
  17899. height: math.unit(6 + 1 / 12, "feet"),
  17900. weight: math.unit(150, "lb"),
  17901. name: "Side",
  17902. image: {
  17903. source: "./media/characters/aronai-sieyes/side.svg",
  17904. extra: 1433 / 1390,
  17905. bottom: 0.0393
  17906. }
  17907. },
  17908. back: {
  17909. height: math.unit(6 + 1 / 12, "feet"),
  17910. weight: math.unit(150, "lb"),
  17911. name: "Back",
  17912. image: {
  17913. source: "./media/characters/aronai-sieyes/back.svg",
  17914. extra: 1544 / 1494,
  17915. bottom: 0.02
  17916. }
  17917. },
  17918. frontClothed: {
  17919. height: math.unit(6 + 1 / 12, "feet"),
  17920. weight: math.unit(150, "lb"),
  17921. name: "Front (Clothed)",
  17922. image: {
  17923. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17924. extra: 1582 / 1527
  17925. }
  17926. },
  17927. feral: {
  17928. height: math.unit(18, "feet"),
  17929. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17930. name: "Feral",
  17931. image: {
  17932. source: "./media/characters/aronai-sieyes/feral.svg",
  17933. extra: 1530 / 1240,
  17934. bottom: 0.035
  17935. }
  17936. },
  17937. },
  17938. [
  17939. {
  17940. name: "Micro",
  17941. height: math.unit(2, "inches")
  17942. },
  17943. {
  17944. name: "Normal",
  17945. height: math.unit(6 + 1 / 12, "feet"),
  17946. default: true
  17947. }
  17948. ]
  17949. ))
  17950. characterMakers.push(() => makeCharacter(
  17951. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  17952. {
  17953. front: {
  17954. height: math.unit(12, "feet"),
  17955. weight: math.unit(410, "kg"),
  17956. name: "Front",
  17957. image: {
  17958. source: "./media/characters/xuna/front.svg",
  17959. extra: 2184 / 1980
  17960. }
  17961. },
  17962. side: {
  17963. height: math.unit(12, "feet"),
  17964. weight: math.unit(410, "kg"),
  17965. name: "Side",
  17966. image: {
  17967. source: "./media/characters/xuna/side.svg",
  17968. extra: 2184 / 1980
  17969. }
  17970. },
  17971. back: {
  17972. height: math.unit(12, "feet"),
  17973. weight: math.unit(410, "kg"),
  17974. name: "Back",
  17975. image: {
  17976. source: "./media/characters/xuna/back.svg",
  17977. extra: 2184 / 1980
  17978. }
  17979. },
  17980. },
  17981. [
  17982. {
  17983. name: "Nano glow",
  17984. height: math.unit(10, "nm")
  17985. },
  17986. {
  17987. name: "Micro floof",
  17988. height: math.unit(0.3, "m")
  17989. },
  17990. {
  17991. name: "Huggable softy boi",
  17992. height: math.unit(3.6576, "m"),
  17993. default: true
  17994. },
  17995. {
  17996. name: "Admirable floof",
  17997. height: math.unit(80, "meters")
  17998. },
  17999. {
  18000. name: "Gentle macro",
  18001. height: math.unit(300, "meters")
  18002. },
  18003. {
  18004. name: "Very careful floof",
  18005. height: math.unit(3200, "meters")
  18006. },
  18007. {
  18008. name: "The mega floof",
  18009. height: math.unit(36000, "meters")
  18010. },
  18011. {
  18012. name: "Giga-fur-Wicker",
  18013. height: math.unit(4800000, "meters")
  18014. },
  18015. {
  18016. name: "Licky world",
  18017. height: math.unit(20000000, "meters")
  18018. },
  18019. {
  18020. name: "Floofy cyan sun",
  18021. height: math.unit(1500000000, "meters")
  18022. },
  18023. {
  18024. name: "Milky Wicker",
  18025. height: math.unit(1000000000000000000000, "meters")
  18026. },
  18027. {
  18028. name: "The observing Wicker",
  18029. height: math.unit(999999999999999999999999999, "meters")
  18030. },
  18031. ]
  18032. ))
  18033. characterMakers.push(() => makeCharacter(
  18034. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18035. {
  18036. front: {
  18037. height: math.unit(5 + 9 / 12, "feet"),
  18038. weight: math.unit(150, "lb"),
  18039. name: "Front",
  18040. image: {
  18041. source: "./media/characters/arokha-sieyes/front.svg",
  18042. extra: 1425 / 1284,
  18043. bottom: 0.05
  18044. }
  18045. },
  18046. },
  18047. [
  18048. {
  18049. name: "Normal",
  18050. height: math.unit(5 + 9 / 12, "feet")
  18051. },
  18052. {
  18053. name: "Macro",
  18054. height: math.unit(30, "meters"),
  18055. default: true
  18056. },
  18057. ]
  18058. ))
  18059. characterMakers.push(() => makeCharacter(
  18060. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18061. {
  18062. front: {
  18063. height: math.unit(6, "feet"),
  18064. weight: math.unit(180, "lb"),
  18065. name: "Front",
  18066. image: {
  18067. source: "./media/characters/arokh-sieyes/front.svg",
  18068. extra: 1830 / 1769,
  18069. bottom: 0.01
  18070. }
  18071. },
  18072. },
  18073. [
  18074. {
  18075. name: "Normal",
  18076. height: math.unit(6, "feet")
  18077. },
  18078. {
  18079. name: "Macro",
  18080. height: math.unit(30, "meters"),
  18081. default: true
  18082. },
  18083. ]
  18084. ))
  18085. characterMakers.push(() => makeCharacter(
  18086. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18087. {
  18088. side: {
  18089. height: math.unit(13 + 1 / 12, "feet"),
  18090. weight: math.unit(8.5, "tonnes"),
  18091. name: "Side",
  18092. image: {
  18093. source: "./media/characters/goldeneye/side.svg",
  18094. extra: 1182 / 778,
  18095. bottom: 0.067
  18096. }
  18097. },
  18098. paw: {
  18099. height: math.unit(3.4, "feet"),
  18100. name: "Paw",
  18101. image: {
  18102. source: "./media/characters/goldeneye/paw.svg"
  18103. }
  18104. },
  18105. },
  18106. [
  18107. {
  18108. name: "Normal",
  18109. height: math.unit(13 + 1 / 12, "feet"),
  18110. default: true
  18111. },
  18112. ]
  18113. ))
  18114. characterMakers.push(() => makeCharacter(
  18115. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18116. {
  18117. front: {
  18118. height: math.unit(6 + 1 / 12, "feet"),
  18119. weight: math.unit(210, "lb"),
  18120. name: "Front",
  18121. image: {
  18122. source: "./media/characters/leonardo-lycheborne/front.svg",
  18123. extra: 390 / 365,
  18124. bottom: 0.032
  18125. }
  18126. },
  18127. side: {
  18128. height: math.unit(6 + 1 / 12, "feet"),
  18129. weight: math.unit(210, "lb"),
  18130. name: "Side",
  18131. image: {
  18132. source: "./media/characters/leonardo-lycheborne/side.svg",
  18133. extra: 390 / 365,
  18134. bottom: 0.005
  18135. }
  18136. },
  18137. back: {
  18138. height: math.unit(6 + 1 / 12, "feet"),
  18139. weight: math.unit(210, "lb"),
  18140. name: "Back",
  18141. image: {
  18142. source: "./media/characters/leonardo-lycheborne/back.svg",
  18143. extra: 392 / 366,
  18144. bottom: 0.01
  18145. }
  18146. },
  18147. hand: {
  18148. height: math.unit(1.08, "feet"),
  18149. name: "Hand",
  18150. image: {
  18151. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18152. }
  18153. },
  18154. foot: {
  18155. height: math.unit(1.32, "feet"),
  18156. name: "Foot",
  18157. image: {
  18158. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18159. }
  18160. },
  18161. were: {
  18162. height: math.unit(20, "feet"),
  18163. weight: math.unit(7800, "lb"),
  18164. name: "Were",
  18165. image: {
  18166. source: "./media/characters/leonardo-lycheborne/were.svg",
  18167. extra: 308 / 294,
  18168. bottom: 0.048
  18169. }
  18170. },
  18171. feral: {
  18172. height: math.unit(7.5, "feet"),
  18173. weight: math.unit(600, "lb"),
  18174. name: "Feral",
  18175. image: {
  18176. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18177. extra: 210 / 186,
  18178. bottom: 0.108
  18179. }
  18180. },
  18181. taur: {
  18182. height: math.unit(11, "feet"),
  18183. weight: math.unit(3300, "lb"),
  18184. name: "Taur",
  18185. image: {
  18186. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18187. extra: 320 / 303,
  18188. bottom: 0.025
  18189. }
  18190. },
  18191. barghest: {
  18192. height: math.unit(11, "feet"),
  18193. weight: math.unit(1300, "lb"),
  18194. name: "Barghest",
  18195. image: {
  18196. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18197. extra: 323 / 302,
  18198. bottom: 0.027
  18199. }
  18200. },
  18201. dick: {
  18202. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18203. name: "Dick",
  18204. image: {
  18205. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18206. }
  18207. },
  18208. dickWere: {
  18209. height: math.unit((20) / 3.8, "feet"),
  18210. name: "Dick (Were)",
  18211. image: {
  18212. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18213. }
  18214. },
  18215. },
  18216. [
  18217. {
  18218. name: "Normal",
  18219. height: math.unit(6 + 1 / 12, "feet"),
  18220. default: true
  18221. },
  18222. ]
  18223. ))
  18224. characterMakers.push(() => makeCharacter(
  18225. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18226. {
  18227. front: {
  18228. height: math.unit(10, "feet"),
  18229. weight: math.unit(350, "lb"),
  18230. name: "Front",
  18231. image: {
  18232. source: "./media/characters/jet/front.svg",
  18233. extra: 2050 / 1980,
  18234. bottom: 0.013
  18235. }
  18236. },
  18237. back: {
  18238. height: math.unit(10, "feet"),
  18239. weight: math.unit(350, "lb"),
  18240. name: "Back",
  18241. image: {
  18242. source: "./media/characters/jet/back.svg",
  18243. extra: 2050 / 1980,
  18244. bottom: 0.013
  18245. }
  18246. },
  18247. },
  18248. [
  18249. {
  18250. name: "Micro",
  18251. height: math.unit(6, "inches")
  18252. },
  18253. {
  18254. name: "Normal",
  18255. height: math.unit(10, "feet"),
  18256. default: true
  18257. },
  18258. {
  18259. name: "Macro",
  18260. height: math.unit(100, "feet")
  18261. },
  18262. ]
  18263. ))
  18264. characterMakers.push(() => makeCharacter(
  18265. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18266. {
  18267. front: {
  18268. height: math.unit(15, "feet"),
  18269. weight: math.unit(2800, "lb"),
  18270. name: "Front",
  18271. image: {
  18272. source: "./media/characters/tanarath/front.svg",
  18273. extra: 2392 / 2220,
  18274. bottom: 0.03
  18275. }
  18276. },
  18277. back: {
  18278. height: math.unit(15, "feet"),
  18279. weight: math.unit(2800, "lb"),
  18280. name: "Back",
  18281. image: {
  18282. source: "./media/characters/tanarath/back.svg",
  18283. extra: 2392 / 2220,
  18284. bottom: 0.03
  18285. }
  18286. },
  18287. },
  18288. [
  18289. {
  18290. name: "Normal",
  18291. height: math.unit(15, "feet"),
  18292. default: true
  18293. },
  18294. ]
  18295. ))
  18296. characterMakers.push(() => makeCharacter(
  18297. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18298. {
  18299. front: {
  18300. height: math.unit(7 + 1 / 12, "feet"),
  18301. weight: math.unit(175, "lb"),
  18302. name: "Front",
  18303. image: {
  18304. source: "./media/characters/patty-cattybatty/front.svg",
  18305. extra: 908 / 874,
  18306. bottom: 0.025
  18307. }
  18308. },
  18309. },
  18310. [
  18311. {
  18312. name: "Micro",
  18313. height: math.unit(1, "inch")
  18314. },
  18315. {
  18316. name: "Normal",
  18317. height: math.unit(7 + 1 / 12, "feet")
  18318. },
  18319. {
  18320. name: "Mini Macro",
  18321. height: math.unit(155, "feet")
  18322. },
  18323. {
  18324. name: "Macro",
  18325. height: math.unit(1077, "feet")
  18326. },
  18327. {
  18328. name: "Mega Macro",
  18329. height: math.unit(47650, "feet"),
  18330. default: true
  18331. },
  18332. {
  18333. name: "Giga Macro",
  18334. height: math.unit(440, "miles")
  18335. },
  18336. {
  18337. name: "Tera Macro",
  18338. height: math.unit(8700, "miles")
  18339. },
  18340. {
  18341. name: "Planetary Macro",
  18342. height: math.unit(32700, "miles")
  18343. },
  18344. {
  18345. name: "Solar Macro",
  18346. height: math.unit(550000, "miles")
  18347. },
  18348. {
  18349. name: "Celestial Macro",
  18350. height: math.unit(2.5, "AU")
  18351. },
  18352. ]
  18353. ))
  18354. characterMakers.push(() => makeCharacter(
  18355. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18356. {
  18357. front: {
  18358. height: math.unit(4 + 5 / 12, "feet"),
  18359. weight: math.unit(90, "lb"),
  18360. name: "Front",
  18361. image: {
  18362. source: "./media/characters/cappu/front.svg",
  18363. extra: 1247 / 1152,
  18364. bottom: 0.012
  18365. }
  18366. },
  18367. },
  18368. [
  18369. {
  18370. name: "Normal",
  18371. height: math.unit(4 + 5 / 12, "feet"),
  18372. default: true
  18373. },
  18374. ]
  18375. ))
  18376. characterMakers.push(() => makeCharacter(
  18377. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18378. {
  18379. frontDressed: {
  18380. height: math.unit(70, "cm"),
  18381. weight: math.unit(6, "kg"),
  18382. name: "Front (Dressed)",
  18383. image: {
  18384. source: "./media/characters/sebi/front-dressed.svg",
  18385. extra: 713.5 / 686.5,
  18386. bottom: 0.003
  18387. }
  18388. },
  18389. front: {
  18390. height: math.unit(70, "cm"),
  18391. weight: math.unit(5, "kg"),
  18392. name: "Front",
  18393. image: {
  18394. source: "./media/characters/sebi/front.svg",
  18395. extra: 713.5 / 686.5,
  18396. bottom: 0.003
  18397. }
  18398. }
  18399. },
  18400. [
  18401. {
  18402. name: "Normal",
  18403. height: math.unit(70, "cm"),
  18404. default: true
  18405. },
  18406. {
  18407. name: "Macro",
  18408. height: math.unit(8, "meters")
  18409. },
  18410. ]
  18411. ))
  18412. characterMakers.push(() => makeCharacter(
  18413. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18414. {
  18415. front: {
  18416. height: math.unit(6, "feet"),
  18417. weight: math.unit(150, "lb"),
  18418. name: "Front",
  18419. image: {
  18420. source: "./media/characters/typhek/front.svg",
  18421. extra: 1948 / 1929,
  18422. bottom: 0.025
  18423. }
  18424. },
  18425. side: {
  18426. height: math.unit(6, "feet"),
  18427. weight: math.unit(150, "lb"),
  18428. name: "Side",
  18429. image: {
  18430. source: "./media/characters/typhek/side.svg",
  18431. extra: 2034 / 2010,
  18432. bottom: 0.003
  18433. }
  18434. },
  18435. back: {
  18436. height: math.unit(6, "feet"),
  18437. weight: math.unit(150, "lb"),
  18438. name: "Back",
  18439. image: {
  18440. source: "./media/characters/typhek/back.svg",
  18441. extra: 2005 / 1978,
  18442. bottom: 0.004
  18443. }
  18444. },
  18445. palm: {
  18446. height: math.unit(1.2, "feet"),
  18447. name: "Palm",
  18448. image: {
  18449. source: "./media/characters/typhek/palm.svg"
  18450. }
  18451. },
  18452. fist: {
  18453. height: math.unit(1.1, "feet"),
  18454. name: "Fist",
  18455. image: {
  18456. source: "./media/characters/typhek/fist.svg"
  18457. }
  18458. },
  18459. foot: {
  18460. height: math.unit(1.57, "feet"),
  18461. name: "Foot",
  18462. image: {
  18463. source: "./media/characters/typhek/foot.svg"
  18464. }
  18465. },
  18466. sole: {
  18467. height: math.unit(2.05, "feet"),
  18468. name: "Sole",
  18469. image: {
  18470. source: "./media/characters/typhek/sole.svg"
  18471. }
  18472. },
  18473. },
  18474. [
  18475. {
  18476. name: "Macro",
  18477. height: math.unit(40, "stories"),
  18478. default: true
  18479. },
  18480. {
  18481. name: "Megamacro",
  18482. height: math.unit(1, "mile")
  18483. },
  18484. {
  18485. name: "Gigamacro",
  18486. height: math.unit(4000, "solarradii")
  18487. },
  18488. {
  18489. name: "Universal",
  18490. height: math.unit(1.1, "universes")
  18491. }
  18492. ]
  18493. ))
  18494. characterMakers.push(() => makeCharacter(
  18495. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18496. {
  18497. side: {
  18498. height: math.unit(5 + 7 / 12, "feet"),
  18499. weight: math.unit(150, "lb"),
  18500. name: "Side",
  18501. image: {
  18502. source: "./media/characters/kassy/side.svg",
  18503. extra: 1280 / 1225,
  18504. bottom: 0.002
  18505. }
  18506. },
  18507. front: {
  18508. height: math.unit(5 + 7 / 12, "feet"),
  18509. weight: math.unit(150, "lb"),
  18510. name: "Front",
  18511. image: {
  18512. source: "./media/characters/kassy/front.svg",
  18513. extra: 1280 / 1225,
  18514. bottom: 0.025
  18515. }
  18516. },
  18517. back: {
  18518. height: math.unit(5 + 7 / 12, "feet"),
  18519. weight: math.unit(150, "lb"),
  18520. name: "Back",
  18521. image: {
  18522. source: "./media/characters/kassy/back.svg",
  18523. extra: 1280 / 1225,
  18524. bottom: 0.002
  18525. }
  18526. },
  18527. foot: {
  18528. height: math.unit(1.266, "feet"),
  18529. name: "Foot",
  18530. image: {
  18531. source: "./media/characters/kassy/foot.svg"
  18532. }
  18533. },
  18534. },
  18535. [
  18536. {
  18537. name: "Normal",
  18538. height: math.unit(5 + 7 / 12, "feet")
  18539. },
  18540. {
  18541. name: "Macro",
  18542. height: math.unit(137, "feet"),
  18543. default: true
  18544. },
  18545. {
  18546. name: "Megamacro",
  18547. height: math.unit(1, "mile")
  18548. },
  18549. ]
  18550. ))
  18551. characterMakers.push(() => makeCharacter(
  18552. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18553. {
  18554. front: {
  18555. height: math.unit(6 + 1 / 12, "feet"),
  18556. weight: math.unit(200, "lb"),
  18557. name: "Front",
  18558. image: {
  18559. source: "./media/characters/neil/front.svg",
  18560. extra: 1326 / 1250,
  18561. bottom: 0.023
  18562. }
  18563. },
  18564. },
  18565. [
  18566. {
  18567. name: "Normal",
  18568. height: math.unit(6 + 1 / 12, "feet"),
  18569. default: true
  18570. },
  18571. {
  18572. name: "Macro",
  18573. height: math.unit(200, "feet")
  18574. },
  18575. ]
  18576. ))
  18577. characterMakers.push(() => makeCharacter(
  18578. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18579. {
  18580. front: {
  18581. height: math.unit(5 + 9 / 12, "feet"),
  18582. weight: math.unit(190, "lb"),
  18583. name: "Front",
  18584. image: {
  18585. source: "./media/characters/atticus/front.svg",
  18586. extra: 2934 / 2785,
  18587. bottom: 0.025
  18588. }
  18589. },
  18590. },
  18591. [
  18592. {
  18593. name: "Normal",
  18594. height: math.unit(5 + 9 / 12, "feet"),
  18595. default: true
  18596. },
  18597. {
  18598. name: "Macro",
  18599. height: math.unit(180, "feet")
  18600. },
  18601. ]
  18602. ))
  18603. characterMakers.push(() => makeCharacter(
  18604. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18605. {
  18606. side: {
  18607. height: math.unit(9, "feet"),
  18608. weight: math.unit(650, "lb"),
  18609. name: "Side",
  18610. image: {
  18611. source: "./media/characters/milo/side.svg",
  18612. extra: 2644 / 2310,
  18613. bottom: 0.032
  18614. }
  18615. },
  18616. },
  18617. [
  18618. {
  18619. name: "Normal",
  18620. height: math.unit(9, "feet"),
  18621. default: true
  18622. },
  18623. {
  18624. name: "Macro",
  18625. height: math.unit(300, "feet")
  18626. },
  18627. ]
  18628. ))
  18629. characterMakers.push(() => makeCharacter(
  18630. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18631. {
  18632. side: {
  18633. height: math.unit(8, "meters"),
  18634. weight: math.unit(90000, "kg"),
  18635. name: "Side",
  18636. image: {
  18637. source: "./media/characters/ijzer/side.svg",
  18638. extra: 2756 / 1600,
  18639. bottom: 0.01
  18640. }
  18641. },
  18642. },
  18643. [
  18644. {
  18645. name: "Small",
  18646. height: math.unit(3, "meters")
  18647. },
  18648. {
  18649. name: "Normal",
  18650. height: math.unit(8, "meters"),
  18651. default: true
  18652. },
  18653. {
  18654. name: "Normal+",
  18655. height: math.unit(10, "meters")
  18656. },
  18657. {
  18658. name: "Bigger",
  18659. height: math.unit(24, "meters")
  18660. },
  18661. {
  18662. name: "Huge",
  18663. height: math.unit(80, "meters")
  18664. },
  18665. ]
  18666. ))
  18667. characterMakers.push(() => makeCharacter(
  18668. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18669. {
  18670. front: {
  18671. height: math.unit(6 + 2 / 12, "feet"),
  18672. weight: math.unit(153, "lb"),
  18673. name: "Front",
  18674. image: {
  18675. source: "./media/characters/luca-cervicum/front.svg",
  18676. extra: 370 / 327,
  18677. bottom: 0.015
  18678. }
  18679. },
  18680. back: {
  18681. height: math.unit(6 + 2 / 12, "feet"),
  18682. weight: math.unit(153, "lb"),
  18683. name: "Back",
  18684. image: {
  18685. source: "./media/characters/luca-cervicum/back.svg",
  18686. extra: 367 / 333,
  18687. bottom: 0.005
  18688. }
  18689. },
  18690. frontGear: {
  18691. height: math.unit(6 + 2 / 12, "feet"),
  18692. weight: math.unit(173, "lb"),
  18693. name: "Front (Gear)",
  18694. image: {
  18695. source: "./media/characters/luca-cervicum/front-gear.svg",
  18696. extra: 377 / 333,
  18697. bottom: 0.006
  18698. }
  18699. },
  18700. },
  18701. [
  18702. {
  18703. name: "Normal",
  18704. height: math.unit(6 + 2 / 12, "feet"),
  18705. default: true
  18706. },
  18707. ]
  18708. ))
  18709. characterMakers.push(() => makeCharacter(
  18710. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18711. {
  18712. front: {
  18713. height: math.unit(6 + 1 / 12, "feet"),
  18714. weight: math.unit(304, "lb"),
  18715. name: "Front",
  18716. image: {
  18717. source: "./media/characters/oliver/front.svg",
  18718. extra: 157 / 143,
  18719. bottom: 0.08
  18720. }
  18721. },
  18722. },
  18723. [
  18724. {
  18725. name: "Normal",
  18726. height: math.unit(6 + 1 / 12, "feet"),
  18727. default: true
  18728. },
  18729. ]
  18730. ))
  18731. characterMakers.push(() => makeCharacter(
  18732. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18733. {
  18734. front: {
  18735. height: math.unit(5 + 7 / 12, "feet"),
  18736. weight: math.unit(140, "lb"),
  18737. name: "Front",
  18738. image: {
  18739. source: "./media/characters/shane/front.svg",
  18740. extra: 304 / 289,
  18741. bottom: 0.005
  18742. }
  18743. },
  18744. },
  18745. [
  18746. {
  18747. name: "Normal",
  18748. height: math.unit(5 + 7 / 12, "feet"),
  18749. default: true
  18750. },
  18751. ]
  18752. ))
  18753. characterMakers.push(() => makeCharacter(
  18754. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18755. {
  18756. front: {
  18757. height: math.unit(5 + 9 / 12, "feet"),
  18758. weight: math.unit(178, "lb"),
  18759. name: "Front",
  18760. image: {
  18761. source: "./media/characters/shin/front.svg",
  18762. extra: 159 / 151,
  18763. bottom: 0.015
  18764. }
  18765. },
  18766. },
  18767. [
  18768. {
  18769. name: "Normal",
  18770. height: math.unit(5 + 9 / 12, "feet"),
  18771. default: true
  18772. },
  18773. ]
  18774. ))
  18775. characterMakers.push(() => makeCharacter(
  18776. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18777. {
  18778. front: {
  18779. height: math.unit(5 + 10 / 12, "feet"),
  18780. weight: math.unit(168, "lb"),
  18781. name: "Front",
  18782. image: {
  18783. source: "./media/characters/xerxes/front.svg",
  18784. extra: 282 / 260,
  18785. bottom: 0.045
  18786. }
  18787. },
  18788. },
  18789. [
  18790. {
  18791. name: "Normal",
  18792. height: math.unit(5 + 10 / 12, "feet"),
  18793. default: true
  18794. },
  18795. ]
  18796. ))
  18797. characterMakers.push(() => makeCharacter(
  18798. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18799. {
  18800. front: {
  18801. height: math.unit(6 + 7 / 12, "feet"),
  18802. weight: math.unit(208, "lb"),
  18803. name: "Front",
  18804. image: {
  18805. source: "./media/characters/chaska/front.svg",
  18806. extra: 332 / 319,
  18807. bottom: 0.015
  18808. }
  18809. },
  18810. },
  18811. [
  18812. {
  18813. name: "Normal",
  18814. height: math.unit(6 + 7 / 12, "feet"),
  18815. default: true
  18816. },
  18817. ]
  18818. ))
  18819. characterMakers.push(() => makeCharacter(
  18820. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18821. {
  18822. front: {
  18823. height: math.unit(5 + 8 / 12, "feet"),
  18824. weight: math.unit(208, "lb"),
  18825. name: "Front",
  18826. image: {
  18827. source: "./media/characters/enuk/front.svg",
  18828. extra: 437 / 406,
  18829. bottom: 0.02
  18830. }
  18831. },
  18832. },
  18833. [
  18834. {
  18835. name: "Normal",
  18836. height: math.unit(5 + 8 / 12, "feet"),
  18837. default: true
  18838. },
  18839. ]
  18840. ))
  18841. characterMakers.push(() => makeCharacter(
  18842. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18843. {
  18844. front: {
  18845. height: math.unit(5 + 10 / 12, "feet"),
  18846. weight: math.unit(252, "lb"),
  18847. name: "Front",
  18848. image: {
  18849. source: "./media/characters/bruun/front.svg",
  18850. extra: 197 / 187,
  18851. bottom: 0.012
  18852. }
  18853. },
  18854. },
  18855. [
  18856. {
  18857. name: "Normal",
  18858. height: math.unit(5 + 10 / 12, "feet"),
  18859. default: true
  18860. },
  18861. ]
  18862. ))
  18863. characterMakers.push(() => makeCharacter(
  18864. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18865. {
  18866. front: {
  18867. height: math.unit(6 + 10 / 12, "feet"),
  18868. weight: math.unit(255, "lb"),
  18869. name: "Front",
  18870. image: {
  18871. source: "./media/characters/alexeev/front.svg",
  18872. extra: 213 / 200,
  18873. bottom: 0.05
  18874. }
  18875. },
  18876. },
  18877. [
  18878. {
  18879. name: "Normal",
  18880. height: math.unit(6 + 10 / 12, "feet"),
  18881. default: true
  18882. },
  18883. ]
  18884. ))
  18885. characterMakers.push(() => makeCharacter(
  18886. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  18887. {
  18888. front: {
  18889. height: math.unit(2 + 8 / 12, "feet"),
  18890. weight: math.unit(22, "lb"),
  18891. name: "Front",
  18892. image: {
  18893. source: "./media/characters/evelyn/front.svg",
  18894. extra: 208 / 180
  18895. }
  18896. },
  18897. },
  18898. [
  18899. {
  18900. name: "Normal",
  18901. height: math.unit(2 + 8 / 12, "feet"),
  18902. default: true
  18903. },
  18904. ]
  18905. ))
  18906. characterMakers.push(() => makeCharacter(
  18907. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  18908. {
  18909. front: {
  18910. height: math.unit(5 + 9 / 12, "feet"),
  18911. weight: math.unit(139, "lb"),
  18912. name: "Front",
  18913. image: {
  18914. source: "./media/characters/inca/front.svg",
  18915. extra: 294 / 291,
  18916. bottom: 0.03
  18917. }
  18918. },
  18919. },
  18920. [
  18921. {
  18922. name: "Normal",
  18923. height: math.unit(5 + 9 / 12, "feet"),
  18924. default: true
  18925. },
  18926. ]
  18927. ))
  18928. characterMakers.push(() => makeCharacter(
  18929. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  18930. {
  18931. front: {
  18932. height: math.unit(5 + 1 / 12, "feet"),
  18933. weight: math.unit(84, "lb"),
  18934. name: "Front",
  18935. image: {
  18936. source: "./media/characters/magdalene/front.svg",
  18937. extra: 293 / 273
  18938. }
  18939. },
  18940. },
  18941. [
  18942. {
  18943. name: "Normal",
  18944. height: math.unit(5 + 1 / 12, "feet"),
  18945. default: true
  18946. },
  18947. ]
  18948. ))
  18949. characterMakers.push(() => makeCharacter(
  18950. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  18951. {
  18952. front: {
  18953. height: math.unit(6 + 3 / 12, "feet"),
  18954. weight: math.unit(185, "lb"),
  18955. name: "Front",
  18956. image: {
  18957. source: "./media/characters/mera/front.svg",
  18958. extra: 291 / 277,
  18959. bottom: 0.03
  18960. }
  18961. },
  18962. },
  18963. [
  18964. {
  18965. name: "Normal",
  18966. height: math.unit(6 + 3 / 12, "feet"),
  18967. default: true
  18968. },
  18969. ]
  18970. ))
  18971. characterMakers.push(() => makeCharacter(
  18972. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  18973. {
  18974. front: {
  18975. height: math.unit(6 + 7 / 12, "feet"),
  18976. weight: math.unit(160, "lb"),
  18977. name: "Front",
  18978. image: {
  18979. source: "./media/characters/ceres/front.svg",
  18980. extra: 1023 / 950,
  18981. bottom: 0.027
  18982. }
  18983. },
  18984. back: {
  18985. height: math.unit(6 + 7 / 12, "feet"),
  18986. weight: math.unit(160, "lb"),
  18987. name: "Back",
  18988. image: {
  18989. source: "./media/characters/ceres/back.svg",
  18990. extra: 1023 / 950
  18991. }
  18992. },
  18993. },
  18994. [
  18995. {
  18996. name: "Normal",
  18997. height: math.unit(6 + 7 / 12, "feet"),
  18998. default: true
  18999. },
  19000. ]
  19001. ))
  19002. characterMakers.push(() => makeCharacter(
  19003. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19004. {
  19005. front: {
  19006. height: math.unit(5 + 10 / 12, "feet"),
  19007. weight: math.unit(150, "lb"),
  19008. name: "Front",
  19009. image: {
  19010. source: "./media/characters/kris/front.svg",
  19011. extra: 885 / 803,
  19012. bottom: 0.03
  19013. }
  19014. },
  19015. },
  19016. [
  19017. {
  19018. name: "Normal",
  19019. height: math.unit(5 + 10 / 12, "feet"),
  19020. default: true
  19021. },
  19022. ]
  19023. ))
  19024. characterMakers.push(() => makeCharacter(
  19025. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19026. {
  19027. front: {
  19028. height: math.unit(7, "feet"),
  19029. weight: math.unit(120, "kg"),
  19030. name: "Front",
  19031. image: {
  19032. source: "./media/characters/taluthus/front.svg",
  19033. extra: 903 / 833,
  19034. bottom: 0.015
  19035. }
  19036. },
  19037. },
  19038. [
  19039. {
  19040. name: "Normal",
  19041. height: math.unit(7, "feet"),
  19042. default: true
  19043. },
  19044. {
  19045. name: "Macro",
  19046. height: math.unit(300, "feet")
  19047. },
  19048. ]
  19049. ))
  19050. characterMakers.push(() => makeCharacter(
  19051. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19052. {
  19053. front: {
  19054. height: math.unit(5 + 9 / 12, "feet"),
  19055. weight: math.unit(145, "lb"),
  19056. name: "Front",
  19057. image: {
  19058. source: "./media/characters/dawn/front.svg",
  19059. extra: 2094 / 2016,
  19060. bottom: 0.025
  19061. }
  19062. },
  19063. back: {
  19064. height: math.unit(5 + 9 / 12, "feet"),
  19065. weight: math.unit(160, "lb"),
  19066. name: "Back",
  19067. image: {
  19068. source: "./media/characters/dawn/back.svg",
  19069. extra: 2112 / 2080,
  19070. bottom: 0.005
  19071. }
  19072. },
  19073. },
  19074. [
  19075. {
  19076. name: "Normal",
  19077. height: math.unit(6 + 7 / 12, "feet"),
  19078. default: true
  19079. },
  19080. ]
  19081. ))
  19082. characterMakers.push(() => makeCharacter(
  19083. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19084. {
  19085. anthro: {
  19086. height: math.unit(8 + 3 / 12, "feet"),
  19087. weight: math.unit(450, "lb"),
  19088. name: "Anthro",
  19089. image: {
  19090. source: "./media/characters/arador/anthro.svg",
  19091. extra: 1835 / 1718,
  19092. bottom: 0.025
  19093. }
  19094. },
  19095. feral: {
  19096. height: math.unit(4, "feet"),
  19097. weight: math.unit(200, "lb"),
  19098. name: "Feral",
  19099. image: {
  19100. source: "./media/characters/arador/feral.svg",
  19101. extra: 1683 / 1514,
  19102. bottom: 0.07
  19103. }
  19104. },
  19105. },
  19106. [
  19107. {
  19108. name: "Normal",
  19109. height: math.unit(8 + 3 / 12, "feet")
  19110. },
  19111. {
  19112. name: "Macro",
  19113. height: math.unit(82.5, "feet"),
  19114. default: true
  19115. },
  19116. ]
  19117. ))
  19118. characterMakers.push(() => makeCharacter(
  19119. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19120. {
  19121. front: {
  19122. height: math.unit(5 + 10 / 12, "feet"),
  19123. weight: math.unit(125, "lb"),
  19124. name: "Front",
  19125. image: {
  19126. source: "./media/characters/dharsi/front.svg",
  19127. extra: 716 / 630,
  19128. bottom: 0.035
  19129. }
  19130. },
  19131. },
  19132. [
  19133. {
  19134. name: "Nano",
  19135. height: math.unit(100, "nm")
  19136. },
  19137. {
  19138. name: "Micro",
  19139. height: math.unit(2, "inches")
  19140. },
  19141. {
  19142. name: "Normal",
  19143. height: math.unit(5 + 10 / 12, "feet"),
  19144. default: true
  19145. },
  19146. {
  19147. name: "Macro",
  19148. height: math.unit(1000, "feet")
  19149. },
  19150. {
  19151. name: "Megamacro",
  19152. height: math.unit(10, "miles")
  19153. },
  19154. {
  19155. name: "Gigamacro",
  19156. height: math.unit(3000, "miles")
  19157. },
  19158. {
  19159. name: "Teramacro",
  19160. height: math.unit(500000, "miles")
  19161. },
  19162. {
  19163. name: "Teramacro+",
  19164. height: math.unit(30, "galaxies")
  19165. },
  19166. ]
  19167. ))
  19168. characterMakers.push(() => makeCharacter(
  19169. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19170. {
  19171. front: {
  19172. height: math.unit(6, "feet"),
  19173. weight: math.unit(150, "lb"),
  19174. name: "Front",
  19175. image: {
  19176. source: "./media/characters/deathy/front.svg",
  19177. extra: 1552 / 1463,
  19178. bottom: 0.025
  19179. }
  19180. },
  19181. side: {
  19182. height: math.unit(6, "feet"),
  19183. weight: math.unit(150, "lb"),
  19184. name: "Side",
  19185. image: {
  19186. source: "./media/characters/deathy/side.svg",
  19187. extra: 1604 / 1455,
  19188. bottom: 0.025
  19189. }
  19190. },
  19191. back: {
  19192. height: math.unit(6, "feet"),
  19193. weight: math.unit(150, "lb"),
  19194. name: "Back",
  19195. image: {
  19196. source: "./media/characters/deathy/back.svg",
  19197. extra: 1580 / 1463,
  19198. bottom: 0.005
  19199. }
  19200. },
  19201. },
  19202. [
  19203. {
  19204. name: "Micro",
  19205. height: math.unit(5, "millimeters")
  19206. },
  19207. {
  19208. name: "Normal",
  19209. height: math.unit(6 + 5 / 12, "feet"),
  19210. default: true
  19211. },
  19212. ]
  19213. ))
  19214. characterMakers.push(() => makeCharacter(
  19215. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19216. {
  19217. front: {
  19218. height: math.unit(16, "feet"),
  19219. weight: math.unit(4000, "lb"),
  19220. name: "Front",
  19221. image: {
  19222. source: "./media/characters/juniper/front.svg",
  19223. bottom: 0.04
  19224. }
  19225. },
  19226. },
  19227. [
  19228. {
  19229. name: "Normal",
  19230. height: math.unit(16, "feet"),
  19231. default: true
  19232. },
  19233. ]
  19234. ))
  19235. characterMakers.push(() => makeCharacter(
  19236. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19237. {
  19238. front: {
  19239. height: math.unit(6, "feet"),
  19240. weight: math.unit(150, "lb"),
  19241. name: "Front",
  19242. image: {
  19243. source: "./media/characters/hipster/front.svg",
  19244. extra: 1312 / 1209,
  19245. bottom: 0.025
  19246. }
  19247. },
  19248. back: {
  19249. height: math.unit(6, "feet"),
  19250. weight: math.unit(150, "lb"),
  19251. name: "Back",
  19252. image: {
  19253. source: "./media/characters/hipster/back.svg",
  19254. extra: 1281 / 1196,
  19255. bottom: 0.01
  19256. }
  19257. },
  19258. },
  19259. [
  19260. {
  19261. name: "Micro",
  19262. height: math.unit(1, "mm")
  19263. },
  19264. {
  19265. name: "Normal",
  19266. height: math.unit(4, "inches"),
  19267. default: true
  19268. },
  19269. {
  19270. name: "Macro",
  19271. height: math.unit(500, "feet")
  19272. },
  19273. {
  19274. name: "Megamacro",
  19275. height: math.unit(1000, "miles")
  19276. },
  19277. ]
  19278. ))
  19279. characterMakers.push(() => makeCharacter(
  19280. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19281. {
  19282. front: {
  19283. height: math.unit(6, "feet"),
  19284. weight: math.unit(150, "lb"),
  19285. name: "Front",
  19286. image: {
  19287. source: "./media/characters/tendirmuldr/front.svg",
  19288. extra: 1878 / 1772,
  19289. bottom: 0.015
  19290. }
  19291. },
  19292. },
  19293. [
  19294. {
  19295. name: "Megamacro",
  19296. height: math.unit(1500, "miles"),
  19297. default: true
  19298. },
  19299. ]
  19300. ))
  19301. characterMakers.push(() => makeCharacter(
  19302. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19303. {
  19304. front: {
  19305. height: math.unit(14, "feet"),
  19306. weight: math.unit(12000, "lb"),
  19307. name: "Front",
  19308. image: {
  19309. source: "./media/characters/mort/front.svg",
  19310. extra: 365 / 318,
  19311. bottom: 0.01
  19312. }
  19313. },
  19314. side: {
  19315. height: math.unit(14, "feet"),
  19316. weight: math.unit(12000, "lb"),
  19317. name: "Side",
  19318. image: {
  19319. source: "./media/characters/mort/side.svg",
  19320. extra: 365 / 318,
  19321. bottom: 0.052
  19322. },
  19323. default: true
  19324. },
  19325. back: {
  19326. height: math.unit(14, "feet"),
  19327. weight: math.unit(12000, "lb"),
  19328. name: "Back",
  19329. image: {
  19330. source: "./media/characters/mort/back.svg",
  19331. extra: 371 / 332,
  19332. bottom: 0.18
  19333. }
  19334. },
  19335. },
  19336. [
  19337. {
  19338. name: "Normal",
  19339. height: math.unit(14, "feet"),
  19340. default: true
  19341. },
  19342. ]
  19343. ))
  19344. characterMakers.push(() => makeCharacter(
  19345. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19346. {
  19347. front: {
  19348. height: math.unit(8, "feet"),
  19349. weight: math.unit(1, "ton"),
  19350. name: "Front",
  19351. image: {
  19352. source: "./media/characters/lycoa/front.svg",
  19353. extra: 1875 / 1789,
  19354. bottom: 0.022
  19355. }
  19356. },
  19357. back: {
  19358. height: math.unit(8, "feet"),
  19359. weight: math.unit(1, "ton"),
  19360. name: "Back",
  19361. image: {
  19362. source: "./media/characters/lycoa/back.svg",
  19363. extra: 1835 / 1781,
  19364. bottom: 0.03
  19365. }
  19366. },
  19367. head: {
  19368. height: math.unit(2.1, "feet"),
  19369. name: "Head",
  19370. image: {
  19371. source: "./media/characters/lycoa/head.svg"
  19372. }
  19373. },
  19374. tailmaw: {
  19375. height: math.unit(1.9, "feet"),
  19376. name: "Tailmaw",
  19377. image: {
  19378. source: "./media/characters/lycoa/tailmaw.svg"
  19379. }
  19380. },
  19381. tentacles: {
  19382. height: math.unit(2.1, "feet"),
  19383. name: "Tentacles",
  19384. image: {
  19385. source: "./media/characters/lycoa/tentacles.svg"
  19386. }
  19387. },
  19388. dick: {
  19389. height: math.unit(1.73, "feet"),
  19390. name: "Dick",
  19391. image: {
  19392. source: "./media/characters/lycoa/dick.svg"
  19393. }
  19394. },
  19395. },
  19396. [
  19397. {
  19398. name: "Normal",
  19399. height: math.unit(8, "feet"),
  19400. default: true
  19401. },
  19402. {
  19403. name: "Macro",
  19404. height: math.unit(30, "feet")
  19405. },
  19406. ]
  19407. ))
  19408. characterMakers.push(() => makeCharacter(
  19409. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19410. {
  19411. front: {
  19412. height: math.unit(4 + 2 / 12, "feet"),
  19413. weight: math.unit(70, "lb"),
  19414. name: "Front",
  19415. image: {
  19416. source: "./media/characters/naldara/front.svg",
  19417. extra: 841 / 720,
  19418. bottom: 0.04
  19419. }
  19420. },
  19421. naga: {
  19422. height: math.unit(23, "feet"),
  19423. weight: math.unit(15000, "kg"),
  19424. name: "Naga",
  19425. image: {
  19426. source: "./media/characters/naldara/naga.svg",
  19427. extra: 3290/2959,
  19428. bottom: 124/3432
  19429. }
  19430. },
  19431. },
  19432. [
  19433. {
  19434. name: "Normal",
  19435. height: math.unit(4 + 2 / 12, "feet"),
  19436. default: true
  19437. },
  19438. ]
  19439. ))
  19440. characterMakers.push(() => makeCharacter(
  19441. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19442. {
  19443. front: {
  19444. height: math.unit(13 + 7 / 12, "feet"),
  19445. weight: math.unit(1500, "lb"),
  19446. name: "Front",
  19447. image: {
  19448. source: "./media/characters/briar/front.svg",
  19449. extra: 626 / 596,
  19450. bottom: 0.08
  19451. }
  19452. },
  19453. },
  19454. [
  19455. {
  19456. name: "Normal",
  19457. height: math.unit(13 + 7 / 12, "feet"),
  19458. default: true
  19459. },
  19460. ]
  19461. ))
  19462. characterMakers.push(() => makeCharacter(
  19463. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19464. {
  19465. side: {
  19466. height: math.unit(10, "feet"),
  19467. weight: math.unit(500, "lb"),
  19468. name: "Side",
  19469. image: {
  19470. source: "./media/characters/vanguard/side.svg",
  19471. extra: 502 / 425,
  19472. bottom: 0.087
  19473. }
  19474. },
  19475. },
  19476. [
  19477. {
  19478. name: "Normal",
  19479. height: math.unit(10, "feet"),
  19480. default: true
  19481. },
  19482. ]
  19483. ))
  19484. characterMakers.push(() => makeCharacter(
  19485. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19486. {
  19487. front: {
  19488. height: math.unit(7.5, "feet"),
  19489. weight: math.unit(2, "lb"),
  19490. name: "Front",
  19491. image: {
  19492. source: "./media/characters/artemis/front.svg",
  19493. extra: 1192 / 1075,
  19494. bottom: 0.07
  19495. }
  19496. },
  19497. frontNsfw: {
  19498. height: math.unit(7.5, "feet"),
  19499. weight: math.unit(2, "lb"),
  19500. name: "Front (NSFW)",
  19501. image: {
  19502. source: "./media/characters/artemis/front-nsfw.svg",
  19503. extra: 1192 / 1075,
  19504. bottom: 0.07
  19505. }
  19506. },
  19507. frontNsfwer: {
  19508. height: math.unit(7.5, "feet"),
  19509. weight: math.unit(2, "lb"),
  19510. name: "Front (NSFW-er)",
  19511. image: {
  19512. source: "./media/characters/artemis/front-nsfwer.svg",
  19513. extra: 1192 / 1075,
  19514. bottom: 0.07
  19515. }
  19516. },
  19517. side: {
  19518. height: math.unit(7.5, "feet"),
  19519. weight: math.unit(2, "lb"),
  19520. name: "Side",
  19521. image: {
  19522. source: "./media/characters/artemis/side.svg",
  19523. extra: 1192 / 1075,
  19524. bottom: 0.07
  19525. }
  19526. },
  19527. sideNsfw: {
  19528. height: math.unit(7.5, "feet"),
  19529. weight: math.unit(2, "lb"),
  19530. name: "Side (NSFW)",
  19531. image: {
  19532. source: "./media/characters/artemis/side-nsfw.svg",
  19533. extra: 1192 / 1075,
  19534. bottom: 0.07
  19535. }
  19536. },
  19537. sideNsfwer: {
  19538. height: math.unit(7.5, "feet"),
  19539. weight: math.unit(2, "lb"),
  19540. name: "Side (NSFW-er)",
  19541. image: {
  19542. source: "./media/characters/artemis/side-nsfwer.svg",
  19543. extra: 1192 / 1075,
  19544. bottom: 0.07
  19545. }
  19546. },
  19547. maw: {
  19548. height: math.unit(1.1, "feet"),
  19549. name: "Maw",
  19550. image: {
  19551. source: "./media/characters/artemis/maw.svg"
  19552. }
  19553. },
  19554. stomach: {
  19555. height: math.unit(0.95, "feet"),
  19556. name: "Stomach",
  19557. image: {
  19558. source: "./media/characters/artemis/stomach.svg"
  19559. }
  19560. },
  19561. dickCanine: {
  19562. height: math.unit(1, "feet"),
  19563. name: "Dick (Canine)",
  19564. image: {
  19565. source: "./media/characters/artemis/dick-canine.svg"
  19566. }
  19567. },
  19568. dickEquine: {
  19569. height: math.unit(0.85, "feet"),
  19570. name: "Dick (Equine)",
  19571. image: {
  19572. source: "./media/characters/artemis/dick-equine.svg"
  19573. }
  19574. },
  19575. dickExotic: {
  19576. height: math.unit(0.85, "feet"),
  19577. name: "Dick (Exotic)",
  19578. image: {
  19579. source: "./media/characters/artemis/dick-exotic.svg"
  19580. }
  19581. },
  19582. },
  19583. [
  19584. {
  19585. name: "Normal",
  19586. height: math.unit(7.5, "feet"),
  19587. default: true
  19588. },
  19589. {
  19590. name: "Enlarged",
  19591. height: math.unit(12, "feet")
  19592. },
  19593. ]
  19594. ))
  19595. characterMakers.push(() => makeCharacter(
  19596. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19597. {
  19598. front: {
  19599. height: math.unit(5 + 3 / 12, "feet"),
  19600. weight: math.unit(160, "lb"),
  19601. name: "Front",
  19602. image: {
  19603. source: "./media/characters/kira/front.svg",
  19604. extra: 906 / 786,
  19605. bottom: 0.01
  19606. }
  19607. },
  19608. back: {
  19609. height: math.unit(5 + 3 / 12, "feet"),
  19610. weight: math.unit(160, "lb"),
  19611. name: "Back",
  19612. image: {
  19613. source: "./media/characters/kira/back.svg",
  19614. extra: 882 / 757,
  19615. bottom: 0.005
  19616. }
  19617. },
  19618. frontDressed: {
  19619. height: math.unit(5 + 3 / 12, "feet"),
  19620. weight: math.unit(160, "lb"),
  19621. name: "Front (Dressed)",
  19622. image: {
  19623. source: "./media/characters/kira/front-dressed.svg",
  19624. extra: 906 / 786,
  19625. bottom: 0.01
  19626. }
  19627. },
  19628. beans: {
  19629. height: math.unit(0.92, "feet"),
  19630. name: "Beans",
  19631. image: {
  19632. source: "./media/characters/kira/beans.svg"
  19633. }
  19634. },
  19635. },
  19636. [
  19637. {
  19638. name: "Normal",
  19639. height: math.unit(5 + 3 / 12, "feet"),
  19640. default: true
  19641. },
  19642. ]
  19643. ))
  19644. characterMakers.push(() => makeCharacter(
  19645. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19646. {
  19647. front: {
  19648. height: math.unit(5 + 4 / 12, "feet"),
  19649. weight: math.unit(145, "lb"),
  19650. name: "Front",
  19651. image: {
  19652. source: "./media/characters/scramble/front.svg",
  19653. extra: 763 / 727,
  19654. bottom: 0.05
  19655. }
  19656. },
  19657. back: {
  19658. height: math.unit(5 + 4 / 12, "feet"),
  19659. weight: math.unit(145, "lb"),
  19660. name: "Back",
  19661. image: {
  19662. source: "./media/characters/scramble/back.svg",
  19663. extra: 826 / 737,
  19664. bottom: 0.002
  19665. }
  19666. },
  19667. },
  19668. [
  19669. {
  19670. name: "Normal",
  19671. height: math.unit(5 + 4 / 12, "feet"),
  19672. default: true
  19673. },
  19674. ]
  19675. ))
  19676. characterMakers.push(() => makeCharacter(
  19677. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19678. {
  19679. side: {
  19680. height: math.unit(6 + 2 / 12, "feet"),
  19681. weight: math.unit(190, "lb"),
  19682. name: "Side",
  19683. image: {
  19684. source: "./media/characters/biscuit/side.svg",
  19685. extra: 858 / 791,
  19686. bottom: 0.044
  19687. }
  19688. },
  19689. },
  19690. [
  19691. {
  19692. name: "Normal",
  19693. height: math.unit(6 + 2 / 12, "feet"),
  19694. default: true
  19695. },
  19696. ]
  19697. ))
  19698. characterMakers.push(() => makeCharacter(
  19699. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19700. {
  19701. front: {
  19702. height: math.unit(5 + 2 / 12, "feet"),
  19703. weight: math.unit(120, "lb"),
  19704. name: "Front",
  19705. image: {
  19706. source: "./media/characters/poffin/front.svg",
  19707. extra: 786 / 680,
  19708. bottom: 0.005
  19709. }
  19710. },
  19711. },
  19712. [
  19713. {
  19714. name: "Normal",
  19715. height: math.unit(5 + 2 / 12, "feet"),
  19716. default: true
  19717. },
  19718. ]
  19719. ))
  19720. characterMakers.push(() => makeCharacter(
  19721. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19722. {
  19723. front: {
  19724. height: math.unit(6 + 3 / 12, "feet"),
  19725. weight: math.unit(519, "lb"),
  19726. name: "Front",
  19727. image: {
  19728. source: "./media/characters/dhari/front.svg",
  19729. extra: 1048 / 946,
  19730. bottom: 0.015
  19731. }
  19732. },
  19733. back: {
  19734. height: math.unit(6 + 3 / 12, "feet"),
  19735. weight: math.unit(519, "lb"),
  19736. name: "Back",
  19737. image: {
  19738. source: "./media/characters/dhari/back.svg",
  19739. extra: 1048 / 931,
  19740. bottom: 0.005
  19741. }
  19742. },
  19743. frontDressed: {
  19744. height: math.unit(6 + 3 / 12, "feet"),
  19745. weight: math.unit(519, "lb"),
  19746. name: "Front (Dressed)",
  19747. image: {
  19748. source: "./media/characters/dhari/front-dressed.svg",
  19749. extra: 1713 / 1546,
  19750. bottom: 0.02
  19751. }
  19752. },
  19753. backDressed: {
  19754. height: math.unit(6 + 3 / 12, "feet"),
  19755. weight: math.unit(519, "lb"),
  19756. name: "Back (Dressed)",
  19757. image: {
  19758. source: "./media/characters/dhari/back-dressed.svg",
  19759. extra: 1699 / 1537,
  19760. bottom: 0.01
  19761. }
  19762. },
  19763. maw: {
  19764. height: math.unit(0.95, "feet"),
  19765. name: "Maw",
  19766. image: {
  19767. source: "./media/characters/dhari/maw.svg"
  19768. }
  19769. },
  19770. wereFront: {
  19771. height: math.unit(12 + 8 / 12, "feet"),
  19772. weight: math.unit(4000, "lb"),
  19773. name: "Front (Were)",
  19774. image: {
  19775. source: "./media/characters/dhari/were-front.svg",
  19776. extra: 1065 / 969,
  19777. bottom: 0.015
  19778. }
  19779. },
  19780. wereBack: {
  19781. height: math.unit(12 + 8 / 12, "feet"),
  19782. weight: math.unit(4000, "lb"),
  19783. name: "Back (Were)",
  19784. image: {
  19785. source: "./media/characters/dhari/were-back.svg",
  19786. extra: 1065 / 969,
  19787. bottom: 0.012
  19788. }
  19789. },
  19790. wereMaw: {
  19791. height: math.unit(0.625, "meters"),
  19792. name: "Maw (Were)",
  19793. image: {
  19794. source: "./media/characters/dhari/were-maw.svg"
  19795. }
  19796. },
  19797. },
  19798. [
  19799. {
  19800. name: "Normal",
  19801. height: math.unit(6 + 3 / 12, "feet"),
  19802. default: true
  19803. },
  19804. ]
  19805. ))
  19806. characterMakers.push(() => makeCharacter(
  19807. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19808. {
  19809. anthro: {
  19810. height: math.unit(5 + 7 / 12, "feet"),
  19811. weight: math.unit(175, "lb"),
  19812. name: "Anthro",
  19813. image: {
  19814. source: "./media/characters/rena-dyne/anthro.svg",
  19815. extra: 1849 / 1785,
  19816. bottom: 0.005
  19817. }
  19818. },
  19819. taur: {
  19820. height: math.unit(15 + 6 / 12, "feet"),
  19821. weight: math.unit(8000, "lb"),
  19822. name: "Taur",
  19823. image: {
  19824. source: "./media/characters/rena-dyne/taur.svg",
  19825. extra: 2315 / 2234,
  19826. bottom: 0.033
  19827. }
  19828. },
  19829. },
  19830. [
  19831. {
  19832. name: "Normal",
  19833. height: math.unit(5 + 7 / 12, "feet"),
  19834. default: true
  19835. },
  19836. ]
  19837. ))
  19838. characterMakers.push(() => makeCharacter(
  19839. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19840. {
  19841. front: {
  19842. height: math.unit(8, "feet"),
  19843. weight: math.unit(600, "lb"),
  19844. name: "Front",
  19845. image: {
  19846. source: "./media/characters/weremeep/front.svg",
  19847. extra: 967 / 862,
  19848. bottom: 0.01
  19849. }
  19850. },
  19851. },
  19852. [
  19853. {
  19854. name: "Normal",
  19855. height: math.unit(8, "feet"),
  19856. default: true
  19857. },
  19858. {
  19859. name: "Lorg",
  19860. height: math.unit(12, "feet")
  19861. },
  19862. {
  19863. name: "Oh Lawd She Comin'",
  19864. height: math.unit(20, "feet")
  19865. },
  19866. ]
  19867. ))
  19868. characterMakers.push(() => makeCharacter(
  19869. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19870. {
  19871. front: {
  19872. height: math.unit(4, "feet"),
  19873. weight: math.unit(90, "lb"),
  19874. name: "Front",
  19875. image: {
  19876. source: "./media/characters/reza/front.svg",
  19877. extra: 1183 / 1111,
  19878. bottom: 0.017
  19879. }
  19880. },
  19881. back: {
  19882. height: math.unit(4, "feet"),
  19883. weight: math.unit(90, "lb"),
  19884. name: "Back",
  19885. image: {
  19886. source: "./media/characters/reza/back.svg",
  19887. extra: 1183 / 1111,
  19888. bottom: 0.01
  19889. }
  19890. },
  19891. drake: {
  19892. height: math.unit(30, "feet"),
  19893. weight: math.unit(246960, "lb"),
  19894. name: "Drake",
  19895. image: {
  19896. source: "./media/characters/reza/drake.svg",
  19897. extra: 2350 / 2024,
  19898. bottom: 60.7 / 2403
  19899. }
  19900. },
  19901. },
  19902. [
  19903. {
  19904. name: "Normal",
  19905. height: math.unit(4, "feet"),
  19906. default: true
  19907. },
  19908. ]
  19909. ))
  19910. characterMakers.push(() => makeCharacter(
  19911. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  19912. {
  19913. side: {
  19914. height: math.unit(15, "feet"),
  19915. weight: math.unit(14, "tons"),
  19916. name: "Side",
  19917. image: {
  19918. source: "./media/characters/athea/side.svg",
  19919. extra: 960 / 540,
  19920. bottom: 0.003
  19921. }
  19922. },
  19923. sitting: {
  19924. height: math.unit(6 * 2.85, "feet"),
  19925. weight: math.unit(14, "tons"),
  19926. name: "Sitting",
  19927. image: {
  19928. source: "./media/characters/athea/sitting.svg",
  19929. extra: 621 / 581,
  19930. bottom: 0.075
  19931. }
  19932. },
  19933. maw: {
  19934. height: math.unit(7.59498031496063, "feet"),
  19935. name: "Maw",
  19936. image: {
  19937. source: "./media/characters/athea/maw.svg"
  19938. }
  19939. },
  19940. },
  19941. [
  19942. {
  19943. name: "Lap Cat",
  19944. height: math.unit(2.5, "feet")
  19945. },
  19946. {
  19947. name: "Minimacro",
  19948. height: math.unit(15, "feet"),
  19949. default: true
  19950. },
  19951. {
  19952. name: "Macro",
  19953. height: math.unit(120, "feet")
  19954. },
  19955. {
  19956. name: "Macro+",
  19957. height: math.unit(640, "feet")
  19958. },
  19959. {
  19960. name: "Colossus",
  19961. height: math.unit(2.2, "miles")
  19962. },
  19963. ]
  19964. ))
  19965. characterMakers.push(() => makeCharacter(
  19966. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  19967. {
  19968. front: {
  19969. height: math.unit(8 + 8 / 12, "feet"),
  19970. weight: math.unit(130, "kg"),
  19971. name: "Front",
  19972. image: {
  19973. source: "./media/characters/seroko/front.svg",
  19974. extra: 1385 / 1280,
  19975. bottom: 0.025
  19976. }
  19977. },
  19978. back: {
  19979. height: math.unit(8 + 8 / 12, "feet"),
  19980. weight: math.unit(130, "kg"),
  19981. name: "Back",
  19982. image: {
  19983. source: "./media/characters/seroko/back.svg",
  19984. extra: 1369 / 1238,
  19985. bottom: 0.018
  19986. }
  19987. },
  19988. frontDressed: {
  19989. height: math.unit(8 + 8 / 12, "feet"),
  19990. weight: math.unit(130, "kg"),
  19991. name: "Front (Dressed)",
  19992. image: {
  19993. source: "./media/characters/seroko/front-dressed.svg",
  19994. extra: 1366 / 1275,
  19995. bottom: 0.03
  19996. }
  19997. },
  19998. },
  19999. [
  20000. {
  20001. name: "Normal",
  20002. height: math.unit(8 + 8 / 12, "feet"),
  20003. default: true
  20004. },
  20005. ]
  20006. ))
  20007. characterMakers.push(() => makeCharacter(
  20008. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20009. {
  20010. front: {
  20011. height: math.unit(5.5, "feet"),
  20012. weight: math.unit(160, "lb"),
  20013. name: "Front",
  20014. image: {
  20015. source: "./media/characters/quatzi/front.svg",
  20016. extra: 2346 / 2242,
  20017. bottom: 0.015
  20018. }
  20019. },
  20020. },
  20021. [
  20022. {
  20023. name: "Normal",
  20024. height: math.unit(5.5, "feet"),
  20025. default: true
  20026. },
  20027. {
  20028. name: "Big",
  20029. height: math.unit(7.7, "feet")
  20030. },
  20031. ]
  20032. ))
  20033. characterMakers.push(() => makeCharacter(
  20034. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20035. {
  20036. front: {
  20037. height: math.unit(5 + 11 / 12, "feet"),
  20038. weight: math.unit(180, "lb"),
  20039. name: "Front",
  20040. image: {
  20041. source: "./media/characters/sen/front.svg",
  20042. extra: 1321 / 1254,
  20043. bottom: 0.015
  20044. }
  20045. },
  20046. side: {
  20047. height: math.unit(5 + 11 / 12, "feet"),
  20048. weight: math.unit(180, "lb"),
  20049. name: "Side",
  20050. image: {
  20051. source: "./media/characters/sen/side.svg",
  20052. extra: 1321 / 1254,
  20053. bottom: 0.007
  20054. }
  20055. },
  20056. back: {
  20057. height: math.unit(5 + 11 / 12, "feet"),
  20058. weight: math.unit(180, "lb"),
  20059. name: "Back",
  20060. image: {
  20061. source: "./media/characters/sen/back.svg",
  20062. extra: 1321 / 1254
  20063. }
  20064. },
  20065. },
  20066. [
  20067. {
  20068. name: "Normal",
  20069. height: math.unit(5 + 11 / 12, "feet"),
  20070. default: true
  20071. },
  20072. ]
  20073. ))
  20074. characterMakers.push(() => makeCharacter(
  20075. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20076. {
  20077. front: {
  20078. height: math.unit(166.6, "cm"),
  20079. weight: math.unit(66.6, "kg"),
  20080. name: "Front",
  20081. image: {
  20082. source: "./media/characters/fruity/front.svg",
  20083. extra: 1510 / 1386,
  20084. bottom: 0.04
  20085. }
  20086. },
  20087. back: {
  20088. height: math.unit(166.6, "cm"),
  20089. weight: math.unit(66.6, "lb"),
  20090. name: "Back",
  20091. image: {
  20092. source: "./media/characters/fruity/back.svg",
  20093. extra: 1563 / 1435,
  20094. bottom: 0.005
  20095. }
  20096. },
  20097. },
  20098. [
  20099. {
  20100. name: "Normal",
  20101. height: math.unit(166.6, "cm"),
  20102. default: true
  20103. },
  20104. {
  20105. name: "Demonic",
  20106. height: math.unit(166.6, "feet")
  20107. },
  20108. ]
  20109. ))
  20110. characterMakers.push(() => makeCharacter(
  20111. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20112. {
  20113. side: {
  20114. height: math.unit(10, "feet"),
  20115. weight: math.unit(500, "lb"),
  20116. name: "Side",
  20117. image: {
  20118. source: "./media/characters/zost/side.svg",
  20119. extra: 966 / 880,
  20120. bottom: 0.075
  20121. }
  20122. },
  20123. mawFront: {
  20124. height: math.unit(1.08, "meters"),
  20125. name: "Maw (Front)",
  20126. image: {
  20127. source: "./media/characters/zost/maw-front.svg"
  20128. }
  20129. },
  20130. mawSide: {
  20131. height: math.unit(2.66, "feet"),
  20132. name: "Maw (Side)",
  20133. image: {
  20134. source: "./media/characters/zost/maw-side.svg"
  20135. }
  20136. },
  20137. },
  20138. [
  20139. {
  20140. name: "Normal",
  20141. height: math.unit(10, "feet"),
  20142. default: true
  20143. },
  20144. ]
  20145. ))
  20146. characterMakers.push(() => makeCharacter(
  20147. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20148. {
  20149. front: {
  20150. height: math.unit(5 + 4 / 12, "feet"),
  20151. weight: math.unit(120, "lb"),
  20152. name: "Front",
  20153. image: {
  20154. source: "./media/characters/luci/front.svg",
  20155. extra: 1985 / 1884,
  20156. bottom: 0.04
  20157. }
  20158. },
  20159. back: {
  20160. height: math.unit(5 + 4 / 12, "feet"),
  20161. weight: math.unit(120, "lb"),
  20162. name: "Back",
  20163. image: {
  20164. source: "./media/characters/luci/back.svg",
  20165. extra: 1892 / 1791,
  20166. bottom: 0.002
  20167. }
  20168. },
  20169. },
  20170. [
  20171. {
  20172. name: "Normal",
  20173. height: math.unit(5 + 4 / 12, "feet"),
  20174. default: true
  20175. },
  20176. ]
  20177. ))
  20178. characterMakers.push(() => makeCharacter(
  20179. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20180. {
  20181. front: {
  20182. height: math.unit(1500, "feet"),
  20183. weight: math.unit(3.8e6, "tons"),
  20184. name: "Front",
  20185. image: {
  20186. source: "./media/characters/2th/front.svg",
  20187. extra: 3489 / 3350,
  20188. bottom: 0.1
  20189. }
  20190. },
  20191. foot: {
  20192. height: math.unit(461, "feet"),
  20193. name: "Foot",
  20194. image: {
  20195. source: "./media/characters/2th/foot.svg"
  20196. }
  20197. },
  20198. },
  20199. [
  20200. {
  20201. name: "\"Micro\"",
  20202. height: math.unit(15 + 7 / 12, "feet")
  20203. },
  20204. {
  20205. name: "Normal",
  20206. height: math.unit(1500, "feet"),
  20207. default: true
  20208. },
  20209. {
  20210. name: "Macro",
  20211. height: math.unit(5000, "feet")
  20212. },
  20213. {
  20214. name: "Megamacro",
  20215. height: math.unit(15, "miles")
  20216. },
  20217. {
  20218. name: "Gigamacro",
  20219. height: math.unit(4000, "miles")
  20220. },
  20221. {
  20222. name: "Galactic",
  20223. height: math.unit(50, "AU")
  20224. },
  20225. ]
  20226. ))
  20227. characterMakers.push(() => makeCharacter(
  20228. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20229. {
  20230. front: {
  20231. height: math.unit(5 + 6 / 12, "feet"),
  20232. weight: math.unit(220, "lb"),
  20233. name: "Front",
  20234. image: {
  20235. source: "./media/characters/amethyst/front.svg",
  20236. extra: 2078 / 2040,
  20237. bottom: 0.045
  20238. }
  20239. },
  20240. back: {
  20241. height: math.unit(5 + 6 / 12, "feet"),
  20242. weight: math.unit(220, "lb"),
  20243. name: "Back",
  20244. image: {
  20245. source: "./media/characters/amethyst/back.svg",
  20246. extra: 2021 / 1989,
  20247. bottom: 0.02
  20248. }
  20249. },
  20250. },
  20251. [
  20252. {
  20253. name: "Normal",
  20254. height: math.unit(5 + 6 / 12, "feet"),
  20255. default: true
  20256. },
  20257. ]
  20258. ))
  20259. characterMakers.push(() => makeCharacter(
  20260. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20261. {
  20262. front: {
  20263. height: math.unit(4 + 11 / 12, "feet"),
  20264. weight: math.unit(120, "lb"),
  20265. name: "Front",
  20266. image: {
  20267. source: "./media/characters/yumi-akiyama/front.svg",
  20268. extra: 1327 / 1235,
  20269. bottom: 0.02
  20270. }
  20271. },
  20272. back: {
  20273. height: math.unit(4 + 11 / 12, "feet"),
  20274. weight: math.unit(120, "lb"),
  20275. name: "Back",
  20276. image: {
  20277. source: "./media/characters/yumi-akiyama/back.svg",
  20278. extra: 1287 / 1245,
  20279. bottom: 0.002
  20280. }
  20281. },
  20282. },
  20283. [
  20284. {
  20285. name: "Galactic",
  20286. height: math.unit(50, "galaxies"),
  20287. default: true
  20288. },
  20289. {
  20290. name: "Universal",
  20291. height: math.unit(100, "universes")
  20292. },
  20293. ]
  20294. ))
  20295. characterMakers.push(() => makeCharacter(
  20296. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20297. {
  20298. front: {
  20299. height: math.unit(8, "feet"),
  20300. weight: math.unit(500, "lb"),
  20301. name: "Front",
  20302. image: {
  20303. source: "./media/characters/rifter-yrmori/front.svg",
  20304. extra: 1180 / 1125,
  20305. bottom: 0.02
  20306. }
  20307. },
  20308. back: {
  20309. height: math.unit(8, "feet"),
  20310. weight: math.unit(500, "lb"),
  20311. name: "Back",
  20312. image: {
  20313. source: "./media/characters/rifter-yrmori/back.svg",
  20314. extra: 1190 / 1145,
  20315. bottom: 0.001
  20316. }
  20317. },
  20318. wings: {
  20319. height: math.unit(7.75, "feet"),
  20320. weight: math.unit(500, "lb"),
  20321. name: "Wings",
  20322. image: {
  20323. source: "./media/characters/rifter-yrmori/wings.svg",
  20324. extra: 1357 / 1285
  20325. }
  20326. },
  20327. maw: {
  20328. height: math.unit(0.8, "feet"),
  20329. name: "Maw",
  20330. image: {
  20331. source: "./media/characters/rifter-yrmori/maw.svg"
  20332. }
  20333. },
  20334. mawfront: {
  20335. height: math.unit(1.45, "feet"),
  20336. name: "Maw (Front)",
  20337. image: {
  20338. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20339. }
  20340. },
  20341. },
  20342. [
  20343. {
  20344. name: "Normal",
  20345. height: math.unit(8, "feet"),
  20346. default: true
  20347. },
  20348. {
  20349. name: "Macro",
  20350. height: math.unit(42, "meters")
  20351. },
  20352. ]
  20353. ))
  20354. characterMakers.push(() => makeCharacter(
  20355. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20356. {
  20357. were: {
  20358. height: math.unit(25 + 6 / 12, "feet"),
  20359. weight: math.unit(10000, "lb"),
  20360. name: "Were",
  20361. image: {
  20362. source: "./media/characters/tahajin/were.svg",
  20363. extra: 801 / 770,
  20364. bottom: 0.042
  20365. }
  20366. },
  20367. aquatic: {
  20368. height: math.unit(6 + 4 / 12, "feet"),
  20369. weight: math.unit(160, "lb"),
  20370. name: "Aquatic",
  20371. image: {
  20372. source: "./media/characters/tahajin/aquatic.svg",
  20373. extra: 572 / 542,
  20374. bottom: 0.04
  20375. }
  20376. },
  20377. chow: {
  20378. height: math.unit(8 + 11 / 12, "feet"),
  20379. weight: math.unit(450, "lb"),
  20380. name: "Chow",
  20381. image: {
  20382. source: "./media/characters/tahajin/chow.svg",
  20383. extra: 660 / 640,
  20384. bottom: 0.015
  20385. }
  20386. },
  20387. demiNaga: {
  20388. height: math.unit(6 + 8 / 12, "feet"),
  20389. weight: math.unit(300, "lb"),
  20390. name: "Demi Naga",
  20391. image: {
  20392. source: "./media/characters/tahajin/demi-naga.svg",
  20393. extra: 643 / 615,
  20394. bottom: 0.1
  20395. }
  20396. },
  20397. data: {
  20398. height: math.unit(5, "inches"),
  20399. weight: math.unit(0.1, "lb"),
  20400. name: "Data",
  20401. image: {
  20402. source: "./media/characters/tahajin/data.svg"
  20403. }
  20404. },
  20405. fluu: {
  20406. height: math.unit(5 + 7 / 12, "feet"),
  20407. weight: math.unit(140, "lb"),
  20408. name: "Fluu",
  20409. image: {
  20410. source: "./media/characters/tahajin/fluu.svg",
  20411. extra: 628 / 592,
  20412. bottom: 0.02
  20413. }
  20414. },
  20415. starWarrior: {
  20416. height: math.unit(4 + 5 / 12, "feet"),
  20417. weight: math.unit(50, "lb"),
  20418. name: "Star Warrior",
  20419. image: {
  20420. source: "./media/characters/tahajin/star-warrior.svg"
  20421. }
  20422. },
  20423. },
  20424. [
  20425. {
  20426. name: "Normal",
  20427. height: math.unit(25 + 6 / 12, "feet"),
  20428. default: true
  20429. },
  20430. ]
  20431. ))
  20432. characterMakers.push(() => makeCharacter(
  20433. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20434. {
  20435. front: {
  20436. height: math.unit(8, "feet"),
  20437. weight: math.unit(350, "lb"),
  20438. name: "Front",
  20439. image: {
  20440. source: "./media/characters/gabira/front.svg",
  20441. extra: 608 / 580,
  20442. bottom: 0.03
  20443. }
  20444. },
  20445. back: {
  20446. height: math.unit(8, "feet"),
  20447. weight: math.unit(350, "lb"),
  20448. name: "Back",
  20449. image: {
  20450. source: "./media/characters/gabira/back.svg",
  20451. extra: 608 / 580,
  20452. bottom: 0.03
  20453. }
  20454. },
  20455. },
  20456. [
  20457. {
  20458. name: "Normal",
  20459. height: math.unit(8, "feet"),
  20460. default: true
  20461. },
  20462. ]
  20463. ))
  20464. characterMakers.push(() => makeCharacter(
  20465. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20466. {
  20467. front: {
  20468. height: math.unit(5 + 3 / 12, "feet"),
  20469. weight: math.unit(137, "lb"),
  20470. name: "Front",
  20471. image: {
  20472. source: "./media/characters/sasha-katraine/front.svg",
  20473. bottom: 0.045
  20474. }
  20475. },
  20476. },
  20477. [
  20478. {
  20479. name: "Micro",
  20480. height: math.unit(5, "inches")
  20481. },
  20482. {
  20483. name: "Normal",
  20484. height: math.unit(5 + 3 / 12, "feet"),
  20485. default: true
  20486. },
  20487. ]
  20488. ))
  20489. characterMakers.push(() => makeCharacter(
  20490. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20491. {
  20492. side: {
  20493. height: math.unit(4, "inches"),
  20494. weight: math.unit(200, "grams"),
  20495. name: "Side",
  20496. image: {
  20497. source: "./media/characters/der/side.svg",
  20498. extra: 719 / 400,
  20499. bottom: 30.6 / 749.9187
  20500. }
  20501. },
  20502. },
  20503. [
  20504. {
  20505. name: "Micro",
  20506. height: math.unit(4, "inches"),
  20507. default: true
  20508. },
  20509. ]
  20510. ))
  20511. characterMakers.push(() => makeCharacter(
  20512. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20513. {
  20514. side: {
  20515. height: math.unit(30, "meters"),
  20516. weight: math.unit(700, "tonnes"),
  20517. name: "Side",
  20518. image: {
  20519. source: "./media/characters/fixerdragon/side.svg",
  20520. extra: (1293.0514 - 116.03) / 1106.86,
  20521. bottom: 116.03 / 1293.0514
  20522. }
  20523. },
  20524. },
  20525. [
  20526. {
  20527. name: "Planck",
  20528. height: math.unit(1.6e-35, "meters")
  20529. },
  20530. {
  20531. name: "Micro",
  20532. height: math.unit(0.4, "meters")
  20533. },
  20534. {
  20535. name: "Normal",
  20536. height: math.unit(30, "meters"),
  20537. default: true
  20538. },
  20539. {
  20540. name: "Megamacro",
  20541. height: math.unit(1.2, "megameters")
  20542. },
  20543. {
  20544. name: "Teramacro",
  20545. height: math.unit(130, "terameters")
  20546. },
  20547. {
  20548. name: "Yottamacro",
  20549. height: math.unit(6200, "yottameters")
  20550. },
  20551. ]
  20552. ));
  20553. characterMakers.push(() => makeCharacter(
  20554. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20555. {
  20556. front: {
  20557. height: math.unit(8, "feet"),
  20558. weight: math.unit(250, "lb"),
  20559. name: "Front",
  20560. image: {
  20561. source: "./media/characters/kite/front.svg",
  20562. extra: 2796 / 2659,
  20563. bottom: 0.002
  20564. }
  20565. },
  20566. },
  20567. [
  20568. {
  20569. name: "Normal",
  20570. height: math.unit(8, "feet"),
  20571. default: true
  20572. },
  20573. {
  20574. name: "Macro",
  20575. height: math.unit(360, "feet")
  20576. },
  20577. {
  20578. name: "Megamacro",
  20579. height: math.unit(1500, "feet")
  20580. },
  20581. ]
  20582. ))
  20583. characterMakers.push(() => makeCharacter(
  20584. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20585. {
  20586. front: {
  20587. height: math.unit(5 + 10 / 12, "feet"),
  20588. weight: math.unit(150, "lb"),
  20589. name: "Front",
  20590. image: {
  20591. source: "./media/characters/poojawa-vynar/front.svg",
  20592. extra: (1506.1547 - 55) / 1356.6,
  20593. bottom: 55 / 1506.1547
  20594. }
  20595. },
  20596. frontTailless: {
  20597. height: math.unit(5 + 10 / 12, "feet"),
  20598. weight: math.unit(150, "lb"),
  20599. name: "Front (Tailless)",
  20600. image: {
  20601. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20602. extra: (1506.1547 - 55) / 1356.6,
  20603. bottom: 55 / 1506.1547
  20604. }
  20605. },
  20606. },
  20607. [
  20608. {
  20609. name: "Normal",
  20610. height: math.unit(5 + 10 / 12, "feet"),
  20611. default: true
  20612. },
  20613. ]
  20614. ))
  20615. characterMakers.push(() => makeCharacter(
  20616. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20617. {
  20618. front: {
  20619. height: math.unit(293, "meters"),
  20620. weight: math.unit(70400, "tons"),
  20621. name: "Front",
  20622. image: {
  20623. source: "./media/characters/violette/front.svg",
  20624. extra: 1227 / 1180,
  20625. bottom: 0.005
  20626. }
  20627. },
  20628. back: {
  20629. height: math.unit(293, "meters"),
  20630. weight: math.unit(70400, "tons"),
  20631. name: "Back",
  20632. image: {
  20633. source: "./media/characters/violette/back.svg",
  20634. extra: 1227 / 1180,
  20635. bottom: 0.005
  20636. }
  20637. },
  20638. },
  20639. [
  20640. {
  20641. name: "Macro",
  20642. height: math.unit(293, "meters"),
  20643. default: true
  20644. },
  20645. ]
  20646. ))
  20647. characterMakers.push(() => makeCharacter(
  20648. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20649. {
  20650. front: {
  20651. height: math.unit(1050, "feet"),
  20652. weight: math.unit(200000, "tons"),
  20653. name: "Front",
  20654. image: {
  20655. source: "./media/characters/alessandra/front.svg",
  20656. extra: 960 / 912,
  20657. bottom: 0.06
  20658. }
  20659. },
  20660. },
  20661. [
  20662. {
  20663. name: "Macro",
  20664. height: math.unit(1050, "feet")
  20665. },
  20666. {
  20667. name: "Macro+",
  20668. height: math.unit(900, "meters"),
  20669. default: true
  20670. },
  20671. ]
  20672. ))
  20673. characterMakers.push(() => makeCharacter(
  20674. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20675. {
  20676. front: {
  20677. height: math.unit(5, "feet"),
  20678. weight: math.unit(187, "lb"),
  20679. name: "Front",
  20680. image: {
  20681. source: "./media/characters/person/front.svg",
  20682. extra: 3087 / 2945,
  20683. bottom: 91 / 3181
  20684. }
  20685. },
  20686. },
  20687. [
  20688. {
  20689. name: "Micro",
  20690. height: math.unit(3, "inches")
  20691. },
  20692. {
  20693. name: "Normal",
  20694. height: math.unit(5, "feet"),
  20695. default: true
  20696. },
  20697. {
  20698. name: "Macro",
  20699. height: math.unit(90, "feet")
  20700. },
  20701. {
  20702. name: "Max Size",
  20703. height: math.unit(280, "feet")
  20704. },
  20705. ]
  20706. ))
  20707. characterMakers.push(() => makeCharacter(
  20708. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20709. {
  20710. front: {
  20711. height: math.unit(4.5, "meters"),
  20712. weight: math.unit(3200, "lb"),
  20713. name: "Front",
  20714. image: {
  20715. source: "./media/characters/ty/front.svg",
  20716. extra: 1038 / 960,
  20717. bottom: 31.156 / 1068
  20718. }
  20719. },
  20720. back: {
  20721. height: math.unit(4.5, "meters"),
  20722. weight: math.unit(3200, "lb"),
  20723. name: "Back",
  20724. image: {
  20725. source: "./media/characters/ty/back.svg",
  20726. extra: 1044 / 966,
  20727. bottom: 7.48 / 1049
  20728. }
  20729. },
  20730. },
  20731. [
  20732. {
  20733. name: "Normal",
  20734. height: math.unit(4.5, "meters"),
  20735. default: true
  20736. },
  20737. ]
  20738. ))
  20739. characterMakers.push(() => makeCharacter(
  20740. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20741. {
  20742. front: {
  20743. height: math.unit(5 + 4 / 12, "feet"),
  20744. weight: math.unit(115, "lb"),
  20745. name: "Front",
  20746. image: {
  20747. source: "./media/characters/rocky/front.svg",
  20748. extra: 1012 / 975,
  20749. bottom: 54 / 1066
  20750. }
  20751. },
  20752. },
  20753. [
  20754. {
  20755. name: "Normal",
  20756. height: math.unit(5 + 4 / 12, "feet"),
  20757. default: true
  20758. },
  20759. ]
  20760. ))
  20761. characterMakers.push(() => makeCharacter(
  20762. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20763. {
  20764. upright: {
  20765. height: math.unit(6, "meters"),
  20766. weight: math.unit(4000, "kg"),
  20767. name: "Upright",
  20768. image: {
  20769. source: "./media/characters/ruin/upright.svg",
  20770. extra: 668 / 661,
  20771. bottom: 42 / 799.8396
  20772. }
  20773. },
  20774. },
  20775. [
  20776. {
  20777. name: "Normal",
  20778. height: math.unit(6, "meters"),
  20779. default: true
  20780. },
  20781. ]
  20782. ))
  20783. characterMakers.push(() => makeCharacter(
  20784. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20785. {
  20786. front: {
  20787. height: math.unit(5, "feet"),
  20788. weight: math.unit(106, "lb"),
  20789. name: "Front",
  20790. image: {
  20791. source: "./media/characters/robin/front.svg",
  20792. extra: 862 / 799,
  20793. bottom: 42.4 / 914.8856
  20794. }
  20795. },
  20796. },
  20797. [
  20798. {
  20799. name: "Normal",
  20800. height: math.unit(5, "feet"),
  20801. default: true
  20802. },
  20803. ]
  20804. ))
  20805. characterMakers.push(() => makeCharacter(
  20806. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20807. {
  20808. side: {
  20809. height: math.unit(3, "feet"),
  20810. weight: math.unit(225, "lb"),
  20811. name: "Side",
  20812. image: {
  20813. source: "./media/characters/saian/side.svg",
  20814. extra: 566 / 356,
  20815. bottom: 79.7 / 643
  20816. }
  20817. },
  20818. maw: {
  20819. height: math.unit(2.85, "feet"),
  20820. name: "Maw",
  20821. image: {
  20822. source: "./media/characters/saian/maw.svg"
  20823. }
  20824. },
  20825. },
  20826. [
  20827. {
  20828. name: "Normal",
  20829. height: math.unit(3, "feet"),
  20830. default: true
  20831. },
  20832. ]
  20833. ))
  20834. characterMakers.push(() => makeCharacter(
  20835. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20836. {
  20837. side: {
  20838. height: math.unit(8, "feet"),
  20839. weight: math.unit(300, "lb"),
  20840. name: "Side",
  20841. image: {
  20842. source: "./media/characters/equus-silvermane/side.svg",
  20843. extra: 2176 / 2050,
  20844. bottom: 65.7 / 2245
  20845. }
  20846. },
  20847. front: {
  20848. height: math.unit(8, "feet"),
  20849. weight: math.unit(300, "lb"),
  20850. name: "Front",
  20851. image: {
  20852. source: "./media/characters/equus-silvermane/front.svg",
  20853. extra: 4633 / 4400,
  20854. bottom: 71.3 / 4706.915
  20855. }
  20856. },
  20857. sideStepping: {
  20858. height: math.unit(8, "feet"),
  20859. weight: math.unit(300, "lb"),
  20860. name: "Side (Stepping)",
  20861. image: {
  20862. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20863. extra: 1968 / 1860,
  20864. bottom: 16.4 / 1989
  20865. }
  20866. },
  20867. },
  20868. [
  20869. {
  20870. name: "Normal",
  20871. height: math.unit(8, "feet")
  20872. },
  20873. {
  20874. name: "Minimacro",
  20875. height: math.unit(75, "feet"),
  20876. default: true
  20877. },
  20878. {
  20879. name: "Macro",
  20880. height: math.unit(150, "feet")
  20881. },
  20882. {
  20883. name: "Macro+",
  20884. height: math.unit(1000, "feet")
  20885. },
  20886. {
  20887. name: "Megamacro",
  20888. height: math.unit(1, "mile")
  20889. },
  20890. ]
  20891. ))
  20892. characterMakers.push(() => makeCharacter(
  20893. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  20894. {
  20895. side: {
  20896. height: math.unit(20, "feet"),
  20897. weight: math.unit(30000, "kg"),
  20898. name: "Side",
  20899. image: {
  20900. source: "./media/characters/windar/side.svg",
  20901. extra: 1491 / 1248,
  20902. bottom: 82.56 / 1568
  20903. }
  20904. },
  20905. },
  20906. [
  20907. {
  20908. name: "Normal",
  20909. height: math.unit(20, "feet"),
  20910. default: true
  20911. },
  20912. ]
  20913. ))
  20914. characterMakers.push(() => makeCharacter(
  20915. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  20916. {
  20917. side: {
  20918. height: math.unit(15.66, "feet"),
  20919. weight: math.unit(150, "lb"),
  20920. name: "Side",
  20921. image: {
  20922. source: "./media/characters/melody/side.svg",
  20923. extra: 1097 / 944,
  20924. bottom: 11.8 / 1109
  20925. }
  20926. },
  20927. sideOutfit: {
  20928. height: math.unit(15.66, "feet"),
  20929. weight: math.unit(150, "lb"),
  20930. name: "Side (Outfit)",
  20931. image: {
  20932. source: "./media/characters/melody/side-outfit.svg",
  20933. extra: 1097 / 944,
  20934. bottom: 11.8 / 1109
  20935. }
  20936. },
  20937. },
  20938. [
  20939. {
  20940. name: "Normal",
  20941. height: math.unit(15.66, "feet"),
  20942. default: true
  20943. },
  20944. ]
  20945. ))
  20946. characterMakers.push(() => makeCharacter(
  20947. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  20948. {
  20949. front: {
  20950. height: math.unit(8, "feet"),
  20951. weight: math.unit(325, "lb"),
  20952. name: "Front",
  20953. image: {
  20954. source: "./media/characters/windera/front.svg",
  20955. extra: 3180 / 2845,
  20956. bottom: 178 / 3365
  20957. }
  20958. },
  20959. },
  20960. [
  20961. {
  20962. name: "Normal",
  20963. height: math.unit(8, "feet"),
  20964. default: true
  20965. },
  20966. ]
  20967. ))
  20968. characterMakers.push(() => makeCharacter(
  20969. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  20970. {
  20971. front: {
  20972. height: math.unit(28.75, "feet"),
  20973. weight: math.unit(2000, "kg"),
  20974. name: "Front",
  20975. image: {
  20976. source: "./media/characters/sonear/front.svg",
  20977. extra: 1041.1 / 964.9,
  20978. bottom: 53.7 / 1096.6
  20979. }
  20980. },
  20981. },
  20982. [
  20983. {
  20984. name: "Normal",
  20985. height: math.unit(28.75, "feet"),
  20986. default: true
  20987. },
  20988. ]
  20989. ))
  20990. characterMakers.push(() => makeCharacter(
  20991. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  20992. {
  20993. side: {
  20994. height: math.unit(25.5, "feet"),
  20995. weight: math.unit(23000, "kg"),
  20996. name: "Side",
  20997. image: {
  20998. source: "./media/characters/kanara/side.svg"
  20999. }
  21000. },
  21001. },
  21002. [
  21003. {
  21004. name: "Normal",
  21005. height: math.unit(25.5, "feet"),
  21006. default: true
  21007. },
  21008. ]
  21009. ))
  21010. characterMakers.push(() => makeCharacter(
  21011. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21012. {
  21013. side: {
  21014. height: math.unit(10, "feet"),
  21015. weight: math.unit(1000, "kg"),
  21016. name: "Side",
  21017. image: {
  21018. source: "./media/characters/ereus/side.svg",
  21019. extra: 1157 / 959,
  21020. bottom: 153 / 1312.5
  21021. }
  21022. },
  21023. },
  21024. [
  21025. {
  21026. name: "Normal",
  21027. height: math.unit(10, "feet"),
  21028. default: true
  21029. },
  21030. ]
  21031. ))
  21032. characterMakers.push(() => makeCharacter(
  21033. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21034. {
  21035. side: {
  21036. height: math.unit(4.5, "feet"),
  21037. weight: math.unit(500, "lb"),
  21038. name: "Side",
  21039. image: {
  21040. source: "./media/characters/e-ter/side.svg",
  21041. extra: 1550 / 1248,
  21042. bottom: 146 / 1694
  21043. }
  21044. },
  21045. },
  21046. [
  21047. {
  21048. name: "Normal",
  21049. height: math.unit(4.5, "feet"),
  21050. default: true
  21051. },
  21052. ]
  21053. ))
  21054. characterMakers.push(() => makeCharacter(
  21055. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21056. {
  21057. side: {
  21058. height: math.unit(9.7, "feet"),
  21059. weight: math.unit(4000, "kg"),
  21060. name: "Side",
  21061. image: {
  21062. source: "./media/characters/yamie/side.svg"
  21063. }
  21064. },
  21065. },
  21066. [
  21067. {
  21068. name: "Normal",
  21069. height: math.unit(9.7, "feet"),
  21070. default: true
  21071. },
  21072. ]
  21073. ))
  21074. characterMakers.push(() => makeCharacter(
  21075. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21076. {
  21077. front: {
  21078. height: math.unit(50, "feet"),
  21079. weight: math.unit(50000, "kg"),
  21080. name: "Front",
  21081. image: {
  21082. source: "./media/characters/anders/front.svg",
  21083. extra: 570 / 539,
  21084. bottom: 14.7 / 586.7
  21085. }
  21086. },
  21087. },
  21088. [
  21089. {
  21090. name: "Large",
  21091. height: math.unit(50, "feet")
  21092. },
  21093. {
  21094. name: "Macro",
  21095. height: math.unit(2000, "feet"),
  21096. default: true
  21097. },
  21098. {
  21099. name: "Megamacro",
  21100. height: math.unit(12, "miles")
  21101. },
  21102. ]
  21103. ))
  21104. characterMakers.push(() => makeCharacter(
  21105. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21106. {
  21107. front: {
  21108. height: math.unit(7 + 2 / 12, "feet"),
  21109. weight: math.unit(300, "lb"),
  21110. name: "Front",
  21111. image: {
  21112. source: "./media/characters/reban/front.svg",
  21113. extra: 516 / 487,
  21114. bottom: 42.82 / 558.356
  21115. }
  21116. },
  21117. dick: {
  21118. height: math.unit(7 / 5, "feet"),
  21119. name: "Dick",
  21120. image: {
  21121. source: "./media/characters/reban/dick.svg"
  21122. }
  21123. },
  21124. },
  21125. [
  21126. {
  21127. name: "Natural Height",
  21128. height: math.unit(7 + 2 / 12, "feet")
  21129. },
  21130. {
  21131. name: "Macro",
  21132. height: math.unit(500, "feet"),
  21133. default: true
  21134. },
  21135. {
  21136. name: "Canon Height",
  21137. height: math.unit(50, "AU")
  21138. },
  21139. ]
  21140. ))
  21141. characterMakers.push(() => makeCharacter(
  21142. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21143. {
  21144. front: {
  21145. height: math.unit(6, "feet"),
  21146. weight: math.unit(150, "lb"),
  21147. name: "Front",
  21148. image: {
  21149. source: "./media/characters/terrance-keayes/front.svg",
  21150. extra: 1.005,
  21151. bottom: 151 / 1615
  21152. }
  21153. },
  21154. side: {
  21155. height: math.unit(6, "feet"),
  21156. weight: math.unit(150, "lb"),
  21157. name: "Side",
  21158. image: {
  21159. source: "./media/characters/terrance-keayes/side.svg",
  21160. extra: 1.005,
  21161. bottom: 129.4 / 1544
  21162. }
  21163. },
  21164. back: {
  21165. height: math.unit(6, "feet"),
  21166. weight: math.unit(150, "lb"),
  21167. name: "Back",
  21168. image: {
  21169. source: "./media/characters/terrance-keayes/back.svg",
  21170. extra: 1.005,
  21171. bottom: 58.4 / 1557.3
  21172. }
  21173. },
  21174. dick: {
  21175. height: math.unit(6 * 0.208, "feet"),
  21176. name: "Dick",
  21177. image: {
  21178. source: "./media/characters/terrance-keayes/dick.svg"
  21179. }
  21180. },
  21181. },
  21182. [
  21183. {
  21184. name: "Canon Height",
  21185. height: math.unit(35, "miles"),
  21186. default: true
  21187. },
  21188. ]
  21189. ))
  21190. characterMakers.push(() => makeCharacter(
  21191. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21192. {
  21193. front: {
  21194. height: math.unit(6, "feet"),
  21195. weight: math.unit(150, "lb"),
  21196. name: "Front",
  21197. image: {
  21198. source: "./media/characters/ofelia/front.svg",
  21199. extra: 546 / 541,
  21200. bottom: 39 / 583
  21201. }
  21202. },
  21203. back: {
  21204. height: math.unit(6, "feet"),
  21205. weight: math.unit(150, "lb"),
  21206. name: "Back",
  21207. image: {
  21208. source: "./media/characters/ofelia/back.svg",
  21209. extra: 564 / 559.5,
  21210. bottom: 8.69 / 573.02
  21211. }
  21212. },
  21213. maw: {
  21214. height: math.unit(1, "feet"),
  21215. name: "Maw",
  21216. image: {
  21217. source: "./media/characters/ofelia/maw.svg"
  21218. }
  21219. },
  21220. foot: {
  21221. height: math.unit(1.949, "feet"),
  21222. name: "Foot",
  21223. image: {
  21224. source: "./media/characters/ofelia/foot.svg"
  21225. }
  21226. },
  21227. },
  21228. [
  21229. {
  21230. name: "Canon Height",
  21231. height: math.unit(2000, "miles"),
  21232. default: true
  21233. },
  21234. ]
  21235. ))
  21236. characterMakers.push(() => makeCharacter(
  21237. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21238. {
  21239. front: {
  21240. height: math.unit(6, "feet"),
  21241. weight: math.unit(150, "lb"),
  21242. name: "Front",
  21243. image: {
  21244. source: "./media/characters/samuel/front.svg",
  21245. extra: 265 / 258,
  21246. bottom: 2 / 266.1566
  21247. }
  21248. },
  21249. },
  21250. [
  21251. {
  21252. name: "Macro",
  21253. height: math.unit(100, "feet"),
  21254. default: true
  21255. },
  21256. {
  21257. name: "Full Size",
  21258. height: math.unit(1000, "miles")
  21259. },
  21260. ]
  21261. ))
  21262. characterMakers.push(() => makeCharacter(
  21263. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21264. {
  21265. front: {
  21266. height: math.unit(6, "feet"),
  21267. weight: math.unit(300, "lb"),
  21268. name: "Front",
  21269. image: {
  21270. source: "./media/characters/beishir-kiel/front.svg",
  21271. extra: 569 / 547,
  21272. bottom: 41.9 / 609
  21273. }
  21274. },
  21275. maw: {
  21276. height: math.unit(6 * 0.202, "feet"),
  21277. name: "Maw",
  21278. image: {
  21279. source: "./media/characters/beishir-kiel/maw.svg"
  21280. }
  21281. },
  21282. },
  21283. [
  21284. {
  21285. name: "Macro",
  21286. height: math.unit(300, "feet"),
  21287. default: true
  21288. },
  21289. ]
  21290. ))
  21291. characterMakers.push(() => makeCharacter(
  21292. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21293. {
  21294. front: {
  21295. height: math.unit(5 + 8 / 12, "feet"),
  21296. weight: math.unit(120, "lb"),
  21297. name: "Front",
  21298. image: {
  21299. source: "./media/characters/logan-grey/front.svg",
  21300. extra: 2539 / 2393,
  21301. bottom: 97.6 / 2636.37
  21302. }
  21303. },
  21304. frontAlt: {
  21305. height: math.unit(5 + 8 / 12, "feet"),
  21306. weight: math.unit(120, "lb"),
  21307. name: "Front (Alt)",
  21308. image: {
  21309. source: "./media/characters/logan-grey/front-alt.svg",
  21310. extra: 958 / 893,
  21311. bottom: 15 / 970.768
  21312. }
  21313. },
  21314. back: {
  21315. height: math.unit(5 + 8 / 12, "feet"),
  21316. weight: math.unit(120, "lb"),
  21317. name: "Back",
  21318. image: {
  21319. source: "./media/characters/logan-grey/back.svg",
  21320. extra: 958 / 893,
  21321. bottom: 2.1881 / 970.9788
  21322. }
  21323. },
  21324. dick: {
  21325. height: math.unit(1.437, "feet"),
  21326. name: "Dick",
  21327. image: {
  21328. source: "./media/characters/logan-grey/dick.svg"
  21329. }
  21330. },
  21331. },
  21332. [
  21333. {
  21334. name: "Normal",
  21335. height: math.unit(5 + 8 / 12, "feet")
  21336. },
  21337. {
  21338. name: "The 500 Foot Femboy",
  21339. height: math.unit(500, "feet"),
  21340. default: true
  21341. },
  21342. {
  21343. name: "Megmacro",
  21344. height: math.unit(20, "miles")
  21345. },
  21346. ]
  21347. ))
  21348. characterMakers.push(() => makeCharacter(
  21349. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21350. {
  21351. front: {
  21352. height: math.unit(8 + 2 / 12, "feet"),
  21353. weight: math.unit(275, "lb"),
  21354. name: "Front",
  21355. image: {
  21356. source: "./media/characters/draganta/front.svg",
  21357. extra: 1177 / 1135,
  21358. bottom: 33.46 / 1212.1
  21359. }
  21360. },
  21361. },
  21362. [
  21363. {
  21364. name: "Normal",
  21365. height: math.unit(8 + 6 / 12, "feet"),
  21366. default: true
  21367. },
  21368. {
  21369. name: "Macro",
  21370. height: math.unit(150, "feet")
  21371. },
  21372. {
  21373. name: "Megamacro",
  21374. height: math.unit(1000, "miles")
  21375. },
  21376. ]
  21377. ))
  21378. characterMakers.push(() => makeCharacter(
  21379. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21380. {
  21381. front: {
  21382. height: math.unit(1.72, "m"),
  21383. weight: math.unit(80, "lb"),
  21384. name: "Front",
  21385. image: {
  21386. source: "./media/characters/voski/front.svg",
  21387. extra: 2076.22 / 2022.4,
  21388. bottom: 102.7 / 2177.3866
  21389. }
  21390. },
  21391. frontNsfw: {
  21392. height: math.unit(1.72, "m"),
  21393. weight: math.unit(80, "lb"),
  21394. name: "Front (NSFW)",
  21395. image: {
  21396. source: "./media/characters/voski/front-nsfw.svg",
  21397. extra: 2076.22 / 2022.4,
  21398. bottom: 102.7 / 2177.3866
  21399. }
  21400. },
  21401. back: {
  21402. height: math.unit(1.72, "m"),
  21403. weight: math.unit(80, "lb"),
  21404. name: "Back",
  21405. image: {
  21406. source: "./media/characters/voski/back.svg",
  21407. extra: 2104 / 2051,
  21408. bottom: 10.45 / 2113.63
  21409. }
  21410. },
  21411. },
  21412. [
  21413. {
  21414. name: "Normal",
  21415. height: math.unit(1.72, "m")
  21416. },
  21417. {
  21418. name: "Macro",
  21419. height: math.unit(55, "m"),
  21420. default: true
  21421. },
  21422. {
  21423. name: "Macro+",
  21424. height: math.unit(300, "m")
  21425. },
  21426. {
  21427. name: "Macro++",
  21428. height: math.unit(700, "m")
  21429. },
  21430. {
  21431. name: "Macro+++",
  21432. height: math.unit(4500, "m")
  21433. },
  21434. {
  21435. name: "Macro++++",
  21436. height: math.unit(45, "km")
  21437. },
  21438. {
  21439. name: "Macro+++++",
  21440. height: math.unit(1220, "km")
  21441. },
  21442. ]
  21443. ))
  21444. characterMakers.push(() => makeCharacter(
  21445. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21446. {
  21447. front: {
  21448. height: math.unit(2.3, "m"),
  21449. weight: math.unit(304, "kg"),
  21450. name: "Front",
  21451. image: {
  21452. source: "./media/characters/icowom-lee/front.svg",
  21453. extra: 985 / 955,
  21454. bottom: 25.4 / 1012
  21455. }
  21456. },
  21457. fronttentacles: {
  21458. height: math.unit(2.3, "m"),
  21459. weight: math.unit(304, "kg"),
  21460. name: "Front-tentacles",
  21461. image: {
  21462. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21463. extra: 985 / 955,
  21464. bottom: 25.4 / 1012
  21465. }
  21466. },
  21467. back: {
  21468. height: math.unit(2.3, "m"),
  21469. weight: math.unit(304, "kg"),
  21470. name: "Back",
  21471. image: {
  21472. source: "./media/characters/icowom-lee/back.svg",
  21473. extra: 975 / 954,
  21474. bottom: 9.5 / 985
  21475. }
  21476. },
  21477. backtentacles: {
  21478. height: math.unit(2.3, "m"),
  21479. weight: math.unit(304, "kg"),
  21480. name: "Back-tentacles",
  21481. image: {
  21482. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21483. extra: 975 / 954,
  21484. bottom: 9.5 / 985
  21485. }
  21486. },
  21487. frontDressed: {
  21488. height: math.unit(2.3, "m"),
  21489. weight: math.unit(304, "kg"),
  21490. name: "Front (Dressed)",
  21491. image: {
  21492. source: "./media/characters/icowom-lee/front-dressed.svg",
  21493. extra: 3076 / 2933,
  21494. bottom: 51.4 / 3125.1889
  21495. }
  21496. },
  21497. rump: {
  21498. height: math.unit(0.776, "meters"),
  21499. name: "Rump",
  21500. image: {
  21501. source: "./media/characters/icowom-lee/rump.svg"
  21502. }
  21503. },
  21504. genitals: {
  21505. height: math.unit(0.78, "meters"),
  21506. name: "Genitals",
  21507. image: {
  21508. source: "./media/characters/icowom-lee/genitals.svg"
  21509. }
  21510. },
  21511. },
  21512. [
  21513. {
  21514. name: "Normal",
  21515. height: math.unit(2.3, "meters"),
  21516. default: true
  21517. },
  21518. {
  21519. name: "Macro",
  21520. height: math.unit(94, "meters"),
  21521. default: true
  21522. },
  21523. ]
  21524. ))
  21525. characterMakers.push(() => makeCharacter(
  21526. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21527. {
  21528. front: {
  21529. height: math.unit(22, "meters"),
  21530. weight: math.unit(21000, "kg"),
  21531. name: "Front",
  21532. image: {
  21533. source: "./media/characters/shock-diamond/front.svg",
  21534. extra: 2204 / 2053,
  21535. bottom: 65 / 2239.47
  21536. }
  21537. },
  21538. frontNude: {
  21539. height: math.unit(22, "meters"),
  21540. weight: math.unit(21000, "kg"),
  21541. name: "Front (Nude)",
  21542. image: {
  21543. source: "./media/characters/shock-diamond/front-nude.svg",
  21544. extra: 2514 / 2285,
  21545. bottom: 13 / 2527.56
  21546. }
  21547. },
  21548. },
  21549. [
  21550. {
  21551. name: "Normal",
  21552. height: math.unit(3, "meters")
  21553. },
  21554. {
  21555. name: "Macro",
  21556. height: math.unit(22, "meters"),
  21557. default: true
  21558. },
  21559. ]
  21560. ))
  21561. characterMakers.push(() => makeCharacter(
  21562. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21563. {
  21564. front: {
  21565. height: math.unit(5 + 4 / 12, "feet"),
  21566. weight: math.unit(120, "lb"),
  21567. name: "Front",
  21568. image: {
  21569. source: "./media/characters/rory/front.svg",
  21570. extra: 589 / 556,
  21571. bottom: 45.7 / 635.76
  21572. }
  21573. },
  21574. frontNude: {
  21575. height: math.unit(5 + 4 / 12, "feet"),
  21576. weight: math.unit(120, "lb"),
  21577. name: "Front (Nude)",
  21578. image: {
  21579. source: "./media/characters/rory/front-nude.svg",
  21580. extra: 589 / 556,
  21581. bottom: 45.7 / 635.76
  21582. }
  21583. },
  21584. side: {
  21585. height: math.unit(5 + 4 / 12, "feet"),
  21586. weight: math.unit(120, "lb"),
  21587. name: "Side",
  21588. image: {
  21589. source: "./media/characters/rory/side.svg",
  21590. extra: 597 / 564,
  21591. bottom: 55 / 653
  21592. }
  21593. },
  21594. back: {
  21595. height: math.unit(5 + 4 / 12, "feet"),
  21596. weight: math.unit(120, "lb"),
  21597. name: "Back",
  21598. image: {
  21599. source: "./media/characters/rory/back.svg",
  21600. extra: 620 / 585,
  21601. bottom: 8.86 / 630.43
  21602. }
  21603. },
  21604. dick: {
  21605. height: math.unit(0.86, "feet"),
  21606. name: "Dick",
  21607. image: {
  21608. source: "./media/characters/rory/dick.svg"
  21609. }
  21610. },
  21611. },
  21612. [
  21613. {
  21614. name: "Normal",
  21615. height: math.unit(5 + 4 / 12, "feet"),
  21616. default: true
  21617. },
  21618. {
  21619. name: "Macro",
  21620. height: math.unit(100, "feet")
  21621. },
  21622. {
  21623. name: "Macro+",
  21624. height: math.unit(140, "feet")
  21625. },
  21626. {
  21627. name: "Macro++",
  21628. height: math.unit(300, "feet")
  21629. },
  21630. ]
  21631. ))
  21632. characterMakers.push(() => makeCharacter(
  21633. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21634. {
  21635. front: {
  21636. height: math.unit(5 + 9 / 12, "feet"),
  21637. weight: math.unit(190, "lb"),
  21638. name: "Front",
  21639. image: {
  21640. source: "./media/characters/sprisk/front.svg",
  21641. extra: 1225 / 1180,
  21642. bottom: 42.7 / 1266.4
  21643. }
  21644. },
  21645. frontNsfw: {
  21646. height: math.unit(5 + 9 / 12, "feet"),
  21647. weight: math.unit(190, "lb"),
  21648. name: "Front (NSFW)",
  21649. image: {
  21650. source: "./media/characters/sprisk/front-nsfw.svg",
  21651. extra: 1225 / 1180,
  21652. bottom: 42.7 / 1266.4
  21653. }
  21654. },
  21655. back: {
  21656. height: math.unit(5 + 9 / 12, "feet"),
  21657. weight: math.unit(190, "lb"),
  21658. name: "Back",
  21659. image: {
  21660. source: "./media/characters/sprisk/back.svg",
  21661. extra: 1247 / 1200,
  21662. bottom: 5.6 / 1253.04
  21663. }
  21664. },
  21665. },
  21666. [
  21667. {
  21668. name: "Tiny",
  21669. height: math.unit(2, "inches")
  21670. },
  21671. {
  21672. name: "Normal",
  21673. height: math.unit(5 + 9 / 12, "feet"),
  21674. default: true
  21675. },
  21676. {
  21677. name: "Mini Macro",
  21678. height: math.unit(18, "feet")
  21679. },
  21680. {
  21681. name: "Macro",
  21682. height: math.unit(100, "feet")
  21683. },
  21684. {
  21685. name: "MACRO",
  21686. height: math.unit(50, "miles")
  21687. },
  21688. {
  21689. name: "M A C R O",
  21690. height: math.unit(300, "miles")
  21691. },
  21692. ]
  21693. ))
  21694. characterMakers.push(() => makeCharacter(
  21695. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21696. {
  21697. side: {
  21698. height: math.unit(15.6, "meters"),
  21699. weight: math.unit(700000, "kg"),
  21700. name: "Side",
  21701. image: {
  21702. source: "./media/characters/bunsen/side.svg",
  21703. extra: 1644 / 358
  21704. }
  21705. },
  21706. foot: {
  21707. height: math.unit(1.611 * 1644 / 358, "meter"),
  21708. name: "Foot",
  21709. image: {
  21710. source: "./media/characters/bunsen/foot.svg"
  21711. }
  21712. },
  21713. },
  21714. [
  21715. {
  21716. name: "Small",
  21717. height: math.unit(10, "feet")
  21718. },
  21719. {
  21720. name: "Normal",
  21721. height: math.unit(15.6, "meters"),
  21722. default: true
  21723. },
  21724. ]
  21725. ))
  21726. characterMakers.push(() => makeCharacter(
  21727. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21728. {
  21729. front: {
  21730. height: math.unit(4 + 11 / 12, "feet"),
  21731. weight: math.unit(140, "lb"),
  21732. name: "Front",
  21733. image: {
  21734. source: "./media/characters/sesh/front.svg",
  21735. extra: 3420 / 3231,
  21736. bottom: 72 / 3949.5
  21737. }
  21738. },
  21739. },
  21740. [
  21741. {
  21742. name: "Normal",
  21743. height: math.unit(4 + 11 / 12, "feet")
  21744. },
  21745. {
  21746. name: "Grown",
  21747. height: math.unit(15, "feet"),
  21748. default: true
  21749. },
  21750. {
  21751. name: "Macro",
  21752. height: math.unit(1500, "feet")
  21753. },
  21754. {
  21755. name: "Megamacro",
  21756. height: math.unit(30, "miles")
  21757. },
  21758. {
  21759. name: "Continental",
  21760. height: math.unit(3000, "miles")
  21761. },
  21762. {
  21763. name: "Gravity Mass",
  21764. height: math.unit(300000, "miles")
  21765. },
  21766. {
  21767. name: "Planet Buster",
  21768. height: math.unit(30000000, "miles")
  21769. },
  21770. {
  21771. name: "Big",
  21772. height: math.unit(3000000000, "miles")
  21773. },
  21774. ]
  21775. ))
  21776. characterMakers.push(() => makeCharacter(
  21777. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21778. {
  21779. front: {
  21780. height: math.unit(9, "feet"),
  21781. weight: math.unit(350, "lb"),
  21782. name: "Front",
  21783. image: {
  21784. source: "./media/characters/pepper/front.svg",
  21785. extra: 1448 / 1312,
  21786. bottom: 9.4 / 1457.88
  21787. }
  21788. },
  21789. back: {
  21790. height: math.unit(9, "feet"),
  21791. weight: math.unit(350, "lb"),
  21792. name: "Back",
  21793. image: {
  21794. source: "./media/characters/pepper/back.svg",
  21795. extra: 1423 / 1300,
  21796. bottom: 4.6 / 1429
  21797. }
  21798. },
  21799. maw: {
  21800. height: math.unit(0.932, "feet"),
  21801. name: "Maw",
  21802. image: {
  21803. source: "./media/characters/pepper/maw.svg"
  21804. }
  21805. },
  21806. },
  21807. [
  21808. {
  21809. name: "Normal",
  21810. height: math.unit(9, "feet"),
  21811. default: true
  21812. },
  21813. ]
  21814. ))
  21815. characterMakers.push(() => makeCharacter(
  21816. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21817. {
  21818. front: {
  21819. height: math.unit(6, "feet"),
  21820. weight: math.unit(150, "lb"),
  21821. name: "Front",
  21822. image: {
  21823. source: "./media/characters/maelstrom/front.svg",
  21824. extra: 2100 / 1883,
  21825. bottom: 94 / 2196.7
  21826. }
  21827. },
  21828. },
  21829. [
  21830. {
  21831. name: "Less Kaiju",
  21832. height: math.unit(200, "feet")
  21833. },
  21834. {
  21835. name: "Kaiju",
  21836. height: math.unit(400, "feet"),
  21837. default: true
  21838. },
  21839. {
  21840. name: "Kaiju-er",
  21841. height: math.unit(600, "feet")
  21842. },
  21843. ]
  21844. ))
  21845. characterMakers.push(() => makeCharacter(
  21846. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21847. {
  21848. front: {
  21849. height: math.unit(6 + 5 / 12, "feet"),
  21850. weight: math.unit(180, "lb"),
  21851. name: "Front",
  21852. image: {
  21853. source: "./media/characters/lexir/front.svg",
  21854. extra: 180 / 172,
  21855. bottom: 12 / 192
  21856. }
  21857. },
  21858. back: {
  21859. height: math.unit(6 + 5 / 12, "feet"),
  21860. weight: math.unit(180, "lb"),
  21861. name: "Back",
  21862. image: {
  21863. source: "./media/characters/lexir/back.svg",
  21864. extra: 183.84 / 175.5,
  21865. bottom: 3.1 / 187
  21866. }
  21867. },
  21868. },
  21869. [
  21870. {
  21871. name: "Very Smal",
  21872. height: math.unit(1, "nm")
  21873. },
  21874. {
  21875. name: "Normal",
  21876. height: math.unit(6 + 5 / 12, "feet"),
  21877. default: true
  21878. },
  21879. {
  21880. name: "Macro",
  21881. height: math.unit(1, "mile")
  21882. },
  21883. {
  21884. name: "Megamacro",
  21885. height: math.unit(50, "miles")
  21886. },
  21887. ]
  21888. ))
  21889. characterMakers.push(() => makeCharacter(
  21890. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  21891. {
  21892. front: {
  21893. height: math.unit(1.5, "meters"),
  21894. weight: math.unit(100, "lb"),
  21895. name: "Front",
  21896. image: {
  21897. source: "./media/characters/maksio/front.svg",
  21898. extra: 1549 / 1531,
  21899. bottom: 123.7 / 1674.5429
  21900. }
  21901. },
  21902. back: {
  21903. height: math.unit(1.5, "meters"),
  21904. weight: math.unit(100, "lb"),
  21905. name: "Back",
  21906. image: {
  21907. source: "./media/characters/maksio/back.svg",
  21908. extra: 1541 / 1509,
  21909. bottom: 97 / 1639
  21910. }
  21911. },
  21912. hand: {
  21913. height: math.unit(0.621, "feet"),
  21914. name: "Hand",
  21915. image: {
  21916. source: "./media/characters/maksio/hand.svg"
  21917. }
  21918. },
  21919. foot: {
  21920. height: math.unit(1.611, "feet"),
  21921. name: "Foot",
  21922. image: {
  21923. source: "./media/characters/maksio/foot.svg"
  21924. }
  21925. },
  21926. },
  21927. [
  21928. {
  21929. name: "Shrunken",
  21930. height: math.unit(10, "cm")
  21931. },
  21932. {
  21933. name: "Normal",
  21934. height: math.unit(150, "cm"),
  21935. default: true
  21936. },
  21937. ]
  21938. ))
  21939. characterMakers.push(() => makeCharacter(
  21940. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  21941. {
  21942. front: {
  21943. height: math.unit(100, "feet"),
  21944. name: "Front",
  21945. image: {
  21946. source: "./media/characters/erza-bear/front.svg",
  21947. extra: 2449 / 2390,
  21948. bottom: 46 / 2494
  21949. }
  21950. },
  21951. back: {
  21952. height: math.unit(100, "feet"),
  21953. name: "Back",
  21954. image: {
  21955. source: "./media/characters/erza-bear/back.svg",
  21956. extra: 2489 / 2430,
  21957. bottom: 85.4 / 2480
  21958. }
  21959. },
  21960. tail: {
  21961. height: math.unit(42, "feet"),
  21962. name: "Tail",
  21963. image: {
  21964. source: "./media/characters/erza-bear/tail.svg"
  21965. }
  21966. },
  21967. tongue: {
  21968. height: math.unit(8, "feet"),
  21969. name: "Tongue",
  21970. image: {
  21971. source: "./media/characters/erza-bear/tongue.svg"
  21972. }
  21973. },
  21974. dick: {
  21975. height: math.unit(10.5, "feet"),
  21976. name: "Dick",
  21977. image: {
  21978. source: "./media/characters/erza-bear/dick.svg"
  21979. }
  21980. },
  21981. dickVertical: {
  21982. height: math.unit(16.9, "feet"),
  21983. name: "Dick (Vertical)",
  21984. image: {
  21985. source: "./media/characters/erza-bear/dick-vertical.svg"
  21986. }
  21987. },
  21988. },
  21989. [
  21990. {
  21991. name: "Macro",
  21992. height: math.unit(100, "feet"),
  21993. default: true
  21994. },
  21995. ]
  21996. ))
  21997. characterMakers.push(() => makeCharacter(
  21998. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  21999. {
  22000. front: {
  22001. height: math.unit(172, "cm"),
  22002. weight: math.unit(73, "kg"),
  22003. name: "Front",
  22004. image: {
  22005. source: "./media/characters/violet-flor/front.svg",
  22006. extra: 1530 / 1442,
  22007. bottom: 61.9 / 1588.8
  22008. }
  22009. },
  22010. back: {
  22011. height: math.unit(180, "cm"),
  22012. weight: math.unit(73, "kg"),
  22013. name: "Back",
  22014. image: {
  22015. source: "./media/characters/violet-flor/back.svg",
  22016. extra: 1692 / 1630,
  22017. bottom: 20 / 1712
  22018. }
  22019. },
  22020. },
  22021. [
  22022. {
  22023. name: "Normal",
  22024. height: math.unit(172, "cm"),
  22025. default: true
  22026. },
  22027. ]
  22028. ))
  22029. characterMakers.push(() => makeCharacter(
  22030. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22031. {
  22032. front: {
  22033. height: math.unit(6, "feet"),
  22034. weight: math.unit(220, "lb"),
  22035. name: "Front",
  22036. image: {
  22037. source: "./media/characters/lynn-rhea/front.svg",
  22038. extra: 310 / 273
  22039. }
  22040. },
  22041. back: {
  22042. height: math.unit(6, "feet"),
  22043. weight: math.unit(220, "lb"),
  22044. name: "Back",
  22045. image: {
  22046. source: "./media/characters/lynn-rhea/back.svg",
  22047. extra: 310 / 273
  22048. }
  22049. },
  22050. dicks: {
  22051. height: math.unit(0.9, "feet"),
  22052. name: "Dicks",
  22053. image: {
  22054. source: "./media/characters/lynn-rhea/dicks.svg"
  22055. }
  22056. },
  22057. slit: {
  22058. height: math.unit(0.4, "feet"),
  22059. name: "Slit",
  22060. image: {
  22061. source: "./media/characters/lynn-rhea/slit.svg"
  22062. }
  22063. },
  22064. },
  22065. [
  22066. {
  22067. name: "Micro",
  22068. height: math.unit(1, "inch")
  22069. },
  22070. {
  22071. name: "Macro",
  22072. height: math.unit(60, "feet"),
  22073. default: true
  22074. },
  22075. {
  22076. name: "Megamacro",
  22077. height: math.unit(2, "miles")
  22078. },
  22079. {
  22080. name: "Gigamacro",
  22081. height: math.unit(3, "earths")
  22082. },
  22083. {
  22084. name: "Galactic",
  22085. height: math.unit(0.8, "galaxies")
  22086. },
  22087. ]
  22088. ))
  22089. characterMakers.push(() => makeCharacter(
  22090. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22091. {
  22092. front: {
  22093. height: math.unit(1600, "feet"),
  22094. weight: math.unit(85758785169, "kg"),
  22095. name: "Front",
  22096. image: {
  22097. source: "./media/characters/valathos/front.svg",
  22098. extra: 1451 / 1339
  22099. }
  22100. },
  22101. },
  22102. [
  22103. {
  22104. name: "Macro",
  22105. height: math.unit(1600, "feet"),
  22106. default: true
  22107. },
  22108. ]
  22109. ))
  22110. characterMakers.push(() => makeCharacter(
  22111. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22112. {
  22113. front: {
  22114. height: math.unit(7 + 5 / 12, "feet"),
  22115. weight: math.unit(300, "lb"),
  22116. name: "Front",
  22117. image: {
  22118. source: "./media/characters/azula/front.svg",
  22119. extra: 3208 / 2880,
  22120. bottom: 80.2 / 3277
  22121. }
  22122. },
  22123. back: {
  22124. height: math.unit(7 + 5 / 12, "feet"),
  22125. weight: math.unit(300, "lb"),
  22126. name: "Back",
  22127. image: {
  22128. source: "./media/characters/azula/back.svg",
  22129. extra: 3169 / 2822,
  22130. bottom: 150.6 / 3321
  22131. }
  22132. },
  22133. },
  22134. [
  22135. {
  22136. name: "Normal",
  22137. height: math.unit(7 + 5 / 12, "feet"),
  22138. default: true
  22139. },
  22140. {
  22141. name: "Big",
  22142. height: math.unit(20, "feet")
  22143. },
  22144. ]
  22145. ))
  22146. characterMakers.push(() => makeCharacter(
  22147. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22148. {
  22149. front: {
  22150. height: math.unit(5 + 1 / 12, "feet"),
  22151. weight: math.unit(110, "lb"),
  22152. name: "Front",
  22153. image: {
  22154. source: "./media/characters/rupert/front.svg",
  22155. extra: 1549 / 1495,
  22156. bottom: 54.2 / 1604.4
  22157. }
  22158. },
  22159. },
  22160. [
  22161. {
  22162. name: "Normal",
  22163. height: math.unit(5 + 1 / 12, "feet"),
  22164. default: true
  22165. },
  22166. ]
  22167. ))
  22168. characterMakers.push(() => makeCharacter(
  22169. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22170. {
  22171. front: {
  22172. height: math.unit(8 + 4 / 12, "feet"),
  22173. weight: math.unit(350, "lb"),
  22174. name: "Front",
  22175. image: {
  22176. source: "./media/characters/sheera-castellar/front.svg",
  22177. extra: 1957 / 1894,
  22178. bottom: 26.97 / 1975.017
  22179. }
  22180. },
  22181. side: {
  22182. height: math.unit(8 + 4 / 12, "feet"),
  22183. weight: math.unit(350, "lb"),
  22184. name: "Side",
  22185. image: {
  22186. source: "./media/characters/sheera-castellar/side.svg",
  22187. extra: 1957 / 1894
  22188. }
  22189. },
  22190. back: {
  22191. height: math.unit(8 + 4 / 12, "feet"),
  22192. weight: math.unit(350, "lb"),
  22193. name: "Back",
  22194. image: {
  22195. source: "./media/characters/sheera-castellar/back.svg",
  22196. extra: 1957 / 1894
  22197. }
  22198. },
  22199. angled: {
  22200. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22201. weight: math.unit(350, "lb"),
  22202. name: "Angled",
  22203. image: {
  22204. source: "./media/characters/sheera-castellar/angled.svg",
  22205. extra: 1807 / 1707,
  22206. bottom: 68 / 1875
  22207. }
  22208. },
  22209. genitals: {
  22210. height: math.unit(2.2, "feet"),
  22211. name: "Genitals",
  22212. image: {
  22213. source: "./media/characters/sheera-castellar/genitals.svg"
  22214. }
  22215. },
  22216. },
  22217. [
  22218. {
  22219. name: "Normal",
  22220. height: math.unit(8 + 4 / 12, "feet")
  22221. },
  22222. {
  22223. name: "Macro",
  22224. height: math.unit(150, "feet"),
  22225. default: true
  22226. },
  22227. {
  22228. name: "Macro+",
  22229. height: math.unit(800, "feet")
  22230. },
  22231. ]
  22232. ))
  22233. characterMakers.push(() => makeCharacter(
  22234. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22235. {
  22236. front: {
  22237. height: math.unit(6, "feet"),
  22238. weight: math.unit(150, "lb"),
  22239. name: "Front",
  22240. image: {
  22241. source: "./media/characters/jaipur/front.svg",
  22242. extra: 3860 / 3731,
  22243. bottom: 287 / 4140
  22244. }
  22245. },
  22246. back: {
  22247. height: math.unit(6, "feet"),
  22248. weight: math.unit(150, "lb"),
  22249. name: "Back",
  22250. image: {
  22251. source: "./media/characters/jaipur/back.svg",
  22252. extra: 4060 / 3930,
  22253. bottom: 151 / 4200
  22254. }
  22255. },
  22256. },
  22257. [
  22258. {
  22259. name: "Normal",
  22260. height: math.unit(1.85, "meters"),
  22261. default: true
  22262. },
  22263. {
  22264. name: "Macro",
  22265. height: math.unit(150, "meters")
  22266. },
  22267. {
  22268. name: "Macro+",
  22269. height: math.unit(0.5, "miles")
  22270. },
  22271. {
  22272. name: "Macro++",
  22273. height: math.unit(2.5, "miles")
  22274. },
  22275. {
  22276. name: "Macro+++",
  22277. height: math.unit(12, "miles")
  22278. },
  22279. {
  22280. name: "Macro++++",
  22281. height: math.unit(120, "miles")
  22282. },
  22283. {
  22284. name: "Macro+++++",
  22285. height: math.unit(1200, "miles")
  22286. },
  22287. ]
  22288. ))
  22289. characterMakers.push(() => makeCharacter(
  22290. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22291. {
  22292. front: {
  22293. height: math.unit(6, "feet"),
  22294. weight: math.unit(150, "lb"),
  22295. name: "Front",
  22296. image: {
  22297. source: "./media/characters/sheila-wolf/front.svg",
  22298. extra: 1931 / 1808,
  22299. bottom: 29.5 / 1960
  22300. }
  22301. },
  22302. dick: {
  22303. height: math.unit(1.464, "feet"),
  22304. name: "Dick",
  22305. image: {
  22306. source: "./media/characters/sheila-wolf/dick.svg"
  22307. }
  22308. },
  22309. muzzle: {
  22310. height: math.unit(0.513, "feet"),
  22311. name: "Muzzle",
  22312. image: {
  22313. source: "./media/characters/sheila-wolf/muzzle.svg"
  22314. }
  22315. },
  22316. },
  22317. [
  22318. {
  22319. name: "Macro",
  22320. height: math.unit(70, "feet"),
  22321. default: true
  22322. },
  22323. ]
  22324. ))
  22325. characterMakers.push(() => makeCharacter(
  22326. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22327. {
  22328. front: {
  22329. height: math.unit(32, "meters"),
  22330. weight: math.unit(300000, "kg"),
  22331. name: "Front",
  22332. image: {
  22333. source: "./media/characters/almor/front.svg",
  22334. extra: 1408 / 1322,
  22335. bottom: 94.6 / 1506.5
  22336. }
  22337. },
  22338. },
  22339. [
  22340. {
  22341. name: "Macro",
  22342. height: math.unit(32, "meters"),
  22343. default: true
  22344. },
  22345. ]
  22346. ))
  22347. characterMakers.push(() => makeCharacter(
  22348. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22349. {
  22350. front: {
  22351. height: math.unit(7, "feet"),
  22352. weight: math.unit(200, "lb"),
  22353. name: "Front",
  22354. image: {
  22355. source: "./media/characters/silver/front.svg",
  22356. extra: 472.1 / 450.5,
  22357. bottom: 26.5 / 499.424
  22358. }
  22359. },
  22360. },
  22361. [
  22362. {
  22363. name: "Normal",
  22364. height: math.unit(7, "feet"),
  22365. default: true
  22366. },
  22367. {
  22368. name: "Macro",
  22369. height: math.unit(800, "feet")
  22370. },
  22371. {
  22372. name: "Megamacro",
  22373. height: math.unit(250, "miles")
  22374. },
  22375. ]
  22376. ))
  22377. characterMakers.push(() => makeCharacter(
  22378. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22379. {
  22380. front: {
  22381. height: math.unit(6, "feet"),
  22382. weight: math.unit(150, "lb"),
  22383. name: "Front",
  22384. image: {
  22385. source: "./media/characters/pliskin/front.svg",
  22386. extra: 1469 / 1359,
  22387. bottom: 70 / 1540
  22388. }
  22389. },
  22390. },
  22391. [
  22392. {
  22393. name: "Micro",
  22394. height: math.unit(3, "inches")
  22395. },
  22396. {
  22397. name: "Normal",
  22398. height: math.unit(5 + 11 / 12, "feet"),
  22399. default: true
  22400. },
  22401. {
  22402. name: "Macro",
  22403. height: math.unit(120, "feet")
  22404. },
  22405. ]
  22406. ))
  22407. characterMakers.push(() => makeCharacter(
  22408. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22409. {
  22410. front: {
  22411. height: math.unit(6, "feet"),
  22412. weight: math.unit(150, "lb"),
  22413. name: "Front",
  22414. image: {
  22415. source: "./media/characters/sammy/front.svg",
  22416. extra: 1193 / 1089,
  22417. bottom: 30.5 / 1226
  22418. }
  22419. },
  22420. },
  22421. [
  22422. {
  22423. name: "Macro",
  22424. height: math.unit(1700, "feet"),
  22425. default: true
  22426. },
  22427. {
  22428. name: "Examacro",
  22429. height: math.unit(2.5e9, "lightyears")
  22430. },
  22431. ]
  22432. ))
  22433. characterMakers.push(() => makeCharacter(
  22434. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22435. {
  22436. front: {
  22437. height: math.unit(21, "meters"),
  22438. weight: math.unit(12, "tonnes"),
  22439. name: "Front",
  22440. image: {
  22441. source: "./media/characters/kuru/front.svg",
  22442. extra: 4301 / 3785,
  22443. bottom: 371.3 / 4691
  22444. }
  22445. },
  22446. },
  22447. [
  22448. {
  22449. name: "Macro",
  22450. height: math.unit(21, "meters"),
  22451. default: true
  22452. },
  22453. ]
  22454. ))
  22455. characterMakers.push(() => makeCharacter(
  22456. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22457. {
  22458. front: {
  22459. height: math.unit(23, "meters"),
  22460. weight: math.unit(12.2, "tonnes"),
  22461. name: "Front",
  22462. image: {
  22463. source: "./media/characters/rakka/front.svg",
  22464. extra: 4670 / 4169,
  22465. bottom: 301 / 4968.7
  22466. }
  22467. },
  22468. },
  22469. [
  22470. {
  22471. name: "Macro",
  22472. height: math.unit(23, "meters"),
  22473. default: true
  22474. },
  22475. ]
  22476. ))
  22477. characterMakers.push(() => makeCharacter(
  22478. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22479. {
  22480. front: {
  22481. height: math.unit(6, "feet"),
  22482. weight: math.unit(150, "lb"),
  22483. name: "Front",
  22484. image: {
  22485. source: "./media/characters/rhys-feline/front.svg",
  22486. extra: 2488 / 2308,
  22487. bottom: 35.67 / 2519.19
  22488. }
  22489. },
  22490. },
  22491. [
  22492. {
  22493. name: "Really Small",
  22494. height: math.unit(1, "nm")
  22495. },
  22496. {
  22497. name: "Micro",
  22498. height: math.unit(4, "inches")
  22499. },
  22500. {
  22501. name: "Normal",
  22502. height: math.unit(4 + 10 / 12, "feet"),
  22503. default: true
  22504. },
  22505. {
  22506. name: "Macro",
  22507. height: math.unit(100, "feet")
  22508. },
  22509. {
  22510. name: "Megamacto",
  22511. height: math.unit(50, "miles")
  22512. },
  22513. ]
  22514. ))
  22515. characterMakers.push(() => makeCharacter(
  22516. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22517. {
  22518. side: {
  22519. height: math.unit(30, "feet"),
  22520. weight: math.unit(35000, "kg"),
  22521. name: "Side",
  22522. image: {
  22523. source: "./media/characters/alydar/side.svg",
  22524. extra: 234 / 222,
  22525. bottom: 6.5 / 241
  22526. }
  22527. },
  22528. front: {
  22529. height: math.unit(30, "feet"),
  22530. weight: math.unit(35000, "kg"),
  22531. name: "Front",
  22532. image: {
  22533. source: "./media/characters/alydar/front.svg",
  22534. extra: 223.37 / 210.2,
  22535. bottom: 22.3 / 246.76
  22536. }
  22537. },
  22538. top: {
  22539. height: math.unit(64.54, "feet"),
  22540. weight: math.unit(35000, "kg"),
  22541. name: "Top",
  22542. image: {
  22543. source: "./media/characters/alydar/top.svg"
  22544. }
  22545. },
  22546. anthro: {
  22547. height: math.unit(30, "feet"),
  22548. weight: math.unit(9000, "kg"),
  22549. name: "Anthro",
  22550. image: {
  22551. source: "./media/characters/alydar/anthro.svg",
  22552. extra: 432 / 421,
  22553. bottom: 7.18 / 440
  22554. }
  22555. },
  22556. maw: {
  22557. height: math.unit(11.693, "feet"),
  22558. name: "Maw",
  22559. image: {
  22560. source: "./media/characters/alydar/maw.svg"
  22561. }
  22562. },
  22563. head: {
  22564. height: math.unit(11.693, "feet"),
  22565. name: "Head",
  22566. image: {
  22567. source: "./media/characters/alydar/head.svg"
  22568. }
  22569. },
  22570. headAlt: {
  22571. height: math.unit(12.861, "feet"),
  22572. name: "Head (Alt)",
  22573. image: {
  22574. source: "./media/characters/alydar/head-alt.svg"
  22575. }
  22576. },
  22577. wing: {
  22578. height: math.unit(20.712, "feet"),
  22579. name: "Wing",
  22580. image: {
  22581. source: "./media/characters/alydar/wing.svg"
  22582. }
  22583. },
  22584. wingFeather: {
  22585. height: math.unit(9.662, "feet"),
  22586. name: "Wing Feather",
  22587. image: {
  22588. source: "./media/characters/alydar/wing-feather.svg"
  22589. }
  22590. },
  22591. countourFeather: {
  22592. height: math.unit(4.154, "feet"),
  22593. name: "Contour Feather",
  22594. image: {
  22595. source: "./media/characters/alydar/contour-feather.svg"
  22596. }
  22597. },
  22598. },
  22599. [
  22600. {
  22601. name: "Diplomatic",
  22602. height: math.unit(13, "feet"),
  22603. default: true
  22604. },
  22605. {
  22606. name: "Small",
  22607. height: math.unit(30, "feet")
  22608. },
  22609. {
  22610. name: "Normal",
  22611. height: math.unit(95, "feet"),
  22612. default: true
  22613. },
  22614. {
  22615. name: "Large",
  22616. height: math.unit(285, "feet")
  22617. },
  22618. {
  22619. name: "Incomprehensible",
  22620. height: math.unit(450, "megameters")
  22621. },
  22622. ]
  22623. ))
  22624. characterMakers.push(() => makeCharacter(
  22625. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22626. {
  22627. side: {
  22628. height: math.unit(11, "feet"),
  22629. weight: math.unit(1750, "kg"),
  22630. name: "Side",
  22631. image: {
  22632. source: "./media/characters/selicia/side.svg",
  22633. extra: 440 / 396,
  22634. bottom: 24.8 / 465.979
  22635. }
  22636. },
  22637. maw: {
  22638. height: math.unit(4.665, "feet"),
  22639. name: "Maw",
  22640. image: {
  22641. source: "./media/characters/selicia/maw.svg"
  22642. }
  22643. },
  22644. },
  22645. [
  22646. {
  22647. name: "Normal",
  22648. height: math.unit(11, "feet"),
  22649. default: true
  22650. },
  22651. ]
  22652. ))
  22653. characterMakers.push(() => makeCharacter(
  22654. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22655. {
  22656. side: {
  22657. height: math.unit(2 + 6 / 12, "feet"),
  22658. weight: math.unit(30, "lb"),
  22659. name: "Side",
  22660. image: {
  22661. source: "./media/characters/layla/side.svg",
  22662. extra: 244 / 188,
  22663. bottom: 18.2 / 262.1
  22664. }
  22665. },
  22666. back: {
  22667. height: math.unit(2 + 6 / 12, "feet"),
  22668. weight: math.unit(30, "lb"),
  22669. name: "Back",
  22670. image: {
  22671. source: "./media/characters/layla/back.svg",
  22672. extra: 308 / 241.5,
  22673. bottom: 8.9 / 316.8
  22674. }
  22675. },
  22676. cumming: {
  22677. height: math.unit(2 + 6 / 12, "feet"),
  22678. weight: math.unit(30, "lb"),
  22679. name: "Cumming",
  22680. image: {
  22681. source: "./media/characters/layla/cumming.svg",
  22682. extra: 342 / 279,
  22683. bottom: 595 / 938
  22684. }
  22685. },
  22686. dickFlaccid: {
  22687. height: math.unit(2.595, "feet"),
  22688. name: "Flaccid Genitals",
  22689. image: {
  22690. source: "./media/characters/layla/dick-flaccid.svg"
  22691. }
  22692. },
  22693. dickErect: {
  22694. height: math.unit(2.359, "feet"),
  22695. name: "Erect Genitals",
  22696. image: {
  22697. source: "./media/characters/layla/dick-erect.svg"
  22698. }
  22699. },
  22700. },
  22701. [
  22702. {
  22703. name: "Micro",
  22704. height: math.unit(1, "inch")
  22705. },
  22706. {
  22707. name: "Small",
  22708. height: math.unit(1, "foot")
  22709. },
  22710. {
  22711. name: "Normal",
  22712. height: math.unit(2 + 6 / 12, "feet"),
  22713. default: true
  22714. },
  22715. {
  22716. name: "Macro",
  22717. height: math.unit(200, "feet")
  22718. },
  22719. {
  22720. name: "Megamacro",
  22721. height: math.unit(1000, "miles")
  22722. },
  22723. {
  22724. name: "Planetary",
  22725. height: math.unit(8000, "miles")
  22726. },
  22727. {
  22728. name: "True Layla",
  22729. height: math.unit(200000 * 7, "multiverses")
  22730. },
  22731. ]
  22732. ))
  22733. characterMakers.push(() => makeCharacter(
  22734. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22735. {
  22736. back: {
  22737. height: math.unit(10.5, "feet"),
  22738. weight: math.unit(800, "lb"),
  22739. name: "Back",
  22740. image: {
  22741. source: "./media/characters/knox/back.svg",
  22742. extra: 1486 / 1089,
  22743. bottom: 107 / 1601.4
  22744. }
  22745. },
  22746. side: {
  22747. height: math.unit(10.5, "feet"),
  22748. weight: math.unit(800, "lb"),
  22749. name: "Side",
  22750. image: {
  22751. source: "./media/characters/knox/side.svg",
  22752. extra: 244 / 218,
  22753. bottom: 14 / 260
  22754. }
  22755. },
  22756. },
  22757. [
  22758. {
  22759. name: "Compact",
  22760. height: math.unit(10.5, "feet"),
  22761. default: true
  22762. },
  22763. {
  22764. name: "Dynamax",
  22765. height: math.unit(210, "feet")
  22766. },
  22767. {
  22768. name: "Full Macro",
  22769. height: math.unit(850, "feet")
  22770. },
  22771. ]
  22772. ))
  22773. characterMakers.push(() => makeCharacter(
  22774. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22775. {
  22776. front: {
  22777. height: math.unit(6, "feet"),
  22778. weight: math.unit(152, "lb"),
  22779. name: "Front",
  22780. image: {
  22781. source: "./media/characters/shin-pikachu/front.svg",
  22782. extra: 1574 / 1480,
  22783. bottom: 53.3 / 1626
  22784. }
  22785. },
  22786. hand: {
  22787. height: math.unit(1.055, "feet"),
  22788. name: "Hand",
  22789. image: {
  22790. source: "./media/characters/shin-pikachu/hand.svg"
  22791. }
  22792. },
  22793. foot: {
  22794. height: math.unit(1.1, "feet"),
  22795. name: "Foot",
  22796. image: {
  22797. source: "./media/characters/shin-pikachu/foot.svg"
  22798. }
  22799. },
  22800. collar: {
  22801. height: math.unit(0.386, "feet"),
  22802. name: "Collar",
  22803. image: {
  22804. source: "./media/characters/shin-pikachu/collar.svg"
  22805. }
  22806. },
  22807. },
  22808. [
  22809. {
  22810. name: "Smallest",
  22811. height: math.unit(0.5, "inches")
  22812. },
  22813. {
  22814. name: "Micro",
  22815. height: math.unit(6, "inches")
  22816. },
  22817. {
  22818. name: "Normal",
  22819. height: math.unit(6, "feet"),
  22820. default: true
  22821. },
  22822. {
  22823. name: "Macro",
  22824. height: math.unit(150, "feet")
  22825. },
  22826. ]
  22827. ))
  22828. characterMakers.push(() => makeCharacter(
  22829. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22830. {
  22831. front: {
  22832. height: math.unit(28, "feet"),
  22833. weight: math.unit(10500, "lb"),
  22834. name: "Front",
  22835. image: {
  22836. source: "./media/characters/kayda/front.svg",
  22837. extra: 1536 / 1428,
  22838. bottom: 68.7 / 1603
  22839. }
  22840. },
  22841. back: {
  22842. height: math.unit(28, "feet"),
  22843. weight: math.unit(10500, "lb"),
  22844. name: "Back",
  22845. image: {
  22846. source: "./media/characters/kayda/back.svg",
  22847. extra: 1557 / 1464,
  22848. bottom: 39.5 / 1597.49
  22849. }
  22850. },
  22851. dick: {
  22852. height: math.unit(3.858, "feet"),
  22853. name: "Dick",
  22854. image: {
  22855. source: "./media/characters/kayda/dick.svg"
  22856. }
  22857. },
  22858. },
  22859. [
  22860. {
  22861. name: "Macro",
  22862. height: math.unit(28, "feet"),
  22863. default: true
  22864. },
  22865. ]
  22866. ))
  22867. characterMakers.push(() => makeCharacter(
  22868. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22869. {
  22870. front: {
  22871. height: math.unit(10 + 11 / 12, "feet"),
  22872. weight: math.unit(1400, "lb"),
  22873. name: "Front",
  22874. image: {
  22875. source: "./media/characters/brian/front.svg",
  22876. extra: 737 / 692,
  22877. bottom: 55.4 / 785
  22878. }
  22879. },
  22880. },
  22881. [
  22882. {
  22883. name: "Normal",
  22884. height: math.unit(10 + 11 / 12, "feet"),
  22885. default: true
  22886. },
  22887. ]
  22888. ))
  22889. characterMakers.push(() => makeCharacter(
  22890. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  22891. {
  22892. front: {
  22893. height: math.unit(5 + 8 / 12, "feet"),
  22894. weight: math.unit(140, "lb"),
  22895. name: "Front",
  22896. image: {
  22897. source: "./media/characters/khemri/front.svg",
  22898. extra: 4780 / 4059,
  22899. bottom: 80.1 / 4859.25
  22900. }
  22901. },
  22902. },
  22903. [
  22904. {
  22905. name: "Micro",
  22906. height: math.unit(6, "inches")
  22907. },
  22908. {
  22909. name: "Normal",
  22910. height: math.unit(5 + 8 / 12, "feet"),
  22911. default: true
  22912. },
  22913. ]
  22914. ))
  22915. characterMakers.push(() => makeCharacter(
  22916. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  22917. {
  22918. front: {
  22919. height: math.unit(13, "feet"),
  22920. weight: math.unit(1700, "lb"),
  22921. name: "Front",
  22922. image: {
  22923. source: "./media/characters/felix-braveheart/front.svg",
  22924. extra: 1222 / 1157,
  22925. bottom: 53.2 / 1280
  22926. }
  22927. },
  22928. back: {
  22929. height: math.unit(13, "feet"),
  22930. weight: math.unit(1700, "lb"),
  22931. name: "Back",
  22932. image: {
  22933. source: "./media/characters/felix-braveheart/back.svg",
  22934. extra: 1277 / 1203,
  22935. bottom: 50.2 / 1327
  22936. }
  22937. },
  22938. feral: {
  22939. height: math.unit(6, "feet"),
  22940. weight: math.unit(400, "lb"),
  22941. name: "Feral",
  22942. image: {
  22943. source: "./media/characters/felix-braveheart/feral.svg",
  22944. extra: 682 / 625,
  22945. bottom: 6.9 / 688
  22946. }
  22947. },
  22948. },
  22949. [
  22950. {
  22951. name: "Normal",
  22952. height: math.unit(13, "feet"),
  22953. default: true
  22954. },
  22955. ]
  22956. ))
  22957. characterMakers.push(() => makeCharacter(
  22958. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  22959. {
  22960. side: {
  22961. height: math.unit(5 + 11 / 12, "feet"),
  22962. weight: math.unit(1400, "lb"),
  22963. name: "Side",
  22964. image: {
  22965. source: "./media/characters/shadow-blade/side.svg",
  22966. extra: 1726 / 1267,
  22967. bottom: 58.4 / 1785
  22968. }
  22969. },
  22970. },
  22971. [
  22972. {
  22973. name: "Normal",
  22974. height: math.unit(5 + 11 / 12, "feet"),
  22975. default: true
  22976. },
  22977. ]
  22978. ))
  22979. characterMakers.push(() => makeCharacter(
  22980. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  22981. {
  22982. front: {
  22983. height: math.unit(1 + 6 / 12, "feet"),
  22984. weight: math.unit(25, "lb"),
  22985. name: "Front",
  22986. image: {
  22987. source: "./media/characters/karla-halldor/front.svg",
  22988. extra: 1459 / 1383,
  22989. bottom: 12 / 1472
  22990. }
  22991. },
  22992. },
  22993. [
  22994. {
  22995. name: "Normal",
  22996. height: math.unit(1 + 6 / 12, "feet"),
  22997. default: true
  22998. },
  22999. ]
  23000. ))
  23001. characterMakers.push(() => makeCharacter(
  23002. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23003. {
  23004. front: {
  23005. height: math.unit(6 + 2 / 12, "feet"),
  23006. weight: math.unit(160, "lb"),
  23007. name: "Front",
  23008. image: {
  23009. source: "./media/characters/ariam/front.svg",
  23010. extra: 714 / 617,
  23011. bottom: 23.4 / 737,
  23012. }
  23013. },
  23014. squatting: {
  23015. height: math.unit(4.1, "feet"),
  23016. weight: math.unit(160, "lb"),
  23017. name: "Squatting",
  23018. image: {
  23019. source: "./media/characters/ariam/squatting.svg",
  23020. extra: 2617 / 2112,
  23021. bottom: 61.2 / 2681,
  23022. }
  23023. },
  23024. },
  23025. [
  23026. {
  23027. name: "Normal",
  23028. height: math.unit(6 + 2 / 12, "feet"),
  23029. default: true
  23030. },
  23031. {
  23032. name: "Normal+",
  23033. height: math.unit(4, "meters")
  23034. },
  23035. {
  23036. name: "Macro",
  23037. height: math.unit(50, "meters")
  23038. },
  23039. {
  23040. name: "Macro+",
  23041. height: math.unit(100, "meters")
  23042. },
  23043. {
  23044. name: "Megamacro",
  23045. height: math.unit(20, "km")
  23046. },
  23047. ]
  23048. ))
  23049. characterMakers.push(() => makeCharacter(
  23050. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23051. {
  23052. front: {
  23053. height: math.unit(1.67, "meters"),
  23054. weight: math.unit(140, "lb"),
  23055. name: "Front",
  23056. image: {
  23057. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23058. extra: 438 / 410,
  23059. bottom: 0.75 / 439
  23060. }
  23061. },
  23062. },
  23063. [
  23064. {
  23065. name: "Shrunken",
  23066. height: math.unit(7.6, "cm")
  23067. },
  23068. {
  23069. name: "Human Scale",
  23070. height: math.unit(1.67, "meters")
  23071. },
  23072. {
  23073. name: "Wolxi Scale",
  23074. height: math.unit(36.7, "meters"),
  23075. default: true
  23076. },
  23077. ]
  23078. ))
  23079. characterMakers.push(() => makeCharacter(
  23080. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23081. {
  23082. front: {
  23083. height: math.unit(1.73, "meters"),
  23084. weight: math.unit(240, "lb"),
  23085. name: "Front",
  23086. image: {
  23087. source: "./media/characters/izue-two-mothers/front.svg",
  23088. extra: 469 / 437,
  23089. bottom: 1.24 / 470.6
  23090. }
  23091. },
  23092. },
  23093. [
  23094. {
  23095. name: "Shrunken",
  23096. height: math.unit(7.86, "cm")
  23097. },
  23098. {
  23099. name: "Human Scale",
  23100. height: math.unit(1.73, "meters")
  23101. },
  23102. {
  23103. name: "Wolxi Scale",
  23104. height: math.unit(38, "meters"),
  23105. default: true
  23106. },
  23107. ]
  23108. ))
  23109. characterMakers.push(() => makeCharacter(
  23110. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23111. {
  23112. front: {
  23113. height: math.unit(1.55, "meters"),
  23114. weight: math.unit(120, "lb"),
  23115. name: "Front",
  23116. image: {
  23117. source: "./media/characters/teeku-love-shack/front.svg",
  23118. extra: 387 / 362,
  23119. bottom: 1.51 / 388
  23120. }
  23121. },
  23122. },
  23123. [
  23124. {
  23125. name: "Shrunken",
  23126. height: math.unit(7, "cm")
  23127. },
  23128. {
  23129. name: "Human Scale",
  23130. height: math.unit(1.55, "meters")
  23131. },
  23132. {
  23133. name: "Wolxi Scale",
  23134. height: math.unit(34.1, "meters"),
  23135. default: true
  23136. },
  23137. ]
  23138. ))
  23139. characterMakers.push(() => makeCharacter(
  23140. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23141. {
  23142. front: {
  23143. height: math.unit(1.83, "meters"),
  23144. weight: math.unit(135, "lb"),
  23145. name: "Front",
  23146. image: {
  23147. source: "./media/characters/dejma-the-red/front.svg",
  23148. extra: 480 / 458,
  23149. bottom: 1.8 / 482
  23150. }
  23151. },
  23152. },
  23153. [
  23154. {
  23155. name: "Shrunken",
  23156. height: math.unit(8.3, "cm")
  23157. },
  23158. {
  23159. name: "Human Scale",
  23160. height: math.unit(1.83, "meters")
  23161. },
  23162. {
  23163. name: "Wolxi Scale",
  23164. height: math.unit(40, "meters"),
  23165. default: true
  23166. },
  23167. ]
  23168. ))
  23169. characterMakers.push(() => makeCharacter(
  23170. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23171. {
  23172. front: {
  23173. height: math.unit(1.78, "meters"),
  23174. weight: math.unit(65, "kg"),
  23175. name: "Front",
  23176. image: {
  23177. source: "./media/characters/aki/front.svg",
  23178. extra: 452 / 415
  23179. }
  23180. },
  23181. frontNsfw: {
  23182. height: math.unit(1.78, "meters"),
  23183. weight: math.unit(65, "kg"),
  23184. name: "Front (NSFW)",
  23185. image: {
  23186. source: "./media/characters/aki/front-nsfw.svg",
  23187. extra: 452 / 415
  23188. }
  23189. },
  23190. back: {
  23191. height: math.unit(1.78, "meters"),
  23192. weight: math.unit(65, "kg"),
  23193. name: "Back",
  23194. image: {
  23195. source: "./media/characters/aki/back.svg",
  23196. extra: 452 / 415
  23197. }
  23198. },
  23199. rump: {
  23200. height: math.unit(2.05, "feet"),
  23201. name: "Rump",
  23202. image: {
  23203. source: "./media/characters/aki/rump.svg"
  23204. }
  23205. },
  23206. dick: {
  23207. height: math.unit(0.95, "feet"),
  23208. name: "Dick",
  23209. image: {
  23210. source: "./media/characters/aki/dick.svg"
  23211. }
  23212. },
  23213. },
  23214. [
  23215. {
  23216. name: "Micro",
  23217. height: math.unit(15, "cm")
  23218. },
  23219. {
  23220. name: "Normal",
  23221. height: math.unit(178, "cm"),
  23222. default: true
  23223. },
  23224. {
  23225. name: "Macro",
  23226. height: math.unit(214, "m")
  23227. },
  23228. {
  23229. name: "Macro+",
  23230. height: math.unit(534, "m")
  23231. },
  23232. ]
  23233. ))
  23234. characterMakers.push(() => makeCharacter(
  23235. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23236. {
  23237. front: {
  23238. height: math.unit(5 + 5 / 12, "feet"),
  23239. weight: math.unit(120, "lb"),
  23240. name: "Front",
  23241. image: {
  23242. source: "./media/characters/ari/front.svg",
  23243. extra: 714.5 / 682,
  23244. bottom: 8 / 722.5
  23245. }
  23246. },
  23247. },
  23248. [
  23249. {
  23250. name: "Normal",
  23251. height: math.unit(5 + 5 / 12, "feet")
  23252. },
  23253. {
  23254. name: "Macro",
  23255. height: math.unit(100, "feet"),
  23256. default: true
  23257. },
  23258. {
  23259. name: "Megamacro",
  23260. height: math.unit(100, "miles")
  23261. },
  23262. {
  23263. name: "Gigamacro",
  23264. height: math.unit(80000, "miles")
  23265. },
  23266. ]
  23267. ))
  23268. characterMakers.push(() => makeCharacter(
  23269. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23270. {
  23271. side: {
  23272. height: math.unit(9, "feet"),
  23273. weight: math.unit(400, "kg"),
  23274. name: "Side",
  23275. image: {
  23276. source: "./media/characters/bolt/side.svg",
  23277. extra: 1126 / 896,
  23278. bottom: 60 / 1187.3,
  23279. }
  23280. },
  23281. },
  23282. [
  23283. {
  23284. name: "Micro",
  23285. height: math.unit(5, "inches")
  23286. },
  23287. {
  23288. name: "Normal",
  23289. height: math.unit(9, "feet"),
  23290. default: true
  23291. },
  23292. {
  23293. name: "Macro",
  23294. height: math.unit(700, "feet")
  23295. },
  23296. {
  23297. name: "Max Size",
  23298. height: math.unit(1.52e22, "yottameters")
  23299. },
  23300. ]
  23301. ))
  23302. characterMakers.push(() => makeCharacter(
  23303. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23304. {
  23305. front: {
  23306. height: math.unit(4.53, "meters"),
  23307. weight: math.unit(3, "tons"),
  23308. name: "Front",
  23309. image: {
  23310. source: "./media/characters/draekon-sylviar/front.svg",
  23311. extra: 1228 / 1068,
  23312. bottom: 41 / 1270
  23313. }
  23314. },
  23315. tail: {
  23316. height: math.unit(1.772, "meter"),
  23317. name: "Tail",
  23318. image: {
  23319. source: "./media/characters/draekon-sylviar/tail.svg"
  23320. }
  23321. },
  23322. head: {
  23323. height: math.unit(1.331, "meter"),
  23324. name: "Head",
  23325. image: {
  23326. source: "./media/characters/draekon-sylviar/head.svg"
  23327. }
  23328. },
  23329. hand: {
  23330. height: math.unit(0.564, "meter"),
  23331. name: "Hand",
  23332. image: {
  23333. source: "./media/characters/draekon-sylviar/hand.svg"
  23334. }
  23335. },
  23336. foot: {
  23337. height: math.unit(0.621, "meter"),
  23338. name: "Foot",
  23339. image: {
  23340. source: "./media/characters/draekon-sylviar/foot.svg",
  23341. bottom: 32 / 324
  23342. }
  23343. },
  23344. dick: {
  23345. height: math.unit(61, "cm"),
  23346. name: "Dick",
  23347. image: {
  23348. source: "./media/characters/draekon-sylviar/dick.svg"
  23349. }
  23350. },
  23351. dickseparated: {
  23352. height: math.unit(61, "cm"),
  23353. name: "Dick-separated",
  23354. image: {
  23355. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23356. }
  23357. },
  23358. },
  23359. [
  23360. {
  23361. name: "Small",
  23362. height: math.unit(4.53 / 2, "meters"),
  23363. default: true
  23364. },
  23365. {
  23366. name: "Normal",
  23367. height: math.unit(4.53, "meters"),
  23368. default: true
  23369. },
  23370. {
  23371. name: "Large",
  23372. height: math.unit(4.53 * 2, "meters"),
  23373. },
  23374. ]
  23375. ))
  23376. characterMakers.push(() => makeCharacter(
  23377. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23378. {
  23379. front: {
  23380. height: math.unit(6 + 2 / 12, "feet"),
  23381. weight: math.unit(180, "lb"),
  23382. name: "Front",
  23383. image: {
  23384. source: "./media/characters/brawler/front.svg",
  23385. extra: 3301 / 3027,
  23386. bottom: 138 / 3439
  23387. }
  23388. },
  23389. },
  23390. [
  23391. {
  23392. name: "Normal",
  23393. height: math.unit(6 + 2 / 12, "feet"),
  23394. default: true
  23395. },
  23396. ]
  23397. ))
  23398. characterMakers.push(() => makeCharacter(
  23399. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23400. {
  23401. front: {
  23402. height: math.unit(11, "feet"),
  23403. weight: math.unit(1000, "lb"),
  23404. name: "Front",
  23405. image: {
  23406. source: "./media/characters/alex/front.svg",
  23407. bottom: 44.5 / 620
  23408. }
  23409. },
  23410. },
  23411. [
  23412. {
  23413. name: "Micro",
  23414. height: math.unit(5, "inches")
  23415. },
  23416. {
  23417. name: "Normal",
  23418. height: math.unit(11, "feet"),
  23419. default: true
  23420. },
  23421. {
  23422. name: "Macro",
  23423. height: math.unit(9.5e9, "feet")
  23424. },
  23425. {
  23426. name: "Max Size",
  23427. height: math.unit(1.4e283, "yottameters")
  23428. },
  23429. ]
  23430. ))
  23431. characterMakers.push(() => makeCharacter(
  23432. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23433. {
  23434. female: {
  23435. height: math.unit(29.9, "m"),
  23436. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23437. name: "Female",
  23438. image: {
  23439. source: "./media/characters/zenari/female.svg",
  23440. extra: 3281.6 / 3217,
  23441. bottom: 72.2 / 3353
  23442. }
  23443. },
  23444. male: {
  23445. height: math.unit(27.7, "m"),
  23446. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23447. name: "Male",
  23448. image: {
  23449. source: "./media/characters/zenari/male.svg",
  23450. extra: 3008 / 2991,
  23451. bottom: 54.6 / 3069
  23452. }
  23453. },
  23454. },
  23455. [
  23456. {
  23457. name: "Macro",
  23458. height: math.unit(29.7, "meters"),
  23459. default: true
  23460. },
  23461. ]
  23462. ))
  23463. characterMakers.push(() => makeCharacter(
  23464. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23465. {
  23466. female: {
  23467. height: math.unit(23.8, "m"),
  23468. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23469. name: "Female",
  23470. image: {
  23471. source: "./media/characters/mactarian/female.svg",
  23472. extra: 2662 / 2569,
  23473. bottom: 73 / 2736
  23474. }
  23475. },
  23476. male: {
  23477. height: math.unit(23.8, "m"),
  23478. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23479. name: "Male",
  23480. image: {
  23481. source: "./media/characters/mactarian/male.svg",
  23482. extra: 2673 / 2600,
  23483. bottom: 76 / 2750
  23484. }
  23485. },
  23486. },
  23487. [
  23488. {
  23489. name: "Macro",
  23490. height: math.unit(23.8, "meters"),
  23491. default: true
  23492. },
  23493. ]
  23494. ))
  23495. characterMakers.push(() => makeCharacter(
  23496. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23497. {
  23498. female: {
  23499. height: math.unit(19.3, "m"),
  23500. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23501. name: "Female",
  23502. image: {
  23503. source: "./media/characters/umok/female.svg",
  23504. extra: 2186 / 2078,
  23505. bottom: 87 / 2277
  23506. }
  23507. },
  23508. male: {
  23509. height: math.unit(19.5, "m"),
  23510. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23511. name: "Male",
  23512. image: {
  23513. source: "./media/characters/umok/male.svg",
  23514. extra: 2233 / 2140,
  23515. bottom: 24.4 / 2258
  23516. }
  23517. },
  23518. },
  23519. [
  23520. {
  23521. name: "Macro",
  23522. height: math.unit(19.3, "meters"),
  23523. default: true
  23524. },
  23525. ]
  23526. ))
  23527. characterMakers.push(() => makeCharacter(
  23528. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23529. {
  23530. female: {
  23531. height: math.unit(26.15, "m"),
  23532. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23533. name: "Female",
  23534. image: {
  23535. source: "./media/characters/joraxian/female.svg",
  23536. extra: 2912 / 2824,
  23537. bottom: 36 / 2956
  23538. }
  23539. },
  23540. male: {
  23541. height: math.unit(25.4, "m"),
  23542. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23543. name: "Male",
  23544. image: {
  23545. source: "./media/characters/joraxian/male.svg",
  23546. extra: 2877 / 2721,
  23547. bottom: 82 / 2967
  23548. }
  23549. },
  23550. },
  23551. [
  23552. {
  23553. name: "Macro",
  23554. height: math.unit(26.15, "meters"),
  23555. default: true
  23556. },
  23557. ]
  23558. ))
  23559. characterMakers.push(() => makeCharacter(
  23560. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23561. {
  23562. female: {
  23563. height: math.unit(21.6, "m"),
  23564. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23565. name: "Female",
  23566. image: {
  23567. source: "./media/characters/sthara/female.svg",
  23568. extra: 2516 / 2347,
  23569. bottom: 21.5 / 2537
  23570. }
  23571. },
  23572. male: {
  23573. height: math.unit(24, "m"),
  23574. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23575. name: "Male",
  23576. image: {
  23577. source: "./media/characters/sthara/male.svg",
  23578. extra: 2732 / 2607,
  23579. bottom: 23 / 2732
  23580. }
  23581. },
  23582. },
  23583. [
  23584. {
  23585. name: "Macro",
  23586. height: math.unit(21.6, "meters"),
  23587. default: true
  23588. },
  23589. ]
  23590. ))
  23591. characterMakers.push(() => makeCharacter(
  23592. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23593. {
  23594. front: {
  23595. height: math.unit(6 + 4 / 12, "feet"),
  23596. weight: math.unit(175, "lb"),
  23597. name: "Front",
  23598. image: {
  23599. source: "./media/characters/luka-bryzant/front.svg",
  23600. extra: 311 / 289,
  23601. bottom: 4 / 315
  23602. }
  23603. },
  23604. back: {
  23605. height: math.unit(6 + 4 / 12, "feet"),
  23606. weight: math.unit(175, "lb"),
  23607. name: "Back",
  23608. image: {
  23609. source: "./media/characters/luka-bryzant/back.svg",
  23610. extra: 311 / 289,
  23611. bottom: 3.8 / 313.7
  23612. }
  23613. },
  23614. },
  23615. [
  23616. {
  23617. name: "Micro",
  23618. height: math.unit(10, "inches")
  23619. },
  23620. {
  23621. name: "Normal",
  23622. height: math.unit(6 + 4 / 12, "feet"),
  23623. default: true
  23624. },
  23625. {
  23626. name: "Large",
  23627. height: math.unit(12, "feet")
  23628. },
  23629. ]
  23630. ))
  23631. characterMakers.push(() => makeCharacter(
  23632. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23633. {
  23634. front: {
  23635. height: math.unit(5 + 7 / 12, "feet"),
  23636. weight: math.unit(185, "lb"),
  23637. name: "Front",
  23638. image: {
  23639. source: "./media/characters/aman-aquila/front.svg",
  23640. extra: 1013 / 976,
  23641. bottom: 45.6 / 1057
  23642. }
  23643. },
  23644. side: {
  23645. height: math.unit(5 + 7 / 12, "feet"),
  23646. weight: math.unit(185, "lb"),
  23647. name: "Side",
  23648. image: {
  23649. source: "./media/characters/aman-aquila/side.svg",
  23650. extra: 1054 / 1011,
  23651. bottom: 15 / 1070
  23652. }
  23653. },
  23654. back: {
  23655. height: math.unit(5 + 7 / 12, "feet"),
  23656. weight: math.unit(185, "lb"),
  23657. name: "Back",
  23658. image: {
  23659. source: "./media/characters/aman-aquila/back.svg",
  23660. extra: 1026 / 970,
  23661. bottom: 12 / 1039
  23662. }
  23663. },
  23664. head: {
  23665. height: math.unit(1.211, "feet"),
  23666. name: "Head",
  23667. image: {
  23668. source: "./media/characters/aman-aquila/head.svg",
  23669. }
  23670. },
  23671. },
  23672. [
  23673. {
  23674. name: "Minimicro",
  23675. height: math.unit(0.057, "inches")
  23676. },
  23677. {
  23678. name: "Micro",
  23679. height: math.unit(7, "inches")
  23680. },
  23681. {
  23682. name: "Mini",
  23683. height: math.unit(3 + 7 / 12, "feet")
  23684. },
  23685. {
  23686. name: "Normal",
  23687. height: math.unit(5 + 7 / 12, "feet"),
  23688. default: true
  23689. },
  23690. {
  23691. name: "Macro",
  23692. height: math.unit(157 + 7 / 12, "feet")
  23693. },
  23694. {
  23695. name: "Megamacro",
  23696. height: math.unit(1557 + 7 / 12, "feet")
  23697. },
  23698. {
  23699. name: "Gigamacro",
  23700. height: math.unit(15557 + 7 / 12, "feet")
  23701. },
  23702. ]
  23703. ))
  23704. characterMakers.push(() => makeCharacter(
  23705. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23706. {
  23707. front: {
  23708. height: math.unit(3 + 2 / 12, "inches"),
  23709. weight: math.unit(0.3, "ounces"),
  23710. name: "Front",
  23711. image: {
  23712. source: "./media/characters/hiphae/front.svg",
  23713. extra: 1931 / 1683,
  23714. bottom: 24 / 1955
  23715. }
  23716. },
  23717. },
  23718. [
  23719. {
  23720. name: "Normal",
  23721. height: math.unit(3 + 1 / 2, "inches"),
  23722. default: true
  23723. },
  23724. ]
  23725. ))
  23726. characterMakers.push(() => makeCharacter(
  23727. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23728. {
  23729. front: {
  23730. height: math.unit(5 + 10 / 12, "feet"),
  23731. weight: math.unit(165, "lb"),
  23732. name: "Front",
  23733. image: {
  23734. source: "./media/characters/nicky/front.svg",
  23735. extra: 3144 / 2886,
  23736. bottom: 45.6 / 3192
  23737. }
  23738. },
  23739. back: {
  23740. height: math.unit(5 + 10 / 12, "feet"),
  23741. weight: math.unit(165, "lb"),
  23742. name: "Back",
  23743. image: {
  23744. source: "./media/characters/nicky/back.svg",
  23745. extra: 3055 / 2804,
  23746. bottom: 28.4 / 3087
  23747. }
  23748. },
  23749. frontclothed: {
  23750. height: math.unit(5 + 10 / 12, "feet"),
  23751. weight: math.unit(165, "lb"),
  23752. name: "Front-clothed",
  23753. image: {
  23754. source: "./media/characters/nicky/front-clothed.svg",
  23755. extra: 3184.9 / 2926.9,
  23756. bottom: 86.5 / 3239.9
  23757. }
  23758. },
  23759. foot: {
  23760. height: math.unit(1.16, "feet"),
  23761. name: "Foot",
  23762. image: {
  23763. source: "./media/characters/nicky/foot.svg"
  23764. }
  23765. },
  23766. feet: {
  23767. height: math.unit(1.34, "feet"),
  23768. name: "Feet",
  23769. image: {
  23770. source: "./media/characters/nicky/feet.svg"
  23771. }
  23772. },
  23773. maw: {
  23774. height: math.unit(0.9, "feet"),
  23775. name: "Maw",
  23776. image: {
  23777. source: "./media/characters/nicky/maw.svg"
  23778. }
  23779. },
  23780. },
  23781. [
  23782. {
  23783. name: "Normal",
  23784. height: math.unit(5 + 10 / 12, "feet"),
  23785. default: true
  23786. },
  23787. {
  23788. name: "Macro",
  23789. height: math.unit(60, "feet")
  23790. },
  23791. {
  23792. name: "Megamacro",
  23793. height: math.unit(1, "mile")
  23794. },
  23795. ]
  23796. ))
  23797. characterMakers.push(() => makeCharacter(
  23798. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23799. {
  23800. side: {
  23801. height: math.unit(10, "feet"),
  23802. weight: math.unit(600, "lb"),
  23803. name: "Side",
  23804. image: {
  23805. source: "./media/characters/blair/side.svg",
  23806. bottom: 16.6 / 475,
  23807. extra: 458 / 431
  23808. }
  23809. },
  23810. },
  23811. [
  23812. {
  23813. name: "Micro",
  23814. height: math.unit(8, "inches")
  23815. },
  23816. {
  23817. name: "Normal",
  23818. height: math.unit(10, "feet"),
  23819. default: true
  23820. },
  23821. {
  23822. name: "Macro",
  23823. height: math.unit(180, "feet")
  23824. },
  23825. ]
  23826. ))
  23827. characterMakers.push(() => makeCharacter(
  23828. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23829. {
  23830. front: {
  23831. height: math.unit(5 + 4 / 12, "feet"),
  23832. weight: math.unit(125, "lb"),
  23833. name: "Front",
  23834. image: {
  23835. source: "./media/characters/fisher/front.svg",
  23836. extra: 444 / 390,
  23837. bottom: 2 / 444.8
  23838. }
  23839. },
  23840. },
  23841. [
  23842. {
  23843. name: "Micro",
  23844. height: math.unit(4, "inches")
  23845. },
  23846. {
  23847. name: "Normal",
  23848. height: math.unit(5 + 4 / 12, "feet"),
  23849. default: true
  23850. },
  23851. {
  23852. name: "Macro",
  23853. height: math.unit(100, "feet")
  23854. },
  23855. ]
  23856. ))
  23857. characterMakers.push(() => makeCharacter(
  23858. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23859. {
  23860. front: {
  23861. height: math.unit(6.71, "feet"),
  23862. weight: math.unit(200, "lb"),
  23863. capacity: math.unit(1000000, "people"),
  23864. name: "Front",
  23865. image: {
  23866. source: "./media/characters/gliss/front.svg",
  23867. extra: 2347 / 2231,
  23868. bottom: 113 / 2462
  23869. }
  23870. },
  23871. hammerspaceSize: {
  23872. height: math.unit(6.71 * 717, "feet"),
  23873. weight: math.unit(200, "lb"),
  23874. capacity: math.unit(1000000, "people"),
  23875. name: "Hammerspace Size",
  23876. image: {
  23877. source: "./media/characters/gliss/front.svg",
  23878. extra: 2347 / 2231,
  23879. bottom: 113 / 2462
  23880. }
  23881. },
  23882. },
  23883. [
  23884. {
  23885. name: "Normal",
  23886. height: math.unit(6.71, "feet"),
  23887. default: true
  23888. },
  23889. ]
  23890. ))
  23891. characterMakers.push(() => makeCharacter(
  23892. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  23893. {
  23894. side: {
  23895. height: math.unit(1.44, "m"),
  23896. weight: math.unit(80, "kg"),
  23897. name: "Side",
  23898. image: {
  23899. source: "./media/characters/dune-anderson/side.svg",
  23900. bottom: 49 / 1426
  23901. }
  23902. },
  23903. },
  23904. [
  23905. {
  23906. name: "Wolf-sized",
  23907. height: math.unit(1.44, "meters")
  23908. },
  23909. {
  23910. name: "Normal",
  23911. height: math.unit(5.05, "meters"),
  23912. default: true
  23913. },
  23914. {
  23915. name: "Big",
  23916. height: math.unit(14.4, "meters")
  23917. },
  23918. {
  23919. name: "Huge",
  23920. height: math.unit(144, "meters")
  23921. },
  23922. ]
  23923. ))
  23924. characterMakers.push(() => makeCharacter(
  23925. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  23926. {
  23927. front: {
  23928. height: math.unit(7, "feet"),
  23929. weight: math.unit(425, "lb"),
  23930. name: "Front",
  23931. image: {
  23932. source: "./media/characters/hind/front.svg",
  23933. extra: 2091 / 1860,
  23934. bottom: 129 / 2220
  23935. }
  23936. },
  23937. back: {
  23938. height: math.unit(7, "feet"),
  23939. weight: math.unit(425, "lb"),
  23940. name: "Back",
  23941. image: {
  23942. source: "./media/characters/hind/back.svg",
  23943. extra: 2091 / 1860,
  23944. bottom: 24.6 / 2309
  23945. }
  23946. },
  23947. tail: {
  23948. height: math.unit(2.8, "feet"),
  23949. name: "Tail",
  23950. image: {
  23951. source: "./media/characters/hind/tail.svg"
  23952. }
  23953. },
  23954. head: {
  23955. height: math.unit(2.55, "feet"),
  23956. name: "Head",
  23957. image: {
  23958. source: "./media/characters/hind/head.svg"
  23959. }
  23960. },
  23961. },
  23962. [
  23963. {
  23964. name: "XS",
  23965. height: math.unit(0.7, "feet")
  23966. },
  23967. {
  23968. name: "Normal",
  23969. height: math.unit(7, "feet"),
  23970. default: true
  23971. },
  23972. {
  23973. name: "XL",
  23974. height: math.unit(70, "feet")
  23975. },
  23976. ]
  23977. ))
  23978. characterMakers.push(() => makeCharacter(
  23979. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  23980. {
  23981. front: {
  23982. height: math.unit(6, "feet"),
  23983. weight: math.unit(150, "lb"),
  23984. name: "Front",
  23985. image: {
  23986. source: "./media/characters/dylan-skaven/front.svg",
  23987. extra: 2318 / 2063,
  23988. bottom: 93.4 / 2410
  23989. }
  23990. },
  23991. },
  23992. [
  23993. {
  23994. name: "Nano",
  23995. height: math.unit(1, "mm")
  23996. },
  23997. {
  23998. name: "Micro",
  23999. height: math.unit(1, "cm")
  24000. },
  24001. {
  24002. name: "Normal",
  24003. height: math.unit(2.1, "meters"),
  24004. default: true
  24005. },
  24006. ]
  24007. ))
  24008. characterMakers.push(() => makeCharacter(
  24009. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24010. {
  24011. front: {
  24012. height: math.unit(7 + 5 / 12, "feet"),
  24013. weight: math.unit(357, "lb"),
  24014. name: "Front",
  24015. image: {
  24016. source: "./media/characters/solex-draconov/front.svg",
  24017. extra: 1993 / 1865,
  24018. bottom: 117 / 2111
  24019. }
  24020. },
  24021. },
  24022. [
  24023. {
  24024. name: "Natural Height",
  24025. height: math.unit(7 + 5 / 12, "feet"),
  24026. default: true
  24027. },
  24028. {
  24029. name: "Macro",
  24030. height: math.unit(350, "feet")
  24031. },
  24032. {
  24033. name: "Macro+",
  24034. height: math.unit(1000, "feet")
  24035. },
  24036. {
  24037. name: "Megamacro",
  24038. height: math.unit(20, "km")
  24039. },
  24040. {
  24041. name: "Megamacro+",
  24042. height: math.unit(1000, "km")
  24043. },
  24044. {
  24045. name: "Gigamacro",
  24046. height: math.unit(2.5, "Gm")
  24047. },
  24048. {
  24049. name: "Teramacro",
  24050. height: math.unit(15, "Tm")
  24051. },
  24052. {
  24053. name: "Galactic",
  24054. height: math.unit(30, "Zm")
  24055. },
  24056. {
  24057. name: "Universal",
  24058. height: math.unit(21000, "Ym")
  24059. },
  24060. {
  24061. name: "Omniversal",
  24062. height: math.unit(9.861e50, "Ym")
  24063. },
  24064. {
  24065. name: "Existential",
  24066. height: math.unit(1e300, "meters")
  24067. },
  24068. ]
  24069. ))
  24070. characterMakers.push(() => makeCharacter(
  24071. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24072. {
  24073. side: {
  24074. height: math.unit(25, "feet"),
  24075. weight: math.unit(90000, "lb"),
  24076. name: "Side",
  24077. image: {
  24078. source: "./media/characters/mandarax/side.svg",
  24079. extra: 614 / 332,
  24080. bottom: 55 / 630
  24081. }
  24082. },
  24083. head: {
  24084. height: math.unit(11.4, "feet"),
  24085. name: "Head",
  24086. image: {
  24087. source: "./media/characters/mandarax/head.svg"
  24088. }
  24089. },
  24090. belly: {
  24091. height: math.unit(33, "feet"),
  24092. name: "Belly",
  24093. capacity: math.unit(500, "people"),
  24094. image: {
  24095. source: "./media/characters/mandarax/belly.svg"
  24096. }
  24097. },
  24098. dick: {
  24099. height: math.unit(8.46, "feet"),
  24100. name: "Dick",
  24101. image: {
  24102. source: "./media/characters/mandarax/dick.svg"
  24103. }
  24104. },
  24105. top: {
  24106. height: math.unit(28, "meters"),
  24107. name: "Top",
  24108. image: {
  24109. source: "./media/characters/mandarax/top.svg"
  24110. }
  24111. },
  24112. },
  24113. [
  24114. {
  24115. name: "Normal",
  24116. height: math.unit(25, "feet"),
  24117. default: true
  24118. },
  24119. ]
  24120. ))
  24121. characterMakers.push(() => makeCharacter(
  24122. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24123. {
  24124. front: {
  24125. height: math.unit(5, "feet"),
  24126. weight: math.unit(90, "lb"),
  24127. name: "Front",
  24128. image: {
  24129. source: "./media/characters/pixil/front.svg",
  24130. extra: 2000 / 1618,
  24131. bottom: 12.3 / 2011
  24132. }
  24133. },
  24134. },
  24135. [
  24136. {
  24137. name: "Normal",
  24138. height: math.unit(5, "feet"),
  24139. default: true
  24140. },
  24141. {
  24142. name: "Megamacro",
  24143. height: math.unit(10, "miles"),
  24144. },
  24145. ]
  24146. ))
  24147. characterMakers.push(() => makeCharacter(
  24148. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24149. {
  24150. front: {
  24151. height: math.unit(7 + 2 / 12, "feet"),
  24152. weight: math.unit(200, "lb"),
  24153. name: "Front",
  24154. image: {
  24155. source: "./media/characters/angel/front.svg",
  24156. extra: 1830 / 1737,
  24157. bottom: 22.6 / 1854,
  24158. }
  24159. },
  24160. },
  24161. [
  24162. {
  24163. name: "Normal",
  24164. height: math.unit(7 + 2 / 12, "feet"),
  24165. default: true
  24166. },
  24167. {
  24168. name: "Macro",
  24169. height: math.unit(1000, "feet")
  24170. },
  24171. {
  24172. name: "Megamacro",
  24173. height: math.unit(2, "miles")
  24174. },
  24175. {
  24176. name: "Gigamacro",
  24177. height: math.unit(20, "earths")
  24178. },
  24179. ]
  24180. ))
  24181. characterMakers.push(() => makeCharacter(
  24182. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24183. {
  24184. front: {
  24185. height: math.unit(5, "feet"),
  24186. weight: math.unit(180, "lb"),
  24187. name: "Front",
  24188. image: {
  24189. source: "./media/characters/mekana/front.svg",
  24190. extra: 1671 / 1605,
  24191. bottom: 3.5 / 1691
  24192. }
  24193. },
  24194. side: {
  24195. height: math.unit(5, "feet"),
  24196. weight: math.unit(180, "lb"),
  24197. name: "Side",
  24198. image: {
  24199. source: "./media/characters/mekana/side.svg",
  24200. extra: 1671 / 1605,
  24201. bottom: 3.5 / 1691
  24202. }
  24203. },
  24204. back: {
  24205. height: math.unit(5, "feet"),
  24206. weight: math.unit(180, "lb"),
  24207. name: "Back",
  24208. image: {
  24209. source: "./media/characters/mekana/back.svg",
  24210. extra: 1671 / 1605,
  24211. bottom: 3.5 / 1691
  24212. }
  24213. },
  24214. },
  24215. [
  24216. {
  24217. name: "Normal",
  24218. height: math.unit(5, "feet"),
  24219. default: true
  24220. },
  24221. ]
  24222. ))
  24223. characterMakers.push(() => makeCharacter(
  24224. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24225. {
  24226. front: {
  24227. height: math.unit(4 + 6 / 12, "feet"),
  24228. weight: math.unit(80, "lb"),
  24229. name: "Front",
  24230. image: {
  24231. source: "./media/characters/pixie/front.svg",
  24232. extra: 1924 / 1825,
  24233. bottom: 22.4 / 1946
  24234. }
  24235. },
  24236. },
  24237. [
  24238. {
  24239. name: "Normal",
  24240. height: math.unit(4 + 6 / 12, "feet"),
  24241. default: true
  24242. },
  24243. {
  24244. name: "Macro",
  24245. height: math.unit(40, "feet")
  24246. },
  24247. ]
  24248. ))
  24249. characterMakers.push(() => makeCharacter(
  24250. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24251. {
  24252. front: {
  24253. height: math.unit(2.1, "meters"),
  24254. weight: math.unit(200, "lb"),
  24255. name: "Front",
  24256. image: {
  24257. source: "./media/characters/the-lascivious/front.svg",
  24258. extra: 1 / 0.893,
  24259. bottom: 3.5 / 573.7
  24260. }
  24261. },
  24262. },
  24263. [
  24264. {
  24265. name: "Human Scale",
  24266. height: math.unit(2.1, "meters")
  24267. },
  24268. {
  24269. name: "Wolxi Scale",
  24270. height: math.unit(46.2, "m"),
  24271. default: true
  24272. },
  24273. {
  24274. name: "Boinker of Buildings",
  24275. height: math.unit(10, "km")
  24276. },
  24277. {
  24278. name: "Shagger of Skyscrapers",
  24279. height: math.unit(40, "km")
  24280. },
  24281. {
  24282. name: "Banger of Boroughs",
  24283. height: math.unit(4000, "km")
  24284. },
  24285. {
  24286. name: "Screwer of States",
  24287. height: math.unit(100000, "km")
  24288. },
  24289. {
  24290. name: "Pounder of Planets",
  24291. height: math.unit(2000000, "km")
  24292. },
  24293. ]
  24294. ))
  24295. characterMakers.push(() => makeCharacter(
  24296. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24297. {
  24298. front: {
  24299. height: math.unit(6, "feet"),
  24300. weight: math.unit(150, "lb"),
  24301. name: "Front",
  24302. image: {
  24303. source: "./media/characters/aj/front.svg",
  24304. extra: 2039 / 1562,
  24305. bottom: 40 / 2079
  24306. }
  24307. },
  24308. },
  24309. [
  24310. {
  24311. name: "Normal",
  24312. height: math.unit(11 + 6 / 12, "feet"),
  24313. default: true
  24314. },
  24315. {
  24316. name: "Megamacro",
  24317. height: math.unit(60, "megameters")
  24318. },
  24319. ]
  24320. ))
  24321. characterMakers.push(() => makeCharacter(
  24322. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24323. {
  24324. side: {
  24325. height: math.unit(31 + 8/12, "feet"),
  24326. weight: math.unit(75000, "kg"),
  24327. name: "Side",
  24328. image: {
  24329. source: "./media/characters/koros/side.svg",
  24330. extra: 1442/1297,
  24331. bottom: 122.7/1562
  24332. }
  24333. },
  24334. dicksKingsCrown: {
  24335. height: math.unit(6, "feet"),
  24336. name: "Dicks (King's Crown)",
  24337. image: {
  24338. source: "./media/characters/koros/dicks-kings-crown.svg"
  24339. }
  24340. },
  24341. dicksTailSet: {
  24342. height: math.unit(3, "feet"),
  24343. name: "Dicks (Tail Set)",
  24344. image: {
  24345. source: "./media/characters/koros/dicks-tail-set.svg"
  24346. }
  24347. },
  24348. dickCumming: {
  24349. height: math.unit(7.98, "feet"),
  24350. name: "Dick (Cumming)",
  24351. image: {
  24352. source: "./media/characters/koros/dick-cumming.svg"
  24353. }
  24354. },
  24355. dicksBack: {
  24356. height: math.unit(5.9, "feet"),
  24357. name: "Dicks (Back)",
  24358. image: {
  24359. source: "./media/characters/koros/dicks-back.svg"
  24360. }
  24361. },
  24362. dicksFront: {
  24363. height: math.unit(3.72, "feet"),
  24364. name: "Dicks (Front)",
  24365. image: {
  24366. source: "./media/characters/koros/dicks-front.svg"
  24367. }
  24368. },
  24369. dicksPeeking: {
  24370. height: math.unit(3.0, "feet"),
  24371. name: "Dicks (Peeking)",
  24372. image: {
  24373. source: "./media/characters/koros/dicks-peeking.svg"
  24374. }
  24375. },
  24376. eye: {
  24377. height: math.unit(1.7, "feet"),
  24378. name: "Eye",
  24379. image: {
  24380. source: "./media/characters/koros/eye.svg"
  24381. }
  24382. },
  24383. headFront: {
  24384. height: math.unit(11.69, "feet"),
  24385. name: "Head (Front)",
  24386. image: {
  24387. source: "./media/characters/koros/head-front.svg"
  24388. }
  24389. },
  24390. headSide: {
  24391. height: math.unit(14, "feet"),
  24392. name: "Head (Side)",
  24393. image: {
  24394. source: "./media/characters/koros/head-side.svg"
  24395. }
  24396. },
  24397. leg: {
  24398. height: math.unit(17, "feet"),
  24399. name: "Leg",
  24400. image: {
  24401. source: "./media/characters/koros/leg.svg"
  24402. }
  24403. },
  24404. mawSide: {
  24405. height: math.unit(12.8, "feet"),
  24406. name: "Maw (Side)",
  24407. image: {
  24408. source: "./media/characters/koros/maw-side.svg"
  24409. }
  24410. },
  24411. mawSpitting: {
  24412. height: math.unit(17, "feet"),
  24413. name: "Maw (Spitting)",
  24414. image: {
  24415. source: "./media/characters/koros/maw-spitting.svg"
  24416. }
  24417. },
  24418. slit: {
  24419. height: math.unit(2.8, "feet"),
  24420. name: "Slit",
  24421. image: {
  24422. source: "./media/characters/koros/slit.svg"
  24423. }
  24424. },
  24425. stomach: {
  24426. height: math.unit(6.8, "feet"),
  24427. capacity: math.unit(20, "people"),
  24428. name: "Stomach",
  24429. image: {
  24430. source: "./media/characters/koros/stomach.svg"
  24431. }
  24432. },
  24433. wingspanBottom: {
  24434. height: math.unit(114, "feet"),
  24435. name: "Wingspan (Bottom)",
  24436. image: {
  24437. source: "./media/characters/koros/wingspan-bottom.svg"
  24438. }
  24439. },
  24440. wingspanTop: {
  24441. height: math.unit(104, "feet"),
  24442. name: "Wingspan (Top)",
  24443. image: {
  24444. source: "./media/characters/koros/wingspan-top.svg"
  24445. }
  24446. },
  24447. },
  24448. [
  24449. {
  24450. name: "Normal",
  24451. height: math.unit(31 + 8/12, "feet"),
  24452. default: true
  24453. },
  24454. ]
  24455. ))
  24456. characterMakers.push(() => makeCharacter(
  24457. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24458. {
  24459. front: {
  24460. height: math.unit(18 + 5/12, "feet"),
  24461. weight: math.unit(3750, "kg"),
  24462. name: "Front",
  24463. image: {
  24464. source: "./media/characters/vexx/front.svg",
  24465. extra: 426/396,
  24466. bottom: 31.5/458
  24467. }
  24468. },
  24469. maw: {
  24470. height: math.unit(6, "feet"),
  24471. name: "Maw",
  24472. image: {
  24473. source: "./media/characters/vexx/maw.svg"
  24474. }
  24475. },
  24476. },
  24477. [
  24478. {
  24479. name: "Normal",
  24480. height: math.unit(18 + 5/12, "feet"),
  24481. default: true
  24482. },
  24483. ]
  24484. ))
  24485. characterMakers.push(() => makeCharacter(
  24486. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24487. {
  24488. front: {
  24489. height: math.unit(17 + 6/12, "feet"),
  24490. weight: math.unit(150, "lb"),
  24491. name: "Front",
  24492. image: {
  24493. source: "./media/characters/baadra/front.svg",
  24494. extra: 3137/2890,
  24495. bottom: 168.4/3305
  24496. }
  24497. },
  24498. back: {
  24499. height: math.unit(17 + 6/12, "feet"),
  24500. weight: math.unit(150, "lb"),
  24501. name: "Back",
  24502. image: {
  24503. source: "./media/characters/baadra/back.svg",
  24504. extra: 3142/2890,
  24505. bottom: 220/3371
  24506. }
  24507. },
  24508. head: {
  24509. height: math.unit(5.45, "feet"),
  24510. name: "Head",
  24511. image: {
  24512. source: "./media/characters/baadra/head.svg"
  24513. }
  24514. },
  24515. headAngry: {
  24516. height: math.unit(4.95, "feet"),
  24517. name: "Head (Angry)",
  24518. image: {
  24519. source: "./media/characters/baadra/head-angry.svg"
  24520. }
  24521. },
  24522. headOpen: {
  24523. height: math.unit(6, "feet"),
  24524. name: "Head (Open)",
  24525. image: {
  24526. source: "./media/characters/baadra/head-open.svg"
  24527. }
  24528. },
  24529. },
  24530. [
  24531. {
  24532. name: "Normal",
  24533. height: math.unit(17 + 6/12, "feet"),
  24534. default: true
  24535. },
  24536. ]
  24537. ))
  24538. characterMakers.push(() => makeCharacter(
  24539. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24540. {
  24541. front: {
  24542. height: math.unit(7 + 3/12, "feet"),
  24543. weight: math.unit(180, "lb"),
  24544. name: "Front",
  24545. image: {
  24546. source: "./media/characters/juri/front.svg",
  24547. extra: 1401/1237,
  24548. bottom: 18.5/1418
  24549. }
  24550. },
  24551. side: {
  24552. height: math.unit(7 + 3/12, "feet"),
  24553. weight: math.unit(180, "lb"),
  24554. name: "Side",
  24555. image: {
  24556. source: "./media/characters/juri/side.svg",
  24557. extra: 1424/1242,
  24558. bottom: 18.5/1447
  24559. }
  24560. },
  24561. sitting: {
  24562. height: math.unit(6, "feet"),
  24563. weight: math.unit(180, "lb"),
  24564. name: "Sitting",
  24565. image: {
  24566. source: "./media/characters/juri/sitting.svg",
  24567. extra: 1270/1143,
  24568. bottom: 100/1343
  24569. }
  24570. },
  24571. back: {
  24572. height: math.unit(7 + 3/12, "feet"),
  24573. weight: math.unit(180, "lb"),
  24574. name: "Back",
  24575. image: {
  24576. source: "./media/characters/juri/back.svg",
  24577. extra: 1377/1240,
  24578. bottom: 23.7/1405
  24579. }
  24580. },
  24581. maw: {
  24582. height: math.unit(2.8, "feet"),
  24583. name: "Maw",
  24584. image: {
  24585. source: "./media/characters/juri/maw.svg"
  24586. }
  24587. },
  24588. stomach: {
  24589. height: math.unit(0.89, "feet"),
  24590. capacity: math.unit(4, "liters"),
  24591. name: "Stomach",
  24592. image: {
  24593. source: "./media/characters/juri/stomach.svg"
  24594. }
  24595. },
  24596. },
  24597. [
  24598. {
  24599. name: "Normal",
  24600. height: math.unit(7 + 3/12, "feet"),
  24601. default: true
  24602. },
  24603. ]
  24604. ))
  24605. characterMakers.push(() => makeCharacter(
  24606. { name: "Maxene Sita", species: ["fox"], tags: ["anthro"] },
  24607. {
  24608. fox: {
  24609. height: math.unit(5 + 6/12, "feet"),
  24610. weight: math.unit(140, "lb"),
  24611. name: "Fox",
  24612. image: {
  24613. source: "./media/characters/maxene-sita/fox.svg",
  24614. extra: 146/138,
  24615. bottom: 2.1/148.19
  24616. }
  24617. },
  24618. kitsune: {
  24619. height: math.unit(10, "feet"),
  24620. weight: math.unit(800, "lb"),
  24621. name: "Kitsune",
  24622. image: {
  24623. source: "./media/characters/maxene-sita/kitsune.svg",
  24624. extra: 185/176,
  24625. bottom: 4.7/189.9
  24626. }
  24627. },
  24628. },
  24629. [
  24630. {
  24631. name: "Normal",
  24632. height: math.unit(5 + 6/12, "feet"),
  24633. default: true
  24634. },
  24635. ]
  24636. ))
  24637. characterMakers.push(() => makeCharacter(
  24638. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24639. {
  24640. front: {
  24641. height: math.unit(3 + 4/12, "feet"),
  24642. weight: math.unit(70, "lb"),
  24643. name: "Front",
  24644. image: {
  24645. source: "./media/characters/maia/front.svg",
  24646. extra: 227/219.5,
  24647. bottom: 40 / 267
  24648. }
  24649. },
  24650. back: {
  24651. height: math.unit(3 + 4/12, "feet"),
  24652. weight: math.unit(70, "lb"),
  24653. name: "Back",
  24654. image: {
  24655. source: "./media/characters/maia/back.svg",
  24656. extra: 237/225
  24657. }
  24658. },
  24659. },
  24660. [
  24661. {
  24662. name: "Normal",
  24663. height: math.unit(3 + 4/12, "feet"),
  24664. default: true
  24665. },
  24666. ]
  24667. ))
  24668. characterMakers.push(() => makeCharacter(
  24669. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24670. {
  24671. front: {
  24672. height: math.unit(5 + 10/12, "feet"),
  24673. weight: math.unit(197, "lb"),
  24674. name: "Front",
  24675. image: {
  24676. source: "./media/characters/jabaro/front.svg",
  24677. extra: 225/216,
  24678. bottom: 5.06/230
  24679. }
  24680. },
  24681. back: {
  24682. height: math.unit(5 + 10/12, "feet"),
  24683. weight: math.unit(197, "lb"),
  24684. name: "Back",
  24685. image: {
  24686. source: "./media/characters/jabaro/back.svg",
  24687. extra: 225/219,
  24688. bottom: 1.9/227
  24689. }
  24690. },
  24691. },
  24692. [
  24693. {
  24694. name: "Normal",
  24695. height: math.unit(5 + 10/12, "feet"),
  24696. default: true
  24697. },
  24698. ]
  24699. ))
  24700. characterMakers.push(() => makeCharacter(
  24701. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24702. {
  24703. front: {
  24704. height: math.unit(5 + 8/12, "feet"),
  24705. weight: math.unit(139, "lb"),
  24706. name: "Front",
  24707. image: {
  24708. source: "./media/characters/risa/front.svg",
  24709. extra: 270/260,
  24710. bottom: 11.2/282
  24711. }
  24712. },
  24713. back: {
  24714. height: math.unit(5 + 8/12, "feet"),
  24715. weight: math.unit(139, "lb"),
  24716. name: "Back",
  24717. image: {
  24718. source: "./media/characters/risa/back.svg",
  24719. extra: 264/255,
  24720. bottom: 4/268
  24721. }
  24722. },
  24723. },
  24724. [
  24725. {
  24726. name: "Normal",
  24727. height: math.unit(5 + 8/12, "feet"),
  24728. default: true
  24729. },
  24730. ]
  24731. ))
  24732. characterMakers.push(() => makeCharacter(
  24733. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  24734. {
  24735. front: {
  24736. height: math.unit(2 + 11/12, "feet"),
  24737. weight: math.unit(30, "lb"),
  24738. name: "Front",
  24739. image: {
  24740. source: "./media/characters/weatley/front.svg",
  24741. bottom: 10.7/414,
  24742. extra: 403.5/362
  24743. }
  24744. },
  24745. back: {
  24746. height: math.unit(2 + 11/12, "feet"),
  24747. weight: math.unit(30, "lb"),
  24748. name: "Back",
  24749. image: {
  24750. source: "./media/characters/weatley/back.svg",
  24751. bottom: 10.7/414,
  24752. extra: 403.5/362
  24753. }
  24754. },
  24755. },
  24756. [
  24757. {
  24758. name: "Normal",
  24759. height: math.unit(2 + 11/12, "feet"),
  24760. default: true
  24761. },
  24762. ]
  24763. ))
  24764. characterMakers.push(() => makeCharacter(
  24765. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  24766. {
  24767. front: {
  24768. height: math.unit(5 + 2/12, "feet"),
  24769. weight: math.unit(50, "kg"),
  24770. name: "Front",
  24771. image: {
  24772. source: "./media/characters/mercury-crescent/front.svg",
  24773. extra: 1088/1033,
  24774. bottom: 18.9/1109
  24775. }
  24776. },
  24777. },
  24778. [
  24779. {
  24780. name: "Normal",
  24781. height: math.unit(5 + 2/12, "feet"),
  24782. default: true
  24783. },
  24784. ]
  24785. ))
  24786. characterMakers.push(() => makeCharacter(
  24787. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  24788. {
  24789. front: {
  24790. height: math.unit(2, "feet"),
  24791. weight: math.unit(15, "kg"),
  24792. name: "Front",
  24793. image: {
  24794. source: "./media/characters/diamond-jones/front.svg",
  24795. bottom: 16/568
  24796. }
  24797. },
  24798. },
  24799. [
  24800. {
  24801. name: "Normal",
  24802. height: math.unit(2, "feet"),
  24803. default: true
  24804. },
  24805. ]
  24806. ))
  24807. characterMakers.push(() => makeCharacter(
  24808. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  24809. {
  24810. front: {
  24811. height: math.unit(3, "feet"),
  24812. weight: math.unit(30, "kg"),
  24813. name: "Front",
  24814. image: {
  24815. source: "./media/characters/sweet-bit/front.svg",
  24816. extra: 675/567,
  24817. bottom: 27.7/703
  24818. }
  24819. },
  24820. },
  24821. [
  24822. {
  24823. name: "Normal",
  24824. height: math.unit(3, "feet"),
  24825. default: true
  24826. },
  24827. ]
  24828. ))
  24829. characterMakers.push(() => makeCharacter(
  24830. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  24831. {
  24832. side: {
  24833. height: math.unit(9.178, "feet"),
  24834. weight: math.unit(500, "lb"),
  24835. name: "Side",
  24836. image: {
  24837. source: "./media/characters/umbrazen/side.svg",
  24838. extra: 1730/1473,
  24839. bottom: 34.6/1765
  24840. }
  24841. },
  24842. },
  24843. [
  24844. {
  24845. name: "Normal",
  24846. height: math.unit(9.178, "feet"),
  24847. default: true
  24848. },
  24849. ]
  24850. ))
  24851. characterMakers.push(() => makeCharacter(
  24852. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  24853. {
  24854. front: {
  24855. height: math.unit(10, "feet"),
  24856. weight: math.unit(750, "lb"),
  24857. name: "Front",
  24858. image: {
  24859. source: "./media/characters/arlist/front.svg",
  24860. extra: 961/778,
  24861. bottom: 6.2/986
  24862. }
  24863. },
  24864. },
  24865. [
  24866. {
  24867. name: "Normal",
  24868. height: math.unit(10, "feet"),
  24869. default: true
  24870. },
  24871. ]
  24872. ))
  24873. characterMakers.push(() => makeCharacter(
  24874. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  24875. {
  24876. front: {
  24877. height: math.unit(5 + 1/12, "feet"),
  24878. weight: math.unit(110, "lb"),
  24879. name: "Front",
  24880. image: {
  24881. source: "./media/characters/aradel/front.svg",
  24882. extra: 324/303,
  24883. bottom: 3.6/329.4
  24884. }
  24885. },
  24886. },
  24887. [
  24888. {
  24889. name: "Normal",
  24890. height: math.unit(5 + 1/12, "feet"),
  24891. default: true
  24892. },
  24893. ]
  24894. ))
  24895. characterMakers.push(() => makeCharacter(
  24896. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  24897. {
  24898. front: {
  24899. height: math.unit(3 + 8/12, "feet"),
  24900. weight: math.unit(50, "lb"),
  24901. name: "Front",
  24902. image: {
  24903. source: "./media/characters/serryn/front.svg",
  24904. extra: 1792/1656,
  24905. bottom: 43.5/1840
  24906. }
  24907. },
  24908. },
  24909. [
  24910. {
  24911. name: "Normal",
  24912. height: math.unit(3 + 8/12, "feet"),
  24913. default: true
  24914. },
  24915. ]
  24916. ))
  24917. characterMakers.push(() => makeCharacter(
  24918. { name: "Xavier Thyme" },
  24919. {
  24920. front: {
  24921. height: math.unit(7 + 10/12, "feet"),
  24922. weight: math.unit(255, "lb"),
  24923. name: "Front",
  24924. image: {
  24925. source: "./media/characters/xavier-thyme/front.svg",
  24926. extra: 3733/3642,
  24927. bottom: 131/3869
  24928. }
  24929. },
  24930. frontRaven: {
  24931. height: math.unit(7 + 10/12, "feet"),
  24932. weight: math.unit(255, "lb"),
  24933. name: "Front (Raven)",
  24934. image: {
  24935. source: "./media/characters/xavier-thyme/front-raven.svg",
  24936. extra: 4385/3642,
  24937. bottom: 131/4517
  24938. }
  24939. },
  24940. },
  24941. [
  24942. {
  24943. name: "Normal",
  24944. height: math.unit(7 + 10/12, "feet"),
  24945. default: true
  24946. },
  24947. ]
  24948. ))
  24949. characterMakers.push(() => makeCharacter(
  24950. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  24951. {
  24952. front: {
  24953. height: math.unit(1.6, "m"),
  24954. weight: math.unit(50, "kg"),
  24955. name: "Front",
  24956. image: {
  24957. source: "./media/characters/kiki/front.svg",
  24958. extra: 4682/3610,
  24959. bottom: 115/4777
  24960. }
  24961. },
  24962. },
  24963. [
  24964. {
  24965. name: "Normal",
  24966. height: math.unit(1.6, "meters"),
  24967. default: true
  24968. },
  24969. ]
  24970. ))
  24971. characterMakers.push(() => makeCharacter(
  24972. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  24973. {
  24974. front: {
  24975. height: math.unit(50, "m"),
  24976. weight: math.unit(500, "tonnes"),
  24977. name: "Front",
  24978. image: {
  24979. source: "./media/characters/ryoko/front.svg",
  24980. extra: 4632/3926,
  24981. bottom: 193/4823
  24982. }
  24983. },
  24984. },
  24985. [
  24986. {
  24987. name: "Normal",
  24988. height: math.unit(50, "meters"),
  24989. default: true
  24990. },
  24991. ]
  24992. ))
  24993. characterMakers.push(() => makeCharacter(
  24994. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  24995. {
  24996. front: {
  24997. height: math.unit(30, "m"),
  24998. weight: math.unit(22, "tonnes"),
  24999. name: "Front",
  25000. image: {
  25001. source: "./media/characters/elio/front.svg",
  25002. extra: 4582/3720,
  25003. bottom: 236/4828
  25004. }
  25005. },
  25006. },
  25007. [
  25008. {
  25009. name: "Normal",
  25010. height: math.unit(30, "meters"),
  25011. default: true
  25012. },
  25013. ]
  25014. ))
  25015. characterMakers.push(() => makeCharacter(
  25016. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25017. {
  25018. front: {
  25019. height: math.unit(6 + 3/12, "feet"),
  25020. weight: math.unit(120, "lb"),
  25021. name: "Front",
  25022. image: {
  25023. source: "./media/characters/azura/front.svg",
  25024. extra: 1149/1135,
  25025. bottom: 45/1194
  25026. }
  25027. },
  25028. frontClothed: {
  25029. height: math.unit(6 + 3/12, "feet"),
  25030. weight: math.unit(120, "lb"),
  25031. name: "Front (Clothed)",
  25032. image: {
  25033. source: "./media/characters/azura/front-clothed.svg",
  25034. extra: 1149/1135,
  25035. bottom: 45/1194
  25036. }
  25037. },
  25038. },
  25039. [
  25040. {
  25041. name: "Normal",
  25042. height: math.unit(6 + 3/12, "feet"),
  25043. default: true
  25044. },
  25045. {
  25046. name: "Macro",
  25047. height: math.unit(20 + 6/12, "feet")
  25048. },
  25049. {
  25050. name: "Megamacro",
  25051. height: math.unit(12, "miles")
  25052. },
  25053. {
  25054. name: "Gigamacro",
  25055. height: math.unit(10000, "miles")
  25056. },
  25057. {
  25058. name: "Teramacro",
  25059. height: math.unit(900000, "miles")
  25060. },
  25061. ]
  25062. ))
  25063. characterMakers.push(() => makeCharacter(
  25064. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25065. {
  25066. front: {
  25067. height: math.unit(12, "feet"),
  25068. weight: math.unit(1, "ton"),
  25069. capacity: math.unit(660000, "gallons"),
  25070. name: "Front",
  25071. image: {
  25072. source: "./media/characters/zeus/front.svg",
  25073. extra: 5005/4717,
  25074. bottom: 363/5388
  25075. }
  25076. },
  25077. },
  25078. [
  25079. {
  25080. name: "Normal",
  25081. height: math.unit(12, "feet")
  25082. },
  25083. {
  25084. name: "Preferred Size",
  25085. height: math.unit(0.5, "miles"),
  25086. default: true
  25087. },
  25088. {
  25089. name: "Giga Horse",
  25090. height: math.unit(300, "miles")
  25091. },
  25092. {
  25093. name: "Riding Planets",
  25094. height: math.unit(30, "megameters")
  25095. },
  25096. {
  25097. name: "Cosmic Giant",
  25098. height: math.unit(3, "zettameters")
  25099. },
  25100. {
  25101. name: "Breeding God",
  25102. height: math.unit(9.92e22, "yottameters")
  25103. },
  25104. ]
  25105. ))
  25106. characterMakers.push(() => makeCharacter(
  25107. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25108. {
  25109. side: {
  25110. height: math.unit(9, "feet"),
  25111. weight: math.unit(1500, "kg"),
  25112. name: "Side",
  25113. image: {
  25114. source: "./media/characters/fang/side.svg",
  25115. extra: 924/866,
  25116. bottom: 47.5/972.3
  25117. }
  25118. },
  25119. },
  25120. [
  25121. {
  25122. name: "Normal",
  25123. height: math.unit(9, "feet"),
  25124. default: true
  25125. },
  25126. {
  25127. name: "Macro",
  25128. height: math.unit(75 + 6/12, "feet")
  25129. },
  25130. {
  25131. name: "Teramacro",
  25132. height: math.unit(50000, "miles")
  25133. },
  25134. ]
  25135. ))
  25136. characterMakers.push(() => makeCharacter(
  25137. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25138. {
  25139. front: {
  25140. height: math.unit(10, "feet"),
  25141. weight: math.unit(2, "tons"),
  25142. name: "Front",
  25143. image: {
  25144. source: "./media/characters/rekhit/front.svg",
  25145. extra: 2796/2590,
  25146. bottom: 225/3022
  25147. }
  25148. },
  25149. },
  25150. [
  25151. {
  25152. name: "Normal",
  25153. height: math.unit(10, "feet"),
  25154. default: true
  25155. },
  25156. {
  25157. name: "Macro",
  25158. height: math.unit(500, "feet")
  25159. },
  25160. ]
  25161. ))
  25162. characterMakers.push(() => makeCharacter(
  25163. { name: "Dahlia Verrick" },
  25164. {
  25165. front: {
  25166. height: math.unit(7 + 6.451/12, "feet"),
  25167. weight: math.unit(310, "lb"),
  25168. name: "Front",
  25169. image: {
  25170. source: "./media/characters/dahlia-verrick/front.svg",
  25171. extra: 1488/1365,
  25172. bottom: 6.2/1495
  25173. }
  25174. },
  25175. back: {
  25176. height: math.unit(7 + 6.451/12, "feet"),
  25177. weight: math.unit(310, "lb"),
  25178. name: "Back",
  25179. image: {
  25180. source: "./media/characters/dahlia-verrick/back.svg",
  25181. extra: 1472/1351,
  25182. bottom: 5.28/1477
  25183. }
  25184. },
  25185. frontBusiness: {
  25186. height: math.unit(7 + 6.451/12, "feet"),
  25187. weight: math.unit(200, "lb"),
  25188. name: "Front (Business)",
  25189. image: {
  25190. source: "./media/characters/dahlia-verrick/front-business.svg",
  25191. extra: 1478/1381,
  25192. bottom: 5.5/1484
  25193. }
  25194. },
  25195. frontCasual: {
  25196. height: math.unit(7 + 6.451/12, "feet"),
  25197. weight: math.unit(200, "lb"),
  25198. name: "Front (Casual)",
  25199. image: {
  25200. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25201. extra: 1478/1381,
  25202. bottom: 5.5/1484
  25203. }
  25204. },
  25205. },
  25206. [
  25207. {
  25208. name: "Travel-Sized",
  25209. height: math.unit(7.45, "inches")
  25210. },
  25211. {
  25212. name: "Normal",
  25213. height: math.unit(7 + 6.451/12, "feet"),
  25214. default: true
  25215. },
  25216. {
  25217. name: "Hitting the Town",
  25218. height: math.unit(37 + 8/12, "feet")
  25219. },
  25220. {
  25221. name: "Stomp in the Suburbs",
  25222. height: math.unit(964 + 9.728/12, "feet")
  25223. },
  25224. {
  25225. name: "Sit on the City",
  25226. height: math.unit(61747 + 10.592/12, "feet")
  25227. },
  25228. {
  25229. name: "Glomp the Globe",
  25230. height: math.unit(252919327 + 4.832/12, "feet")
  25231. },
  25232. ]
  25233. ))
  25234. characterMakers.push(() => makeCharacter(
  25235. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25236. {
  25237. front: {
  25238. height: math.unit(6 + 4/12, "feet"),
  25239. weight: math.unit(320, "lb"),
  25240. name: "Front",
  25241. image: {
  25242. source: "./media/characters/balina-mahigan/front.svg",
  25243. extra: 447/428,
  25244. bottom: 18/466
  25245. }
  25246. },
  25247. back: {
  25248. height: math.unit(6 + 4/12, "feet"),
  25249. weight: math.unit(320, "lb"),
  25250. name: "Back",
  25251. image: {
  25252. source: "./media/characters/balina-mahigan/back.svg",
  25253. extra: 445/428,
  25254. bottom: 4.07/448
  25255. }
  25256. },
  25257. arm: {
  25258. height: math.unit(1.88, "feet"),
  25259. name: "Arm",
  25260. image: {
  25261. source: "./media/characters/balina-mahigan/arm.svg"
  25262. }
  25263. },
  25264. backPort: {
  25265. height: math.unit(0.685, "feet"),
  25266. name: "Back Port",
  25267. image: {
  25268. source: "./media/characters/balina-mahigan/back-port.svg"
  25269. }
  25270. },
  25271. hoofpaw: {
  25272. height: math.unit(1.41, "feet"),
  25273. name: "Hoofpaw",
  25274. image: {
  25275. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25276. }
  25277. },
  25278. leftHandBack: {
  25279. height: math.unit(0.938, "feet"),
  25280. name: "Left Hand (Back)",
  25281. image: {
  25282. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25283. }
  25284. },
  25285. leftHandFront: {
  25286. height: math.unit(0.938, "feet"),
  25287. name: "Left Hand (Front)",
  25288. image: {
  25289. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25290. }
  25291. },
  25292. rightHandBack: {
  25293. height: math.unit(0.95, "feet"),
  25294. name: "Right Hand (Back)",
  25295. image: {
  25296. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25297. }
  25298. },
  25299. rightHandFront: {
  25300. height: math.unit(0.95, "feet"),
  25301. name: "Right Hand (Front)",
  25302. image: {
  25303. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25304. }
  25305. },
  25306. },
  25307. [
  25308. {
  25309. name: "Normal",
  25310. height: math.unit(6 + 4/12, "feet"),
  25311. default: true
  25312. },
  25313. ]
  25314. ))
  25315. characterMakers.push(() => makeCharacter(
  25316. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25317. {
  25318. front: {
  25319. height: math.unit(6, "feet"),
  25320. weight: math.unit(320, "lb"),
  25321. name: "Front",
  25322. image: {
  25323. source: "./media/characters/balina-mejeri/front.svg",
  25324. extra: 517/488,
  25325. bottom: 44.2/561
  25326. }
  25327. },
  25328. },
  25329. [
  25330. {
  25331. name: "Normal",
  25332. height: math.unit(6 + 4/12, "feet")
  25333. },
  25334. {
  25335. name: "Business",
  25336. height: math.unit(155, "feet"),
  25337. default: true
  25338. },
  25339. ]
  25340. ))
  25341. characterMakers.push(() => makeCharacter(
  25342. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25343. {
  25344. kneeling: {
  25345. height: math.unit(6 + 4/12, "feet"),
  25346. weight: math.unit(300*20, "lb"),
  25347. name: "Kneeling",
  25348. image: {
  25349. source: "./media/characters/balbarian/kneeling.svg",
  25350. extra: 922/862,
  25351. bottom: 42.4/965
  25352. }
  25353. },
  25354. },
  25355. [
  25356. {
  25357. name: "Normal",
  25358. height: math.unit(6 + 4/12, "feet")
  25359. },
  25360. {
  25361. name: "Treasured",
  25362. height: math.unit(18 + 9/12, "feet"),
  25363. default: true
  25364. },
  25365. {
  25366. name: "Macro",
  25367. height: math.unit(900, "feet")
  25368. },
  25369. ]
  25370. ))
  25371. characterMakers.push(() => makeCharacter(
  25372. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25373. {
  25374. front: {
  25375. height: math.unit(6 + 4/12, "feet"),
  25376. weight: math.unit(325, "lb"),
  25377. name: "Front",
  25378. image: {
  25379. source: "./media/characters/balina-amarini/front.svg",
  25380. extra: 415/403,
  25381. bottom: 19/433.4
  25382. }
  25383. },
  25384. back: {
  25385. height: math.unit(6 + 4/12, "feet"),
  25386. weight: math.unit(325, "lb"),
  25387. name: "Back",
  25388. image: {
  25389. source: "./media/characters/balina-amarini/back.svg",
  25390. extra: 415/403,
  25391. bottom: 13.5/432
  25392. }
  25393. },
  25394. overdrive: {
  25395. height: math.unit(6 + 4/12, "feet"),
  25396. weight: math.unit(400, "lb"),
  25397. name: "Overdrive",
  25398. image: {
  25399. source: "./media/characters/balina-amarini/overdrive.svg",
  25400. extra: 269/259,
  25401. bottom: 12/282
  25402. }
  25403. },
  25404. },
  25405. [
  25406. {
  25407. name: "Boom",
  25408. height: math.unit(9 + 10/12, "feet"),
  25409. default: true
  25410. },
  25411. {
  25412. name: "Macro",
  25413. height: math.unit(280, "feet")
  25414. },
  25415. ]
  25416. ))
  25417. characterMakers.push(() => makeCharacter(
  25418. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25419. {
  25420. goddess: {
  25421. height: math.unit(600, "feet"),
  25422. weight: math.unit(2000000, "tons"),
  25423. name: "Goddess",
  25424. image: {
  25425. source: "./media/characters/lady-kubwa/goddess.svg",
  25426. extra: 1240.5/1223,
  25427. bottom: 22/1263
  25428. }
  25429. },
  25430. goddesser: {
  25431. height: math.unit(900, "feet"),
  25432. weight: math.unit(20000000, "lb"),
  25433. name: "Goddess-er",
  25434. image: {
  25435. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25436. extra: 899/888,
  25437. bottom: 12.6/912
  25438. }
  25439. },
  25440. },
  25441. [
  25442. {
  25443. name: "Macro",
  25444. height: math.unit(600, "feet"),
  25445. default: true
  25446. },
  25447. {
  25448. name: "Megamacro",
  25449. height: math.unit(250, "miles")
  25450. },
  25451. ]
  25452. ))
  25453. characterMakers.push(() => makeCharacter(
  25454. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25455. {
  25456. front: {
  25457. height: math.unit(7 + 7/12, "feet"),
  25458. weight: math.unit(250, "lb"),
  25459. name: "Front",
  25460. image: {
  25461. source: "./media/characters/tala-grovehorn/front.svg",
  25462. extra: 2636/2525,
  25463. bottom: 147/2781
  25464. }
  25465. },
  25466. back: {
  25467. height: math.unit(7 + 7/12, "feet"),
  25468. weight: math.unit(250, "lb"),
  25469. name: "Back",
  25470. image: {
  25471. source: "./media/characters/tala-grovehorn/back.svg",
  25472. extra: 2635/2539,
  25473. bottom: 100/2732.8
  25474. }
  25475. },
  25476. mouth: {
  25477. height: math.unit(1.15, "feet"),
  25478. name: "Mouth",
  25479. image: {
  25480. source: "./media/characters/tala-grovehorn/mouth.svg"
  25481. }
  25482. },
  25483. dick: {
  25484. height: math.unit(2.36, "feet"),
  25485. name: "Dick",
  25486. image: {
  25487. source: "./media/characters/tala-grovehorn/dick.svg"
  25488. }
  25489. },
  25490. slit: {
  25491. height: math.unit(0.61, "feet"),
  25492. name: "Slit",
  25493. image: {
  25494. source: "./media/characters/tala-grovehorn/slit.svg"
  25495. }
  25496. },
  25497. },
  25498. [
  25499. ]
  25500. ))
  25501. characterMakers.push(() => makeCharacter(
  25502. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25503. {
  25504. front: {
  25505. height: math.unit(7 + 7/12, "feet"),
  25506. weight: math.unit(225, "lb"),
  25507. name: "Front",
  25508. image: {
  25509. source: "./media/characters/epona/front.svg",
  25510. extra: 2445/2290,
  25511. bottom: 251/2696
  25512. }
  25513. },
  25514. back: {
  25515. height: math.unit(7 + 7/12, "feet"),
  25516. weight: math.unit(225, "lb"),
  25517. name: "Back",
  25518. image: {
  25519. source: "./media/characters/epona/back.svg",
  25520. extra: 2546/2408,
  25521. bottom: 44/2589
  25522. }
  25523. },
  25524. genitals: {
  25525. height: math.unit(1.5, "feet"),
  25526. name: "Genitals",
  25527. image: {
  25528. source: "./media/characters/epona/genitals.svg"
  25529. }
  25530. },
  25531. },
  25532. [
  25533. {
  25534. name: "Normal",
  25535. height: math.unit(7 + 7/12, "feet")
  25536. },
  25537. ]
  25538. ))
  25539. characterMakers.push(() => makeCharacter(
  25540. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25541. {
  25542. front: {
  25543. height: math.unit(7, "feet"),
  25544. weight: math.unit(518, "lb"),
  25545. name: "Front",
  25546. image: {
  25547. source: "./media/characters/avia-bloodbourn/front.svg",
  25548. extra: 1466/1350,
  25549. bottom: 65/1527
  25550. }
  25551. },
  25552. },
  25553. [
  25554. ]
  25555. ))
  25556. characterMakers.push(() => makeCharacter(
  25557. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25558. {
  25559. front: {
  25560. height: math.unit(9.35, "feet"),
  25561. weight: math.unit(600, "lb"),
  25562. name: "Front",
  25563. image: {
  25564. source: "./media/characters/amera/front.svg",
  25565. extra: 891/818,
  25566. bottom: 30/922.7
  25567. }
  25568. },
  25569. back: {
  25570. height: math.unit(9.35, "feet"),
  25571. weight: math.unit(600, "lb"),
  25572. name: "Back",
  25573. image: {
  25574. source: "./media/characters/amera/back.svg",
  25575. extra: 876/824,
  25576. bottom: 6.8/884
  25577. }
  25578. },
  25579. dick: {
  25580. height: math.unit(2.14, "feet"),
  25581. name: "Dick",
  25582. image: {
  25583. source: "./media/characters/amera/dick.svg"
  25584. }
  25585. },
  25586. },
  25587. [
  25588. {
  25589. name: "Normal",
  25590. height: math.unit(9.35, "feet"),
  25591. default: true
  25592. },
  25593. ]
  25594. ))
  25595. characterMakers.push(() => makeCharacter(
  25596. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25597. {
  25598. kneeling: {
  25599. height: math.unit(3 + 4/12, "feet"),
  25600. weight: math.unit(90, "lb"),
  25601. name: "Kneeling",
  25602. image: {
  25603. source: "./media/characters/rosewen/kneeling.svg",
  25604. extra: 1835/1571,
  25605. bottom: 27.7/1862
  25606. }
  25607. },
  25608. },
  25609. [
  25610. {
  25611. name: "Normal",
  25612. height: math.unit(3 + 4/12, "feet"),
  25613. default: true
  25614. },
  25615. ]
  25616. ))
  25617. characterMakers.push(() => makeCharacter(
  25618. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25619. {
  25620. front: {
  25621. height: math.unit(5 + 10/12, "feet"),
  25622. weight: math.unit(200, "lb"),
  25623. name: "Front",
  25624. image: {
  25625. source: "./media/characters/sabah/front.svg",
  25626. extra: 849/763,
  25627. bottom: 33.9/881
  25628. }
  25629. },
  25630. },
  25631. [
  25632. {
  25633. name: "Normal",
  25634. height: math.unit(5 + 10/12, "feet"),
  25635. default: true
  25636. },
  25637. ]
  25638. ))
  25639. characterMakers.push(() => makeCharacter(
  25640. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25641. {
  25642. front: {
  25643. height: math.unit(3 + 5/12, "feet"),
  25644. weight: math.unit(40, "kg"),
  25645. name: "Front",
  25646. image: {
  25647. source: "./media/characters/purple-flame/front.svg",
  25648. extra: 1577/1412,
  25649. bottom: 97/1694
  25650. }
  25651. },
  25652. frontDressed: {
  25653. height: math.unit(3 + 5/12, "feet"),
  25654. weight: math.unit(40, "kg"),
  25655. name: "Front (Dressed)",
  25656. image: {
  25657. source: "./media/characters/purple-flame/front-dressed.svg",
  25658. extra: 1577/1412,
  25659. bottom: 97/1694
  25660. }
  25661. },
  25662. headphones: {
  25663. height: math.unit(0.85, "feet"),
  25664. name: "Headphones",
  25665. image: {
  25666. source: "./media/characters/purple-flame/headphones.svg"
  25667. }
  25668. },
  25669. },
  25670. [
  25671. {
  25672. name: "Really Small",
  25673. height: math.unit(5, "cm")
  25674. },
  25675. {
  25676. name: "Micro",
  25677. height: math.unit(1 + 5/12, "feet")
  25678. },
  25679. {
  25680. name: "Normal",
  25681. height: math.unit(3 + 5/12, "feet"),
  25682. default: true
  25683. },
  25684. {
  25685. name: "Minimacro",
  25686. height: math.unit(125, "feet")
  25687. },
  25688. {
  25689. name: "Macro",
  25690. height: math.unit(0.5, "miles")
  25691. },
  25692. {
  25693. name: "Megamacro",
  25694. height: math.unit(50, "miles")
  25695. },
  25696. {
  25697. name: "Gigantic",
  25698. height: math.unit(750, "miles")
  25699. },
  25700. {
  25701. name: "Planetary",
  25702. height: math.unit(15000, "miles")
  25703. },
  25704. ]
  25705. ))
  25706. characterMakers.push(() => makeCharacter(
  25707. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  25708. {
  25709. front: {
  25710. height: math.unit(14, "feet"),
  25711. weight: math.unit(959, "lb"),
  25712. name: "Front",
  25713. image: {
  25714. source: "./media/characters/arsenal/front.svg",
  25715. extra: 2357/2157,
  25716. bottom: 93/2458
  25717. }
  25718. },
  25719. },
  25720. [
  25721. {
  25722. name: "Normal",
  25723. height: math.unit(14, "feet"),
  25724. default: true
  25725. },
  25726. ]
  25727. ))
  25728. characterMakers.push(() => makeCharacter(
  25729. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  25730. {
  25731. front: {
  25732. height: math.unit(6, "feet"),
  25733. weight: math.unit(150, "lb"),
  25734. name: "Front",
  25735. image: {
  25736. source: "./media/characters/adira/front.svg",
  25737. extra: 1078/1029,
  25738. bottom: 87/1166
  25739. }
  25740. },
  25741. },
  25742. [
  25743. {
  25744. name: "Micro",
  25745. height: math.unit(4, "inches"),
  25746. default: true
  25747. },
  25748. {
  25749. name: "Macro",
  25750. height: math.unit(50, "feet")
  25751. },
  25752. ]
  25753. ))
  25754. characterMakers.push(() => makeCharacter(
  25755. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  25756. {
  25757. front: {
  25758. height: math.unit(16, "feet"),
  25759. weight: math.unit(1000, "lb"),
  25760. name: "Front",
  25761. image: {
  25762. source: "./media/characters/grim/front.svg",
  25763. extra: 622/614,
  25764. bottom: 18.1/642
  25765. }
  25766. },
  25767. back: {
  25768. height: math.unit(16, "feet"),
  25769. weight: math.unit(1000, "lb"),
  25770. name: "Back",
  25771. image: {
  25772. source: "./media/characters/grim/back.svg",
  25773. extra: 610.6/602,
  25774. bottom: 40.8/652
  25775. }
  25776. },
  25777. hunched: {
  25778. height: math.unit(9.75, "feet"),
  25779. weight: math.unit(1000, "lb"),
  25780. name: "Hunched",
  25781. image: {
  25782. source: "./media/characters/grim/hunched.svg",
  25783. extra: 304/297,
  25784. bottom: 35.4/394
  25785. }
  25786. },
  25787. },
  25788. [
  25789. {
  25790. name: "Normal",
  25791. height: math.unit(16, "feet"),
  25792. default: true
  25793. },
  25794. ]
  25795. ))
  25796. characterMakers.push(() => makeCharacter(
  25797. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  25798. {
  25799. front: {
  25800. height: math.unit(2.3, "meters"),
  25801. weight: math.unit(300, "lb"),
  25802. name: "Front",
  25803. image: {
  25804. source: "./media/characters/sinja/front-sfw.svg",
  25805. extra: 1393/1294,
  25806. bottom: 70/1463
  25807. }
  25808. },
  25809. frontNsfw: {
  25810. height: math.unit(2.3, "meters"),
  25811. weight: math.unit(300, "lb"),
  25812. name: "Front (NSFW)",
  25813. image: {
  25814. source: "./media/characters/sinja/front-nsfw.svg",
  25815. extra: 1393/1294,
  25816. bottom: 70/1463
  25817. }
  25818. },
  25819. back: {
  25820. height: math.unit(2.3, "meters"),
  25821. weight: math.unit(300, "lb"),
  25822. name: "Back",
  25823. image: {
  25824. source: "./media/characters/sinja/back.svg",
  25825. extra: 1393/1294,
  25826. bottom: 70/1463
  25827. }
  25828. },
  25829. head: {
  25830. height: math.unit(1.771, "feet"),
  25831. name: "Head",
  25832. image: {
  25833. source: "./media/characters/sinja/head.svg"
  25834. }
  25835. },
  25836. slit: {
  25837. height: math.unit(0.8, "feet"),
  25838. name: "Slit",
  25839. image: {
  25840. source: "./media/characters/sinja/slit.svg"
  25841. }
  25842. },
  25843. },
  25844. [
  25845. {
  25846. name: "Normal",
  25847. height: math.unit(2.3, "meters")
  25848. },
  25849. {
  25850. name: "Macro",
  25851. height: math.unit(91, "meters"),
  25852. default: true
  25853. },
  25854. {
  25855. name: "Megamacro",
  25856. height: math.unit(91440, "meters")
  25857. },
  25858. {
  25859. name: "Gigamacro",
  25860. height: math.unit(60960000, "meters")
  25861. },
  25862. {
  25863. name: "Teramacro",
  25864. height: math.unit(9144000000, "meters")
  25865. },
  25866. ]
  25867. ))
  25868. characterMakers.push(() => makeCharacter(
  25869. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  25870. {
  25871. front: {
  25872. height: math.unit(1.7, "meters"),
  25873. weight: math.unit(130, "lb"),
  25874. name: "Front",
  25875. image: {
  25876. source: "./media/characters/kyu/front.svg",
  25877. extra: 415/395,
  25878. bottom: 5/420
  25879. }
  25880. },
  25881. head: {
  25882. height: math.unit(1.75, "feet"),
  25883. name: "Head",
  25884. image: {
  25885. source: "./media/characters/kyu/head.svg"
  25886. }
  25887. },
  25888. foot: {
  25889. height: math.unit(0.81, "feet"),
  25890. name: "Foot",
  25891. image: {
  25892. source: "./media/characters/kyu/foot.svg"
  25893. }
  25894. },
  25895. },
  25896. [
  25897. {
  25898. name: "Normal",
  25899. height: math.unit(1.7, "meters")
  25900. },
  25901. {
  25902. name: "Macro",
  25903. height: math.unit(131, "feet"),
  25904. default: true
  25905. },
  25906. {
  25907. name: "Megamacro",
  25908. height: math.unit(91440, "meters")
  25909. },
  25910. {
  25911. name: "Gigamacro",
  25912. height: math.unit(60960000, "meters")
  25913. },
  25914. {
  25915. name: "Teramacro",
  25916. height: math.unit(9144000000, "meters")
  25917. },
  25918. ]
  25919. ))
  25920. characterMakers.push(() => makeCharacter(
  25921. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  25922. {
  25923. front: {
  25924. height: math.unit(7 + 1/12, "feet"),
  25925. weight: math.unit(250, "lb"),
  25926. name: "Front",
  25927. image: {
  25928. source: "./media/characters/joey/front.svg",
  25929. extra: 1791/1537,
  25930. bottom: 28/1816
  25931. }
  25932. },
  25933. },
  25934. [
  25935. {
  25936. name: "Micro",
  25937. height: math.unit(3, "inches")
  25938. },
  25939. {
  25940. name: "Normal",
  25941. height: math.unit(7 + 1/12, "feet"),
  25942. default: true
  25943. },
  25944. ]
  25945. ))
  25946. characterMakers.push(() => makeCharacter(
  25947. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  25948. {
  25949. front: {
  25950. height: math.unit(165, "cm"),
  25951. weight: math.unit(140, "lb"),
  25952. name: "Front",
  25953. image: {
  25954. source: "./media/characters/sam-evans/front.svg",
  25955. extra: 3417/3230,
  25956. bottom: 41.3/3417
  25957. }
  25958. },
  25959. frontSixTails: {
  25960. height: math.unit(165, "cm"),
  25961. weight: math.unit(140, "lb"),
  25962. name: "Front-six-tails",
  25963. image: {
  25964. source: "./media/characters/sam-evans/front-six-tails.svg",
  25965. extra: 3417/3230,
  25966. bottom: 41.3/3417
  25967. }
  25968. },
  25969. back: {
  25970. height: math.unit(165, "cm"),
  25971. weight: math.unit(140, "lb"),
  25972. name: "Back",
  25973. image: {
  25974. source: "./media/characters/sam-evans/back.svg",
  25975. extra: 3227/3032,
  25976. bottom: 6.8/3234
  25977. }
  25978. },
  25979. face: {
  25980. height: math.unit(0.68, "feet"),
  25981. name: "Face",
  25982. image: {
  25983. source: "./media/characters/sam-evans/face.svg"
  25984. }
  25985. },
  25986. },
  25987. [
  25988. {
  25989. name: "Normal",
  25990. height: math.unit(165, "cm"),
  25991. default: true
  25992. },
  25993. {
  25994. name: "Macro",
  25995. height: math.unit(100, "meters")
  25996. },
  25997. {
  25998. name: "Macro+",
  25999. height: math.unit(800, "meters")
  26000. },
  26001. {
  26002. name: "Macro++",
  26003. height: math.unit(3, "km")
  26004. },
  26005. {
  26006. name: "Macro+++",
  26007. height: math.unit(30, "km")
  26008. },
  26009. ]
  26010. ))
  26011. characterMakers.push(() => makeCharacter(
  26012. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26013. {
  26014. front: {
  26015. height: math.unit(10, "feet"),
  26016. weight: math.unit(750, "lb"),
  26017. name: "Front",
  26018. image: {
  26019. source: "./media/characters/juliet-a/front.svg",
  26020. extra: 1766/1720,
  26021. bottom: 43/1809
  26022. }
  26023. },
  26024. back: {
  26025. height: math.unit(10, "feet"),
  26026. weight: math.unit(750, "lb"),
  26027. name: "Back",
  26028. image: {
  26029. source: "./media/characters/juliet-a/back.svg",
  26030. extra: 1781/1734,
  26031. bottom: 35/1810,
  26032. }
  26033. },
  26034. },
  26035. [
  26036. {
  26037. name: "Normal",
  26038. height: math.unit(10, "feet"),
  26039. default: true
  26040. },
  26041. {
  26042. name: "Dragon Form",
  26043. height: math.unit(250, "feet")
  26044. },
  26045. {
  26046. name: "Macro",
  26047. height: math.unit(1000, "feet")
  26048. },
  26049. {
  26050. name: "Megamacro",
  26051. height: math.unit(10000, "feet")
  26052. }
  26053. ]
  26054. ))
  26055. characterMakers.push(() => makeCharacter(
  26056. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26057. {
  26058. regular: {
  26059. height: math.unit(7 + 3/12, "feet"),
  26060. weight: math.unit(260, "lb"),
  26061. name: "Regular",
  26062. image: {
  26063. source: "./media/characters/wild/regular.svg",
  26064. extra: 97.45/92,
  26065. bottom: 6.8/104.3
  26066. }
  26067. },
  26068. biggums: {
  26069. height: math.unit(8 + 6 /12, "feet"),
  26070. weight: math.unit(425, "lb"),
  26071. name: "Biggums",
  26072. image: {
  26073. source: "./media/characters/wild/biggums.svg",
  26074. extra: 97.45/92,
  26075. bottom: 7.5/132.34
  26076. }
  26077. },
  26078. mawRegular: {
  26079. height: math.unit(1.24, "feet"),
  26080. name: "Maw (Regular)",
  26081. image: {
  26082. source: "./media/characters/wild/maw.svg"
  26083. }
  26084. },
  26085. mawBiggums: {
  26086. height: math.unit(1.47, "feet"),
  26087. name: "Maw (Biggums)",
  26088. image: {
  26089. source: "./media/characters/wild/maw.svg"
  26090. }
  26091. },
  26092. },
  26093. [
  26094. {
  26095. name: "Normal",
  26096. height: math.unit(7 + 3/12, "feet"),
  26097. default: true
  26098. },
  26099. ]
  26100. ))
  26101. characterMakers.push(() => makeCharacter(
  26102. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26103. {
  26104. front: {
  26105. height: math.unit(2.5, "meters"),
  26106. weight: math.unit(200, "kg"),
  26107. name: "Front",
  26108. image: {
  26109. source: "./media/characters/vidar/front.svg",
  26110. extra: 2994/2795,
  26111. bottom: 56/3061
  26112. }
  26113. },
  26114. back: {
  26115. height: math.unit(2.5, "meters"),
  26116. weight: math.unit(200, "kg"),
  26117. name: "Back",
  26118. image: {
  26119. source: "./media/characters/vidar/back.svg",
  26120. extra: 3131/2928,
  26121. bottom: 13.5/3141.5
  26122. }
  26123. },
  26124. feral: {
  26125. height: math.unit(2.5, "meters"),
  26126. weight: math.unit(2000, "kg"),
  26127. name: "Feral",
  26128. image: {
  26129. source: "./media/characters/vidar/feral.svg",
  26130. extra: 2790/1765,
  26131. bottom: 6/2796
  26132. }
  26133. },
  26134. },
  26135. [
  26136. {
  26137. name: "Normal",
  26138. height: math.unit(2.5, "meters"),
  26139. default: true
  26140. },
  26141. {
  26142. name: "Macro",
  26143. height: math.unit(100, "meters")
  26144. },
  26145. ]
  26146. ))
  26147. characterMakers.push(() => makeCharacter(
  26148. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26149. {
  26150. front: {
  26151. height: math.unit(5 + 9/12, "feet"),
  26152. weight: math.unit(120, "lb"),
  26153. name: "Front",
  26154. image: {
  26155. source: "./media/characters/ash/front.svg",
  26156. extra: 2189/1961,
  26157. bottom: 5.2/2194
  26158. }
  26159. },
  26160. },
  26161. [
  26162. {
  26163. name: "Normal",
  26164. height: math.unit(5 + 9/12, "feet"),
  26165. default: true
  26166. },
  26167. ]
  26168. ))
  26169. characterMakers.push(() => makeCharacter(
  26170. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26171. {
  26172. front: {
  26173. height: math.unit(9, "feet"),
  26174. weight: math.unit(10000, "lb"),
  26175. name: "Front",
  26176. image: {
  26177. source: "./media/characters/gygabite/front.svg",
  26178. bottom: 31.7/537.8,
  26179. extra: 505/370
  26180. }
  26181. },
  26182. },
  26183. [
  26184. {
  26185. name: "Normal",
  26186. height: math.unit(9, "feet"),
  26187. default: true
  26188. },
  26189. ]
  26190. ))
  26191. characterMakers.push(() => makeCharacter(
  26192. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26193. {
  26194. front: {
  26195. height: math.unit(12, "feet"),
  26196. weight: math.unit(35000, "lb"),
  26197. name: "Front",
  26198. image: {
  26199. source: "./media/characters/p0tat0/front.svg",
  26200. extra: 1065/921,
  26201. bottom: 55.7/1121.25
  26202. }
  26203. },
  26204. },
  26205. [
  26206. {
  26207. name: "Normal",
  26208. height: math.unit(12, "feet"),
  26209. default: true
  26210. },
  26211. ]
  26212. ))
  26213. characterMakers.push(() => makeCharacter(
  26214. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26215. {
  26216. side: {
  26217. height: math.unit(6.5, "feet"),
  26218. weight: math.unit(800, "lb"),
  26219. name: "Side",
  26220. image: {
  26221. source: "./media/characters/dusk/side.svg",
  26222. extra: 615/373,
  26223. bottom: 53/664
  26224. }
  26225. },
  26226. sitting: {
  26227. height: math.unit(7, "feet"),
  26228. weight: math.unit(800, "lb"),
  26229. name: "Sitting",
  26230. image: {
  26231. source: "./media/characters/dusk/sitting.svg",
  26232. extra: 753/425,
  26233. bottom: 33/774
  26234. }
  26235. },
  26236. head: {
  26237. height: math.unit(6.1, "feet"),
  26238. name: "Head",
  26239. image: {
  26240. source: "./media/characters/dusk/head.svg"
  26241. }
  26242. },
  26243. },
  26244. [
  26245. {
  26246. name: "Normal",
  26247. height: math.unit(7, "feet"),
  26248. default: true
  26249. },
  26250. ]
  26251. ))
  26252. characterMakers.push(() => makeCharacter(
  26253. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26254. {
  26255. front: {
  26256. height: math.unit(15, "feet"),
  26257. weight: math.unit(7000, "lb"),
  26258. name: "Front",
  26259. image: {
  26260. source: "./media/characters/jay-direwolf/front.svg",
  26261. extra: 1810/1732,
  26262. bottom: 66/1892
  26263. }
  26264. },
  26265. },
  26266. [
  26267. {
  26268. name: "Normal",
  26269. height: math.unit(15, "feet"),
  26270. default: true
  26271. },
  26272. ]
  26273. ))
  26274. characterMakers.push(() => makeCharacter(
  26275. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26276. {
  26277. front: {
  26278. height: math.unit(4 + 9/12, "feet"),
  26279. weight: math.unit(130, "lb"),
  26280. name: "Front",
  26281. image: {
  26282. source: "./media/characters/anchovie/front.svg",
  26283. extra: 382/350,
  26284. bottom: 25/409
  26285. }
  26286. },
  26287. back: {
  26288. height: math.unit(4 + 9/12, "feet"),
  26289. weight: math.unit(130, "lb"),
  26290. name: "Back",
  26291. image: {
  26292. source: "./media/characters/anchovie/back.svg",
  26293. extra: 385/352,
  26294. bottom: 16.6/402
  26295. }
  26296. },
  26297. frontDressed: {
  26298. height: math.unit(4 + 9/12, "feet"),
  26299. weight: math.unit(130, "lb"),
  26300. name: "Front (Dressed)",
  26301. image: {
  26302. source: "./media/characters/anchovie/front-dressed.svg",
  26303. extra: 382/350,
  26304. bottom: 25/409
  26305. }
  26306. },
  26307. backDressed: {
  26308. height: math.unit(4 + 9/12, "feet"),
  26309. weight: math.unit(130, "lb"),
  26310. name: "Back (Dressed)",
  26311. image: {
  26312. source: "./media/characters/anchovie/back-dressed.svg",
  26313. extra: 385/352,
  26314. bottom: 16.6/402
  26315. }
  26316. },
  26317. },
  26318. [
  26319. {
  26320. name: "Micro",
  26321. height: math.unit(6.4, "inches")
  26322. },
  26323. {
  26324. name: "Normal",
  26325. height: math.unit(4 + 9/12, "feet"),
  26326. default: true
  26327. },
  26328. ]
  26329. ))
  26330. characterMakers.push(() => makeCharacter(
  26331. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26332. {
  26333. front: {
  26334. height: math.unit(2, "meters"),
  26335. weight: math.unit(180, "lb"),
  26336. name: "Front",
  26337. image: {
  26338. source: "./media/characters/acidrenamon/front.svg",
  26339. extra: 987/890,
  26340. bottom: 22.8/1009
  26341. }
  26342. },
  26343. back: {
  26344. height: math.unit(2, "meters"),
  26345. weight: math.unit(180, "lb"),
  26346. name: "Back",
  26347. image: {
  26348. source: "./media/characters/acidrenamon/back.svg",
  26349. extra: 983/891,
  26350. bottom: 8.4/992
  26351. }
  26352. },
  26353. head: {
  26354. height: math.unit(1.92, "feet"),
  26355. name: "Head",
  26356. image: {
  26357. source: "./media/characters/acidrenamon/head.svg"
  26358. }
  26359. },
  26360. rump: {
  26361. height: math.unit(1.72, "feet"),
  26362. name: "Rump",
  26363. image: {
  26364. source: "./media/characters/acidrenamon/rump.svg"
  26365. }
  26366. },
  26367. tail: {
  26368. height: math.unit(4.2, "feet"),
  26369. name: "Tail",
  26370. image: {
  26371. source: "./media/characters/acidrenamon/tail.svg"
  26372. }
  26373. },
  26374. },
  26375. [
  26376. {
  26377. name: "Normal",
  26378. height: math.unit(2, "meters"),
  26379. default: true
  26380. },
  26381. {
  26382. name: "Minimacro",
  26383. height: math.unit(7, "meters")
  26384. },
  26385. {
  26386. name: "Macro",
  26387. height: math.unit(200, "meters")
  26388. },
  26389. {
  26390. name: "Gigamacro",
  26391. height: math.unit(0.2, "earths")
  26392. },
  26393. ]
  26394. ))
  26395. characterMakers.push(() => makeCharacter(
  26396. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26397. {
  26398. front: {
  26399. height: math.unit(6, "feet"),
  26400. weight: math.unit(150, "lb"),
  26401. name: "Front",
  26402. image: {
  26403. source: "./media/characters/kenzie-lee/front.svg",
  26404. extra: 1525/1465,
  26405. bottom: 45/1570
  26406. }
  26407. },
  26408. side: {
  26409. height: math.unit(6, "feet"),
  26410. weight: math.unit(150, "lb"),
  26411. name: "Side",
  26412. image: {
  26413. source: "./media/characters/kenzie-lee/side.svg",
  26414. extra: 5505/5383,
  26415. bottom: 60/5573
  26416. }
  26417. },
  26418. },
  26419. [
  26420. {
  26421. name: "Normal",
  26422. height: math.unit(152, "feet"),
  26423. default: true
  26424. },
  26425. {
  26426. name: "Megamacro",
  26427. height: math.unit(7, "miles")
  26428. },
  26429. {
  26430. name: "Gigamacro",
  26431. height: math.unit(8000, "miles")
  26432. },
  26433. ]
  26434. ))
  26435. characterMakers.push(() => makeCharacter(
  26436. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26437. {
  26438. side: {
  26439. height: math.unit(6, "feet"),
  26440. weight: math.unit(150, "lb"),
  26441. name: "Side",
  26442. image: {
  26443. source: "./media/characters/withers/side.svg",
  26444. extra: 1830/1728,
  26445. bottom: 96/1927
  26446. }
  26447. },
  26448. },
  26449. [
  26450. {
  26451. name: "Normal",
  26452. height: math.unit(6, "feet")
  26453. },
  26454. {
  26455. name: "Macro",
  26456. height: math.unit(50, "feet")
  26457. },
  26458. {
  26459. name: "Megamacro",
  26460. height: math.unit(15, "miles"),
  26461. default: true
  26462. },
  26463. {
  26464. name: "Megamacro+",
  26465. height: math.unit(100, "km")
  26466. },
  26467. {
  26468. name: "Gigamacro",
  26469. height: math.unit(4750, "miles")
  26470. },
  26471. {
  26472. name: "Gigamacro+",
  26473. height: math.unit(32000, "miles")
  26474. },
  26475. ]
  26476. ))
  26477. characterMakers.push(() => makeCharacter(
  26478. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26479. {
  26480. front: {
  26481. height: math.unit(6 + 7/12, "feet"),
  26482. weight: math.unit(250, "lb"),
  26483. name: "Front",
  26484. image: {
  26485. source: "./media/characters/nemoskii/front.svg",
  26486. extra: 2270/1734,
  26487. bottom: 86/2354
  26488. }
  26489. },
  26490. back: {
  26491. height: math.unit(6 + 7/12, "feet"),
  26492. weight: math.unit(250, "lb"),
  26493. name: "Back",
  26494. image: {
  26495. source: "./media/characters/nemoskii/back.svg",
  26496. extra: 1845/1788,
  26497. bottom: 10.5/1852
  26498. }
  26499. },
  26500. head: {
  26501. height: math.unit(1.31, "feet"),
  26502. name: "Head",
  26503. image: {
  26504. source: "./media/characters/nemoskii/head.svg"
  26505. }
  26506. },
  26507. },
  26508. [
  26509. {
  26510. name: "Normal",
  26511. height: math.unit(6 + 7/12, "feet"),
  26512. default: true
  26513. },
  26514. ]
  26515. ))
  26516. characterMakers.push(() => makeCharacter(
  26517. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26518. {
  26519. front: {
  26520. height: math.unit(1, "mile"),
  26521. weight: math.unit(265261.9, "lb"),
  26522. name: "Front",
  26523. image: {
  26524. source: "./media/characters/shui/front.svg",
  26525. extra: 1633/1564,
  26526. bottom: 91.5/1726
  26527. }
  26528. },
  26529. },
  26530. [
  26531. {
  26532. name: "Macro",
  26533. height: math.unit(1, "mile"),
  26534. default: true
  26535. },
  26536. ]
  26537. ))
  26538. characterMakers.push(() => makeCharacter(
  26539. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26540. {
  26541. front: {
  26542. height: math.unit(12 + 6/12, "feet"),
  26543. weight: math.unit(1342, "lb"),
  26544. name: "Front",
  26545. image: {
  26546. source: "./media/characters/arokh-takakura/front.svg",
  26547. extra: 1089/1043,
  26548. bottom: 77.4/1176.7
  26549. }
  26550. },
  26551. back: {
  26552. height: math.unit(12 + 6/12, "feet"),
  26553. weight: math.unit(1342, "lb"),
  26554. name: "Back",
  26555. image: {
  26556. source: "./media/characters/arokh-takakura/back.svg",
  26557. extra: 1046/1019,
  26558. bottom: 102/1150
  26559. }
  26560. },
  26561. },
  26562. [
  26563. {
  26564. name: "Big",
  26565. height: math.unit(12 + 6/12, "feet"),
  26566. default: true
  26567. },
  26568. ]
  26569. ))
  26570. characterMakers.push(() => makeCharacter(
  26571. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  26572. {
  26573. front: {
  26574. height: math.unit(5 + 6/12, "feet"),
  26575. weight: math.unit(150, "lb"),
  26576. name: "Front",
  26577. image: {
  26578. source: "./media/characters/theo/front.svg",
  26579. extra: 1184/1131,
  26580. bottom: 7.4/1191
  26581. }
  26582. },
  26583. },
  26584. [
  26585. {
  26586. name: "Micro",
  26587. height: math.unit(5, "inches")
  26588. },
  26589. {
  26590. name: "Normal",
  26591. height: math.unit(5 + 6/12, "feet"),
  26592. default: true
  26593. },
  26594. ]
  26595. ))
  26596. characterMakers.push(() => makeCharacter(
  26597. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  26598. {
  26599. front: {
  26600. height: math.unit(5 + 9/12, "feet"),
  26601. weight: math.unit(130, "lb"),
  26602. name: "Front",
  26603. image: {
  26604. source: "./media/characters/cecelia-swift/front.svg",
  26605. extra: 502/484,
  26606. bottom: 23/523
  26607. }
  26608. },
  26609. back: {
  26610. height: math.unit(5 + 9/12, "feet"),
  26611. weight: math.unit(130, "lb"),
  26612. name: "Back",
  26613. image: {
  26614. source: "./media/characters/cecelia-swift/back.svg",
  26615. extra: 499/485,
  26616. bottom: 12/511
  26617. }
  26618. },
  26619. head: {
  26620. height: math.unit(0.90, "feet"),
  26621. name: "Head",
  26622. image: {
  26623. source: "./media/characters/cecelia-swift/head.svg"
  26624. }
  26625. },
  26626. rump: {
  26627. height: math.unit(1.75, "feet"),
  26628. name: "Rump",
  26629. image: {
  26630. source: "./media/characters/cecelia-swift/rump.svg"
  26631. }
  26632. },
  26633. },
  26634. [
  26635. {
  26636. name: "Normal",
  26637. height: math.unit(5 + 9/12, "feet"),
  26638. default: true
  26639. },
  26640. {
  26641. name: "Big",
  26642. height: math.unit(50, "feet")
  26643. },
  26644. {
  26645. name: "Macro",
  26646. height: math.unit(100, "feet")
  26647. },
  26648. {
  26649. name: "Macro+",
  26650. height: math.unit(500, "feet")
  26651. },
  26652. {
  26653. name: "Macro++",
  26654. height: math.unit(1000, "feet")
  26655. },
  26656. ]
  26657. ))
  26658. characterMakers.push(() => makeCharacter(
  26659. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  26660. {
  26661. front: {
  26662. height: math.unit(6, "feet"),
  26663. weight: math.unit(150, "lb"),
  26664. name: "Front",
  26665. image: {
  26666. source: "./media/characters/kaunan/front.svg",
  26667. extra: 2890/2523,
  26668. bottom: 49/2939
  26669. }
  26670. },
  26671. },
  26672. [
  26673. {
  26674. name: "Macro",
  26675. height: math.unit(150, "feet"),
  26676. default: true
  26677. },
  26678. ]
  26679. ))
  26680. characterMakers.push(() => makeCharacter(
  26681. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  26682. {
  26683. front: {
  26684. height: math.unit(175, "cm"),
  26685. weight: math.unit(60, "kg"),
  26686. name: "Front",
  26687. image: {
  26688. source: "./media/characters/fei/front.svg",
  26689. extra: 2581/2400,
  26690. bottom: 82.2/2663
  26691. }
  26692. },
  26693. },
  26694. [
  26695. {
  26696. name: "Mortal",
  26697. height: math.unit(175, "cm")
  26698. },
  26699. {
  26700. name: "Normal",
  26701. height: math.unit(3500, "m"),
  26702. default: true
  26703. },
  26704. {
  26705. name: "Stroll",
  26706. height: math.unit(17.5, "km")
  26707. },
  26708. {
  26709. name: "Showoff",
  26710. height: math.unit(175, "km")
  26711. },
  26712. ]
  26713. ))
  26714. characterMakers.push(() => makeCharacter(
  26715. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  26716. {
  26717. front: {
  26718. height: math.unit(7, "feet"),
  26719. weight: math.unit(1000, "kg"),
  26720. name: "Front",
  26721. image: {
  26722. source: "./media/characters/edrax/front.svg",
  26723. extra: 2838/2550,
  26724. bottom: 130/2968
  26725. }
  26726. },
  26727. },
  26728. [
  26729. {
  26730. name: "Small",
  26731. height: math.unit(7, "feet")
  26732. },
  26733. {
  26734. name: "Normal",
  26735. height: math.unit(1500, "meters")
  26736. },
  26737. {
  26738. name: "Mega",
  26739. height: math.unit(12000000, "km"),
  26740. default: true
  26741. },
  26742. {
  26743. name: "Megamacro",
  26744. height: math.unit(10600000, "lightyears")
  26745. },
  26746. {
  26747. name: "Hypermacro",
  26748. height: math.unit(256, "yottameters")
  26749. },
  26750. ]
  26751. ))
  26752. characterMakers.push(() => makeCharacter(
  26753. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  26754. {
  26755. front: {
  26756. height: math.unit(10, "feet"),
  26757. weight: math.unit(750, "lb"),
  26758. name: "Front",
  26759. image: {
  26760. source: "./media/characters/clove/front.svg",
  26761. extra: 2031/1860,
  26762. bottom: 47.8/2080
  26763. }
  26764. },
  26765. back: {
  26766. height: math.unit(10, "feet"),
  26767. weight: math.unit(750, "lb"),
  26768. name: "Back",
  26769. image: {
  26770. source: "./media/characters/clove/back.svg",
  26771. extra: 2025/1859,
  26772. bottom: 46/2071
  26773. }
  26774. },
  26775. },
  26776. [
  26777. {
  26778. name: "Normal",
  26779. height: math.unit(10, "feet")
  26780. },
  26781. ]
  26782. ))
  26783. characterMakers.push(() => makeCharacter(
  26784. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  26785. {
  26786. front: {
  26787. height: math.unit(4, "feet"),
  26788. weight: math.unit(50, "lb"),
  26789. name: "Front",
  26790. image: {
  26791. source: "./media/characters/alex-rabbit/front.svg",
  26792. extra: 507/458,
  26793. bottom: 18.5/527
  26794. }
  26795. },
  26796. back: {
  26797. height: math.unit(4, "feet"),
  26798. weight: math.unit(50, "lb"),
  26799. name: "Back",
  26800. image: {
  26801. source: "./media/characters/alex-rabbit/back.svg",
  26802. extra: 502/460,
  26803. bottom: 18.9/521
  26804. }
  26805. },
  26806. },
  26807. [
  26808. {
  26809. name: "Normal",
  26810. height: math.unit(4, "feet"),
  26811. default: true
  26812. },
  26813. ]
  26814. ))
  26815. characterMakers.push(() => makeCharacter(
  26816. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  26817. {
  26818. front: {
  26819. height: math.unit(1 + 3 / 12, "feet"),
  26820. weight: math.unit(80, "lb"),
  26821. name: "Front",
  26822. image: {
  26823. source: "./media/characters/zander-rose/front.svg",
  26824. extra: 916 / 797,
  26825. bottom: 17 / 933
  26826. }
  26827. },
  26828. back: {
  26829. height: math.unit(1 + 3 / 12, "feet"),
  26830. weight: math.unit(80, "lb"),
  26831. name: "Back",
  26832. image: {
  26833. source: "./media/characters/zander-rose/back.svg",
  26834. extra: 903/779,
  26835. bottom: 31/934
  26836. }
  26837. },
  26838. },
  26839. [
  26840. {
  26841. name: "Normal",
  26842. height: math.unit(1 + 3 / 12, "feet"),
  26843. default: true
  26844. },
  26845. ]
  26846. ))
  26847. characterMakers.push(() => makeCharacter(
  26848. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  26849. {
  26850. anthro: {
  26851. height: math.unit(6, "feet"),
  26852. weight: math.unit(150, "lb"),
  26853. name: "Anthro",
  26854. image: {
  26855. source: "./media/characters/razz/anthro.svg",
  26856. extra: 1437/1343,
  26857. bottom: 48/1485
  26858. }
  26859. },
  26860. feral: {
  26861. height: math.unit(6, "feet"),
  26862. weight: math.unit(150, "lb"),
  26863. name: "Feral",
  26864. image: {
  26865. source: "./media/characters/razz/feral.svg",
  26866. extra: 2569/1385,
  26867. bottom: 95/2664
  26868. }
  26869. },
  26870. },
  26871. [
  26872. {
  26873. name: "Normal",
  26874. height: math.unit(6, "feet"),
  26875. default: true
  26876. },
  26877. ]
  26878. ))
  26879. characterMakers.push(() => makeCharacter(
  26880. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  26881. {
  26882. front: {
  26883. height: math.unit(9 + 4/12, "feet"),
  26884. weight: math.unit(500, "lb"),
  26885. name: "Front",
  26886. image: {
  26887. source: "./media/characters/morrigan/front.svg",
  26888. extra: 2707/2579,
  26889. bottom: 156/2863
  26890. }
  26891. },
  26892. },
  26893. [
  26894. {
  26895. name: "Normal",
  26896. height: math.unit(9 + 4/12, "feet"),
  26897. default: true
  26898. },
  26899. ]
  26900. ))
  26901. characterMakers.push(() => makeCharacter(
  26902. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  26903. {
  26904. front: {
  26905. height: math.unit(5, "stories"),
  26906. weight: math.unit(4000, "lb"),
  26907. name: "Front",
  26908. image: {
  26909. source: "./media/characters/jenene/front.svg",
  26910. extra: 1780/1710,
  26911. bottom: 57/1837
  26912. }
  26913. },
  26914. },
  26915. [
  26916. {
  26917. name: "Normal",
  26918. height: math.unit(5, "stories"),
  26919. default: true
  26920. },
  26921. ]
  26922. ))
  26923. characterMakers.push(() => makeCharacter(
  26924. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  26925. {
  26926. front: {
  26927. height: math.unit(6, "feet"),
  26928. weight: math.unit(150, "lb"),
  26929. name: "Front",
  26930. image: {
  26931. source: "./media/characters/vix-archaser/front.svg",
  26932. extra: 2767/2562,
  26933. bottom: 36/2803
  26934. }
  26935. },
  26936. },
  26937. [
  26938. {
  26939. name: "Micro",
  26940. height: math.unit(1, "foot")
  26941. },
  26942. {
  26943. name: "Normal",
  26944. height: math.unit(6 + 5/12, "feet")
  26945. },
  26946. {
  26947. name: "Minimacro",
  26948. height: math.unit(500, "feet")
  26949. },
  26950. {
  26951. name: "Macro",
  26952. height: math.unit(4, "miles")
  26953. },
  26954. {
  26955. name: "Megamacro",
  26956. height: math.unit(250, "miles"),
  26957. default: true
  26958. },
  26959. {
  26960. name: "Gigamacro",
  26961. height: math.unit(1, "universe")
  26962. },
  26963. ]
  26964. ))
  26965. //characters
  26966. function makeCharacters() {
  26967. const results = [];
  26968. characterMakers.forEach(character => {
  26969. results.push(character());
  26970. });
  26971. return results;
  26972. }