less copy protection, more size visualization
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

25531 строка
634 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. }
  1272. //species
  1273. function getSpeciesInfo(speciesList) {
  1274. let result = new Set();
  1275. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1276. result.add(entry)
  1277. });
  1278. return Array.from(result);
  1279. };
  1280. function getSpeciesInfoHelper(species) {
  1281. if (!speciesData[species]) {
  1282. console.warn(species + " doesn't exist");
  1283. return [];
  1284. }
  1285. if (speciesData[species].parents) {
  1286. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1287. } else {
  1288. return [species];
  1289. }
  1290. }
  1291. characterMakers.push(() => makeCharacter(
  1292. {
  1293. name: "Fen",
  1294. species: ["crux"],
  1295. description: {
  1296. title: "Bio",
  1297. text: "Very furry. Sheds on everything."
  1298. },
  1299. tags: [
  1300. "anthro",
  1301. "goo"
  1302. ]
  1303. },
  1304. {
  1305. back: {
  1306. height: math.unit(2.2428, "meter"),
  1307. weight: math.unit(124.738, "kg"),
  1308. name: "Back",
  1309. image: {
  1310. source: "./media/characters/fen/back.svg",
  1311. extra: 1025 / 935,
  1312. bottom: 0.01
  1313. },
  1314. info: {
  1315. description: {
  1316. mode: "append",
  1317. text: "\n\nHe is not currently looking at you."
  1318. }
  1319. }
  1320. },
  1321. full: {
  1322. height: math.unit(1.34, "meter"),
  1323. weight: math.unit(225, "kg"),
  1324. name: "Full",
  1325. image: {
  1326. source: "./media/characters/fen/full.svg"
  1327. },
  1328. info: {
  1329. description: {
  1330. mode: "append",
  1331. text: "\n\nMunch."
  1332. }
  1333. }
  1334. },
  1335. kneeling: {
  1336. height: math.unit(5.4, "feet"),
  1337. weight: math.unit(124.738, "kg"),
  1338. name: "Kneeling",
  1339. image: {
  1340. source: "./media/characters/fen/kneeling.svg",
  1341. extra: 563 / 507
  1342. }
  1343. },
  1344. goo: {
  1345. height: math.unit(2.8, "feet"),
  1346. weight: math.unit(125, "kg"),
  1347. capacity: math.unit(1, "people"),
  1348. name: "Goo",
  1349. image: {
  1350. source: "./media/characters/fen/goo.svg",
  1351. bottom: 116 / 613
  1352. }
  1353. },
  1354. lounging: {
  1355. height: math.unit(6.5, "feet"),
  1356. weight: math.unit(125, "kg"),
  1357. name: "Lounging",
  1358. image: {
  1359. source: "./media/characters/fen/lounging.svg"
  1360. }
  1361. },
  1362. },
  1363. [
  1364. {
  1365. name: "Normal",
  1366. height: math.unit(2.2428, "meter")
  1367. },
  1368. {
  1369. name: "Big",
  1370. height: math.unit(12, "feet")
  1371. },
  1372. {
  1373. name: "Minimacro",
  1374. height: math.unit(40, "feet"),
  1375. default: true,
  1376. info: {
  1377. description: {
  1378. mode: "append",
  1379. text: "\n\nTOO DAMN BIG"
  1380. }
  1381. }
  1382. },
  1383. {
  1384. name: "Macro",
  1385. height: math.unit(100, "feet"),
  1386. info: {
  1387. description: {
  1388. mode: "append",
  1389. text: "\n\nTOO DAMN BIG"
  1390. }
  1391. }
  1392. },
  1393. {
  1394. name: "Macro+",
  1395. height: math.unit(300, "feet")
  1396. },
  1397. {
  1398. name: "Megamacro",
  1399. height: math.unit(2, "miles")
  1400. }
  1401. ]
  1402. ))
  1403. characterMakers.push(() => makeCharacter(
  1404. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1405. {
  1406. front: {
  1407. height: math.unit(183, "cm"),
  1408. weight: math.unit(80, "kg"),
  1409. name: "Front",
  1410. image: {
  1411. source: "./media/characters/sofia-fluttertail/front.svg",
  1412. bottom: 0.01,
  1413. extra: 2154 / 2081
  1414. }
  1415. },
  1416. frontAlt: {
  1417. height: math.unit(183, "cm"),
  1418. weight: math.unit(80, "kg"),
  1419. name: "Front (alt)",
  1420. image: {
  1421. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1422. }
  1423. },
  1424. back: {
  1425. height: math.unit(183, "cm"),
  1426. weight: math.unit(80, "kg"),
  1427. name: "Back",
  1428. image: {
  1429. source: "./media/characters/sofia-fluttertail/back.svg"
  1430. }
  1431. },
  1432. kneeling: {
  1433. height: math.unit(125, "cm"),
  1434. weight: math.unit(80, "kg"),
  1435. name: "Kneeling",
  1436. image: {
  1437. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1438. extra: 1033 / 977,
  1439. bottom: 23.7 / 1057
  1440. }
  1441. },
  1442. maw: {
  1443. height: math.unit(183 / 5, "cm"),
  1444. name: "Maw",
  1445. image: {
  1446. source: "./media/characters/sofia-fluttertail/maw.svg"
  1447. }
  1448. },
  1449. mawcloseup: {
  1450. height: math.unit(183 / 5 * 0.41, "cm"),
  1451. name: "Maw (Closeup)",
  1452. image: {
  1453. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1454. }
  1455. },
  1456. },
  1457. [
  1458. {
  1459. name: "Normal",
  1460. height: math.unit(1.83, "meter")
  1461. },
  1462. {
  1463. name: "Size Thief",
  1464. height: math.unit(18, "feet")
  1465. },
  1466. {
  1467. name: "50 Foot Collie",
  1468. height: math.unit(50, "feet")
  1469. },
  1470. {
  1471. name: "Macro",
  1472. height: math.unit(96, "feet"),
  1473. default: true
  1474. },
  1475. {
  1476. name: "Megamerger",
  1477. height: math.unit(650, "feet")
  1478. },
  1479. ]
  1480. ))
  1481. characterMakers.push(() => makeCharacter(
  1482. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1483. {
  1484. front: {
  1485. height: math.unit(7, "feet"),
  1486. weight: math.unit(100, "kg"),
  1487. name: "Front",
  1488. image: {
  1489. source: "./media/characters/march/front.svg",
  1490. extra: 1,
  1491. bottom: 0.015
  1492. }
  1493. },
  1494. foot: {
  1495. height: math.unit(0.9, "feet"),
  1496. name: "Foot",
  1497. image: {
  1498. source: "./media/characters/march/foot.svg"
  1499. }
  1500. },
  1501. },
  1502. [
  1503. {
  1504. name: "Normal",
  1505. height: math.unit(7.9, "feet")
  1506. },
  1507. {
  1508. name: "Macro",
  1509. height: math.unit(220, "meters")
  1510. },
  1511. {
  1512. name: "Megamacro",
  1513. height: math.unit(2.98, "km"),
  1514. default: true
  1515. },
  1516. {
  1517. name: "Gigamacro",
  1518. height: math.unit(15963, "km")
  1519. },
  1520. {
  1521. name: "Teramacro",
  1522. height: math.unit(2980000000, "km")
  1523. },
  1524. {
  1525. name: "Examacro",
  1526. height: math.unit(250, "parsecs")
  1527. },
  1528. ]
  1529. ))
  1530. characterMakers.push(() => makeCharacter(
  1531. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1532. {
  1533. front: {
  1534. height: math.unit(6, "feet"),
  1535. weight: math.unit(60, "kg"),
  1536. name: "Front",
  1537. image: {
  1538. source: "./media/characters/noir/front.svg",
  1539. extra: 1,
  1540. bottom: 0.032
  1541. }
  1542. },
  1543. },
  1544. [
  1545. {
  1546. name: "Normal",
  1547. height: math.unit(6.6, "feet")
  1548. },
  1549. {
  1550. name: "Macro",
  1551. height: math.unit(500, "feet")
  1552. },
  1553. {
  1554. name: "Megamacro",
  1555. height: math.unit(2.5, "km"),
  1556. default: true
  1557. },
  1558. {
  1559. name: "Gigamacro",
  1560. height: math.unit(22500, "km")
  1561. },
  1562. {
  1563. name: "Teramacro",
  1564. height: math.unit(2500000000, "km")
  1565. },
  1566. {
  1567. name: "Examacro",
  1568. height: math.unit(200, "parsecs")
  1569. },
  1570. ]
  1571. ))
  1572. characterMakers.push(() => makeCharacter(
  1573. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1574. {
  1575. front: {
  1576. height: math.unit(7, "feet"),
  1577. weight: math.unit(100, "kg"),
  1578. name: "Front",
  1579. image: {
  1580. source: "./media/characters/okuri/front.svg",
  1581. extra: 1,
  1582. bottom: 0.037
  1583. }
  1584. },
  1585. back: {
  1586. height: math.unit(7, "feet"),
  1587. weight: math.unit(100, "kg"),
  1588. name: "Back",
  1589. image: {
  1590. source: "./media/characters/okuri/back.svg",
  1591. extra: 1,
  1592. bottom: 0.007
  1593. }
  1594. },
  1595. },
  1596. [
  1597. {
  1598. name: "Megamacro",
  1599. height: math.unit(100, "miles"),
  1600. default: true
  1601. },
  1602. ]
  1603. ))
  1604. characterMakers.push(() => makeCharacter(
  1605. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1606. {
  1607. front: {
  1608. height: math.unit(7, "feet"),
  1609. weight: math.unit(100, "kg"),
  1610. name: "Front",
  1611. image: {
  1612. source: "./media/characters/manny/front.svg",
  1613. extra: 1,
  1614. bottom: 0.06
  1615. }
  1616. },
  1617. back: {
  1618. height: math.unit(7, "feet"),
  1619. weight: math.unit(100, "kg"),
  1620. name: "Back",
  1621. image: {
  1622. source: "./media/characters/manny/back.svg",
  1623. extra: 1,
  1624. bottom: 0.014
  1625. }
  1626. },
  1627. },
  1628. [
  1629. {
  1630. name: "Normal",
  1631. height: math.unit(7, "feet"),
  1632. },
  1633. {
  1634. name: "Macro",
  1635. height: math.unit(78, "feet"),
  1636. default: true
  1637. },
  1638. {
  1639. name: "Macro+",
  1640. height: math.unit(300, "meters")
  1641. },
  1642. {
  1643. name: "Macro++",
  1644. height: math.unit(2400, "meters")
  1645. },
  1646. {
  1647. name: "Megamacro",
  1648. height: math.unit(5167, "meters")
  1649. },
  1650. {
  1651. name: "Gigamacro",
  1652. height: math.unit(41769, "miles")
  1653. },
  1654. ]
  1655. ))
  1656. characterMakers.push(() => makeCharacter(
  1657. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1658. {
  1659. front: {
  1660. height: math.unit(7, "feet"),
  1661. weight: math.unit(100, "kg"),
  1662. name: "Front",
  1663. image: {
  1664. source: "./media/characters/adake/front-1.svg"
  1665. }
  1666. },
  1667. frontAlt: {
  1668. height: math.unit(7, "feet"),
  1669. weight: math.unit(100, "kg"),
  1670. name: "Front (Alt)",
  1671. image: {
  1672. source: "./media/characters/adake/front-2.svg",
  1673. extra: 1,
  1674. bottom: 0.01
  1675. }
  1676. },
  1677. back: {
  1678. height: math.unit(7, "feet"),
  1679. weight: math.unit(100, "kg"),
  1680. name: "Back",
  1681. image: {
  1682. source: "./media/characters/adake/back.svg",
  1683. }
  1684. },
  1685. kneel: {
  1686. height: math.unit(5.385, "feet"),
  1687. weight: math.unit(100, "kg"),
  1688. name: "Kneeling",
  1689. image: {
  1690. source: "./media/characters/adake/kneel.svg",
  1691. bottom: 0.052
  1692. }
  1693. },
  1694. },
  1695. [
  1696. {
  1697. name: "Normal",
  1698. height: math.unit(7, "feet"),
  1699. },
  1700. {
  1701. name: "Macro",
  1702. height: math.unit(78, "feet"),
  1703. default: true
  1704. },
  1705. {
  1706. name: "Macro+",
  1707. height: math.unit(300, "meters")
  1708. },
  1709. {
  1710. name: "Macro++",
  1711. height: math.unit(2400, "meters")
  1712. },
  1713. {
  1714. name: "Megamacro",
  1715. height: math.unit(5167, "meters")
  1716. },
  1717. {
  1718. name: "Gigamacro",
  1719. height: math.unit(41769, "miles")
  1720. },
  1721. ]
  1722. ))
  1723. characterMakers.push(() => makeCharacter(
  1724. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1725. {
  1726. front: {
  1727. height: math.unit(1.65, "meters"),
  1728. weight: math.unit(50, "kg"),
  1729. name: "Front",
  1730. image: {
  1731. source: "./media/characters/elijah/front.svg",
  1732. extra: 858 / 830,
  1733. bottom: 95.5 / 953.8559
  1734. }
  1735. },
  1736. back: {
  1737. height: math.unit(1.65, "meters"),
  1738. weight: math.unit(50, "kg"),
  1739. name: "Back",
  1740. image: {
  1741. source: "./media/characters/elijah/back.svg",
  1742. extra: 895 / 850,
  1743. bottom: 5.3 / 897.956
  1744. }
  1745. },
  1746. frontNsfw: {
  1747. height: math.unit(1.65, "meters"),
  1748. weight: math.unit(50, "kg"),
  1749. name: "Front (NSFW)",
  1750. image: {
  1751. source: "./media/characters/elijah/front-nsfw.svg",
  1752. extra: 858 / 830,
  1753. bottom: 95.5 / 953.8559
  1754. }
  1755. },
  1756. backNsfw: {
  1757. height: math.unit(1.65, "meters"),
  1758. weight: math.unit(50, "kg"),
  1759. name: "Back (NSFW)",
  1760. image: {
  1761. source: "./media/characters/elijah/back-nsfw.svg",
  1762. extra: 895 / 850,
  1763. bottom: 5.3 / 897.956
  1764. }
  1765. },
  1766. dick: {
  1767. height: math.unit(1, "feet"),
  1768. name: "Dick",
  1769. image: {
  1770. source: "./media/characters/elijah/dick.svg"
  1771. }
  1772. },
  1773. beakOpen: {
  1774. height: math.unit(1.25, "feet"),
  1775. name: "Beak (Open)",
  1776. image: {
  1777. source: "./media/characters/elijah/beak-open.svg"
  1778. }
  1779. },
  1780. beakShut: {
  1781. height: math.unit(1.25, "feet"),
  1782. name: "Beak (Shut)",
  1783. image: {
  1784. source: "./media/characters/elijah/beak-shut.svg"
  1785. }
  1786. },
  1787. footFlexing: {
  1788. height: math.unit(1.61, "feet"),
  1789. name: "Foot (Flexing)",
  1790. image: {
  1791. source: "./media/characters/elijah/foot-flexing.svg"
  1792. }
  1793. },
  1794. footStepping: {
  1795. height: math.unit(1.44, "feet"),
  1796. name: "Foot (Stepping)",
  1797. image: {
  1798. source: "./media/characters/elijah/foot-stepping.svg"
  1799. }
  1800. },
  1801. plantigradeLeg: {
  1802. height: math.unit(2.34, "feet"),
  1803. name: "Plantigrade Leg",
  1804. image: {
  1805. source: "./media/characters/elijah/plantigrade-leg.svg"
  1806. }
  1807. },
  1808. plantigradeFootLeft: {
  1809. height: math.unit(0.9, "feet"),
  1810. name: "Plantigrade Foot (Left)",
  1811. image: {
  1812. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1813. }
  1814. },
  1815. plantigradeFootRight: {
  1816. height: math.unit(0.9, "feet"),
  1817. name: "Plantigrade Foot (Right)",
  1818. image: {
  1819. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1820. }
  1821. },
  1822. },
  1823. [
  1824. {
  1825. name: "Normal",
  1826. height: math.unit(1.65, "meters")
  1827. },
  1828. {
  1829. name: "Macro",
  1830. height: math.unit(55, "meters"),
  1831. default: true
  1832. },
  1833. {
  1834. name: "Macro+",
  1835. height: math.unit(105, "meters")
  1836. },
  1837. ]
  1838. ))
  1839. characterMakers.push(() => makeCharacter(
  1840. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1841. {
  1842. front: {
  1843. height: math.unit(11, "feet"),
  1844. weight: math.unit(80, "kg"),
  1845. name: "Front",
  1846. image: {
  1847. source: "./media/characters/rai/front.svg",
  1848. extra: 1,
  1849. bottom: 0.03
  1850. }
  1851. },
  1852. side: {
  1853. height: math.unit(11, "feet"),
  1854. weight: math.unit(80, "kg"),
  1855. name: "Side",
  1856. image: {
  1857. source: "./media/characters/rai/side.svg"
  1858. }
  1859. },
  1860. back: {
  1861. height: math.unit(11, "feet"),
  1862. weight: math.unit(80, "lb"),
  1863. name: "Back",
  1864. image: {
  1865. source: "./media/characters/rai/back.svg",
  1866. extra: 1,
  1867. bottom: 0.01
  1868. }
  1869. },
  1870. feral: {
  1871. height: math.unit(11, "feet"),
  1872. weight: math.unit(800, "lb"),
  1873. name: "Feral",
  1874. image: {
  1875. source: "./media/characters/rai/feral.svg",
  1876. extra: 1050 / 659,
  1877. bottom: 0.07
  1878. }
  1879. },
  1880. dragon: {
  1881. height: math.unit(23, "feet"),
  1882. weight: math.unit(50000, "lb"),
  1883. name: "Dragon",
  1884. image: {
  1885. source: "./media/characters/rai/dragon.svg",
  1886. extra: 2498 / 2030,
  1887. bottom: 85.2 / 2584
  1888. }
  1889. },
  1890. maw: {
  1891. height: math.unit(6 / 3.81416, "feet"),
  1892. name: "Maw",
  1893. image: {
  1894. source: "./media/characters/rai/maw.svg"
  1895. }
  1896. },
  1897. },
  1898. [
  1899. {
  1900. name: "Normal",
  1901. height: math.unit(11, "feet")
  1902. },
  1903. {
  1904. name: "Macro",
  1905. height: math.unit(302, "feet"),
  1906. default: true
  1907. },
  1908. ]
  1909. ))
  1910. characterMakers.push(() => makeCharacter(
  1911. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  1912. {
  1913. frontDressed: {
  1914. height: math.unit(216, "feet"),
  1915. weight: math.unit(7000000, "lb"),
  1916. name: "Front (Dressed)",
  1917. image: {
  1918. source: "./media/characters/jazzy/front-dressed.svg",
  1919. extra: 2738 / 2651,
  1920. bottom: 41.8 / 2786
  1921. }
  1922. },
  1923. backDressed: {
  1924. height: math.unit(216, "feet"),
  1925. weight: math.unit(7000000, "lb"),
  1926. name: "Back (Dressed)",
  1927. image: {
  1928. source: "./media/characters/jazzy/back-dressed.svg",
  1929. extra: 2775 / 2673,
  1930. bottom: 36.8 / 2817
  1931. }
  1932. },
  1933. front: {
  1934. height: math.unit(216, "feet"),
  1935. weight: math.unit(7000000, "lb"),
  1936. name: "Front",
  1937. image: {
  1938. source: "./media/characters/jazzy/front.svg",
  1939. extra: 2738 / 2651,
  1940. bottom: 41.8 / 2786
  1941. }
  1942. },
  1943. back: {
  1944. height: math.unit(216, "feet"),
  1945. weight: math.unit(7000000, "lb"),
  1946. name: "Back",
  1947. image: {
  1948. source: "./media/characters/jazzy/back.svg",
  1949. extra: 2775 / 2673,
  1950. bottom: 36.8 / 2817
  1951. }
  1952. },
  1953. maw: {
  1954. height: math.unit(20, "feet"),
  1955. name: "Maw",
  1956. image: {
  1957. source: "./media/characters/jazzy/maw.svg"
  1958. }
  1959. },
  1960. paws: {
  1961. height: math.unit(27.5, "feet"),
  1962. name: "Paws",
  1963. image: {
  1964. source: "./media/characters/jazzy/paws.svg"
  1965. }
  1966. },
  1967. eye: {
  1968. height: math.unit(4.4, "feet"),
  1969. name: "Eye",
  1970. image: {
  1971. source: "./media/characters/jazzy/eye.svg"
  1972. }
  1973. },
  1974. droneOffense: {
  1975. height: math.unit(9.5, "inches"),
  1976. name: "Drone (Offense)",
  1977. image: {
  1978. source: "./media/characters/jazzy/drone-offense.svg"
  1979. }
  1980. },
  1981. droneRecon: {
  1982. height: math.unit(9.5, "inches"),
  1983. name: "Drone (Recon)",
  1984. image: {
  1985. source: "./media/characters/jazzy/drone-recon.svg"
  1986. }
  1987. },
  1988. droneDefense: {
  1989. height: math.unit(9.5, "inches"),
  1990. name: "Drone (Defense)",
  1991. image: {
  1992. source: "./media/characters/jazzy/drone-defense.svg"
  1993. }
  1994. },
  1995. },
  1996. [
  1997. {
  1998. name: "Macro",
  1999. height: math.unit(216, "feet"),
  2000. default: true
  2001. },
  2002. ]
  2003. ))
  2004. characterMakers.push(() => makeCharacter(
  2005. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2006. {
  2007. front: {
  2008. height: math.unit(7, "feet"),
  2009. weight: math.unit(80, "kg"),
  2010. name: "Front",
  2011. image: {
  2012. source: "./media/characters/flamm/front.svg",
  2013. extra: 1794 / 1677,
  2014. bottom: 31.7 / 1828.5
  2015. }
  2016. },
  2017. },
  2018. [
  2019. {
  2020. name: "Normal",
  2021. height: math.unit(9.5, "feet")
  2022. },
  2023. {
  2024. name: "Macro",
  2025. height: math.unit(200, "feet"),
  2026. default: true
  2027. },
  2028. ]
  2029. ))
  2030. characterMakers.push(() => makeCharacter(
  2031. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2032. {
  2033. front: {
  2034. height: math.unit(7, "feet"),
  2035. weight: math.unit(80, "kg"),
  2036. name: "Front",
  2037. image: {
  2038. source: "./media/characters/zephiro/front.svg",
  2039. extra: 2309 / 2162,
  2040. bottom: 0.069
  2041. }
  2042. },
  2043. side: {
  2044. height: math.unit(7, "feet"),
  2045. weight: math.unit(80, "kg"),
  2046. name: "Side",
  2047. image: {
  2048. source: "./media/characters/zephiro/side.svg",
  2049. extra: 2403 / 2279,
  2050. bottom: 0.015
  2051. }
  2052. },
  2053. back: {
  2054. height: math.unit(7, "feet"),
  2055. weight: math.unit(80, "kg"),
  2056. name: "Back",
  2057. image: {
  2058. source: "./media/characters/zephiro/back.svg",
  2059. extra: 2373 / 2244,
  2060. bottom: 0.013
  2061. }
  2062. },
  2063. },
  2064. [
  2065. {
  2066. name: "Micro",
  2067. height: math.unit(3, "inches")
  2068. },
  2069. {
  2070. name: "Normal",
  2071. height: math.unit(5 + 3 / 12, "feet"),
  2072. default: true
  2073. },
  2074. {
  2075. name: "Macro",
  2076. height: math.unit(118, "feet")
  2077. },
  2078. ]
  2079. ))
  2080. characterMakers.push(() => makeCharacter(
  2081. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2082. {
  2083. front: {
  2084. height: math.unit(5, "feet"),
  2085. weight: math.unit(90, "kg"),
  2086. name: "Front",
  2087. image: {
  2088. source: "./media/characters/fory/front.svg",
  2089. extra: 2862 / 2674,
  2090. bottom: 180 / 3043.8
  2091. }
  2092. },
  2093. back: {
  2094. height: math.unit(5, "feet"),
  2095. weight: math.unit(90, "kg"),
  2096. name: "Back",
  2097. image: {
  2098. source: "./media/characters/fory/back.svg",
  2099. extra: 2962 / 2791,
  2100. bottom: 106 / 3071.8
  2101. }
  2102. },
  2103. foot: {
  2104. height: math.unit(2.14, "feet"),
  2105. name: "Foot",
  2106. image: {
  2107. source: "./media/characters/fory/foot.svg"
  2108. }
  2109. },
  2110. },
  2111. [
  2112. {
  2113. name: "Normal",
  2114. height: math.unit(5, "feet")
  2115. },
  2116. {
  2117. name: "Macro",
  2118. height: math.unit(50, "feet"),
  2119. default: true
  2120. },
  2121. {
  2122. name: "Megamacro",
  2123. height: math.unit(10, "miles")
  2124. },
  2125. {
  2126. name: "Gigamacro",
  2127. height: math.unit(5, "earths")
  2128. },
  2129. ]
  2130. ))
  2131. characterMakers.push(() => makeCharacter(
  2132. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2133. {
  2134. front: {
  2135. height: math.unit(7, "feet"),
  2136. weight: math.unit(90, "kg"),
  2137. name: "Front",
  2138. image: {
  2139. source: "./media/characters/kurrikage/front.svg",
  2140. extra: 1,
  2141. bottom: 0.035
  2142. }
  2143. },
  2144. back: {
  2145. height: math.unit(7, "feet"),
  2146. weight: math.unit(90, "lb"),
  2147. name: "Back",
  2148. image: {
  2149. source: "./media/characters/kurrikage/back.svg"
  2150. }
  2151. },
  2152. paw: {
  2153. height: math.unit(1.5, "feet"),
  2154. name: "Paw",
  2155. image: {
  2156. source: "./media/characters/kurrikage/paw.svg"
  2157. }
  2158. },
  2159. staff: {
  2160. height: math.unit(6.7, "feet"),
  2161. name: "Staff",
  2162. image: {
  2163. source: "./media/characters/kurrikage/staff.svg"
  2164. }
  2165. },
  2166. peek: {
  2167. height: math.unit(1.05, "feet"),
  2168. name: "Peeking",
  2169. image: {
  2170. source: "./media/characters/kurrikage/peek.svg",
  2171. bottom: 0.08
  2172. }
  2173. },
  2174. },
  2175. [
  2176. {
  2177. name: "Normal",
  2178. height: math.unit(12, "feet"),
  2179. default: true
  2180. },
  2181. {
  2182. name: "Big",
  2183. height: math.unit(20, "feet")
  2184. },
  2185. {
  2186. name: "Macro",
  2187. height: math.unit(500, "feet")
  2188. },
  2189. {
  2190. name: "Megamacro",
  2191. height: math.unit(20, "miles")
  2192. },
  2193. ]
  2194. ))
  2195. characterMakers.push(() => makeCharacter(
  2196. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2197. {
  2198. front: {
  2199. height: math.unit(6, "feet"),
  2200. weight: math.unit(75, "kg"),
  2201. name: "Front",
  2202. image: {
  2203. source: "./media/characters/shingo/front.svg",
  2204. extra: 3511 / 3338,
  2205. bottom: 0.005
  2206. }
  2207. },
  2208. },
  2209. [
  2210. {
  2211. name: "Micro",
  2212. height: math.unit(4, "inches")
  2213. },
  2214. {
  2215. name: "Normal",
  2216. height: math.unit(6, "feet"),
  2217. default: true
  2218. },
  2219. {
  2220. name: "Macro",
  2221. height: math.unit(108, "feet")
  2222. }
  2223. ]
  2224. ))
  2225. characterMakers.push(() => makeCharacter(
  2226. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2227. {
  2228. side: {
  2229. height: math.unit(6, "feet"),
  2230. weight: math.unit(75, "kg"),
  2231. name: "Side",
  2232. image: {
  2233. source: "./media/characters/aigey/side.svg"
  2234. }
  2235. },
  2236. },
  2237. [
  2238. {
  2239. name: "Macro",
  2240. height: math.unit(200, "feet"),
  2241. default: true
  2242. },
  2243. {
  2244. name: "Megamacro",
  2245. height: math.unit(100, "miles")
  2246. },
  2247. ]
  2248. )
  2249. )
  2250. characterMakers.push(() => makeCharacter(
  2251. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2252. {
  2253. front: {
  2254. height: math.unit(5 + 5 / 12, "feet"),
  2255. weight: math.unit(75, "kg"),
  2256. name: "Front",
  2257. image: {
  2258. source: "./media/characters/natasha/front.svg",
  2259. extra: 859 / 824,
  2260. bottom: 23 / 879.6
  2261. }
  2262. },
  2263. frontNsfw: {
  2264. height: math.unit(5 + 5 / 12, "feet"),
  2265. weight: math.unit(75, "kg"),
  2266. name: "Front (NSFW)",
  2267. image: {
  2268. source: "./media/characters/natasha/front-nsfw.svg",
  2269. extra: 859 / 824,
  2270. bottom: 23 / 879.6
  2271. }
  2272. },
  2273. frontErect: {
  2274. height: math.unit(5 + 5 / 12, "feet"),
  2275. weight: math.unit(75, "kg"),
  2276. name: "Front (Erect)",
  2277. image: {
  2278. source: "./media/characters/natasha/front-erect.svg",
  2279. extra: 859 / 824,
  2280. bottom: 23 / 879.6
  2281. }
  2282. },
  2283. back: {
  2284. height: math.unit(5 + 5 / 12, "feet"),
  2285. weight: math.unit(75, "kg"),
  2286. name: "Back",
  2287. image: {
  2288. source: "./media/characters/natasha/back.svg",
  2289. extra: 887.9 / 852.6,
  2290. bottom: 9.7 / 896.4
  2291. }
  2292. },
  2293. backAlt: {
  2294. height: math.unit(5 + 5 / 12, "feet"),
  2295. weight: math.unit(75, "kg"),
  2296. name: "Back (Alt)",
  2297. image: {
  2298. source: "./media/characters/natasha/back-alt.svg",
  2299. extra: 1236.7 / 1192,
  2300. bottom: 22.3 / 1258.2
  2301. }
  2302. },
  2303. dick: {
  2304. height: math.unit(1.772, "feet"),
  2305. name: "Dick",
  2306. image: {
  2307. source: "./media/characters/natasha/dick.svg"
  2308. }
  2309. },
  2310. },
  2311. [
  2312. {
  2313. name: "Normal",
  2314. height: math.unit(5 + 5 / 12, "feet")
  2315. },
  2316. {
  2317. name: "Large",
  2318. height: math.unit(12, "feet")
  2319. },
  2320. {
  2321. name: "Macro",
  2322. height: math.unit(100, "feet"),
  2323. default: true
  2324. },
  2325. {
  2326. name: "Macro+",
  2327. height: math.unit(260, "feet")
  2328. },
  2329. {
  2330. name: "Macro++",
  2331. height: math.unit(1, "mile")
  2332. },
  2333. ]
  2334. ))
  2335. characterMakers.push(() => makeCharacter(
  2336. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2337. {
  2338. front: {
  2339. height: math.unit(6, "feet"),
  2340. weight: math.unit(75, "kg"),
  2341. name: "Front",
  2342. image: {
  2343. source: "./media/characters/malik/front.svg"
  2344. }
  2345. },
  2346. side: {
  2347. height: math.unit(6, "feet"),
  2348. weight: math.unit(75, "kg"),
  2349. name: "Side",
  2350. image: {
  2351. source: "./media/characters/malik/side.svg",
  2352. extra: 1.1539
  2353. }
  2354. },
  2355. back: {
  2356. height: math.unit(6, "feet"),
  2357. weight: math.unit(75, "kg"),
  2358. name: "Back",
  2359. image: {
  2360. source: "./media/characters/malik/back.svg"
  2361. }
  2362. },
  2363. },
  2364. [
  2365. {
  2366. name: "Macro",
  2367. height: math.unit(156, "feet"),
  2368. default: true
  2369. },
  2370. {
  2371. name: "Macro+",
  2372. height: math.unit(1188, "feet")
  2373. },
  2374. ]
  2375. ))
  2376. characterMakers.push(() => makeCharacter(
  2377. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2378. {
  2379. front: {
  2380. height: math.unit(6, "feet"),
  2381. weight: math.unit(75, "kg"),
  2382. name: "Front",
  2383. image: {
  2384. source: "./media/characters/sefer/front.svg",
  2385. extra: 848 / 659,
  2386. bottom: 28.3 / 876.442
  2387. }
  2388. },
  2389. back: {
  2390. height: math.unit(6, "feet"),
  2391. weight: math.unit(75, "kg"),
  2392. name: "Back",
  2393. image: {
  2394. source: "./media/characters/sefer/back.svg",
  2395. extra: 864 / 695,
  2396. bottom: 10 / 871
  2397. }
  2398. },
  2399. frontDressed: {
  2400. height: math.unit(6, "feet"),
  2401. weight: math.unit(75, "kg"),
  2402. name: "Front (Dressed)",
  2403. image: {
  2404. source: "./media/characters/sefer/front-dressed.svg",
  2405. extra: 839 / 653,
  2406. bottom: 37.6 / 878
  2407. }
  2408. },
  2409. },
  2410. [
  2411. {
  2412. name: "Normal",
  2413. height: math.unit(6, "feet"),
  2414. default: true
  2415. },
  2416. ]
  2417. ))
  2418. characterMakers.push(() => makeCharacter(
  2419. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2420. {
  2421. body: {
  2422. height: math.unit(2.2428, "meter"),
  2423. weight: math.unit(124.738, "kg"),
  2424. name: "Body",
  2425. image: {
  2426. extra: 1225 / 1050,
  2427. source: "./media/characters/north/front.svg"
  2428. }
  2429. }
  2430. },
  2431. [
  2432. {
  2433. name: "Micro",
  2434. height: math.unit(4, "inches")
  2435. },
  2436. {
  2437. name: "Macro",
  2438. height: math.unit(63, "meters")
  2439. },
  2440. {
  2441. name: "Megamacro",
  2442. height: math.unit(101, "miles"),
  2443. default: true
  2444. }
  2445. ]
  2446. ))
  2447. characterMakers.push(() => makeCharacter(
  2448. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2449. {
  2450. angled: {
  2451. height: math.unit(4, "meter"),
  2452. weight: math.unit(150, "kg"),
  2453. name: "Angled",
  2454. image: {
  2455. source: "./media/characters/talan/angled-sfw.svg",
  2456. bottom: 29 / 3734
  2457. }
  2458. },
  2459. angledNsfw: {
  2460. height: math.unit(4, "meter"),
  2461. weight: math.unit(150, "kg"),
  2462. name: "Angled (NSFW)",
  2463. image: {
  2464. source: "./media/characters/talan/angled-nsfw.svg",
  2465. bottom: 29 / 3734
  2466. }
  2467. },
  2468. frontNsfw: {
  2469. height: math.unit(4, "meter"),
  2470. weight: math.unit(150, "kg"),
  2471. name: "Front (NSFW)",
  2472. image: {
  2473. source: "./media/characters/talan/front-nsfw.svg",
  2474. bottom: 29 / 3734
  2475. }
  2476. },
  2477. sideNsfw: {
  2478. height: math.unit(4, "meter"),
  2479. weight: math.unit(150, "kg"),
  2480. name: "Side (NSFW)",
  2481. image: {
  2482. source: "./media/characters/talan/side-nsfw.svg",
  2483. bottom: 29 / 3734
  2484. }
  2485. },
  2486. back: {
  2487. height: math.unit(4, "meter"),
  2488. weight: math.unit(150, "kg"),
  2489. name: "Back",
  2490. image: {
  2491. source: "./media/characters/talan/back.svg"
  2492. }
  2493. },
  2494. dickBottom: {
  2495. height: math.unit(0.621, "meter"),
  2496. name: "Dick (Bottom)",
  2497. image: {
  2498. source: "./media/characters/talan/dick-bottom.svg"
  2499. }
  2500. },
  2501. dickTop: {
  2502. height: math.unit(0.621, "meter"),
  2503. name: "Dick (Top)",
  2504. image: {
  2505. source: "./media/characters/talan/dick-top.svg"
  2506. }
  2507. },
  2508. dickSide: {
  2509. height: math.unit(0.305, "meter"),
  2510. name: "Dick (Side)",
  2511. image: {
  2512. source: "./media/characters/talan/dick-side.svg"
  2513. }
  2514. },
  2515. dickFront: {
  2516. height: math.unit(0.305, "meter"),
  2517. name: "Dick (Front)",
  2518. image: {
  2519. source: "./media/characters/talan/dick-front.svg"
  2520. }
  2521. },
  2522. },
  2523. [
  2524. {
  2525. name: "Normal",
  2526. height: math.unit(4, "meters")
  2527. },
  2528. {
  2529. name: "Macro",
  2530. height: math.unit(100, "meters")
  2531. },
  2532. {
  2533. name: "Megamacro",
  2534. height: math.unit(2, "miles"),
  2535. default: true
  2536. },
  2537. {
  2538. name: "Gigamacro",
  2539. height: math.unit(5000, "miles")
  2540. },
  2541. {
  2542. name: "Teramacro",
  2543. height: math.unit(100, "parsecs")
  2544. }
  2545. ]
  2546. ))
  2547. characterMakers.push(() => makeCharacter(
  2548. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2549. {
  2550. front: {
  2551. height: math.unit(2, "meter"),
  2552. weight: math.unit(90, "kg"),
  2553. name: "Front",
  2554. image: {
  2555. source: "./media/characters/gael'rathus/front.svg"
  2556. }
  2557. },
  2558. frontAlt: {
  2559. height: math.unit(2, "meter"),
  2560. weight: math.unit(90, "kg"),
  2561. name: "Front (alt)",
  2562. image: {
  2563. source: "./media/characters/gael'rathus/front-alt.svg"
  2564. }
  2565. },
  2566. frontAlt2: {
  2567. height: math.unit(2, "meter"),
  2568. weight: math.unit(90, "kg"),
  2569. name: "Front (alt 2)",
  2570. image: {
  2571. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2572. }
  2573. }
  2574. },
  2575. [
  2576. {
  2577. name: "Normal",
  2578. height: math.unit(9, "feet"),
  2579. default: true
  2580. },
  2581. {
  2582. name: "Large",
  2583. height: math.unit(25, "feet")
  2584. },
  2585. {
  2586. name: "Macro",
  2587. height: math.unit(0.25, "miles")
  2588. },
  2589. {
  2590. name: "Megamacro",
  2591. height: math.unit(10, "miles")
  2592. }
  2593. ]
  2594. ))
  2595. characterMakers.push(() => makeCharacter(
  2596. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2597. {
  2598. side: {
  2599. height: math.unit(2, "meter"),
  2600. weight: math.unit(140, "kg"),
  2601. name: "Side",
  2602. image: {
  2603. source: "./media/characters/sosha/side.svg",
  2604. bottom: 0.042
  2605. }
  2606. },
  2607. },
  2608. [
  2609. {
  2610. name: "Normal",
  2611. height: math.unit(12, "feet"),
  2612. default: true
  2613. }
  2614. ]
  2615. ))
  2616. characterMakers.push(() => makeCharacter(
  2617. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2618. {
  2619. side: {
  2620. height: math.unit(5 + 5 / 12, "feet"),
  2621. weight: math.unit(170, "kg"),
  2622. name: "Side",
  2623. image: {
  2624. source: "./media/characters/runnola/side.svg",
  2625. extra: 741 / 448,
  2626. bottom: 0.05
  2627. }
  2628. },
  2629. },
  2630. [
  2631. {
  2632. name: "Small",
  2633. height: math.unit(3, "feet")
  2634. },
  2635. {
  2636. name: "Normal",
  2637. height: math.unit(5 + 5 / 12, "feet"),
  2638. default: true
  2639. },
  2640. {
  2641. name: "Big",
  2642. height: math.unit(10, "feet")
  2643. },
  2644. ]
  2645. ))
  2646. characterMakers.push(() => makeCharacter(
  2647. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2648. {
  2649. front: {
  2650. height: math.unit(2, "meter"),
  2651. weight: math.unit(50, "kg"),
  2652. name: "Front",
  2653. image: {
  2654. source: "./media/characters/kurribird/front.svg",
  2655. bottom: 0.015
  2656. }
  2657. },
  2658. frontAlt: {
  2659. height: math.unit(1.5, "meter"),
  2660. weight: math.unit(50, "kg"),
  2661. name: "Front (Alt)",
  2662. image: {
  2663. source: "./media/characters/kurribird/front-alt.svg",
  2664. extra: 1.45
  2665. }
  2666. },
  2667. },
  2668. [
  2669. {
  2670. name: "Normal",
  2671. height: math.unit(7, "feet")
  2672. },
  2673. {
  2674. name: "Big",
  2675. height: math.unit(12, "feet"),
  2676. default: true
  2677. },
  2678. {
  2679. name: "Macro",
  2680. height: math.unit(1500, "feet")
  2681. },
  2682. {
  2683. name: "Megamacro",
  2684. height: math.unit(2, "miles")
  2685. }
  2686. ]
  2687. ))
  2688. characterMakers.push(() => makeCharacter(
  2689. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2690. {
  2691. front: {
  2692. height: math.unit(2, "meter"),
  2693. weight: math.unit(80, "kg"),
  2694. name: "Front",
  2695. image: {
  2696. source: "./media/characters/elbial/front.svg",
  2697. extra: 1643 / 1556,
  2698. bottom: 60.2 / 1696
  2699. }
  2700. },
  2701. side: {
  2702. height: math.unit(2, "meter"),
  2703. weight: math.unit(80, "kg"),
  2704. name: "Side",
  2705. image: {
  2706. source: "./media/characters/elbial/side.svg",
  2707. extra: 1630 / 1565,
  2708. bottom: 71.5 / 1697
  2709. }
  2710. },
  2711. back: {
  2712. height: math.unit(2, "meter"),
  2713. weight: math.unit(80, "kg"),
  2714. name: "Back",
  2715. image: {
  2716. source: "./media/characters/elbial/back.svg",
  2717. extra: 1668 / 1595,
  2718. bottom: 5.6 / 1672
  2719. }
  2720. },
  2721. frontDressed: {
  2722. height: math.unit(2, "meter"),
  2723. weight: math.unit(80, "kg"),
  2724. name: "Front (Dressed)",
  2725. image: {
  2726. source: "./media/characters/elbial/front-dressed.svg",
  2727. extra: 1653 / 1584,
  2728. bottom: 57 / 1708
  2729. }
  2730. },
  2731. genitals: {
  2732. height: math.unit(2 / 3.367, "meter"),
  2733. name: "Genitals",
  2734. image: {
  2735. source: "./media/characters/elbial/genitals.svg"
  2736. }
  2737. },
  2738. },
  2739. [
  2740. {
  2741. name: "Large",
  2742. height: math.unit(100, "feet")
  2743. },
  2744. {
  2745. name: "Macro",
  2746. height: math.unit(500, "feet"),
  2747. default: true
  2748. },
  2749. {
  2750. name: "Megamacro",
  2751. height: math.unit(10, "miles")
  2752. },
  2753. {
  2754. name: "Gigamacro",
  2755. height: math.unit(25000, "miles")
  2756. },
  2757. {
  2758. name: "Full-Size",
  2759. height: math.unit(8000000, "gigaparsecs")
  2760. }
  2761. ]
  2762. ))
  2763. characterMakers.push(() => makeCharacter(
  2764. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2765. {
  2766. front: {
  2767. height: math.unit(2, "meter"),
  2768. weight: math.unit(60, "kg"),
  2769. name: "Front",
  2770. image: {
  2771. source: "./media/characters/noah/front.svg"
  2772. }
  2773. },
  2774. talons: {
  2775. height: math.unit(0.315, "meter"),
  2776. name: "Talons",
  2777. image: {
  2778. source: "./media/characters/noah/talons.svg"
  2779. }
  2780. }
  2781. },
  2782. [
  2783. {
  2784. name: "Large",
  2785. height: math.unit(50, "feet")
  2786. },
  2787. {
  2788. name: "Macro",
  2789. height: math.unit(750, "feet"),
  2790. default: true
  2791. },
  2792. {
  2793. name: "Megamacro",
  2794. height: math.unit(50, "miles")
  2795. },
  2796. {
  2797. name: "Gigamacro",
  2798. height: math.unit(100000, "miles")
  2799. },
  2800. {
  2801. name: "Full-Size",
  2802. height: math.unit(3000000000, "miles")
  2803. }
  2804. ]
  2805. ))
  2806. characterMakers.push(() => makeCharacter(
  2807. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2808. {
  2809. front: {
  2810. height: math.unit(2, "meter"),
  2811. weight: math.unit(80, "kg"),
  2812. name: "Front",
  2813. image: {
  2814. source: "./media/characters/natalya/front.svg"
  2815. }
  2816. },
  2817. back: {
  2818. height: math.unit(2, "meter"),
  2819. weight: math.unit(80, "kg"),
  2820. name: "Back",
  2821. image: {
  2822. source: "./media/characters/natalya/back.svg"
  2823. }
  2824. }
  2825. },
  2826. [
  2827. {
  2828. name: "Normal",
  2829. height: math.unit(150, "feet"),
  2830. default: true
  2831. },
  2832. {
  2833. name: "Megamacro",
  2834. height: math.unit(5, "miles")
  2835. },
  2836. {
  2837. name: "Full-Size",
  2838. height: math.unit(600, "kiloparsecs")
  2839. }
  2840. ]
  2841. ))
  2842. characterMakers.push(() => makeCharacter(
  2843. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2844. {
  2845. front: {
  2846. height: math.unit(2, "meter"),
  2847. weight: math.unit(50, "kg"),
  2848. name: "Front",
  2849. image: {
  2850. source: "./media/characters/erestrebah/front.svg",
  2851. extra: 208 / 193,
  2852. bottom: 0.055
  2853. }
  2854. },
  2855. back: {
  2856. height: math.unit(2, "meter"),
  2857. weight: math.unit(50, "kg"),
  2858. name: "Back",
  2859. image: {
  2860. source: "./media/characters/erestrebah/back.svg",
  2861. extra: 1.3
  2862. }
  2863. }
  2864. },
  2865. [
  2866. {
  2867. name: "Normal",
  2868. height: math.unit(10, "feet")
  2869. },
  2870. {
  2871. name: "Large",
  2872. height: math.unit(50, "feet"),
  2873. default: true
  2874. },
  2875. {
  2876. name: "Macro",
  2877. height: math.unit(300, "feet")
  2878. },
  2879. {
  2880. name: "Macro+",
  2881. height: math.unit(750, "feet")
  2882. },
  2883. {
  2884. name: "Megamacro",
  2885. height: math.unit(3, "miles")
  2886. }
  2887. ]
  2888. ))
  2889. characterMakers.push(() => makeCharacter(
  2890. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2891. {
  2892. front: {
  2893. height: math.unit(2, "meter"),
  2894. weight: math.unit(80, "kg"),
  2895. name: "Front",
  2896. image: {
  2897. source: "./media/characters/jennifer/front.svg",
  2898. bottom: 0.11,
  2899. extra: 1.16
  2900. }
  2901. },
  2902. frontAlt: {
  2903. height: math.unit(2, "meter"),
  2904. weight: math.unit(80, "kg"),
  2905. name: "Front (Alt)",
  2906. image: {
  2907. source: "./media/characters/jennifer/front-alt.svg"
  2908. }
  2909. }
  2910. },
  2911. [
  2912. {
  2913. name: "Canon Height",
  2914. height: math.unit(120, "feet"),
  2915. default: true
  2916. },
  2917. {
  2918. name: "Macro+",
  2919. height: math.unit(300, "feet")
  2920. },
  2921. {
  2922. name: "Megamacro",
  2923. height: math.unit(20000, "feet")
  2924. }
  2925. ]
  2926. ))
  2927. characterMakers.push(() => makeCharacter(
  2928. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  2929. {
  2930. front: {
  2931. height: math.unit(2, "meter"),
  2932. weight: math.unit(50, "kg"),
  2933. name: "Front",
  2934. image: {
  2935. source: "./media/characters/kalista/front.svg",
  2936. extra: 1947 / 1700,
  2937. bottom: 76.6 / 1412.98
  2938. }
  2939. },
  2940. back: {
  2941. height: math.unit(2, "meter"),
  2942. weight: math.unit(50, "kg"),
  2943. name: "Back",
  2944. image: {
  2945. source: "./media/characters/kalista/back.svg",
  2946. extra: 1366 / 1156,
  2947. bottom: 33.9 / 1362.78
  2948. }
  2949. }
  2950. },
  2951. [
  2952. {
  2953. name: "Uncomfortably Small",
  2954. height: math.unit(10, "feet")
  2955. },
  2956. {
  2957. name: "Small",
  2958. height: math.unit(30, "feet")
  2959. },
  2960. {
  2961. name: "Macro",
  2962. height: math.unit(100, "feet"),
  2963. default: true
  2964. },
  2965. {
  2966. name: "Macro+",
  2967. height: math.unit(2000, "feet")
  2968. },
  2969. {
  2970. name: "True Form",
  2971. height: math.unit(8924, "miles")
  2972. }
  2973. ]
  2974. ))
  2975. characterMakers.push(() => makeCharacter(
  2976. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  2977. {
  2978. front: {
  2979. height: math.unit(2, "meter"),
  2980. weight: math.unit(120, "kg"),
  2981. name: "Front",
  2982. image: {
  2983. source: "./media/characters/ggv/front.svg"
  2984. }
  2985. },
  2986. side: {
  2987. height: math.unit(2, "meter"),
  2988. weight: math.unit(120, "kg"),
  2989. name: "Side",
  2990. image: {
  2991. source: "./media/characters/ggv/side.svg"
  2992. }
  2993. }
  2994. },
  2995. [
  2996. {
  2997. name: "Extremely Puny",
  2998. height: math.unit(9 + 5 / 12, "feet")
  2999. },
  3000. {
  3001. name: "Horribly Small",
  3002. height: math.unit(47.7, "miles"),
  3003. default: true
  3004. },
  3005. {
  3006. name: "Reasonably Sized",
  3007. height: math.unit(25000, "parsecs")
  3008. },
  3009. {
  3010. name: "Slightly Uncompressed",
  3011. height: math.unit(7.77e31, "parsecs")
  3012. },
  3013. {
  3014. name: "Omniversal",
  3015. height: math.unit(1e300, "meters")
  3016. },
  3017. ]
  3018. ))
  3019. characterMakers.push(() => makeCharacter(
  3020. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3021. {
  3022. front: {
  3023. height: math.unit(2, "meter"),
  3024. weight: math.unit(75, "lb"),
  3025. name: "Front",
  3026. image: {
  3027. source: "./media/characters/napalm/front.svg"
  3028. }
  3029. },
  3030. back: {
  3031. height: math.unit(2, "meter"),
  3032. weight: math.unit(75, "lb"),
  3033. name: "Back",
  3034. image: {
  3035. source: "./media/characters/napalm/back.svg"
  3036. }
  3037. }
  3038. },
  3039. [
  3040. {
  3041. name: "Standard",
  3042. height: math.unit(55, "feet"),
  3043. default: true
  3044. }
  3045. ]
  3046. ))
  3047. characterMakers.push(() => makeCharacter(
  3048. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3049. {
  3050. front: {
  3051. height: math.unit(7 + 5 / 6, "feet"),
  3052. weight: math.unit(325, "lb"),
  3053. name: "Front",
  3054. image: {
  3055. source: "./media/characters/asana/front.svg",
  3056. extra: 1128 / 1068
  3057. }
  3058. },
  3059. back: {
  3060. height: math.unit(7 + 5 / 6, "feet"),
  3061. weight: math.unit(325, "lb"),
  3062. name: "Back",
  3063. image: {
  3064. source: "./media/characters/asana/back.svg",
  3065. extra: 1128 / 1068
  3066. }
  3067. },
  3068. },
  3069. [
  3070. {
  3071. name: "Standard",
  3072. height: math.unit(7 + 5 / 6, "feet"),
  3073. default: true
  3074. },
  3075. {
  3076. name: "Large",
  3077. height: math.unit(10, "meters")
  3078. },
  3079. {
  3080. name: "Macro",
  3081. height: math.unit(2500, "meters")
  3082. },
  3083. {
  3084. name: "Megamacro",
  3085. height: math.unit(5e6, "meters")
  3086. },
  3087. {
  3088. name: "Examacro",
  3089. height: math.unit(5e12, "lightyears")
  3090. },
  3091. {
  3092. name: "Max Size",
  3093. height: math.unit(1e31, "lightyears")
  3094. }
  3095. ]
  3096. ))
  3097. characterMakers.push(() => makeCharacter(
  3098. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3099. {
  3100. front: {
  3101. height: math.unit(2, "meter"),
  3102. weight: math.unit(60, "kg"),
  3103. name: "Front",
  3104. image: {
  3105. source: "./media/characters/ebony/front.svg",
  3106. bottom: 0.03,
  3107. extra: 1045 / 810 + 0.03
  3108. }
  3109. },
  3110. side: {
  3111. height: math.unit(2, "meter"),
  3112. weight: math.unit(60, "kg"),
  3113. name: "Side",
  3114. image: {
  3115. source: "./media/characters/ebony/side.svg",
  3116. bottom: 0.03,
  3117. extra: 1045 / 810 + 0.03
  3118. }
  3119. },
  3120. back: {
  3121. height: math.unit(2, "meter"),
  3122. weight: math.unit(60, "kg"),
  3123. name: "Back",
  3124. image: {
  3125. source: "./media/characters/ebony/back.svg",
  3126. bottom: 0.01,
  3127. extra: 1045 / 810 + 0.01
  3128. }
  3129. },
  3130. },
  3131. [
  3132. // TODO check why I did this lol
  3133. {
  3134. name: "Standard",
  3135. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3136. default: true
  3137. },
  3138. {
  3139. name: "Macro",
  3140. height: math.unit(200, "feet")
  3141. },
  3142. {
  3143. name: "Gigamacro",
  3144. height: math.unit(13000, "km")
  3145. }
  3146. ]
  3147. ))
  3148. characterMakers.push(() => makeCharacter(
  3149. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3150. {
  3151. front: {
  3152. height: math.unit(6, "feet"),
  3153. weight: math.unit(175, "lb"),
  3154. name: "Front",
  3155. image: {
  3156. source: "./media/characters/mountain/front.svg"
  3157. }
  3158. },
  3159. back: {
  3160. height: math.unit(6, "feet"),
  3161. weight: math.unit(175, "lb"),
  3162. name: "Back",
  3163. image: {
  3164. source: "./media/characters/mountain/back.svg"
  3165. }
  3166. },
  3167. },
  3168. [
  3169. {
  3170. name: "Large",
  3171. height: math.unit(20, "meters")
  3172. },
  3173. {
  3174. name: "Macro",
  3175. height: math.unit(300, "meters")
  3176. },
  3177. {
  3178. name: "Gigamacro",
  3179. height: math.unit(10000, "km"),
  3180. default: true
  3181. },
  3182. {
  3183. name: "Examacro",
  3184. height: math.unit(10e9, "lightyears")
  3185. }
  3186. ]
  3187. ))
  3188. characterMakers.push(() => makeCharacter(
  3189. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3190. {
  3191. front: {
  3192. height: math.unit(8, "feet"),
  3193. weight: math.unit(500, "lb"),
  3194. name: "Front",
  3195. image: {
  3196. source: "./media/characters/rick/front.svg"
  3197. }
  3198. }
  3199. },
  3200. [
  3201. {
  3202. name: "Normal",
  3203. height: math.unit(8, "feet"),
  3204. default: true
  3205. },
  3206. {
  3207. name: "Macro",
  3208. height: math.unit(5, "km")
  3209. }
  3210. ]
  3211. ))
  3212. characterMakers.push(() => makeCharacter(
  3213. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3214. {
  3215. front: {
  3216. height: math.unit(8, "feet"),
  3217. weight: math.unit(120, "lb"),
  3218. name: "Front",
  3219. image: {
  3220. source: "./media/characters/ona/front.svg"
  3221. }
  3222. },
  3223. frontAlt: {
  3224. height: math.unit(8, "feet"),
  3225. weight: math.unit(120, "lb"),
  3226. name: "Front (Alt)",
  3227. image: {
  3228. source: "./media/characters/ona/front-alt.svg"
  3229. }
  3230. },
  3231. back: {
  3232. height: math.unit(8, "feet"),
  3233. weight: math.unit(120, "lb"),
  3234. name: "Back",
  3235. image: {
  3236. source: "./media/characters/ona/back.svg"
  3237. }
  3238. },
  3239. foot: {
  3240. height: math.unit(1.1, "feet"),
  3241. name: "Foot",
  3242. image: {
  3243. source: "./media/characters/ona/foot.svg"
  3244. }
  3245. }
  3246. },
  3247. [
  3248. {
  3249. name: "Megamacro",
  3250. height: math.unit(70, "km"),
  3251. default: true
  3252. },
  3253. {
  3254. name: "Gigamacro",
  3255. height: math.unit(681818, "miles")
  3256. },
  3257. {
  3258. name: "Examacro",
  3259. height: math.unit(3800000, "lightyears")
  3260. },
  3261. ]
  3262. ))
  3263. characterMakers.push(() => makeCharacter(
  3264. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3265. {
  3266. front: {
  3267. height: math.unit(12, "feet"),
  3268. weight: math.unit(3000, "lb"),
  3269. name: "Front",
  3270. image: {
  3271. source: "./media/characters/mech/front.svg",
  3272. bottom: 0.025,
  3273. }
  3274. },
  3275. back: {
  3276. height: math.unit(12, "feet"),
  3277. weight: math.unit(3000, "lb"),
  3278. name: "Back",
  3279. image: {
  3280. source: "./media/characters/mech/back.svg",
  3281. bottom: 0.03,
  3282. }
  3283. }
  3284. },
  3285. [
  3286. {
  3287. name: "Normal",
  3288. height: math.unit(12, "feet")
  3289. },
  3290. {
  3291. name: "Macro",
  3292. height: math.unit(300, "feet"),
  3293. default: true
  3294. },
  3295. {
  3296. name: "Macro+",
  3297. height: math.unit(1500, "feet")
  3298. },
  3299. ]
  3300. ))
  3301. characterMakers.push(() => makeCharacter(
  3302. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3303. {
  3304. front: {
  3305. height: math.unit(1.3, "meter"),
  3306. weight: math.unit(30, "kg"),
  3307. name: "Front",
  3308. image: {
  3309. source: "./media/characters/gregory/front.svg",
  3310. }
  3311. }
  3312. },
  3313. [
  3314. {
  3315. name: "Normal",
  3316. height: math.unit(1.3, "meter"),
  3317. default: true
  3318. },
  3319. {
  3320. name: "Macro",
  3321. height: math.unit(20, "meter")
  3322. }
  3323. ]
  3324. ))
  3325. characterMakers.push(() => makeCharacter(
  3326. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3327. {
  3328. front: {
  3329. height: math.unit(2.8, "meter"),
  3330. weight: math.unit(200, "kg"),
  3331. name: "Front",
  3332. image: {
  3333. source: "./media/characters/elory/front.svg",
  3334. }
  3335. }
  3336. },
  3337. [
  3338. {
  3339. name: "Normal",
  3340. height: math.unit(2.8, "meter"),
  3341. default: true
  3342. },
  3343. {
  3344. name: "Macro",
  3345. height: math.unit(38, "meter")
  3346. }
  3347. ]
  3348. ))
  3349. characterMakers.push(() => makeCharacter(
  3350. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3351. {
  3352. front: {
  3353. height: math.unit(470, "feet"),
  3354. weight: math.unit(924, "tons"),
  3355. name: "Front",
  3356. image: {
  3357. source: "./media/characters/angelpatamon/front.svg",
  3358. }
  3359. }
  3360. },
  3361. [
  3362. {
  3363. name: "Normal",
  3364. height: math.unit(470, "feet"),
  3365. default: true
  3366. },
  3367. {
  3368. name: "Deity Size I",
  3369. height: math.unit(28651.2, "km")
  3370. },
  3371. {
  3372. name: "Deity Size II",
  3373. height: math.unit(171907.2, "km")
  3374. }
  3375. ]
  3376. ))
  3377. characterMakers.push(() => makeCharacter(
  3378. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3379. {
  3380. side: {
  3381. height: math.unit(7.2, "meter"),
  3382. weight: math.unit(8.2, "tons"),
  3383. name: "Side",
  3384. image: {
  3385. source: "./media/characters/cryae/side.svg",
  3386. extra: 3500 / 1500
  3387. }
  3388. }
  3389. },
  3390. [
  3391. {
  3392. name: "Normal",
  3393. height: math.unit(7.2, "meter"),
  3394. default: true
  3395. }
  3396. ]
  3397. ))
  3398. characterMakers.push(() => makeCharacter(
  3399. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3400. {
  3401. front: {
  3402. height: math.unit(6, "feet"),
  3403. weight: math.unit(175, "lb"),
  3404. name: "Front",
  3405. image: {
  3406. source: "./media/characters/xera/front.svg",
  3407. extra: 2300 / 2061
  3408. }
  3409. },
  3410. side: {
  3411. height: math.unit(6, "feet"),
  3412. weight: math.unit(175, "lb"),
  3413. name: "Side",
  3414. image: {
  3415. source: "./media/characters/xera/side.svg",
  3416. extra: 2300 / 2061
  3417. }
  3418. },
  3419. back: {
  3420. height: math.unit(6, "feet"),
  3421. weight: math.unit(175, "lb"),
  3422. name: "Back",
  3423. image: {
  3424. source: "./media/characters/xera/back.svg"
  3425. }
  3426. },
  3427. },
  3428. [
  3429. {
  3430. name: "Small",
  3431. height: math.unit(10, "feet")
  3432. },
  3433. {
  3434. name: "Macro",
  3435. height: math.unit(500, "meters"),
  3436. default: true
  3437. },
  3438. {
  3439. name: "Macro+",
  3440. height: math.unit(10, "km")
  3441. },
  3442. {
  3443. name: "Gigamacro",
  3444. height: math.unit(25000, "km")
  3445. },
  3446. {
  3447. name: "Teramacro",
  3448. height: math.unit(3e6, "km")
  3449. }
  3450. ]
  3451. ))
  3452. characterMakers.push(() => makeCharacter(
  3453. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3454. {
  3455. front: {
  3456. height: math.unit(6, "feet"),
  3457. weight: math.unit(175, "lb"),
  3458. name: "Front",
  3459. image: {
  3460. source: "./media/characters/nebula/front.svg",
  3461. extra: 2600 / 2450
  3462. }
  3463. }
  3464. },
  3465. [
  3466. {
  3467. name: "Small",
  3468. height: math.unit(4.5, "meters")
  3469. },
  3470. {
  3471. name: "Macro",
  3472. height: math.unit(1500, "meters"),
  3473. default: true
  3474. },
  3475. {
  3476. name: "Megamacro",
  3477. height: math.unit(150, "km")
  3478. },
  3479. {
  3480. name: "Gigamacro",
  3481. height: math.unit(27000, "km")
  3482. }
  3483. ]
  3484. ))
  3485. characterMakers.push(() => makeCharacter(
  3486. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3487. {
  3488. front: {
  3489. height: math.unit(6, "feet"),
  3490. weight: math.unit(225, "lb"),
  3491. name: "Front",
  3492. image: {
  3493. source: "./media/characters/abysgar/front.svg"
  3494. }
  3495. }
  3496. },
  3497. [
  3498. {
  3499. name: "Small",
  3500. height: math.unit(4.5, "meters")
  3501. },
  3502. {
  3503. name: "Macro",
  3504. height: math.unit(1250, "meters"),
  3505. default: true
  3506. },
  3507. {
  3508. name: "Megamacro",
  3509. height: math.unit(125, "km")
  3510. },
  3511. {
  3512. name: "Gigamacro",
  3513. height: math.unit(26000, "km")
  3514. }
  3515. ]
  3516. ))
  3517. characterMakers.push(() => makeCharacter(
  3518. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3519. {
  3520. front: {
  3521. height: math.unit(6, "feet"),
  3522. weight: math.unit(180, "lb"),
  3523. name: "Front",
  3524. image: {
  3525. source: "./media/characters/yakuz/front.svg"
  3526. }
  3527. }
  3528. },
  3529. [
  3530. {
  3531. name: "Small",
  3532. height: math.unit(5, "meters")
  3533. },
  3534. {
  3535. name: "Macro",
  3536. height: math.unit(1500, "meters"),
  3537. default: true
  3538. },
  3539. {
  3540. name: "Megamacro",
  3541. height: math.unit(200, "km")
  3542. },
  3543. {
  3544. name: "Gigamacro",
  3545. height: math.unit(100000, "km")
  3546. }
  3547. ]
  3548. ))
  3549. characterMakers.push(() => makeCharacter(
  3550. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3551. {
  3552. front: {
  3553. height: math.unit(6, "feet"),
  3554. weight: math.unit(175, "lb"),
  3555. name: "Front",
  3556. image: {
  3557. source: "./media/characters/mirova/front.svg"
  3558. }
  3559. }
  3560. },
  3561. [
  3562. {
  3563. name: "Small",
  3564. height: math.unit(5, "meters")
  3565. },
  3566. {
  3567. name: "Macro",
  3568. height: math.unit(900, "meters"),
  3569. default: true
  3570. },
  3571. {
  3572. name: "Megamacro",
  3573. height: math.unit(135, "km")
  3574. },
  3575. {
  3576. name: "Gigamacro",
  3577. height: math.unit(20000, "km")
  3578. }
  3579. ]
  3580. ))
  3581. characterMakers.push(() => makeCharacter(
  3582. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3583. {
  3584. side: {
  3585. height: math.unit(28.35, "feet"),
  3586. weight: math.unit(99.75, "tons"),
  3587. name: "Side",
  3588. image: {
  3589. source: "./media/characters/asana-mech/side.svg"
  3590. }
  3591. }
  3592. },
  3593. [
  3594. {
  3595. name: "Normal",
  3596. height: math.unit(28.35, "feet"),
  3597. default: true
  3598. },
  3599. {
  3600. name: "Macro",
  3601. height: math.unit(2500, "feet")
  3602. },
  3603. {
  3604. name: "Megamacro",
  3605. height: math.unit(25, "miles")
  3606. },
  3607. {
  3608. name: "Examacro",
  3609. height: math.unit(6e8, "lightyears")
  3610. },
  3611. ]
  3612. ))
  3613. characterMakers.push(() => makeCharacter(
  3614. { name: "Ashtrek", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3615. {
  3616. front: {
  3617. height: math.unit(2, "meters"),
  3618. weight: math.unit(70, "kg"),
  3619. name: "Front",
  3620. image: {
  3621. source: "./media/characters/ashtrek/front.svg",
  3622. extra: 560 / 524,
  3623. bottom: 0.01
  3624. }
  3625. },
  3626. frontArmor: {
  3627. height: math.unit(2, "meters"),
  3628. weight: math.unit(76, "kg"),
  3629. name: "Front (Armor)",
  3630. image: {
  3631. source: "./media/characters/ashtrek/front-armor.svg",
  3632. extra: 561 / 527,
  3633. bottom: 0.01
  3634. }
  3635. },
  3636. side: {
  3637. height: math.unit(2, "meters"),
  3638. weight: math.unit(70, "kg"),
  3639. name: "Side",
  3640. image: {
  3641. source: "./media/characters/ashtrek/side.svg",
  3642. extra: 1717 / 1609,
  3643. bottom: 0.005
  3644. }
  3645. },
  3646. back: {
  3647. height: math.unit(2, "meters"),
  3648. weight: math.unit(70, "kg"),
  3649. name: "Back",
  3650. image: {
  3651. source: "./media/characters/ashtrek/back.svg",
  3652. extra: 1570 / 1501
  3653. }
  3654. },
  3655. },
  3656. [
  3657. {
  3658. name: "DEFCON 5",
  3659. height: math.unit(5, "meters")
  3660. },
  3661. {
  3662. name: "DEFCON 4",
  3663. height: math.unit(500, "meters"),
  3664. default: true
  3665. },
  3666. {
  3667. name: "DEFCON 3",
  3668. height: math.unit(5, "km")
  3669. },
  3670. {
  3671. name: "DEFCON 2",
  3672. height: math.unit(500, "km")
  3673. },
  3674. {
  3675. name: "DEFCON 1",
  3676. height: math.unit(500000, "km")
  3677. },
  3678. {
  3679. name: "DEFCON 0",
  3680. height: math.unit(3, "gigaparsecs")
  3681. },
  3682. ]
  3683. ))
  3684. characterMakers.push(() => makeCharacter(
  3685. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3686. {
  3687. front: {
  3688. height: math.unit(2, "meters"),
  3689. weight: math.unit(76, "kg"),
  3690. name: "Front",
  3691. image: {
  3692. source: "./media/characters/gale/front.svg"
  3693. }
  3694. },
  3695. frontAlt1: {
  3696. height: math.unit(2, "meters"),
  3697. weight: math.unit(76, "kg"),
  3698. name: "Front (Alt 1)",
  3699. image: {
  3700. source: "./media/characters/gale/front-alt-1.svg"
  3701. }
  3702. },
  3703. frontAlt2: {
  3704. height: math.unit(2, "meters"),
  3705. weight: math.unit(76, "kg"),
  3706. name: "Front (Alt 2)",
  3707. image: {
  3708. source: "./media/characters/gale/front-alt-2.svg"
  3709. }
  3710. },
  3711. },
  3712. [
  3713. {
  3714. name: "Normal",
  3715. height: math.unit(7, "feet")
  3716. },
  3717. {
  3718. name: "Macro",
  3719. height: math.unit(150, "feet"),
  3720. default: true
  3721. },
  3722. {
  3723. name: "Macro+",
  3724. height: math.unit(300, "feet")
  3725. },
  3726. ]
  3727. ))
  3728. characterMakers.push(() => makeCharacter(
  3729. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3730. {
  3731. front: {
  3732. height: math.unit(2, "meters"),
  3733. weight: math.unit(76, "kg"),
  3734. name: "Front",
  3735. image: {
  3736. source: "./media/characters/draylen/front.svg"
  3737. }
  3738. }
  3739. },
  3740. [
  3741. {
  3742. name: "Macro",
  3743. height: math.unit(150, "feet"),
  3744. default: true
  3745. }
  3746. ]
  3747. ))
  3748. characterMakers.push(() => makeCharacter(
  3749. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3750. {
  3751. front: {
  3752. height: math.unit(7 + 9 / 12, "feet"),
  3753. weight: math.unit(379, "lbs"),
  3754. name: "Front",
  3755. image: {
  3756. source: "./media/characters/chez/front.svg"
  3757. }
  3758. },
  3759. side: {
  3760. height: math.unit(7 + 9 / 12, "feet"),
  3761. weight: math.unit(379, "lbs"),
  3762. name: "Side",
  3763. image: {
  3764. source: "./media/characters/chez/side.svg"
  3765. }
  3766. }
  3767. },
  3768. [
  3769. {
  3770. name: "Normal",
  3771. height: math.unit(7 + 9 / 12, "feet"),
  3772. default: true
  3773. },
  3774. {
  3775. name: "God King",
  3776. height: math.unit(9750000, "meters")
  3777. }
  3778. ]
  3779. ))
  3780. characterMakers.push(() => makeCharacter(
  3781. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  3782. {
  3783. front: {
  3784. height: math.unit(6, "feet"),
  3785. weight: math.unit(275, "lbs"),
  3786. name: "Front",
  3787. image: {
  3788. source: "./media/characters/kaylum/front.svg",
  3789. bottom: 0.01,
  3790. extra: 1166 / 1031
  3791. }
  3792. },
  3793. frontWingless: {
  3794. height: math.unit(6, "feet"),
  3795. weight: math.unit(275, "lbs"),
  3796. name: "Front (Wingless)",
  3797. image: {
  3798. source: "./media/characters/kaylum/front-wingless.svg",
  3799. bottom: 0.01,
  3800. extra: 1117 / 1031
  3801. }
  3802. }
  3803. },
  3804. [
  3805. {
  3806. name: "Normal",
  3807. height: math.unit(3.05, "meters")
  3808. },
  3809. {
  3810. name: "Master",
  3811. height: math.unit(5.5, "meters")
  3812. },
  3813. {
  3814. name: "Rampage",
  3815. height: math.unit(19, "meters")
  3816. },
  3817. {
  3818. name: "Macro Lite",
  3819. height: math.unit(37, "meters")
  3820. },
  3821. {
  3822. name: "Hyper Predator",
  3823. height: math.unit(61, "meters")
  3824. },
  3825. {
  3826. name: "Macro",
  3827. height: math.unit(138, "meters"),
  3828. default: true
  3829. }
  3830. ]
  3831. ))
  3832. characterMakers.push(() => makeCharacter(
  3833. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  3834. {
  3835. front: {
  3836. height: math.unit(6, "feet"),
  3837. weight: math.unit(150, "lbs"),
  3838. name: "Front",
  3839. image: {
  3840. source: "./media/characters/geta/front.svg"
  3841. }
  3842. }
  3843. },
  3844. [
  3845. {
  3846. name: "Micro",
  3847. height: math.unit(3, "inches"),
  3848. default: true
  3849. },
  3850. {
  3851. name: "Normal",
  3852. height: math.unit(5 + 5 / 12, "feet")
  3853. }
  3854. ]
  3855. ))
  3856. characterMakers.push(() => makeCharacter(
  3857. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  3858. {
  3859. front: {
  3860. height: math.unit(6, "feet"),
  3861. weight: math.unit(300, "lbs"),
  3862. name: "Front",
  3863. image: {
  3864. source: "./media/characters/tyrnn/front.svg"
  3865. }
  3866. }
  3867. },
  3868. [
  3869. {
  3870. name: "Main Height",
  3871. height: math.unit(355, "feet"),
  3872. default: true
  3873. },
  3874. {
  3875. name: "Fave. Height",
  3876. height: math.unit(2400, "feet")
  3877. }
  3878. ]
  3879. ))
  3880. characterMakers.push(() => makeCharacter(
  3881. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  3882. {
  3883. front: {
  3884. height: math.unit(6, "feet"),
  3885. weight: math.unit(300, "lbs"),
  3886. name: "Front",
  3887. image: {
  3888. source: "./media/characters/appledectomy/front.svg"
  3889. }
  3890. }
  3891. },
  3892. [
  3893. {
  3894. name: "Macro",
  3895. height: math.unit(2500, "feet")
  3896. },
  3897. {
  3898. name: "Megamacro",
  3899. height: math.unit(50, "miles"),
  3900. default: true
  3901. },
  3902. {
  3903. name: "Gigamacro",
  3904. height: math.unit(5000, "miles")
  3905. },
  3906. {
  3907. name: "Teramacro",
  3908. height: math.unit(250000, "miles")
  3909. },
  3910. ]
  3911. ))
  3912. characterMakers.push(() => makeCharacter(
  3913. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  3914. {
  3915. front: {
  3916. height: math.unit(6, "feet"),
  3917. weight: math.unit(200, "lbs"),
  3918. name: "Front",
  3919. image: {
  3920. source: "./media/characters/vulpes/front.svg",
  3921. extra: 573 / 543,
  3922. bottom: 0.033
  3923. }
  3924. },
  3925. side: {
  3926. height: math.unit(6, "feet"),
  3927. weight: math.unit(200, "lbs"),
  3928. name: "Side",
  3929. image: {
  3930. source: "./media/characters/vulpes/side.svg",
  3931. extra: 573 / 543,
  3932. bottom: 0.01
  3933. }
  3934. },
  3935. back: {
  3936. height: math.unit(6, "feet"),
  3937. weight: math.unit(200, "lbs"),
  3938. name: "Back",
  3939. image: {
  3940. source: "./media/characters/vulpes/back.svg",
  3941. extra: 573 / 543,
  3942. }
  3943. },
  3944. feet: {
  3945. height: math.unit(1.276, "feet"),
  3946. name: "Feet",
  3947. image: {
  3948. source: "./media/characters/vulpes/feet.svg"
  3949. }
  3950. },
  3951. maw: {
  3952. height: math.unit(1.18, "feet"),
  3953. name: "Maw",
  3954. image: {
  3955. source: "./media/characters/vulpes/maw.svg"
  3956. }
  3957. },
  3958. },
  3959. [
  3960. {
  3961. name: "Micro",
  3962. height: math.unit(2, "inches")
  3963. },
  3964. {
  3965. name: "Normal",
  3966. height: math.unit(6.3, "feet")
  3967. },
  3968. {
  3969. name: "Macro",
  3970. height: math.unit(850, "feet")
  3971. },
  3972. {
  3973. name: "Megamacro",
  3974. height: math.unit(7500, "feet"),
  3975. default: true
  3976. },
  3977. {
  3978. name: "Gigamacro",
  3979. height: math.unit(570000, "miles")
  3980. }
  3981. ]
  3982. ))
  3983. characterMakers.push(() => makeCharacter(
  3984. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  3985. {
  3986. front: {
  3987. height: math.unit(6, "feet"),
  3988. weight: math.unit(210, "lbs"),
  3989. name: "Front",
  3990. image: {
  3991. source: "./media/characters/rain-fallen/front.svg"
  3992. }
  3993. },
  3994. side: {
  3995. height: math.unit(6, "feet"),
  3996. weight: math.unit(210, "lbs"),
  3997. name: "Side",
  3998. image: {
  3999. source: "./media/characters/rain-fallen/side.svg"
  4000. }
  4001. },
  4002. back: {
  4003. height: math.unit(6, "feet"),
  4004. weight: math.unit(210, "lbs"),
  4005. name: "Back",
  4006. image: {
  4007. source: "./media/characters/rain-fallen/back.svg"
  4008. }
  4009. },
  4010. feral: {
  4011. height: math.unit(9, "feet"),
  4012. weight: math.unit(700, "lbs"),
  4013. name: "Feral",
  4014. image: {
  4015. source: "./media/characters/rain-fallen/feral.svg"
  4016. }
  4017. },
  4018. },
  4019. [
  4020. {
  4021. name: "Normal",
  4022. height: math.unit(5, "meter")
  4023. },
  4024. {
  4025. name: "Macro",
  4026. height: math.unit(150, "meter"),
  4027. default: true
  4028. },
  4029. {
  4030. name: "Megamacro",
  4031. height: math.unit(278e6, "meter")
  4032. },
  4033. {
  4034. name: "Gigamacro",
  4035. height: math.unit(2e9, "meter")
  4036. },
  4037. {
  4038. name: "Teramacro",
  4039. height: math.unit(8e12, "meter")
  4040. },
  4041. {
  4042. name: "Devourer",
  4043. height: math.unit(14, "zettameters")
  4044. },
  4045. {
  4046. name: "Scarlet King",
  4047. height: math.unit(18, "yottameters")
  4048. },
  4049. {
  4050. name: "Void",
  4051. height: math.unit(6.66e66, "yottameters")
  4052. }
  4053. ]
  4054. ))
  4055. characterMakers.push(() => makeCharacter(
  4056. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4057. {
  4058. standing: {
  4059. height: math.unit(6, "feet"),
  4060. weight: math.unit(180, "lbs"),
  4061. name: "Standing",
  4062. image: {
  4063. source: "./media/characters/zaakira/standing.svg"
  4064. }
  4065. },
  4066. laying: {
  4067. height: math.unit(3, "feet"),
  4068. weight: math.unit(180, "lbs"),
  4069. name: "Laying",
  4070. image: {
  4071. source: "./media/characters/zaakira/laying.svg"
  4072. }
  4073. },
  4074. },
  4075. [
  4076. {
  4077. name: "Normal",
  4078. height: math.unit(12, "feet")
  4079. },
  4080. {
  4081. name: "Macro",
  4082. height: math.unit(279, "feet"),
  4083. default: true
  4084. }
  4085. ]
  4086. ))
  4087. characterMakers.push(() => makeCharacter(
  4088. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4089. {
  4090. front: {
  4091. height: math.unit(6, "feet"),
  4092. weight: math.unit(250, "lbs"),
  4093. name: "Front",
  4094. image: {
  4095. source: "./media/characters/sigvald/front.svg",
  4096. extra: 1000 / 850
  4097. }
  4098. },
  4099. back: {
  4100. height: math.unit(6, "feet"),
  4101. weight: math.unit(250, "lbs"),
  4102. name: "Back",
  4103. image: {
  4104. source: "./media/characters/sigvald/back.svg"
  4105. }
  4106. },
  4107. },
  4108. [
  4109. {
  4110. name: "Normal",
  4111. height: math.unit(8, "feet")
  4112. },
  4113. {
  4114. name: "Large",
  4115. height: math.unit(12, "feet")
  4116. },
  4117. {
  4118. name: "Larger",
  4119. height: math.unit(20, "feet")
  4120. },
  4121. {
  4122. name: "Macro",
  4123. height: math.unit(150, "feet")
  4124. },
  4125. {
  4126. name: "Macro+",
  4127. height: math.unit(200, "feet"),
  4128. default: true
  4129. },
  4130. ]
  4131. ))
  4132. characterMakers.push(() => makeCharacter(
  4133. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4134. {
  4135. side: {
  4136. height: math.unit(12, "feet"),
  4137. weight: math.unit(2000, "kg"),
  4138. name: "Side",
  4139. image: {
  4140. source: "./media/characters/scott/side.svg",
  4141. extra: 754 / 724,
  4142. bottom: 0.069
  4143. }
  4144. },
  4145. upright: {
  4146. height: math.unit(12, "feet"),
  4147. weight: math.unit(2000, "kg"),
  4148. name: "Upright",
  4149. image: {
  4150. source: "./media/characters/scott/upright.svg",
  4151. extra: 3881 / 3722,
  4152. bottom: 0.05
  4153. }
  4154. },
  4155. },
  4156. [
  4157. {
  4158. name: "Normal",
  4159. height: math.unit(12, "feet"),
  4160. default: true
  4161. },
  4162. ]
  4163. ))
  4164. characterMakers.push(() => makeCharacter(
  4165. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4166. {
  4167. side: {
  4168. height: math.unit(8, "meters"),
  4169. weight: math.unit(84755, "lbs"),
  4170. name: "Side",
  4171. image: {
  4172. source: "./media/characters/tobias/side.svg",
  4173. extra: 1474 / 1096,
  4174. bottom: 38.9 / 1513.1235
  4175. }
  4176. },
  4177. },
  4178. [
  4179. {
  4180. name: "Normal",
  4181. height: math.unit(8, "meters"),
  4182. default: true
  4183. },
  4184. ]
  4185. ))
  4186. characterMakers.push(() => makeCharacter(
  4187. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4188. {
  4189. front: {
  4190. height: math.unit(5.5, "feet"),
  4191. weight: math.unit(400, "lbs"),
  4192. name: "Front",
  4193. image: {
  4194. source: "./media/characters/kieran/front.svg",
  4195. extra: 2694 / 2364,
  4196. bottom: 217 / 2908
  4197. }
  4198. },
  4199. side: {
  4200. height: math.unit(5.5, "feet"),
  4201. weight: math.unit(400, "lbs"),
  4202. name: "Side",
  4203. image: {
  4204. source: "./media/characters/kieran/side.svg",
  4205. extra: 875 / 777,
  4206. bottom: 84.6 / 959
  4207. }
  4208. },
  4209. },
  4210. [
  4211. {
  4212. name: "Normal",
  4213. height: math.unit(5.5, "feet"),
  4214. default: true
  4215. },
  4216. ]
  4217. ))
  4218. characterMakers.push(() => makeCharacter(
  4219. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4220. {
  4221. side: {
  4222. height: math.unit(2, "meters"),
  4223. weight: math.unit(70, "kg"),
  4224. name: "Side",
  4225. image: {
  4226. source: "./media/characters/sanya/side.svg",
  4227. bottom: 0.02,
  4228. extra: 1.02
  4229. }
  4230. },
  4231. },
  4232. [
  4233. {
  4234. name: "Small",
  4235. height: math.unit(2, "meters")
  4236. },
  4237. {
  4238. name: "Normal",
  4239. height: math.unit(3, "meters")
  4240. },
  4241. {
  4242. name: "Macro",
  4243. height: math.unit(16, "meters"),
  4244. default: true
  4245. },
  4246. ]
  4247. ))
  4248. characterMakers.push(() => makeCharacter(
  4249. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4250. {
  4251. front: {
  4252. height: math.unit(2, "meters"),
  4253. weight: math.unit(120, "kg"),
  4254. name: "Front",
  4255. image: {
  4256. source: "./media/characters/miranda/front.svg",
  4257. extra: 195/185,
  4258. bottom: 10.9/206.5
  4259. }
  4260. },
  4261. back: {
  4262. height: math.unit(2, "meters"),
  4263. weight: math.unit(120, "kg"),
  4264. name: "Back",
  4265. image: {
  4266. source: "./media/characters/miranda/back.svg",
  4267. extra: 201/193,
  4268. bottom: 2.3/203.7
  4269. }
  4270. },
  4271. },
  4272. [
  4273. {
  4274. name: "Normal",
  4275. height: math.unit(10, "feet"),
  4276. default: true
  4277. }
  4278. ]
  4279. ))
  4280. characterMakers.push(() => makeCharacter(
  4281. { name: "James", species: ["deer"], tags: ["anthro"] },
  4282. {
  4283. side: {
  4284. height: math.unit(2, "meters"),
  4285. weight: math.unit(100, "kg"),
  4286. name: "Front",
  4287. image: {
  4288. source: "./media/characters/james/front.svg",
  4289. extra: 10 / 8.5
  4290. }
  4291. },
  4292. },
  4293. [
  4294. {
  4295. name: "Normal",
  4296. height: math.unit(8.5, "feet"),
  4297. default: true
  4298. }
  4299. ]
  4300. ))
  4301. characterMakers.push(() => makeCharacter(
  4302. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4303. {
  4304. side: {
  4305. height: math.unit(9.5, "feet"),
  4306. weight: math.unit(2500, "lbs"),
  4307. name: "Side",
  4308. image: {
  4309. source: "./media/characters/heather/side.svg"
  4310. }
  4311. },
  4312. },
  4313. [
  4314. {
  4315. name: "Normal",
  4316. height: math.unit(9.5, "feet"),
  4317. default: true
  4318. }
  4319. ]
  4320. ))
  4321. characterMakers.push(() => makeCharacter(
  4322. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4323. {
  4324. side: {
  4325. height: math.unit(6.5, "feet"),
  4326. weight: math.unit(400, "lbs"),
  4327. name: "Side",
  4328. image: {
  4329. source: "./media/characters/lukas/side.svg",
  4330. extra: 7.25 / 6.5
  4331. }
  4332. },
  4333. },
  4334. [
  4335. {
  4336. name: "Normal",
  4337. height: math.unit(6.5, "feet"),
  4338. default: true
  4339. }
  4340. ]
  4341. ))
  4342. characterMakers.push(() => makeCharacter(
  4343. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4344. {
  4345. side: {
  4346. height: math.unit(5, "feet"),
  4347. weight: math.unit(3000, "lbs"),
  4348. name: "Side",
  4349. image: {
  4350. source: "./media/characters/louise/side.svg"
  4351. }
  4352. },
  4353. },
  4354. [
  4355. {
  4356. name: "Normal",
  4357. height: math.unit(5, "feet"),
  4358. default: true
  4359. }
  4360. ]
  4361. ))
  4362. characterMakers.push(() => makeCharacter(
  4363. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4364. {
  4365. side: {
  4366. height: math.unit(6, "feet"),
  4367. weight: math.unit(150, "lbs"),
  4368. name: "Side",
  4369. image: {
  4370. source: "./media/characters/ramona/side.svg"
  4371. }
  4372. },
  4373. },
  4374. [
  4375. {
  4376. name: "Normal",
  4377. height: math.unit(5.3, "meters"),
  4378. default: true
  4379. },
  4380. {
  4381. name: "Macro",
  4382. height: math.unit(20, "stories")
  4383. },
  4384. {
  4385. name: "Macro+",
  4386. height: math.unit(50, "stories")
  4387. },
  4388. ]
  4389. ))
  4390. characterMakers.push(() => makeCharacter(
  4391. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4392. {
  4393. standing: {
  4394. height: math.unit(5.75, "feet"),
  4395. weight: math.unit(160, "lbs"),
  4396. name: "Standing",
  4397. image: {
  4398. source: "./media/characters/deerpuff/standing.svg",
  4399. extra: 682 / 624
  4400. }
  4401. },
  4402. sitting: {
  4403. height: math.unit(5.75 / 1.79, "feet"),
  4404. weight: math.unit(160, "lbs"),
  4405. name: "Sitting",
  4406. image: {
  4407. source: "./media/characters/deerpuff/sitting.svg",
  4408. bottom: 44 / 400,
  4409. extra: 1
  4410. }
  4411. },
  4412. taurLaying: {
  4413. height: math.unit(6, "feet"),
  4414. weight: math.unit(400, "lbs"),
  4415. name: "Taur (Laying)",
  4416. image: {
  4417. source: "./media/characters/deerpuff/taur-laying.svg"
  4418. }
  4419. },
  4420. },
  4421. [
  4422. {
  4423. name: "Puffball",
  4424. height: math.unit(6, "inches")
  4425. },
  4426. {
  4427. name: "Normalpuff",
  4428. height: math.unit(5.75, "feet")
  4429. },
  4430. {
  4431. name: "Macropuff",
  4432. height: math.unit(1500, "feet"),
  4433. default: true
  4434. },
  4435. {
  4436. name: "Megapuff",
  4437. height: math.unit(500, "miles")
  4438. },
  4439. {
  4440. name: "Gigapuff",
  4441. height: math.unit(250000, "miles")
  4442. },
  4443. {
  4444. name: "Omegapuff",
  4445. height: math.unit(1000, "lightyears")
  4446. },
  4447. ]
  4448. ))
  4449. characterMakers.push(() => makeCharacter(
  4450. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4451. {
  4452. stomping: {
  4453. height: math.unit(6, "feet"),
  4454. weight: math.unit(170, "lbs"),
  4455. name: "Stomping",
  4456. image: {
  4457. source: "./media/characters/vivian/stomping.svg"
  4458. }
  4459. },
  4460. sitting: {
  4461. height: math.unit(6 / 1.75, "feet"),
  4462. weight: math.unit(170, "lbs"),
  4463. name: "Sitting",
  4464. image: {
  4465. source: "./media/characters/vivian/sitting.svg",
  4466. bottom: 1 / 6.4,
  4467. extra: 1,
  4468. }
  4469. },
  4470. },
  4471. [
  4472. {
  4473. name: "Normal",
  4474. height: math.unit(7, "feet"),
  4475. default: true
  4476. },
  4477. {
  4478. name: "Macro",
  4479. height: math.unit(10, "stories")
  4480. },
  4481. {
  4482. name: "Macro+",
  4483. height: math.unit(30, "stories")
  4484. },
  4485. {
  4486. name: "Megamacro",
  4487. height: math.unit(10, "miles")
  4488. },
  4489. {
  4490. name: "Megamacro+",
  4491. height: math.unit(2750000, "meters")
  4492. },
  4493. ]
  4494. ))
  4495. characterMakers.push(() => makeCharacter(
  4496. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4497. {
  4498. front: {
  4499. height: math.unit(6, "feet"),
  4500. weight: math.unit(160, "lbs"),
  4501. name: "Front",
  4502. image: {
  4503. source: "./media/characters/prince/front.svg",
  4504. extra: 3400 / 3000
  4505. }
  4506. },
  4507. jumping: {
  4508. height: math.unit(6, "feet"),
  4509. weight: math.unit(160, "lbs"),
  4510. name: "Jumping",
  4511. image: {
  4512. source: "./media/characters/prince/jump.svg",
  4513. extra: 2555 / 2134
  4514. }
  4515. },
  4516. },
  4517. [
  4518. {
  4519. name: "Normal",
  4520. height: math.unit(7.75, "feet"),
  4521. default: true
  4522. },
  4523. {
  4524. name: "Not cute",
  4525. height: math.unit(17, "feet")
  4526. },
  4527. {
  4528. name: "I said NOT",
  4529. height: math.unit(91, "feet")
  4530. },
  4531. {
  4532. name: "Please stop",
  4533. height: math.unit(560, "feet")
  4534. },
  4535. {
  4536. name: "What have you done",
  4537. height: math.unit(2200, "feet")
  4538. },
  4539. {
  4540. name: "Deer God",
  4541. height: math.unit(3.6, "miles")
  4542. },
  4543. ]
  4544. ))
  4545. characterMakers.push(() => makeCharacter(
  4546. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4547. {
  4548. standing: {
  4549. height: math.unit(6, "feet"),
  4550. weight: math.unit(300, "lbs"),
  4551. name: "Standing",
  4552. image: {
  4553. source: "./media/characters/psymon/standing.svg",
  4554. extra: 1888 / 1810,
  4555. bottom: 0.05
  4556. }
  4557. },
  4558. slithering: {
  4559. height: math.unit(6, "feet"),
  4560. weight: math.unit(300, "lbs"),
  4561. name: "Slithering",
  4562. image: {
  4563. source: "./media/characters/psymon/slithering.svg",
  4564. extra: 1330 / 1224
  4565. }
  4566. },
  4567. slitheringAlt: {
  4568. height: math.unit(6, "feet"),
  4569. weight: math.unit(300, "lbs"),
  4570. name: "Slithering (Alt)",
  4571. image: {
  4572. source: "./media/characters/psymon/slithering-alt.svg",
  4573. extra: 1330 / 1224
  4574. }
  4575. },
  4576. },
  4577. [
  4578. {
  4579. name: "Normal",
  4580. height: math.unit(11.25, "feet"),
  4581. default: true
  4582. },
  4583. {
  4584. name: "Large",
  4585. height: math.unit(27, "feet")
  4586. },
  4587. {
  4588. name: "Giant",
  4589. height: math.unit(87, "feet")
  4590. },
  4591. {
  4592. name: "Macro",
  4593. height: math.unit(365, "feet")
  4594. },
  4595. {
  4596. name: "Megamacro",
  4597. height: math.unit(3, "miles")
  4598. },
  4599. {
  4600. name: "World Serpent",
  4601. height: math.unit(8000, "miles")
  4602. },
  4603. ]
  4604. ))
  4605. characterMakers.push(() => makeCharacter(
  4606. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4607. {
  4608. front: {
  4609. height: math.unit(6, "feet"),
  4610. weight: math.unit(180, "lbs"),
  4611. name: "Front",
  4612. image: {
  4613. source: "./media/characters/daimos/front.svg",
  4614. extra: 4160 / 3897,
  4615. bottom: 0.021
  4616. }
  4617. }
  4618. },
  4619. [
  4620. {
  4621. name: "Normal",
  4622. height: math.unit(8, "feet"),
  4623. default: true
  4624. },
  4625. {
  4626. name: "Big Dog",
  4627. height: math.unit(22, "feet")
  4628. },
  4629. {
  4630. name: "Macro",
  4631. height: math.unit(127, "feet")
  4632. },
  4633. {
  4634. name: "Megamacro",
  4635. height: math.unit(3600, "feet")
  4636. },
  4637. ]
  4638. ))
  4639. characterMakers.push(() => makeCharacter(
  4640. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4641. {
  4642. side: {
  4643. height: math.unit(6, "feet"),
  4644. weight: math.unit(180, "lbs"),
  4645. name: "Side",
  4646. image: {
  4647. source: "./media/characters/blake/side.svg",
  4648. extra: 1212 / 1120,
  4649. bottom: 0.05
  4650. }
  4651. },
  4652. crouched: {
  4653. height: math.unit(6 * 0.57, "feet"),
  4654. weight: math.unit(180, "lbs"),
  4655. name: "Crouched",
  4656. image: {
  4657. source: "./media/characters/blake/crouched.svg",
  4658. extra: 840 / 587,
  4659. bottom: 0.04
  4660. }
  4661. },
  4662. bent: {
  4663. height: math.unit(6 * 0.75, "feet"),
  4664. weight: math.unit(180, "lbs"),
  4665. name: "Bent",
  4666. image: {
  4667. source: "./media/characters/blake/bent.svg",
  4668. extra: 592 / 544,
  4669. bottom: 0.035
  4670. }
  4671. },
  4672. },
  4673. [
  4674. {
  4675. name: "Normal",
  4676. height: math.unit(8 + 1 / 6, "feet"),
  4677. default: true
  4678. },
  4679. {
  4680. name: "Big Backside",
  4681. height: math.unit(37, "feet")
  4682. },
  4683. {
  4684. name: "Subway Shredder",
  4685. height: math.unit(72, "feet")
  4686. },
  4687. {
  4688. name: "City Carver",
  4689. height: math.unit(1675, "feet")
  4690. },
  4691. {
  4692. name: "Tectonic Tweaker",
  4693. height: math.unit(2300, "miles")
  4694. },
  4695. ]
  4696. ))
  4697. characterMakers.push(() => makeCharacter(
  4698. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4699. {
  4700. front: {
  4701. height: math.unit(6, "feet"),
  4702. weight: math.unit(180, "lbs"),
  4703. name: "Front",
  4704. image: {
  4705. source: "./media/characters/guisetto/front.svg",
  4706. extra: 856 / 817,
  4707. bottom: 0.06
  4708. }
  4709. },
  4710. airborne: {
  4711. height: math.unit(6, "feet"),
  4712. weight: math.unit(180, "lbs"),
  4713. name: "Airborne",
  4714. image: {
  4715. source: "./media/characters/guisetto/airborne.svg",
  4716. extra: 584 / 525
  4717. }
  4718. },
  4719. },
  4720. [
  4721. {
  4722. name: "Normal",
  4723. height: math.unit(10 + 11 / 12, "feet"),
  4724. default: true
  4725. },
  4726. {
  4727. name: "Large",
  4728. height: math.unit(35, "feet")
  4729. },
  4730. {
  4731. name: "Macro",
  4732. height: math.unit(475, "feet")
  4733. },
  4734. ]
  4735. ))
  4736. characterMakers.push(() => makeCharacter(
  4737. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  4738. {
  4739. front: {
  4740. height: math.unit(6, "feet"),
  4741. weight: math.unit(180, "lbs"),
  4742. name: "Front",
  4743. image: {
  4744. source: "./media/characters/luxor/front.svg",
  4745. extra: 2940 / 2152
  4746. }
  4747. },
  4748. back: {
  4749. height: math.unit(6, "feet"),
  4750. weight: math.unit(180, "lbs"),
  4751. name: "Back",
  4752. image: {
  4753. source: "./media/characters/luxor/back.svg",
  4754. extra: 1083 / 960
  4755. }
  4756. },
  4757. },
  4758. [
  4759. {
  4760. name: "Normal",
  4761. height: math.unit(5 + 5 / 6, "feet"),
  4762. default: true
  4763. },
  4764. {
  4765. name: "Lamp",
  4766. height: math.unit(50, "feet")
  4767. },
  4768. {
  4769. name: "Lämp",
  4770. height: math.unit(300, "feet")
  4771. },
  4772. {
  4773. name: "The sun is a lamp",
  4774. height: math.unit(250000, "miles")
  4775. },
  4776. ]
  4777. ))
  4778. characterMakers.push(() => makeCharacter(
  4779. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  4780. {
  4781. front: {
  4782. height: math.unit(6, "feet"),
  4783. weight: math.unit(50, "lbs"),
  4784. name: "Front",
  4785. image: {
  4786. source: "./media/characters/huoyan/front.svg"
  4787. }
  4788. },
  4789. side: {
  4790. height: math.unit(6, "feet"),
  4791. weight: math.unit(180, "lbs"),
  4792. name: "Side",
  4793. image: {
  4794. source: "./media/characters/huoyan/side.svg"
  4795. }
  4796. },
  4797. },
  4798. [
  4799. {
  4800. name: "Chef",
  4801. height: math.unit(9, "feet")
  4802. },
  4803. {
  4804. name: "Normal",
  4805. height: math.unit(65, "feet"),
  4806. default: true
  4807. },
  4808. {
  4809. name: "Macro",
  4810. height: math.unit(780, "feet")
  4811. },
  4812. {
  4813. name: "Flaming Mountain",
  4814. height: math.unit(4.8, "miles")
  4815. },
  4816. {
  4817. name: "Celestial",
  4818. height: math.unit(765000, "miles")
  4819. },
  4820. ]
  4821. ))
  4822. characterMakers.push(() => makeCharacter(
  4823. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  4824. {
  4825. front: {
  4826. height: math.unit(5 + 3 / 4, "feet"),
  4827. weight: math.unit(120, "lbs"),
  4828. name: "Front",
  4829. image: {
  4830. source: "./media/characters/tails/front.svg"
  4831. }
  4832. }
  4833. },
  4834. [
  4835. {
  4836. name: "Normal",
  4837. height: math.unit(5 + 3 / 4, "feet"),
  4838. default: true
  4839. }
  4840. ]
  4841. ))
  4842. characterMakers.push(() => makeCharacter(
  4843. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  4844. {
  4845. front: {
  4846. height: math.unit(4, "feet"),
  4847. weight: math.unit(50, "lbs"),
  4848. name: "Front",
  4849. image: {
  4850. source: "./media/characters/rainy/front.svg"
  4851. }
  4852. }
  4853. },
  4854. [
  4855. {
  4856. name: "Macro",
  4857. height: math.unit(800, "feet"),
  4858. default: true
  4859. }
  4860. ]
  4861. ))
  4862. characterMakers.push(() => makeCharacter(
  4863. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  4864. {
  4865. front: {
  4866. height: math.unit(6, "feet"),
  4867. weight: math.unit(150, "lbs"),
  4868. name: "Front",
  4869. image: {
  4870. source: "./media/characters/rainier/front.svg"
  4871. }
  4872. }
  4873. },
  4874. [
  4875. {
  4876. name: "Micro",
  4877. height: math.unit(2, "mm"),
  4878. default: true
  4879. }
  4880. ]
  4881. ))
  4882. characterMakers.push(() => makeCharacter(
  4883. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  4884. {
  4885. front: {
  4886. height: math.unit(6, "feet"),
  4887. weight: math.unit(180, "lbs"),
  4888. name: "Front",
  4889. image: {
  4890. source: "./media/characters/andy/front.svg"
  4891. }
  4892. }
  4893. },
  4894. [
  4895. {
  4896. name: "Normal",
  4897. height: math.unit(8, "feet"),
  4898. default: true
  4899. },
  4900. {
  4901. name: "Macro",
  4902. height: math.unit(1000, "feet")
  4903. },
  4904. {
  4905. name: "Megamacro",
  4906. height: math.unit(5, "miles")
  4907. },
  4908. {
  4909. name: "Gigamacro",
  4910. height: math.unit(5000, "miles")
  4911. },
  4912. ]
  4913. ))
  4914. characterMakers.push(() => makeCharacter(
  4915. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  4916. {
  4917. front: {
  4918. height: math.unit(6, "feet"),
  4919. weight: math.unit(210, "lbs"),
  4920. name: "Front",
  4921. image: {
  4922. source: "./media/characters/cimmaron/front-sfw.svg",
  4923. extra: 701 / 676,
  4924. bottom: 0.046
  4925. }
  4926. },
  4927. back: {
  4928. height: math.unit(6, "feet"),
  4929. weight: math.unit(210, "lbs"),
  4930. name: "Back",
  4931. image: {
  4932. source: "./media/characters/cimmaron/back-sfw.svg",
  4933. extra: 701 / 676,
  4934. bottom: 0.046
  4935. }
  4936. },
  4937. frontNsfw: {
  4938. height: math.unit(6, "feet"),
  4939. weight: math.unit(210, "lbs"),
  4940. name: "Front (NSFW)",
  4941. image: {
  4942. source: "./media/characters/cimmaron/front-nsfw.svg",
  4943. extra: 701 / 676,
  4944. bottom: 0.046
  4945. }
  4946. },
  4947. backNsfw: {
  4948. height: math.unit(6, "feet"),
  4949. weight: math.unit(210, "lbs"),
  4950. name: "Back (NSFW)",
  4951. image: {
  4952. source: "./media/characters/cimmaron/back-nsfw.svg",
  4953. extra: 701 / 676,
  4954. bottom: 0.046
  4955. }
  4956. },
  4957. dick: {
  4958. height: math.unit(1.714, "feet"),
  4959. name: "Dick",
  4960. image: {
  4961. source: "./media/characters/cimmaron/dick.svg"
  4962. }
  4963. },
  4964. },
  4965. [
  4966. {
  4967. name: "Normal",
  4968. height: math.unit(6, "feet"),
  4969. default: true
  4970. },
  4971. {
  4972. name: "Macro Mayor",
  4973. height: math.unit(350, "meters")
  4974. },
  4975. ]
  4976. ))
  4977. characterMakers.push(() => makeCharacter(
  4978. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  4979. {
  4980. front: {
  4981. height: math.unit(6, "feet"),
  4982. weight: math.unit(200, "lbs"),
  4983. name: "Front",
  4984. image: {
  4985. source: "./media/characters/akari/front.svg",
  4986. extra: 962 / 901,
  4987. bottom: 0.04
  4988. }
  4989. }
  4990. },
  4991. [
  4992. {
  4993. name: "Micro",
  4994. height: math.unit(5, "inches"),
  4995. default: true
  4996. },
  4997. {
  4998. name: "Normal",
  4999. height: math.unit(7, "feet")
  5000. },
  5001. ]
  5002. ))
  5003. characterMakers.push(() => makeCharacter(
  5004. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5005. {
  5006. front: {
  5007. height: math.unit(6, "feet"),
  5008. weight: math.unit(140, "lbs"),
  5009. name: "Front",
  5010. image: {
  5011. source: "./media/characters/cynosura/front.svg",
  5012. extra: 896 / 847
  5013. }
  5014. },
  5015. back: {
  5016. height: math.unit(6, "feet"),
  5017. weight: math.unit(140, "lbs"),
  5018. name: "Back",
  5019. image: {
  5020. source: "./media/characters/cynosura/back.svg",
  5021. extra: 1365 / 1250
  5022. }
  5023. },
  5024. },
  5025. [
  5026. {
  5027. name: "Micro",
  5028. height: math.unit(4, "inches")
  5029. },
  5030. {
  5031. name: "Normal",
  5032. height: math.unit(5.75, "feet"),
  5033. default: true
  5034. },
  5035. {
  5036. name: "Tall",
  5037. height: math.unit(10, "feet")
  5038. },
  5039. {
  5040. name: "Big",
  5041. height: math.unit(20, "feet")
  5042. },
  5043. {
  5044. name: "Macro",
  5045. height: math.unit(50, "feet")
  5046. },
  5047. ]
  5048. ))
  5049. characterMakers.push(() => makeCharacter(
  5050. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5051. {
  5052. front: {
  5053. height: math.unit(6, "feet"),
  5054. weight: math.unit(170, "lbs"),
  5055. name: "Front",
  5056. image: {
  5057. source: "./media/characters/gin/front.svg",
  5058. extra: 1.053,
  5059. bottom: 0.025
  5060. }
  5061. },
  5062. foot: {
  5063. height: math.unit(6 / 4.25, "feet"),
  5064. name: "Foot",
  5065. image: {
  5066. source: "./media/characters/gin/foot.svg"
  5067. }
  5068. },
  5069. sole: {
  5070. height: math.unit(6 / 4.40, "feet"),
  5071. name: "Sole",
  5072. image: {
  5073. source: "./media/characters/gin/sole.svg"
  5074. }
  5075. },
  5076. },
  5077. [
  5078. {
  5079. name: "Normal",
  5080. height: math.unit(13 + 2 / 12, "feet")
  5081. },
  5082. {
  5083. name: "Macro",
  5084. height: math.unit(1500, "feet")
  5085. },
  5086. {
  5087. name: "Megamacro",
  5088. height: math.unit(200, "miles"),
  5089. default: true
  5090. },
  5091. {
  5092. name: "Gigamacro",
  5093. height: math.unit(500, "megameters")
  5094. },
  5095. {
  5096. name: "Teramacro",
  5097. height: math.unit(15, "lightyears")
  5098. }
  5099. ]
  5100. ))
  5101. characterMakers.push(() => makeCharacter(
  5102. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5103. {
  5104. front: {
  5105. height: math.unit(6 + 1 / 6, "feet"),
  5106. weight: math.unit(178, "lbs"),
  5107. name: "Front",
  5108. image: {
  5109. source: "./media/characters/guy/front.svg"
  5110. }
  5111. }
  5112. },
  5113. [
  5114. {
  5115. name: "Normal",
  5116. height: math.unit(6 + 1 / 6, "feet"),
  5117. default: true
  5118. },
  5119. {
  5120. name: "Large",
  5121. height: math.unit(25 + 7 / 12, "feet")
  5122. },
  5123. {
  5124. name: "Macro",
  5125. height: math.unit(60 + 9 / 12, "feet")
  5126. },
  5127. {
  5128. name: "Macro+",
  5129. height: math.unit(246, "feet")
  5130. },
  5131. {
  5132. name: "Macro++",
  5133. height: math.unit(878, "feet")
  5134. }
  5135. ]
  5136. ))
  5137. characterMakers.push(() => makeCharacter(
  5138. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5139. {
  5140. front: {
  5141. height: math.unit(9, "feet"),
  5142. weight: math.unit(800, "lbs"),
  5143. name: "Front",
  5144. image: {
  5145. source: "./media/characters/tiberius/front.svg",
  5146. extra: 2295 / 2071
  5147. }
  5148. },
  5149. back: {
  5150. height: math.unit(9, "feet"),
  5151. weight: math.unit(800, "lbs"),
  5152. name: "Back",
  5153. image: {
  5154. source: "./media/characters/tiberius/back.svg",
  5155. extra: 2373 / 2160
  5156. }
  5157. },
  5158. },
  5159. [
  5160. {
  5161. name: "Normal",
  5162. height: math.unit(9, "feet"),
  5163. default: true
  5164. }
  5165. ]
  5166. ))
  5167. characterMakers.push(() => makeCharacter(
  5168. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5169. {
  5170. front: {
  5171. height: math.unit(6, "feet"),
  5172. weight: math.unit(600, "lbs"),
  5173. name: "Front",
  5174. image: {
  5175. source: "./media/characters/surgo/front.svg",
  5176. extra: 3591 / 2227
  5177. }
  5178. },
  5179. back: {
  5180. height: math.unit(6, "feet"),
  5181. weight: math.unit(600, "lbs"),
  5182. name: "Back",
  5183. image: {
  5184. source: "./media/characters/surgo/back.svg",
  5185. extra: 3557 / 2228
  5186. }
  5187. },
  5188. laying: {
  5189. height: math.unit(6 * 0.85, "feet"),
  5190. weight: math.unit(600, "lbs"),
  5191. name: "Laying",
  5192. image: {
  5193. source: "./media/characters/surgo/laying.svg"
  5194. }
  5195. },
  5196. },
  5197. [
  5198. {
  5199. name: "Normal",
  5200. height: math.unit(6, "feet"),
  5201. default: true
  5202. }
  5203. ]
  5204. ))
  5205. characterMakers.push(() => makeCharacter(
  5206. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5207. {
  5208. side: {
  5209. height: math.unit(6, "feet"),
  5210. weight: math.unit(150, "lbs"),
  5211. name: "Side",
  5212. image: {
  5213. source: "./media/characters/cibus/side.svg",
  5214. extra: 800 / 400
  5215. }
  5216. },
  5217. },
  5218. [
  5219. {
  5220. name: "Normal",
  5221. height: math.unit(6, "feet"),
  5222. default: true
  5223. }
  5224. ]
  5225. ))
  5226. characterMakers.push(() => makeCharacter(
  5227. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5228. {
  5229. front: {
  5230. height: math.unit(6, "feet"),
  5231. weight: math.unit(240, "lbs"),
  5232. name: "Front",
  5233. image: {
  5234. source: "./media/characters/nibbles/front.svg"
  5235. }
  5236. },
  5237. side: {
  5238. height: math.unit(6, "feet"),
  5239. weight: math.unit(240, "lbs"),
  5240. name: "Side",
  5241. image: {
  5242. source: "./media/characters/nibbles/side.svg"
  5243. }
  5244. },
  5245. },
  5246. [
  5247. {
  5248. name: "Normal",
  5249. height: math.unit(9, "feet"),
  5250. default: true
  5251. }
  5252. ]
  5253. ))
  5254. characterMakers.push(() => makeCharacter(
  5255. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5256. {
  5257. side: {
  5258. height: math.unit(5 + 1 / 6, "feet"),
  5259. weight: math.unit(130, "lbs"),
  5260. name: "Side",
  5261. image: {
  5262. source: "./media/characters/rikky/side.svg"
  5263. }
  5264. },
  5265. },
  5266. [
  5267. {
  5268. name: "Normal",
  5269. height: math.unit(5 + 1 / 6, "feet")
  5270. },
  5271. {
  5272. name: "Macro",
  5273. height: math.unit(152, "feet"),
  5274. default: true
  5275. },
  5276. {
  5277. name: "Megamacro",
  5278. height: math.unit(7, "miles")
  5279. }
  5280. ]
  5281. ))
  5282. characterMakers.push(() => makeCharacter(
  5283. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5284. {
  5285. side: {
  5286. height: math.unit(370, "cm"),
  5287. weight: math.unit(350, "lbs"),
  5288. name: "Side",
  5289. image: {
  5290. source: "./media/characters/malfressa/side.svg"
  5291. }
  5292. },
  5293. walking: {
  5294. height: math.unit(370, "cm"),
  5295. weight: math.unit(350, "lbs"),
  5296. name: "Walking",
  5297. image: {
  5298. source: "./media/characters/malfressa/walking.svg"
  5299. }
  5300. },
  5301. feral: {
  5302. height: math.unit(2500, "cm"),
  5303. weight: math.unit(100000, "lbs"),
  5304. name: "Feral",
  5305. image: {
  5306. source: "./media/characters/malfressa/feral.svg",
  5307. extra: 2108 / 837,
  5308. bottom: 0.02
  5309. }
  5310. },
  5311. },
  5312. [
  5313. {
  5314. name: "Normal",
  5315. height: math.unit(370, "cm")
  5316. },
  5317. {
  5318. name: "Macro",
  5319. height: math.unit(300, "meters"),
  5320. default: true
  5321. }
  5322. ]
  5323. ))
  5324. characterMakers.push(() => makeCharacter(
  5325. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5326. {
  5327. front: {
  5328. height: math.unit(6, "feet"),
  5329. weight: math.unit(60, "kg"),
  5330. name: "Front",
  5331. image: {
  5332. source: "./media/characters/jaro/front.svg"
  5333. }
  5334. },
  5335. back: {
  5336. height: math.unit(6, "feet"),
  5337. weight: math.unit(60, "kg"),
  5338. name: "Back",
  5339. image: {
  5340. source: "./media/characters/jaro/back.svg"
  5341. }
  5342. },
  5343. },
  5344. [
  5345. {
  5346. name: "Micro",
  5347. height: math.unit(7, "inches")
  5348. },
  5349. {
  5350. name: "Normal",
  5351. height: math.unit(5.5, "feet"),
  5352. default: true
  5353. },
  5354. {
  5355. name: "Minimacro",
  5356. height: math.unit(20, "feet")
  5357. },
  5358. {
  5359. name: "Macro",
  5360. height: math.unit(200, "meters")
  5361. }
  5362. ]
  5363. ))
  5364. characterMakers.push(() => makeCharacter(
  5365. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5366. {
  5367. front: {
  5368. height: math.unit(6, "feet"),
  5369. weight: math.unit(195, "lb"),
  5370. name: "Front",
  5371. image: {
  5372. source: "./media/characters/rogue/front.svg"
  5373. }
  5374. },
  5375. },
  5376. [
  5377. {
  5378. name: "Macro",
  5379. height: math.unit(90, "feet"),
  5380. default: true
  5381. },
  5382. ]
  5383. ))
  5384. characterMakers.push(() => makeCharacter(
  5385. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5386. {
  5387. front: {
  5388. height: math.unit(5 + 8 / 12, "feet"),
  5389. weight: math.unit(140, "lb"),
  5390. name: "Front",
  5391. image: {
  5392. source: "./media/characters/piper/front.svg",
  5393. extra: 3928 / 3681
  5394. }
  5395. },
  5396. },
  5397. [
  5398. {
  5399. name: "Micro",
  5400. height: math.unit(2, "inches")
  5401. },
  5402. {
  5403. name: "Normal",
  5404. height: math.unit(5 + 8 / 12, "feet")
  5405. },
  5406. {
  5407. name: "Macro",
  5408. height: math.unit(250, "feet"),
  5409. default: true
  5410. },
  5411. {
  5412. name: "Megamacro",
  5413. height: math.unit(7, "miles")
  5414. },
  5415. ]
  5416. ))
  5417. characterMakers.push(() => makeCharacter(
  5418. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5419. {
  5420. front: {
  5421. height: math.unit(6, "feet"),
  5422. weight: math.unit(220, "lb"),
  5423. name: "Front",
  5424. image: {
  5425. source: "./media/characters/gemini/front.svg"
  5426. }
  5427. },
  5428. back: {
  5429. height: math.unit(6, "feet"),
  5430. weight: math.unit(220, "lb"),
  5431. name: "Back",
  5432. image: {
  5433. source: "./media/characters/gemini/back.svg"
  5434. }
  5435. },
  5436. kneeling: {
  5437. height: math.unit(6 / 1.5, "feet"),
  5438. weight: math.unit(220, "lb"),
  5439. name: "Kneeling",
  5440. image: {
  5441. source: "./media/characters/gemini/kneeling.svg",
  5442. bottom: 0.02
  5443. }
  5444. },
  5445. },
  5446. [
  5447. {
  5448. name: "Macro",
  5449. height: math.unit(300, "meters"),
  5450. default: true
  5451. },
  5452. {
  5453. name: "Megamacro",
  5454. height: math.unit(6900, "meters")
  5455. },
  5456. ]
  5457. ))
  5458. characterMakers.push(() => makeCharacter(
  5459. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5460. {
  5461. anthro: {
  5462. height: math.unit(2.35, "meters"),
  5463. weight: math.unit(73, "kg"),
  5464. name: "Anthro",
  5465. image: {
  5466. source: "./media/characters/alicia/anthro.svg",
  5467. extra: 2571 / 2385,
  5468. bottom: 75 / 2648
  5469. }
  5470. },
  5471. paw: {
  5472. height: math.unit(1.32, "feet"),
  5473. name: "Paw",
  5474. image: {
  5475. source: "./media/characters/alicia/paw.svg"
  5476. }
  5477. },
  5478. feral: {
  5479. height: math.unit(1.69, "meters"),
  5480. weight: math.unit(73, "kg"),
  5481. name: "Feral",
  5482. image: {
  5483. source: "./media/characters/alicia/feral.svg",
  5484. extra: 2123 / 1715,
  5485. bottom: 222 / 2349
  5486. }
  5487. },
  5488. },
  5489. [
  5490. {
  5491. name: "Normal",
  5492. height: math.unit(2.35, "meters")
  5493. },
  5494. {
  5495. name: "Macro",
  5496. height: math.unit(60, "meters"),
  5497. default: true
  5498. },
  5499. {
  5500. name: "Megamacro",
  5501. height: math.unit(10000, "kilometers")
  5502. },
  5503. ]
  5504. ))
  5505. characterMakers.push(() => makeCharacter(
  5506. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5507. {
  5508. front: {
  5509. height: math.unit(7, "feet"),
  5510. weight: math.unit(250, "lbs"),
  5511. name: "Front",
  5512. image: {
  5513. source: "./media/characters/archy/front.svg"
  5514. }
  5515. }
  5516. },
  5517. [
  5518. {
  5519. name: "Micro",
  5520. height: math.unit(1, "inch")
  5521. },
  5522. {
  5523. name: "Shorty",
  5524. height: math.unit(5, "feet")
  5525. },
  5526. {
  5527. name: "Normal",
  5528. height: math.unit(7, "feet")
  5529. },
  5530. {
  5531. name: "Macro",
  5532. height: math.unit(600, "meters"),
  5533. default: true
  5534. },
  5535. {
  5536. name: "Megamacro",
  5537. height: math.unit(1, "mile")
  5538. },
  5539. ]
  5540. ))
  5541. characterMakers.push(() => makeCharacter(
  5542. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5543. {
  5544. front: {
  5545. height: math.unit(1.65, "meters"),
  5546. weight: math.unit(74, "kg"),
  5547. name: "Front",
  5548. image: {
  5549. source: "./media/characters/berri/front.svg",
  5550. extra: 857 / 837,
  5551. bottom: 18 / 877
  5552. }
  5553. },
  5554. bum: {
  5555. height: math.unit(1.46, "feet"),
  5556. name: "Bum",
  5557. image: {
  5558. source: "./media/characters/berri/bum.svg"
  5559. }
  5560. },
  5561. mouth: {
  5562. height: math.unit(0.44, "feet"),
  5563. name: "Mouth",
  5564. image: {
  5565. source: "./media/characters/berri/mouth.svg"
  5566. }
  5567. },
  5568. paw: {
  5569. height: math.unit(0.826, "feet"),
  5570. name: "Paw",
  5571. image: {
  5572. source: "./media/characters/berri/paw.svg"
  5573. }
  5574. },
  5575. },
  5576. [
  5577. {
  5578. name: "Normal",
  5579. height: math.unit(1.65, "meters")
  5580. },
  5581. {
  5582. name: "Macro",
  5583. height: math.unit(60, "m"),
  5584. default: true
  5585. },
  5586. {
  5587. name: "Megamacro",
  5588. height: math.unit(9.213, "km")
  5589. },
  5590. {
  5591. name: "Planet Eater",
  5592. height: math.unit(489, "megameters")
  5593. },
  5594. {
  5595. name: "Teramacro",
  5596. height: math.unit(2471635000000, "meters")
  5597. },
  5598. {
  5599. name: "Examacro",
  5600. height: math.unit(8.0624e+26, "meters")
  5601. }
  5602. ]
  5603. ))
  5604. characterMakers.push(() => makeCharacter(
  5605. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5606. {
  5607. front: {
  5608. height: math.unit(1.72, "meters"),
  5609. weight: math.unit(68, "kg"),
  5610. name: "Front",
  5611. image: {
  5612. source: "./media/characters/lexi/front.svg"
  5613. }
  5614. }
  5615. },
  5616. [
  5617. {
  5618. name: "Very Smol",
  5619. height: math.unit(10, "mm")
  5620. },
  5621. {
  5622. name: "Micro",
  5623. height: math.unit(6.8, "cm"),
  5624. default: true
  5625. },
  5626. {
  5627. name: "Normal",
  5628. height: math.unit(1.72, "m")
  5629. }
  5630. ]
  5631. ))
  5632. characterMakers.push(() => makeCharacter(
  5633. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5634. {
  5635. front: {
  5636. height: math.unit(1.69, "meters"),
  5637. weight: math.unit(68, "kg"),
  5638. name: "Front",
  5639. image: {
  5640. source: "./media/characters/martin/front.svg",
  5641. extra: 596 / 581
  5642. }
  5643. }
  5644. },
  5645. [
  5646. {
  5647. name: "Micro",
  5648. height: math.unit(6.85, "cm"),
  5649. default: true
  5650. },
  5651. {
  5652. name: "Normal",
  5653. height: math.unit(1.69, "m")
  5654. }
  5655. ]
  5656. ))
  5657. characterMakers.push(() => makeCharacter(
  5658. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5659. {
  5660. front: {
  5661. height: math.unit(1.69, "meters"),
  5662. weight: math.unit(68, "kg"),
  5663. name: "Front",
  5664. image: {
  5665. source: "./media/characters/juno/front.svg"
  5666. }
  5667. }
  5668. },
  5669. [
  5670. {
  5671. name: "Micro",
  5672. height: math.unit(7, "cm")
  5673. },
  5674. {
  5675. name: "Normal",
  5676. height: math.unit(1.89, "m")
  5677. },
  5678. {
  5679. name: "Macro",
  5680. height: math.unit(353, "meters"),
  5681. default: true
  5682. }
  5683. ]
  5684. ))
  5685. characterMakers.push(() => makeCharacter(
  5686. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5687. {
  5688. front: {
  5689. height: math.unit(1.93, "meters"),
  5690. weight: math.unit(83, "kg"),
  5691. name: "Front",
  5692. image: {
  5693. source: "./media/characters/samantha/front.svg"
  5694. }
  5695. },
  5696. frontClothed: {
  5697. height: math.unit(1.93, "meters"),
  5698. weight: math.unit(83, "kg"),
  5699. name: "Front (Clothed)",
  5700. image: {
  5701. source: "./media/characters/samantha/front-clothed.svg"
  5702. }
  5703. },
  5704. back: {
  5705. height: math.unit(1.93, "meters"),
  5706. weight: math.unit(83, "kg"),
  5707. name: "Back",
  5708. image: {
  5709. source: "./media/characters/samantha/back.svg"
  5710. }
  5711. },
  5712. },
  5713. [
  5714. {
  5715. name: "Normal",
  5716. height: math.unit(1.93, "m")
  5717. },
  5718. {
  5719. name: "Macro",
  5720. height: math.unit(74, "meters"),
  5721. default: true
  5722. },
  5723. {
  5724. name: "Macro+",
  5725. height: math.unit(223, "meters"),
  5726. },
  5727. {
  5728. name: "Megamacro",
  5729. height: math.unit(8381, "meters"),
  5730. },
  5731. {
  5732. name: "Megamacro+",
  5733. height: math.unit(12000, "kilometers")
  5734. },
  5735. ]
  5736. ))
  5737. characterMakers.push(() => makeCharacter(
  5738. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  5739. {
  5740. front: {
  5741. height: math.unit(1.92, "meters"),
  5742. weight: math.unit(80, "kg"),
  5743. name: "Front",
  5744. image: {
  5745. source: "./media/characters/dr-clay/front.svg"
  5746. }
  5747. },
  5748. frontClothed: {
  5749. height: math.unit(1.92, "meters"),
  5750. weight: math.unit(80, "kg"),
  5751. name: "Front (Clothed)",
  5752. image: {
  5753. source: "./media/characters/dr-clay/front-clothed.svg"
  5754. }
  5755. }
  5756. },
  5757. [
  5758. {
  5759. name: "Normal",
  5760. height: math.unit(1.92, "m")
  5761. },
  5762. {
  5763. name: "Macro",
  5764. height: math.unit(214, "meters"),
  5765. default: true
  5766. },
  5767. {
  5768. name: "Macro+",
  5769. height: math.unit(12.237, "meters"),
  5770. },
  5771. {
  5772. name: "Megamacro",
  5773. height: math.unit(557, "megameters"),
  5774. },
  5775. {
  5776. name: "Unimaginable",
  5777. height: math.unit(120e9, "lightyears")
  5778. },
  5779. ]
  5780. ))
  5781. characterMakers.push(() => makeCharacter(
  5782. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  5783. {
  5784. front: {
  5785. height: math.unit(2, "meters"),
  5786. weight: math.unit(80, "kg"),
  5787. name: "Front",
  5788. image: {
  5789. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  5790. }
  5791. }
  5792. },
  5793. [
  5794. {
  5795. name: "Teramacro",
  5796. height: math.unit(500000, "lightyears"),
  5797. default: true
  5798. },
  5799. ]
  5800. ))
  5801. characterMakers.push(() => makeCharacter(
  5802. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  5803. {
  5804. front: {
  5805. height: math.unit(2, "meters"),
  5806. weight: math.unit(150, "kg"),
  5807. name: "Front",
  5808. image: {
  5809. source: "./media/characters/vemus/front.svg",
  5810. extra: 2384 / 2084,
  5811. bottom: 0.0123
  5812. }
  5813. }
  5814. },
  5815. [
  5816. {
  5817. name: "Normal",
  5818. height: math.unit(3.75, "meters"),
  5819. default: true
  5820. },
  5821. {
  5822. name: "Big",
  5823. height: math.unit(8, "meters")
  5824. },
  5825. {
  5826. name: "Macro",
  5827. height: math.unit(100, "meters")
  5828. },
  5829. {
  5830. name: "Macro+",
  5831. height: math.unit(1500, "meters")
  5832. },
  5833. {
  5834. name: "Stellar",
  5835. height: math.unit(14e8, "meters")
  5836. },
  5837. ]
  5838. ))
  5839. characterMakers.push(() => makeCharacter(
  5840. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  5841. {
  5842. front: {
  5843. height: math.unit(2, "meters"),
  5844. weight: math.unit(70, "kg"),
  5845. name: "Front",
  5846. image: {
  5847. source: "./media/characters/beherit/front.svg",
  5848. extra: 1408 / 1242
  5849. }
  5850. }
  5851. },
  5852. [
  5853. {
  5854. name: "Normal",
  5855. height: math.unit(6, "feet")
  5856. },
  5857. {
  5858. name: "Lorg",
  5859. height: math.unit(25, "feet"),
  5860. default: true
  5861. },
  5862. {
  5863. name: "Lorger",
  5864. height: math.unit(75, "feet")
  5865. },
  5866. {
  5867. name: "Macro",
  5868. height: math.unit(200, "meters")
  5869. },
  5870. ]
  5871. ))
  5872. characterMakers.push(() => makeCharacter(
  5873. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  5874. {
  5875. front: {
  5876. height: math.unit(2, "meters"),
  5877. weight: math.unit(150, "kg"),
  5878. name: "Front",
  5879. image: {
  5880. source: "./media/characters/everett/front.svg",
  5881. extra: 2038 / 1737,
  5882. bottom: 0.03
  5883. }
  5884. },
  5885. paw: {
  5886. height: math.unit(2 / 3.6, "meters"),
  5887. name: "Paw",
  5888. image: {
  5889. source: "./media/characters/everett/paw.svg"
  5890. }
  5891. },
  5892. },
  5893. [
  5894. {
  5895. name: "Normal",
  5896. height: math.unit(15, "feet"),
  5897. default: true
  5898. },
  5899. {
  5900. name: "Lorg",
  5901. height: math.unit(70, "feet"),
  5902. default: true
  5903. },
  5904. {
  5905. name: "Lorger",
  5906. height: math.unit(250, "feet")
  5907. },
  5908. {
  5909. name: "Macro",
  5910. height: math.unit(500, "meters")
  5911. },
  5912. ]
  5913. ))
  5914. characterMakers.push(() => makeCharacter(
  5915. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  5916. {
  5917. front: {
  5918. height: math.unit(2, "meters"),
  5919. weight: math.unit(86, "kg"),
  5920. name: "Front",
  5921. image: {
  5922. source: "./media/characters/rose-lion/front.svg"
  5923. }
  5924. },
  5925. bent: {
  5926. height: math.unit(2 / 1.4288, "meters"),
  5927. weight: math.unit(86, "kg"),
  5928. name: "Bent",
  5929. image: {
  5930. source: "./media/characters/rose-lion/bent.svg"
  5931. }
  5932. }
  5933. },
  5934. [
  5935. {
  5936. name: "Mini-Micro",
  5937. height: math.unit(1, "cm")
  5938. },
  5939. {
  5940. name: "Micro",
  5941. height: math.unit(3.5, "inches"),
  5942. default: true
  5943. },
  5944. {
  5945. name: "Normal",
  5946. height: math.unit(6 + 1 / 6, "feet")
  5947. },
  5948. {
  5949. name: "Mini-Macro",
  5950. height: math.unit(9 + 10 / 12, "feet")
  5951. },
  5952. ]
  5953. ))
  5954. characterMakers.push(() => makeCharacter(
  5955. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  5956. {
  5957. front: {
  5958. height: math.unit(2, "meters"),
  5959. weight: math.unit(350, "lbs"),
  5960. name: "Front",
  5961. image: {
  5962. source: "./media/characters/regal/front.svg"
  5963. }
  5964. },
  5965. back: {
  5966. height: math.unit(2, "meters"),
  5967. weight: math.unit(350, "lbs"),
  5968. name: "Back",
  5969. image: {
  5970. source: "./media/characters/regal/back.svg"
  5971. }
  5972. },
  5973. },
  5974. [
  5975. {
  5976. name: "Macro",
  5977. height: math.unit(350, "feet"),
  5978. default: true
  5979. }
  5980. ]
  5981. ))
  5982. characterMakers.push(() => makeCharacter(
  5983. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  5984. {
  5985. front: {
  5986. height: math.unit(4 + 11 / 12, "feet"),
  5987. weight: math.unit(100, "lbs"),
  5988. name: "Front",
  5989. image: {
  5990. source: "./media/characters/opal/front.svg"
  5991. }
  5992. },
  5993. frontAlt: {
  5994. height: math.unit(4 + 11 / 12, "feet"),
  5995. weight: math.unit(100, "lbs"),
  5996. name: "Front (Alt)",
  5997. image: {
  5998. source: "./media/characters/opal/front-alt.svg"
  5999. }
  6000. },
  6001. },
  6002. [
  6003. {
  6004. name: "Small",
  6005. height: math.unit(4 + 11 / 12, "feet")
  6006. },
  6007. {
  6008. name: "Normal",
  6009. height: math.unit(20, "feet"),
  6010. default: true
  6011. },
  6012. {
  6013. name: "Macro",
  6014. height: math.unit(120, "feet")
  6015. },
  6016. {
  6017. name: "Megamacro",
  6018. height: math.unit(80, "miles")
  6019. },
  6020. {
  6021. name: "True Size",
  6022. height: math.unit(100000, "lightyears")
  6023. },
  6024. ]
  6025. ))
  6026. characterMakers.push(() => makeCharacter(
  6027. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6028. {
  6029. front: {
  6030. height: math.unit(6, "feet"),
  6031. weight: math.unit(200, "lbs"),
  6032. name: "Front",
  6033. image: {
  6034. source: "./media/characters/vector-wuff/front.svg"
  6035. }
  6036. }
  6037. },
  6038. [
  6039. {
  6040. name: "Normal",
  6041. height: math.unit(2.8, "meters")
  6042. },
  6043. {
  6044. name: "Macro",
  6045. height: math.unit(450, "meters"),
  6046. default: true
  6047. },
  6048. {
  6049. name: "Megamacro",
  6050. height: math.unit(15, "kilometers")
  6051. }
  6052. ]
  6053. ))
  6054. characterMakers.push(() => makeCharacter(
  6055. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6056. {
  6057. front: {
  6058. height: math.unit(6, "feet"),
  6059. weight: math.unit(256, "lbs"),
  6060. name: "Front",
  6061. image: {
  6062. source: "./media/characters/dannik/front.svg"
  6063. }
  6064. }
  6065. },
  6066. [
  6067. {
  6068. name: "Macro",
  6069. height: math.unit(69.57, "meters"),
  6070. default: true
  6071. },
  6072. ]
  6073. ))
  6074. characterMakers.push(() => makeCharacter(
  6075. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6076. {
  6077. front: {
  6078. height: math.unit(6, "feet"),
  6079. weight: math.unit(120, "lbs"),
  6080. name: "Front",
  6081. image: {
  6082. source: "./media/characters/azura-saharah/front.svg"
  6083. }
  6084. },
  6085. back: {
  6086. height: math.unit(6, "feet"),
  6087. weight: math.unit(120, "lbs"),
  6088. name: "Back",
  6089. image: {
  6090. source: "./media/characters/azura-saharah/back.svg"
  6091. }
  6092. },
  6093. },
  6094. [
  6095. {
  6096. name: "Macro",
  6097. height: math.unit(100, "feet"),
  6098. default: true
  6099. },
  6100. ]
  6101. ))
  6102. characterMakers.push(() => makeCharacter(
  6103. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6104. {
  6105. side: {
  6106. height: math.unit(5 + 4 / 12, "feet"),
  6107. weight: math.unit(163, "lbs"),
  6108. name: "Side",
  6109. image: {
  6110. source: "./media/characters/kennedy/side.svg"
  6111. }
  6112. }
  6113. },
  6114. [
  6115. {
  6116. name: "Standard Doggo",
  6117. height: math.unit(5 + 4 / 12, "feet")
  6118. },
  6119. {
  6120. name: "Big Doggo",
  6121. height: math.unit(25 + 3 / 12, "feet"),
  6122. default: true
  6123. },
  6124. ]
  6125. ))
  6126. characterMakers.push(() => makeCharacter(
  6127. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6128. {
  6129. front: {
  6130. height: math.unit(6, "feet"),
  6131. weight: math.unit(90, "lbs"),
  6132. name: "Front",
  6133. image: {
  6134. source: "./media/characters/odi-lunar/front.svg"
  6135. }
  6136. }
  6137. },
  6138. [
  6139. {
  6140. name: "Micro",
  6141. height: math.unit(3, "inches"),
  6142. default: true
  6143. },
  6144. {
  6145. name: "Normal",
  6146. height: math.unit(5.5, "feet")
  6147. }
  6148. ]
  6149. ))
  6150. characterMakers.push(() => makeCharacter(
  6151. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6152. {
  6153. back: {
  6154. height: math.unit(6, "feet"),
  6155. weight: math.unit(220, "lbs"),
  6156. name: "Back",
  6157. image: {
  6158. source: "./media/characters/mandake/back.svg"
  6159. }
  6160. }
  6161. },
  6162. [
  6163. {
  6164. name: "Normal",
  6165. height: math.unit(7, "feet"),
  6166. default: true
  6167. },
  6168. {
  6169. name: "Macro",
  6170. height: math.unit(78, "feet")
  6171. },
  6172. {
  6173. name: "Macro+",
  6174. height: math.unit(300, "meters")
  6175. },
  6176. {
  6177. name: "Macro++",
  6178. height: math.unit(2400, "feet")
  6179. },
  6180. {
  6181. name: "Megamacro",
  6182. height: math.unit(5167, "meters")
  6183. },
  6184. {
  6185. name: "Gigamacro",
  6186. height: math.unit(41769, "miles")
  6187. },
  6188. ]
  6189. ))
  6190. characterMakers.push(() => makeCharacter(
  6191. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6192. {
  6193. front: {
  6194. height: math.unit(6, "feet"),
  6195. weight: math.unit(120, "lbs"),
  6196. name: "Front",
  6197. image: {
  6198. source: "./media/characters/yozey/front.svg"
  6199. }
  6200. },
  6201. frontAlt: {
  6202. height: math.unit(6, "feet"),
  6203. weight: math.unit(120, "lbs"),
  6204. name: "Front (Alt)",
  6205. image: {
  6206. source: "./media/characters/yozey/front-alt.svg"
  6207. }
  6208. },
  6209. side: {
  6210. height: math.unit(6, "feet"),
  6211. weight: math.unit(120, "lbs"),
  6212. name: "Side",
  6213. image: {
  6214. source: "./media/characters/yozey/side.svg"
  6215. }
  6216. },
  6217. },
  6218. [
  6219. {
  6220. name: "Micro",
  6221. height: math.unit(3, "inches"),
  6222. default: true
  6223. },
  6224. {
  6225. name: "Normal",
  6226. height: math.unit(6, "feet")
  6227. }
  6228. ]
  6229. ))
  6230. characterMakers.push(() => makeCharacter(
  6231. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6232. {
  6233. front: {
  6234. height: math.unit(6, "feet"),
  6235. weight: math.unit(103, "lbs"),
  6236. name: "Front",
  6237. image: {
  6238. source: "./media/characters/valeska-voss/front.svg"
  6239. }
  6240. }
  6241. },
  6242. [
  6243. {
  6244. name: "Mini-Sized Sub",
  6245. height: math.unit(3.1, "inches")
  6246. },
  6247. {
  6248. name: "Mid-Sized Sub",
  6249. height: math.unit(6.2, "inches")
  6250. },
  6251. {
  6252. name: "Full-Sized Sub",
  6253. height: math.unit(9.3, "inches")
  6254. },
  6255. {
  6256. name: "Normal",
  6257. height: math.unit(5 + 2 / 12, "foot"),
  6258. default: true
  6259. },
  6260. ]
  6261. ))
  6262. characterMakers.push(() => makeCharacter(
  6263. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6264. {
  6265. front: {
  6266. height: math.unit(6, "feet"),
  6267. weight: math.unit(160, "lbs"),
  6268. name: "Front",
  6269. image: {
  6270. source: "./media/characters/gene-zeta/front.svg",
  6271. bottom: 0.03,
  6272. extra: 1
  6273. }
  6274. }
  6275. },
  6276. [
  6277. {
  6278. name: "Normal",
  6279. height: math.unit(6.25, "foot"),
  6280. default: true
  6281. },
  6282. ]
  6283. ))
  6284. characterMakers.push(() => makeCharacter(
  6285. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6286. {
  6287. front: {
  6288. height: math.unit(6, "feet"),
  6289. weight: math.unit(350, "lbs"),
  6290. name: "Front",
  6291. image: {
  6292. source: "./media/characters/razinox/front.svg",
  6293. extra: 1686 / 1548,
  6294. bottom: 28.2 / 1868
  6295. }
  6296. },
  6297. back: {
  6298. height: math.unit(6, "feet"),
  6299. weight: math.unit(350, "lbs"),
  6300. name: "Back",
  6301. image: {
  6302. source: "./media/characters/razinox/back.svg",
  6303. extra: 1660 / 1590,
  6304. bottom: 15 / 1665
  6305. }
  6306. },
  6307. },
  6308. [
  6309. {
  6310. name: "Normal",
  6311. height: math.unit(10 + 8 / 12, "foot")
  6312. },
  6313. {
  6314. name: "Minimacro",
  6315. height: math.unit(15, "foot")
  6316. },
  6317. {
  6318. name: "Macro",
  6319. height: math.unit(60, "foot"),
  6320. default: true
  6321. },
  6322. {
  6323. name: "Megamacro",
  6324. height: math.unit(5, "miles")
  6325. },
  6326. {
  6327. name: "Gigamacro",
  6328. height: math.unit(6000, "miles")
  6329. },
  6330. ]
  6331. ))
  6332. characterMakers.push(() => makeCharacter(
  6333. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6334. {
  6335. front: {
  6336. height: math.unit(6, "feet"),
  6337. weight: math.unit(150, "lbs"),
  6338. name: "Front",
  6339. image: {
  6340. source: "./media/characters/cobalt/front.svg"
  6341. }
  6342. }
  6343. },
  6344. [
  6345. {
  6346. name: "Normal",
  6347. height: math.unit(8 + 1 / 12, "foot")
  6348. },
  6349. {
  6350. name: "Macro",
  6351. height: math.unit(111, "foot"),
  6352. default: true
  6353. },
  6354. {
  6355. name: "Supracosmic",
  6356. height: math.unit(1e42, "feet")
  6357. },
  6358. ]
  6359. ))
  6360. characterMakers.push(() => makeCharacter(
  6361. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6362. {
  6363. front: {
  6364. height: math.unit(6, "feet"),
  6365. weight: math.unit(140, "lbs"),
  6366. name: "Front",
  6367. image: {
  6368. source: "./media/characters/amanda/front.svg"
  6369. }
  6370. }
  6371. },
  6372. [
  6373. {
  6374. name: "Micro",
  6375. height: math.unit(5, "inches"),
  6376. default: true
  6377. },
  6378. ]
  6379. ))
  6380. characterMakers.push(() => makeCharacter(
  6381. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6382. {
  6383. front: {
  6384. height: math.unit(5.59, "feet"),
  6385. weight: math.unit(250, "lbs"),
  6386. name: "Front",
  6387. image: {
  6388. source: "./media/characters/teal/front.svg"
  6389. }
  6390. },
  6391. frontAlt: {
  6392. height: math.unit(6, "feet"),
  6393. weight: math.unit(250, "lbs"),
  6394. name: "Front (Alt)",
  6395. image: {
  6396. source: "./media/characters/teal/front-alt.svg",
  6397. bottom: 0.04,
  6398. extra: 1
  6399. }
  6400. },
  6401. },
  6402. [
  6403. {
  6404. name: "Normal",
  6405. height: math.unit(12, "feet"),
  6406. default: true
  6407. },
  6408. {
  6409. name: "Macro",
  6410. height: math.unit(300, "feet")
  6411. },
  6412. ]
  6413. ))
  6414. characterMakers.push(() => makeCharacter(
  6415. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6416. {
  6417. frontCat: {
  6418. height: math.unit(6, "feet"),
  6419. weight: math.unit(180, "lbs"),
  6420. name: "Front (Cat)",
  6421. image: {
  6422. source: "./media/characters/ravin-amulet/front-cat.svg"
  6423. }
  6424. },
  6425. frontCatAlt: {
  6426. height: math.unit(6, "feet"),
  6427. weight: math.unit(180, "lbs"),
  6428. name: "Front (Alt, Cat)",
  6429. image: {
  6430. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6431. }
  6432. },
  6433. frontWerewolf: {
  6434. height: math.unit(6 * 1.2, "feet"),
  6435. weight: math.unit(225, "lbs"),
  6436. name: "Front (Werewolf)",
  6437. image: {
  6438. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6439. }
  6440. },
  6441. backWerewolf: {
  6442. height: math.unit(6 * 1.2, "feet"),
  6443. weight: math.unit(225, "lbs"),
  6444. name: "Back (Werewolf)",
  6445. image: {
  6446. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6447. }
  6448. },
  6449. },
  6450. [
  6451. {
  6452. name: "Nano",
  6453. height: math.unit(1, "micrometer")
  6454. },
  6455. {
  6456. name: "Micro",
  6457. height: math.unit(1, "inch")
  6458. },
  6459. {
  6460. name: "Normal",
  6461. height: math.unit(6, "feet"),
  6462. default: true
  6463. },
  6464. {
  6465. name: "Macro",
  6466. height: math.unit(60, "feet")
  6467. }
  6468. ]
  6469. ))
  6470. characterMakers.push(() => makeCharacter(
  6471. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6472. {
  6473. front: {
  6474. height: math.unit(6, "feet"),
  6475. weight: math.unit(165, "lbs"),
  6476. name: "Front",
  6477. image: {
  6478. source: "./media/characters/fluoresce/front.svg"
  6479. }
  6480. }
  6481. },
  6482. [
  6483. {
  6484. name: "Micro",
  6485. height: math.unit(6, "cm")
  6486. },
  6487. {
  6488. name: "Normal",
  6489. height: math.unit(5 + 7 / 12, "feet"),
  6490. default: true
  6491. },
  6492. {
  6493. name: "Macro",
  6494. height: math.unit(56, "feet")
  6495. },
  6496. {
  6497. name: "Megamacro",
  6498. height: math.unit(1.9, "miles")
  6499. },
  6500. ]
  6501. ))
  6502. characterMakers.push(() => makeCharacter(
  6503. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6504. {
  6505. front: {
  6506. height: math.unit(9 + 6 / 12, "feet"),
  6507. weight: math.unit(523, "lbs"),
  6508. name: "Side",
  6509. image: {
  6510. source: "./media/characters/aurora/side.svg"
  6511. }
  6512. }
  6513. },
  6514. [
  6515. {
  6516. name: "Normal",
  6517. height: math.unit(9 + 6 / 12, "feet")
  6518. },
  6519. {
  6520. name: "Macro",
  6521. height: math.unit(96, "feet"),
  6522. default: true
  6523. },
  6524. {
  6525. name: "Macro+",
  6526. height: math.unit(243, "feet")
  6527. },
  6528. ]
  6529. ))
  6530. characterMakers.push(() => makeCharacter(
  6531. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6532. {
  6533. front: {
  6534. height: math.unit(194, "cm"),
  6535. weight: math.unit(90, "kg"),
  6536. name: "Front",
  6537. image: {
  6538. source: "./media/characters/ranek/front.svg"
  6539. }
  6540. },
  6541. side: {
  6542. height: math.unit(194, "cm"),
  6543. weight: math.unit(90, "kg"),
  6544. name: "Side",
  6545. image: {
  6546. source: "./media/characters/ranek/side.svg"
  6547. }
  6548. },
  6549. back: {
  6550. height: math.unit(194, "cm"),
  6551. weight: math.unit(90, "kg"),
  6552. name: "Back",
  6553. image: {
  6554. source: "./media/characters/ranek/back.svg"
  6555. }
  6556. },
  6557. feral: {
  6558. height: math.unit(30, "cm"),
  6559. weight: math.unit(1.6, "lbs"),
  6560. name: "Feral",
  6561. image: {
  6562. source: "./media/characters/ranek/feral.svg"
  6563. }
  6564. },
  6565. },
  6566. [
  6567. {
  6568. name: "Normal",
  6569. height: math.unit(194, "cm"),
  6570. default: true
  6571. },
  6572. {
  6573. name: "Macro",
  6574. height: math.unit(100, "meters")
  6575. },
  6576. ]
  6577. ))
  6578. characterMakers.push(() => makeCharacter(
  6579. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6580. {
  6581. front: {
  6582. height: math.unit(5 + 6 / 12, "feet"),
  6583. weight: math.unit(153, "lbs"),
  6584. name: "Front",
  6585. image: {
  6586. source: "./media/characters/andrew-cooper/front.svg"
  6587. }
  6588. },
  6589. },
  6590. [
  6591. {
  6592. name: "Nano",
  6593. height: math.unit(1, "mm")
  6594. },
  6595. {
  6596. name: "Micro",
  6597. height: math.unit(2, "inches")
  6598. },
  6599. {
  6600. name: "Normal",
  6601. height: math.unit(5 + 6 / 12, "feet"),
  6602. default: true
  6603. }
  6604. ]
  6605. ))
  6606. characterMakers.push(() => makeCharacter(
  6607. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6608. {
  6609. front: {
  6610. height: math.unit(6, "feet"),
  6611. weight: math.unit(180, "lbs"),
  6612. name: "Front",
  6613. image: {
  6614. source: "./media/characters/akane-sato/front.svg",
  6615. extra: 1219 / 1140
  6616. }
  6617. },
  6618. back: {
  6619. height: math.unit(6, "feet"),
  6620. weight: math.unit(180, "lbs"),
  6621. name: "Back",
  6622. image: {
  6623. source: "./media/characters/akane-sato/back.svg",
  6624. extra: 1219 / 1170
  6625. }
  6626. },
  6627. },
  6628. [
  6629. {
  6630. name: "Normal",
  6631. height: math.unit(2.5, "meters")
  6632. },
  6633. {
  6634. name: "Macro",
  6635. height: math.unit(250, "meters"),
  6636. default: true
  6637. },
  6638. {
  6639. name: "Megamacro",
  6640. height: math.unit(25, "km")
  6641. },
  6642. ]
  6643. ))
  6644. characterMakers.push(() => makeCharacter(
  6645. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6646. {
  6647. front: {
  6648. height: math.unit(6, "feet"),
  6649. weight: math.unit(65, "kg"),
  6650. name: "Front",
  6651. image: {
  6652. source: "./media/characters/rook/front.svg",
  6653. extra: 960 / 950
  6654. }
  6655. }
  6656. },
  6657. [
  6658. {
  6659. name: "Normal",
  6660. height: math.unit(8.8, "feet")
  6661. },
  6662. {
  6663. name: "Macro",
  6664. height: math.unit(88, "feet"),
  6665. default: true
  6666. },
  6667. {
  6668. name: "Megamacro",
  6669. height: math.unit(8, "miles")
  6670. },
  6671. ]
  6672. ))
  6673. characterMakers.push(() => makeCharacter(
  6674. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6675. {
  6676. front: {
  6677. height: math.unit(12 + 2 / 12, "feet"),
  6678. weight: math.unit(808, "lbs"),
  6679. name: "Front",
  6680. image: {
  6681. source: "./media/characters/prodigy/front.svg"
  6682. }
  6683. }
  6684. },
  6685. [
  6686. {
  6687. name: "Normal",
  6688. height: math.unit(12 + 2 / 12, "feet"),
  6689. default: true
  6690. },
  6691. {
  6692. name: "Macro",
  6693. height: math.unit(143, "feet")
  6694. },
  6695. {
  6696. name: "Macro+",
  6697. height: math.unit(400, "feet")
  6698. },
  6699. ]
  6700. ))
  6701. characterMakers.push(() => makeCharacter(
  6702. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6703. {
  6704. front: {
  6705. height: math.unit(6, "feet"),
  6706. weight: math.unit(225, "lbs"),
  6707. name: "Front",
  6708. image: {
  6709. source: "./media/characters/daniel/front.svg"
  6710. }
  6711. },
  6712. leaning: {
  6713. height: math.unit(6, "feet"),
  6714. weight: math.unit(225, "lbs"),
  6715. name: "Leaning",
  6716. image: {
  6717. source: "./media/characters/daniel/leaning.svg"
  6718. }
  6719. },
  6720. },
  6721. [
  6722. {
  6723. name: "Macro",
  6724. height: math.unit(1000, "feet"),
  6725. default: true
  6726. },
  6727. ]
  6728. ))
  6729. characterMakers.push(() => makeCharacter(
  6730. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  6731. {
  6732. front: {
  6733. height: math.unit(6, "feet"),
  6734. weight: math.unit(88, "lbs"),
  6735. name: "Front",
  6736. image: {
  6737. source: "./media/characters/chiros/front.svg",
  6738. extra: 306 / 226
  6739. }
  6740. },
  6741. side: {
  6742. height: math.unit(6, "feet"),
  6743. weight: math.unit(88, "lbs"),
  6744. name: "Side",
  6745. image: {
  6746. source: "./media/characters/chiros/side.svg",
  6747. extra: 306 / 226
  6748. }
  6749. },
  6750. },
  6751. [
  6752. {
  6753. name: "Normal",
  6754. height: math.unit(6, "cm"),
  6755. default: true
  6756. },
  6757. ]
  6758. ))
  6759. characterMakers.push(() => makeCharacter(
  6760. { name: "Selka", species: ["snake"], tags: ["naga"] },
  6761. {
  6762. front: {
  6763. height: math.unit(6, "feet"),
  6764. weight: math.unit(100, "lbs"),
  6765. name: "Front",
  6766. image: {
  6767. source: "./media/characters/selka/front.svg",
  6768. extra: 947 / 887
  6769. }
  6770. }
  6771. },
  6772. [
  6773. {
  6774. name: "Normal",
  6775. height: math.unit(5, "cm"),
  6776. default: true
  6777. },
  6778. ]
  6779. ))
  6780. characterMakers.push(() => makeCharacter(
  6781. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  6782. {
  6783. front: {
  6784. height: math.unit(8 + 3 / 12, "feet"),
  6785. weight: math.unit(424, "lbs"),
  6786. name: "Front",
  6787. image: {
  6788. source: "./media/characters/verin/front.svg",
  6789. extra: 1845 / 1550
  6790. }
  6791. },
  6792. frontArmored: {
  6793. height: math.unit(8 + 3 / 12, "feet"),
  6794. weight: math.unit(424, "lbs"),
  6795. name: "Front (Armored)",
  6796. image: {
  6797. source: "./media/characters/verin/front-armor.svg",
  6798. extra: 1845 / 1550,
  6799. bottom: 0.01
  6800. }
  6801. },
  6802. back: {
  6803. height: math.unit(8 + 3 / 12, "feet"),
  6804. weight: math.unit(424, "lbs"),
  6805. name: "Back",
  6806. image: {
  6807. source: "./media/characters/verin/back.svg",
  6808. bottom: 0.1,
  6809. extra: 1
  6810. }
  6811. },
  6812. foot: {
  6813. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  6814. name: "Foot",
  6815. image: {
  6816. source: "./media/characters/verin/foot.svg"
  6817. }
  6818. },
  6819. },
  6820. [
  6821. {
  6822. name: "Normal",
  6823. height: math.unit(8 + 3 / 12, "feet")
  6824. },
  6825. {
  6826. name: "Minimacro",
  6827. height: math.unit(21, "feet"),
  6828. default: true
  6829. },
  6830. {
  6831. name: "Macro",
  6832. height: math.unit(626, "feet")
  6833. },
  6834. ]
  6835. ))
  6836. characterMakers.push(() => makeCharacter(
  6837. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  6838. {
  6839. front: {
  6840. height: math.unit(2.718, "meters"),
  6841. weight: math.unit(150, "lbs"),
  6842. name: "Front",
  6843. image: {
  6844. source: "./media/characters/sovrim-terraquian/front.svg"
  6845. }
  6846. },
  6847. back: {
  6848. height: math.unit(2.718, "meters"),
  6849. weight: math.unit(150, "lbs"),
  6850. name: "Back",
  6851. image: {
  6852. source: "./media/characters/sovrim-terraquian/back.svg"
  6853. }
  6854. }
  6855. },
  6856. [
  6857. {
  6858. name: "Micro",
  6859. height: math.unit(2, "inches")
  6860. },
  6861. {
  6862. name: "Small",
  6863. height: math.unit(1, "meter")
  6864. },
  6865. {
  6866. name: "Normal",
  6867. height: math.unit(Math.E, "meters"),
  6868. default: true
  6869. },
  6870. {
  6871. name: "Macro",
  6872. height: math.unit(20, "meters")
  6873. },
  6874. {
  6875. name: "Macro+",
  6876. height: math.unit(400, "meters")
  6877. },
  6878. ]
  6879. ))
  6880. characterMakers.push(() => makeCharacter(
  6881. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  6882. {
  6883. front: {
  6884. height: math.unit(7, "feet"),
  6885. weight: math.unit(489, "lbs"),
  6886. name: "Front",
  6887. image: {
  6888. source: "./media/characters/reece-silvermane/front.svg",
  6889. bottom: 0.02,
  6890. extra: 1
  6891. }
  6892. },
  6893. },
  6894. [
  6895. {
  6896. name: "Macro",
  6897. height: math.unit(1.5, "miles"),
  6898. default: true
  6899. },
  6900. ]
  6901. ))
  6902. characterMakers.push(() => makeCharacter(
  6903. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  6904. {
  6905. front: {
  6906. height: math.unit(6, "feet"),
  6907. weight: math.unit(78, "kg"),
  6908. name: "Front",
  6909. image: {
  6910. source: "./media/characters/kane/front.svg",
  6911. extra: 978 / 899
  6912. }
  6913. },
  6914. },
  6915. [
  6916. {
  6917. name: "Normal",
  6918. height: math.unit(2.1, "m"),
  6919. },
  6920. {
  6921. name: "Macro",
  6922. height: math.unit(1, "km"),
  6923. default: true
  6924. },
  6925. ]
  6926. ))
  6927. characterMakers.push(() => makeCharacter(
  6928. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  6929. {
  6930. front: {
  6931. height: math.unit(6, "feet"),
  6932. weight: math.unit(200, "kg"),
  6933. name: "Front",
  6934. image: {
  6935. source: "./media/characters/tegon/front.svg",
  6936. bottom: 0.01,
  6937. extra: 1
  6938. }
  6939. },
  6940. },
  6941. [
  6942. {
  6943. name: "Micro",
  6944. height: math.unit(1, "inch")
  6945. },
  6946. {
  6947. name: "Normal",
  6948. height: math.unit(6 + 3 / 12, "feet"),
  6949. default: true
  6950. },
  6951. {
  6952. name: "Macro",
  6953. height: math.unit(300, "feet")
  6954. },
  6955. {
  6956. name: "Megamacro",
  6957. height: math.unit(69, "miles")
  6958. },
  6959. ]
  6960. ))
  6961. characterMakers.push(() => makeCharacter(
  6962. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  6963. {
  6964. side: {
  6965. height: math.unit(6, "feet"),
  6966. weight: math.unit(2304, "lbs"),
  6967. name: "Side",
  6968. image: {
  6969. source: "./media/characters/arcturax/side.svg",
  6970. extra: 790 / 376,
  6971. bottom: 0.01
  6972. }
  6973. },
  6974. },
  6975. [
  6976. {
  6977. name: "Micro",
  6978. height: math.unit(2, "inch")
  6979. },
  6980. {
  6981. name: "Normal",
  6982. height: math.unit(6, "feet")
  6983. },
  6984. {
  6985. name: "Macro",
  6986. height: math.unit(39, "feet"),
  6987. default: true
  6988. },
  6989. {
  6990. name: "Megamacro",
  6991. height: math.unit(7, "miles")
  6992. },
  6993. ]
  6994. ))
  6995. characterMakers.push(() => makeCharacter(
  6996. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  6997. {
  6998. front: {
  6999. height: math.unit(6, "feet"),
  7000. weight: math.unit(50, "lbs"),
  7001. name: "Front",
  7002. image: {
  7003. source: "./media/characters/sentri/front.svg",
  7004. extra: 1750 / 1570,
  7005. bottom: 0.025
  7006. }
  7007. },
  7008. frontAlt: {
  7009. height: math.unit(6, "feet"),
  7010. weight: math.unit(50, "lbs"),
  7011. name: "Front (Alt)",
  7012. image: {
  7013. source: "./media/characters/sentri/front-alt.svg",
  7014. extra: 1750 / 1570,
  7015. bottom: 0.025
  7016. }
  7017. },
  7018. },
  7019. [
  7020. {
  7021. name: "Normal",
  7022. height: math.unit(15, "feet"),
  7023. default: true
  7024. },
  7025. {
  7026. name: "Macro",
  7027. height: math.unit(2500, "feet")
  7028. }
  7029. ]
  7030. ))
  7031. characterMakers.push(() => makeCharacter(
  7032. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7033. {
  7034. front: {
  7035. height: math.unit(5 + 8 / 12, "feet"),
  7036. weight: math.unit(130, "lbs"),
  7037. name: "Front",
  7038. image: {
  7039. source: "./media/characters/corvin/front.svg",
  7040. extra: 1803 / 1629
  7041. }
  7042. },
  7043. frontShirt: {
  7044. height: math.unit(5 + 8 / 12, "feet"),
  7045. weight: math.unit(130, "lbs"),
  7046. name: "Front (Shirt)",
  7047. image: {
  7048. source: "./media/characters/corvin/front-shirt.svg",
  7049. extra: 1803 / 1629
  7050. }
  7051. },
  7052. frontPoncho: {
  7053. height: math.unit(5 + 8 / 12, "feet"),
  7054. weight: math.unit(130, "lbs"),
  7055. name: "Front (Poncho)",
  7056. image: {
  7057. source: "./media/characters/corvin/front-poncho.svg",
  7058. extra: 1803 / 1629
  7059. }
  7060. },
  7061. side: {
  7062. height: math.unit(5 + 8 / 12, "feet"),
  7063. weight: math.unit(130, "lbs"),
  7064. name: "Side",
  7065. image: {
  7066. source: "./media/characters/corvin/side.svg",
  7067. extra: 1012 / 945
  7068. }
  7069. },
  7070. back: {
  7071. height: math.unit(5 + 8 / 12, "feet"),
  7072. weight: math.unit(130, "lbs"),
  7073. name: "Back",
  7074. image: {
  7075. source: "./media/characters/corvin/back.svg",
  7076. extra: 1803 / 1629
  7077. }
  7078. },
  7079. },
  7080. [
  7081. {
  7082. name: "Micro",
  7083. height: math.unit(3, "inches")
  7084. },
  7085. {
  7086. name: "Normal",
  7087. height: math.unit(5 + 8 / 12, "feet")
  7088. },
  7089. {
  7090. name: "Macro",
  7091. height: math.unit(300, "feet"),
  7092. default: true
  7093. },
  7094. {
  7095. name: "Megamacro",
  7096. height: math.unit(500, "miles")
  7097. }
  7098. ]
  7099. ))
  7100. characterMakers.push(() => makeCharacter(
  7101. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7102. {
  7103. front: {
  7104. height: math.unit(6, "feet"),
  7105. weight: math.unit(135, "lbs"),
  7106. name: "Front",
  7107. image: {
  7108. source: "./media/characters/q/front.svg",
  7109. extra: 854 / 752,
  7110. bottom: 0.005
  7111. }
  7112. },
  7113. back: {
  7114. height: math.unit(6, "feet"),
  7115. weight: math.unit(130, "lbs"),
  7116. name: "Back",
  7117. image: {
  7118. source: "./media/characters/q/back.svg",
  7119. extra: 854 / 752
  7120. }
  7121. },
  7122. },
  7123. [
  7124. {
  7125. name: "Macro",
  7126. height: math.unit(90, "feet"),
  7127. default: true
  7128. },
  7129. {
  7130. name: "Extra Macro",
  7131. height: math.unit(300, "feet"),
  7132. },
  7133. {
  7134. name: "BIG WALF",
  7135. height: math.unit(750, "feet"),
  7136. },
  7137. ]
  7138. ))
  7139. characterMakers.push(() => makeCharacter(
  7140. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7141. {
  7142. front: {
  7143. height: math.unit(6, "feet"),
  7144. weight: math.unit(150, "lbs"),
  7145. name: "Front",
  7146. image: {
  7147. source: "./media/characters/carley/front.svg",
  7148. extra: 3927 / 3540,
  7149. bottom: 0.03
  7150. }
  7151. }
  7152. },
  7153. [
  7154. {
  7155. name: "Normal",
  7156. height: math.unit(6 + 3 / 12, "feet")
  7157. },
  7158. {
  7159. name: "Macro",
  7160. height: math.unit(185, "feet"),
  7161. default: true
  7162. },
  7163. {
  7164. name: "Megamacro",
  7165. height: math.unit(8, "miles"),
  7166. },
  7167. ]
  7168. ))
  7169. characterMakers.push(() => makeCharacter(
  7170. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7171. {
  7172. front: {
  7173. height: math.unit(3, "feet"),
  7174. weight: math.unit(28, "lbs"),
  7175. name: "Front",
  7176. image: {
  7177. source: "./media/characters/citrine/front.svg"
  7178. }
  7179. }
  7180. },
  7181. [
  7182. {
  7183. name: "Normal",
  7184. height: math.unit(3, "feet"),
  7185. default: true
  7186. }
  7187. ]
  7188. ))
  7189. characterMakers.push(() => makeCharacter(
  7190. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7191. {
  7192. front: {
  7193. height: math.unit(14, "feet"),
  7194. weight: math.unit(1450, "kg"),
  7195. capacity: math.unit(15, "people"),
  7196. name: "Front",
  7197. image: {
  7198. source: "./media/characters/aura-starwind/front.svg",
  7199. extra: 1455 / 1335
  7200. }
  7201. },
  7202. side: {
  7203. height: math.unit(14, "feet"),
  7204. weight: math.unit(1450, "kg"),
  7205. capacity: math.unit(15, "people"),
  7206. name: "Side",
  7207. image: {
  7208. source: "./media/characters/aura-starwind/side.svg",
  7209. extra: 1654 / 1497
  7210. }
  7211. },
  7212. taur: {
  7213. height: math.unit(18, "feet"),
  7214. weight: math.unit(5500, "kg"),
  7215. capacity: math.unit(50, "people"),
  7216. name: "Taur",
  7217. image: {
  7218. source: "./media/characters/aura-starwind/taur.svg",
  7219. extra: 1760 / 1650
  7220. }
  7221. },
  7222. feral: {
  7223. height: math.unit(46, "feet"),
  7224. weight: math.unit(25000, "kg"),
  7225. capacity: math.unit(120, "people"),
  7226. name: "Feral",
  7227. image: {
  7228. source: "./media/characters/aura-starwind/feral.svg"
  7229. }
  7230. },
  7231. },
  7232. [
  7233. {
  7234. name: "Normal",
  7235. height: math.unit(14, "feet"),
  7236. default: true
  7237. },
  7238. {
  7239. name: "Macro",
  7240. height: math.unit(50, "meters")
  7241. },
  7242. {
  7243. name: "Megamacro",
  7244. height: math.unit(5000, "meters")
  7245. },
  7246. {
  7247. name: "Gigamacro",
  7248. height: math.unit(100000, "kilometers")
  7249. },
  7250. ]
  7251. ))
  7252. characterMakers.push(() => makeCharacter(
  7253. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7254. {
  7255. front: {
  7256. height: math.unit(2 + 7 / 12, "feet"),
  7257. weight: math.unit(32, "lbs"),
  7258. name: "Front",
  7259. image: {
  7260. source: "./media/characters/rivet/front.svg",
  7261. extra: 1716 / 1658,
  7262. bottom: 0.03
  7263. }
  7264. },
  7265. foot: {
  7266. height: math.unit(0.551, "feet"),
  7267. name: "Rivet's Foot",
  7268. image: {
  7269. source: "./media/characters/rivet/foot.svg"
  7270. },
  7271. rename: true
  7272. }
  7273. },
  7274. [
  7275. {
  7276. name: "Micro",
  7277. height: math.unit(1.5, "inches"),
  7278. },
  7279. {
  7280. name: "Normal",
  7281. height: math.unit(2 + 7 / 12, "feet"),
  7282. default: true
  7283. },
  7284. {
  7285. name: "Macro",
  7286. height: math.unit(85, "feet")
  7287. },
  7288. {
  7289. name: "Megamacro",
  7290. height: math.unit(2.2, "km")
  7291. }
  7292. ]
  7293. ))
  7294. characterMakers.push(() => makeCharacter(
  7295. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7296. {
  7297. front: {
  7298. height: math.unit(5 + 9 / 12, "feet"),
  7299. weight: math.unit(150, "lbs"),
  7300. name: "Front",
  7301. image: {
  7302. source: "./media/characters/coffee/front.svg",
  7303. extra: 3666 / 3032,
  7304. bottom: 0.04
  7305. }
  7306. },
  7307. foot: {
  7308. height: math.unit(1.29, "feet"),
  7309. name: "Foot",
  7310. image: {
  7311. source: "./media/characters/coffee/foot.svg"
  7312. }
  7313. },
  7314. },
  7315. [
  7316. {
  7317. name: "Micro",
  7318. height: math.unit(2, "inches"),
  7319. },
  7320. {
  7321. name: "Normal",
  7322. height: math.unit(5 + 9 / 12, "feet"),
  7323. default: true
  7324. },
  7325. {
  7326. name: "Macro",
  7327. height: math.unit(800, "feet")
  7328. },
  7329. {
  7330. name: "Megamacro",
  7331. height: math.unit(25, "miles")
  7332. }
  7333. ]
  7334. ))
  7335. characterMakers.push(() => makeCharacter(
  7336. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7337. {
  7338. front: {
  7339. height: math.unit(6, "feet"),
  7340. weight: math.unit(200, "lbs"),
  7341. name: "Front",
  7342. image: {
  7343. source: "./media/characters/chari-gal/front.svg",
  7344. extra: 1568 / 1385,
  7345. bottom: 0.047
  7346. }
  7347. },
  7348. gigantamax: {
  7349. height: math.unit(6 * 16, "feet"),
  7350. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7351. name: "Gigantamax",
  7352. image: {
  7353. source: "./media/characters/chari-gal/gigantamax.svg",
  7354. extra: 1124 / 888,
  7355. bottom: 0.03
  7356. }
  7357. },
  7358. },
  7359. [
  7360. {
  7361. name: "Normal",
  7362. height: math.unit(5 + 7 / 12, "feet")
  7363. },
  7364. {
  7365. name: "Macro",
  7366. height: math.unit(200, "feet"),
  7367. default: true
  7368. }
  7369. ]
  7370. ))
  7371. characterMakers.push(() => makeCharacter(
  7372. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7373. {
  7374. front: {
  7375. height: math.unit(6, "feet"),
  7376. weight: math.unit(150, "lbs"),
  7377. name: "Front",
  7378. image: {
  7379. source: "./media/characters/nova/front.svg",
  7380. extra: 5000 / 4722,
  7381. bottom: 0.02
  7382. }
  7383. }
  7384. },
  7385. [
  7386. {
  7387. name: "Micro-",
  7388. height: math.unit(0.8, "inches")
  7389. },
  7390. {
  7391. name: "Micro",
  7392. height: math.unit(2, "inches"),
  7393. default: true
  7394. },
  7395. ]
  7396. ))
  7397. characterMakers.push(() => makeCharacter(
  7398. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7399. {
  7400. front: {
  7401. height: math.unit(3 + 1 / 12, "feet"),
  7402. weight: math.unit(21.7, "lbs"),
  7403. name: "Front",
  7404. image: {
  7405. source: "./media/characters/argent/front.svg",
  7406. extra: 1471 / 1331,
  7407. bottom: 100.8 / 1575.5
  7408. }
  7409. }
  7410. },
  7411. [
  7412. {
  7413. name: "Micro",
  7414. height: math.unit(2, "inches")
  7415. },
  7416. {
  7417. name: "Normal",
  7418. height: math.unit(3 + 1 / 12, "feet"),
  7419. default: true
  7420. },
  7421. {
  7422. name: "Macro",
  7423. height: math.unit(120, "feet")
  7424. },
  7425. ]
  7426. ))
  7427. characterMakers.push(() => makeCharacter(
  7428. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7429. {
  7430. lamp: {
  7431. height: math.unit(7 * 1559 / 989, "feet"),
  7432. name: "Magic Lamp",
  7433. image: {
  7434. source: "./media/characters/mira-al-cul/lamp.svg",
  7435. extra: 1617 / 1559
  7436. }
  7437. },
  7438. front: {
  7439. height: math.unit(7, "feet"),
  7440. name: "Front",
  7441. image: {
  7442. source: "./media/characters/mira-al-cul/front.svg",
  7443. extra: 1044 / 990
  7444. }
  7445. },
  7446. },
  7447. [
  7448. {
  7449. name: "Heavily Restricted",
  7450. height: math.unit(7 * 1559 / 989, "feet")
  7451. },
  7452. {
  7453. name: "Freshly Freed",
  7454. height: math.unit(50 * 1559 / 989, "feet")
  7455. },
  7456. {
  7457. name: "World Encompassing",
  7458. height: math.unit(10000 * 1559 / 989, "miles")
  7459. },
  7460. {
  7461. name: "Galactic",
  7462. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7463. },
  7464. {
  7465. name: "Palmed Universe",
  7466. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7467. default: true
  7468. },
  7469. {
  7470. name: "Multiversal Matriarch",
  7471. height: math.unit(8.87e10, "yottameters")
  7472. },
  7473. {
  7474. name: "Void Mother",
  7475. height: math.unit(3.14e110, "yottaparsecs")
  7476. },
  7477. ]
  7478. ))
  7479. characterMakers.push(() => makeCharacter(
  7480. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7481. {
  7482. front: {
  7483. height: math.unit(17 + 1 / 12, "feet"),
  7484. weight: math.unit(476.2 * 5, "lbs"),
  7485. name: "Front",
  7486. image: {
  7487. source: "./media/characters/kuro-shi-uchū/front.svg",
  7488. extra: 2329 / 1835,
  7489. bottom: 0.02
  7490. }
  7491. },
  7492. },
  7493. [
  7494. {
  7495. name: "Micro",
  7496. height: math.unit(2, "inches")
  7497. },
  7498. {
  7499. name: "Normal",
  7500. height: math.unit(12, "meters")
  7501. },
  7502. {
  7503. name: "Planetary",
  7504. height: math.unit(0.00929, "AU"),
  7505. default: true
  7506. },
  7507. {
  7508. name: "Universal",
  7509. height: math.unit(20, "gigaparsecs")
  7510. },
  7511. ]
  7512. ))
  7513. characterMakers.push(() => makeCharacter(
  7514. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7515. {
  7516. front: {
  7517. height: math.unit(5 + 2 / 12, "feet"),
  7518. weight: math.unit(120, "lbs"),
  7519. name: "Front",
  7520. image: {
  7521. source: "./media/characters/katherine/front.svg",
  7522. extra: 2075 / 1969
  7523. }
  7524. },
  7525. dress: {
  7526. height: math.unit(5 + 2 / 12, "feet"),
  7527. weight: math.unit(120, "lbs"),
  7528. name: "Dress",
  7529. image: {
  7530. source: "./media/characters/katherine/dress.svg",
  7531. extra: 2258 / 2064
  7532. }
  7533. },
  7534. },
  7535. [
  7536. {
  7537. name: "Micro",
  7538. height: math.unit(1, "inches"),
  7539. default: true
  7540. },
  7541. {
  7542. name: "Normal",
  7543. height: math.unit(5 + 2 / 12, "feet")
  7544. },
  7545. {
  7546. name: "Macro",
  7547. height: math.unit(100, "meters")
  7548. },
  7549. {
  7550. name: "Megamacro",
  7551. height: math.unit(80, "miles")
  7552. },
  7553. ]
  7554. ))
  7555. characterMakers.push(() => makeCharacter(
  7556. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7557. {
  7558. front: {
  7559. height: math.unit(7 + 8 / 12, "feet"),
  7560. weight: math.unit(250, "lbs"),
  7561. name: "Front",
  7562. image: {
  7563. source: "./media/characters/yevis/front.svg",
  7564. extra: 1938 / 1755
  7565. }
  7566. }
  7567. },
  7568. [
  7569. {
  7570. name: "Mortal",
  7571. height: math.unit(7 + 8 / 12, "feet")
  7572. },
  7573. {
  7574. name: "Battle",
  7575. height: math.unit(25 + 11 / 12, "feet")
  7576. },
  7577. {
  7578. name: "Wrath",
  7579. height: math.unit(1654 + 11 / 12, "feet")
  7580. },
  7581. {
  7582. name: "Planet Destroyer",
  7583. height: math.unit(12000, "miles")
  7584. },
  7585. {
  7586. name: "Galaxy Conqueror",
  7587. height: math.unit(1.45, "zettameters"),
  7588. default: true
  7589. },
  7590. {
  7591. name: "Universal War",
  7592. height: math.unit(184, "gigaparsecs")
  7593. },
  7594. {
  7595. name: "Eternity War",
  7596. height: math.unit(1.98e55, "yottaparsecs")
  7597. },
  7598. ]
  7599. ))
  7600. characterMakers.push(() => makeCharacter(
  7601. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7602. {
  7603. front: {
  7604. height: math.unit(5 + 8 / 12, "feet"),
  7605. weight: math.unit(63, "kg"),
  7606. name: "Front",
  7607. image: {
  7608. source: "./media/characters/xavier/front.svg",
  7609. extra: 944 / 883
  7610. }
  7611. },
  7612. frontStretch: {
  7613. height: math.unit(5 + 8 / 12, "feet"),
  7614. weight: math.unit(63, "kg"),
  7615. name: "Stretching",
  7616. image: {
  7617. source: "./media/characters/xavier/front-stretch.svg",
  7618. extra: 962 / 820
  7619. }
  7620. },
  7621. },
  7622. [
  7623. {
  7624. name: "Normal",
  7625. height: math.unit(5 + 8 / 12, "feet")
  7626. },
  7627. {
  7628. name: "Macro",
  7629. height: math.unit(100, "meters"),
  7630. default: true
  7631. },
  7632. {
  7633. name: "McLargeHuge",
  7634. height: math.unit(10, "miles")
  7635. },
  7636. ]
  7637. ))
  7638. characterMakers.push(() => makeCharacter(
  7639. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7640. {
  7641. front: {
  7642. height: math.unit(5 + 5 / 12, "feet"),
  7643. weight: math.unit(150, "lb"),
  7644. name: "Front",
  7645. image: {
  7646. source: "./media/characters/joshii/front.svg"
  7647. }
  7648. },
  7649. foot: {
  7650. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7651. name: "Foot",
  7652. image: {
  7653. source: "./media/characters/joshii/foot.svg"
  7654. }
  7655. },
  7656. },
  7657. [
  7658. {
  7659. name: "Micro",
  7660. height: math.unit(2, "inches")
  7661. },
  7662. {
  7663. name: "Normal",
  7664. height: math.unit(5 + 5 / 12, "feet"),
  7665. default: true
  7666. },
  7667. {
  7668. name: "Macro",
  7669. height: math.unit(785, "feet")
  7670. },
  7671. {
  7672. name: "Megamacro",
  7673. height: math.unit(24.5, "miles")
  7674. },
  7675. ]
  7676. ))
  7677. characterMakers.push(() => makeCharacter(
  7678. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  7679. {
  7680. front: {
  7681. height: math.unit(6, "feet"),
  7682. weight: math.unit(150, "lb"),
  7683. name: "Front",
  7684. image: {
  7685. source: "./media/characters/goddess-elizabeth/front.svg",
  7686. extra: 1800 / 1525,
  7687. bottom: 0.005
  7688. }
  7689. },
  7690. foot: {
  7691. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7692. name: "Foot",
  7693. image: {
  7694. source: "./media/characters/goddess-elizabeth/foot.svg"
  7695. }
  7696. },
  7697. mouth: {
  7698. height: math.unit(6, "feet"),
  7699. name: "Mouth",
  7700. image: {
  7701. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7702. }
  7703. },
  7704. },
  7705. [
  7706. {
  7707. name: "Micro",
  7708. height: math.unit(12, "feet")
  7709. },
  7710. {
  7711. name: "Normal",
  7712. height: math.unit(80, "miles"),
  7713. default: true
  7714. },
  7715. {
  7716. name: "Macro",
  7717. height: math.unit(15000, "parsecs")
  7718. },
  7719. ]
  7720. ))
  7721. characterMakers.push(() => makeCharacter(
  7722. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  7723. {
  7724. front: {
  7725. height: math.unit(5 + 9 / 12, "feet"),
  7726. weight: math.unit(144, "lb"),
  7727. name: "Front",
  7728. image: {
  7729. source: "./media/characters/kara/front.svg"
  7730. }
  7731. },
  7732. feet: {
  7733. height: math.unit(6 / 6.765, "feet"),
  7734. name: "Kara's Feet",
  7735. rename: true,
  7736. image: {
  7737. source: "./media/characters/kara/feet.svg"
  7738. }
  7739. },
  7740. },
  7741. [
  7742. {
  7743. name: "Normal",
  7744. height: math.unit(5 + 9 / 12, "feet")
  7745. },
  7746. {
  7747. name: "Macro",
  7748. height: math.unit(174, "feet"),
  7749. default: true
  7750. },
  7751. ]
  7752. ))
  7753. characterMakers.push(() => makeCharacter(
  7754. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  7755. {
  7756. front: {
  7757. height: math.unit(18, "feet"),
  7758. weight: math.unit(4050, "lb"),
  7759. name: "Front",
  7760. image: {
  7761. source: "./media/characters/tyrone/front.svg",
  7762. extra: 2520 / 2402,
  7763. bottom: 0.025
  7764. }
  7765. },
  7766. },
  7767. [
  7768. {
  7769. name: "Normal",
  7770. height: math.unit(18, "feet"),
  7771. default: true
  7772. },
  7773. {
  7774. name: "Macro",
  7775. height: math.unit(300, "feet")
  7776. },
  7777. ]
  7778. ))
  7779. characterMakers.push(() => makeCharacter(
  7780. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  7781. {
  7782. front: {
  7783. height: math.unit(7 + 8 / 12, "feet"),
  7784. weight: math.unit(120, "lb"),
  7785. name: "Front",
  7786. image: {
  7787. source: "./media/characters/danny/front.svg",
  7788. extra: 1490 / 1350
  7789. }
  7790. },
  7791. back: {
  7792. height: math.unit(7 + 8 / 12, "feet"),
  7793. weight: math.unit(120, "lb"),
  7794. name: "Back",
  7795. image: {
  7796. source: "./media/characters/danny/back.svg",
  7797. extra: 1490 / 1350
  7798. }
  7799. },
  7800. },
  7801. [
  7802. {
  7803. name: "Normal",
  7804. height: math.unit(7 + 8 / 12, "feet"),
  7805. default: true
  7806. },
  7807. ]
  7808. ))
  7809. characterMakers.push(() => makeCharacter(
  7810. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  7811. {
  7812. front: {
  7813. height: math.unit(3.5, "inches"),
  7814. weight: math.unit(19, "grams"),
  7815. name: "Front",
  7816. image: {
  7817. source: "./media/characters/mallow/front.svg",
  7818. extra: 471 / 431
  7819. }
  7820. },
  7821. back: {
  7822. height: math.unit(3.5, "inches"),
  7823. weight: math.unit(19, "grams"),
  7824. name: "Back",
  7825. image: {
  7826. source: "./media/characters/mallow/back.svg",
  7827. extra: 471 / 431
  7828. }
  7829. },
  7830. },
  7831. [
  7832. {
  7833. name: "Normal",
  7834. height: math.unit(3.5, "inches"),
  7835. default: true
  7836. },
  7837. ]
  7838. ))
  7839. characterMakers.push(() => makeCharacter(
  7840. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  7841. {
  7842. front: {
  7843. height: math.unit(9, "feet"),
  7844. weight: math.unit(230, "kg"),
  7845. name: "Front",
  7846. image: {
  7847. source: "./media/characters/starry-aqua/front.svg"
  7848. }
  7849. },
  7850. back: {
  7851. height: math.unit(9, "feet"),
  7852. weight: math.unit(230, "kg"),
  7853. name: "Back",
  7854. image: {
  7855. source: "./media/characters/starry-aqua/back.svg"
  7856. }
  7857. },
  7858. hand: {
  7859. height: math.unit(9 * 0.1168, "feet"),
  7860. name: "Hand",
  7861. image: {
  7862. source: "./media/characters/starry-aqua/hand.svg"
  7863. }
  7864. },
  7865. foot: {
  7866. height: math.unit(9 * 0.18, "feet"),
  7867. name: "Foot",
  7868. image: {
  7869. source: "./media/characters/starry-aqua/foot.svg"
  7870. }
  7871. }
  7872. },
  7873. [
  7874. {
  7875. name: "Micro",
  7876. height: math.unit(3, "inches")
  7877. },
  7878. {
  7879. name: "Normal",
  7880. height: math.unit(9, "feet")
  7881. },
  7882. {
  7883. name: "Macro",
  7884. height: math.unit(300, "feet"),
  7885. default: true
  7886. },
  7887. {
  7888. name: "Megamacro",
  7889. height: math.unit(3200, "feet")
  7890. }
  7891. ]
  7892. ))
  7893. characterMakers.push(() => makeCharacter(
  7894. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  7895. {
  7896. front: {
  7897. height: math.unit(6, "feet"),
  7898. weight: math.unit(230, "lb"),
  7899. name: "Front",
  7900. image: {
  7901. source: "./media/characters/luka/front.svg",
  7902. extra: 1,
  7903. bottom: 0.025
  7904. }
  7905. },
  7906. },
  7907. [
  7908. {
  7909. name: "Normal",
  7910. height: math.unit(12 + 8 / 12, "feet"),
  7911. default: true
  7912. },
  7913. {
  7914. name: "Minimacro",
  7915. height: math.unit(20, "feet")
  7916. },
  7917. {
  7918. name: "Macro",
  7919. height: math.unit(250, "feet")
  7920. },
  7921. {
  7922. name: "Megamacro",
  7923. height: math.unit(5, "miles")
  7924. },
  7925. {
  7926. name: "Gigamacro",
  7927. height: math.unit(8000, "miles")
  7928. },
  7929. ]
  7930. ))
  7931. characterMakers.push(() => makeCharacter(
  7932. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  7933. {
  7934. front: {
  7935. height: math.unit(6, "feet"),
  7936. weight: math.unit(150, "lb"),
  7937. name: "Front",
  7938. image: {
  7939. source: "./media/characters/natalie-nightring/front.svg",
  7940. extra: 1,
  7941. bottom: 0.06
  7942. }
  7943. },
  7944. },
  7945. [
  7946. {
  7947. name: "Uh Oh",
  7948. height: math.unit(0.1, "mm")
  7949. },
  7950. {
  7951. name: "Small",
  7952. height: math.unit(3, "inches")
  7953. },
  7954. {
  7955. name: "Human Scale",
  7956. height: math.unit(6, "feet")
  7957. },
  7958. {
  7959. name: "Librarian",
  7960. height: math.unit(50, "feet"),
  7961. default: true
  7962. },
  7963. {
  7964. name: "Immense",
  7965. height: math.unit(200, "miles")
  7966. },
  7967. ]
  7968. ))
  7969. characterMakers.push(() => makeCharacter(
  7970. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  7971. {
  7972. front: {
  7973. height: math.unit(6, "feet"),
  7974. weight: math.unit(180, "lbs"),
  7975. name: "Front",
  7976. image: {
  7977. source: "./media/characters/danni-rosie/front.svg",
  7978. extra: 1260 / 1128,
  7979. bottom: 0.022
  7980. }
  7981. },
  7982. },
  7983. [
  7984. {
  7985. name: "Micro",
  7986. height: math.unit(2, "inches"),
  7987. default: true
  7988. },
  7989. ]
  7990. ))
  7991. characterMakers.push(() => makeCharacter(
  7992. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  7993. {
  7994. front: {
  7995. height: math.unit(5 + 9 / 12, "feet"),
  7996. weight: math.unit(220, "lb"),
  7997. name: "Front",
  7998. image: {
  7999. source: "./media/characters/samantha-kruse/front.svg",
  8000. extra: (985 / 935),
  8001. bottom: 0.03
  8002. }
  8003. },
  8004. frontUndressed: {
  8005. height: math.unit(5 + 9 / 12, "feet"),
  8006. weight: math.unit(220, "lb"),
  8007. name: "Front (Undressed)",
  8008. image: {
  8009. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8010. extra: (973 / 923),
  8011. bottom: 0.025
  8012. }
  8013. },
  8014. fat: {
  8015. height: math.unit(5 + 9 / 12, "feet"),
  8016. weight: math.unit(900, "lb"),
  8017. name: "Front (Fat)",
  8018. image: {
  8019. source: "./media/characters/samantha-kruse/fat.svg",
  8020. extra: 2688 / 2561
  8021. }
  8022. },
  8023. },
  8024. [
  8025. {
  8026. name: "Normal",
  8027. height: math.unit(5 + 9 / 12, "feet"),
  8028. default: true
  8029. }
  8030. ]
  8031. ))
  8032. characterMakers.push(() => makeCharacter(
  8033. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8034. {
  8035. back: {
  8036. height: math.unit(5 + 4 / 12, "feet"),
  8037. weight: math.unit(4963, "lb"),
  8038. name: "Back",
  8039. image: {
  8040. source: "./media/characters/amelia-rosie/back.svg",
  8041. extra: 1113 / 963,
  8042. bottom: 0.01
  8043. }
  8044. },
  8045. },
  8046. [
  8047. {
  8048. name: "Level 0",
  8049. height: math.unit(5 + 4 / 12, "feet")
  8050. },
  8051. {
  8052. name: "Level 1",
  8053. height: math.unit(164597, "feet"),
  8054. default: true
  8055. },
  8056. {
  8057. name: "Level 2",
  8058. height: math.unit(956243, "miles")
  8059. },
  8060. {
  8061. name: "Level 3",
  8062. height: math.unit(29421709423, "miles")
  8063. },
  8064. {
  8065. name: "Level 4",
  8066. height: math.unit(154, "lightyears")
  8067. },
  8068. {
  8069. name: "Level 5",
  8070. height: math.unit(4738272, "lightyears")
  8071. },
  8072. {
  8073. name: "Level 6",
  8074. height: math.unit(145787152896, "lightyears")
  8075. },
  8076. ]
  8077. ))
  8078. characterMakers.push(() => makeCharacter(
  8079. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8080. {
  8081. front: {
  8082. height: math.unit(5 + 11 / 12, "feet"),
  8083. weight: math.unit(65, "kg"),
  8084. name: "Front",
  8085. image: {
  8086. source: "./media/characters/rook-kitara/front.svg",
  8087. extra: 1347 / 1274,
  8088. bottom: 0.005
  8089. }
  8090. },
  8091. },
  8092. [
  8093. {
  8094. name: "Totally Unfair",
  8095. height: math.unit(1.8, "mm")
  8096. },
  8097. {
  8098. name: "Lap Rookie",
  8099. height: math.unit(1.4, "feet")
  8100. },
  8101. {
  8102. name: "Normal",
  8103. height: math.unit(5 + 11 / 12, "feet"),
  8104. default: true
  8105. },
  8106. {
  8107. name: "How Did This Happen",
  8108. height: math.unit(80, "miles")
  8109. }
  8110. ]
  8111. ))
  8112. characterMakers.push(() => makeCharacter(
  8113. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8114. {
  8115. front: {
  8116. height: math.unit(7, "feet"),
  8117. weight: math.unit(300, "lb"),
  8118. name: "Front",
  8119. image: {
  8120. source: "./media/characters/pisces/front.svg",
  8121. extra: 2255 / 2115,
  8122. bottom: 0.03
  8123. }
  8124. },
  8125. back: {
  8126. height: math.unit(7, "feet"),
  8127. weight: math.unit(300, "lb"),
  8128. name: "Back",
  8129. image: {
  8130. source: "./media/characters/pisces/back.svg",
  8131. extra: 2146 / 2055,
  8132. bottom: 0.04
  8133. }
  8134. },
  8135. },
  8136. [
  8137. {
  8138. name: "Normal",
  8139. height: math.unit(7, "feet"),
  8140. default: true
  8141. },
  8142. {
  8143. name: "Swimming Pool",
  8144. height: math.unit(12.2, "meters")
  8145. },
  8146. {
  8147. name: "Olympic Swimming Pool",
  8148. height: math.unit(56.3, "meters")
  8149. },
  8150. {
  8151. name: "Lake Superior",
  8152. height: math.unit(93900, "meters")
  8153. },
  8154. {
  8155. name: "Mediterranean Sea",
  8156. height: math.unit(644457, "meters")
  8157. },
  8158. {
  8159. name: "World's Oceans",
  8160. height: math.unit(4567491, "meters")
  8161. },
  8162. ]
  8163. ))
  8164. characterMakers.push(() => makeCharacter(
  8165. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8166. {
  8167. front: {
  8168. height: math.unit(2.3, "meters"),
  8169. weight: math.unit(120, "kg"),
  8170. name: "Front",
  8171. image: {
  8172. source: "./media/characters/zelas/front.svg"
  8173. }
  8174. },
  8175. side: {
  8176. height: math.unit(2.3, "meters"),
  8177. weight: math.unit(120, "kg"),
  8178. name: "Side",
  8179. image: {
  8180. source: "./media/characters/zelas/side.svg"
  8181. }
  8182. },
  8183. back: {
  8184. height: math.unit(2.3, "meters"),
  8185. weight: math.unit(120, "kg"),
  8186. name: "Back",
  8187. image: {
  8188. source: "./media/characters/zelas/back.svg"
  8189. }
  8190. },
  8191. foot: {
  8192. height: math.unit(1.116, "feet"),
  8193. name: "Foot",
  8194. image: {
  8195. source: "./media/characters/zelas/foot.svg"
  8196. }
  8197. },
  8198. },
  8199. [
  8200. {
  8201. name: "Normal",
  8202. height: math.unit(2.3, "meters")
  8203. },
  8204. {
  8205. name: "Macro",
  8206. height: math.unit(30, "meters"),
  8207. default: true
  8208. },
  8209. ]
  8210. ))
  8211. characterMakers.push(() => makeCharacter(
  8212. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8213. {
  8214. front: {
  8215. height: math.unit(1, "inch"),
  8216. weight: math.unit(0.21, "grams"),
  8217. name: "Front",
  8218. image: {
  8219. source: "./media/characters/talbot/front.svg",
  8220. extra: 594 / 544
  8221. }
  8222. },
  8223. },
  8224. [
  8225. {
  8226. name: "Micro",
  8227. height: math.unit(1, "inch"),
  8228. default: true
  8229. },
  8230. ]
  8231. ))
  8232. characterMakers.push(() => makeCharacter(
  8233. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8234. {
  8235. front: {
  8236. height: math.unit(3 + 3 / 12, "feet"),
  8237. weight: math.unit(51.8, "lb"),
  8238. name: "Front",
  8239. image: {
  8240. source: "./media/characters/fliss/front.svg",
  8241. extra: 840 / 640
  8242. }
  8243. },
  8244. },
  8245. [
  8246. {
  8247. name: "Teeny Tiny",
  8248. height: math.unit(1, "mm")
  8249. },
  8250. {
  8251. name: "Small",
  8252. height: math.unit(1, "inch"),
  8253. default: true
  8254. },
  8255. {
  8256. name: "Standard Sylveon",
  8257. height: math.unit(3 + 3 / 12, "feet")
  8258. },
  8259. {
  8260. name: "Large Nuisance",
  8261. height: math.unit(33, "feet")
  8262. },
  8263. {
  8264. name: "City Filler",
  8265. height: math.unit(3000, "feet")
  8266. },
  8267. {
  8268. name: "New Horizon",
  8269. height: math.unit(6000, "miles")
  8270. },
  8271. ]
  8272. ))
  8273. characterMakers.push(() => makeCharacter(
  8274. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8275. {
  8276. front: {
  8277. height: math.unit(5, "cm"),
  8278. weight: math.unit(1.94, "g"),
  8279. name: "Front",
  8280. image: {
  8281. source: "./media/characters/fleta/front.svg",
  8282. extra: 835 / 803
  8283. }
  8284. },
  8285. back: {
  8286. height: math.unit(5, "cm"),
  8287. weight: math.unit(1.94, "g"),
  8288. name: "Back",
  8289. image: {
  8290. source: "./media/characters/fleta/back.svg",
  8291. extra: 835 / 803
  8292. }
  8293. },
  8294. },
  8295. [
  8296. {
  8297. name: "Micro",
  8298. height: math.unit(5, "cm"),
  8299. default: true
  8300. },
  8301. ]
  8302. ))
  8303. characterMakers.push(() => makeCharacter(
  8304. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8305. {
  8306. front: {
  8307. height: math.unit(6, "feet"),
  8308. weight: math.unit(225, "lb"),
  8309. name: "Front",
  8310. image: {
  8311. source: "./media/characters/dominic/front.svg",
  8312. extra: 1770 / 1620,
  8313. bottom: 0.025
  8314. }
  8315. },
  8316. back: {
  8317. height: math.unit(6, "feet"),
  8318. weight: math.unit(225, "lb"),
  8319. name: "Back",
  8320. image: {
  8321. source: "./media/characters/dominic/back.svg",
  8322. extra: 1745 / 1620,
  8323. bottom: 0.065
  8324. }
  8325. },
  8326. },
  8327. [
  8328. {
  8329. name: "Nano",
  8330. height: math.unit(0.1, "mm")
  8331. },
  8332. {
  8333. name: "Micro-",
  8334. height: math.unit(1, "mm")
  8335. },
  8336. {
  8337. name: "Micro",
  8338. height: math.unit(4, "inches")
  8339. },
  8340. {
  8341. name: "Normal",
  8342. height: math.unit(6 + 4 / 12, "feet"),
  8343. default: true
  8344. },
  8345. {
  8346. name: "Macro",
  8347. height: math.unit(115, "feet")
  8348. },
  8349. {
  8350. name: "Macro+",
  8351. height: math.unit(955, "feet")
  8352. },
  8353. {
  8354. name: "Megamacro",
  8355. height: math.unit(8990, "feet")
  8356. },
  8357. {
  8358. name: "Gigmacro",
  8359. height: math.unit(9310, "miles")
  8360. },
  8361. {
  8362. name: "Teramacro",
  8363. height: math.unit(1567005010, "miles")
  8364. },
  8365. {
  8366. name: "Examacro",
  8367. height: math.unit(1425, "parsecs")
  8368. },
  8369. ]
  8370. ))
  8371. characterMakers.push(() => makeCharacter(
  8372. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8373. {
  8374. front: {
  8375. height: math.unit(400, "feet"),
  8376. weight: math.unit(44444444, "lb"),
  8377. name: "Front",
  8378. image: {
  8379. source: "./media/characters/major-colonel/front.svg"
  8380. }
  8381. },
  8382. back: {
  8383. height: math.unit(400, "feet"),
  8384. weight: math.unit(44444444, "lb"),
  8385. name: "Back",
  8386. image: {
  8387. source: "./media/characters/major-colonel/back.svg"
  8388. }
  8389. },
  8390. },
  8391. [
  8392. {
  8393. name: "Macro",
  8394. height: math.unit(400, "feet"),
  8395. default: true
  8396. },
  8397. ]
  8398. ))
  8399. characterMakers.push(() => makeCharacter(
  8400. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8401. {
  8402. catFront: {
  8403. height: math.unit(6, "feet"),
  8404. weight: math.unit(120, "lb"),
  8405. name: "Front (Cat Side)",
  8406. image: {
  8407. source: "./media/characters/axel-lycan/cat-front.svg",
  8408. extra: 430 / 402,
  8409. bottom: 43 / 472.35
  8410. }
  8411. },
  8412. catBack: {
  8413. height: math.unit(6, "feet"),
  8414. weight: math.unit(120, "lb"),
  8415. name: "Back (Cat Side)",
  8416. image: {
  8417. source: "./media/characters/axel-lycan/cat-back.svg",
  8418. extra: 447 / 419,
  8419. bottom: 23.3 / 469
  8420. }
  8421. },
  8422. wolfFront: {
  8423. height: math.unit(6, "feet"),
  8424. weight: math.unit(120, "lb"),
  8425. name: "Front (Wolf Side)",
  8426. image: {
  8427. source: "./media/characters/axel-lycan/wolf-front.svg",
  8428. extra: 485 / 456,
  8429. bottom: 19 / 504
  8430. }
  8431. },
  8432. wolfBack: {
  8433. height: math.unit(6, "feet"),
  8434. weight: math.unit(120, "lb"),
  8435. name: "Back (Wolf Side)",
  8436. image: {
  8437. source: "./media/characters/axel-lycan/wolf-back.svg",
  8438. extra: 475 / 438,
  8439. bottom: 39.2 / 514
  8440. }
  8441. },
  8442. },
  8443. [
  8444. {
  8445. name: "Macro",
  8446. height: math.unit(1, "km"),
  8447. default: true
  8448. },
  8449. ]
  8450. ))
  8451. characterMakers.push(() => makeCharacter(
  8452. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8453. {
  8454. front: {
  8455. height: math.unit(5 + 9 / 12, "feet"),
  8456. weight: math.unit(175, "lb"),
  8457. name: "Front",
  8458. image: {
  8459. source: "./media/characters/vanrel-hyena/front.svg",
  8460. extra: 1086 / 1010,
  8461. bottom: 0.04
  8462. }
  8463. },
  8464. },
  8465. [
  8466. {
  8467. name: "Normal",
  8468. height: math.unit(5 + 9 / 12, "feet"),
  8469. default: true
  8470. },
  8471. ]
  8472. ))
  8473. characterMakers.push(() => makeCharacter(
  8474. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8475. {
  8476. front: {
  8477. height: math.unit(6, "feet"),
  8478. weight: math.unit(103, "lb"),
  8479. name: "Front",
  8480. image: {
  8481. source: "./media/characters/abbott-absol/front.svg",
  8482. extra: 2010 / 1842
  8483. }
  8484. },
  8485. },
  8486. [
  8487. {
  8488. name: "Megamicro",
  8489. height: math.unit(0.1, "mm")
  8490. },
  8491. {
  8492. name: "Micro",
  8493. height: math.unit(1, "inch")
  8494. },
  8495. {
  8496. name: "Normal",
  8497. height: math.unit(6, "feet"),
  8498. default: true
  8499. },
  8500. ]
  8501. ))
  8502. characterMakers.push(() => makeCharacter(
  8503. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8504. {
  8505. front: {
  8506. height: math.unit(6, "feet"),
  8507. weight: math.unit(264, "lb"),
  8508. name: "Front",
  8509. image: {
  8510. source: "./media/characters/hector/front.svg",
  8511. extra: 2280 / 2130,
  8512. bottom: 0.07
  8513. }
  8514. },
  8515. },
  8516. [
  8517. {
  8518. name: "Normal",
  8519. height: math.unit(12.25, "foot"),
  8520. default: true
  8521. },
  8522. {
  8523. name: "Macro",
  8524. height: math.unit(160, "feet")
  8525. },
  8526. ]
  8527. ))
  8528. characterMakers.push(() => makeCharacter(
  8529. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8530. {
  8531. front: {
  8532. height: math.unit(6, "feet"),
  8533. weight: math.unit(150, "lb"),
  8534. name: "Front",
  8535. image: {
  8536. source: "./media/characters/sal/front.svg",
  8537. extra: 1846 / 1699,
  8538. bottom: 0.04
  8539. }
  8540. },
  8541. },
  8542. [
  8543. {
  8544. name: "Megamacro",
  8545. height: math.unit(10, "miles"),
  8546. default: true
  8547. },
  8548. ]
  8549. ))
  8550. characterMakers.push(() => makeCharacter(
  8551. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8552. {
  8553. front: {
  8554. height: math.unit(3, "meters"),
  8555. weight: math.unit(450, "kg"),
  8556. name: "front",
  8557. image: {
  8558. source: "./media/characters/ranger/front.svg",
  8559. extra: 2401 / 2243,
  8560. bottom: 0.05
  8561. }
  8562. },
  8563. },
  8564. [
  8565. {
  8566. name: "Normal",
  8567. height: math.unit(3, "meters"),
  8568. default: true
  8569. },
  8570. ]
  8571. ))
  8572. characterMakers.push(() => makeCharacter(
  8573. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8574. {
  8575. front: {
  8576. height: math.unit(14, "feet"),
  8577. weight: math.unit(800, "kg"),
  8578. name: "Front",
  8579. image: {
  8580. source: "./media/characters/theresa/front.svg",
  8581. extra: 3575 / 3346,
  8582. bottom: 0.03
  8583. }
  8584. },
  8585. },
  8586. [
  8587. {
  8588. name: "Normal",
  8589. height: math.unit(14, "feet"),
  8590. default: true
  8591. },
  8592. ]
  8593. ))
  8594. characterMakers.push(() => makeCharacter(
  8595. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8596. {
  8597. front: {
  8598. height: math.unit(6, "feet"),
  8599. weight: math.unit(3, "kg"),
  8600. name: "Front",
  8601. image: {
  8602. source: "./media/characters/ine/front.svg",
  8603. extra: 678 / 539,
  8604. bottom: 0.023
  8605. }
  8606. },
  8607. },
  8608. [
  8609. {
  8610. name: "Normal",
  8611. height: math.unit(2.265, "feet"),
  8612. default: true
  8613. },
  8614. ]
  8615. ))
  8616. characterMakers.push(() => makeCharacter(
  8617. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8618. {
  8619. front: {
  8620. height: math.unit(5, "feet"),
  8621. weight: math.unit(30, "kg"),
  8622. name: "Front",
  8623. image: {
  8624. source: "./media/characters/vial/front.svg",
  8625. extra: 1365 / 1277,
  8626. bottom: 0.04
  8627. }
  8628. },
  8629. },
  8630. [
  8631. {
  8632. name: "Normal",
  8633. height: math.unit(5, "feet"),
  8634. default: true
  8635. },
  8636. ]
  8637. ))
  8638. characterMakers.push(() => makeCharacter(
  8639. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8640. {
  8641. side: {
  8642. height: math.unit(3.4, "meters"),
  8643. weight: math.unit(1000, "lb"),
  8644. name: "Side",
  8645. image: {
  8646. source: "./media/characters/rovoska/side.svg",
  8647. extra: 4403 / 1515
  8648. }
  8649. },
  8650. },
  8651. [
  8652. {
  8653. name: "Normal",
  8654. height: math.unit(3.4, "meters"),
  8655. default: true
  8656. },
  8657. ]
  8658. ))
  8659. characterMakers.push(() => makeCharacter(
  8660. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8661. {
  8662. front: {
  8663. height: math.unit(8, "feet"),
  8664. weight: math.unit(315, "lb"),
  8665. name: "Front",
  8666. image: {
  8667. source: "./media/characters/gunner-rotthbauer/front.svg"
  8668. }
  8669. },
  8670. back: {
  8671. height: math.unit(8, "feet"),
  8672. weight: math.unit(315, "lb"),
  8673. name: "Back",
  8674. image: {
  8675. source: "./media/characters/gunner-rotthbauer/back.svg"
  8676. }
  8677. },
  8678. },
  8679. [
  8680. {
  8681. name: "Micro",
  8682. height: math.unit(3.5, "inches")
  8683. },
  8684. {
  8685. name: "Normal",
  8686. height: math.unit(8, "feet"),
  8687. default: true
  8688. },
  8689. {
  8690. name: "Macro",
  8691. height: math.unit(250, "feet")
  8692. },
  8693. {
  8694. name: "Megamacro",
  8695. height: math.unit(1, "AU")
  8696. },
  8697. ]
  8698. ))
  8699. characterMakers.push(() => makeCharacter(
  8700. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8701. {
  8702. front: {
  8703. height: math.unit(5 + 5 / 12, "feet"),
  8704. weight: math.unit(140, "lb"),
  8705. name: "Front",
  8706. image: {
  8707. source: "./media/characters/allatia/front.svg",
  8708. extra: 1227 / 1180,
  8709. bottom: 0.027
  8710. }
  8711. },
  8712. },
  8713. [
  8714. {
  8715. name: "Normal",
  8716. height: math.unit(5 + 5 / 12, "feet")
  8717. },
  8718. {
  8719. name: "Macro",
  8720. height: math.unit(250, "feet"),
  8721. default: true
  8722. },
  8723. {
  8724. name: "Megamacro",
  8725. height: math.unit(8, "miles")
  8726. }
  8727. ]
  8728. ))
  8729. characterMakers.push(() => makeCharacter(
  8730. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  8731. {
  8732. front: {
  8733. height: math.unit(6, "feet"),
  8734. weight: math.unit(120, "lb"),
  8735. name: "Front",
  8736. image: {
  8737. source: "./media/characters/tene/front.svg",
  8738. extra: 1728 / 1578,
  8739. bottom: 0.022
  8740. }
  8741. },
  8742. stomping: {
  8743. height: math.unit(2.025, "meters"),
  8744. weight: math.unit(120, "lb"),
  8745. name: "Stomping",
  8746. image: {
  8747. source: "./media/characters/tene/stomping.svg",
  8748. extra: 938 / 873,
  8749. bottom: 0.01
  8750. }
  8751. },
  8752. sitting: {
  8753. height: math.unit(1, "meter"),
  8754. weight: math.unit(120, "lb"),
  8755. name: "Sitting",
  8756. image: {
  8757. source: "./media/characters/tene/sitting.svg",
  8758. extra: 437 / 415,
  8759. bottom: 0.1
  8760. }
  8761. },
  8762. feral: {
  8763. height: math.unit(3.9, "feet"),
  8764. weight: math.unit(250, "lb"),
  8765. name: "Feral",
  8766. image: {
  8767. source: "./media/characters/tene/feral.svg",
  8768. extra: 717 / 458,
  8769. bottom: 0.179
  8770. }
  8771. },
  8772. },
  8773. [
  8774. {
  8775. name: "Normal",
  8776. height: math.unit(6, "feet")
  8777. },
  8778. {
  8779. name: "Macro",
  8780. height: math.unit(300, "feet"),
  8781. default: true
  8782. },
  8783. {
  8784. name: "Megamacro",
  8785. height: math.unit(5, "miles")
  8786. },
  8787. ]
  8788. ))
  8789. characterMakers.push(() => makeCharacter(
  8790. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  8791. {
  8792. side: {
  8793. height: math.unit(6, "feet"),
  8794. name: "Side",
  8795. image: {
  8796. source: "./media/characters/evander/side.svg",
  8797. extra: 877 / 477
  8798. }
  8799. },
  8800. },
  8801. [
  8802. {
  8803. name: "Normal",
  8804. height: math.unit(0.83, "meters"),
  8805. default: true
  8806. },
  8807. ]
  8808. ))
  8809. characterMakers.push(() => makeCharacter(
  8810. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  8811. {
  8812. front: {
  8813. height: math.unit(12, "feet"),
  8814. weight: math.unit(1000, "lb"),
  8815. name: "Front",
  8816. image: {
  8817. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  8818. extra: 1762 / 1611
  8819. }
  8820. },
  8821. back: {
  8822. height: math.unit(12, "feet"),
  8823. weight: math.unit(1000, "lb"),
  8824. name: "Back",
  8825. image: {
  8826. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  8827. extra: 1762 / 1611
  8828. }
  8829. },
  8830. },
  8831. [
  8832. {
  8833. name: "Normal",
  8834. height: math.unit(12, "feet"),
  8835. default: true
  8836. },
  8837. {
  8838. name: "Kaiju",
  8839. height: math.unit(150, "feet")
  8840. },
  8841. ]
  8842. ))
  8843. characterMakers.push(() => makeCharacter(
  8844. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  8845. {
  8846. front: {
  8847. height: math.unit(6, "feet"),
  8848. weight: math.unit(150, "lb"),
  8849. name: "Front",
  8850. image: {
  8851. source: "./media/characters/zero-alurus/front.svg"
  8852. }
  8853. },
  8854. back: {
  8855. height: math.unit(6, "feet"),
  8856. weight: math.unit(150, "lb"),
  8857. name: "Back",
  8858. image: {
  8859. source: "./media/characters/zero-alurus/back.svg"
  8860. }
  8861. },
  8862. },
  8863. [
  8864. {
  8865. name: "Normal",
  8866. height: math.unit(5 + 10 / 12, "feet")
  8867. },
  8868. {
  8869. name: "Macro",
  8870. height: math.unit(60, "feet"),
  8871. default: true
  8872. },
  8873. {
  8874. name: "Macro+",
  8875. height: math.unit(450, "feet")
  8876. },
  8877. ]
  8878. ))
  8879. characterMakers.push(() => makeCharacter(
  8880. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  8881. {
  8882. front: {
  8883. height: math.unit(6, "feet"),
  8884. weight: math.unit(200, "lb"),
  8885. name: "Front",
  8886. image: {
  8887. source: "./media/characters/mega-shi/front.svg",
  8888. extra: 1279 / 1250,
  8889. bottom: 0.02
  8890. }
  8891. },
  8892. back: {
  8893. height: math.unit(6, "feet"),
  8894. weight: math.unit(200, "lb"),
  8895. name: "Back",
  8896. image: {
  8897. source: "./media/characters/mega-shi/back.svg",
  8898. extra: 1279 / 1250,
  8899. bottom: 0.02
  8900. }
  8901. },
  8902. },
  8903. [
  8904. {
  8905. name: "Micro",
  8906. height: math.unit(16 + 6 / 12, "feet")
  8907. },
  8908. {
  8909. name: "Third Dimension",
  8910. height: math.unit(40, "meters")
  8911. },
  8912. {
  8913. name: "Normal",
  8914. height: math.unit(660, "feet"),
  8915. default: true
  8916. },
  8917. {
  8918. name: "Megamacro",
  8919. height: math.unit(10, "miles")
  8920. },
  8921. {
  8922. name: "Planetary Launch",
  8923. height: math.unit(500, "miles")
  8924. },
  8925. {
  8926. name: "Interstellar",
  8927. height: math.unit(1e9, "miles")
  8928. },
  8929. {
  8930. name: "Leaving the Universe",
  8931. height: math.unit(1, "gigaparsec")
  8932. },
  8933. {
  8934. name: "Travelling Universes",
  8935. height: math.unit(30e15, "parsecs")
  8936. },
  8937. ]
  8938. ))
  8939. characterMakers.push(() => makeCharacter(
  8940. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  8941. {
  8942. front: {
  8943. height: math.unit(6, "feet"),
  8944. weight: math.unit(150, "lb"),
  8945. name: "Front",
  8946. image: {
  8947. source: "./media/characters/odyssey/front.svg",
  8948. extra: 1782 / 1582,
  8949. bottom: 0.01
  8950. }
  8951. },
  8952. side: {
  8953. height: math.unit(5.7, "feet"),
  8954. weight: math.unit(140, "lb"),
  8955. name: "Side",
  8956. image: {
  8957. source: "./media/characters/odyssey/side.svg",
  8958. extra: 6462 / 5700
  8959. }
  8960. },
  8961. },
  8962. [
  8963. {
  8964. name: "Normal",
  8965. height: math.unit(5 + 4 / 12, "feet")
  8966. },
  8967. {
  8968. name: "Macro",
  8969. height: math.unit(1, "km")
  8970. },
  8971. {
  8972. name: "Megamacro",
  8973. height: math.unit(3000, "km")
  8974. },
  8975. {
  8976. name: "Gigamacro",
  8977. height: math.unit(1, "AU"),
  8978. default: true
  8979. },
  8980. {
  8981. name: "Omniversal",
  8982. height: math.unit(100e14, "lightyears")
  8983. },
  8984. ]
  8985. ))
  8986. characterMakers.push(() => makeCharacter(
  8987. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  8988. {
  8989. front: {
  8990. height: math.unit(6, "feet"),
  8991. weight: math.unit(300, "lb"),
  8992. name: "Front",
  8993. image: {
  8994. source: "./media/characters/mekuto/front.svg",
  8995. extra: 921 / 832,
  8996. bottom: 0.03
  8997. }
  8998. },
  8999. hand: {
  9000. height: math.unit(6 / 10.24, "feet"),
  9001. name: "Hand",
  9002. image: {
  9003. source: "./media/characters/mekuto/hand.svg"
  9004. }
  9005. },
  9006. foot: {
  9007. height: math.unit(6 / 5.05, "feet"),
  9008. name: "Foot",
  9009. image: {
  9010. source: "./media/characters/mekuto/foot.svg"
  9011. }
  9012. },
  9013. },
  9014. [
  9015. {
  9016. name: "Minimicro",
  9017. height: math.unit(0.2, "inches")
  9018. },
  9019. {
  9020. name: "Micro",
  9021. height: math.unit(1.5, "inches")
  9022. },
  9023. {
  9024. name: "Normal",
  9025. height: math.unit(5 + 11 / 12, "feet"),
  9026. default: true
  9027. },
  9028. {
  9029. name: "Minimacro",
  9030. height: math.unit(17 + 9 / 12, "feet")
  9031. },
  9032. {
  9033. name: "Macro",
  9034. height: math.unit(177.5, "feet")
  9035. },
  9036. {
  9037. name: "Megamacro",
  9038. height: math.unit(152, "miles")
  9039. },
  9040. ]
  9041. ))
  9042. characterMakers.push(() => makeCharacter(
  9043. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9044. {
  9045. front: {
  9046. height: math.unit(6.5, "inches"),
  9047. weight: math.unit(13, "oz"),
  9048. name: "Front",
  9049. image: {
  9050. source: "./media/characters/dafydd-tomos/front.svg",
  9051. extra: 2990 / 2603,
  9052. bottom: 0.03
  9053. }
  9054. },
  9055. },
  9056. [
  9057. {
  9058. name: "Micro",
  9059. height: math.unit(6.5, "inches"),
  9060. default: true
  9061. },
  9062. ]
  9063. ))
  9064. characterMakers.push(() => makeCharacter(
  9065. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9066. {
  9067. front: {
  9068. height: math.unit(6, "feet"),
  9069. weight: math.unit(150, "lb"),
  9070. name: "Front",
  9071. image: {
  9072. source: "./media/characters/splinter/front.svg",
  9073. extra: 2990 / 2882,
  9074. bottom: 0.04
  9075. }
  9076. },
  9077. back: {
  9078. height: math.unit(6, "feet"),
  9079. weight: math.unit(150, "lb"),
  9080. name: "Back",
  9081. image: {
  9082. source: "./media/characters/splinter/back.svg",
  9083. extra: 2990 / 2882,
  9084. bottom: 0.04
  9085. }
  9086. },
  9087. },
  9088. [
  9089. {
  9090. name: "Normal",
  9091. height: math.unit(6, "feet")
  9092. },
  9093. {
  9094. name: "Macro",
  9095. height: math.unit(230, "meters"),
  9096. default: true
  9097. },
  9098. ]
  9099. ))
  9100. characterMakers.push(() => makeCharacter(
  9101. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9102. {
  9103. front: {
  9104. height: math.unit(4 + 10 / 12, "feet"),
  9105. weight: math.unit(480, "lb"),
  9106. name: "Front",
  9107. image: {
  9108. source: "./media/characters/snow-gabumon/front.svg",
  9109. extra: 1140 / 963,
  9110. bottom: 0.058
  9111. }
  9112. },
  9113. back: {
  9114. height: math.unit(4 + 10 / 12, "feet"),
  9115. weight: math.unit(480, "lb"),
  9116. name: "Back",
  9117. image: {
  9118. source: "./media/characters/snow-gabumon/back.svg",
  9119. extra: 1115 / 962,
  9120. bottom: 0.041
  9121. }
  9122. },
  9123. frontUndresed: {
  9124. height: math.unit(4 + 10 / 12, "feet"),
  9125. weight: math.unit(480, "lb"),
  9126. name: "Front (Undressed)",
  9127. image: {
  9128. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9129. extra: 1061 / 960,
  9130. bottom: 0.045
  9131. }
  9132. },
  9133. },
  9134. [
  9135. {
  9136. name: "Micro",
  9137. height: math.unit(1, "inch")
  9138. },
  9139. {
  9140. name: "Normal",
  9141. height: math.unit(4 + 10 / 12, "feet"),
  9142. default: true
  9143. },
  9144. {
  9145. name: "Macro",
  9146. height: math.unit(200, "feet")
  9147. },
  9148. {
  9149. name: "Megamacro",
  9150. height: math.unit(120, "miles")
  9151. },
  9152. {
  9153. name: "Gigamacro",
  9154. height: math.unit(9800, "miles")
  9155. },
  9156. ]
  9157. ))
  9158. characterMakers.push(() => makeCharacter(
  9159. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9160. {
  9161. front: {
  9162. height: math.unit(1.7, "meters"),
  9163. weight: math.unit(140, "lb"),
  9164. name: "Front",
  9165. image: {
  9166. source: "./media/characters/moody/front.svg",
  9167. extra: 3226 / 3007,
  9168. bottom: 0.087
  9169. }
  9170. },
  9171. },
  9172. [
  9173. {
  9174. name: "Micro",
  9175. height: math.unit(1, "mm")
  9176. },
  9177. {
  9178. name: "Normal",
  9179. height: math.unit(1.7, "meters"),
  9180. default: true
  9181. },
  9182. {
  9183. name: "Macro",
  9184. height: math.unit(80, "meters")
  9185. },
  9186. {
  9187. name: "Macro+",
  9188. height: math.unit(500, "meters")
  9189. },
  9190. ]
  9191. ))
  9192. characterMakers.push(() => makeCharacter(
  9193. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9194. {
  9195. front: {
  9196. height: math.unit(6, "feet"),
  9197. weight: math.unit(150, "lb"),
  9198. name: "Front",
  9199. image: {
  9200. source: "./media/characters/zyas/front.svg",
  9201. extra: 1180 / 1120,
  9202. bottom: 0.045
  9203. }
  9204. },
  9205. },
  9206. [
  9207. {
  9208. name: "Normal",
  9209. height: math.unit(10, "feet"),
  9210. default: true
  9211. },
  9212. {
  9213. name: "Macro",
  9214. height: math.unit(500, "feet")
  9215. },
  9216. {
  9217. name: "Megamacro",
  9218. height: math.unit(5, "miles")
  9219. },
  9220. {
  9221. name: "Teramacro",
  9222. height: math.unit(150000, "miles")
  9223. },
  9224. ]
  9225. ))
  9226. characterMakers.push(() => makeCharacter(
  9227. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9228. {
  9229. front: {
  9230. height: math.unit(6, "feet"),
  9231. weight: math.unit(150, "lb"),
  9232. name: "Front",
  9233. image: {
  9234. source: "./media/characters/cuon/front.svg",
  9235. extra: 1390 / 1320,
  9236. bottom: 0.008
  9237. }
  9238. },
  9239. },
  9240. [
  9241. {
  9242. name: "Micro",
  9243. height: math.unit(3, "inches")
  9244. },
  9245. {
  9246. name: "Normal",
  9247. height: math.unit(18 + 9 / 12, "feet"),
  9248. default: true
  9249. },
  9250. {
  9251. name: "Macro",
  9252. height: math.unit(360, "feet")
  9253. },
  9254. {
  9255. name: "Megamacro",
  9256. height: math.unit(360, "miles")
  9257. },
  9258. ]
  9259. ))
  9260. characterMakers.push(() => makeCharacter(
  9261. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9262. {
  9263. front: {
  9264. height: math.unit(2.4, "meters"),
  9265. weight: math.unit(70, "kg"),
  9266. name: "Front",
  9267. image: {
  9268. source: "./media/characters/nyanuxk/front.svg",
  9269. extra: 1172 / 1084,
  9270. bottom: 0.065
  9271. }
  9272. },
  9273. side: {
  9274. height: math.unit(2.4, "meters"),
  9275. weight: math.unit(70, "kg"),
  9276. name: "Side",
  9277. image: {
  9278. source: "./media/characters/nyanuxk/side.svg",
  9279. extra: 1190 / 1132,
  9280. bottom: 0.007
  9281. }
  9282. },
  9283. back: {
  9284. height: math.unit(2.4, "meters"),
  9285. weight: math.unit(70, "kg"),
  9286. name: "Back",
  9287. image: {
  9288. source: "./media/characters/nyanuxk/back.svg",
  9289. extra: 1200 / 1141,
  9290. bottom: 0.015
  9291. }
  9292. },
  9293. foot: {
  9294. height: math.unit(0.52, "meters"),
  9295. name: "Foot",
  9296. image: {
  9297. source: "./media/characters/nyanuxk/foot.svg"
  9298. }
  9299. },
  9300. },
  9301. [
  9302. {
  9303. name: "Micro",
  9304. height: math.unit(2, "cm")
  9305. },
  9306. {
  9307. name: "Normal",
  9308. height: math.unit(2.4, "meters"),
  9309. default: true
  9310. },
  9311. {
  9312. name: "Smaller Macro",
  9313. height: math.unit(120, "meters")
  9314. },
  9315. {
  9316. name: "Bigger Macro",
  9317. height: math.unit(1.2, "km")
  9318. },
  9319. {
  9320. name: "Megamacro",
  9321. height: math.unit(15, "kilometers")
  9322. },
  9323. {
  9324. name: "Gigamacro",
  9325. height: math.unit(2000, "km")
  9326. },
  9327. {
  9328. name: "Teramacro",
  9329. height: math.unit(500000, "km")
  9330. },
  9331. ]
  9332. ))
  9333. characterMakers.push(() => makeCharacter(
  9334. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9335. {
  9336. side: {
  9337. height: math.unit(6, "feet"),
  9338. name: "Side",
  9339. image: {
  9340. source: "./media/characters/ailbhe/side.svg",
  9341. extra: 757 / 464,
  9342. bottom: 0.041
  9343. }
  9344. },
  9345. },
  9346. [
  9347. {
  9348. name: "Normal",
  9349. height: math.unit(1.07, "meters"),
  9350. default: true
  9351. },
  9352. ]
  9353. ))
  9354. characterMakers.push(() => makeCharacter(
  9355. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9356. {
  9357. front: {
  9358. height: math.unit(6, "feet"),
  9359. weight: math.unit(120, "kg"),
  9360. name: "Front",
  9361. image: {
  9362. source: "./media/characters/zevulfius/front.svg",
  9363. extra: 965 / 903
  9364. }
  9365. },
  9366. side: {
  9367. height: math.unit(6, "feet"),
  9368. weight: math.unit(120, "kg"),
  9369. name: "Side",
  9370. image: {
  9371. source: "./media/characters/zevulfius/side.svg",
  9372. extra: 939 / 900
  9373. }
  9374. },
  9375. back: {
  9376. height: math.unit(6, "feet"),
  9377. weight: math.unit(120, "kg"),
  9378. name: "Back",
  9379. image: {
  9380. source: "./media/characters/zevulfius/back.svg",
  9381. extra: 918 / 854,
  9382. bottom: 0.005
  9383. }
  9384. },
  9385. foot: {
  9386. height: math.unit(6 / 3.72, "feet"),
  9387. name: "Foot",
  9388. image: {
  9389. source: "./media/characters/zevulfius/foot.svg"
  9390. }
  9391. },
  9392. },
  9393. [
  9394. {
  9395. name: "Macro",
  9396. height: math.unit(750, "meters")
  9397. },
  9398. {
  9399. name: "Megamacro",
  9400. height: math.unit(20, "km"),
  9401. default: true
  9402. },
  9403. {
  9404. name: "Gigamacro",
  9405. height: math.unit(2000, "km")
  9406. },
  9407. {
  9408. name: "Teramacro",
  9409. height: math.unit(250000, "km")
  9410. },
  9411. ]
  9412. ))
  9413. characterMakers.push(() => makeCharacter(
  9414. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9415. {
  9416. front: {
  9417. height: math.unit(100, "feet"),
  9418. weight: math.unit(350, "kg"),
  9419. name: "Front",
  9420. image: {
  9421. source: "./media/characters/rikes/front.svg",
  9422. extra: 1565 / 1483,
  9423. bottom: 0.017
  9424. }
  9425. },
  9426. },
  9427. [
  9428. {
  9429. name: "Macro",
  9430. height: math.unit(100, "feet"),
  9431. default: true
  9432. },
  9433. ]
  9434. ))
  9435. characterMakers.push(() => makeCharacter(
  9436. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9437. {
  9438. anthro: {
  9439. height: math.unit(8, "feet"),
  9440. weight: math.unit(120, "kg"),
  9441. name: "Anthro",
  9442. image: {
  9443. source: "./media/characters/adam-silver-mane/anthro.svg",
  9444. extra: 5743 / 5339,
  9445. bottom: 0.07
  9446. }
  9447. },
  9448. taur: {
  9449. height: math.unit(16, "feet"),
  9450. weight: math.unit(1500, "kg"),
  9451. name: "Taur",
  9452. image: {
  9453. source: "./media/characters/adam-silver-mane/taur.svg",
  9454. extra: 1713 / 1571,
  9455. bottom: 0.01
  9456. }
  9457. },
  9458. },
  9459. [
  9460. {
  9461. name: "Normal",
  9462. height: math.unit(8, "feet")
  9463. },
  9464. {
  9465. name: "Minimacro",
  9466. height: math.unit(80, "feet")
  9467. },
  9468. {
  9469. name: "Macro",
  9470. height: math.unit(800, "feet"),
  9471. default: true
  9472. },
  9473. {
  9474. name: "Megamacro",
  9475. height: math.unit(8000, "feet")
  9476. },
  9477. {
  9478. name: "Gigamacro",
  9479. height: math.unit(800, "miles")
  9480. },
  9481. {
  9482. name: "Teramacro",
  9483. height: math.unit(80000, "miles")
  9484. },
  9485. {
  9486. name: "Celestial",
  9487. height: math.unit(8e6, "miles")
  9488. },
  9489. {
  9490. name: "Star Dragon",
  9491. height: math.unit(800000, "parsecs")
  9492. },
  9493. {
  9494. name: "Godly",
  9495. height: math.unit(800, "teraparsecs")
  9496. },
  9497. ]
  9498. ))
  9499. characterMakers.push(() => makeCharacter(
  9500. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9501. {
  9502. front: {
  9503. height: math.unit(6, "feet"),
  9504. weight: math.unit(150, "lb"),
  9505. name: "Front",
  9506. image: {
  9507. source: "./media/characters/ky'owin/front.svg",
  9508. extra: 3888 / 3068,
  9509. bottom: 0.015
  9510. }
  9511. },
  9512. },
  9513. [
  9514. {
  9515. name: "Normal",
  9516. height: math.unit(6 + 8 / 12, "feet")
  9517. },
  9518. {
  9519. name: "Large",
  9520. height: math.unit(68, "feet")
  9521. },
  9522. {
  9523. name: "Macro",
  9524. height: math.unit(132, "feet")
  9525. },
  9526. {
  9527. name: "Macro+",
  9528. height: math.unit(340, "feet")
  9529. },
  9530. {
  9531. name: "Macro++",
  9532. height: math.unit(680, "feet"),
  9533. default: true
  9534. },
  9535. {
  9536. name: "Megamacro",
  9537. height: math.unit(1, "mile")
  9538. },
  9539. {
  9540. name: "Megamacro+",
  9541. height: math.unit(10, "miles")
  9542. },
  9543. ]
  9544. ))
  9545. characterMakers.push(() => makeCharacter(
  9546. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9547. {
  9548. front: {
  9549. height: math.unit(4, "feet"),
  9550. weight: math.unit(50, "lb"),
  9551. name: "Front",
  9552. image: {
  9553. source: "./media/characters/mal/front.svg",
  9554. extra: 785 / 724,
  9555. bottom: 0.07
  9556. }
  9557. },
  9558. },
  9559. [
  9560. {
  9561. name: "Micro",
  9562. height: math.unit(4, "inches")
  9563. },
  9564. {
  9565. name: "Normal",
  9566. height: math.unit(4, "feet"),
  9567. default: true
  9568. },
  9569. {
  9570. name: "Macro",
  9571. height: math.unit(200, "feet")
  9572. },
  9573. ]
  9574. ))
  9575. characterMakers.push(() => makeCharacter(
  9576. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9577. {
  9578. front: {
  9579. height: math.unit(6, "feet"),
  9580. weight: math.unit(150, "lb"),
  9581. name: "Front",
  9582. image: {
  9583. source: "./media/characters/jordan-deware/front.svg",
  9584. extra: 1191 / 1012
  9585. }
  9586. },
  9587. },
  9588. [
  9589. {
  9590. name: "Nano",
  9591. height: math.unit(0.01, "mm")
  9592. },
  9593. {
  9594. name: "Minimicro",
  9595. height: math.unit(1, "mm")
  9596. },
  9597. {
  9598. name: "Micro",
  9599. height: math.unit(0.5, "inches")
  9600. },
  9601. {
  9602. name: "Normal",
  9603. height: math.unit(4, "feet"),
  9604. default: true
  9605. },
  9606. {
  9607. name: "Minimacro",
  9608. height: math.unit(40, "meters")
  9609. },
  9610. {
  9611. name: "Small Macro",
  9612. height: math.unit(400, "meters")
  9613. },
  9614. {
  9615. name: "Macro",
  9616. height: math.unit(4, "miles")
  9617. },
  9618. {
  9619. name: "Megamacro",
  9620. height: math.unit(40, "miles")
  9621. },
  9622. {
  9623. name: "Megamacro+",
  9624. height: math.unit(400, "miles")
  9625. },
  9626. {
  9627. name: "Gigamacro",
  9628. height: math.unit(400000, "miles")
  9629. },
  9630. ]
  9631. ))
  9632. characterMakers.push(() => makeCharacter(
  9633. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9634. {
  9635. side: {
  9636. height: math.unit(6, "feet"),
  9637. weight: math.unit(150, "lb"),
  9638. name: "Side",
  9639. image: {
  9640. source: "./media/characters/kimiko/side.svg",
  9641. extra: 600 / 358
  9642. }
  9643. },
  9644. },
  9645. [
  9646. {
  9647. name: "Normal",
  9648. height: math.unit(15, "feet"),
  9649. default: true
  9650. },
  9651. {
  9652. name: "Macro",
  9653. height: math.unit(220, "feet")
  9654. },
  9655. {
  9656. name: "Macro+",
  9657. height: math.unit(1450, "feet")
  9658. },
  9659. {
  9660. name: "Megamacro",
  9661. height: math.unit(11500, "feet")
  9662. },
  9663. {
  9664. name: "Gigamacro",
  9665. height: math.unit(9500, "miles")
  9666. },
  9667. {
  9668. name: "Teramacro",
  9669. height: math.unit(2208005005, "miles")
  9670. },
  9671. {
  9672. name: "Examacro",
  9673. height: math.unit(2750, "parsecs")
  9674. },
  9675. {
  9676. name: "Zettamacro",
  9677. height: math.unit(101500, "parsecs")
  9678. },
  9679. ]
  9680. ))
  9681. characterMakers.push(() => makeCharacter(
  9682. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9683. {
  9684. front: {
  9685. height: math.unit(6, "feet"),
  9686. weight: math.unit(70, "kg"),
  9687. name: "Front",
  9688. image: {
  9689. source: "./media/characters/andrew-sleepy/front.svg"
  9690. }
  9691. },
  9692. side: {
  9693. height: math.unit(6, "feet"),
  9694. weight: math.unit(70, "kg"),
  9695. name: "Side",
  9696. image: {
  9697. source: "./media/characters/andrew-sleepy/side.svg"
  9698. }
  9699. },
  9700. },
  9701. [
  9702. {
  9703. name: "Micro",
  9704. height: math.unit(1, "mm"),
  9705. default: true
  9706. },
  9707. ]
  9708. ))
  9709. characterMakers.push(() => makeCharacter(
  9710. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  9711. {
  9712. front: {
  9713. height: math.unit(6, "feet"),
  9714. weight: math.unit(150, "lb"),
  9715. name: "Front",
  9716. image: {
  9717. source: "./media/characters/judio/front.svg",
  9718. extra: 1258 / 1110
  9719. }
  9720. },
  9721. },
  9722. [
  9723. {
  9724. name: "Normal",
  9725. height: math.unit(5 + 6 / 12, "feet")
  9726. },
  9727. {
  9728. name: "Macro",
  9729. height: math.unit(1000, "feet"),
  9730. default: true
  9731. },
  9732. {
  9733. name: "Megamacro",
  9734. height: math.unit(10, "miles")
  9735. },
  9736. ]
  9737. ))
  9738. characterMakers.push(() => makeCharacter(
  9739. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  9740. {
  9741. front: {
  9742. height: math.unit(6, "feet"),
  9743. weight: math.unit(68, "kg"),
  9744. name: "Front",
  9745. image: {
  9746. source: "./media/characters/nomaxice/front.svg",
  9747. extra: 1498 / 1073,
  9748. bottom: 0.075
  9749. }
  9750. },
  9751. foot: {
  9752. height: math.unit(1.1, "feet"),
  9753. name: "Foot",
  9754. image: {
  9755. source: "./media/characters/nomaxice/foot.svg"
  9756. }
  9757. },
  9758. },
  9759. [
  9760. {
  9761. name: "Micro",
  9762. height: math.unit(8, "cm")
  9763. },
  9764. {
  9765. name: "Norm",
  9766. height: math.unit(1.82, "m")
  9767. },
  9768. {
  9769. name: "Norm+",
  9770. height: math.unit(8.8, "feet")
  9771. },
  9772. {
  9773. name: "Big",
  9774. height: math.unit(8, "meters"),
  9775. default: true
  9776. },
  9777. {
  9778. name: "Macro",
  9779. height: math.unit(18, "meters")
  9780. },
  9781. {
  9782. name: "Macro+",
  9783. height: math.unit(88, "meters")
  9784. },
  9785. ]
  9786. ))
  9787. characterMakers.push(() => makeCharacter(
  9788. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  9789. {
  9790. front: {
  9791. height: math.unit(12, "feet"),
  9792. weight: math.unit(1.5, "tons"),
  9793. name: "Front",
  9794. image: {
  9795. source: "./media/characters/dydros/front.svg",
  9796. extra: 863 / 800,
  9797. bottom: 0.015
  9798. }
  9799. },
  9800. back: {
  9801. height: math.unit(12, "feet"),
  9802. weight: math.unit(1.5, "tons"),
  9803. name: "Back",
  9804. image: {
  9805. source: "./media/characters/dydros/back.svg",
  9806. extra: 900 / 843,
  9807. bottom: 0.005
  9808. }
  9809. },
  9810. },
  9811. [
  9812. {
  9813. name: "Normal",
  9814. height: math.unit(12, "feet"),
  9815. default: true
  9816. },
  9817. ]
  9818. ))
  9819. characterMakers.push(() => makeCharacter(
  9820. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  9821. {
  9822. front: {
  9823. height: math.unit(6, "feet"),
  9824. weight: math.unit(100, "kg"),
  9825. name: "Front",
  9826. image: {
  9827. source: "./media/characters/riggi/front.svg",
  9828. extra: 5787 / 5303
  9829. }
  9830. },
  9831. hyper: {
  9832. height: math.unit(6 * 5 / 3, "feet"),
  9833. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  9834. name: "Hyper",
  9835. image: {
  9836. source: "./media/characters/riggi/hyper.svg",
  9837. extra: 3595 / 3485
  9838. }
  9839. },
  9840. },
  9841. [
  9842. {
  9843. name: "Small Macro",
  9844. height: math.unit(50, "feet")
  9845. },
  9846. {
  9847. name: "Default",
  9848. height: math.unit(200, "feet"),
  9849. default: true
  9850. },
  9851. {
  9852. name: "Loom",
  9853. height: math.unit(10000, "feet")
  9854. },
  9855. {
  9856. name: "Cruising Altitude",
  9857. height: math.unit(30000, "feet")
  9858. },
  9859. {
  9860. name: "Megamacro",
  9861. height: math.unit(100, "miles")
  9862. },
  9863. {
  9864. name: "Continent Sized",
  9865. height: math.unit(2800, "miles")
  9866. },
  9867. {
  9868. name: "Earth Sized",
  9869. height: math.unit(8000, "miles")
  9870. },
  9871. ]
  9872. ))
  9873. characterMakers.push(() => makeCharacter(
  9874. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  9875. {
  9876. front: {
  9877. height: math.unit(6, "feet"),
  9878. weight: math.unit(250, "lb"),
  9879. name: "Front",
  9880. image: {
  9881. source: "./media/characters/alexi/front.svg",
  9882. extra: 3483 / 3291,
  9883. bottom: 0.04
  9884. }
  9885. },
  9886. back: {
  9887. height: math.unit(6, "feet"),
  9888. weight: math.unit(250, "lb"),
  9889. name: "Back",
  9890. image: {
  9891. source: "./media/characters/alexi/back.svg",
  9892. extra: 3533 / 3356,
  9893. bottom: 0.021
  9894. }
  9895. },
  9896. frontTransforming: {
  9897. height: math.unit(8.58, "feet"),
  9898. weight: math.unit(1300, "lb"),
  9899. name: "Transforming",
  9900. image: {
  9901. source: "./media/characters/alexi/front-transforming.svg",
  9902. extra: 437 / 409,
  9903. bottom: 19 / 458.66
  9904. }
  9905. },
  9906. frontTransformed: {
  9907. height: math.unit(12.5, "feet"),
  9908. weight: math.unit(4000, "lb"),
  9909. name: "Transformed",
  9910. image: {
  9911. source: "./media/characters/alexi/front-transformed.svg",
  9912. extra: 639 / 614,
  9913. bottom: 30.55 / 671
  9914. }
  9915. },
  9916. },
  9917. [
  9918. {
  9919. name: "Normal",
  9920. height: math.unit(3, "meters"),
  9921. default: true
  9922. },
  9923. {
  9924. name: "Minimacro",
  9925. height: math.unit(30, "meters")
  9926. },
  9927. {
  9928. name: "Macro",
  9929. height: math.unit(500, "meters")
  9930. },
  9931. {
  9932. name: "Megamacro",
  9933. height: math.unit(9000, "km")
  9934. },
  9935. {
  9936. name: "Teramacro",
  9937. height: math.unit(384000, "km")
  9938. },
  9939. ]
  9940. ))
  9941. characterMakers.push(() => makeCharacter(
  9942. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  9943. {
  9944. front: {
  9945. height: math.unit(6, "feet"),
  9946. weight: math.unit(150, "lb"),
  9947. name: "Front",
  9948. image: {
  9949. source: "./media/characters/kayroo/front.svg",
  9950. extra: 1153 / 1038,
  9951. bottom: 0.06
  9952. }
  9953. },
  9954. foot: {
  9955. height: math.unit(6, "feet"),
  9956. weight: math.unit(150, "lb"),
  9957. name: "Foot",
  9958. image: {
  9959. source: "./media/characters/kayroo/foot.svg"
  9960. }
  9961. },
  9962. },
  9963. [
  9964. {
  9965. name: "Normal",
  9966. height: math.unit(8, "feet"),
  9967. default: true
  9968. },
  9969. {
  9970. name: "Minimacro",
  9971. height: math.unit(250, "feet")
  9972. },
  9973. {
  9974. name: "Macro",
  9975. height: math.unit(2800, "feet")
  9976. },
  9977. {
  9978. name: "Megamacro",
  9979. height: math.unit(5200, "feet")
  9980. },
  9981. {
  9982. name: "Gigamacro",
  9983. height: math.unit(27000, "feet")
  9984. },
  9985. {
  9986. name: "Omega",
  9987. height: math.unit(45000, "feet")
  9988. },
  9989. ]
  9990. ))
  9991. characterMakers.push(() => makeCharacter(
  9992. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  9993. {
  9994. front: {
  9995. height: math.unit(18, "feet"),
  9996. weight: math.unit(5800, "lb"),
  9997. name: "Front",
  9998. image: {
  9999. source: "./media/characters/rhys/front.svg",
  10000. extra: 3386 / 3090,
  10001. bottom: 0.07
  10002. }
  10003. },
  10004. },
  10005. [
  10006. {
  10007. name: "Normal",
  10008. height: math.unit(18, "feet"),
  10009. default: true
  10010. },
  10011. {
  10012. name: "Working Size",
  10013. height: math.unit(200, "feet")
  10014. },
  10015. {
  10016. name: "Demolition Size",
  10017. height: math.unit(2000, "feet")
  10018. },
  10019. {
  10020. name: "Maximum Licensed Size",
  10021. height: math.unit(5, "miles")
  10022. },
  10023. {
  10024. name: "Maximum Observed Size",
  10025. height: math.unit(10, "yottameters")
  10026. },
  10027. ]
  10028. ))
  10029. characterMakers.push(() => makeCharacter(
  10030. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10031. {
  10032. front: {
  10033. height: math.unit(6, "feet"),
  10034. weight: math.unit(250, "lb"),
  10035. name: "Front",
  10036. image: {
  10037. source: "./media/characters/toto/front.svg",
  10038. extra: 527 / 479,
  10039. bottom: 0.05
  10040. }
  10041. },
  10042. },
  10043. [
  10044. {
  10045. name: "Micro",
  10046. height: math.unit(3, "feet")
  10047. },
  10048. {
  10049. name: "Normal",
  10050. height: math.unit(10, "feet")
  10051. },
  10052. {
  10053. name: "Macro",
  10054. height: math.unit(150, "feet"),
  10055. default: true
  10056. },
  10057. {
  10058. name: "Megamacro",
  10059. height: math.unit(1200, "feet")
  10060. },
  10061. ]
  10062. ))
  10063. characterMakers.push(() => makeCharacter(
  10064. { name: "King", species: ["lion"], tags: ["anthro"] },
  10065. {
  10066. back: {
  10067. height: math.unit(6, "feet"),
  10068. weight: math.unit(150, "lb"),
  10069. name: "Back",
  10070. image: {
  10071. source: "./media/characters/king/back.svg"
  10072. }
  10073. },
  10074. },
  10075. [
  10076. {
  10077. name: "Micro",
  10078. height: math.unit(2, "inches")
  10079. },
  10080. {
  10081. name: "Normal",
  10082. height: math.unit(8, "feet")
  10083. },
  10084. {
  10085. name: "Macro",
  10086. height: math.unit(200, "feet"),
  10087. default: true
  10088. },
  10089. {
  10090. name: "Megamacro",
  10091. height: math.unit(50, "miles")
  10092. },
  10093. ]
  10094. ))
  10095. characterMakers.push(() => makeCharacter(
  10096. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10097. {
  10098. anthro: {
  10099. height: math.unit(6 + 5 / 12, "feet"),
  10100. weight: math.unit(280, "lb"),
  10101. name: "Anthro",
  10102. image: {
  10103. source: "./media/characters/cordite/anthro.svg",
  10104. extra: 1986 / 1905,
  10105. bottom: 0.025
  10106. }
  10107. },
  10108. feral: {
  10109. height: math.unit(2, "feet"),
  10110. weight: math.unit(90, "lb"),
  10111. name: "Feral",
  10112. image: {
  10113. source: "./media/characters/cordite/feral.svg",
  10114. extra: 1260 / 755,
  10115. bottom: 0.05
  10116. }
  10117. },
  10118. },
  10119. [
  10120. {
  10121. name: "Normal",
  10122. height: math.unit(6 + 5 / 12, "feet"),
  10123. default: true
  10124. },
  10125. ]
  10126. ))
  10127. characterMakers.push(() => makeCharacter(
  10128. { name: "Pianostrong", species: ["husky"], 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/pianostrong/front.svg",
  10136. extra: 6577 / 6254,
  10137. bottom: 0.02
  10138. }
  10139. },
  10140. side: {
  10141. height: math.unit(6, "feet"),
  10142. weight: math.unit(150, "lb"),
  10143. name: "Side",
  10144. image: {
  10145. source: "./media/characters/pianostrong/side.svg",
  10146. extra: 6106 / 5730
  10147. }
  10148. },
  10149. back: {
  10150. height: math.unit(6, "feet"),
  10151. weight: math.unit(150, "lb"),
  10152. name: "Back",
  10153. image: {
  10154. source: "./media/characters/pianostrong/back.svg",
  10155. extra: 6085 / 5733,
  10156. bottom: 0.01
  10157. }
  10158. },
  10159. },
  10160. [
  10161. {
  10162. name: "Macro",
  10163. height: math.unit(100, "feet")
  10164. },
  10165. {
  10166. name: "Macro+",
  10167. height: math.unit(300, "feet"),
  10168. default: true
  10169. },
  10170. {
  10171. name: "Macro++",
  10172. height: math.unit(1000, "feet")
  10173. },
  10174. ]
  10175. ))
  10176. characterMakers.push(() => makeCharacter(
  10177. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10178. {
  10179. front: {
  10180. height: math.unit(6, "feet"),
  10181. weight: math.unit(150, "lb"),
  10182. name: "Front",
  10183. image: {
  10184. source: "./media/characters/kona/front.svg",
  10185. extra: 2960 / 2629,
  10186. bottom: 0.005
  10187. }
  10188. },
  10189. },
  10190. [
  10191. {
  10192. name: "Normal",
  10193. height: math.unit(11 + 8 / 12, "feet")
  10194. },
  10195. {
  10196. name: "Macro",
  10197. height: math.unit(850, "feet"),
  10198. default: true
  10199. },
  10200. {
  10201. name: "Macro+",
  10202. height: math.unit(1.5, "km"),
  10203. default: true
  10204. },
  10205. {
  10206. name: "Megamacro",
  10207. height: math.unit(80, "miles")
  10208. },
  10209. {
  10210. name: "Gigamacro",
  10211. height: math.unit(3500, "miles")
  10212. },
  10213. ]
  10214. ))
  10215. characterMakers.push(() => makeCharacter(
  10216. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10217. {
  10218. side: {
  10219. height: math.unit(1.9, "meters"),
  10220. weight: math.unit(326, "kg"),
  10221. name: "Side",
  10222. image: {
  10223. source: "./media/characters/levi/side.svg",
  10224. extra: 1704 / 1334,
  10225. bottom: 0.02
  10226. }
  10227. },
  10228. },
  10229. [
  10230. {
  10231. name: "Normal",
  10232. height: math.unit(1.9, "meters"),
  10233. default: true
  10234. },
  10235. {
  10236. name: "Macro",
  10237. height: math.unit(20, "meters")
  10238. },
  10239. {
  10240. name: "Macro+",
  10241. height: math.unit(200, "meters")
  10242. },
  10243. {
  10244. name: "Megamacro",
  10245. height: math.unit(2, "km")
  10246. },
  10247. {
  10248. name: "Megamacro+",
  10249. height: math.unit(20, "km")
  10250. },
  10251. {
  10252. name: "Gigamacro",
  10253. height: math.unit(2500, "km")
  10254. },
  10255. {
  10256. name: "Gigamacro+",
  10257. height: math.unit(120000, "km")
  10258. },
  10259. {
  10260. name: "Teramacro",
  10261. height: math.unit(7.77e6, "km")
  10262. },
  10263. ]
  10264. ))
  10265. characterMakers.push(() => makeCharacter(
  10266. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10267. {
  10268. front: {
  10269. height: math.unit(6 + 4 / 12, "feet"),
  10270. weight: math.unit(188, "lb"),
  10271. name: "Front",
  10272. image: {
  10273. source: "./media/characters/bmc/front.svg",
  10274. extra: 1067 / 1022,
  10275. bottom: 0.047
  10276. }
  10277. },
  10278. },
  10279. [
  10280. {
  10281. name: "Human-sized",
  10282. height: math.unit(6 + 4 / 12, "feet")
  10283. },
  10284. {
  10285. name: "Small",
  10286. height: math.unit(250, "feet")
  10287. },
  10288. {
  10289. name: "Normal",
  10290. height: math.unit(1250, "feet"),
  10291. default: true
  10292. },
  10293. {
  10294. name: "Good Day",
  10295. height: math.unit(88, "miles")
  10296. },
  10297. {
  10298. name: "Largest Measured Size",
  10299. height: math.unit(11.2e6, "lightyears")
  10300. },
  10301. ]
  10302. ))
  10303. characterMakers.push(() => makeCharacter(
  10304. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10305. {
  10306. front: {
  10307. height: math.unit(20, "feet"),
  10308. weight: math.unit(2016, "kg"),
  10309. name: "Front",
  10310. image: {
  10311. source: "./media/characters/sven-the-kaiju/front.svg",
  10312. extra: 1479 / 1449,
  10313. bottom: 0.05
  10314. }
  10315. },
  10316. },
  10317. [
  10318. {
  10319. name: "Fairy",
  10320. height: math.unit(6, "inches")
  10321. },
  10322. {
  10323. name: "Normal",
  10324. height: math.unit(20, "feet"),
  10325. default: true
  10326. },
  10327. {
  10328. name: "Rampage",
  10329. height: math.unit(200, "feet")
  10330. },
  10331. {
  10332. name: "Archfey Forest Guardian",
  10333. height: math.unit(1, "mile")
  10334. },
  10335. ]
  10336. ))
  10337. characterMakers.push(() => makeCharacter(
  10338. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10339. {
  10340. front: {
  10341. height: math.unit(4, "meters"),
  10342. weight: math.unit(2, "tons"),
  10343. name: "Front",
  10344. image: {
  10345. source: "./media/characters/marik/front.svg",
  10346. extra: 1057 / 1003,
  10347. bottom: 0.08
  10348. }
  10349. },
  10350. },
  10351. [
  10352. {
  10353. name: "Normal",
  10354. height: math.unit(4, "meters"),
  10355. default: true
  10356. },
  10357. {
  10358. name: "Macro",
  10359. height: math.unit(20, "meters")
  10360. },
  10361. {
  10362. name: "Megamacro",
  10363. height: math.unit(50, "km")
  10364. },
  10365. {
  10366. name: "Gigamacro",
  10367. height: math.unit(100, "km")
  10368. },
  10369. {
  10370. name: "Alpha Macro",
  10371. height: math.unit(7.88e7, "yottameters")
  10372. },
  10373. ]
  10374. ))
  10375. characterMakers.push(() => makeCharacter(
  10376. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10377. {
  10378. front: {
  10379. height: math.unit(6, "feet"),
  10380. weight: math.unit(110, "lb"),
  10381. name: "Front",
  10382. image: {
  10383. source: "./media/characters/mel/front.svg",
  10384. extra: 736 / 617,
  10385. bottom: 0.017
  10386. }
  10387. },
  10388. },
  10389. [
  10390. {
  10391. name: "Pico",
  10392. height: math.unit(3, "pm")
  10393. },
  10394. {
  10395. name: "Nano",
  10396. height: math.unit(3, "nm")
  10397. },
  10398. {
  10399. name: "Micro",
  10400. height: math.unit(0.3, "mm"),
  10401. default: true
  10402. },
  10403. {
  10404. name: "Micro+",
  10405. height: math.unit(3, "mm")
  10406. },
  10407. {
  10408. name: "Normal",
  10409. height: math.unit(5 + 10.5 / 12, "feet")
  10410. },
  10411. ]
  10412. ))
  10413. characterMakers.push(() => makeCharacter(
  10414. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10415. {
  10416. kaiju: {
  10417. height: math.unit(1.75, "meters"),
  10418. weight: math.unit(55, "kg"),
  10419. name: "Kaiju",
  10420. image: {
  10421. source: "./media/characters/lykonous/kaiju.svg",
  10422. extra: 1055 / 946,
  10423. bottom: 0.135
  10424. }
  10425. },
  10426. },
  10427. [
  10428. {
  10429. name: "Normal",
  10430. height: math.unit(2.5, "meters"),
  10431. default: true
  10432. },
  10433. {
  10434. name: "Kaiju Dragon",
  10435. height: math.unit(60, "meters")
  10436. },
  10437. {
  10438. name: "Mega Kaiju",
  10439. height: math.unit(120, "km")
  10440. },
  10441. {
  10442. name: "Giga Kaiju",
  10443. height: math.unit(200, "megameters")
  10444. },
  10445. {
  10446. name: "Terra Kaiju",
  10447. height: math.unit(400, "gigameters")
  10448. },
  10449. {
  10450. name: "Kaiju Dragon God",
  10451. height: math.unit(13000, "exaparsecs")
  10452. },
  10453. ]
  10454. ))
  10455. characterMakers.push(() => makeCharacter(
  10456. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10457. {
  10458. front: {
  10459. height: math.unit(6, "feet"),
  10460. weight: math.unit(150, "lb"),
  10461. name: "Front",
  10462. image: {
  10463. source: "./media/characters/blü/front.svg",
  10464. extra: 1883 / 1564,
  10465. bottom: 0.031
  10466. }
  10467. },
  10468. },
  10469. [
  10470. {
  10471. name: "Normal",
  10472. height: math.unit(13, "feet"),
  10473. default: true
  10474. },
  10475. {
  10476. name: "Big Boi",
  10477. height: math.unit(150, "meters")
  10478. },
  10479. {
  10480. name: "Mini Stomper",
  10481. height: math.unit(300, "meters")
  10482. },
  10483. {
  10484. name: "Macro",
  10485. height: math.unit(1000, "meters")
  10486. },
  10487. {
  10488. name: "Megamacro",
  10489. height: math.unit(11000, "meters")
  10490. },
  10491. {
  10492. name: "Gigamacro",
  10493. height: math.unit(11000, "km")
  10494. },
  10495. {
  10496. name: "Teramacro",
  10497. height: math.unit(420000, "km")
  10498. },
  10499. {
  10500. name: "Examacro",
  10501. height: math.unit(120, "parsecs")
  10502. },
  10503. {
  10504. name: "God Tho",
  10505. height: math.unit(98000000000, "parsecs")
  10506. },
  10507. ]
  10508. ))
  10509. characterMakers.push(() => makeCharacter(
  10510. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10511. {
  10512. taurFront: {
  10513. height: math.unit(6, "feet"),
  10514. weight: math.unit(200, "lb"),
  10515. name: "Taur (Front)",
  10516. image: {
  10517. source: "./media/characters/scales/taur-front.svg",
  10518. extra: 1,
  10519. bottom: 0.05
  10520. }
  10521. },
  10522. taurBack: {
  10523. height: math.unit(6, "feet"),
  10524. weight: math.unit(200, "lb"),
  10525. name: "Taur (Back)",
  10526. image: {
  10527. source: "./media/characters/scales/taur-back.svg",
  10528. extra: 1,
  10529. bottom: 0.08
  10530. }
  10531. },
  10532. anthro: {
  10533. height: math.unit(6 * 7 / 12, "feet"),
  10534. weight: math.unit(100, "lb"),
  10535. name: "Anthro",
  10536. image: {
  10537. source: "./media/characters/scales/anthro.svg",
  10538. extra: 1,
  10539. bottom: 0.06
  10540. }
  10541. },
  10542. },
  10543. [
  10544. {
  10545. name: "Normal",
  10546. height: math.unit(12, "feet"),
  10547. default: true
  10548. },
  10549. ]
  10550. ))
  10551. characterMakers.push(() => makeCharacter(
  10552. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10553. {
  10554. front: {
  10555. height: math.unit(6, "feet"),
  10556. weight: math.unit(150, "lb"),
  10557. name: "Front",
  10558. image: {
  10559. source: "./media/characters/koragos/front.svg",
  10560. extra: 841 / 794,
  10561. bottom: 0.035
  10562. }
  10563. },
  10564. back: {
  10565. height: math.unit(6, "feet"),
  10566. weight: math.unit(150, "lb"),
  10567. name: "Back",
  10568. image: {
  10569. source: "./media/characters/koragos/back.svg",
  10570. extra: 841 / 810,
  10571. bottom: 0.022
  10572. }
  10573. },
  10574. },
  10575. [
  10576. {
  10577. name: "Normal",
  10578. height: math.unit(6 + 11 / 12, "feet"),
  10579. default: true
  10580. },
  10581. {
  10582. name: "Macro",
  10583. height: math.unit(490, "feet")
  10584. },
  10585. {
  10586. name: "Megamacro",
  10587. height: math.unit(10, "miles")
  10588. },
  10589. {
  10590. name: "Gigamacro",
  10591. height: math.unit(50, "miles")
  10592. },
  10593. ]
  10594. ))
  10595. characterMakers.push(() => makeCharacter(
  10596. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10597. {
  10598. front: {
  10599. height: math.unit(6, "feet"),
  10600. weight: math.unit(250, "lb"),
  10601. name: "Front",
  10602. image: {
  10603. source: "./media/characters/xylrem/front.svg",
  10604. extra: 3323 / 3050,
  10605. bottom: 0.065
  10606. }
  10607. },
  10608. },
  10609. [
  10610. {
  10611. name: "Micro",
  10612. height: math.unit(4, "feet")
  10613. },
  10614. {
  10615. name: "Normal",
  10616. height: math.unit(16, "feet"),
  10617. default: true
  10618. },
  10619. {
  10620. name: "Macro",
  10621. height: math.unit(2720, "feet")
  10622. },
  10623. {
  10624. name: "Megamacro",
  10625. height: math.unit(25000, "miles")
  10626. },
  10627. ]
  10628. ))
  10629. characterMakers.push(() => makeCharacter(
  10630. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10631. {
  10632. front: {
  10633. height: math.unit(8, "feet"),
  10634. weight: math.unit(250, "kg"),
  10635. name: "Front",
  10636. image: {
  10637. source: "./media/characters/ikideru/front.svg",
  10638. extra: 930 / 870,
  10639. bottom: 0.087
  10640. }
  10641. },
  10642. back: {
  10643. height: math.unit(8, "feet"),
  10644. weight: math.unit(250, "kg"),
  10645. name: "Back",
  10646. image: {
  10647. source: "./media/characters/ikideru/back.svg",
  10648. extra: 919 / 852,
  10649. bottom: 0.055
  10650. }
  10651. },
  10652. },
  10653. [
  10654. {
  10655. name: "Rare",
  10656. height: math.unit(8, "feet"),
  10657. default: true
  10658. },
  10659. {
  10660. name: "Playful Loom",
  10661. height: math.unit(80, "feet")
  10662. },
  10663. {
  10664. name: "City Leaner",
  10665. height: math.unit(230, "feet")
  10666. },
  10667. {
  10668. name: "Megamacro",
  10669. height: math.unit(2500, "feet")
  10670. },
  10671. {
  10672. name: "Gigamacro",
  10673. height: math.unit(26400, "feet")
  10674. },
  10675. {
  10676. name: "Tectonic Shifter",
  10677. height: math.unit(1.7, "megameters")
  10678. },
  10679. {
  10680. name: "Planet Carer",
  10681. height: math.unit(21, "megameters")
  10682. },
  10683. {
  10684. name: "God",
  10685. height: math.unit(11157.22, "parsecs")
  10686. },
  10687. ]
  10688. ))
  10689. characterMakers.push(() => makeCharacter(
  10690. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10691. {
  10692. front: {
  10693. height: math.unit(6, "feet"),
  10694. weight: math.unit(120, "lb"),
  10695. name: "Front",
  10696. image: {
  10697. source: "./media/characters/neo/front.svg"
  10698. }
  10699. },
  10700. },
  10701. [
  10702. {
  10703. name: "Micro",
  10704. height: math.unit(2, "inches"),
  10705. default: true
  10706. },
  10707. {
  10708. name: "Human Size",
  10709. height: math.unit(5 + 8 / 12, "feet")
  10710. },
  10711. ]
  10712. ))
  10713. characterMakers.push(() => makeCharacter(
  10714. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  10715. {
  10716. front: {
  10717. height: math.unit(13 + 10 / 12, "feet"),
  10718. weight: math.unit(5320, "lb"),
  10719. name: "Front",
  10720. image: {
  10721. source: "./media/characters/chauncey-chantz/front.svg",
  10722. extra: 1587 / 1435,
  10723. bottom: 0.02
  10724. }
  10725. },
  10726. },
  10727. [
  10728. {
  10729. name: "Normal",
  10730. height: math.unit(13 + 10 / 12, "feet"),
  10731. default: true
  10732. },
  10733. {
  10734. name: "Macro",
  10735. height: math.unit(45, "feet")
  10736. },
  10737. {
  10738. name: "Megamacro",
  10739. height: math.unit(250, "miles")
  10740. },
  10741. {
  10742. name: "Planetary",
  10743. height: math.unit(10000, "miles")
  10744. },
  10745. {
  10746. name: "Galactic",
  10747. height: math.unit(40000, "parsecs")
  10748. },
  10749. {
  10750. name: "Universal",
  10751. height: math.unit(1, "yottameter")
  10752. },
  10753. ]
  10754. ))
  10755. characterMakers.push(() => makeCharacter(
  10756. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  10757. {
  10758. front: {
  10759. height: math.unit(6, "feet"),
  10760. weight: math.unit(150, "lb"),
  10761. name: "Front",
  10762. image: {
  10763. source: "./media/characters/epifox/front.svg",
  10764. extra: 1,
  10765. bottom: 0.075
  10766. }
  10767. },
  10768. },
  10769. [
  10770. {
  10771. name: "Micro",
  10772. height: math.unit(6, "inches")
  10773. },
  10774. {
  10775. name: "Normal",
  10776. height: math.unit(12, "feet"),
  10777. default: true
  10778. },
  10779. {
  10780. name: "Macro",
  10781. height: math.unit(3810, "feet")
  10782. },
  10783. {
  10784. name: "Megamacro",
  10785. height: math.unit(500, "miles")
  10786. },
  10787. ]
  10788. ))
  10789. characterMakers.push(() => makeCharacter(
  10790. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  10791. {
  10792. front: {
  10793. height: math.unit(1.8796, "m"),
  10794. weight: math.unit(230, "lb"),
  10795. name: "Front",
  10796. image: {
  10797. source: "./media/characters/colin-t/front.svg",
  10798. extra: 1272 / 1193,
  10799. bottom: 0.07
  10800. }
  10801. },
  10802. },
  10803. [
  10804. {
  10805. name: "Micro",
  10806. height: math.unit(0.571, "meters")
  10807. },
  10808. {
  10809. name: "Normal",
  10810. height: math.unit(1.8796, "meters"),
  10811. default: true
  10812. },
  10813. {
  10814. name: "Tall",
  10815. height: math.unit(4, "meters")
  10816. },
  10817. {
  10818. name: "Macro",
  10819. height: math.unit(67.241, "meters")
  10820. },
  10821. {
  10822. name: "Megamacro",
  10823. height: math.unit(371.856, "meters")
  10824. },
  10825. {
  10826. name: "Planetary",
  10827. height: math.unit(12631.5689, "km")
  10828. },
  10829. ]
  10830. ))
  10831. characterMakers.push(() => makeCharacter(
  10832. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  10833. {
  10834. front: {
  10835. height: math.unit(1.85, "meters"),
  10836. weight: math.unit(80, "kg"),
  10837. name: "Front",
  10838. image: {
  10839. source: "./media/characters/matvei/front.svg",
  10840. extra: 614 / 594,
  10841. bottom: 0.01
  10842. }
  10843. },
  10844. },
  10845. [
  10846. {
  10847. name: "Normal",
  10848. height: math.unit(1.85, "meters"),
  10849. default: true
  10850. },
  10851. ]
  10852. ))
  10853. characterMakers.push(() => makeCharacter(
  10854. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  10855. {
  10856. front: {
  10857. height: math.unit(5 + 9 / 12, "feet"),
  10858. weight: math.unit(70, "lb"),
  10859. name: "Front",
  10860. image: {
  10861. source: "./media/characters/quincy/front.svg",
  10862. extra: 3041 / 2751
  10863. }
  10864. },
  10865. back: {
  10866. height: math.unit(5 + 9 / 12, "feet"),
  10867. weight: math.unit(70, "lb"),
  10868. name: "Back",
  10869. image: {
  10870. source: "./media/characters/quincy/back.svg",
  10871. extra: 3041 / 2751
  10872. }
  10873. },
  10874. flying: {
  10875. height: math.unit(5 + 4 / 12, "feet"),
  10876. weight: math.unit(70, "lb"),
  10877. name: "Flying",
  10878. image: {
  10879. source: "./media/characters/quincy/flying.svg",
  10880. extra: 1044 / 930
  10881. }
  10882. },
  10883. },
  10884. [
  10885. {
  10886. name: "Micro",
  10887. height: math.unit(3, "cm")
  10888. },
  10889. {
  10890. name: "Normal",
  10891. height: math.unit(5 + 9 / 12, "feet")
  10892. },
  10893. {
  10894. name: "Macro",
  10895. height: math.unit(200, "meters"),
  10896. default: true
  10897. },
  10898. {
  10899. name: "Megamacro",
  10900. height: math.unit(1000, "meters")
  10901. },
  10902. ]
  10903. ))
  10904. characterMakers.push(() => makeCharacter(
  10905. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  10906. {
  10907. front: {
  10908. height: math.unit(4 + 7 / 12, "feet"),
  10909. weight: math.unit(150, "lb"),
  10910. name: "Front",
  10911. image: {
  10912. source: "./media/characters/vanrel/front.svg",
  10913. extra: 1,
  10914. bottom: 0.02
  10915. }
  10916. },
  10917. elemental: {
  10918. height: math.unit(3, "feet"),
  10919. weight: math.unit(150, "lb"),
  10920. name: "Elemental",
  10921. image: {
  10922. source: "./media/characters/vanrel/elemental.svg",
  10923. extra: 192.3 / 162.8,
  10924. bottom: 1.79 / 194.17
  10925. }
  10926. },
  10927. side: {
  10928. height: math.unit(4 + 7 / 12, "feet"),
  10929. weight: math.unit(150, "lb"),
  10930. name: "Side",
  10931. image: {
  10932. source: "./media/characters/vanrel/side.svg",
  10933. extra: 1,
  10934. bottom: 0.025
  10935. }
  10936. },
  10937. tome: {
  10938. height: math.unit(1.35, "feet"),
  10939. weight: math.unit(10, "lb"),
  10940. name: "Vanrel's Tome",
  10941. rename: true,
  10942. image: {
  10943. source: "./media/characters/vanrel/tome.svg"
  10944. }
  10945. },
  10946. beans: {
  10947. height: math.unit(0.89, "feet"),
  10948. name: "Beans",
  10949. image: {
  10950. source: "./media/characters/vanrel/beans.svg"
  10951. }
  10952. },
  10953. },
  10954. [
  10955. {
  10956. name: "Normal",
  10957. height: math.unit(4 + 7 / 12, "feet"),
  10958. default: true
  10959. },
  10960. ]
  10961. ))
  10962. characterMakers.push(() => makeCharacter(
  10963. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  10964. {
  10965. front: {
  10966. height: math.unit(7 + 5 / 12, "feet"),
  10967. weight: math.unit(150, "lb"),
  10968. name: "Front",
  10969. image: {
  10970. source: "./media/characters/kuiper-vanrel/front.svg",
  10971. extra: 1118 / 1068,
  10972. bottom: 0.09
  10973. }
  10974. },
  10975. foot: {
  10976. height: math.unit(0.55, "meters"),
  10977. name: "Foot",
  10978. image: {
  10979. source: "./media/characters/kuiper-vanrel/foot.svg",
  10980. }
  10981. },
  10982. battle: {
  10983. height: math.unit(6.824, "feet"),
  10984. weight: math.unit(150, "lb"),
  10985. name: "Battle",
  10986. image: {
  10987. source: "./media/characters/kuiper-vanrel/battle.svg",
  10988. extra: 1466 / 1327,
  10989. bottom: 29 / 1492.5
  10990. }
  10991. },
  10992. },
  10993. [
  10994. {
  10995. name: "Normal",
  10996. height: math.unit(7 + 5 / 12, "feet"),
  10997. default: true
  10998. },
  10999. ]
  11000. ))
  11001. characterMakers.push(() => makeCharacter(
  11002. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11003. {
  11004. front: {
  11005. height: math.unit(8 + 5 / 12, "feet"),
  11006. weight: math.unit(150, "lb"),
  11007. name: "Front",
  11008. image: {
  11009. source: "./media/characters/keset-vanrel/front.svg",
  11010. extra: 1150 / 1084,
  11011. bottom: 0.05
  11012. }
  11013. },
  11014. hand: {
  11015. height: math.unit(0.6, "meters"),
  11016. name: "Hand",
  11017. image: {
  11018. source: "./media/characters/keset-vanrel/hand.svg"
  11019. }
  11020. },
  11021. foot: {
  11022. height: math.unit(0.94978, "meters"),
  11023. name: "Foot",
  11024. image: {
  11025. source: "./media/characters/keset-vanrel/foot.svg"
  11026. }
  11027. },
  11028. battle: {
  11029. height: math.unit(7.408, "feet"),
  11030. weight: math.unit(150, "lb"),
  11031. name: "Battle",
  11032. image: {
  11033. source: "./media/characters/keset-vanrel/battle.svg",
  11034. extra: 1890 / 1386,
  11035. bottom: 73.28 / 1970
  11036. }
  11037. },
  11038. },
  11039. [
  11040. {
  11041. name: "Normal",
  11042. height: math.unit(8 + 5 / 12, "feet"),
  11043. default: true
  11044. },
  11045. ]
  11046. ))
  11047. characterMakers.push(() => makeCharacter(
  11048. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11049. {
  11050. front: {
  11051. height: math.unit(6, "feet"),
  11052. weight: math.unit(150, "lb"),
  11053. name: "Front",
  11054. image: {
  11055. source: "./media/characters/neos/front.svg",
  11056. extra: 1696 / 992,
  11057. bottom: 0.14
  11058. }
  11059. },
  11060. },
  11061. [
  11062. {
  11063. name: "Normal",
  11064. height: math.unit(54, "cm"),
  11065. default: true
  11066. },
  11067. {
  11068. name: "Macro",
  11069. height: math.unit(100, "m")
  11070. },
  11071. {
  11072. name: "Megamacro",
  11073. height: math.unit(10, "km")
  11074. },
  11075. {
  11076. name: "Megamacro+",
  11077. height: math.unit(100, "km")
  11078. },
  11079. {
  11080. name: "Gigamacro",
  11081. height: math.unit(100, "Mm")
  11082. },
  11083. {
  11084. name: "Teramacro",
  11085. height: math.unit(100, "Gm")
  11086. },
  11087. {
  11088. name: "Examacro",
  11089. height: math.unit(100, "Em")
  11090. },
  11091. {
  11092. name: "Godly",
  11093. height: math.unit(10000, "Ym")
  11094. },
  11095. {
  11096. name: "Beyond Godly",
  11097. height: math.unit(25, "multiverses")
  11098. },
  11099. ]
  11100. ))
  11101. characterMakers.push(() => makeCharacter(
  11102. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11103. {
  11104. feminine: {
  11105. height: math.unit(5, "feet"),
  11106. weight: math.unit(100, "lb"),
  11107. name: "Feminine",
  11108. image: {
  11109. source: "./media/characters/sammy-mouse/feminine.svg",
  11110. extra: 2526 / 2425,
  11111. bottom: 0.123
  11112. }
  11113. },
  11114. masculine: {
  11115. height: math.unit(5, "feet"),
  11116. weight: math.unit(100, "lb"),
  11117. name: "Masculine",
  11118. image: {
  11119. source: "./media/characters/sammy-mouse/masculine.svg",
  11120. extra: 2526 / 2425,
  11121. bottom: 0.123
  11122. }
  11123. },
  11124. },
  11125. [
  11126. {
  11127. name: "Micro",
  11128. height: math.unit(5, "inches")
  11129. },
  11130. {
  11131. name: "Normal",
  11132. height: math.unit(5, "feet"),
  11133. default: true
  11134. },
  11135. {
  11136. name: "Macro",
  11137. height: math.unit(60, "feet")
  11138. },
  11139. ]
  11140. ))
  11141. characterMakers.push(() => makeCharacter(
  11142. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11143. {
  11144. front: {
  11145. height: math.unit(4, "feet"),
  11146. weight: math.unit(50, "lb"),
  11147. name: "Front",
  11148. image: {
  11149. source: "./media/characters/kole/front.svg",
  11150. extra: 1423 / 1303,
  11151. bottom: 0.025
  11152. }
  11153. },
  11154. back: {
  11155. height: math.unit(4, "feet"),
  11156. weight: math.unit(50, "lb"),
  11157. name: "Back",
  11158. image: {
  11159. source: "./media/characters/kole/back.svg",
  11160. extra: 1426 / 1280,
  11161. bottom: 0.02
  11162. }
  11163. },
  11164. },
  11165. [
  11166. {
  11167. name: "Normal",
  11168. height: math.unit(4, "feet"),
  11169. default: true
  11170. },
  11171. ]
  11172. ))
  11173. characterMakers.push(() => makeCharacter(
  11174. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11175. {
  11176. front: {
  11177. height: math.unit(2 + 6 / 12, "feet"),
  11178. weight: math.unit(20, "lb"),
  11179. name: "Front",
  11180. image: {
  11181. source: "./media/characters/rufran/front.svg",
  11182. extra: 2041 / 1839,
  11183. bottom: 0.055
  11184. }
  11185. },
  11186. back: {
  11187. height: math.unit(2 + 6 / 12, "feet"),
  11188. weight: math.unit(20, "lb"),
  11189. name: "Back",
  11190. image: {
  11191. source: "./media/characters/rufran/back.svg",
  11192. extra: 2054 / 1839,
  11193. bottom: 0.01
  11194. }
  11195. },
  11196. hand: {
  11197. height: math.unit(0.2166, "meters"),
  11198. name: "Hand",
  11199. image: {
  11200. source: "./media/characters/rufran/hand.svg"
  11201. }
  11202. },
  11203. foot: {
  11204. height: math.unit(0.185, "meters"),
  11205. name: "Foot",
  11206. image: {
  11207. source: "./media/characters/rufran/foot.svg"
  11208. }
  11209. },
  11210. },
  11211. [
  11212. {
  11213. name: "Micro",
  11214. height: math.unit(1, "inch")
  11215. },
  11216. {
  11217. name: "Normal",
  11218. height: math.unit(2 + 6 / 12, "feet"),
  11219. default: true
  11220. },
  11221. {
  11222. name: "Big",
  11223. height: math.unit(60, "feet")
  11224. },
  11225. {
  11226. name: "Macro",
  11227. height: math.unit(325, "feet")
  11228. },
  11229. ]
  11230. ))
  11231. characterMakers.push(() => makeCharacter(
  11232. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11233. {
  11234. front: {
  11235. height: math.unit(0.3, "meters"),
  11236. weight: math.unit(3.5, "kg"),
  11237. name: "Front",
  11238. image: {
  11239. source: "./media/characters/chip/front.svg",
  11240. extra: 748 / 674
  11241. }
  11242. },
  11243. },
  11244. [
  11245. {
  11246. name: "Micro",
  11247. height: math.unit(1, "inch"),
  11248. default: true
  11249. },
  11250. ]
  11251. ))
  11252. characterMakers.push(() => makeCharacter(
  11253. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11254. {
  11255. side: {
  11256. height: math.unit(2.3, "meters"),
  11257. weight: math.unit(3500, "lb"),
  11258. name: "Side",
  11259. image: {
  11260. source: "./media/characters/torvid/side.svg",
  11261. extra: 1972 / 722,
  11262. bottom: 0.035
  11263. }
  11264. },
  11265. },
  11266. [
  11267. {
  11268. name: "Normal",
  11269. height: math.unit(2.3, "meters"),
  11270. default: true
  11271. },
  11272. ]
  11273. ))
  11274. characterMakers.push(() => makeCharacter(
  11275. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11276. {
  11277. front: {
  11278. height: math.unit(2, "meters"),
  11279. weight: math.unit(150.5, "kg"),
  11280. name: "Front",
  11281. image: {
  11282. source: "./media/characters/susan/front.svg",
  11283. extra: 693 / 635,
  11284. bottom: 0.05
  11285. }
  11286. },
  11287. },
  11288. [
  11289. {
  11290. name: "Megamacro",
  11291. height: math.unit(505, "miles"),
  11292. default: true
  11293. },
  11294. ]
  11295. ))
  11296. characterMakers.push(() => makeCharacter(
  11297. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11298. {
  11299. front: {
  11300. height: math.unit(6, "feet"),
  11301. weight: math.unit(150, "lb"),
  11302. name: "Front",
  11303. image: {
  11304. source: "./media/characters/raindrops/front.svg",
  11305. extra: 2655 / 2461,
  11306. bottom: 0.02
  11307. }
  11308. },
  11309. back: {
  11310. height: math.unit(6, "feet"),
  11311. weight: math.unit(150, "lb"),
  11312. name: "Back",
  11313. image: {
  11314. source: "./media/characters/raindrops/back.svg",
  11315. extra: 2574 / 2400,
  11316. bottom: 0.03
  11317. }
  11318. },
  11319. },
  11320. [
  11321. {
  11322. name: "Micro",
  11323. height: math.unit(6, "inches")
  11324. },
  11325. {
  11326. name: "Normal",
  11327. height: math.unit(6 + 2 / 12, "feet")
  11328. },
  11329. {
  11330. name: "Macro",
  11331. height: math.unit(131, "feet"),
  11332. default: true
  11333. },
  11334. {
  11335. name: "Megamacro",
  11336. height: math.unit(15, "miles")
  11337. },
  11338. {
  11339. name: "Gigamacro",
  11340. height: math.unit(4000, "miles")
  11341. },
  11342. {
  11343. name: "Teramacro",
  11344. height: math.unit(315000, "miles")
  11345. },
  11346. ]
  11347. ))
  11348. characterMakers.push(() => makeCharacter(
  11349. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11350. {
  11351. front: {
  11352. height: math.unit(2.794, "meters"),
  11353. weight: math.unit(325, "kg"),
  11354. name: "Front",
  11355. image: {
  11356. source: "./media/characters/tezwa/front.svg",
  11357. extra: 2083 / 1906,
  11358. bottom: 0.031
  11359. }
  11360. },
  11361. foot: {
  11362. height: math.unit(0.687, "meters"),
  11363. name: "Foot",
  11364. image: {
  11365. source: "./media/characters/tezwa/foot.svg"
  11366. }
  11367. },
  11368. },
  11369. [
  11370. {
  11371. name: "Normal",
  11372. height: math.unit(9 + 2 / 12, "feet"),
  11373. default: true
  11374. },
  11375. ]
  11376. ))
  11377. characterMakers.push(() => makeCharacter(
  11378. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11379. {
  11380. front: {
  11381. height: math.unit(58, "feet"),
  11382. weight: math.unit(89000, "lb"),
  11383. name: "Front",
  11384. image: {
  11385. source: "./media/characters/typhus/front.svg",
  11386. extra: 816 / 800,
  11387. bottom: 0.065
  11388. }
  11389. },
  11390. },
  11391. [
  11392. {
  11393. name: "Macro",
  11394. height: math.unit(58, "feet"),
  11395. default: true
  11396. },
  11397. ]
  11398. ))
  11399. characterMakers.push(() => makeCharacter(
  11400. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11401. {
  11402. front: {
  11403. height: math.unit(12, "feet"),
  11404. weight: math.unit(6, "tonnes"),
  11405. name: "Front",
  11406. image: {
  11407. source: "./media/characters/lyra-von-wulf/front.svg",
  11408. extra: 1,
  11409. bottom: 0.10
  11410. }
  11411. },
  11412. frontMecha: {
  11413. height: math.unit(12, "feet"),
  11414. weight: math.unit(12, "tonnes"),
  11415. name: "Front (Mecha)",
  11416. image: {
  11417. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11418. extra: 1,
  11419. bottom: 0.042
  11420. }
  11421. },
  11422. maw: {
  11423. height: math.unit(2.2, "feet"),
  11424. name: "Maw",
  11425. image: {
  11426. source: "./media/characters/lyra-von-wulf/maw.svg"
  11427. }
  11428. },
  11429. },
  11430. [
  11431. {
  11432. name: "Normal",
  11433. height: math.unit(12, "feet"),
  11434. default: true
  11435. },
  11436. {
  11437. name: "Classic",
  11438. height: math.unit(50, "feet")
  11439. },
  11440. {
  11441. name: "Macro",
  11442. height: math.unit(500, "feet")
  11443. },
  11444. {
  11445. name: "Megamacro",
  11446. height: math.unit(1, "mile")
  11447. },
  11448. {
  11449. name: "Gigamacro",
  11450. height: math.unit(400, "miles")
  11451. },
  11452. {
  11453. name: "Teramacro",
  11454. height: math.unit(22000, "miles")
  11455. },
  11456. {
  11457. name: "Solarmacro",
  11458. height: math.unit(8600000, "miles")
  11459. },
  11460. {
  11461. name: "Galactic",
  11462. height: math.unit(1057000, "lightyears")
  11463. },
  11464. ]
  11465. ))
  11466. characterMakers.push(() => makeCharacter(
  11467. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11468. {
  11469. front: {
  11470. height: math.unit(6 + 10 / 12, "feet"),
  11471. weight: math.unit(150, "lb"),
  11472. name: "Front",
  11473. image: {
  11474. source: "./media/characters/dixon/front.svg",
  11475. extra: 3361 / 3209,
  11476. bottom: 0.01
  11477. }
  11478. },
  11479. },
  11480. [
  11481. {
  11482. name: "Normal",
  11483. height: math.unit(6 + 10 / 12, "feet"),
  11484. default: true
  11485. },
  11486. {
  11487. name: "Big",
  11488. height: math.unit(12, "meters")
  11489. },
  11490. {
  11491. name: "Macro",
  11492. height: math.unit(500, "meters")
  11493. },
  11494. {
  11495. name: "Megamacro",
  11496. height: math.unit(2, "km")
  11497. },
  11498. ]
  11499. ))
  11500. characterMakers.push(() => makeCharacter(
  11501. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11502. {
  11503. front: {
  11504. height: math.unit(185, "cm"),
  11505. weight: math.unit(68, "kg"),
  11506. name: "Front",
  11507. image: {
  11508. source: "./media/characters/kauko/front.svg",
  11509. extra: 1455 / 1421,
  11510. bottom: 0.03
  11511. }
  11512. },
  11513. back: {
  11514. height: math.unit(185, "cm"),
  11515. weight: math.unit(68, "kg"),
  11516. name: "Back",
  11517. image: {
  11518. source: "./media/characters/kauko/back.svg",
  11519. extra: 1455 / 1421,
  11520. bottom: 0.004
  11521. }
  11522. },
  11523. },
  11524. [
  11525. {
  11526. name: "Normal",
  11527. height: math.unit(185, "cm"),
  11528. default: true
  11529. },
  11530. ]
  11531. ))
  11532. characterMakers.push(() => makeCharacter(
  11533. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11534. {
  11535. front: {
  11536. height: math.unit(6, "feet"),
  11537. weight: math.unit(150, "kg"),
  11538. name: "Front",
  11539. image: {
  11540. source: "./media/characters/varg/front.svg",
  11541. extra: 1108 / 1018,
  11542. bottom: 0.0375
  11543. }
  11544. },
  11545. },
  11546. [
  11547. {
  11548. name: "Normal",
  11549. height: math.unit(5, "meters")
  11550. },
  11551. {
  11552. name: "Macro",
  11553. height: math.unit(200, "meters")
  11554. },
  11555. {
  11556. name: "Megamacro",
  11557. height: math.unit(20, "kilometers")
  11558. },
  11559. {
  11560. name: "True Size",
  11561. height: math.unit(211, "km"),
  11562. default: true
  11563. },
  11564. {
  11565. name: "Gigamacro",
  11566. height: math.unit(1000, "km")
  11567. },
  11568. {
  11569. name: "Gigamacro+",
  11570. height: math.unit(8000, "km")
  11571. },
  11572. {
  11573. name: "Teramacro",
  11574. height: math.unit(1000000, "km")
  11575. },
  11576. ]
  11577. ))
  11578. characterMakers.push(() => makeCharacter(
  11579. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11580. {
  11581. front: {
  11582. height: math.unit(7 + 7 / 12, "feet"),
  11583. weight: math.unit(267, "lb"),
  11584. name: "Front",
  11585. image: {
  11586. source: "./media/characters/dayza/front.svg",
  11587. extra: 1262 / 1200,
  11588. bottom: 0.035
  11589. }
  11590. },
  11591. side: {
  11592. height: math.unit(7 + 7 / 12, "feet"),
  11593. weight: math.unit(267, "lb"),
  11594. name: "Side",
  11595. image: {
  11596. source: "./media/characters/dayza/side.svg",
  11597. extra: 1295 / 1245,
  11598. bottom: 0.05
  11599. }
  11600. },
  11601. back: {
  11602. height: math.unit(7 + 7 / 12, "feet"),
  11603. weight: math.unit(267, "lb"),
  11604. name: "Back",
  11605. image: {
  11606. source: "./media/characters/dayza/back.svg",
  11607. extra: 1241 / 1170
  11608. }
  11609. },
  11610. },
  11611. [
  11612. {
  11613. name: "Normal",
  11614. height: math.unit(7 + 7 / 12, "feet"),
  11615. default: true
  11616. },
  11617. {
  11618. name: "Macro",
  11619. height: math.unit(155, "feet")
  11620. },
  11621. ]
  11622. ))
  11623. characterMakers.push(() => makeCharacter(
  11624. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11625. {
  11626. front: {
  11627. height: math.unit(6 + 5 / 12, "feet"),
  11628. weight: math.unit(160, "lb"),
  11629. name: "Front",
  11630. image: {
  11631. source: "./media/characters/xanthos/front.svg",
  11632. extra: 1,
  11633. bottom: 0.04
  11634. }
  11635. },
  11636. back: {
  11637. height: math.unit(6 + 5 / 12, "feet"),
  11638. weight: math.unit(160, "lb"),
  11639. name: "Back",
  11640. image: {
  11641. source: "./media/characters/xanthos/back.svg",
  11642. extra: 1,
  11643. bottom: 0.03
  11644. }
  11645. },
  11646. hand: {
  11647. height: math.unit(0.928, "feet"),
  11648. name: "Hand",
  11649. image: {
  11650. source: "./media/characters/xanthos/hand.svg"
  11651. }
  11652. },
  11653. foot: {
  11654. height: math.unit(1.286, "feet"),
  11655. name: "Foot",
  11656. image: {
  11657. source: "./media/characters/xanthos/foot.svg"
  11658. }
  11659. },
  11660. },
  11661. [
  11662. {
  11663. name: "Normal",
  11664. height: math.unit(6 + 5 / 12, "feet"),
  11665. default: true
  11666. },
  11667. {
  11668. name: "Normal+",
  11669. height: math.unit(6, "meters")
  11670. },
  11671. {
  11672. name: "Macro",
  11673. height: math.unit(40, "feet")
  11674. },
  11675. {
  11676. name: "Macro+",
  11677. height: math.unit(200, "meters")
  11678. },
  11679. {
  11680. name: "Megamacro",
  11681. height: math.unit(20, "km")
  11682. },
  11683. {
  11684. name: "Megamacro+",
  11685. height: math.unit(100, "km")
  11686. },
  11687. ]
  11688. ))
  11689. characterMakers.push(() => makeCharacter(
  11690. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11691. {
  11692. front: {
  11693. height: math.unit(6 + 3 / 12, "feet"),
  11694. weight: math.unit(215, "lb"),
  11695. name: "Front",
  11696. image: {
  11697. source: "./media/characters/grynn/front.svg",
  11698. extra: 4627 / 4209,
  11699. bottom: 0.047
  11700. }
  11701. },
  11702. },
  11703. [
  11704. {
  11705. name: "Micro",
  11706. height: math.unit(6, "inches")
  11707. },
  11708. {
  11709. name: "Normal",
  11710. height: math.unit(6 + 3 / 12, "feet"),
  11711. default: true
  11712. },
  11713. {
  11714. name: "Big",
  11715. height: math.unit(104, "feet")
  11716. },
  11717. {
  11718. name: "Macro",
  11719. height: math.unit(944, "feet")
  11720. },
  11721. {
  11722. name: "Macro+",
  11723. height: math.unit(9480, "feet")
  11724. },
  11725. {
  11726. name: "Megamacro",
  11727. height: math.unit(78752, "feet")
  11728. },
  11729. {
  11730. name: "Megamacro+",
  11731. height: math.unit(630128, "feet")
  11732. },
  11733. {
  11734. name: "Megamacro++",
  11735. height: math.unit(3150695, "feet")
  11736. },
  11737. ]
  11738. ))
  11739. characterMakers.push(() => makeCharacter(
  11740. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  11741. {
  11742. front: {
  11743. height: math.unit(7 + 5 / 12, "feet"),
  11744. weight: math.unit(450, "lb"),
  11745. name: "Front",
  11746. image: {
  11747. source: "./media/characters/mocha-aura/front.svg",
  11748. extra: 1907 / 1817,
  11749. bottom: 0.04
  11750. }
  11751. },
  11752. back: {
  11753. height: math.unit(7 + 5 / 12, "feet"),
  11754. weight: math.unit(450, "lb"),
  11755. name: "Back",
  11756. image: {
  11757. source: "./media/characters/mocha-aura/back.svg",
  11758. extra: 1900 / 1825,
  11759. bottom: 0.045
  11760. }
  11761. },
  11762. },
  11763. [
  11764. {
  11765. name: "Nano",
  11766. height: math.unit(1, "nm")
  11767. },
  11768. {
  11769. name: "Megamicro",
  11770. height: math.unit(1, "mm")
  11771. },
  11772. {
  11773. name: "Micro",
  11774. height: math.unit(3, "inches")
  11775. },
  11776. {
  11777. name: "Normal",
  11778. height: math.unit(7 + 5 / 12, "feet"),
  11779. default: true
  11780. },
  11781. {
  11782. name: "Macro",
  11783. height: math.unit(30, "feet")
  11784. },
  11785. {
  11786. name: "Megamacro",
  11787. height: math.unit(3500, "feet")
  11788. },
  11789. {
  11790. name: "Teramacro",
  11791. height: math.unit(500000, "miles")
  11792. },
  11793. {
  11794. name: "Petamacro",
  11795. height: math.unit(50000000000000000, "parsecs")
  11796. },
  11797. ]
  11798. ))
  11799. characterMakers.push(() => makeCharacter(
  11800. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  11801. {
  11802. front: {
  11803. height: math.unit(6, "feet"),
  11804. weight: math.unit(150, "lb"),
  11805. name: "Front",
  11806. image: {
  11807. source: "./media/characters/ilisha-devya/front.svg",
  11808. extra: 1,
  11809. bottom: 0.175
  11810. }
  11811. },
  11812. back: {
  11813. height: math.unit(6, "feet"),
  11814. weight: math.unit(150, "lb"),
  11815. name: "Back",
  11816. image: {
  11817. source: "./media/characters/ilisha-devya/back.svg",
  11818. extra: 1,
  11819. bottom: 0.015
  11820. }
  11821. },
  11822. },
  11823. [
  11824. {
  11825. name: "Macro",
  11826. height: math.unit(500, "feet"),
  11827. default: true
  11828. },
  11829. {
  11830. name: "Megamacro",
  11831. height: math.unit(10, "miles")
  11832. },
  11833. {
  11834. name: "Gigamacro",
  11835. height: math.unit(100000, "miles")
  11836. },
  11837. {
  11838. name: "Examacro",
  11839. height: math.unit(1e9, "lightyears")
  11840. },
  11841. {
  11842. name: "Omniversal",
  11843. height: math.unit(1e33, "lightyears")
  11844. },
  11845. {
  11846. name: "Beyond Infinite",
  11847. height: math.unit(1e100, "lightyears")
  11848. },
  11849. ]
  11850. ))
  11851. characterMakers.push(() => makeCharacter(
  11852. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  11853. {
  11854. Side: {
  11855. height: math.unit(6, "feet"),
  11856. weight: math.unit(150, "lb"),
  11857. name: "Side",
  11858. image: {
  11859. source: "./media/characters/mira/side.svg",
  11860. extra: 900 / 799,
  11861. bottom: 0.02
  11862. }
  11863. },
  11864. },
  11865. [
  11866. {
  11867. name: "Human Size",
  11868. height: math.unit(6, "feet")
  11869. },
  11870. {
  11871. name: "Macro",
  11872. height: math.unit(100, "feet"),
  11873. default: true
  11874. },
  11875. {
  11876. name: "Megamacro",
  11877. height: math.unit(10, "miles")
  11878. },
  11879. {
  11880. name: "Gigamacro",
  11881. height: math.unit(25000, "miles")
  11882. },
  11883. {
  11884. name: "Teramacro",
  11885. height: math.unit(300, "AU")
  11886. },
  11887. {
  11888. name: "Full Size",
  11889. height: math.unit(4.5e10, "lightyears")
  11890. },
  11891. ]
  11892. ))
  11893. characterMakers.push(() => makeCharacter(
  11894. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  11895. {
  11896. front: {
  11897. height: math.unit(6, "feet"),
  11898. weight: math.unit(150, "lb"),
  11899. name: "Front",
  11900. image: {
  11901. source: "./media/characters/holly/front.svg",
  11902. extra: 639 / 606
  11903. }
  11904. },
  11905. back: {
  11906. height: math.unit(6, "feet"),
  11907. weight: math.unit(150, "lb"),
  11908. name: "Back",
  11909. image: {
  11910. source: "./media/characters/holly/back.svg",
  11911. extra: 623 / 598
  11912. }
  11913. },
  11914. frontWorking: {
  11915. height: math.unit(6, "feet"),
  11916. weight: math.unit(150, "lb"),
  11917. name: "Front (Working)",
  11918. image: {
  11919. source: "./media/characters/holly/front-working.svg",
  11920. extra: 607 / 577,
  11921. bottom: 0.048
  11922. }
  11923. },
  11924. },
  11925. [
  11926. {
  11927. name: "Normal",
  11928. height: math.unit(12 + 3 / 12, "feet"),
  11929. default: true
  11930. },
  11931. ]
  11932. ))
  11933. characterMakers.push(() => makeCharacter(
  11934. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  11935. {
  11936. front: {
  11937. height: math.unit(6, "feet"),
  11938. weight: math.unit(150, "lb"),
  11939. name: "Front",
  11940. image: {
  11941. source: "./media/characters/porter/front.svg",
  11942. extra: 1,
  11943. bottom: 0.01
  11944. }
  11945. },
  11946. frontRobes: {
  11947. height: math.unit(6, "feet"),
  11948. weight: math.unit(150, "lb"),
  11949. name: "Front (Robes)",
  11950. image: {
  11951. source: "./media/characters/porter/front-robes.svg",
  11952. extra: 1.01,
  11953. bottom: 0.01
  11954. }
  11955. },
  11956. },
  11957. [
  11958. {
  11959. name: "Normal",
  11960. height: math.unit(11 + 9 / 12, "feet"),
  11961. default: true
  11962. },
  11963. ]
  11964. ))
  11965. characterMakers.push(() => makeCharacter(
  11966. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  11967. {
  11968. legendary: {
  11969. height: math.unit(6, "feet"),
  11970. weight: math.unit(150, "lb"),
  11971. name: "Legendary",
  11972. image: {
  11973. source: "./media/characters/lucy/legendary.svg",
  11974. extra: 1355 / 1100,
  11975. bottom: 0.045
  11976. }
  11977. },
  11978. },
  11979. [
  11980. {
  11981. name: "Legendary",
  11982. height: math.unit(86882 * 2, "miles"),
  11983. default: true
  11984. },
  11985. ]
  11986. ))
  11987. characterMakers.push(() => makeCharacter(
  11988. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  11989. {
  11990. front: {
  11991. height: math.unit(6, "feet"),
  11992. weight: math.unit(150, "lb"),
  11993. name: "Front",
  11994. image: {
  11995. source: "./media/characters/drusilla/front.svg",
  11996. extra: 678 / 635,
  11997. bottom: 0.03
  11998. }
  11999. },
  12000. back: {
  12001. height: math.unit(6, "feet"),
  12002. weight: math.unit(150, "lb"),
  12003. name: "Back",
  12004. image: {
  12005. source: "./media/characters/drusilla/back.svg",
  12006. extra: 678 / 635,
  12007. bottom: 0.005
  12008. }
  12009. },
  12010. },
  12011. [
  12012. {
  12013. name: "Macro",
  12014. height: math.unit(100, "feet")
  12015. },
  12016. {
  12017. name: "Canon Height",
  12018. height: math.unit(2000, "feet"),
  12019. default: true
  12020. },
  12021. ]
  12022. ))
  12023. characterMakers.push(() => makeCharacter(
  12024. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12025. {
  12026. front: {
  12027. height: math.unit(6, "feet"),
  12028. weight: math.unit(180, "lb"),
  12029. name: "Front",
  12030. image: {
  12031. source: "./media/characters/renard-thatch/front.svg",
  12032. extra: 2411 / 2275,
  12033. bottom: 0.01
  12034. }
  12035. },
  12036. frontPosing: {
  12037. height: math.unit(6, "feet"),
  12038. weight: math.unit(180, "lb"),
  12039. name: "Front (Posing)",
  12040. image: {
  12041. source: "./media/characters/renard-thatch/front-posing.svg",
  12042. extra: 2381 / 2261,
  12043. bottom: 0.01
  12044. }
  12045. },
  12046. back: {
  12047. height: math.unit(6, "feet"),
  12048. weight: math.unit(180, "lb"),
  12049. name: "Back",
  12050. image: {
  12051. source: "./media/characters/renard-thatch/back.svg",
  12052. extra: 2428 / 2288
  12053. }
  12054. },
  12055. },
  12056. [
  12057. {
  12058. name: "Micro",
  12059. height: math.unit(3, "inches")
  12060. },
  12061. {
  12062. name: "Default",
  12063. height: math.unit(6, "feet"),
  12064. default: true
  12065. },
  12066. {
  12067. name: "Macro",
  12068. height: math.unit(75, "feet")
  12069. },
  12070. ]
  12071. ))
  12072. characterMakers.push(() => makeCharacter(
  12073. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12074. {
  12075. front: {
  12076. height: math.unit(1450, "feet"),
  12077. weight: math.unit(1.21e6, "tons"),
  12078. name: "Front",
  12079. image: {
  12080. source: "./media/characters/sekvra/front.svg",
  12081. extra: 1,
  12082. bottom: 0.03
  12083. }
  12084. },
  12085. frontClothed: {
  12086. height: math.unit(1450, "feet"),
  12087. weight: math.unit(1.21e6, "tons"),
  12088. name: "Front (Clothed)",
  12089. image: {
  12090. source: "./media/characters/sekvra/front-clothed.svg",
  12091. extra: 1,
  12092. bottom: 0.03
  12093. }
  12094. },
  12095. side: {
  12096. height: math.unit(1450, "feet"),
  12097. weight: math.unit(1.21e6, "tons"),
  12098. name: "Side",
  12099. image: {
  12100. source: "./media/characters/sekvra/side.svg",
  12101. extra: 1,
  12102. bottom: 0.025
  12103. }
  12104. },
  12105. back: {
  12106. height: math.unit(1450, "feet"),
  12107. weight: math.unit(1.21e6, "tons"),
  12108. name: "Back",
  12109. image: {
  12110. source: "./media/characters/sekvra/back.svg",
  12111. extra: 1,
  12112. bottom: 0.005
  12113. }
  12114. },
  12115. },
  12116. [
  12117. {
  12118. name: "Macro",
  12119. height: math.unit(1450, "feet"),
  12120. default: true
  12121. },
  12122. {
  12123. name: "Megamacro",
  12124. height: math.unit(15000, "feet")
  12125. },
  12126. ]
  12127. ))
  12128. characterMakers.push(() => makeCharacter(
  12129. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12130. {
  12131. front: {
  12132. height: math.unit(6, "feet"),
  12133. weight: math.unit(150, "lb"),
  12134. name: "Front",
  12135. image: {
  12136. source: "./media/characters/carmine/front.svg",
  12137. extra: 1,
  12138. bottom: 0.035
  12139. }
  12140. },
  12141. frontArmor: {
  12142. height: math.unit(6, "feet"),
  12143. weight: math.unit(150, "lb"),
  12144. name: "Front (Armor)",
  12145. image: {
  12146. source: "./media/characters/carmine/front-armor.svg",
  12147. extra: 1,
  12148. bottom: 0.035
  12149. }
  12150. },
  12151. },
  12152. [
  12153. {
  12154. name: "Large",
  12155. height: math.unit(1, "mile")
  12156. },
  12157. {
  12158. name: "Huge",
  12159. height: math.unit(40, "miles"),
  12160. default: true
  12161. },
  12162. {
  12163. name: "Colossal",
  12164. height: math.unit(2500, "miles")
  12165. },
  12166. ]
  12167. ))
  12168. characterMakers.push(() => makeCharacter(
  12169. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12170. {
  12171. front: {
  12172. height: math.unit(6, "feet"),
  12173. weight: math.unit(150, "lb"),
  12174. name: "Front",
  12175. image: {
  12176. source: "./media/characters/elyssia/front.svg",
  12177. extra: 2201 / 2035,
  12178. bottom: 0.05
  12179. }
  12180. },
  12181. frontClothed: {
  12182. height: math.unit(6, "feet"),
  12183. weight: math.unit(150, "lb"),
  12184. name: "Front (Clothed)",
  12185. image: {
  12186. source: "./media/characters/elyssia/front-clothed.svg",
  12187. extra: 2201 / 2035,
  12188. bottom: 0.05
  12189. }
  12190. },
  12191. back: {
  12192. height: math.unit(6, "feet"),
  12193. weight: math.unit(150, "lb"),
  12194. name: "Back",
  12195. image: {
  12196. source: "./media/characters/elyssia/back.svg",
  12197. extra: 2201 / 2035,
  12198. bottom: 0.013
  12199. }
  12200. },
  12201. },
  12202. [
  12203. {
  12204. name: "Smaller",
  12205. height: math.unit(150, "feet")
  12206. },
  12207. {
  12208. name: "Standard",
  12209. height: math.unit(1400, "feet"),
  12210. default: true
  12211. },
  12212. {
  12213. name: "Distracted",
  12214. height: math.unit(15000, "feet")
  12215. },
  12216. ]
  12217. ))
  12218. characterMakers.push(() => makeCharacter(
  12219. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12220. {
  12221. front: {
  12222. height: math.unit(7 + 4 / 12, "feet"),
  12223. weight: math.unit(500, "lb"),
  12224. name: "Front",
  12225. image: {
  12226. source: "./media/characters/geno-maxwell/front.svg",
  12227. extra: 2207 / 2040,
  12228. bottom: 0.015
  12229. }
  12230. },
  12231. },
  12232. [
  12233. {
  12234. name: "Micro",
  12235. height: math.unit(3, "inches")
  12236. },
  12237. {
  12238. name: "Normal",
  12239. height: math.unit(7 + 4 / 12, "feet"),
  12240. default: true
  12241. },
  12242. {
  12243. name: "Macro",
  12244. height: math.unit(220, "feet")
  12245. },
  12246. {
  12247. name: "Megamacro",
  12248. height: math.unit(11, "miles")
  12249. },
  12250. ]
  12251. ))
  12252. characterMakers.push(() => makeCharacter(
  12253. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12254. {
  12255. front: {
  12256. height: math.unit(7 + 4 / 12, "feet"),
  12257. weight: math.unit(500, "lb"),
  12258. name: "Front",
  12259. image: {
  12260. source: "./media/characters/regena-maxwell/front.svg",
  12261. extra: 3115 / 2770,
  12262. bottom: 0.02
  12263. }
  12264. },
  12265. },
  12266. [
  12267. {
  12268. name: "Normal",
  12269. height: math.unit(7 + 4 / 12, "feet"),
  12270. default: true
  12271. },
  12272. {
  12273. name: "Macro",
  12274. height: math.unit(220, "feet")
  12275. },
  12276. {
  12277. name: "Megamacro",
  12278. height: math.unit(11, "miles")
  12279. },
  12280. ]
  12281. ))
  12282. characterMakers.push(() => makeCharacter(
  12283. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12284. {
  12285. front: {
  12286. height: math.unit(6, "feet"),
  12287. weight: math.unit(150, "lb"),
  12288. name: "Front",
  12289. image: {
  12290. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12291. extra: 860 / 690,
  12292. bottom: 0.03
  12293. }
  12294. },
  12295. },
  12296. [
  12297. {
  12298. name: "Normal",
  12299. height: math.unit(1.7, "meters"),
  12300. default: true
  12301. },
  12302. ]
  12303. ))
  12304. characterMakers.push(() => makeCharacter(
  12305. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12306. {
  12307. front: {
  12308. height: math.unit(6, "feet"),
  12309. weight: math.unit(150, "lb"),
  12310. name: "Front",
  12311. image: {
  12312. source: "./media/characters/quilly/front.svg",
  12313. extra: 890 / 776
  12314. }
  12315. },
  12316. },
  12317. [
  12318. {
  12319. name: "Gigamacro",
  12320. height: math.unit(404090, "miles"),
  12321. default: true
  12322. },
  12323. ]
  12324. ))
  12325. characterMakers.push(() => makeCharacter(
  12326. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12327. {
  12328. front: {
  12329. height: math.unit(7 + 8 / 12, "feet"),
  12330. weight: math.unit(350, "lb"),
  12331. name: "Front",
  12332. image: {
  12333. source: "./media/characters/tempest/front.svg",
  12334. extra: 1175 / 1086,
  12335. bottom: 0.02
  12336. }
  12337. },
  12338. },
  12339. [
  12340. {
  12341. name: "Normal",
  12342. height: math.unit(7 + 8 / 12, "feet"),
  12343. default: true
  12344. },
  12345. ]
  12346. ))
  12347. characterMakers.push(() => makeCharacter(
  12348. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12349. {
  12350. side: {
  12351. height: math.unit(4 + 5 / 12, "feet"),
  12352. weight: math.unit(80, "lb"),
  12353. name: "Side",
  12354. image: {
  12355. source: "./media/characters/rodger/side.svg",
  12356. extra: 1235 / 1118
  12357. }
  12358. },
  12359. },
  12360. [
  12361. {
  12362. name: "Micro",
  12363. height: math.unit(1, "inch")
  12364. },
  12365. {
  12366. name: "Normal",
  12367. height: math.unit(4 + 5 / 12, "feet"),
  12368. default: true
  12369. },
  12370. {
  12371. name: "Macro",
  12372. height: math.unit(120, "feet")
  12373. },
  12374. ]
  12375. ))
  12376. characterMakers.push(() => makeCharacter(
  12377. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12378. {
  12379. front: {
  12380. height: math.unit(6, "feet"),
  12381. weight: math.unit(150, "lb"),
  12382. name: "Front",
  12383. image: {
  12384. source: "./media/characters/danyel/front.svg",
  12385. extra: 1185 / 1123,
  12386. bottom: 0.05
  12387. }
  12388. },
  12389. },
  12390. [
  12391. {
  12392. name: "Shrunken",
  12393. height: math.unit(0.5, "mm")
  12394. },
  12395. {
  12396. name: "Micro",
  12397. height: math.unit(1, "mm"),
  12398. default: true
  12399. },
  12400. {
  12401. name: "Upsized",
  12402. height: math.unit(5 + 5 / 12, "feet")
  12403. },
  12404. ]
  12405. ))
  12406. characterMakers.push(() => makeCharacter(
  12407. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12408. {
  12409. front: {
  12410. height: math.unit(5 + 6 / 12, "feet"),
  12411. weight: math.unit(200, "lb"),
  12412. name: "Front",
  12413. image: {
  12414. source: "./media/characters/vivian-bijoux/front.svg",
  12415. extra: 1,
  12416. bottom: 0.072
  12417. }
  12418. },
  12419. },
  12420. [
  12421. {
  12422. name: "Normal",
  12423. height: math.unit(5 + 6 / 12, "feet"),
  12424. default: true
  12425. },
  12426. {
  12427. name: "Bad Dream",
  12428. height: math.unit(500, "feet")
  12429. },
  12430. {
  12431. name: "Nightmare",
  12432. height: math.unit(500, "miles")
  12433. },
  12434. ]
  12435. ))
  12436. characterMakers.push(() => makeCharacter(
  12437. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12438. {
  12439. front: {
  12440. height: math.unit(6 + 1 / 12, "feet"),
  12441. weight: math.unit(260, "lb"),
  12442. name: "Front",
  12443. image: {
  12444. source: "./media/characters/zeta/front.svg",
  12445. extra: 1968 / 1889,
  12446. bottom: 0.06
  12447. }
  12448. },
  12449. back: {
  12450. height: math.unit(6 + 1 / 12, "feet"),
  12451. weight: math.unit(260, "lb"),
  12452. name: "Back",
  12453. image: {
  12454. source: "./media/characters/zeta/back.svg",
  12455. extra: 1944 / 1858,
  12456. bottom: 0.03
  12457. }
  12458. },
  12459. hand: {
  12460. height: math.unit(1.112, "feet"),
  12461. name: "Hand",
  12462. image: {
  12463. source: "./media/characters/zeta/hand.svg"
  12464. }
  12465. },
  12466. foot: {
  12467. height: math.unit(1.48, "feet"),
  12468. name: "Foot",
  12469. image: {
  12470. source: "./media/characters/zeta/foot.svg"
  12471. }
  12472. },
  12473. },
  12474. [
  12475. {
  12476. name: "Micro",
  12477. height: math.unit(6, "inches")
  12478. },
  12479. {
  12480. name: "Normal",
  12481. height: math.unit(6 + 1 / 12, "feet"),
  12482. default: true
  12483. },
  12484. {
  12485. name: "Macro",
  12486. height: math.unit(20, "feet")
  12487. },
  12488. ]
  12489. ))
  12490. characterMakers.push(() => makeCharacter(
  12491. { name: "Jamie Larsen", species: ["rabbit"], 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/jamie-larsen/front.svg",
  12499. extra: 962 / 933,
  12500. bottom: 0.02
  12501. }
  12502. },
  12503. back: {
  12504. height: math.unit(6, "feet"),
  12505. weight: math.unit(150, "lb"),
  12506. name: "Back",
  12507. image: {
  12508. source: "./media/characters/jamie-larsen/back.svg",
  12509. extra: 997 / 946
  12510. }
  12511. },
  12512. },
  12513. [
  12514. {
  12515. name: "Macro",
  12516. height: math.unit(28 + 7 / 12, "feet"),
  12517. default: true
  12518. },
  12519. {
  12520. name: "Macro+",
  12521. height: math.unit(180, "feet")
  12522. },
  12523. {
  12524. name: "Megamacro",
  12525. height: math.unit(10, "miles")
  12526. },
  12527. {
  12528. name: "Gigamacro",
  12529. height: math.unit(200000, "miles")
  12530. },
  12531. ]
  12532. ))
  12533. characterMakers.push(() => makeCharacter(
  12534. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12535. {
  12536. front: {
  12537. height: math.unit(6, "feet"),
  12538. weight: math.unit(120, "lb"),
  12539. name: "Front",
  12540. image: {
  12541. source: "./media/characters/vance/front.svg",
  12542. extra: 1980 / 1890,
  12543. bottom: 0.09
  12544. }
  12545. },
  12546. back: {
  12547. height: math.unit(6, "feet"),
  12548. weight: math.unit(120, "lb"),
  12549. name: "Back",
  12550. image: {
  12551. source: "./media/characters/vance/back.svg",
  12552. extra: 2081 / 1994,
  12553. bottom: 0.014
  12554. }
  12555. },
  12556. hand: {
  12557. height: math.unit(0.88, "feet"),
  12558. name: "Hand",
  12559. image: {
  12560. source: "./media/characters/vance/hand.svg"
  12561. }
  12562. },
  12563. foot: {
  12564. height: math.unit(0.64, "feet"),
  12565. name: "Foot",
  12566. image: {
  12567. source: "./media/characters/vance/foot.svg"
  12568. }
  12569. },
  12570. },
  12571. [
  12572. {
  12573. name: "Small",
  12574. height: math.unit(90, "feet"),
  12575. default: true
  12576. },
  12577. {
  12578. name: "Macro",
  12579. height: math.unit(100, "meters")
  12580. },
  12581. {
  12582. name: "Megamacro",
  12583. height: math.unit(15, "miles")
  12584. },
  12585. ]
  12586. ))
  12587. characterMakers.push(() => makeCharacter(
  12588. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12589. {
  12590. front: {
  12591. height: math.unit(6, "feet"),
  12592. weight: math.unit(180, "lb"),
  12593. name: "Front",
  12594. image: {
  12595. source: "./media/characters/xochitl/front.svg",
  12596. extra: 2297 / 2261,
  12597. bottom: 0.065
  12598. }
  12599. },
  12600. back: {
  12601. height: math.unit(6, "feet"),
  12602. weight: math.unit(180, "lb"),
  12603. name: "Back",
  12604. image: {
  12605. source: "./media/characters/xochitl/back.svg",
  12606. extra: 2386 / 2354,
  12607. bottom: 0.01
  12608. }
  12609. },
  12610. foot: {
  12611. height: math.unit(6 / 5 * 1.15, "feet"),
  12612. weight: math.unit(150, "lb"),
  12613. name: "Foot",
  12614. image: {
  12615. source: "./media/characters/xochitl/foot.svg"
  12616. }
  12617. },
  12618. },
  12619. [
  12620. {
  12621. name: "Macro",
  12622. height: math.unit(80, "feet")
  12623. },
  12624. {
  12625. name: "Macro+",
  12626. height: math.unit(400, "feet"),
  12627. default: true
  12628. },
  12629. {
  12630. name: "Gigamacro",
  12631. height: math.unit(80000, "miles")
  12632. },
  12633. {
  12634. name: "Gigamacro+",
  12635. height: math.unit(400000, "miles")
  12636. },
  12637. {
  12638. name: "Teramacro",
  12639. height: math.unit(300, "AU")
  12640. },
  12641. ]
  12642. ))
  12643. characterMakers.push(() => makeCharacter(
  12644. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12645. {
  12646. front: {
  12647. height: math.unit(6, "feet"),
  12648. weight: math.unit(150, "lb"),
  12649. name: "Front",
  12650. image: {
  12651. source: "./media/characters/vincent/front.svg",
  12652. extra: 1130 / 1080,
  12653. bottom: 0.055
  12654. }
  12655. },
  12656. beak: {
  12657. height: math.unit(6 * 0.1, "feet"),
  12658. name: "Beak",
  12659. image: {
  12660. source: "./media/characters/vincent/beak.svg"
  12661. }
  12662. },
  12663. hand: {
  12664. height: math.unit(6 * 0.85, "feet"),
  12665. weight: math.unit(150, "lb"),
  12666. name: "Hand",
  12667. image: {
  12668. source: "./media/characters/vincent/hand.svg"
  12669. }
  12670. },
  12671. foot: {
  12672. height: math.unit(6 * 0.19, "feet"),
  12673. weight: math.unit(150, "lb"),
  12674. name: "Foot",
  12675. image: {
  12676. source: "./media/characters/vincent/foot.svg"
  12677. }
  12678. },
  12679. },
  12680. [
  12681. {
  12682. name: "Base",
  12683. height: math.unit(6 + 5 / 12, "feet"),
  12684. default: true
  12685. },
  12686. {
  12687. name: "Macro",
  12688. height: math.unit(300, "feet")
  12689. },
  12690. {
  12691. name: "Megamacro",
  12692. height: math.unit(2, "miles")
  12693. },
  12694. {
  12695. name: "Gigamacro",
  12696. height: math.unit(1000, "miles")
  12697. },
  12698. ]
  12699. ))
  12700. characterMakers.push(() => makeCharacter(
  12701. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  12702. {
  12703. front: {
  12704. height: math.unit(6 + 2 / 12, "feet"),
  12705. weight: math.unit(265, "lb"),
  12706. name: "Front",
  12707. image: {
  12708. source: "./media/characters/jay/front.svg",
  12709. extra: 1510 / 1430,
  12710. bottom: 0.042
  12711. }
  12712. },
  12713. back: {
  12714. height: math.unit(6 + 2 / 12, "feet"),
  12715. weight: math.unit(265, "lb"),
  12716. name: "Back",
  12717. image: {
  12718. source: "./media/characters/jay/back.svg",
  12719. extra: 1510 / 1430,
  12720. bottom: 0.025
  12721. }
  12722. },
  12723. clothed: {
  12724. height: math.unit(6 + 2 / 12, "feet"),
  12725. weight: math.unit(265, "lb"),
  12726. name: "Front (Clothed)",
  12727. image: {
  12728. source: "./media/characters/jay/clothed.svg",
  12729. extra: 744 / 699,
  12730. bottom: 0.043
  12731. }
  12732. },
  12733. head: {
  12734. height: math.unit(1.772, "feet"),
  12735. name: "Head",
  12736. image: {
  12737. source: "./media/characters/jay/head.svg"
  12738. }
  12739. },
  12740. sizeRay: {
  12741. height: math.unit(1.331, "feet"),
  12742. name: "Size Ray",
  12743. image: {
  12744. source: "./media/characters/jay/size-ray.svg"
  12745. }
  12746. },
  12747. },
  12748. [
  12749. {
  12750. name: "Micro",
  12751. height: math.unit(1, "inch")
  12752. },
  12753. {
  12754. name: "Normal",
  12755. height: math.unit(6 + 2 / 12, "feet"),
  12756. default: true
  12757. },
  12758. {
  12759. name: "Macro",
  12760. height: math.unit(1, "mile")
  12761. },
  12762. {
  12763. name: "Megamacro",
  12764. height: math.unit(100, "miles")
  12765. },
  12766. ]
  12767. ))
  12768. characterMakers.push(() => makeCharacter(
  12769. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  12770. {
  12771. front: {
  12772. height: math.unit(2, "meters"),
  12773. weight: math.unit(500, "kg"),
  12774. name: "Front",
  12775. image: {
  12776. source: "./media/characters/coatl/front.svg",
  12777. extra: 3948 / 3500,
  12778. bottom: 0.082
  12779. }
  12780. },
  12781. },
  12782. [
  12783. {
  12784. name: "Normal",
  12785. height: math.unit(4, "meters")
  12786. },
  12787. {
  12788. name: "Macro",
  12789. height: math.unit(100, "meters"),
  12790. default: true
  12791. },
  12792. {
  12793. name: "Macro+",
  12794. height: math.unit(300, "meters")
  12795. },
  12796. {
  12797. name: "Megamacro",
  12798. height: math.unit(3, "gigameters")
  12799. },
  12800. {
  12801. name: "Megamacro+",
  12802. height: math.unit(300, "terameters")
  12803. },
  12804. {
  12805. name: "Megamacro++",
  12806. height: math.unit(3, "lightyears")
  12807. },
  12808. ]
  12809. ))
  12810. characterMakers.push(() => makeCharacter(
  12811. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  12812. {
  12813. front: {
  12814. height: math.unit(6, "feet"),
  12815. weight: math.unit(50, "kg"),
  12816. name: "front",
  12817. image: {
  12818. source: "./media/characters/shiroryu/front.svg",
  12819. extra: 1990 / 1935
  12820. }
  12821. },
  12822. },
  12823. [
  12824. {
  12825. name: "Mortal Mingling",
  12826. height: math.unit(3, "meters")
  12827. },
  12828. {
  12829. name: "Kaiju-ish",
  12830. height: math.unit(250, "meters")
  12831. },
  12832. {
  12833. name: "Somewhat Godly",
  12834. height: math.unit(400, "km"),
  12835. default: true
  12836. },
  12837. {
  12838. name: "Planetary",
  12839. height: math.unit(300, "megameters")
  12840. },
  12841. {
  12842. name: "Galaxy-dwarfing",
  12843. height: math.unit(450, "kiloparsecs")
  12844. },
  12845. {
  12846. name: "Universe Eater",
  12847. height: math.unit(150, "gigaparsecs")
  12848. },
  12849. {
  12850. name: "Almost Immeasurable",
  12851. height: math.unit(1.3e266, "yottaparsecs")
  12852. },
  12853. ]
  12854. ))
  12855. characterMakers.push(() => makeCharacter(
  12856. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  12857. {
  12858. front: {
  12859. height: math.unit(6, "feet"),
  12860. weight: math.unit(150, "lb"),
  12861. name: "Front",
  12862. image: {
  12863. source: "./media/characters/umeko/front.svg",
  12864. extra: 1,
  12865. bottom: 0.019
  12866. }
  12867. },
  12868. frontArmored: {
  12869. height: math.unit(6, "feet"),
  12870. weight: math.unit(150, "lb"),
  12871. name: "Front (Armored)",
  12872. image: {
  12873. source: "./media/characters/umeko/front-armored.svg",
  12874. extra: 1,
  12875. bottom: 0.021
  12876. }
  12877. },
  12878. },
  12879. [
  12880. {
  12881. name: "Macro",
  12882. height: math.unit(220, "feet"),
  12883. default: true
  12884. },
  12885. {
  12886. name: "Guardian Dragon",
  12887. height: math.unit(50, "miles")
  12888. },
  12889. {
  12890. name: "Cosmic",
  12891. height: math.unit(800000, "miles")
  12892. },
  12893. ]
  12894. ))
  12895. characterMakers.push(() => makeCharacter(
  12896. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  12897. {
  12898. front: {
  12899. height: math.unit(6, "feet"),
  12900. weight: math.unit(150, "lb"),
  12901. name: "Front",
  12902. image: {
  12903. source: "./media/characters/cassidy/front.svg",
  12904. extra: 1,
  12905. bottom: 0.043
  12906. }
  12907. },
  12908. },
  12909. [
  12910. {
  12911. name: "Canon Height",
  12912. height: math.unit(120, "feet"),
  12913. default: true
  12914. },
  12915. {
  12916. name: "Macro+",
  12917. height: math.unit(400, "feet")
  12918. },
  12919. {
  12920. name: "Macro++",
  12921. height: math.unit(4000, "feet")
  12922. },
  12923. {
  12924. name: "Megamacro",
  12925. height: math.unit(3, "miles")
  12926. },
  12927. ]
  12928. ))
  12929. characterMakers.push(() => makeCharacter(
  12930. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  12931. {
  12932. front: {
  12933. height: math.unit(6, "feet"),
  12934. weight: math.unit(150, "lb"),
  12935. name: "Front",
  12936. image: {
  12937. source: "./media/characters/isaac/front.svg",
  12938. extra: 896 / 815,
  12939. bottom: 0.11
  12940. }
  12941. },
  12942. },
  12943. [
  12944. {
  12945. name: "Human Size",
  12946. height: math.unit(8, "feet"),
  12947. default: true
  12948. },
  12949. {
  12950. name: "Macro",
  12951. height: math.unit(400, "feet")
  12952. },
  12953. {
  12954. name: "Megamacro",
  12955. height: math.unit(50, "miles")
  12956. },
  12957. {
  12958. name: "Canon Height",
  12959. height: math.unit(200, "AU")
  12960. },
  12961. ]
  12962. ))
  12963. characterMakers.push(() => makeCharacter(
  12964. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  12965. {
  12966. front: {
  12967. height: math.unit(6, "feet"),
  12968. weight: math.unit(72, "kg"),
  12969. name: "Front",
  12970. image: {
  12971. source: "./media/characters/sleekit/front.svg",
  12972. extra: 4693 / 4487,
  12973. bottom: 0.012
  12974. }
  12975. },
  12976. },
  12977. [
  12978. {
  12979. name: "Minimum Height",
  12980. height: math.unit(10, "meters")
  12981. },
  12982. {
  12983. name: "Smaller",
  12984. height: math.unit(25, "meters")
  12985. },
  12986. {
  12987. name: "Larger",
  12988. height: math.unit(38, "meters"),
  12989. default: true
  12990. },
  12991. {
  12992. name: "Maximum height",
  12993. height: math.unit(100, "meters")
  12994. },
  12995. ]
  12996. ))
  12997. characterMakers.push(() => makeCharacter(
  12998. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  12999. {
  13000. front: {
  13001. height: math.unit(6, "feet"),
  13002. weight: math.unit(150, "lb"),
  13003. name: "Front",
  13004. image: {
  13005. source: "./media/characters/nillia/front.svg",
  13006. extra: 2195 / 2037,
  13007. bottom: 0.005
  13008. }
  13009. },
  13010. back: {
  13011. height: math.unit(6, "feet"),
  13012. weight: math.unit(150, "lb"),
  13013. name: "Back",
  13014. image: {
  13015. source: "./media/characters/nillia/back.svg",
  13016. extra: 2195 / 2037,
  13017. bottom: 0.005
  13018. }
  13019. },
  13020. },
  13021. [
  13022. {
  13023. name: "Canon Height",
  13024. height: math.unit(489, "feet"),
  13025. default: true
  13026. }
  13027. ]
  13028. ))
  13029. characterMakers.push(() => makeCharacter(
  13030. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13031. {
  13032. front: {
  13033. height: math.unit(6, "feet"),
  13034. weight: math.unit(150, "lb"),
  13035. name: "Front",
  13036. image: {
  13037. source: "./media/characters/mesmyriza/front.svg",
  13038. extra: 2067 / 1784,
  13039. bottom: 0.035
  13040. }
  13041. },
  13042. foot: {
  13043. height: math.unit(6 / (250 / 35), "feet"),
  13044. name: "Foot",
  13045. image: {
  13046. source: "./media/characters/mesmyriza/foot.svg"
  13047. }
  13048. },
  13049. },
  13050. [
  13051. {
  13052. name: "Macro",
  13053. height: math.unit(457, "meters"),
  13054. default: true
  13055. },
  13056. {
  13057. name: "Megamacro",
  13058. height: math.unit(8, "megameters")
  13059. },
  13060. ]
  13061. ))
  13062. characterMakers.push(() => makeCharacter(
  13063. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13064. {
  13065. front: {
  13066. height: math.unit(6, "feet"),
  13067. weight: math.unit(250, "lb"),
  13068. name: "Front",
  13069. image: {
  13070. source: "./media/characters/saudade/front.svg",
  13071. extra: 1172 / 1139,
  13072. bottom: 0.035
  13073. }
  13074. },
  13075. },
  13076. [
  13077. {
  13078. name: "Micro",
  13079. height: math.unit(3, "inches")
  13080. },
  13081. {
  13082. name: "Normal",
  13083. height: math.unit(6, "feet"),
  13084. default: true
  13085. },
  13086. {
  13087. name: "Macro",
  13088. height: math.unit(50, "feet")
  13089. },
  13090. {
  13091. name: "Megamacro",
  13092. height: math.unit(2800, "feet")
  13093. },
  13094. ]
  13095. ))
  13096. characterMakers.push(() => makeCharacter(
  13097. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13098. {
  13099. front: {
  13100. height: math.unit(5 + 4 / 12, "feet"),
  13101. weight: math.unit(100, "lb"),
  13102. name: "Front",
  13103. image: {
  13104. source: "./media/characters/keireer/front.svg",
  13105. extra: 716 / 666,
  13106. bottom: 0.05
  13107. }
  13108. },
  13109. },
  13110. [
  13111. {
  13112. name: "Normal",
  13113. height: math.unit(5 + 4 / 12, "feet"),
  13114. default: true
  13115. },
  13116. ]
  13117. ))
  13118. characterMakers.push(() => makeCharacter(
  13119. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13120. {
  13121. front: {
  13122. height: math.unit(6, "feet"),
  13123. weight: math.unit(90, "kg"),
  13124. name: "Front",
  13125. image: {
  13126. source: "./media/characters/mirja/front.svg",
  13127. extra: 1789 / 1683,
  13128. bottom: 0.05
  13129. }
  13130. },
  13131. frontDressed: {
  13132. height: math.unit(6, "feet"),
  13133. weight: math.unit(90, "lb"),
  13134. name: "Front (Dressed)",
  13135. image: {
  13136. source: "./media/characters/mirja/front-dressed.svg",
  13137. extra: 1789 / 1683,
  13138. bottom: 0.05
  13139. }
  13140. },
  13141. back: {
  13142. height: math.unit(6, "feet"),
  13143. weight: math.unit(90, "lb"),
  13144. name: "Back",
  13145. image: {
  13146. source: "./media/characters/mirja/back.svg",
  13147. extra: 953 / 917,
  13148. bottom: 0.017
  13149. }
  13150. },
  13151. },
  13152. [
  13153. {
  13154. name: "\"Incognito\"",
  13155. height: math.unit(3, "meters")
  13156. },
  13157. {
  13158. name: "Strolling Size",
  13159. height: math.unit(15, "km")
  13160. },
  13161. {
  13162. name: "Larger Strolling Size",
  13163. height: math.unit(400, "km")
  13164. },
  13165. {
  13166. name: "Preferred Size",
  13167. height: math.unit(5000, "km")
  13168. },
  13169. {
  13170. name: "True Size",
  13171. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13172. default: true
  13173. },
  13174. ]
  13175. ))
  13176. characterMakers.push(() => makeCharacter(
  13177. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13178. {
  13179. front: {
  13180. height: math.unit(15, "feet"),
  13181. weight: math.unit(880, "kg"),
  13182. name: "Front",
  13183. image: {
  13184. source: "./media/characters/nightraver/front.svg",
  13185. extra: 2444 / 2160,
  13186. bottom: 0.027
  13187. }
  13188. },
  13189. back: {
  13190. height: math.unit(15, "feet"),
  13191. weight: math.unit(880, "kg"),
  13192. name: "Back",
  13193. image: {
  13194. source: "./media/characters/nightraver/back.svg",
  13195. extra: 2309 / 2180,
  13196. bottom: 0.005
  13197. }
  13198. },
  13199. sole: {
  13200. height: math.unit(2.878, "feet"),
  13201. name: "Sole",
  13202. image: {
  13203. source: "./media/characters/nightraver/sole.svg"
  13204. }
  13205. },
  13206. foot: {
  13207. height: math.unit(2.285, "feet"),
  13208. name: "Foot",
  13209. image: {
  13210. source: "./media/characters/nightraver/foot.svg"
  13211. }
  13212. },
  13213. maw: {
  13214. height: math.unit(2.67, "feet"),
  13215. name: "Maw",
  13216. image: {
  13217. source: "./media/characters/nightraver/maw.svg"
  13218. }
  13219. },
  13220. },
  13221. [
  13222. {
  13223. name: "Micro",
  13224. height: math.unit(1, "cm")
  13225. },
  13226. {
  13227. name: "Normal",
  13228. height: math.unit(15, "feet"),
  13229. default: true
  13230. },
  13231. {
  13232. name: "Macro",
  13233. height: math.unit(300, "feet")
  13234. },
  13235. {
  13236. name: "Megamacro",
  13237. height: math.unit(300, "miles")
  13238. },
  13239. {
  13240. name: "Gigamacro",
  13241. height: math.unit(10000, "miles")
  13242. },
  13243. ]
  13244. ))
  13245. characterMakers.push(() => makeCharacter(
  13246. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13247. {
  13248. side: {
  13249. height: math.unit(2, "inches"),
  13250. weight: math.unit(5, "grams"),
  13251. name: "Side",
  13252. image: {
  13253. source: "./media/characters/arc/side.svg"
  13254. }
  13255. },
  13256. },
  13257. [
  13258. {
  13259. name: "Micro",
  13260. height: math.unit(2, "inches"),
  13261. default: true
  13262. },
  13263. ]
  13264. ))
  13265. characterMakers.push(() => makeCharacter(
  13266. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13267. {
  13268. front: {
  13269. height: math.unit(1.1938, "meters"),
  13270. weight: math.unit(54, "kg"),
  13271. name: "Front",
  13272. image: {
  13273. source: "./media/characters/nebula-shahar/front.svg",
  13274. extra: 1642 / 1436,
  13275. bottom: 0.06
  13276. }
  13277. },
  13278. },
  13279. [
  13280. {
  13281. name: "Megamicro",
  13282. height: math.unit(0.3, "mm")
  13283. },
  13284. {
  13285. name: "Micro",
  13286. height: math.unit(3, "cm")
  13287. },
  13288. {
  13289. name: "Normal",
  13290. height: math.unit(138, "cm"),
  13291. default: true
  13292. },
  13293. {
  13294. name: "Macro",
  13295. height: math.unit(30, "m")
  13296. },
  13297. ]
  13298. ))
  13299. characterMakers.push(() => makeCharacter(
  13300. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13301. {
  13302. front: {
  13303. height: math.unit(5.24, "feet"),
  13304. weight: math.unit(150, "lb"),
  13305. name: "Front",
  13306. image: {
  13307. source: "./media/characters/shayla/front.svg",
  13308. extra: 1512 / 1414,
  13309. bottom: 0.01
  13310. }
  13311. },
  13312. back: {
  13313. height: math.unit(5.24, "feet"),
  13314. weight: math.unit(150, "lb"),
  13315. name: "Back",
  13316. image: {
  13317. source: "./media/characters/shayla/back.svg",
  13318. extra: 1512 / 1414
  13319. }
  13320. },
  13321. hand: {
  13322. height: math.unit(0.7781496062992126, "feet"),
  13323. name: "Hand",
  13324. image: {
  13325. source: "./media/characters/shayla/hand.svg"
  13326. }
  13327. },
  13328. foot: {
  13329. height: math.unit(1.4206036745406823, "feet"),
  13330. name: "Foot",
  13331. image: {
  13332. source: "./media/characters/shayla/foot.svg"
  13333. }
  13334. },
  13335. },
  13336. [
  13337. {
  13338. name: "Micro",
  13339. height: math.unit(0.32, "feet")
  13340. },
  13341. {
  13342. name: "Normal",
  13343. height: math.unit(5.24, "feet"),
  13344. default: true
  13345. },
  13346. {
  13347. name: "Macro",
  13348. height: math.unit(492.12, "feet")
  13349. },
  13350. {
  13351. name: "Megamacro",
  13352. height: math.unit(186.41, "miles")
  13353. },
  13354. ]
  13355. ))
  13356. characterMakers.push(() => makeCharacter(
  13357. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13358. {
  13359. front: {
  13360. height: math.unit(2.2, "m"),
  13361. weight: math.unit(120, "kg"),
  13362. name: "Front",
  13363. image: {
  13364. source: "./media/characters/pia-jr/front.svg",
  13365. extra: 1000 / 970,
  13366. bottom: 0.035
  13367. }
  13368. },
  13369. hand: {
  13370. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13371. name: "Hand",
  13372. image: {
  13373. source: "./media/characters/pia-jr/hand.svg"
  13374. }
  13375. },
  13376. paw: {
  13377. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13378. name: "Paw",
  13379. image: {
  13380. source: "./media/characters/pia-jr/paw.svg"
  13381. }
  13382. },
  13383. },
  13384. [
  13385. {
  13386. name: "Micro",
  13387. height: math.unit(1.2, "cm")
  13388. },
  13389. {
  13390. name: "Normal",
  13391. height: math.unit(2.2, "m"),
  13392. default: true
  13393. },
  13394. {
  13395. name: "Macro",
  13396. height: math.unit(180, "m")
  13397. },
  13398. {
  13399. name: "Megamacro",
  13400. height: math.unit(420, "km")
  13401. },
  13402. ]
  13403. ))
  13404. characterMakers.push(() => makeCharacter(
  13405. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13406. {
  13407. front: {
  13408. height: math.unit(2, "m"),
  13409. weight: math.unit(115, "kg"),
  13410. name: "Front",
  13411. image: {
  13412. source: "./media/characters/pia-sr/front.svg",
  13413. extra: 760 / 730,
  13414. bottom: 0.015
  13415. }
  13416. },
  13417. back: {
  13418. height: math.unit(2, "m"),
  13419. weight: math.unit(115, "kg"),
  13420. name: "Back",
  13421. image: {
  13422. source: "./media/characters/pia-sr/back.svg",
  13423. extra: 760 / 730,
  13424. bottom: 0.01
  13425. }
  13426. },
  13427. hand: {
  13428. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13429. name: "Hand",
  13430. image: {
  13431. source: "./media/characters/pia-sr/hand.svg"
  13432. }
  13433. },
  13434. foot: {
  13435. height: math.unit(1.83, "feet"),
  13436. name: "Foot",
  13437. image: {
  13438. source: "./media/characters/pia-sr/foot.svg"
  13439. }
  13440. },
  13441. },
  13442. [
  13443. {
  13444. name: "Micro",
  13445. height: math.unit(88, "mm")
  13446. },
  13447. {
  13448. name: "Normal",
  13449. height: math.unit(2, "m"),
  13450. default: true
  13451. },
  13452. {
  13453. name: "Macro",
  13454. height: math.unit(200, "m")
  13455. },
  13456. {
  13457. name: "Megamacro",
  13458. height: math.unit(420, "km")
  13459. },
  13460. ]
  13461. ))
  13462. characterMakers.push(() => makeCharacter(
  13463. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13464. {
  13465. front: {
  13466. height: math.unit(8 + 2 / 12, "feet"),
  13467. weight: math.unit(300, "lb"),
  13468. name: "Front",
  13469. image: {
  13470. source: "./media/characters/kibibyte/front.svg",
  13471. extra: 2221 / 2098,
  13472. bottom: 0.04
  13473. }
  13474. },
  13475. },
  13476. [
  13477. {
  13478. name: "Normal",
  13479. height: math.unit(8 + 2 / 12, "feet"),
  13480. default: true
  13481. },
  13482. {
  13483. name: "Socialable Macro",
  13484. height: math.unit(50, "feet")
  13485. },
  13486. {
  13487. name: "Macro",
  13488. height: math.unit(300, "feet")
  13489. },
  13490. {
  13491. name: "Megamacro",
  13492. height: math.unit(500, "miles")
  13493. },
  13494. ]
  13495. ))
  13496. characterMakers.push(() => makeCharacter(
  13497. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13498. {
  13499. front: {
  13500. height: math.unit(6, "feet"),
  13501. weight: math.unit(150, "lb"),
  13502. name: "Front",
  13503. image: {
  13504. source: "./media/characters/felix/front.svg",
  13505. extra: 762 / 722,
  13506. bottom: 0.02
  13507. }
  13508. },
  13509. frontClothed: {
  13510. height: math.unit(6, "feet"),
  13511. weight: math.unit(150, "lb"),
  13512. name: "Front (Clothed)",
  13513. image: {
  13514. source: "./media/characters/felix/front-clothed.svg",
  13515. extra: 762 / 722,
  13516. bottom: 0.02
  13517. }
  13518. },
  13519. },
  13520. [
  13521. {
  13522. name: "Normal",
  13523. height: math.unit(6 + 8 / 12, "feet"),
  13524. default: true
  13525. },
  13526. {
  13527. name: "Macro",
  13528. height: math.unit(2600, "feet")
  13529. },
  13530. {
  13531. name: "Megamacro",
  13532. height: math.unit(450, "miles")
  13533. },
  13534. ]
  13535. ))
  13536. characterMakers.push(() => makeCharacter(
  13537. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13538. {
  13539. front: {
  13540. height: math.unit(6 + 1 / 12, "feet"),
  13541. weight: math.unit(250, "lb"),
  13542. name: "Front",
  13543. image: {
  13544. source: "./media/characters/tobo/front.svg",
  13545. extra: 608 / 586,
  13546. bottom: 0.023
  13547. }
  13548. },
  13549. back: {
  13550. height: math.unit(6 + 1 / 12, "feet"),
  13551. weight: math.unit(250, "lb"),
  13552. name: "Back",
  13553. image: {
  13554. source: "./media/characters/tobo/back.svg",
  13555. extra: 608 / 586
  13556. }
  13557. },
  13558. },
  13559. [
  13560. {
  13561. name: "Nano",
  13562. height: math.unit(2, "nm")
  13563. },
  13564. {
  13565. name: "Megamicro",
  13566. height: math.unit(0.1, "mm")
  13567. },
  13568. {
  13569. name: "Micro",
  13570. height: math.unit(1, "inch"),
  13571. default: true
  13572. },
  13573. {
  13574. name: "Human-sized",
  13575. height: math.unit(6 + 1 / 12, "feet")
  13576. },
  13577. {
  13578. name: "Macro",
  13579. height: math.unit(250, "feet")
  13580. },
  13581. {
  13582. name: "Megamacro",
  13583. height: math.unit(75, "miles")
  13584. },
  13585. {
  13586. name: "Texas-sized",
  13587. height: math.unit(750, "miles")
  13588. },
  13589. {
  13590. name: "Teramacro",
  13591. height: math.unit(50000, "miles")
  13592. },
  13593. ]
  13594. ))
  13595. characterMakers.push(() => makeCharacter(
  13596. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13597. {
  13598. front: {
  13599. height: math.unit(6, "feet"),
  13600. weight: math.unit(269, "lb"),
  13601. name: "Front",
  13602. image: {
  13603. source: "./media/characters/danny-kapowsky/front.svg",
  13604. extra: 766 / 736,
  13605. bottom: 0.044
  13606. }
  13607. },
  13608. back: {
  13609. height: math.unit(6, "feet"),
  13610. weight: math.unit(269, "lb"),
  13611. name: "Back",
  13612. image: {
  13613. source: "./media/characters/danny-kapowsky/back.svg",
  13614. extra: 797 / 760,
  13615. bottom: 0.025
  13616. }
  13617. },
  13618. },
  13619. [
  13620. {
  13621. name: "Macro",
  13622. height: math.unit(150, "feet"),
  13623. default: true
  13624. },
  13625. {
  13626. name: "Macro+",
  13627. height: math.unit(200, "feet")
  13628. },
  13629. {
  13630. name: "Macro++",
  13631. height: math.unit(300, "feet")
  13632. },
  13633. {
  13634. name: "Macro+++",
  13635. height: math.unit(400, "feet")
  13636. },
  13637. ]
  13638. ))
  13639. characterMakers.push(() => makeCharacter(
  13640. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13641. {
  13642. side: {
  13643. height: math.unit(6, "feet"),
  13644. weight: math.unit(170, "lb"),
  13645. name: "Side",
  13646. image: {
  13647. source: "./media/characters/finn/side.svg",
  13648. extra: 1953 / 1807,
  13649. bottom: 0.057
  13650. }
  13651. },
  13652. },
  13653. [
  13654. {
  13655. name: "Megamacro",
  13656. height: math.unit(14445, "feet"),
  13657. default: true
  13658. },
  13659. ]
  13660. ))
  13661. characterMakers.push(() => makeCharacter(
  13662. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13663. {
  13664. front: {
  13665. height: math.unit(5 + 6 / 12, "feet"),
  13666. weight: math.unit(125, "lb"),
  13667. name: "Front",
  13668. image: {
  13669. source: "./media/characters/roy/front.svg",
  13670. extra: 1,
  13671. bottom: 0.11
  13672. }
  13673. },
  13674. },
  13675. [
  13676. {
  13677. name: "Micro",
  13678. height: math.unit(3, "inches"),
  13679. default: true
  13680. },
  13681. {
  13682. name: "Normal",
  13683. height: math.unit(5 + 6 / 12, "feet")
  13684. },
  13685. {
  13686. name: "Lesser Macro",
  13687. height: math.unit(60, "feet")
  13688. },
  13689. {
  13690. name: "Greater Macro",
  13691. height: math.unit(120, "feet")
  13692. },
  13693. ]
  13694. ))
  13695. characterMakers.push(() => makeCharacter(
  13696. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  13697. {
  13698. front: {
  13699. height: math.unit(6, "feet"),
  13700. weight: math.unit(100, "lb"),
  13701. name: "Front",
  13702. image: {
  13703. source: "./media/characters/aevsivs/front.svg",
  13704. extra: 1,
  13705. bottom: 0.03
  13706. }
  13707. },
  13708. back: {
  13709. height: math.unit(6, "feet"),
  13710. weight: math.unit(100, "lb"),
  13711. name: "Back",
  13712. image: {
  13713. source: "./media/characters/aevsivs/back.svg"
  13714. }
  13715. },
  13716. },
  13717. [
  13718. {
  13719. name: "Micro",
  13720. height: math.unit(2, "inches"),
  13721. default: true
  13722. },
  13723. {
  13724. name: "Normal",
  13725. height: math.unit(5, "feet")
  13726. },
  13727. ]
  13728. ))
  13729. characterMakers.push(() => makeCharacter(
  13730. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  13731. {
  13732. front: {
  13733. height: math.unit(5 + 7 / 12, "feet"),
  13734. weight: math.unit(159, "lb"),
  13735. name: "Front",
  13736. image: {
  13737. source: "./media/characters/hildegard/front.svg",
  13738. extra: 312 / 286,
  13739. bottom: 0.005
  13740. }
  13741. },
  13742. },
  13743. [
  13744. {
  13745. name: "Normal",
  13746. height: math.unit(5 + 7 / 12, "feet"),
  13747. default: true
  13748. },
  13749. ]
  13750. ))
  13751. characterMakers.push(() => makeCharacter(
  13752. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  13753. {
  13754. bernard: {
  13755. height: math.unit(2 + 7 / 12, "feet"),
  13756. weight: math.unit(66, "lb"),
  13757. name: "Bernard",
  13758. rename: true,
  13759. image: {
  13760. source: "./media/characters/bernard-wilder/bernard.svg",
  13761. extra: 192 / 128,
  13762. bottom: 0.05
  13763. }
  13764. },
  13765. wilder: {
  13766. height: math.unit(5 + 8 / 12, "feet"),
  13767. weight: math.unit(143, "lb"),
  13768. name: "Wilder",
  13769. rename: true,
  13770. image: {
  13771. source: "./media/characters/bernard-wilder/wilder.svg",
  13772. extra: 361 / 312,
  13773. bottom: 0.02
  13774. }
  13775. },
  13776. },
  13777. [
  13778. {
  13779. name: "Normal",
  13780. height: math.unit(2 + 7 / 12, "feet"),
  13781. default: true
  13782. },
  13783. ]
  13784. ))
  13785. characterMakers.push(() => makeCharacter(
  13786. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  13787. {
  13788. anthro: {
  13789. height: math.unit(6 + 1 / 12, "feet"),
  13790. weight: math.unit(155, "lb"),
  13791. name: "Anthro",
  13792. image: {
  13793. source: "./media/characters/hearth/anthro.svg",
  13794. extra: 260 / 250,
  13795. bottom: 0.02
  13796. }
  13797. },
  13798. feral: {
  13799. height: math.unit(3.78, "feet"),
  13800. weight: math.unit(35, "kg"),
  13801. name: "Feral",
  13802. image: {
  13803. source: "./media/characters/hearth/feral.svg",
  13804. extra: 153 / 135,
  13805. bottom: 0.03
  13806. }
  13807. },
  13808. },
  13809. [
  13810. {
  13811. name: "Normal",
  13812. height: math.unit(6 + 1 / 12, "feet"),
  13813. default: true
  13814. },
  13815. ]
  13816. ))
  13817. characterMakers.push(() => makeCharacter(
  13818. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  13819. {
  13820. front: {
  13821. height: math.unit(6, "feet"),
  13822. weight: math.unit(182, "lb"),
  13823. name: "Front",
  13824. image: {
  13825. source: "./media/characters/ingrid/front.svg",
  13826. extra: 294 / 268,
  13827. bottom: 0.027
  13828. }
  13829. },
  13830. },
  13831. [
  13832. {
  13833. name: "Normal",
  13834. height: math.unit(6, "feet"),
  13835. default: true
  13836. },
  13837. ]
  13838. ))
  13839. characterMakers.push(() => makeCharacter(
  13840. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  13841. {
  13842. eevee: {
  13843. height: math.unit(2 + 10 / 12, "feet"),
  13844. weight: math.unit(86, "lb"),
  13845. name: "Malgam",
  13846. image: {
  13847. source: "./media/characters/malgam/eevee.svg",
  13848. extra: 218 / 180,
  13849. bottom: 0.2
  13850. }
  13851. },
  13852. sylveon: {
  13853. height: math.unit(4, "feet"),
  13854. weight: math.unit(101, "lb"),
  13855. name: "Future Malgam",
  13856. rename: true,
  13857. image: {
  13858. source: "./media/characters/malgam/sylveon.svg",
  13859. extra: 371 / 325,
  13860. bottom: 0.015
  13861. }
  13862. },
  13863. gigantamax: {
  13864. height: math.unit(50, "feet"),
  13865. name: "Gigantamax Malgam",
  13866. rename: true,
  13867. image: {
  13868. source: "./media/characters/malgam/gigantamax.svg"
  13869. }
  13870. },
  13871. },
  13872. [
  13873. {
  13874. name: "Normal",
  13875. height: math.unit(2 + 10 / 12, "feet"),
  13876. default: true
  13877. },
  13878. ]
  13879. ))
  13880. characterMakers.push(() => makeCharacter(
  13881. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  13882. {
  13883. front: {
  13884. height: math.unit(5 + 11 / 12, "feet"),
  13885. weight: math.unit(188, "lb"),
  13886. name: "Front",
  13887. image: {
  13888. source: "./media/characters/fleur/front.svg",
  13889. extra: 309 / 283,
  13890. bottom: 0.007
  13891. }
  13892. },
  13893. },
  13894. [
  13895. {
  13896. name: "Normal",
  13897. height: math.unit(5 + 11 / 12, "feet"),
  13898. default: true
  13899. },
  13900. ]
  13901. ))
  13902. characterMakers.push(() => makeCharacter(
  13903. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  13904. {
  13905. front: {
  13906. height: math.unit(5 + 4 / 12, "feet"),
  13907. weight: math.unit(122, "lb"),
  13908. name: "Front",
  13909. image: {
  13910. source: "./media/characters/jude/front.svg",
  13911. extra: 288 / 273,
  13912. bottom: 0.03
  13913. }
  13914. },
  13915. },
  13916. [
  13917. {
  13918. name: "Normal",
  13919. height: math.unit(5 + 4 / 12, "feet"),
  13920. default: true
  13921. },
  13922. ]
  13923. ))
  13924. characterMakers.push(() => makeCharacter(
  13925. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  13926. {
  13927. front: {
  13928. height: math.unit(5 + 11 / 12, "feet"),
  13929. weight: math.unit(190, "lb"),
  13930. name: "Front",
  13931. image: {
  13932. source: "./media/characters/seara/front.svg",
  13933. extra: 1,
  13934. bottom: 0.05
  13935. }
  13936. },
  13937. },
  13938. [
  13939. {
  13940. name: "Normal",
  13941. height: math.unit(5 + 11 / 12, "feet"),
  13942. default: true
  13943. },
  13944. ]
  13945. ))
  13946. characterMakers.push(() => makeCharacter(
  13947. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  13948. {
  13949. front: {
  13950. height: math.unit(16 + 5 / 12, "feet"),
  13951. weight: math.unit(524, "lb"),
  13952. name: "Front",
  13953. image: {
  13954. source: "./media/characters/caspian/front.svg",
  13955. extra: 1,
  13956. bottom: 0.04
  13957. }
  13958. },
  13959. },
  13960. [
  13961. {
  13962. name: "Normal",
  13963. height: math.unit(16 + 5 / 12, "feet"),
  13964. default: true
  13965. },
  13966. ]
  13967. ))
  13968. characterMakers.push(() => makeCharacter(
  13969. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  13970. {
  13971. front: {
  13972. height: math.unit(5 + 7 / 12, "feet"),
  13973. weight: math.unit(170, "lb"),
  13974. name: "Front",
  13975. image: {
  13976. source: "./media/characters/mika/front.svg",
  13977. extra: 1,
  13978. bottom: 0.016
  13979. }
  13980. },
  13981. },
  13982. [
  13983. {
  13984. name: "Normal",
  13985. height: math.unit(5 + 7 / 12, "feet"),
  13986. default: true
  13987. },
  13988. ]
  13989. ))
  13990. characterMakers.push(() => makeCharacter(
  13991. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  13992. {
  13993. front: {
  13994. height: math.unit(6 + 2 / 12, "feet"),
  13995. weight: math.unit(268, "lb"),
  13996. name: "Front",
  13997. image: {
  13998. source: "./media/characters/sol/front.svg",
  13999. extra: 247 / 231,
  14000. bottom: 0.05
  14001. }
  14002. },
  14003. },
  14004. [
  14005. {
  14006. name: "Normal",
  14007. height: math.unit(6 + 2 / 12, "feet"),
  14008. default: true
  14009. },
  14010. ]
  14011. ))
  14012. characterMakers.push(() => makeCharacter(
  14013. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14014. {
  14015. buizel: {
  14016. height: math.unit(2 + 5 / 12, "feet"),
  14017. weight: math.unit(87, "lb"),
  14018. name: "Buizel",
  14019. image: {
  14020. source: "./media/characters/umiko/buizel.svg",
  14021. extra: 172 / 157,
  14022. bottom: 0.01
  14023. }
  14024. },
  14025. floatzel: {
  14026. height: math.unit(5 + 9 / 12, "feet"),
  14027. weight: math.unit(250, "lb"),
  14028. name: "Floatzel",
  14029. image: {
  14030. source: "./media/characters/umiko/floatzel.svg",
  14031. extra: 262 / 248
  14032. }
  14033. },
  14034. },
  14035. [
  14036. {
  14037. name: "Normal",
  14038. height: math.unit(2 + 5 / 12, "feet"),
  14039. default: true
  14040. },
  14041. ]
  14042. ))
  14043. characterMakers.push(() => makeCharacter(
  14044. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14045. {
  14046. front: {
  14047. height: math.unit(6 + 2 / 12, "feet"),
  14048. weight: math.unit(146, "lb"),
  14049. name: "Front",
  14050. image: {
  14051. source: "./media/characters/iliac/front.svg",
  14052. extra: 389 / 365,
  14053. bottom: 0.035
  14054. }
  14055. },
  14056. },
  14057. [
  14058. {
  14059. name: "Normal",
  14060. height: math.unit(6 + 2 / 12, "feet"),
  14061. default: true
  14062. },
  14063. ]
  14064. ))
  14065. characterMakers.push(() => makeCharacter(
  14066. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14067. {
  14068. front: {
  14069. height: math.unit(6, "feet"),
  14070. weight: math.unit(170, "lb"),
  14071. name: "Front",
  14072. image: {
  14073. source: "./media/characters/topaz/front.svg",
  14074. extra: 317 / 303,
  14075. bottom: 0.055
  14076. }
  14077. },
  14078. },
  14079. [
  14080. {
  14081. name: "Normal",
  14082. height: math.unit(6, "feet"),
  14083. default: true
  14084. },
  14085. ]
  14086. ))
  14087. characterMakers.push(() => makeCharacter(
  14088. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14089. {
  14090. front: {
  14091. height: math.unit(5 + 11 / 12, "feet"),
  14092. weight: math.unit(144, "lb"),
  14093. name: "Front",
  14094. image: {
  14095. source: "./media/characters/gabriel/front.svg",
  14096. extra: 285 / 262,
  14097. bottom: 0.004
  14098. }
  14099. },
  14100. },
  14101. [
  14102. {
  14103. name: "Normal",
  14104. height: math.unit(5 + 11 / 12, "feet"),
  14105. default: true
  14106. },
  14107. ]
  14108. ))
  14109. characterMakers.push(() => makeCharacter(
  14110. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14111. {
  14112. side: {
  14113. height: math.unit(6 + 5 / 12, "feet"),
  14114. weight: math.unit(300, "lb"),
  14115. name: "Side",
  14116. image: {
  14117. source: "./media/characters/tempest-suicune/side.svg",
  14118. extra: 195 / 154,
  14119. bottom: 0.04
  14120. }
  14121. },
  14122. },
  14123. [
  14124. {
  14125. name: "Normal",
  14126. height: math.unit(6 + 5 / 12, "feet"),
  14127. default: true
  14128. },
  14129. ]
  14130. ))
  14131. characterMakers.push(() => makeCharacter(
  14132. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14133. {
  14134. front: {
  14135. height: math.unit(7 + 2 / 12, "feet"),
  14136. weight: math.unit(322, "lb"),
  14137. name: "Front",
  14138. image: {
  14139. source: "./media/characters/vulcan/front.svg",
  14140. extra: 154 / 147,
  14141. bottom: 0.04
  14142. }
  14143. },
  14144. },
  14145. [
  14146. {
  14147. name: "Normal",
  14148. height: math.unit(7 + 2 / 12, "feet"),
  14149. default: true
  14150. },
  14151. ]
  14152. ))
  14153. characterMakers.push(() => makeCharacter(
  14154. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14155. {
  14156. front: {
  14157. height: math.unit(5 + 10 / 12, "feet"),
  14158. weight: math.unit(264, "lb"),
  14159. name: "Front",
  14160. image: {
  14161. source: "./media/characters/gault/front.svg",
  14162. extra: 161 / 140,
  14163. bottom: 0.028
  14164. }
  14165. },
  14166. },
  14167. [
  14168. {
  14169. name: "Normal",
  14170. height: math.unit(5 + 10 / 12, "feet"),
  14171. default: true
  14172. },
  14173. ]
  14174. ))
  14175. characterMakers.push(() => makeCharacter(
  14176. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14177. {
  14178. front: {
  14179. height: math.unit(6, "feet"),
  14180. weight: math.unit(150, "lb"),
  14181. name: "Front",
  14182. image: {
  14183. source: "./media/characters/shard/front.svg",
  14184. extra: 273 / 238,
  14185. bottom: 0.02
  14186. }
  14187. },
  14188. },
  14189. [
  14190. {
  14191. name: "Normal",
  14192. height: math.unit(3 + 6 / 12, "feet"),
  14193. default: true
  14194. },
  14195. ]
  14196. ))
  14197. characterMakers.push(() => makeCharacter(
  14198. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14199. {
  14200. front: {
  14201. height: math.unit(5 + 11 / 12, "feet"),
  14202. weight: math.unit(146, "lb"),
  14203. name: "Front",
  14204. image: {
  14205. source: "./media/characters/ashe/front.svg",
  14206. extra: 400 / 373,
  14207. bottom: 0.01
  14208. }
  14209. },
  14210. },
  14211. [
  14212. {
  14213. name: "Normal",
  14214. height: math.unit(5 + 11 / 12, "feet"),
  14215. default: true
  14216. },
  14217. ]
  14218. ))
  14219. characterMakers.push(() => makeCharacter(
  14220. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14221. {
  14222. front: {
  14223. height: math.unit(5 + 5 / 12, "feet"),
  14224. weight: math.unit(135, "lb"),
  14225. name: "Front",
  14226. image: {
  14227. source: "./media/characters/beatrix/front.svg",
  14228. extra: 392 / 379,
  14229. bottom: 0.01
  14230. }
  14231. },
  14232. },
  14233. [
  14234. {
  14235. name: "Normal",
  14236. height: math.unit(6, "feet"),
  14237. default: true
  14238. },
  14239. ]
  14240. ))
  14241. characterMakers.push(() => makeCharacter(
  14242. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14243. {
  14244. front: {
  14245. height: math.unit(6, "feet"),
  14246. weight: math.unit(150, "lb"),
  14247. name: "Front",
  14248. image: {
  14249. source: "./media/characters/ignatius/front.svg",
  14250. extra: 245 / 222,
  14251. bottom: 0.01
  14252. }
  14253. },
  14254. },
  14255. [
  14256. {
  14257. name: "Normal",
  14258. height: math.unit(5 + 5 / 12, "feet"),
  14259. default: true
  14260. },
  14261. ]
  14262. ))
  14263. characterMakers.push(() => makeCharacter(
  14264. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14265. {
  14266. front: {
  14267. height: math.unit(6 + 2 / 12, "feet"),
  14268. weight: math.unit(138, "lb"),
  14269. name: "Front",
  14270. image: {
  14271. source: "./media/characters/mei-li/front.svg",
  14272. extra: 237 / 229,
  14273. bottom: 0.03
  14274. }
  14275. },
  14276. },
  14277. [
  14278. {
  14279. name: "Normal",
  14280. height: math.unit(6 + 2 / 12, "feet"),
  14281. default: true
  14282. },
  14283. ]
  14284. ))
  14285. characterMakers.push(() => makeCharacter(
  14286. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14287. {
  14288. front: {
  14289. height: math.unit(2 + 4 / 12, "feet"),
  14290. weight: math.unit(62, "lb"),
  14291. name: "Front",
  14292. image: {
  14293. source: "./media/characters/puru/front.svg",
  14294. extra: 206 / 149,
  14295. bottom: 0.06
  14296. }
  14297. },
  14298. },
  14299. [
  14300. {
  14301. name: "Normal",
  14302. height: math.unit(2 + 4 / 12, "feet"),
  14303. default: true
  14304. },
  14305. ]
  14306. ))
  14307. characterMakers.push(() => makeCharacter(
  14308. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14309. {
  14310. taur: {
  14311. height: math.unit(11, "feet"),
  14312. weight: math.unit(500, "lb"),
  14313. name: "Taur",
  14314. image: {
  14315. source: "./media/characters/kee/taur.svg",
  14316. extra: 1,
  14317. bottom: 0.04
  14318. }
  14319. },
  14320. },
  14321. [
  14322. {
  14323. name: "Normal",
  14324. height: math.unit(11, "feet"),
  14325. default: true
  14326. },
  14327. ]
  14328. ))
  14329. characterMakers.push(() => makeCharacter(
  14330. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14331. {
  14332. anthro: {
  14333. height: math.unit(7, "feet"),
  14334. weight: math.unit(190, "lb"),
  14335. name: "Anthro",
  14336. image: {
  14337. source: "./media/characters/cobalt-dracha/anthro.svg",
  14338. extra: 231 / 225,
  14339. bottom: 0.04
  14340. }
  14341. },
  14342. feral: {
  14343. height: math.unit(9 + 7 / 12, "feet"),
  14344. weight: math.unit(294, "lb"),
  14345. name: "Feral",
  14346. image: {
  14347. source: "./media/characters/cobalt-dracha/feral.svg",
  14348. extra: 692 / 633,
  14349. bottom: 0.05
  14350. }
  14351. },
  14352. },
  14353. [
  14354. {
  14355. name: "Normal",
  14356. height: math.unit(7, "feet"),
  14357. default: true
  14358. },
  14359. ]
  14360. ))
  14361. characterMakers.push(() => makeCharacter(
  14362. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14363. {
  14364. fallen: {
  14365. height: math.unit(11 + 8 / 12, "feet"),
  14366. weight: math.unit(485, "lb"),
  14367. name: "Java (Fallen)",
  14368. rename: true,
  14369. image: {
  14370. source: "./media/characters/java/fallen.svg",
  14371. extra: 226 / 208,
  14372. bottom: 0.005
  14373. }
  14374. },
  14375. godkin: {
  14376. height: math.unit(10 + 6 / 12, "feet"),
  14377. weight: math.unit(328, "lb"),
  14378. name: "Java (Godkin)",
  14379. rename: true,
  14380. image: {
  14381. source: "./media/characters/java/godkin.svg",
  14382. extra: 270 / 262,
  14383. bottom: 0.02
  14384. }
  14385. },
  14386. },
  14387. [
  14388. {
  14389. name: "Normal",
  14390. height: math.unit(11 + 8 / 12, "feet"),
  14391. default: true
  14392. },
  14393. ]
  14394. ))
  14395. characterMakers.push(() => makeCharacter(
  14396. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14397. {
  14398. front: {
  14399. height: math.unit(7 + 8 / 12, "feet"),
  14400. weight: math.unit(320, "lb"),
  14401. name: "Front",
  14402. image: {
  14403. source: "./media/characters/skoll/front.svg",
  14404. extra: 232 / 220,
  14405. bottom: 0.02
  14406. }
  14407. },
  14408. },
  14409. [
  14410. {
  14411. name: "Normal",
  14412. height: math.unit(7 + 8 / 12, "feet"),
  14413. default: true
  14414. },
  14415. ]
  14416. ))
  14417. characterMakers.push(() => makeCharacter(
  14418. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14419. {
  14420. front: {
  14421. height: math.unit(5 + 9 / 12, "feet"),
  14422. weight: math.unit(170, "lb"),
  14423. name: "Front",
  14424. image: {
  14425. source: "./media/characters/purna/front.svg",
  14426. extra: 239 / 229,
  14427. bottom: 0.01
  14428. }
  14429. },
  14430. },
  14431. [
  14432. {
  14433. name: "Normal",
  14434. height: math.unit(5 + 9 / 12, "feet"),
  14435. default: true
  14436. },
  14437. ]
  14438. ))
  14439. characterMakers.push(() => makeCharacter(
  14440. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14441. {
  14442. front: {
  14443. height: math.unit(5 + 9 / 12, "feet"),
  14444. weight: math.unit(142, "lb"),
  14445. name: "Front",
  14446. image: {
  14447. source: "./media/characters/kuva/front.svg",
  14448. extra: 281 / 271,
  14449. bottom: 0.006
  14450. }
  14451. },
  14452. },
  14453. [
  14454. {
  14455. name: "Normal",
  14456. height: math.unit(5 + 9 / 12, "feet"),
  14457. default: true
  14458. },
  14459. ]
  14460. ))
  14461. characterMakers.push(() => makeCharacter(
  14462. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14463. {
  14464. anthro: {
  14465. height: math.unit(9 + 2 / 12, "feet"),
  14466. weight: math.unit(270, "lb"),
  14467. name: "Anthro",
  14468. image: {
  14469. source: "./media/characters/embra/anthro.svg",
  14470. extra: 200 / 187,
  14471. bottom: 0.02
  14472. }
  14473. },
  14474. feral: {
  14475. height: math.unit(18 + 8 / 12, "feet"),
  14476. weight: math.unit(576, "lb"),
  14477. name: "Feral",
  14478. image: {
  14479. source: "./media/characters/embra/feral.svg",
  14480. extra: 152 / 137,
  14481. bottom: 0.037
  14482. }
  14483. },
  14484. },
  14485. [
  14486. {
  14487. name: "Normal",
  14488. height: math.unit(9 + 2 / 12, "feet"),
  14489. default: true
  14490. },
  14491. ]
  14492. ))
  14493. characterMakers.push(() => makeCharacter(
  14494. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14495. {
  14496. anthro: {
  14497. height: math.unit(10 + 9 / 12, "feet"),
  14498. weight: math.unit(224, "lb"),
  14499. name: "Anthro",
  14500. image: {
  14501. source: "./media/characters/grottos/anthro.svg",
  14502. extra: 350 / 332,
  14503. bottom: 0.045
  14504. }
  14505. },
  14506. feral: {
  14507. height: math.unit(20 + 7 / 12, "feet"),
  14508. weight: math.unit(629, "lb"),
  14509. name: "Feral",
  14510. image: {
  14511. source: "./media/characters/grottos/feral.svg",
  14512. extra: 207 / 190,
  14513. bottom: 0.05
  14514. }
  14515. },
  14516. },
  14517. [
  14518. {
  14519. name: "Normal",
  14520. height: math.unit(10 + 9 / 12, "feet"),
  14521. default: true
  14522. },
  14523. ]
  14524. ))
  14525. characterMakers.push(() => makeCharacter(
  14526. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14527. {
  14528. anthro: {
  14529. height: math.unit(9 + 6 / 12, "feet"),
  14530. weight: math.unit(298, "lb"),
  14531. name: "Anthro",
  14532. image: {
  14533. source: "./media/characters/frifna/anthro.svg",
  14534. extra: 282 / 269,
  14535. bottom: 0.015
  14536. }
  14537. },
  14538. feral: {
  14539. height: math.unit(16 + 2 / 12, "feet"),
  14540. weight: math.unit(624, "lb"),
  14541. name: "Feral",
  14542. image: {
  14543. source: "./media/characters/frifna/feral.svg"
  14544. }
  14545. },
  14546. },
  14547. [
  14548. {
  14549. name: "Normal",
  14550. height: math.unit(9 + 6 / 12, "feet"),
  14551. default: true
  14552. },
  14553. ]
  14554. ))
  14555. characterMakers.push(() => makeCharacter(
  14556. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14557. {
  14558. front: {
  14559. height: math.unit(6 + 2 / 12, "feet"),
  14560. weight: math.unit(168, "lb"),
  14561. name: "Front",
  14562. image: {
  14563. source: "./media/characters/elise/front.svg",
  14564. extra: 276 / 271
  14565. }
  14566. },
  14567. },
  14568. [
  14569. {
  14570. name: "Normal",
  14571. height: math.unit(6 + 2 / 12, "feet"),
  14572. default: true
  14573. },
  14574. ]
  14575. ))
  14576. characterMakers.push(() => makeCharacter(
  14577. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14578. {
  14579. front: {
  14580. height: math.unit(5 + 10 / 12, "feet"),
  14581. weight: math.unit(210, "lb"),
  14582. name: "Front",
  14583. image: {
  14584. source: "./media/characters/glade/front.svg",
  14585. extra: 258 / 247,
  14586. bottom: 0.008
  14587. }
  14588. },
  14589. },
  14590. [
  14591. {
  14592. name: "Normal",
  14593. height: math.unit(5 + 10 / 12, "feet"),
  14594. default: true
  14595. },
  14596. ]
  14597. ))
  14598. characterMakers.push(() => makeCharacter(
  14599. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14600. {
  14601. front: {
  14602. height: math.unit(5 + 10 / 12, "feet"),
  14603. weight: math.unit(129, "lb"),
  14604. name: "Front",
  14605. image: {
  14606. source: "./media/characters/rina/front.svg",
  14607. extra: 266 / 255,
  14608. bottom: 0.005
  14609. }
  14610. },
  14611. },
  14612. [
  14613. {
  14614. name: "Normal",
  14615. height: math.unit(5 + 10 / 12, "feet"),
  14616. default: true
  14617. },
  14618. ]
  14619. ))
  14620. characterMakers.push(() => makeCharacter(
  14621. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14622. {
  14623. front: {
  14624. height: math.unit(6 + 1 / 12, "feet"),
  14625. weight: math.unit(192, "lb"),
  14626. name: "Front",
  14627. image: {
  14628. source: "./media/characters/veronica/front.svg",
  14629. extra: 319 / 309,
  14630. bottom: 0.005
  14631. }
  14632. },
  14633. },
  14634. [
  14635. {
  14636. name: "Normal",
  14637. height: math.unit(6 + 1 / 12, "feet"),
  14638. default: true
  14639. },
  14640. ]
  14641. ))
  14642. characterMakers.push(() => makeCharacter(
  14643. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14644. {
  14645. front: {
  14646. height: math.unit(9 + 3 / 12, "feet"),
  14647. weight: math.unit(1100, "lb"),
  14648. name: "Front",
  14649. image: {
  14650. source: "./media/characters/braxton/front.svg",
  14651. extra: 1057 / 984,
  14652. bottom: 0.05
  14653. }
  14654. },
  14655. },
  14656. [
  14657. {
  14658. name: "Normal",
  14659. height: math.unit(9 + 3 / 12, "feet")
  14660. },
  14661. {
  14662. name: "Giant",
  14663. height: math.unit(300, "feet"),
  14664. default: true
  14665. },
  14666. {
  14667. name: "Macro",
  14668. height: math.unit(700, "feet")
  14669. },
  14670. {
  14671. name: "Megamacro",
  14672. height: math.unit(6000, "feet")
  14673. },
  14674. ]
  14675. ))
  14676. characterMakers.push(() => makeCharacter(
  14677. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14678. {
  14679. front: {
  14680. height: math.unit(6 + 7 / 12, "feet"),
  14681. weight: math.unit(150, "lb"),
  14682. name: "Front",
  14683. image: {
  14684. source: "./media/characters/blue-feyonics/front.svg",
  14685. extra: 1403 / 1306,
  14686. bottom: 0.047
  14687. }
  14688. },
  14689. },
  14690. [
  14691. {
  14692. name: "Normal",
  14693. height: math.unit(6 + 7 / 12, "feet"),
  14694. default: true
  14695. },
  14696. ]
  14697. ))
  14698. characterMakers.push(() => makeCharacter(
  14699. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  14700. {
  14701. front: {
  14702. height: math.unit(1.8, "meters"),
  14703. weight: math.unit(60, "kg"),
  14704. name: "Front",
  14705. image: {
  14706. source: "./media/characters/maxwell/front.svg",
  14707. extra: 2060 / 1873
  14708. }
  14709. },
  14710. },
  14711. [
  14712. {
  14713. name: "Micro",
  14714. height: math.unit(1, "mm")
  14715. },
  14716. {
  14717. name: "Normal",
  14718. height: math.unit(1.8, "meter"),
  14719. default: true
  14720. },
  14721. {
  14722. name: "Macro",
  14723. height: math.unit(30, "meters")
  14724. },
  14725. {
  14726. name: "Megamacro",
  14727. height: math.unit(10, "km")
  14728. },
  14729. ]
  14730. ))
  14731. characterMakers.push(() => makeCharacter(
  14732. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  14733. {
  14734. front: {
  14735. height: math.unit(6, "feet"),
  14736. weight: math.unit(150, "lb"),
  14737. name: "Front",
  14738. image: {
  14739. source: "./media/characters/jack/front.svg",
  14740. extra: 1754 / 1640,
  14741. bottom: 0.01
  14742. }
  14743. },
  14744. },
  14745. [
  14746. {
  14747. name: "Normal",
  14748. height: math.unit(80000, "feet"),
  14749. default: true
  14750. },
  14751. {
  14752. name: "Max size",
  14753. height: math.unit(10, "lightyears")
  14754. },
  14755. ]
  14756. ))
  14757. characterMakers.push(() => makeCharacter(
  14758. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  14759. {
  14760. upright: {
  14761. height: math.unit(7, "feet"),
  14762. weight: math.unit(170, "lb"),
  14763. name: "Upright",
  14764. image: {
  14765. source: "./media/characters/cafat/upright.svg",
  14766. bottom: 0.01
  14767. }
  14768. },
  14769. uprightFull: {
  14770. height: math.unit(7, "feet"),
  14771. weight: math.unit(170, "lb"),
  14772. name: "Upright (Full)",
  14773. image: {
  14774. source: "./media/characters/cafat/upright-full.svg",
  14775. bottom: 0.01
  14776. }
  14777. },
  14778. side: {
  14779. height: math.unit(5, "feet"),
  14780. weight: math.unit(150, "lb"),
  14781. name: "Side",
  14782. image: {
  14783. source: "./media/characters/cafat/side.svg"
  14784. }
  14785. },
  14786. },
  14787. [
  14788. {
  14789. name: "Small",
  14790. height: math.unit(7, "feet"),
  14791. default: true
  14792. },
  14793. {
  14794. name: "Large",
  14795. height: math.unit(15.5, "feet")
  14796. },
  14797. ]
  14798. ))
  14799. characterMakers.push(() => makeCharacter(
  14800. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  14801. {
  14802. front: {
  14803. height: math.unit(6, "feet"),
  14804. weight: math.unit(150, "lb"),
  14805. name: "Front",
  14806. image: {
  14807. source: "./media/characters/verin-raharra/front.svg",
  14808. extra: 5019 / 4835,
  14809. bottom: 0.023
  14810. }
  14811. },
  14812. },
  14813. [
  14814. {
  14815. name: "Normal",
  14816. height: math.unit(7 + 5 / 12, "feet"),
  14817. default: true
  14818. },
  14819. {
  14820. name: "Upsized",
  14821. height: math.unit(20, "feet")
  14822. },
  14823. ]
  14824. ))
  14825. characterMakers.push(() => makeCharacter(
  14826. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  14827. {
  14828. front: {
  14829. height: math.unit(7, "feet"),
  14830. weight: math.unit(230, "lb"),
  14831. name: "Front",
  14832. image: {
  14833. source: "./media/characters/nakata/front.svg",
  14834. extra: 1.005,
  14835. bottom: 0.01
  14836. }
  14837. },
  14838. },
  14839. [
  14840. {
  14841. name: "Normal",
  14842. height: math.unit(7, "feet"),
  14843. default: true
  14844. },
  14845. {
  14846. name: "Big",
  14847. height: math.unit(14, "feet")
  14848. },
  14849. {
  14850. name: "Macro",
  14851. height: math.unit(400, "feet")
  14852. },
  14853. ]
  14854. ))
  14855. characterMakers.push(() => makeCharacter(
  14856. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  14857. {
  14858. front: {
  14859. height: math.unit(4.91, "feet"),
  14860. weight: math.unit(100, "lb"),
  14861. name: "Front",
  14862. image: {
  14863. source: "./media/characters/lily/front.svg",
  14864. extra: 1585 / 1415,
  14865. bottom: 0.02
  14866. }
  14867. },
  14868. },
  14869. [
  14870. {
  14871. name: "Normal",
  14872. height: math.unit(4.91, "feet"),
  14873. default: true
  14874. },
  14875. ]
  14876. ))
  14877. characterMakers.push(() => makeCharacter(
  14878. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  14879. {
  14880. laying: {
  14881. height: math.unit(4 + 4 / 12, "feet"),
  14882. weight: math.unit(600, "lb"),
  14883. name: "Laying",
  14884. image: {
  14885. source: "./media/characters/sheila/laying.svg",
  14886. extra: 1333 / 1265,
  14887. bottom: 0.16
  14888. }
  14889. },
  14890. },
  14891. [
  14892. {
  14893. name: "Normal",
  14894. height: math.unit(4 + 4 / 12, "feet"),
  14895. default: true
  14896. },
  14897. ]
  14898. ))
  14899. characterMakers.push(() => makeCharacter(
  14900. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  14901. {
  14902. front: {
  14903. height: math.unit(6, "feet"),
  14904. weight: math.unit(190, "lb"),
  14905. name: "Front",
  14906. image: {
  14907. source: "./media/characters/sax/front.svg",
  14908. extra: 1187 / 973,
  14909. bottom: 0.042
  14910. }
  14911. },
  14912. },
  14913. [
  14914. {
  14915. name: "Micro",
  14916. height: math.unit(4, "inches"),
  14917. default: true
  14918. },
  14919. ]
  14920. ))
  14921. characterMakers.push(() => makeCharacter(
  14922. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  14923. {
  14924. front: {
  14925. height: math.unit(6, "feet"),
  14926. weight: math.unit(150, "lb"),
  14927. name: "Front",
  14928. image: {
  14929. source: "./media/characters/pandora/front.svg",
  14930. extra: 2720 / 2556,
  14931. bottom: 0.015
  14932. }
  14933. },
  14934. back: {
  14935. height: math.unit(6, "feet"),
  14936. weight: math.unit(150, "lb"),
  14937. name: "Back",
  14938. image: {
  14939. source: "./media/characters/pandora/back.svg",
  14940. extra: 2720 / 2556,
  14941. bottom: 0.01
  14942. }
  14943. },
  14944. beans: {
  14945. height: math.unit(6 / 8, "feet"),
  14946. name: "Beans",
  14947. image: {
  14948. source: "./media/characters/pandora/beans.svg"
  14949. }
  14950. },
  14951. skirt: {
  14952. height: math.unit(6, "feet"),
  14953. weight: math.unit(150, "lb"),
  14954. name: "Skirt",
  14955. image: {
  14956. source: "./media/characters/pandora/skirt.svg",
  14957. extra: 1622 / 1525,
  14958. bottom: 0.015
  14959. }
  14960. },
  14961. hoodie: {
  14962. height: math.unit(6, "feet"),
  14963. weight: math.unit(150, "lb"),
  14964. name: "Hoodie",
  14965. image: {
  14966. source: "./media/characters/pandora/hoodie.svg",
  14967. extra: 1622 / 1525,
  14968. bottom: 0.015
  14969. }
  14970. },
  14971. casual: {
  14972. height: math.unit(6, "feet"),
  14973. weight: math.unit(150, "lb"),
  14974. name: "Casual",
  14975. image: {
  14976. source: "./media/characters/pandora/casual.svg",
  14977. extra: 1622 / 1525,
  14978. bottom: 0.015
  14979. }
  14980. },
  14981. },
  14982. [
  14983. {
  14984. name: "Normal",
  14985. height: math.unit(6, "feet")
  14986. },
  14987. {
  14988. name: "Big Steppy",
  14989. height: math.unit(1, "km"),
  14990. default: true
  14991. },
  14992. ]
  14993. ))
  14994. characterMakers.push(() => makeCharacter(
  14995. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  14996. {
  14997. side: {
  14998. height: math.unit(10, "feet"),
  14999. weight: math.unit(800, "kg"),
  15000. name: "Side",
  15001. image: {
  15002. source: "./media/characters/venio-darcony/side.svg",
  15003. extra: 1373 / 1003,
  15004. bottom: 0.037
  15005. }
  15006. },
  15007. front: {
  15008. height: math.unit(19, "feet"),
  15009. weight: math.unit(800, "kg"),
  15010. name: "Front",
  15011. image: {
  15012. source: "./media/characters/venio-darcony/front.svg"
  15013. }
  15014. },
  15015. back: {
  15016. height: math.unit(19, "feet"),
  15017. weight: math.unit(800, "kg"),
  15018. name: "Back",
  15019. image: {
  15020. source: "./media/characters/venio-darcony/back.svg"
  15021. }
  15022. },
  15023. sideNsfw: {
  15024. height: math.unit(10, "feet"),
  15025. weight: math.unit(800, "kg"),
  15026. name: "Side (NSFW)",
  15027. image: {
  15028. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15029. extra: 1373 / 1003,
  15030. bottom: 0.037
  15031. }
  15032. },
  15033. frontNsfw: {
  15034. height: math.unit(19, "feet"),
  15035. weight: math.unit(800, "kg"),
  15036. name: "Front (NSFW)",
  15037. image: {
  15038. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15039. }
  15040. },
  15041. backNsfw: {
  15042. height: math.unit(19, "feet"),
  15043. weight: math.unit(800, "kg"),
  15044. name: "Back (NSFW)",
  15045. image: {
  15046. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15047. }
  15048. },
  15049. sideArmored: {
  15050. height: math.unit(10, "feet"),
  15051. weight: math.unit(800, "kg"),
  15052. name: "Side (Armored)",
  15053. image: {
  15054. source: "./media/characters/venio-darcony/side-armored.svg",
  15055. extra: 1373 / 1003,
  15056. bottom: 0.037
  15057. }
  15058. },
  15059. frontArmored: {
  15060. height: math.unit(19, "feet"),
  15061. weight: math.unit(900, "kg"),
  15062. name: "Front (Armored)",
  15063. image: {
  15064. source: "./media/characters/venio-darcony/front-armored.svg"
  15065. }
  15066. },
  15067. backArmored: {
  15068. height: math.unit(19, "feet"),
  15069. weight: math.unit(900, "kg"),
  15070. name: "Back (Armored)",
  15071. image: {
  15072. source: "./media/characters/venio-darcony/back-armored.svg"
  15073. }
  15074. },
  15075. sword: {
  15076. height: math.unit(10, "feet"),
  15077. weight: math.unit(50, "lb"),
  15078. name: "Sword",
  15079. image: {
  15080. source: "./media/characters/venio-darcony/sword.svg"
  15081. }
  15082. },
  15083. },
  15084. [
  15085. {
  15086. name: "Normal",
  15087. height: math.unit(10, "feet")
  15088. },
  15089. {
  15090. name: "Macro",
  15091. height: math.unit(130, "feet"),
  15092. default: true
  15093. },
  15094. {
  15095. name: "Macro+",
  15096. height: math.unit(240, "feet")
  15097. },
  15098. ]
  15099. ))
  15100. characterMakers.push(() => makeCharacter(
  15101. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15102. {
  15103. front: {
  15104. height: math.unit(6, "feet"),
  15105. weight: math.unit(150, "lb"),
  15106. name: "Front",
  15107. image: {
  15108. source: "./media/characters/veski/front.svg",
  15109. extra: 1299 / 1225,
  15110. bottom: 0.04
  15111. }
  15112. },
  15113. back: {
  15114. height: math.unit(6, "feet"),
  15115. weight: math.unit(150, "lb"),
  15116. name: "Back",
  15117. image: {
  15118. source: "./media/characters/veski/back.svg",
  15119. extra: 1299 / 1225,
  15120. bottom: 0.008
  15121. }
  15122. },
  15123. maw: {
  15124. height: math.unit(1.5 * 1.21, "feet"),
  15125. name: "Maw",
  15126. image: {
  15127. source: "./media/characters/veski/maw.svg"
  15128. }
  15129. },
  15130. },
  15131. [
  15132. {
  15133. name: "Macro",
  15134. height: math.unit(2, "km"),
  15135. default: true
  15136. },
  15137. ]
  15138. ))
  15139. characterMakers.push(() => makeCharacter(
  15140. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15141. {
  15142. front: {
  15143. height: math.unit(5 + 7 / 12, "feet"),
  15144. name: "Front",
  15145. image: {
  15146. source: "./media/characters/isabelle/front.svg",
  15147. extra: 2130 / 1976,
  15148. bottom: 0.05
  15149. }
  15150. },
  15151. },
  15152. [
  15153. {
  15154. name: "Supermicro",
  15155. height: math.unit(10, "micrometers")
  15156. },
  15157. {
  15158. name: "Micro",
  15159. height: math.unit(1, "inch")
  15160. },
  15161. {
  15162. name: "Tiny",
  15163. height: math.unit(5, "inches")
  15164. },
  15165. {
  15166. name: "Standard",
  15167. height: math.unit(5 + 7 / 12, "inches")
  15168. },
  15169. {
  15170. name: "Macro",
  15171. height: math.unit(80, "meters"),
  15172. default: true
  15173. },
  15174. {
  15175. name: "Megamacro",
  15176. height: math.unit(250, "meters")
  15177. },
  15178. {
  15179. name: "Gigamacro",
  15180. height: math.unit(5, "km")
  15181. },
  15182. {
  15183. name: "Cosmic",
  15184. height: math.unit(2.5e6, "miles")
  15185. },
  15186. ]
  15187. ))
  15188. characterMakers.push(() => makeCharacter(
  15189. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15190. {
  15191. front: {
  15192. height: math.unit(6, "feet"),
  15193. weight: math.unit(150, "lb"),
  15194. name: "Front",
  15195. image: {
  15196. source: "./media/characters/hanzo/front.svg",
  15197. extra: 374 / 344,
  15198. bottom: 0.02
  15199. }
  15200. },
  15201. },
  15202. [
  15203. {
  15204. name: "Normal",
  15205. height: math.unit(8, "feet"),
  15206. default: true
  15207. },
  15208. ]
  15209. ))
  15210. characterMakers.push(() => makeCharacter(
  15211. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15212. {
  15213. front: {
  15214. height: math.unit(7, "feet"),
  15215. weight: math.unit(130, "lb"),
  15216. name: "Front",
  15217. image: {
  15218. source: "./media/characters/anna/front.svg",
  15219. extra: 169 / 145,
  15220. bottom: 0.06
  15221. }
  15222. },
  15223. full: {
  15224. height: math.unit(4.96, "feet"),
  15225. weight: math.unit(220, "lb"),
  15226. name: "Full",
  15227. image: {
  15228. source: "./media/characters/anna/full.svg",
  15229. extra: 138 / 114,
  15230. bottom: 0.15
  15231. }
  15232. },
  15233. tongue: {
  15234. height: math.unit(2.53, "feet"),
  15235. name: "Tongue",
  15236. image: {
  15237. source: "./media/characters/anna/tongue.svg"
  15238. }
  15239. },
  15240. },
  15241. [
  15242. {
  15243. name: "Normal",
  15244. height: math.unit(7, "feet"),
  15245. default: true
  15246. },
  15247. ]
  15248. ))
  15249. characterMakers.push(() => makeCharacter(
  15250. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15251. {
  15252. front: {
  15253. height: math.unit(7, "feet"),
  15254. weight: math.unit(150, "lb"),
  15255. name: "Front",
  15256. image: {
  15257. source: "./media/characters/ian-corvid/front.svg",
  15258. extra: 150 / 142,
  15259. bottom: 0.02
  15260. }
  15261. },
  15262. back: {
  15263. height: math.unit(7, "feet"),
  15264. weight: math.unit(150, "lb"),
  15265. name: "Back",
  15266. image: {
  15267. source: "./media/characters/ian-corvid/back.svg",
  15268. extra: 150 / 143,
  15269. bottom: 0.01
  15270. }
  15271. },
  15272. stomping: {
  15273. height: math.unit(7, "feet"),
  15274. weight: math.unit(150, "lb"),
  15275. name: "Stomping",
  15276. image: {
  15277. source: "./media/characters/ian-corvid/stomping.svg",
  15278. extra: 76 / 72
  15279. }
  15280. },
  15281. sitting: {
  15282. height: math.unit(7 / 1.8, "feet"),
  15283. weight: math.unit(150, "lb"),
  15284. name: "Sitting",
  15285. image: {
  15286. source: "./media/characters/ian-corvid/sitting.svg",
  15287. extra: 1400 / 1269,
  15288. bottom: 0.15
  15289. }
  15290. },
  15291. },
  15292. [
  15293. {
  15294. name: "Tiny Microw",
  15295. height: math.unit(1, "inch")
  15296. },
  15297. {
  15298. name: "Microw",
  15299. height: math.unit(6, "inches")
  15300. },
  15301. {
  15302. name: "Crow",
  15303. height: math.unit(7 + 1 / 12, "feet"),
  15304. default: true
  15305. },
  15306. {
  15307. name: "Macrow",
  15308. height: math.unit(176, "feet")
  15309. },
  15310. ]
  15311. ))
  15312. characterMakers.push(() => makeCharacter(
  15313. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15314. {
  15315. front: {
  15316. height: math.unit(5 + 7 / 12, "feet"),
  15317. weight: math.unit(147, "lb"),
  15318. name: "Front",
  15319. image: {
  15320. source: "./media/characters/natalie-kellon/front.svg",
  15321. extra: 1214 / 1141,
  15322. bottom: 0.02
  15323. }
  15324. },
  15325. },
  15326. [
  15327. {
  15328. name: "Micro",
  15329. height: math.unit(1 / 16, "inch")
  15330. },
  15331. {
  15332. name: "Tiny",
  15333. height: math.unit(4, "inches")
  15334. },
  15335. {
  15336. name: "Normal",
  15337. height: math.unit(5 + 7 / 12, "feet"),
  15338. default: true
  15339. },
  15340. {
  15341. name: "Amazon",
  15342. height: math.unit(12, "feet")
  15343. },
  15344. {
  15345. name: "Giantess",
  15346. height: math.unit(160, "meters")
  15347. },
  15348. {
  15349. name: "Titaness",
  15350. height: math.unit(800, "meters")
  15351. },
  15352. ]
  15353. ))
  15354. characterMakers.push(() => makeCharacter(
  15355. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15356. {
  15357. front: {
  15358. height: math.unit(6, "feet"),
  15359. weight: math.unit(150, "lb"),
  15360. name: "Front",
  15361. image: {
  15362. source: "./media/characters/alluria/front.svg",
  15363. extra: 806 / 738,
  15364. bottom: 0.01
  15365. }
  15366. },
  15367. side: {
  15368. height: math.unit(6, "feet"),
  15369. weight: math.unit(150, "lb"),
  15370. name: "Side",
  15371. image: {
  15372. source: "./media/characters/alluria/side.svg",
  15373. extra: 800 / 750,
  15374. }
  15375. },
  15376. back: {
  15377. height: math.unit(6, "feet"),
  15378. weight: math.unit(150, "lb"),
  15379. name: "Back",
  15380. image: {
  15381. source: "./media/characters/alluria/back.svg",
  15382. extra: 806 / 738,
  15383. }
  15384. },
  15385. frontMaid: {
  15386. height: math.unit(6, "feet"),
  15387. weight: math.unit(150, "lb"),
  15388. name: "Front (Maid)",
  15389. image: {
  15390. source: "./media/characters/alluria/front-maid.svg",
  15391. extra: 806 / 738,
  15392. bottom: 0.01
  15393. }
  15394. },
  15395. sideMaid: {
  15396. height: math.unit(6, "feet"),
  15397. weight: math.unit(150, "lb"),
  15398. name: "Side (Maid)",
  15399. image: {
  15400. source: "./media/characters/alluria/side-maid.svg",
  15401. extra: 800 / 750,
  15402. bottom: 0.005
  15403. }
  15404. },
  15405. backMaid: {
  15406. height: math.unit(6, "feet"),
  15407. weight: math.unit(150, "lb"),
  15408. name: "Back (Maid)",
  15409. image: {
  15410. source: "./media/characters/alluria/back-maid.svg",
  15411. extra: 806 / 738,
  15412. }
  15413. },
  15414. },
  15415. [
  15416. {
  15417. name: "Micro",
  15418. height: math.unit(6, "inches"),
  15419. default: true
  15420. },
  15421. ]
  15422. ))
  15423. characterMakers.push(() => makeCharacter(
  15424. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15425. {
  15426. front: {
  15427. height: math.unit(6, "feet"),
  15428. weight: math.unit(150, "lb"),
  15429. name: "Front",
  15430. image: {
  15431. source: "./media/characters/kyle/front.svg",
  15432. extra: 1069 / 962,
  15433. bottom: 77.228 / 1727.45
  15434. }
  15435. },
  15436. },
  15437. [
  15438. {
  15439. name: "Macro",
  15440. height: math.unit(150, "feet"),
  15441. default: true
  15442. },
  15443. ]
  15444. ))
  15445. characterMakers.push(() => makeCharacter(
  15446. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15447. {
  15448. front: {
  15449. height: math.unit(6, "feet"),
  15450. weight: math.unit(300, "lb"),
  15451. name: "Front",
  15452. image: {
  15453. source: "./media/characters/duncan/front.svg",
  15454. extra: 1650 / 1482,
  15455. bottom: 0.05
  15456. }
  15457. },
  15458. },
  15459. [
  15460. {
  15461. name: "Macro",
  15462. height: math.unit(100, "feet"),
  15463. default: true
  15464. },
  15465. ]
  15466. ))
  15467. characterMakers.push(() => makeCharacter(
  15468. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15469. {
  15470. front: {
  15471. height: math.unit(5 + 4 / 12, "feet"),
  15472. weight: math.unit(220, "lb"),
  15473. name: "Front",
  15474. image: {
  15475. source: "./media/characters/memory/front.svg",
  15476. extra: 3641 / 3545,
  15477. bottom: 0.03
  15478. }
  15479. },
  15480. back: {
  15481. height: math.unit(5 + 4 / 12, "feet"),
  15482. weight: math.unit(220, "lb"),
  15483. name: "Back",
  15484. image: {
  15485. source: "./media/characters/memory/back.svg",
  15486. extra: 3641 / 3545,
  15487. bottom: 0.025
  15488. }
  15489. },
  15490. frontSkirt: {
  15491. height: math.unit(5 + 4 / 12, "feet"),
  15492. weight: math.unit(220, "lb"),
  15493. name: "Front (Skirt)",
  15494. image: {
  15495. source: "./media/characters/memory/front-skirt.svg",
  15496. extra: 3641 / 3545,
  15497. bottom: 0.03
  15498. }
  15499. },
  15500. frontDress: {
  15501. height: math.unit(5 + 4 / 12, "feet"),
  15502. weight: math.unit(220, "lb"),
  15503. name: "Front (Dress)",
  15504. image: {
  15505. source: "./media/characters/memory/front-dress.svg",
  15506. extra: 3641 / 3545,
  15507. bottom: 0.03
  15508. }
  15509. },
  15510. },
  15511. [
  15512. {
  15513. name: "Micro",
  15514. height: math.unit(6, "inches"),
  15515. default: true
  15516. },
  15517. {
  15518. name: "Normal",
  15519. height: math.unit(5 + 4 / 12, "feet")
  15520. },
  15521. ]
  15522. ))
  15523. characterMakers.push(() => makeCharacter(
  15524. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15525. {
  15526. front: {
  15527. height: math.unit(4 + 11 / 12, "feet"),
  15528. weight: math.unit(100, "lb"),
  15529. name: "Front",
  15530. image: {
  15531. source: "./media/characters/luno/front.svg",
  15532. extra: 1535 / 1487,
  15533. bottom: 0.03
  15534. }
  15535. },
  15536. },
  15537. [
  15538. {
  15539. name: "Micro",
  15540. height: math.unit(3, "inches")
  15541. },
  15542. {
  15543. name: "Normal",
  15544. height: math.unit(4 + 11 / 12, "feet"),
  15545. default: true
  15546. },
  15547. {
  15548. name: "Macro",
  15549. height: math.unit(300, "feet")
  15550. },
  15551. {
  15552. name: "Megamacro",
  15553. height: math.unit(700, "miles")
  15554. },
  15555. ]
  15556. ))
  15557. characterMakers.push(() => makeCharacter(
  15558. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15559. {
  15560. front: {
  15561. height: math.unit(6 + 2 / 12, "feet"),
  15562. weight: math.unit(170, "lb"),
  15563. name: "Front",
  15564. image: {
  15565. source: "./media/characters/jamesy/front.svg",
  15566. extra: 440 / 382,
  15567. bottom: 0.005
  15568. }
  15569. },
  15570. },
  15571. [
  15572. {
  15573. name: "Micro",
  15574. height: math.unit(3, "inches")
  15575. },
  15576. {
  15577. name: "Normal",
  15578. height: math.unit(6 + 2 / 12, "feet"),
  15579. default: true
  15580. },
  15581. {
  15582. name: "Macro",
  15583. height: math.unit(300, "feet")
  15584. },
  15585. {
  15586. name: "Megamacro",
  15587. height: math.unit(700, "miles")
  15588. },
  15589. ]
  15590. ))
  15591. characterMakers.push(() => makeCharacter(
  15592. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15593. {
  15594. front: {
  15595. height: math.unit(6, "feet"),
  15596. weight: math.unit(160, "lb"),
  15597. name: "Front",
  15598. image: {
  15599. source: "./media/characters/mark/front.svg",
  15600. extra: 3300 / 3100,
  15601. bottom: 136.42 / 3440.47
  15602. }
  15603. },
  15604. },
  15605. [
  15606. {
  15607. name: "Macro",
  15608. height: math.unit(120, "meters")
  15609. },
  15610. {
  15611. name: "Bigger Macro",
  15612. height: math.unit(350, "meters")
  15613. },
  15614. {
  15615. name: "Megamacro",
  15616. height: math.unit(8, "km"),
  15617. default: true
  15618. },
  15619. {
  15620. name: "Continental",
  15621. height: math.unit(4550, "km")
  15622. },
  15623. {
  15624. name: "Planetary",
  15625. height: math.unit(65000, "km")
  15626. },
  15627. ]
  15628. ))
  15629. characterMakers.push(() => makeCharacter(
  15630. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15631. {
  15632. front: {
  15633. height: math.unit(6, "feet"),
  15634. weight: math.unit(400, "lb"),
  15635. name: "Front",
  15636. image: {
  15637. source: "./media/characters/mac/front.svg",
  15638. extra: 1048 / 987.7,
  15639. bottom: 60 / 1107.6,
  15640. }
  15641. },
  15642. },
  15643. [
  15644. {
  15645. name: "Macro",
  15646. height: math.unit(500, "feet"),
  15647. default: true
  15648. },
  15649. ]
  15650. ))
  15651. characterMakers.push(() => makeCharacter(
  15652. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15653. {
  15654. front: {
  15655. height: math.unit(5 + 2 / 12, "feet"),
  15656. weight: math.unit(190, "lb"),
  15657. name: "Front",
  15658. image: {
  15659. source: "./media/characters/bari/front.svg",
  15660. extra: 3156 / 2880,
  15661. bottom: 0.03
  15662. }
  15663. },
  15664. back: {
  15665. height: math.unit(5 + 2 / 12, "feet"),
  15666. weight: math.unit(190, "lb"),
  15667. name: "Back",
  15668. image: {
  15669. source: "./media/characters/bari/back.svg",
  15670. extra: 3260 / 2834,
  15671. bottom: 0.025
  15672. }
  15673. },
  15674. frontPlush: {
  15675. height: math.unit(5 + 2 / 12, "feet"),
  15676. weight: math.unit(190, "lb"),
  15677. name: "Front (Plush)",
  15678. image: {
  15679. source: "./media/characters/bari/front-plush.svg",
  15680. extra: 1112 / 1061,
  15681. bottom: 0.002
  15682. }
  15683. },
  15684. },
  15685. [
  15686. {
  15687. name: "Micro",
  15688. height: math.unit(3, "inches")
  15689. },
  15690. {
  15691. name: "Normal",
  15692. height: math.unit(5 + 2 / 12, "feet"),
  15693. default: true
  15694. },
  15695. {
  15696. name: "Macro",
  15697. height: math.unit(20, "feet")
  15698. },
  15699. ]
  15700. ))
  15701. characterMakers.push(() => makeCharacter(
  15702. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  15703. {
  15704. front: {
  15705. height: math.unit(6 + 1 / 12, "feet"),
  15706. weight: math.unit(275, "lb"),
  15707. name: "Front",
  15708. image: {
  15709. source: "./media/characters/hunter-misha-raven/front.svg"
  15710. }
  15711. },
  15712. },
  15713. [
  15714. {
  15715. name: "Mortal",
  15716. height: math.unit(6 + 1 / 12, "feet")
  15717. },
  15718. {
  15719. name: "Divine",
  15720. height: math.unit(1.12134e34, "parsecs"),
  15721. default: true
  15722. },
  15723. ]
  15724. ))
  15725. characterMakers.push(() => makeCharacter(
  15726. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  15727. {
  15728. front: {
  15729. height: math.unit(6 + 3 / 12, "feet"),
  15730. weight: math.unit(220, "lb"),
  15731. name: "Front",
  15732. image: {
  15733. source: "./media/characters/max-calore/front.svg",
  15734. extra: 1700 / 1648,
  15735. bottom: 0.01
  15736. }
  15737. },
  15738. back: {
  15739. height: math.unit(6 + 3 / 12, "feet"),
  15740. weight: math.unit(220, "lb"),
  15741. name: "Back",
  15742. image: {
  15743. source: "./media/characters/max-calore/back.svg",
  15744. extra: 1700 / 1648,
  15745. bottom: 0.01
  15746. }
  15747. },
  15748. },
  15749. [
  15750. {
  15751. name: "Normal",
  15752. height: math.unit(6 + 3 / 12, "feet"),
  15753. default: true
  15754. },
  15755. ]
  15756. ))
  15757. characterMakers.push(() => makeCharacter(
  15758. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  15759. {
  15760. side: {
  15761. height: math.unit(2 + 8 / 12, "feet"),
  15762. weight: math.unit(99, "lb"),
  15763. name: "Side",
  15764. image: {
  15765. source: "./media/characters/aspen/side.svg",
  15766. extra: 152 / 138,
  15767. bottom: 0.032
  15768. }
  15769. },
  15770. },
  15771. [
  15772. {
  15773. name: "Normal",
  15774. height: math.unit(2 + 8 / 12, "feet"),
  15775. default: true
  15776. },
  15777. ]
  15778. ))
  15779. characterMakers.push(() => makeCharacter(
  15780. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  15781. {
  15782. side: {
  15783. height: math.unit(3 + 2 / 12, "feet"),
  15784. weight: math.unit(224, "lb"),
  15785. name: "Side",
  15786. image: {
  15787. source: "./media/characters/sheila-feral-wolf/side.svg",
  15788. extra: 179 / 166,
  15789. bottom: 0.03
  15790. }
  15791. },
  15792. },
  15793. [
  15794. {
  15795. name: "Normal",
  15796. height: math.unit(3 + 2 / 12, "feet"),
  15797. default: true
  15798. },
  15799. ]
  15800. ))
  15801. characterMakers.push(() => makeCharacter(
  15802. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  15803. {
  15804. side: {
  15805. height: math.unit(1 + 9 / 12, "feet"),
  15806. weight: math.unit(38, "lb"),
  15807. name: "Side",
  15808. image: {
  15809. source: "./media/characters/michelle/side.svg",
  15810. extra: 147 / 136.7,
  15811. bottom: 0.03
  15812. }
  15813. },
  15814. },
  15815. [
  15816. {
  15817. name: "Normal",
  15818. height: math.unit(1 + 9 / 12, "feet"),
  15819. default: true
  15820. },
  15821. ]
  15822. ))
  15823. characterMakers.push(() => makeCharacter(
  15824. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  15825. {
  15826. front: {
  15827. height: math.unit(1 + 1 / 12, "feet"),
  15828. weight: math.unit(18, "lb"),
  15829. name: "Front",
  15830. image: {
  15831. source: "./media/characters/nino/front.svg"
  15832. }
  15833. },
  15834. },
  15835. [
  15836. {
  15837. name: "Normal",
  15838. height: math.unit(1 + 1 / 12, "feet"),
  15839. default: true
  15840. },
  15841. ]
  15842. ))
  15843. characterMakers.push(() => makeCharacter(
  15844. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  15845. {
  15846. front: {
  15847. height: math.unit(1, "feet"),
  15848. weight: math.unit(16, "lb"),
  15849. name: "Front",
  15850. image: {
  15851. source: "./media/characters/viola/front.svg"
  15852. }
  15853. },
  15854. },
  15855. [
  15856. {
  15857. name: "Normal",
  15858. height: math.unit(1, "feet"),
  15859. default: true
  15860. },
  15861. ]
  15862. ))
  15863. characterMakers.push(() => makeCharacter(
  15864. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  15865. {
  15866. front: {
  15867. height: math.unit(6 + 5 / 12, "feet"),
  15868. weight: math.unit(580, "lb"),
  15869. name: "Front",
  15870. image: {
  15871. source: "./media/characters/atlas/front.svg",
  15872. extra: 298.5 / 290,
  15873. bottom: 0.015
  15874. }
  15875. },
  15876. },
  15877. [
  15878. {
  15879. name: "Normal",
  15880. height: math.unit(6 + 5 / 12, "feet"),
  15881. default: true
  15882. },
  15883. ]
  15884. ))
  15885. characterMakers.push(() => makeCharacter(
  15886. { name: "Davy", species: ["cat"], tags: ["feral"] },
  15887. {
  15888. side: {
  15889. height: math.unit(1 + 10 / 12, "feet"),
  15890. weight: math.unit(25, "lb"),
  15891. name: "Side",
  15892. image: {
  15893. source: "./media/characters/davy/side.svg",
  15894. extra: 200 / 170,
  15895. bottom: 0.01
  15896. }
  15897. },
  15898. },
  15899. [
  15900. {
  15901. name: "Normal",
  15902. height: math.unit(1 + 10 / 12, "feet"),
  15903. default: true
  15904. },
  15905. ]
  15906. ))
  15907. characterMakers.push(() => makeCharacter(
  15908. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  15909. {
  15910. side: {
  15911. height: math.unit(4 + 8 / 12, "feet"),
  15912. weight: math.unit(166, "lb"),
  15913. name: "Side",
  15914. image: {
  15915. source: "./media/characters/fiona/side.svg",
  15916. extra: 232 / 220,
  15917. bottom: 0.03
  15918. }
  15919. },
  15920. },
  15921. [
  15922. {
  15923. name: "Normal",
  15924. height: math.unit(4 + 8 / 12, "feet"),
  15925. default: true
  15926. },
  15927. ]
  15928. ))
  15929. characterMakers.push(() => makeCharacter(
  15930. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  15931. {
  15932. front: {
  15933. height: math.unit(2, "feet"),
  15934. weight: math.unit(62, "lb"),
  15935. name: "Front",
  15936. image: {
  15937. source: "./media/characters/lyla/front.svg",
  15938. bottom: 0.1
  15939. }
  15940. },
  15941. },
  15942. [
  15943. {
  15944. name: "Normal",
  15945. height: math.unit(2, "feet"),
  15946. default: true
  15947. },
  15948. ]
  15949. ))
  15950. characterMakers.push(() => makeCharacter(
  15951. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  15952. {
  15953. side: {
  15954. height: math.unit(1.8, "feet"),
  15955. weight: math.unit(44, "lb"),
  15956. name: "Side",
  15957. image: {
  15958. source: "./media/characters/perseus/side.svg",
  15959. bottom: 0.21
  15960. }
  15961. },
  15962. },
  15963. [
  15964. {
  15965. name: "Normal",
  15966. height: math.unit(1.8, "feet"),
  15967. default: true
  15968. },
  15969. ]
  15970. ))
  15971. characterMakers.push(() => makeCharacter(
  15972. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  15973. {
  15974. side: {
  15975. height: math.unit(4 + 2 / 12, "feet"),
  15976. weight: math.unit(20, "lb"),
  15977. name: "Side",
  15978. image: {
  15979. source: "./media/characters/remus/side.svg"
  15980. }
  15981. },
  15982. },
  15983. [
  15984. {
  15985. name: "Normal",
  15986. height: math.unit(4 + 2 / 12, "feet"),
  15987. default: true
  15988. },
  15989. ]
  15990. ))
  15991. characterMakers.push(() => makeCharacter(
  15992. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  15993. {
  15994. front: {
  15995. height: math.unit(4 + 11 / 12, "feet"),
  15996. weight: math.unit(114, "lb"),
  15997. name: "Front",
  15998. image: {
  15999. source: "./media/characters/raf/front.svg",
  16000. bottom: 0.01
  16001. }
  16002. },
  16003. side: {
  16004. height: math.unit(4 + 11 / 12, "feet"),
  16005. weight: math.unit(114, "lb"),
  16006. name: "Side",
  16007. image: {
  16008. source: "./media/characters/raf/side.svg",
  16009. bottom: 0.005
  16010. }
  16011. },
  16012. },
  16013. [
  16014. {
  16015. name: "Micro",
  16016. height: math.unit(2, "inches")
  16017. },
  16018. {
  16019. name: "Normal",
  16020. height: math.unit(4 + 11 / 12, "feet"),
  16021. default: true
  16022. },
  16023. {
  16024. name: "Macro",
  16025. height: math.unit(70, "feet")
  16026. },
  16027. ]
  16028. ))
  16029. characterMakers.push(() => makeCharacter(
  16030. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16031. {
  16032. front: {
  16033. height: math.unit(1.5, "meters"),
  16034. weight: math.unit(68, "kg"),
  16035. name: "Front",
  16036. image: {
  16037. source: "./media/characters/liam-einarr/front.svg",
  16038. extra: 2822 / 2666
  16039. }
  16040. },
  16041. back: {
  16042. height: math.unit(1.5, "meters"),
  16043. weight: math.unit(68, "kg"),
  16044. name: "Back",
  16045. image: {
  16046. source: "./media/characters/liam-einarr/back.svg",
  16047. extra: 2822 / 2666,
  16048. bottom: 0.015
  16049. }
  16050. },
  16051. },
  16052. [
  16053. {
  16054. name: "Normal",
  16055. height: math.unit(1.5, "meters"),
  16056. default: true
  16057. },
  16058. {
  16059. name: "Macro",
  16060. height: math.unit(150, "meters")
  16061. },
  16062. {
  16063. name: "Megamacro",
  16064. height: math.unit(35, "km")
  16065. },
  16066. ]
  16067. ))
  16068. characterMakers.push(() => makeCharacter(
  16069. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16070. {
  16071. front: {
  16072. height: math.unit(6, "feet"),
  16073. weight: math.unit(75, "kg"),
  16074. name: "Front",
  16075. image: {
  16076. source: "./media/characters/linda/front.svg",
  16077. extra: 930 / 874,
  16078. bottom: 0.004
  16079. }
  16080. },
  16081. },
  16082. [
  16083. {
  16084. name: "Normal",
  16085. height: math.unit(6, "feet"),
  16086. default: true
  16087. },
  16088. ]
  16089. ))
  16090. characterMakers.push(() => makeCharacter(
  16091. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16092. {
  16093. front: {
  16094. height: math.unit(6 + 8 / 12, "feet"),
  16095. weight: math.unit(220, "lb"),
  16096. name: "Front",
  16097. image: {
  16098. source: "./media/characters/caylex/front.svg",
  16099. extra: 821 / 772,
  16100. bottom: 0.07
  16101. }
  16102. },
  16103. back: {
  16104. height: math.unit(6 + 8 / 12, "feet"),
  16105. weight: math.unit(220, "lb"),
  16106. name: "Back",
  16107. image: {
  16108. source: "./media/characters/caylex/back.svg",
  16109. extra: 821 / 772,
  16110. bottom: 0.022
  16111. }
  16112. },
  16113. hand: {
  16114. height: math.unit(1.25, "feet"),
  16115. name: "Hand",
  16116. image: {
  16117. source: "./media/characters/caylex/hand.svg"
  16118. }
  16119. },
  16120. foot: {
  16121. height: math.unit(1.6, "feet"),
  16122. name: "Foot",
  16123. image: {
  16124. source: "./media/characters/caylex/foot.svg"
  16125. }
  16126. },
  16127. armored: {
  16128. height: math.unit(6 + 8 / 12, "feet"),
  16129. weight: math.unit(250, "lb"),
  16130. name: "Armored",
  16131. image: {
  16132. source: "./media/characters/caylex/armored.svg",
  16133. extra: 1420 / 1310,
  16134. bottom: 0.045
  16135. }
  16136. },
  16137. },
  16138. [
  16139. {
  16140. name: "Normal",
  16141. height: math.unit(6 + 8 / 12, "feet"),
  16142. default: true
  16143. },
  16144. {
  16145. name: "Normal+",
  16146. height: math.unit(12, "feet")
  16147. },
  16148. ]
  16149. ))
  16150. characterMakers.push(() => makeCharacter(
  16151. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16152. {
  16153. front: {
  16154. height: math.unit(7 + 6 / 12, "feet"),
  16155. weight: math.unit(288, "lb"),
  16156. name: "Front",
  16157. image: {
  16158. source: "./media/characters/alana/front.svg",
  16159. extra: 679 / 653,
  16160. bottom: 22.5 / 701
  16161. }
  16162. },
  16163. },
  16164. [
  16165. {
  16166. name: "Normal",
  16167. height: math.unit(7 + 6 / 12, "feet")
  16168. },
  16169. {
  16170. name: "Large",
  16171. height: math.unit(50, "feet")
  16172. },
  16173. {
  16174. name: "Macro",
  16175. height: math.unit(100, "feet"),
  16176. default: true
  16177. },
  16178. {
  16179. name: "Macro+",
  16180. height: math.unit(200, "feet")
  16181. },
  16182. ]
  16183. ))
  16184. characterMakers.push(() => makeCharacter(
  16185. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16186. {
  16187. front: {
  16188. height: math.unit(6 + 1 / 12, "feet"),
  16189. weight: math.unit(210, "lb"),
  16190. name: "Front",
  16191. image: {
  16192. source: "./media/characters/hasani/front.svg",
  16193. extra: 244 / 232,
  16194. bottom: 0.01
  16195. }
  16196. },
  16197. back: {
  16198. height: math.unit(6 + 1 / 12, "feet"),
  16199. weight: math.unit(210, "lb"),
  16200. name: "Back",
  16201. image: {
  16202. source: "./media/characters/hasani/back.svg",
  16203. extra: 244 / 232,
  16204. bottom: 0.01
  16205. }
  16206. },
  16207. },
  16208. [
  16209. {
  16210. name: "Normal",
  16211. height: math.unit(6 + 1 / 12, "feet")
  16212. },
  16213. {
  16214. name: "Macro",
  16215. height: math.unit(175, "feet"),
  16216. default: true
  16217. },
  16218. ]
  16219. ))
  16220. characterMakers.push(() => makeCharacter(
  16221. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16222. {
  16223. front: {
  16224. height: math.unit(1.82, "meters"),
  16225. weight: math.unit(140, "lb"),
  16226. name: "Front",
  16227. image: {
  16228. source: "./media/characters/nita/front.svg",
  16229. extra: 2473 / 2363,
  16230. bottom: 0.01
  16231. }
  16232. },
  16233. },
  16234. [
  16235. {
  16236. name: "Normal",
  16237. height: math.unit(1.82, "m")
  16238. },
  16239. {
  16240. name: "Macro",
  16241. height: math.unit(300, "m")
  16242. },
  16243. {
  16244. name: "Mistake Canon",
  16245. height: math.unit(0.5, "miles"),
  16246. default: true
  16247. },
  16248. {
  16249. name: "Big Mistake",
  16250. height: math.unit(13, "miles")
  16251. },
  16252. {
  16253. name: "Playing God",
  16254. height: math.unit(2450, "miles")
  16255. },
  16256. ]
  16257. ))
  16258. characterMakers.push(() => makeCharacter(
  16259. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16260. {
  16261. front: {
  16262. height: math.unit(4, "feet"),
  16263. weight: math.unit(120, "lb"),
  16264. name: "Front",
  16265. image: {
  16266. source: "./media/characters/shiriko/front.svg",
  16267. extra: 195 / 188
  16268. }
  16269. },
  16270. },
  16271. [
  16272. {
  16273. name: "Normal",
  16274. height: math.unit(4, "feet"),
  16275. default: true
  16276. },
  16277. ]
  16278. ))
  16279. characterMakers.push(() => makeCharacter(
  16280. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16281. {
  16282. front: {
  16283. height: math.unit(6, "feet"),
  16284. name: "front",
  16285. image: {
  16286. source: "./media/characters/deja/front.svg",
  16287. extra: 926 / 840,
  16288. bottom: 0.07
  16289. }
  16290. },
  16291. },
  16292. [
  16293. {
  16294. name: "Planck Length",
  16295. height: math.unit(1.6e-35, "meters")
  16296. },
  16297. {
  16298. name: "Normal",
  16299. height: math.unit(30.48, "meters"),
  16300. default: true
  16301. },
  16302. {
  16303. name: "Universal",
  16304. height: math.unit(8.8e26, "meters")
  16305. },
  16306. ]
  16307. ))
  16308. characterMakers.push(() => makeCharacter(
  16309. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16310. {
  16311. side: {
  16312. height: math.unit(8, "feet"),
  16313. weight: math.unit(6300, "lb"),
  16314. name: "Side",
  16315. image: {
  16316. source: "./media/characters/anima/side.svg",
  16317. bottom: 0.035
  16318. }
  16319. },
  16320. },
  16321. [
  16322. {
  16323. name: "Normal",
  16324. height: math.unit(8, "feet"),
  16325. default: true
  16326. },
  16327. ]
  16328. ))
  16329. characterMakers.push(() => makeCharacter(
  16330. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16331. {
  16332. front: {
  16333. height: math.unit(8, "feet"),
  16334. weight: math.unit(350, "lb"),
  16335. name: "Front",
  16336. image: {
  16337. source: "./media/characters/bianca/front.svg",
  16338. extra: 234 / 225,
  16339. bottom: 0.03
  16340. }
  16341. },
  16342. },
  16343. [
  16344. {
  16345. name: "Normal",
  16346. height: math.unit(8, "feet"),
  16347. default: true
  16348. },
  16349. ]
  16350. ))
  16351. characterMakers.push(() => makeCharacter(
  16352. { name: "Adinia", species: ["kelpie"], tags: ["anthro"] },
  16353. {
  16354. front: {
  16355. height: math.unit(6, "feet"),
  16356. weight: math.unit(150, "lb"),
  16357. name: "Front",
  16358. image: {
  16359. source: "./media/characters/adinia/front.svg",
  16360. extra: 1845 / 1672,
  16361. bottom: 0.02
  16362. }
  16363. },
  16364. back: {
  16365. height: math.unit(6, "feet"),
  16366. weight: math.unit(150, "lb"),
  16367. name: "Back",
  16368. image: {
  16369. source: "./media/characters/adinia/back.svg",
  16370. extra: 1845 / 1672,
  16371. bottom: 0.002
  16372. }
  16373. },
  16374. },
  16375. [
  16376. {
  16377. name: "Normal",
  16378. height: math.unit(11 + 5 / 12, "feet"),
  16379. default: true
  16380. },
  16381. ]
  16382. ))
  16383. characterMakers.push(() => makeCharacter(
  16384. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16385. {
  16386. front: {
  16387. height: math.unit(3, "meters"),
  16388. weight: math.unit(200, "kg"),
  16389. name: "Front",
  16390. image: {
  16391. source: "./media/characters/lykasa/front.svg",
  16392. extra: 1076 / 976,
  16393. bottom: 0.06
  16394. }
  16395. },
  16396. },
  16397. [
  16398. {
  16399. name: "Normal",
  16400. height: math.unit(3, "meters")
  16401. },
  16402. {
  16403. name: "Kaiju",
  16404. height: math.unit(120, "meters"),
  16405. default: true
  16406. },
  16407. {
  16408. name: "Mega Kaiju",
  16409. height: math.unit(240, "km")
  16410. },
  16411. {
  16412. name: "Giga Kaiju",
  16413. height: math.unit(400, "megameters")
  16414. },
  16415. {
  16416. name: "Tera Kaiju",
  16417. height: math.unit(800, "gigameters")
  16418. },
  16419. {
  16420. name: "Kaiju Dragon Goddess",
  16421. height: math.unit(26, "zettaparsecs")
  16422. },
  16423. ]
  16424. ))
  16425. characterMakers.push(() => makeCharacter(
  16426. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16427. {
  16428. side: {
  16429. height: math.unit(283 / 124 * 6, "feet"),
  16430. weight: math.unit(35000, "lb"),
  16431. name: "Side",
  16432. image: {
  16433. source: "./media/characters/malfaren/side.svg",
  16434. extra: 2500 / 1010,
  16435. bottom: 0.01
  16436. }
  16437. },
  16438. front: {
  16439. height: math.unit(22.36, "feet"),
  16440. weight: math.unit(35000, "lb"),
  16441. name: "Front",
  16442. image: {
  16443. source: "./media/characters/malfaren/front.svg",
  16444. extra: 1631 / 1476,
  16445. bottom: 0.01
  16446. }
  16447. },
  16448. maw: {
  16449. height: math.unit(6.9, "feet"),
  16450. name: "Maw",
  16451. image: {
  16452. source: "./media/characters/malfaren/maw.svg"
  16453. }
  16454. },
  16455. },
  16456. [
  16457. {
  16458. name: "Big",
  16459. height: math.unit(283 / 162 * 6, "feet"),
  16460. },
  16461. {
  16462. name: "Bigger",
  16463. height: math.unit(283 / 124 * 6, "feet")
  16464. },
  16465. {
  16466. name: "Massive",
  16467. height: math.unit(283 / 92 * 6, "feet"),
  16468. default: true
  16469. },
  16470. {
  16471. name: "👀💦",
  16472. height: math.unit(283 / 73 * 6, "feet"),
  16473. },
  16474. ]
  16475. ))
  16476. characterMakers.push(() => makeCharacter(
  16477. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16478. {
  16479. front: {
  16480. height: math.unit(1.7, "m"),
  16481. weight: math.unit(70, "kg"),
  16482. name: "Front",
  16483. image: {
  16484. source: "./media/characters/kernel/front.svg",
  16485. extra: 222 / 210,
  16486. bottom: 0.007
  16487. }
  16488. },
  16489. },
  16490. [
  16491. {
  16492. name: "Nano",
  16493. height: math.unit(17, "micrometers")
  16494. },
  16495. {
  16496. name: "Micro",
  16497. height: math.unit(1.7, "mm")
  16498. },
  16499. {
  16500. name: "Small",
  16501. height: math.unit(1.7, "cm")
  16502. },
  16503. {
  16504. name: "Normal",
  16505. height: math.unit(1.7, "m"),
  16506. default: true
  16507. },
  16508. ]
  16509. ))
  16510. characterMakers.push(() => makeCharacter(
  16511. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16512. {
  16513. front: {
  16514. height: math.unit(1.75, "meters"),
  16515. weight: math.unit(65, "kg"),
  16516. name: "Front",
  16517. image: {
  16518. source: "./media/characters/jayne-folest/front.svg",
  16519. extra: 2115 / 2007,
  16520. bottom: 0.02
  16521. }
  16522. },
  16523. back: {
  16524. height: math.unit(1.75, "meters"),
  16525. weight: math.unit(65, "kg"),
  16526. name: "Back",
  16527. image: {
  16528. source: "./media/characters/jayne-folest/back.svg",
  16529. extra: 2115 / 2007,
  16530. bottom: 0.005
  16531. }
  16532. },
  16533. frontClothed: {
  16534. height: math.unit(1.75, "meters"),
  16535. weight: math.unit(65, "kg"),
  16536. name: "Front (Clothed)",
  16537. image: {
  16538. source: "./media/characters/jayne-folest/front-clothed.svg",
  16539. extra: 2115 / 2007,
  16540. bottom: 0.035
  16541. }
  16542. },
  16543. hand: {
  16544. height: math.unit(1 / 1.260, "feet"),
  16545. name: "Hand",
  16546. image: {
  16547. source: "./media/characters/jayne-folest/hand.svg"
  16548. }
  16549. },
  16550. foot: {
  16551. height: math.unit(1 / 0.918, "feet"),
  16552. name: "Foot",
  16553. image: {
  16554. source: "./media/characters/jayne-folest/foot.svg"
  16555. }
  16556. },
  16557. },
  16558. [
  16559. {
  16560. name: "Micro",
  16561. height: math.unit(4, "cm")
  16562. },
  16563. {
  16564. name: "Normal",
  16565. height: math.unit(1.75, "meters")
  16566. },
  16567. {
  16568. name: "Macro",
  16569. height: math.unit(47.5, "meters"),
  16570. default: true
  16571. },
  16572. ]
  16573. ))
  16574. characterMakers.push(() => makeCharacter(
  16575. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16576. {
  16577. front: {
  16578. height: math.unit(180, "cm"),
  16579. weight: math.unit(70, "kg"),
  16580. name: "Front",
  16581. image: {
  16582. source: "./media/characters/algier/front.svg",
  16583. extra: 596 / 572,
  16584. bottom: 0.04
  16585. }
  16586. },
  16587. back: {
  16588. height: math.unit(180, "cm"),
  16589. weight: math.unit(70, "kg"),
  16590. name: "Back",
  16591. image: {
  16592. source: "./media/characters/algier/back.svg",
  16593. extra: 596 / 572,
  16594. bottom: 0.025
  16595. }
  16596. },
  16597. frontdressed: {
  16598. height: math.unit(180, "cm"),
  16599. weight: math.unit(150, "kg"),
  16600. name: "Front-dressed",
  16601. image: {
  16602. source: "./media/characters/algier/front-dressed.svg",
  16603. extra: 596 / 572,
  16604. bottom: 0.038
  16605. }
  16606. },
  16607. },
  16608. [
  16609. {
  16610. name: "Micro",
  16611. height: math.unit(5, "cm")
  16612. },
  16613. {
  16614. name: "Normal",
  16615. height: math.unit(180, "cm"),
  16616. default: true
  16617. },
  16618. {
  16619. name: "Macro",
  16620. height: math.unit(64, "m")
  16621. },
  16622. ]
  16623. ))
  16624. characterMakers.push(() => makeCharacter(
  16625. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16626. {
  16627. upright: {
  16628. height: math.unit(7, "feet"),
  16629. weight: math.unit(300, "lb"),
  16630. name: "Upright",
  16631. image: {
  16632. source: "./media/characters/pretzel/upright.svg",
  16633. extra: 534 / 522,
  16634. bottom: 0.065
  16635. }
  16636. },
  16637. sprawling: {
  16638. height: math.unit(3.75, "feet"),
  16639. weight: math.unit(300, "lb"),
  16640. name: "Sprawling",
  16641. image: {
  16642. source: "./media/characters/pretzel/sprawling.svg",
  16643. extra: 314 / 281,
  16644. bottom: 0.1
  16645. }
  16646. },
  16647. tongue: {
  16648. height: math.unit(2, "feet"),
  16649. name: "Tongue",
  16650. image: {
  16651. source: "./media/characters/pretzel/tongue.svg"
  16652. }
  16653. },
  16654. },
  16655. [
  16656. {
  16657. name: "Normal",
  16658. height: math.unit(7, "feet"),
  16659. default: true
  16660. },
  16661. {
  16662. name: "Oversized",
  16663. height: math.unit(15, "feet")
  16664. },
  16665. {
  16666. name: "Huge",
  16667. height: math.unit(30, "feet")
  16668. },
  16669. {
  16670. name: "Macro",
  16671. height: math.unit(250, "feet")
  16672. },
  16673. ]
  16674. ))
  16675. characterMakers.push(() => makeCharacter(
  16676. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16677. {
  16678. sideFront: {
  16679. height: math.unit(5 + 2 / 12, "feet"),
  16680. weight: math.unit(120, "lb"),
  16681. name: "Front Side",
  16682. image: {
  16683. source: "./media/characters/roxi/side-front.svg",
  16684. extra: 2924 / 2717,
  16685. bottom: 0.08
  16686. }
  16687. },
  16688. sideBack: {
  16689. height: math.unit(5 + 2 / 12, "feet"),
  16690. weight: math.unit(120, "lb"),
  16691. name: "Back Side",
  16692. image: {
  16693. source: "./media/characters/roxi/side-back.svg",
  16694. extra: 2904 / 2693,
  16695. bottom: 0.06
  16696. }
  16697. },
  16698. front: {
  16699. height: math.unit(5 + 2 / 12, "feet"),
  16700. weight: math.unit(120, "lb"),
  16701. name: "Front",
  16702. image: {
  16703. source: "./media/characters/roxi/front.svg",
  16704. extra: 2028 / 1907,
  16705. bottom: 0.01
  16706. }
  16707. },
  16708. frontAlt: {
  16709. height: math.unit(5 + 2 / 12, "feet"),
  16710. weight: math.unit(120, "lb"),
  16711. name: "Front (Alt)",
  16712. image: {
  16713. source: "./media/characters/roxi/front-alt.svg",
  16714. extra: 1828 / 1798,
  16715. bottom: 0.01
  16716. }
  16717. },
  16718. sitting: {
  16719. height: math.unit(2.8, "feet"),
  16720. weight: math.unit(120, "lb"),
  16721. name: "Sitting",
  16722. image: {
  16723. source: "./media/characters/roxi/sitting.svg",
  16724. extra: 2660 / 2462,
  16725. bottom: 0.1
  16726. }
  16727. },
  16728. },
  16729. [
  16730. {
  16731. name: "Normal",
  16732. height: math.unit(5 + 2 / 12, "feet"),
  16733. default: true
  16734. },
  16735. ]
  16736. ))
  16737. characterMakers.push(() => makeCharacter(
  16738. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  16739. {
  16740. side: {
  16741. height: math.unit(55, "feet"),
  16742. weight: math.unit(153, "tons"),
  16743. name: "Side",
  16744. image: {
  16745. source: "./media/characters/shadow/side.svg",
  16746. extra: 701 / 628,
  16747. bottom: 0.02
  16748. }
  16749. },
  16750. flying: {
  16751. height: math.unit(145, "feet"),
  16752. weight: math.unit(153, "tons"),
  16753. name: "Flying",
  16754. image: {
  16755. source: "./media/characters/shadow/flying.svg"
  16756. }
  16757. },
  16758. },
  16759. [
  16760. {
  16761. name: "Normal",
  16762. height: math.unit(55, "feet"),
  16763. default: true
  16764. },
  16765. ]
  16766. ))
  16767. characterMakers.push(() => makeCharacter(
  16768. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  16769. {
  16770. front: {
  16771. height: math.unit(6, "feet"),
  16772. weight: math.unit(200, "lb"),
  16773. name: "Front",
  16774. image: {
  16775. source: "./media/characters/marcie/front.svg",
  16776. extra: 960 / 876,
  16777. bottom: 58 / 1017.87
  16778. }
  16779. },
  16780. },
  16781. [
  16782. {
  16783. name: "Macro",
  16784. height: math.unit(1, "mile"),
  16785. default: true
  16786. },
  16787. ]
  16788. ))
  16789. characterMakers.push(() => makeCharacter(
  16790. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  16791. {
  16792. front: {
  16793. height: math.unit(7, "feet"),
  16794. weight: math.unit(200, "lb"),
  16795. name: "Front",
  16796. image: {
  16797. source: "./media/characters/kachina/front.svg",
  16798. extra: 1290.68 / 1119,
  16799. bottom: 36.5 / 1327.18
  16800. }
  16801. },
  16802. },
  16803. [
  16804. {
  16805. name: "Normal",
  16806. height: math.unit(7, "feet"),
  16807. default: true
  16808. },
  16809. ]
  16810. ))
  16811. characterMakers.push(() => makeCharacter(
  16812. { name: "Kash", species: ["canine"], tags: ["feral"] },
  16813. {
  16814. looking: {
  16815. height: math.unit(2, "meters"),
  16816. weight: math.unit(300, "kg"),
  16817. name: "Looking",
  16818. image: {
  16819. source: "./media/characters/kash/looking.svg",
  16820. extra: 474 / 344,
  16821. bottom: 0.03
  16822. }
  16823. },
  16824. side: {
  16825. height: math.unit(2, "meters"),
  16826. weight: math.unit(300, "kg"),
  16827. name: "Side",
  16828. image: {
  16829. source: "./media/characters/kash/side.svg",
  16830. extra: 302 / 251,
  16831. bottom: 0.03
  16832. }
  16833. },
  16834. front: {
  16835. height: math.unit(2, "meters"),
  16836. weight: math.unit(300, "kg"),
  16837. name: "Front",
  16838. image: {
  16839. source: "./media/characters/kash/front.svg",
  16840. extra: 495 / 360,
  16841. bottom: 0.015
  16842. }
  16843. },
  16844. },
  16845. [
  16846. {
  16847. name: "Normal",
  16848. height: math.unit(2, "meters"),
  16849. default: true
  16850. },
  16851. {
  16852. name: "Big",
  16853. height: math.unit(3, "meters")
  16854. },
  16855. {
  16856. name: "Large",
  16857. height: math.unit(5, "meters")
  16858. },
  16859. ]
  16860. ))
  16861. characterMakers.push(() => makeCharacter(
  16862. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  16863. {
  16864. feeding: {
  16865. height: math.unit(6.7, "feet"),
  16866. weight: math.unit(350, "lb"),
  16867. name: "Feeding",
  16868. image: {
  16869. source: "./media/characters/lalim/feeding.svg",
  16870. }
  16871. },
  16872. },
  16873. [
  16874. {
  16875. name: "Normal",
  16876. height: math.unit(6.7, "feet"),
  16877. default: true
  16878. },
  16879. ]
  16880. ))
  16881. characterMakers.push(() => makeCharacter(
  16882. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  16883. {
  16884. front: {
  16885. height: math.unit(9.5, "feet"),
  16886. weight: math.unit(600, "lb"),
  16887. name: "Front",
  16888. image: {
  16889. source: "./media/characters/de'vout/front.svg",
  16890. extra: 1443 / 1328,
  16891. bottom: 0.025
  16892. }
  16893. },
  16894. back: {
  16895. height: math.unit(9.5, "feet"),
  16896. weight: math.unit(600, "lb"),
  16897. name: "Back",
  16898. image: {
  16899. source: "./media/characters/de'vout/back.svg",
  16900. extra: 1443 / 1328
  16901. }
  16902. },
  16903. frontDressed: {
  16904. height: math.unit(9.5, "feet"),
  16905. weight: math.unit(600, "lb"),
  16906. name: "Front (Dressed",
  16907. image: {
  16908. source: "./media/characters/de'vout/front-dressed.svg",
  16909. extra: 1443 / 1328,
  16910. bottom: 0.025
  16911. }
  16912. },
  16913. backDressed: {
  16914. height: math.unit(9.5, "feet"),
  16915. weight: math.unit(600, "lb"),
  16916. name: "Back (Dressed",
  16917. image: {
  16918. source: "./media/characters/de'vout/back-dressed.svg",
  16919. extra: 1443 / 1328
  16920. }
  16921. },
  16922. },
  16923. [
  16924. {
  16925. name: "Normal",
  16926. height: math.unit(9.5, "feet"),
  16927. default: true
  16928. },
  16929. ]
  16930. ))
  16931. characterMakers.push(() => makeCharacter(
  16932. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  16933. {
  16934. front: {
  16935. height: math.unit(8, "feet"),
  16936. weight: math.unit(225, "lb"),
  16937. name: "Front",
  16938. image: {
  16939. source: "./media/characters/talana/front.svg",
  16940. extra: 1410 / 1300,
  16941. bottom: 0.015
  16942. }
  16943. },
  16944. frontDressed: {
  16945. height: math.unit(8, "feet"),
  16946. weight: math.unit(225, "lb"),
  16947. name: "Front (Dressed",
  16948. image: {
  16949. source: "./media/characters/talana/front-dressed.svg",
  16950. extra: 1410 / 1300,
  16951. bottom: 0.015
  16952. }
  16953. },
  16954. },
  16955. [
  16956. {
  16957. name: "Normal",
  16958. height: math.unit(8, "feet"),
  16959. default: true
  16960. },
  16961. ]
  16962. ))
  16963. characterMakers.push(() => makeCharacter(
  16964. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  16965. {
  16966. side: {
  16967. height: math.unit(7.2, "feet"),
  16968. weight: math.unit(150, "lb"),
  16969. name: "Side",
  16970. image: {
  16971. source: "./media/characters/xeauvok/side.svg",
  16972. extra: 1975 / 1523,
  16973. bottom: 0.07
  16974. }
  16975. },
  16976. },
  16977. [
  16978. {
  16979. name: "Normal",
  16980. height: math.unit(7.2, "feet"),
  16981. default: true
  16982. },
  16983. ]
  16984. ))
  16985. characterMakers.push(() => makeCharacter(
  16986. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  16987. {
  16988. side: {
  16989. height: math.unit(10, "feet"),
  16990. weight: math.unit(900, "kg"),
  16991. name: "Side",
  16992. image: {
  16993. source: "./media/characters/zara/side.svg",
  16994. extra: 504 / 498
  16995. }
  16996. },
  16997. },
  16998. [
  16999. {
  17000. name: "Normal",
  17001. height: math.unit(10, "feet"),
  17002. default: true
  17003. },
  17004. ]
  17005. ))
  17006. characterMakers.push(() => makeCharacter(
  17007. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17008. {
  17009. side: {
  17010. height: math.unit(6, "feet"),
  17011. weight: math.unit(150, "lb"),
  17012. name: "Side",
  17013. image: {
  17014. source: "./media/characters/richard-dragon/side.svg",
  17015. extra: 845 / 340,
  17016. bottom: 0.017
  17017. }
  17018. },
  17019. maw: {
  17020. height: math.unit(2.97, "feet"),
  17021. name: "Maw",
  17022. image: {
  17023. source: "./media/characters/richard-dragon/maw.svg"
  17024. }
  17025. },
  17026. },
  17027. [
  17028. ]
  17029. ))
  17030. characterMakers.push(() => makeCharacter(
  17031. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17032. {
  17033. front: {
  17034. height: math.unit(4, "feet"),
  17035. weight: math.unit(100, "lb"),
  17036. name: "Front",
  17037. image: {
  17038. source: "./media/characters/richard-smeargle/front.svg",
  17039. extra: 2952 / 2820,
  17040. bottom: 0.028
  17041. }
  17042. },
  17043. },
  17044. [
  17045. {
  17046. name: "Normal",
  17047. height: math.unit(4, "feet"),
  17048. default: true
  17049. },
  17050. {
  17051. name: "Dynamax",
  17052. height: math.unit(20, "meters")
  17053. },
  17054. ]
  17055. ))
  17056. characterMakers.push(() => makeCharacter(
  17057. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17058. {
  17059. front: {
  17060. height: math.unit(6, "feet"),
  17061. weight: math.unit(110, "lb"),
  17062. name: "Front",
  17063. image: {
  17064. source: "./media/characters/klay/front.svg",
  17065. extra: 962 / 883,
  17066. bottom: 0.04
  17067. }
  17068. },
  17069. back: {
  17070. height: math.unit(6, "feet"),
  17071. weight: math.unit(110, "lb"),
  17072. name: "Back",
  17073. image: {
  17074. source: "./media/characters/klay/back.svg",
  17075. extra: 962 / 883
  17076. }
  17077. },
  17078. beans: {
  17079. height: math.unit(1.15, "feet"),
  17080. name: "Beans",
  17081. image: {
  17082. source: "./media/characters/klay/beans.svg"
  17083. }
  17084. },
  17085. },
  17086. [
  17087. {
  17088. name: "Micro",
  17089. height: math.unit(6, "inches")
  17090. },
  17091. {
  17092. name: "Mini",
  17093. height: math.unit(3, "feet")
  17094. },
  17095. {
  17096. name: "Normal",
  17097. height: math.unit(6, "feet"),
  17098. default: true
  17099. },
  17100. {
  17101. name: "Big",
  17102. height: math.unit(25, "feet")
  17103. },
  17104. {
  17105. name: "Macro",
  17106. height: math.unit(100, "feet")
  17107. },
  17108. {
  17109. name: "Megamacro",
  17110. height: math.unit(400, "feet")
  17111. },
  17112. ]
  17113. ))
  17114. characterMakers.push(() => makeCharacter(
  17115. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17116. {
  17117. front: {
  17118. height: math.unit(6, "feet"),
  17119. weight: math.unit(160, "lb"),
  17120. name: "Front",
  17121. image: {
  17122. source: "./media/characters/marcus/front.svg",
  17123. extra: 734 / 676,
  17124. bottom: 0.03
  17125. }
  17126. },
  17127. },
  17128. [
  17129. {
  17130. name: "Little",
  17131. height: math.unit(6, "feet")
  17132. },
  17133. {
  17134. name: "Normal",
  17135. height: math.unit(110, "feet"),
  17136. default: true
  17137. },
  17138. {
  17139. name: "Macro",
  17140. height: math.unit(250, "feet")
  17141. },
  17142. {
  17143. name: "Megamacro",
  17144. height: math.unit(1000, "feet")
  17145. },
  17146. ]
  17147. ))
  17148. characterMakers.push(() => makeCharacter(
  17149. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17150. {
  17151. front: {
  17152. height: math.unit(7, "feet"),
  17153. weight: math.unit(275, "lb"),
  17154. name: "Front",
  17155. image: {
  17156. source: "./media/characters/claude-delroute/front.svg",
  17157. extra: 230 / 214,
  17158. bottom: 0.007
  17159. }
  17160. },
  17161. side: {
  17162. height: math.unit(7, "feet"),
  17163. weight: math.unit(275, "lb"),
  17164. name: "Side",
  17165. image: {
  17166. source: "./media/characters/claude-delroute/side.svg",
  17167. extra: 222 / 214,
  17168. bottom: 0.01
  17169. }
  17170. },
  17171. back: {
  17172. height: math.unit(7, "feet"),
  17173. weight: math.unit(275, "lb"),
  17174. name: "Back",
  17175. image: {
  17176. source: "./media/characters/claude-delroute/back.svg",
  17177. extra: 230 / 214,
  17178. bottom: 0.015
  17179. }
  17180. },
  17181. maw: {
  17182. height: math.unit(0.6407, "meters"),
  17183. name: "Maw",
  17184. image: {
  17185. source: "./media/characters/claude-delroute/maw.svg"
  17186. }
  17187. },
  17188. },
  17189. [
  17190. {
  17191. name: "Normal",
  17192. height: math.unit(7, "feet"),
  17193. default: true
  17194. },
  17195. {
  17196. name: "Lorge",
  17197. height: math.unit(20, "feet")
  17198. },
  17199. ]
  17200. ))
  17201. characterMakers.push(() => makeCharacter(
  17202. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17203. {
  17204. front: {
  17205. height: math.unit(8 + 4 / 12, "feet"),
  17206. weight: math.unit(600, "lb"),
  17207. name: "Front",
  17208. image: {
  17209. source: "./media/characters/dragonien/front.svg",
  17210. extra: 100 / 94,
  17211. bottom: 3.3 / 103.3445
  17212. }
  17213. },
  17214. back: {
  17215. height: math.unit(8 + 4 / 12, "feet"),
  17216. weight: math.unit(600, "lb"),
  17217. name: "Back",
  17218. image: {
  17219. source: "./media/characters/dragonien/back.svg",
  17220. extra: 776 / 746,
  17221. bottom: 6.4 / 782.0616
  17222. }
  17223. },
  17224. foot: {
  17225. height: math.unit(1.54, "feet"),
  17226. name: "Foot",
  17227. image: {
  17228. source: "./media/characters/dragonien/foot.svg",
  17229. }
  17230. },
  17231. },
  17232. [
  17233. {
  17234. name: "Normal",
  17235. height: math.unit(8 + 4 / 12, "feet"),
  17236. default: true
  17237. },
  17238. {
  17239. name: "Macro",
  17240. height: math.unit(200, "feet")
  17241. },
  17242. {
  17243. name: "Megamacro",
  17244. height: math.unit(1, "mile")
  17245. },
  17246. {
  17247. name: "Gigamacro",
  17248. height: math.unit(1000, "miles")
  17249. },
  17250. ]
  17251. ))
  17252. characterMakers.push(() => makeCharacter(
  17253. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17254. {
  17255. front: {
  17256. height: math.unit(5 + 2 / 12, "feet"),
  17257. weight: math.unit(110, "lb"),
  17258. name: "Front",
  17259. image: {
  17260. source: "./media/characters/desta/front.svg",
  17261. extra: 767/726,
  17262. bottom: 11.7/779
  17263. }
  17264. },
  17265. back: {
  17266. height: math.unit(5 + 2 / 12, "feet"),
  17267. weight: math.unit(110, "lb"),
  17268. name: "Back",
  17269. image: {
  17270. source: "./media/characters/desta/back.svg",
  17271. extra: 777/728,
  17272. bottom: 6/784
  17273. }
  17274. },
  17275. frontAlt: {
  17276. height: math.unit(5 + 2 / 12, "feet"),
  17277. weight: math.unit(110, "lb"),
  17278. name: "Front",
  17279. image: {
  17280. source: "./media/characters/desta/front-alt.svg",
  17281. extra: 1482 / 1417
  17282. }
  17283. },
  17284. side: {
  17285. height: math.unit(5 + 2 / 12, "feet"),
  17286. weight: math.unit(110, "lb"),
  17287. name: "Side",
  17288. image: {
  17289. source: "./media/characters/desta/side.svg",
  17290. extra: 2579 / 2491,
  17291. bottom: 0.053
  17292. }
  17293. },
  17294. },
  17295. [
  17296. {
  17297. name: "Micro",
  17298. height: math.unit(6, "inches")
  17299. },
  17300. {
  17301. name: "Normal",
  17302. height: math.unit(5 + 2 / 12, "feet"),
  17303. default: true
  17304. },
  17305. {
  17306. name: "Macro",
  17307. height: math.unit(62, "feet")
  17308. },
  17309. {
  17310. name: "Megamacro",
  17311. height: math.unit(1800, "feet")
  17312. },
  17313. ]
  17314. ))
  17315. characterMakers.push(() => makeCharacter(
  17316. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17317. {
  17318. front: {
  17319. height: math.unit(10, "feet"),
  17320. weight: math.unit(700, "lb"),
  17321. name: "Front",
  17322. image: {
  17323. source: "./media/characters/storm-alystar/front.svg",
  17324. extra: 2112 / 1898,
  17325. bottom: 0.034
  17326. }
  17327. },
  17328. },
  17329. [
  17330. {
  17331. name: "Micro",
  17332. height: math.unit(3.5, "inches")
  17333. },
  17334. {
  17335. name: "Normal",
  17336. height: math.unit(10, "feet"),
  17337. default: true
  17338. },
  17339. {
  17340. name: "Macro",
  17341. height: math.unit(400, "feet")
  17342. },
  17343. {
  17344. name: "Deific",
  17345. height: math.unit(60, "miles")
  17346. },
  17347. ]
  17348. ))
  17349. characterMakers.push(() => makeCharacter(
  17350. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17351. {
  17352. front: {
  17353. height: math.unit(2.35, "meters"),
  17354. weight: math.unit(119, "kg"),
  17355. name: "Front",
  17356. image: {
  17357. source: "./media/characters/ilia/front.svg",
  17358. extra: 1285 / 1255,
  17359. bottom: 0.06
  17360. }
  17361. },
  17362. },
  17363. [
  17364. {
  17365. name: "Normal",
  17366. height: math.unit(2.35, "meters")
  17367. },
  17368. {
  17369. name: "Macro",
  17370. height: math.unit(140, "meters"),
  17371. default: true
  17372. },
  17373. {
  17374. name: "Megamacro",
  17375. height: math.unit(100, "miles")
  17376. },
  17377. ]
  17378. ))
  17379. characterMakers.push(() => makeCharacter(
  17380. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17381. {
  17382. front: {
  17383. height: math.unit(6 + 5 / 12, "feet"),
  17384. weight: math.unit(190, "lb"),
  17385. name: "Front",
  17386. image: {
  17387. source: "./media/characters/kingdead/front.svg",
  17388. extra: 1228 / 1177
  17389. }
  17390. },
  17391. },
  17392. [
  17393. {
  17394. name: "Micro",
  17395. height: math.unit(7, "inches")
  17396. },
  17397. {
  17398. name: "Normal",
  17399. height: math.unit(6 + 5 / 12, "feet")
  17400. },
  17401. {
  17402. name: "Macro",
  17403. height: math.unit(150, "feet"),
  17404. default: true
  17405. },
  17406. {
  17407. name: "Megamacro",
  17408. height: math.unit(200, "miles")
  17409. },
  17410. ]
  17411. ))
  17412. characterMakers.push(() => makeCharacter(
  17413. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17414. {
  17415. front: {
  17416. height: math.unit(8, "feet"),
  17417. weight: math.unit(600, "lb"),
  17418. name: "Front",
  17419. image: {
  17420. source: "./media/characters/kyrehx/front.svg",
  17421. extra: 1195 / 1095,
  17422. bottom: 0.034
  17423. }
  17424. },
  17425. },
  17426. [
  17427. {
  17428. name: "Micro",
  17429. height: math.unit(2, "inches")
  17430. },
  17431. {
  17432. name: "Normal",
  17433. height: math.unit(8, "feet"),
  17434. default: true
  17435. },
  17436. {
  17437. name: "Macro",
  17438. height: math.unit(255, "feet")
  17439. },
  17440. ]
  17441. ))
  17442. characterMakers.push(() => makeCharacter(
  17443. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17444. {
  17445. front: {
  17446. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17447. weight: math.unit(184, "lb"),
  17448. name: "Front",
  17449. image: {
  17450. source: "./media/characters/xang/front.svg",
  17451. extra: 845 / 755
  17452. }
  17453. },
  17454. },
  17455. [
  17456. {
  17457. name: "Normal",
  17458. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17459. default: true
  17460. },
  17461. {
  17462. name: "Macro",
  17463. height: math.unit(0.935 * 146, "feet")
  17464. },
  17465. {
  17466. name: "Megamacro",
  17467. height: math.unit(0.935 * 3, "miles")
  17468. },
  17469. ]
  17470. ))
  17471. characterMakers.push(() => makeCharacter(
  17472. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17473. {
  17474. frontDressed: {
  17475. height: math.unit(5 + 7 / 12, "feet"),
  17476. weight: math.unit(140, "lb"),
  17477. name: "Front (Dressed)",
  17478. image: {
  17479. source: "./media/characters/doc-weardno/front-dressed.svg",
  17480. extra: 263 / 234
  17481. }
  17482. },
  17483. backDressed: {
  17484. height: math.unit(5 + 7 / 12, "feet"),
  17485. weight: math.unit(140, "lb"),
  17486. name: "Back (Dressed)",
  17487. image: {
  17488. source: "./media/characters/doc-weardno/back-dressed.svg",
  17489. extra: 266 / 238
  17490. }
  17491. },
  17492. front: {
  17493. height: math.unit(5 + 7 / 12, "feet"),
  17494. weight: math.unit(140, "lb"),
  17495. name: "Front",
  17496. image: {
  17497. source: "./media/characters/doc-weardno/front.svg",
  17498. extra: 254 / 233
  17499. }
  17500. },
  17501. },
  17502. [
  17503. {
  17504. name: "Micro",
  17505. height: math.unit(3, "inches")
  17506. },
  17507. {
  17508. name: "Normal",
  17509. height: math.unit(5 + 7 / 12, "feet"),
  17510. default: true
  17511. },
  17512. {
  17513. name: "Macro",
  17514. height: math.unit(25, "feet")
  17515. },
  17516. {
  17517. name: "Megamacro",
  17518. height: math.unit(2, "miles")
  17519. },
  17520. ]
  17521. ))
  17522. characterMakers.push(() => makeCharacter(
  17523. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17524. {
  17525. front: {
  17526. height: math.unit(6 + 2 / 12, "feet"),
  17527. weight: math.unit(153, "lb"),
  17528. name: "Front",
  17529. image: {
  17530. source: "./media/characters/seth-whilst/front.svg",
  17531. bottom: 0.07
  17532. }
  17533. },
  17534. },
  17535. [
  17536. {
  17537. name: "Micro",
  17538. height: math.unit(5, "inches")
  17539. },
  17540. {
  17541. name: "Normal",
  17542. height: math.unit(6 + 2 / 12, "feet"),
  17543. default: true
  17544. },
  17545. ]
  17546. ))
  17547. characterMakers.push(() => makeCharacter(
  17548. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17549. {
  17550. front: {
  17551. height: math.unit(3, "inches"),
  17552. weight: math.unit(8, "grams"),
  17553. name: "Front",
  17554. image: {
  17555. source: "./media/characters/pocket-jabari/front.svg",
  17556. extra: 1024 / 974,
  17557. bottom: 0.039
  17558. }
  17559. },
  17560. },
  17561. [
  17562. {
  17563. name: "Minimicro",
  17564. height: math.unit(8, "mm")
  17565. },
  17566. {
  17567. name: "Micro",
  17568. height: math.unit(3, "inches"),
  17569. default: true
  17570. },
  17571. {
  17572. name: "Normal",
  17573. height: math.unit(3, "feet")
  17574. },
  17575. ]
  17576. ))
  17577. characterMakers.push(() => makeCharacter(
  17578. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17579. {
  17580. front: {
  17581. height: math.unit(15, "feet"),
  17582. weight: math.unit(3280, "lb"),
  17583. name: "Front",
  17584. image: {
  17585. source: "./media/characters/sapphy/front.svg",
  17586. extra: 671 / 577,
  17587. bottom: 0.085
  17588. }
  17589. },
  17590. back: {
  17591. height: math.unit(15, "feet"),
  17592. weight: math.unit(3280, "lb"),
  17593. name: "Back",
  17594. image: {
  17595. source: "./media/characters/sapphy/back.svg",
  17596. extra: 631 / 607,
  17597. bottom: 0.045
  17598. }
  17599. },
  17600. },
  17601. [
  17602. {
  17603. name: "Normal",
  17604. height: math.unit(15, "feet")
  17605. },
  17606. {
  17607. name: "Casual Macro",
  17608. height: math.unit(120, "feet")
  17609. },
  17610. {
  17611. name: "Macro",
  17612. height: math.unit(2150, "feet"),
  17613. default: true
  17614. },
  17615. {
  17616. name: "Megamacro",
  17617. height: math.unit(8, "miles")
  17618. },
  17619. {
  17620. name: "Galaxy Mom",
  17621. height: math.unit(6, "megalightyears")
  17622. },
  17623. ]
  17624. ))
  17625. characterMakers.push(() => makeCharacter(
  17626. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17627. {
  17628. front: {
  17629. height: math.unit(6, "feet"),
  17630. weight: math.unit(170, "lb"),
  17631. name: "Front",
  17632. image: {
  17633. source: "./media/characters/kiro/front.svg",
  17634. extra: 1064 / 1012,
  17635. bottom: 0.052
  17636. }
  17637. },
  17638. },
  17639. [
  17640. {
  17641. name: "Micro",
  17642. height: math.unit(6, "inches")
  17643. },
  17644. {
  17645. name: "Normal",
  17646. height: math.unit(6, "feet"),
  17647. default: true
  17648. },
  17649. {
  17650. name: "Macro",
  17651. height: math.unit(72, "feet")
  17652. },
  17653. ]
  17654. ))
  17655. characterMakers.push(() => makeCharacter(
  17656. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17657. {
  17658. front: {
  17659. height: math.unit(5 + 9 / 12, "feet"),
  17660. weight: math.unit(175, "lb"),
  17661. name: "Front",
  17662. image: {
  17663. source: "./media/characters/irishfox/front.svg",
  17664. extra: 1912 / 1680,
  17665. bottom: 0.02
  17666. }
  17667. },
  17668. },
  17669. [
  17670. {
  17671. name: "Nano",
  17672. height: math.unit(1, "mm")
  17673. },
  17674. {
  17675. name: "Micro",
  17676. height: math.unit(2, "inches")
  17677. },
  17678. {
  17679. name: "Normal",
  17680. height: math.unit(5 + 9 / 12, "feet"),
  17681. default: true
  17682. },
  17683. {
  17684. name: "Macro",
  17685. height: math.unit(45, "feet")
  17686. },
  17687. ]
  17688. ))
  17689. characterMakers.push(() => makeCharacter(
  17690. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  17691. {
  17692. front: {
  17693. height: math.unit(6 + 1 / 12, "feet"),
  17694. weight: math.unit(150, "lb"),
  17695. name: "Front",
  17696. image: {
  17697. source: "./media/characters/aronai-sieyes/front.svg",
  17698. extra: 1556 / 1480,
  17699. bottom: 0.015
  17700. }
  17701. },
  17702. side: {
  17703. height: math.unit(6 + 1 / 12, "feet"),
  17704. weight: math.unit(150, "lb"),
  17705. name: "Side",
  17706. image: {
  17707. source: "./media/characters/aronai-sieyes/side.svg",
  17708. extra: 1433 / 1390,
  17709. bottom: 0.0393
  17710. }
  17711. },
  17712. back: {
  17713. height: math.unit(6 + 1 / 12, "feet"),
  17714. weight: math.unit(150, "lb"),
  17715. name: "Back",
  17716. image: {
  17717. source: "./media/characters/aronai-sieyes/back.svg",
  17718. extra: 1544 / 1494,
  17719. bottom: 0.02
  17720. }
  17721. },
  17722. frontClothed: {
  17723. height: math.unit(6 + 1 / 12, "feet"),
  17724. weight: math.unit(150, "lb"),
  17725. name: "Front (Clothed)",
  17726. image: {
  17727. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17728. extra: 1582 / 1527
  17729. }
  17730. },
  17731. feral: {
  17732. height: math.unit(18, "feet"),
  17733. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17734. name: "Feral",
  17735. image: {
  17736. source: "./media/characters/aronai-sieyes/feral.svg",
  17737. extra: 1530 / 1240,
  17738. bottom: 0.035
  17739. }
  17740. },
  17741. },
  17742. [
  17743. {
  17744. name: "Micro",
  17745. height: math.unit(2, "inches")
  17746. },
  17747. {
  17748. name: "Normal",
  17749. height: math.unit(6 + 1 / 12, "feet"),
  17750. default: true
  17751. }
  17752. ]
  17753. ))
  17754. characterMakers.push(() => makeCharacter(
  17755. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  17756. {
  17757. front: {
  17758. height: math.unit(12, "feet"),
  17759. weight: math.unit(410, "kg"),
  17760. name: "Front",
  17761. image: {
  17762. source: "./media/characters/xuna/front.svg",
  17763. extra: 2184 / 1980
  17764. }
  17765. },
  17766. side: {
  17767. height: math.unit(12, "feet"),
  17768. weight: math.unit(410, "kg"),
  17769. name: "Side",
  17770. image: {
  17771. source: "./media/characters/xuna/side.svg",
  17772. extra: 2184 / 1980
  17773. }
  17774. },
  17775. back: {
  17776. height: math.unit(12, "feet"),
  17777. weight: math.unit(410, "kg"),
  17778. name: "Back",
  17779. image: {
  17780. source: "./media/characters/xuna/back.svg",
  17781. extra: 2184 / 1980
  17782. }
  17783. },
  17784. },
  17785. [
  17786. {
  17787. name: "Nano glow",
  17788. height: math.unit(10, "nm")
  17789. },
  17790. {
  17791. name: "Micro floof",
  17792. height: math.unit(0.3, "m")
  17793. },
  17794. {
  17795. name: "Huggable softy boi",
  17796. height: math.unit(3.6576, "m"),
  17797. default: true
  17798. },
  17799. {
  17800. name: "Admirable floof",
  17801. height: math.unit(80, "meters")
  17802. },
  17803. {
  17804. name: "Gentle macro",
  17805. height: math.unit(300, "meters")
  17806. },
  17807. {
  17808. name: "Very careful floof",
  17809. height: math.unit(3200, "meters")
  17810. },
  17811. {
  17812. name: "The mega floof",
  17813. height: math.unit(36000, "meters")
  17814. },
  17815. {
  17816. name: "Giga-fur-Wicker",
  17817. height: math.unit(4800000, "meters")
  17818. },
  17819. {
  17820. name: "Licky world",
  17821. height: math.unit(20000000, "meters")
  17822. },
  17823. {
  17824. name: "Floofy cyan sun",
  17825. height: math.unit(1500000000, "meters")
  17826. },
  17827. {
  17828. name: "Milky Wicker",
  17829. height: math.unit(1000000000000000000000, "meters")
  17830. },
  17831. {
  17832. name: "The observing Wicker",
  17833. height: math.unit(999999999999999999999999999, "meters")
  17834. },
  17835. ]
  17836. ))
  17837. characterMakers.push(() => makeCharacter(
  17838. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17839. {
  17840. front: {
  17841. height: math.unit(5 + 9 / 12, "feet"),
  17842. weight: math.unit(150, "lb"),
  17843. name: "Front",
  17844. image: {
  17845. source: "./media/characters/arokha-sieyes/front.svg",
  17846. extra: 1425 / 1284,
  17847. bottom: 0.05
  17848. }
  17849. },
  17850. },
  17851. [
  17852. {
  17853. name: "Normal",
  17854. height: math.unit(5 + 9 / 12, "feet")
  17855. },
  17856. {
  17857. name: "Macro",
  17858. height: math.unit(30, "meters"),
  17859. default: true
  17860. },
  17861. ]
  17862. ))
  17863. characterMakers.push(() => makeCharacter(
  17864. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17865. {
  17866. front: {
  17867. height: math.unit(6, "feet"),
  17868. weight: math.unit(180, "lb"),
  17869. name: "Front",
  17870. image: {
  17871. source: "./media/characters/arokh-sieyes/front.svg",
  17872. extra: 1830 / 1769,
  17873. bottom: 0.01
  17874. }
  17875. },
  17876. },
  17877. [
  17878. {
  17879. name: "Normal",
  17880. height: math.unit(6, "feet")
  17881. },
  17882. {
  17883. name: "Macro",
  17884. height: math.unit(30, "meters"),
  17885. default: true
  17886. },
  17887. ]
  17888. ))
  17889. characterMakers.push(() => makeCharacter(
  17890. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  17891. {
  17892. side: {
  17893. height: math.unit(13 + 1 / 12, "feet"),
  17894. weight: math.unit(8.5, "tonnes"),
  17895. name: "Side",
  17896. image: {
  17897. source: "./media/characters/goldeneye/side.svg",
  17898. extra: 1182 / 778,
  17899. bottom: 0.067
  17900. }
  17901. },
  17902. paw: {
  17903. height: math.unit(3.4, "feet"),
  17904. name: "Paw",
  17905. image: {
  17906. source: "./media/characters/goldeneye/paw.svg"
  17907. }
  17908. },
  17909. },
  17910. [
  17911. {
  17912. name: "Normal",
  17913. height: math.unit(13 + 1 / 12, "feet"),
  17914. default: true
  17915. },
  17916. ]
  17917. ))
  17918. characterMakers.push(() => makeCharacter(
  17919. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  17920. {
  17921. front: {
  17922. height: math.unit(6 + 1 / 12, "feet"),
  17923. weight: math.unit(210, "lb"),
  17924. name: "Front",
  17925. image: {
  17926. source: "./media/characters/leonardo-lycheborne/front.svg",
  17927. extra: 390 / 365,
  17928. bottom: 0.032
  17929. }
  17930. },
  17931. side: {
  17932. height: math.unit(6 + 1 / 12, "feet"),
  17933. weight: math.unit(210, "lb"),
  17934. name: "Side",
  17935. image: {
  17936. source: "./media/characters/leonardo-lycheborne/side.svg",
  17937. extra: 390 / 365,
  17938. bottom: 0.005
  17939. }
  17940. },
  17941. back: {
  17942. height: math.unit(6 + 1 / 12, "feet"),
  17943. weight: math.unit(210, "lb"),
  17944. name: "Back",
  17945. image: {
  17946. source: "./media/characters/leonardo-lycheborne/back.svg",
  17947. extra: 392 / 366,
  17948. bottom: 0.01
  17949. }
  17950. },
  17951. hand: {
  17952. height: math.unit(1.08, "feet"),
  17953. name: "Hand",
  17954. image: {
  17955. source: "./media/characters/leonardo-lycheborne/hand.svg"
  17956. }
  17957. },
  17958. foot: {
  17959. height: math.unit(1.32, "feet"),
  17960. name: "Foot",
  17961. image: {
  17962. source: "./media/characters/leonardo-lycheborne/foot.svg"
  17963. }
  17964. },
  17965. were: {
  17966. height: math.unit(20, "feet"),
  17967. weight: math.unit(7800, "lb"),
  17968. name: "Were",
  17969. image: {
  17970. source: "./media/characters/leonardo-lycheborne/were.svg",
  17971. extra: 308 / 294,
  17972. bottom: 0.048
  17973. }
  17974. },
  17975. feral: {
  17976. height: math.unit(7.5, "feet"),
  17977. weight: math.unit(600, "lb"),
  17978. name: "Feral",
  17979. image: {
  17980. source: "./media/characters/leonardo-lycheborne/feral.svg",
  17981. extra: 210 / 186,
  17982. bottom: 0.108
  17983. }
  17984. },
  17985. taur: {
  17986. height: math.unit(11, "feet"),
  17987. weight: math.unit(3300, "lb"),
  17988. name: "Taur",
  17989. image: {
  17990. source: "./media/characters/leonardo-lycheborne/taur.svg",
  17991. extra: 320 / 303,
  17992. bottom: 0.025
  17993. }
  17994. },
  17995. barghest: {
  17996. height: math.unit(11, "feet"),
  17997. weight: math.unit(1300, "lb"),
  17998. name: "Barghest",
  17999. image: {
  18000. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18001. extra: 323 / 302,
  18002. bottom: 0.027
  18003. }
  18004. },
  18005. dick: {
  18006. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18007. name: "Dick",
  18008. image: {
  18009. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18010. }
  18011. },
  18012. dickWere: {
  18013. height: math.unit((20) / 3.8, "feet"),
  18014. name: "Dick (Were)",
  18015. image: {
  18016. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18017. }
  18018. },
  18019. },
  18020. [
  18021. {
  18022. name: "Normal",
  18023. height: math.unit(6 + 1 / 12, "feet"),
  18024. default: true
  18025. },
  18026. ]
  18027. ))
  18028. characterMakers.push(() => makeCharacter(
  18029. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18030. {
  18031. front: {
  18032. height: math.unit(10, "feet"),
  18033. weight: math.unit(350, "lb"),
  18034. name: "Front",
  18035. image: {
  18036. source: "./media/characters/jet/front.svg",
  18037. extra: 2050 / 1980,
  18038. bottom: 0.013
  18039. }
  18040. },
  18041. back: {
  18042. height: math.unit(10, "feet"),
  18043. weight: math.unit(350, "lb"),
  18044. name: "Back",
  18045. image: {
  18046. source: "./media/characters/jet/back.svg",
  18047. extra: 2050 / 1980,
  18048. bottom: 0.013
  18049. }
  18050. },
  18051. },
  18052. [
  18053. {
  18054. name: "Micro",
  18055. height: math.unit(6, "inches")
  18056. },
  18057. {
  18058. name: "Normal",
  18059. height: math.unit(10, "feet"),
  18060. default: true
  18061. },
  18062. {
  18063. name: "Macro",
  18064. height: math.unit(100, "feet")
  18065. },
  18066. ]
  18067. ))
  18068. characterMakers.push(() => makeCharacter(
  18069. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18070. {
  18071. front: {
  18072. height: math.unit(15, "feet"),
  18073. weight: math.unit(2800, "lb"),
  18074. name: "Front",
  18075. image: {
  18076. source: "./media/characters/tanarath/front.svg",
  18077. extra: 2392 / 2220,
  18078. bottom: 0.03
  18079. }
  18080. },
  18081. back: {
  18082. height: math.unit(15, "feet"),
  18083. weight: math.unit(2800, "lb"),
  18084. name: "Back",
  18085. image: {
  18086. source: "./media/characters/tanarath/back.svg",
  18087. extra: 2392 / 2220,
  18088. bottom: 0.03
  18089. }
  18090. },
  18091. },
  18092. [
  18093. {
  18094. name: "Normal",
  18095. height: math.unit(15, "feet"),
  18096. default: true
  18097. },
  18098. ]
  18099. ))
  18100. characterMakers.push(() => makeCharacter(
  18101. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18102. {
  18103. front: {
  18104. height: math.unit(7 + 1 / 12, "feet"),
  18105. weight: math.unit(175, "lb"),
  18106. name: "Front",
  18107. image: {
  18108. source: "./media/characters/patty-cattybatty/front.svg",
  18109. extra: 908 / 874,
  18110. bottom: 0.025
  18111. }
  18112. },
  18113. },
  18114. [
  18115. {
  18116. name: "Micro",
  18117. height: math.unit(1, "inch")
  18118. },
  18119. {
  18120. name: "Normal",
  18121. height: math.unit(7 + 1 / 12, "feet")
  18122. },
  18123. {
  18124. name: "Mini Macro",
  18125. height: math.unit(155, "feet")
  18126. },
  18127. {
  18128. name: "Macro",
  18129. height: math.unit(1077, "feet")
  18130. },
  18131. {
  18132. name: "Mega Macro",
  18133. height: math.unit(47650, "feet"),
  18134. default: true
  18135. },
  18136. {
  18137. name: "Giga Macro",
  18138. height: math.unit(440, "miles")
  18139. },
  18140. {
  18141. name: "Tera Macro",
  18142. height: math.unit(8700, "miles")
  18143. },
  18144. {
  18145. name: "Planetary Macro",
  18146. height: math.unit(32700, "miles")
  18147. },
  18148. {
  18149. name: "Solar Macro",
  18150. height: math.unit(550000, "miles")
  18151. },
  18152. {
  18153. name: "Celestial Macro",
  18154. height: math.unit(2.5, "AU")
  18155. },
  18156. ]
  18157. ))
  18158. characterMakers.push(() => makeCharacter(
  18159. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18160. {
  18161. front: {
  18162. height: math.unit(4 + 5 / 12, "feet"),
  18163. weight: math.unit(90, "lb"),
  18164. name: "Front",
  18165. image: {
  18166. source: "./media/characters/cappu/front.svg",
  18167. extra: 1247 / 1152,
  18168. bottom: 0.012
  18169. }
  18170. },
  18171. },
  18172. [
  18173. {
  18174. name: "Normal",
  18175. height: math.unit(4 + 5 / 12, "feet"),
  18176. default: true
  18177. },
  18178. ]
  18179. ))
  18180. characterMakers.push(() => makeCharacter(
  18181. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18182. {
  18183. frontDressed: {
  18184. height: math.unit(70, "cm"),
  18185. weight: math.unit(6, "kg"),
  18186. name: "Front (Dressed)",
  18187. image: {
  18188. source: "./media/characters/sebi/front-dressed.svg",
  18189. extra: 713.5 / 686.5,
  18190. bottom: 0.003
  18191. }
  18192. },
  18193. front: {
  18194. height: math.unit(70, "cm"),
  18195. weight: math.unit(5, "kg"),
  18196. name: "Front",
  18197. image: {
  18198. source: "./media/characters/sebi/front.svg",
  18199. extra: 713.5 / 686.5,
  18200. bottom: 0.003
  18201. }
  18202. }
  18203. },
  18204. [
  18205. {
  18206. name: "Normal",
  18207. height: math.unit(70, "cm"),
  18208. default: true
  18209. },
  18210. {
  18211. name: "Macro",
  18212. height: math.unit(8, "meters")
  18213. },
  18214. ]
  18215. ))
  18216. characterMakers.push(() => makeCharacter(
  18217. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18218. {
  18219. front: {
  18220. height: math.unit(6, "feet"),
  18221. weight: math.unit(150, "lb"),
  18222. name: "Front",
  18223. image: {
  18224. source: "./media/characters/typhek/front.svg",
  18225. extra: 1948 / 1929,
  18226. bottom: 0.025
  18227. }
  18228. },
  18229. side: {
  18230. height: math.unit(6, "feet"),
  18231. weight: math.unit(150, "lb"),
  18232. name: "Side",
  18233. image: {
  18234. source: "./media/characters/typhek/side.svg",
  18235. extra: 2034 / 2010,
  18236. bottom: 0.003
  18237. }
  18238. },
  18239. back: {
  18240. height: math.unit(6, "feet"),
  18241. weight: math.unit(150, "lb"),
  18242. name: "Back",
  18243. image: {
  18244. source: "./media/characters/typhek/back.svg",
  18245. extra: 2005 / 1978,
  18246. bottom: 0.004
  18247. }
  18248. },
  18249. palm: {
  18250. height: math.unit(1.2, "feet"),
  18251. name: "Palm",
  18252. image: {
  18253. source: "./media/characters/typhek/palm.svg"
  18254. }
  18255. },
  18256. fist: {
  18257. height: math.unit(1.1, "feet"),
  18258. name: "Fist",
  18259. image: {
  18260. source: "./media/characters/typhek/fist.svg"
  18261. }
  18262. },
  18263. foot: {
  18264. height: math.unit(1.57, "feet"),
  18265. name: "Foot",
  18266. image: {
  18267. source: "./media/characters/typhek/foot.svg"
  18268. }
  18269. },
  18270. sole: {
  18271. height: math.unit(2.05, "feet"),
  18272. name: "Sole",
  18273. image: {
  18274. source: "./media/characters/typhek/sole.svg"
  18275. }
  18276. },
  18277. },
  18278. [
  18279. {
  18280. name: "Macro",
  18281. height: math.unit(40, "stories"),
  18282. default: true
  18283. },
  18284. {
  18285. name: "Megamacro",
  18286. height: math.unit(1, "mile")
  18287. },
  18288. {
  18289. name: "Gigamacro",
  18290. height: math.unit(4000, "solarradii")
  18291. },
  18292. {
  18293. name: "Universal",
  18294. height: math.unit(1.1, "universes")
  18295. }
  18296. ]
  18297. ))
  18298. characterMakers.push(() => makeCharacter(
  18299. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18300. {
  18301. side: {
  18302. height: math.unit(5 + 7 / 12, "feet"),
  18303. weight: math.unit(150, "lb"),
  18304. name: "Side",
  18305. image: {
  18306. source: "./media/characters/kassy/side.svg",
  18307. extra: 1280 / 1225,
  18308. bottom: 0.002
  18309. }
  18310. },
  18311. front: {
  18312. height: math.unit(5 + 7 / 12, "feet"),
  18313. weight: math.unit(150, "lb"),
  18314. name: "Front",
  18315. image: {
  18316. source: "./media/characters/kassy/front.svg",
  18317. extra: 1280 / 1225,
  18318. bottom: 0.025
  18319. }
  18320. },
  18321. back: {
  18322. height: math.unit(5 + 7 / 12, "feet"),
  18323. weight: math.unit(150, "lb"),
  18324. name: "Back",
  18325. image: {
  18326. source: "./media/characters/kassy/back.svg",
  18327. extra: 1280 / 1225,
  18328. bottom: 0.002
  18329. }
  18330. },
  18331. foot: {
  18332. height: math.unit(1.266, "feet"),
  18333. name: "Foot",
  18334. image: {
  18335. source: "./media/characters/kassy/foot.svg"
  18336. }
  18337. },
  18338. },
  18339. [
  18340. {
  18341. name: "Normal",
  18342. height: math.unit(5 + 7 / 12, "feet")
  18343. },
  18344. {
  18345. name: "Macro",
  18346. height: math.unit(137, "feet"),
  18347. default: true
  18348. },
  18349. {
  18350. name: "Megamacro",
  18351. height: math.unit(1, "mile")
  18352. },
  18353. ]
  18354. ))
  18355. characterMakers.push(() => makeCharacter(
  18356. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18357. {
  18358. front: {
  18359. height: math.unit(6 + 1 / 12, "feet"),
  18360. weight: math.unit(200, "lb"),
  18361. name: "Front",
  18362. image: {
  18363. source: "./media/characters/neil/front.svg",
  18364. extra: 1326 / 1250,
  18365. bottom: 0.023
  18366. }
  18367. },
  18368. },
  18369. [
  18370. {
  18371. name: "Normal",
  18372. height: math.unit(6 + 1 / 12, "feet"),
  18373. default: true
  18374. },
  18375. {
  18376. name: "Macro",
  18377. height: math.unit(200, "feet")
  18378. },
  18379. ]
  18380. ))
  18381. characterMakers.push(() => makeCharacter(
  18382. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18383. {
  18384. front: {
  18385. height: math.unit(5 + 9 / 12, "feet"),
  18386. weight: math.unit(190, "lb"),
  18387. name: "Front",
  18388. image: {
  18389. source: "./media/characters/atticus/front.svg",
  18390. extra: 2934 / 2785,
  18391. bottom: 0.025
  18392. }
  18393. },
  18394. },
  18395. [
  18396. {
  18397. name: "Normal",
  18398. height: math.unit(5 + 9 / 12, "feet"),
  18399. default: true
  18400. },
  18401. {
  18402. name: "Macro",
  18403. height: math.unit(180, "feet")
  18404. },
  18405. ]
  18406. ))
  18407. characterMakers.push(() => makeCharacter(
  18408. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18409. {
  18410. side: {
  18411. height: math.unit(9, "feet"),
  18412. weight: math.unit(650, "lb"),
  18413. name: "Side",
  18414. image: {
  18415. source: "./media/characters/milo/side.svg",
  18416. extra: 2644 / 2310,
  18417. bottom: 0.032
  18418. }
  18419. },
  18420. },
  18421. [
  18422. {
  18423. name: "Normal",
  18424. height: math.unit(9, "feet"),
  18425. default: true
  18426. },
  18427. {
  18428. name: "Macro",
  18429. height: math.unit(300, "feet")
  18430. },
  18431. ]
  18432. ))
  18433. characterMakers.push(() => makeCharacter(
  18434. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18435. {
  18436. side: {
  18437. height: math.unit(8, "meters"),
  18438. weight: math.unit(90000, "kg"),
  18439. name: "Side",
  18440. image: {
  18441. source: "./media/characters/ijzer/side.svg",
  18442. extra: 2756 / 1600,
  18443. bottom: 0.01
  18444. }
  18445. },
  18446. },
  18447. [
  18448. {
  18449. name: "Small",
  18450. height: math.unit(3, "meters")
  18451. },
  18452. {
  18453. name: "Normal",
  18454. height: math.unit(8, "meters"),
  18455. default: true
  18456. },
  18457. {
  18458. name: "Normal+",
  18459. height: math.unit(10, "meters")
  18460. },
  18461. {
  18462. name: "Bigger",
  18463. height: math.unit(24, "meters")
  18464. },
  18465. {
  18466. name: "Huge",
  18467. height: math.unit(80, "meters")
  18468. },
  18469. ]
  18470. ))
  18471. characterMakers.push(() => makeCharacter(
  18472. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18473. {
  18474. front: {
  18475. height: math.unit(6 + 2 / 12, "feet"),
  18476. weight: math.unit(153, "lb"),
  18477. name: "Front",
  18478. image: {
  18479. source: "./media/characters/luca-cervicum/front.svg",
  18480. extra: 370 / 327,
  18481. bottom: 0.015
  18482. }
  18483. },
  18484. back: {
  18485. height: math.unit(6 + 2 / 12, "feet"),
  18486. weight: math.unit(153, "lb"),
  18487. name: "Back",
  18488. image: {
  18489. source: "./media/characters/luca-cervicum/back.svg",
  18490. extra: 367 / 333,
  18491. bottom: 0.005
  18492. }
  18493. },
  18494. frontGear: {
  18495. height: math.unit(6 + 2 / 12, "feet"),
  18496. weight: math.unit(173, "lb"),
  18497. name: "Front (Gear)",
  18498. image: {
  18499. source: "./media/characters/luca-cervicum/front-gear.svg",
  18500. extra: 377 / 333,
  18501. bottom: 0.006
  18502. }
  18503. },
  18504. },
  18505. [
  18506. {
  18507. name: "Normal",
  18508. height: math.unit(6 + 2 / 12, "feet"),
  18509. default: true
  18510. },
  18511. ]
  18512. ))
  18513. characterMakers.push(() => makeCharacter(
  18514. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18515. {
  18516. front: {
  18517. height: math.unit(6 + 1 / 12, "feet"),
  18518. weight: math.unit(304, "lb"),
  18519. name: "Front",
  18520. image: {
  18521. source: "./media/characters/oliver/front.svg",
  18522. extra: 157 / 143,
  18523. bottom: 0.08
  18524. }
  18525. },
  18526. },
  18527. [
  18528. {
  18529. name: "Normal",
  18530. height: math.unit(6 + 1 / 12, "feet"),
  18531. default: true
  18532. },
  18533. ]
  18534. ))
  18535. characterMakers.push(() => makeCharacter(
  18536. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18537. {
  18538. front: {
  18539. height: math.unit(5 + 7 / 12, "feet"),
  18540. weight: math.unit(140, "lb"),
  18541. name: "Front",
  18542. image: {
  18543. source: "./media/characters/shane/front.svg",
  18544. extra: 304 / 289,
  18545. bottom: 0.005
  18546. }
  18547. },
  18548. },
  18549. [
  18550. {
  18551. name: "Normal",
  18552. height: math.unit(5 + 7 / 12, "feet"),
  18553. default: true
  18554. },
  18555. ]
  18556. ))
  18557. characterMakers.push(() => makeCharacter(
  18558. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18559. {
  18560. front: {
  18561. height: math.unit(5 + 9 / 12, "feet"),
  18562. weight: math.unit(178, "lb"),
  18563. name: "Front",
  18564. image: {
  18565. source: "./media/characters/shin/front.svg",
  18566. extra: 159 / 151,
  18567. bottom: 0.015
  18568. }
  18569. },
  18570. },
  18571. [
  18572. {
  18573. name: "Normal",
  18574. height: math.unit(5 + 9 / 12, "feet"),
  18575. default: true
  18576. },
  18577. ]
  18578. ))
  18579. characterMakers.push(() => makeCharacter(
  18580. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18581. {
  18582. front: {
  18583. height: math.unit(5 + 10 / 12, "feet"),
  18584. weight: math.unit(168, "lb"),
  18585. name: "Front",
  18586. image: {
  18587. source: "./media/characters/xerxes/front.svg",
  18588. extra: 282 / 260,
  18589. bottom: 0.045
  18590. }
  18591. },
  18592. },
  18593. [
  18594. {
  18595. name: "Normal",
  18596. height: math.unit(5 + 10 / 12, "feet"),
  18597. default: true
  18598. },
  18599. ]
  18600. ))
  18601. characterMakers.push(() => makeCharacter(
  18602. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18603. {
  18604. front: {
  18605. height: math.unit(6 + 7 / 12, "feet"),
  18606. weight: math.unit(208, "lb"),
  18607. name: "Front",
  18608. image: {
  18609. source: "./media/characters/chaska/front.svg",
  18610. extra: 332 / 319,
  18611. bottom: 0.015
  18612. }
  18613. },
  18614. },
  18615. [
  18616. {
  18617. name: "Normal",
  18618. height: math.unit(6 + 7 / 12, "feet"),
  18619. default: true
  18620. },
  18621. ]
  18622. ))
  18623. characterMakers.push(() => makeCharacter(
  18624. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18625. {
  18626. front: {
  18627. height: math.unit(5 + 8 / 12, "feet"),
  18628. weight: math.unit(208, "lb"),
  18629. name: "Front",
  18630. image: {
  18631. source: "./media/characters/enuk/front.svg",
  18632. extra: 437 / 406,
  18633. bottom: 0.02
  18634. }
  18635. },
  18636. },
  18637. [
  18638. {
  18639. name: "Normal",
  18640. height: math.unit(5 + 8 / 12, "feet"),
  18641. default: true
  18642. },
  18643. ]
  18644. ))
  18645. characterMakers.push(() => makeCharacter(
  18646. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18647. {
  18648. front: {
  18649. height: math.unit(5 + 10 / 12, "feet"),
  18650. weight: math.unit(252, "lb"),
  18651. name: "Front",
  18652. image: {
  18653. source: "./media/characters/bruun/front.svg",
  18654. extra: 197 / 187,
  18655. bottom: 0.012
  18656. }
  18657. },
  18658. },
  18659. [
  18660. {
  18661. name: "Normal",
  18662. height: math.unit(5 + 10 / 12, "feet"),
  18663. default: true
  18664. },
  18665. ]
  18666. ))
  18667. characterMakers.push(() => makeCharacter(
  18668. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18669. {
  18670. front: {
  18671. height: math.unit(6 + 10 / 12, "feet"),
  18672. weight: math.unit(255, "lb"),
  18673. name: "Front",
  18674. image: {
  18675. source: "./media/characters/alexeev/front.svg",
  18676. extra: 213 / 200,
  18677. bottom: 0.05
  18678. }
  18679. },
  18680. },
  18681. [
  18682. {
  18683. name: "Normal",
  18684. height: math.unit(6 + 10 / 12, "feet"),
  18685. default: true
  18686. },
  18687. ]
  18688. ))
  18689. characterMakers.push(() => makeCharacter(
  18690. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  18691. {
  18692. front: {
  18693. height: math.unit(2 + 8 / 12, "feet"),
  18694. weight: math.unit(22, "lb"),
  18695. name: "Front",
  18696. image: {
  18697. source: "./media/characters/evelyn/front.svg",
  18698. extra: 208 / 180
  18699. }
  18700. },
  18701. },
  18702. [
  18703. {
  18704. name: "Normal",
  18705. height: math.unit(2 + 8 / 12, "feet"),
  18706. default: true
  18707. },
  18708. ]
  18709. ))
  18710. characterMakers.push(() => makeCharacter(
  18711. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  18712. {
  18713. front: {
  18714. height: math.unit(5 + 9 / 12, "feet"),
  18715. weight: math.unit(139, "lb"),
  18716. name: "Front",
  18717. image: {
  18718. source: "./media/characters/inca/front.svg",
  18719. extra: 294 / 291,
  18720. bottom: 0.03
  18721. }
  18722. },
  18723. },
  18724. [
  18725. {
  18726. name: "Normal",
  18727. height: math.unit(5 + 9 / 12, "feet"),
  18728. default: true
  18729. },
  18730. ]
  18731. ))
  18732. characterMakers.push(() => makeCharacter(
  18733. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  18734. {
  18735. front: {
  18736. height: math.unit(5 + 1 / 12, "feet"),
  18737. weight: math.unit(84, "lb"),
  18738. name: "Front",
  18739. image: {
  18740. source: "./media/characters/magdalene/front.svg",
  18741. extra: 293 / 273
  18742. }
  18743. },
  18744. },
  18745. [
  18746. {
  18747. name: "Normal",
  18748. height: math.unit(5 + 1 / 12, "feet"),
  18749. default: true
  18750. },
  18751. ]
  18752. ))
  18753. characterMakers.push(() => makeCharacter(
  18754. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  18755. {
  18756. front: {
  18757. height: math.unit(6 + 3 / 12, "feet"),
  18758. weight: math.unit(185, "lb"),
  18759. name: "Front",
  18760. image: {
  18761. source: "./media/characters/mera/front.svg",
  18762. extra: 291 / 277,
  18763. bottom: 0.03
  18764. }
  18765. },
  18766. },
  18767. [
  18768. {
  18769. name: "Normal",
  18770. height: math.unit(6 + 3 / 12, "feet"),
  18771. default: true
  18772. },
  18773. ]
  18774. ))
  18775. characterMakers.push(() => makeCharacter(
  18776. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  18777. {
  18778. front: {
  18779. height: math.unit(6 + 7 / 12, "feet"),
  18780. weight: math.unit(160, "lb"),
  18781. name: "Front",
  18782. image: {
  18783. source: "./media/characters/ceres/front.svg",
  18784. extra: 1023 / 950,
  18785. bottom: 0.027
  18786. }
  18787. },
  18788. back: {
  18789. height: math.unit(6 + 7 / 12, "feet"),
  18790. weight: math.unit(160, "lb"),
  18791. name: "Back",
  18792. image: {
  18793. source: "./media/characters/ceres/back.svg",
  18794. extra: 1023 / 950
  18795. }
  18796. },
  18797. },
  18798. [
  18799. {
  18800. name: "Normal",
  18801. height: math.unit(6 + 7 / 12, "feet"),
  18802. default: true
  18803. },
  18804. ]
  18805. ))
  18806. characterMakers.push(() => makeCharacter(
  18807. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  18808. {
  18809. front: {
  18810. height: math.unit(5 + 10 / 12, "feet"),
  18811. weight: math.unit(150, "lb"),
  18812. name: "Front",
  18813. image: {
  18814. source: "./media/characters/kris/front.svg",
  18815. extra: 885 / 803,
  18816. bottom: 0.03
  18817. }
  18818. },
  18819. },
  18820. [
  18821. {
  18822. name: "Normal",
  18823. height: math.unit(5 + 10 / 12, "feet"),
  18824. default: true
  18825. },
  18826. ]
  18827. ))
  18828. characterMakers.push(() => makeCharacter(
  18829. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  18830. {
  18831. front: {
  18832. height: math.unit(7, "feet"),
  18833. weight: math.unit(120, "kg"),
  18834. name: "Front",
  18835. image: {
  18836. source: "./media/characters/taluthus/front.svg",
  18837. extra: 903 / 833,
  18838. bottom: 0.015
  18839. }
  18840. },
  18841. },
  18842. [
  18843. {
  18844. name: "Normal",
  18845. height: math.unit(7, "feet"),
  18846. default: true
  18847. },
  18848. {
  18849. name: "Macro",
  18850. height: math.unit(300, "feet")
  18851. },
  18852. ]
  18853. ))
  18854. characterMakers.push(() => makeCharacter(
  18855. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  18856. {
  18857. front: {
  18858. height: math.unit(5 + 9 / 12, "feet"),
  18859. weight: math.unit(145, "lb"),
  18860. name: "Front",
  18861. image: {
  18862. source: "./media/characters/dawn/front.svg",
  18863. extra: 2094 / 2016,
  18864. bottom: 0.025
  18865. }
  18866. },
  18867. back: {
  18868. height: math.unit(5 + 9 / 12, "feet"),
  18869. weight: math.unit(160, "lb"),
  18870. name: "Back",
  18871. image: {
  18872. source: "./media/characters/dawn/back.svg",
  18873. extra: 2112 / 2080,
  18874. bottom: 0.005
  18875. }
  18876. },
  18877. },
  18878. [
  18879. {
  18880. name: "Normal",
  18881. height: math.unit(6 + 7 / 12, "feet"),
  18882. default: true
  18883. },
  18884. ]
  18885. ))
  18886. characterMakers.push(() => makeCharacter(
  18887. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  18888. {
  18889. anthro: {
  18890. height: math.unit(8 + 3 / 12, "feet"),
  18891. weight: math.unit(450, "lb"),
  18892. name: "Anthro",
  18893. image: {
  18894. source: "./media/characters/arador/anthro.svg",
  18895. extra: 1835 / 1718,
  18896. bottom: 0.025
  18897. }
  18898. },
  18899. feral: {
  18900. height: math.unit(4, "feet"),
  18901. weight: math.unit(200, "lb"),
  18902. name: "Feral",
  18903. image: {
  18904. source: "./media/characters/arador/feral.svg",
  18905. extra: 1683 / 1514,
  18906. bottom: 0.07
  18907. }
  18908. },
  18909. },
  18910. [
  18911. {
  18912. name: "Normal",
  18913. height: math.unit(8 + 3 / 12, "feet")
  18914. },
  18915. {
  18916. name: "Macro",
  18917. height: math.unit(82.5, "feet"),
  18918. default: true
  18919. },
  18920. ]
  18921. ))
  18922. characterMakers.push(() => makeCharacter(
  18923. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  18924. {
  18925. front: {
  18926. height: math.unit(5 + 10 / 12, "feet"),
  18927. weight: math.unit(125, "lb"),
  18928. name: "Front",
  18929. image: {
  18930. source: "./media/characters/dharsi/front.svg",
  18931. extra: 716 / 630,
  18932. bottom: 0.035
  18933. }
  18934. },
  18935. },
  18936. [
  18937. {
  18938. name: "Nano",
  18939. height: math.unit(100, "nm")
  18940. },
  18941. {
  18942. name: "Micro",
  18943. height: math.unit(2, "inches")
  18944. },
  18945. {
  18946. name: "Normal",
  18947. height: math.unit(5 + 10 / 12, "feet"),
  18948. default: true
  18949. },
  18950. {
  18951. name: "Macro",
  18952. height: math.unit(1000, "feet")
  18953. },
  18954. {
  18955. name: "Megamacro",
  18956. height: math.unit(10, "miles")
  18957. },
  18958. {
  18959. name: "Gigamacro",
  18960. height: math.unit(3000, "miles")
  18961. },
  18962. {
  18963. name: "Teramacro",
  18964. height: math.unit(500000, "miles")
  18965. },
  18966. {
  18967. name: "Teramacro+",
  18968. height: math.unit(30, "galaxies")
  18969. },
  18970. ]
  18971. ))
  18972. characterMakers.push(() => makeCharacter(
  18973. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  18974. {
  18975. front: {
  18976. height: math.unit(6, "feet"),
  18977. weight: math.unit(150, "lb"),
  18978. name: "Front",
  18979. image: {
  18980. source: "./media/characters/deathy/front.svg",
  18981. extra: 1552 / 1463,
  18982. bottom: 0.025
  18983. }
  18984. },
  18985. side: {
  18986. height: math.unit(6, "feet"),
  18987. weight: math.unit(150, "lb"),
  18988. name: "Side",
  18989. image: {
  18990. source: "./media/characters/deathy/side.svg",
  18991. extra: 1604 / 1455,
  18992. bottom: 0.025
  18993. }
  18994. },
  18995. back: {
  18996. height: math.unit(6, "feet"),
  18997. weight: math.unit(150, "lb"),
  18998. name: "Back",
  18999. image: {
  19000. source: "./media/characters/deathy/back.svg",
  19001. extra: 1580 / 1463,
  19002. bottom: 0.005
  19003. }
  19004. },
  19005. },
  19006. [
  19007. {
  19008. name: "Micro",
  19009. height: math.unit(5, "millimeters")
  19010. },
  19011. {
  19012. name: "Normal",
  19013. height: math.unit(6 + 5 / 12, "feet"),
  19014. default: true
  19015. },
  19016. ]
  19017. ))
  19018. characterMakers.push(() => makeCharacter(
  19019. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19020. {
  19021. front: {
  19022. height: math.unit(16, "feet"),
  19023. weight: math.unit(4000, "lb"),
  19024. name: "Front",
  19025. image: {
  19026. source: "./media/characters/juniper/front.svg",
  19027. bottom: 0.04
  19028. }
  19029. },
  19030. },
  19031. [
  19032. {
  19033. name: "Normal",
  19034. height: math.unit(16, "feet"),
  19035. default: true
  19036. },
  19037. ]
  19038. ))
  19039. characterMakers.push(() => makeCharacter(
  19040. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19041. {
  19042. front: {
  19043. height: math.unit(6, "feet"),
  19044. weight: math.unit(150, "lb"),
  19045. name: "Front",
  19046. image: {
  19047. source: "./media/characters/hipster/front.svg",
  19048. extra: 1312 / 1209,
  19049. bottom: 0.025
  19050. }
  19051. },
  19052. back: {
  19053. height: math.unit(6, "feet"),
  19054. weight: math.unit(150, "lb"),
  19055. name: "Back",
  19056. image: {
  19057. source: "./media/characters/hipster/back.svg",
  19058. extra: 1281 / 1196,
  19059. bottom: 0.01
  19060. }
  19061. },
  19062. },
  19063. [
  19064. {
  19065. name: "Micro",
  19066. height: math.unit(1, "mm")
  19067. },
  19068. {
  19069. name: "Normal",
  19070. height: math.unit(4, "inches"),
  19071. default: true
  19072. },
  19073. {
  19074. name: "Macro",
  19075. height: math.unit(500, "feet")
  19076. },
  19077. {
  19078. name: "Megamacro",
  19079. height: math.unit(1000, "miles")
  19080. },
  19081. ]
  19082. ))
  19083. characterMakers.push(() => makeCharacter(
  19084. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19085. {
  19086. front: {
  19087. height: math.unit(6, "feet"),
  19088. weight: math.unit(150, "lb"),
  19089. name: "Front",
  19090. image: {
  19091. source: "./media/characters/tendirmuldr/front.svg",
  19092. extra: 1878 / 1772,
  19093. bottom: 0.015
  19094. }
  19095. },
  19096. },
  19097. [
  19098. {
  19099. name: "Megamacro",
  19100. height: math.unit(1500, "miles"),
  19101. default: true
  19102. },
  19103. ]
  19104. ))
  19105. characterMakers.push(() => makeCharacter(
  19106. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19107. {
  19108. front: {
  19109. height: math.unit(14, "feet"),
  19110. weight: math.unit(12000, "lb"),
  19111. name: "Front",
  19112. image: {
  19113. source: "./media/characters/mort/front.svg",
  19114. extra: 365 / 318,
  19115. bottom: 0.01
  19116. }
  19117. },
  19118. side: {
  19119. height: math.unit(14, "feet"),
  19120. weight: math.unit(12000, "lb"),
  19121. name: "Side",
  19122. image: {
  19123. source: "./media/characters/mort/side.svg",
  19124. extra: 365 / 318,
  19125. bottom: 0.052
  19126. },
  19127. default: true
  19128. },
  19129. back: {
  19130. height: math.unit(14, "feet"),
  19131. weight: math.unit(12000, "lb"),
  19132. name: "Back",
  19133. image: {
  19134. source: "./media/characters/mort/back.svg",
  19135. extra: 371 / 332,
  19136. bottom: 0.18
  19137. }
  19138. },
  19139. },
  19140. [
  19141. {
  19142. name: "Normal",
  19143. height: math.unit(14, "feet"),
  19144. default: true
  19145. },
  19146. ]
  19147. ))
  19148. characterMakers.push(() => makeCharacter(
  19149. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19150. {
  19151. front: {
  19152. height: math.unit(8, "feet"),
  19153. weight: math.unit(1, "ton"),
  19154. name: "Front",
  19155. image: {
  19156. source: "./media/characters/lycoa/front.svg",
  19157. extra: 1875 / 1789,
  19158. bottom: 0.022
  19159. }
  19160. },
  19161. back: {
  19162. height: math.unit(8, "feet"),
  19163. weight: math.unit(1, "ton"),
  19164. name: "Back",
  19165. image: {
  19166. source: "./media/characters/lycoa/back.svg",
  19167. extra: 1835 / 1781,
  19168. bottom: 0.03
  19169. }
  19170. },
  19171. head: {
  19172. height: math.unit(2.1, "feet"),
  19173. name: "Head",
  19174. image: {
  19175. source: "./media/characters/lycoa/head.svg"
  19176. }
  19177. },
  19178. tailmaw: {
  19179. height: math.unit(1.9, "feet"),
  19180. name: "Tailmaw",
  19181. image: {
  19182. source: "./media/characters/lycoa/tailmaw.svg"
  19183. }
  19184. },
  19185. tentacles: {
  19186. height: math.unit(2.1, "feet"),
  19187. name: "Tentacles",
  19188. image: {
  19189. source: "./media/characters/lycoa/tentacles.svg"
  19190. }
  19191. },
  19192. dick: {
  19193. height: math.unit(1.73, "feet"),
  19194. name: "Dick",
  19195. image: {
  19196. source: "./media/characters/lycoa/dick.svg"
  19197. }
  19198. },
  19199. },
  19200. [
  19201. {
  19202. name: "Normal",
  19203. height: math.unit(8, "feet"),
  19204. default: true
  19205. },
  19206. {
  19207. name: "Macro",
  19208. height: math.unit(30, "feet")
  19209. },
  19210. ]
  19211. ))
  19212. characterMakers.push(() => makeCharacter(
  19213. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19214. {
  19215. front: {
  19216. height: math.unit(4 + 2 / 12, "feet"),
  19217. weight: math.unit(70, "lb"),
  19218. name: "Front",
  19219. image: {
  19220. source: "./media/characters/naldara/front.svg",
  19221. extra: 841 / 720,
  19222. bottom: 0.04
  19223. }
  19224. },
  19225. naga: {
  19226. height: math.unit(23, "feet"),
  19227. weight: math.unit(15000, "kg"),
  19228. name: "Naga",
  19229. image: {
  19230. source: "./media/characters/naldara/naga.svg",
  19231. extra: 3290/2959,
  19232. bottom: 124/3432
  19233. }
  19234. },
  19235. },
  19236. [
  19237. {
  19238. name: "Normal",
  19239. height: math.unit(4 + 2 / 12, "feet"),
  19240. default: true
  19241. },
  19242. ]
  19243. ))
  19244. characterMakers.push(() => makeCharacter(
  19245. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19246. {
  19247. front: {
  19248. height: math.unit(13 + 7 / 12, "feet"),
  19249. weight: math.unit(1500, "lb"),
  19250. name: "Front",
  19251. image: {
  19252. source: "./media/characters/briar/front.svg",
  19253. extra: 626 / 596,
  19254. bottom: 0.08
  19255. }
  19256. },
  19257. },
  19258. [
  19259. {
  19260. name: "Normal",
  19261. height: math.unit(13 + 7 / 12, "feet"),
  19262. default: true
  19263. },
  19264. ]
  19265. ))
  19266. characterMakers.push(() => makeCharacter(
  19267. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19268. {
  19269. side: {
  19270. height: math.unit(10, "feet"),
  19271. weight: math.unit(500, "lb"),
  19272. name: "Side",
  19273. image: {
  19274. source: "./media/characters/vanguard/side.svg",
  19275. extra: 502 / 425,
  19276. bottom: 0.087
  19277. }
  19278. },
  19279. },
  19280. [
  19281. {
  19282. name: "Normal",
  19283. height: math.unit(10, "feet"),
  19284. default: true
  19285. },
  19286. ]
  19287. ))
  19288. characterMakers.push(() => makeCharacter(
  19289. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19290. {
  19291. front: {
  19292. height: math.unit(7.5, "feet"),
  19293. weight: math.unit(2, "lb"),
  19294. name: "Front",
  19295. image: {
  19296. source: "./media/characters/artemis/front.svg",
  19297. extra: 1192 / 1075,
  19298. bottom: 0.07
  19299. }
  19300. },
  19301. frontNsfw: {
  19302. height: math.unit(7.5, "feet"),
  19303. weight: math.unit(2, "lb"),
  19304. name: "Front (NSFW)",
  19305. image: {
  19306. source: "./media/characters/artemis/front-nsfw.svg",
  19307. extra: 1192 / 1075,
  19308. bottom: 0.07
  19309. }
  19310. },
  19311. frontNsfwer: {
  19312. height: math.unit(7.5, "feet"),
  19313. weight: math.unit(2, "lb"),
  19314. name: "Front (NSFW-er)",
  19315. image: {
  19316. source: "./media/characters/artemis/front-nsfwer.svg",
  19317. extra: 1192 / 1075,
  19318. bottom: 0.07
  19319. }
  19320. },
  19321. side: {
  19322. height: math.unit(7.5, "feet"),
  19323. weight: math.unit(2, "lb"),
  19324. name: "Side",
  19325. image: {
  19326. source: "./media/characters/artemis/side.svg",
  19327. extra: 1192 / 1075,
  19328. bottom: 0.07
  19329. }
  19330. },
  19331. sideNsfw: {
  19332. height: math.unit(7.5, "feet"),
  19333. weight: math.unit(2, "lb"),
  19334. name: "Side (NSFW)",
  19335. image: {
  19336. source: "./media/characters/artemis/side-nsfw.svg",
  19337. extra: 1192 / 1075,
  19338. bottom: 0.07
  19339. }
  19340. },
  19341. sideNsfwer: {
  19342. height: math.unit(7.5, "feet"),
  19343. weight: math.unit(2, "lb"),
  19344. name: "Side (NSFW-er)",
  19345. image: {
  19346. source: "./media/characters/artemis/side-nsfwer.svg",
  19347. extra: 1192 / 1075,
  19348. bottom: 0.07
  19349. }
  19350. },
  19351. maw: {
  19352. height: math.unit(1.1, "feet"),
  19353. name: "Maw",
  19354. image: {
  19355. source: "./media/characters/artemis/maw.svg"
  19356. }
  19357. },
  19358. stomach: {
  19359. height: math.unit(0.95, "feet"),
  19360. name: "Stomach",
  19361. image: {
  19362. source: "./media/characters/artemis/stomach.svg"
  19363. }
  19364. },
  19365. dickCanine: {
  19366. height: math.unit(1, "feet"),
  19367. name: "Dick (Canine)",
  19368. image: {
  19369. source: "./media/characters/artemis/dick-canine.svg"
  19370. }
  19371. },
  19372. dickEquine: {
  19373. height: math.unit(0.85, "feet"),
  19374. name: "Dick (Equine)",
  19375. image: {
  19376. source: "./media/characters/artemis/dick-equine.svg"
  19377. }
  19378. },
  19379. dickExotic: {
  19380. height: math.unit(0.85, "feet"),
  19381. name: "Dick (Exotic)",
  19382. image: {
  19383. source: "./media/characters/artemis/dick-exotic.svg"
  19384. }
  19385. },
  19386. },
  19387. [
  19388. {
  19389. name: "Normal",
  19390. height: math.unit(7.5, "feet"),
  19391. default: true
  19392. },
  19393. {
  19394. name: "Enlarged",
  19395. height: math.unit(12, "feet")
  19396. },
  19397. ]
  19398. ))
  19399. characterMakers.push(() => makeCharacter(
  19400. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19401. {
  19402. front: {
  19403. height: math.unit(5 + 3 / 12, "feet"),
  19404. weight: math.unit(160, "lb"),
  19405. name: "Front",
  19406. image: {
  19407. source: "./media/characters/kira/front.svg",
  19408. extra: 906 / 786,
  19409. bottom: 0.01
  19410. }
  19411. },
  19412. back: {
  19413. height: math.unit(5 + 3 / 12, "feet"),
  19414. weight: math.unit(160, "lb"),
  19415. name: "Back",
  19416. image: {
  19417. source: "./media/characters/kira/back.svg",
  19418. extra: 882 / 757,
  19419. bottom: 0.005
  19420. }
  19421. },
  19422. frontDressed: {
  19423. height: math.unit(5 + 3 / 12, "feet"),
  19424. weight: math.unit(160, "lb"),
  19425. name: "Front (Dressed)",
  19426. image: {
  19427. source: "./media/characters/kira/front-dressed.svg",
  19428. extra: 906 / 786,
  19429. bottom: 0.01
  19430. }
  19431. },
  19432. beans: {
  19433. height: math.unit(0.92, "feet"),
  19434. name: "Beans",
  19435. image: {
  19436. source: "./media/characters/kira/beans.svg"
  19437. }
  19438. },
  19439. },
  19440. [
  19441. {
  19442. name: "Normal",
  19443. height: math.unit(5 + 3 / 12, "feet"),
  19444. default: true
  19445. },
  19446. ]
  19447. ))
  19448. characterMakers.push(() => makeCharacter(
  19449. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19450. {
  19451. front: {
  19452. height: math.unit(5 + 4 / 12, "feet"),
  19453. weight: math.unit(145, "lb"),
  19454. name: "Front",
  19455. image: {
  19456. source: "./media/characters/scramble/front.svg",
  19457. extra: 763 / 727,
  19458. bottom: 0.05
  19459. }
  19460. },
  19461. back: {
  19462. height: math.unit(5 + 4 / 12, "feet"),
  19463. weight: math.unit(145, "lb"),
  19464. name: "Back",
  19465. image: {
  19466. source: "./media/characters/scramble/back.svg",
  19467. extra: 826 / 737,
  19468. bottom: 0.002
  19469. }
  19470. },
  19471. },
  19472. [
  19473. {
  19474. name: "Normal",
  19475. height: math.unit(5 + 4 / 12, "feet"),
  19476. default: true
  19477. },
  19478. ]
  19479. ))
  19480. characterMakers.push(() => makeCharacter(
  19481. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19482. {
  19483. side: {
  19484. height: math.unit(6 + 2 / 12, "feet"),
  19485. weight: math.unit(190, "lb"),
  19486. name: "Side",
  19487. image: {
  19488. source: "./media/characters/biscuit/side.svg",
  19489. extra: 858 / 791,
  19490. bottom: 0.044
  19491. }
  19492. },
  19493. },
  19494. [
  19495. {
  19496. name: "Normal",
  19497. height: math.unit(6 + 2 / 12, "feet"),
  19498. default: true
  19499. },
  19500. ]
  19501. ))
  19502. characterMakers.push(() => makeCharacter(
  19503. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19504. {
  19505. front: {
  19506. height: math.unit(5 + 2 / 12, "feet"),
  19507. weight: math.unit(120, "lb"),
  19508. name: "Front",
  19509. image: {
  19510. source: "./media/characters/poffin/front.svg",
  19511. extra: 786 / 680,
  19512. bottom: 0.005
  19513. }
  19514. },
  19515. },
  19516. [
  19517. {
  19518. name: "Normal",
  19519. height: math.unit(5 + 2 / 12, "feet"),
  19520. default: true
  19521. },
  19522. ]
  19523. ))
  19524. characterMakers.push(() => makeCharacter(
  19525. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19526. {
  19527. front: {
  19528. height: math.unit(6 + 3 / 12, "feet"),
  19529. weight: math.unit(519, "lb"),
  19530. name: "Front",
  19531. image: {
  19532. source: "./media/characters/dhari/front.svg",
  19533. extra: 1048 / 946,
  19534. bottom: 0.015
  19535. }
  19536. },
  19537. back: {
  19538. height: math.unit(6 + 3 / 12, "feet"),
  19539. weight: math.unit(519, "lb"),
  19540. name: "Back",
  19541. image: {
  19542. source: "./media/characters/dhari/back.svg",
  19543. extra: 1048 / 931,
  19544. bottom: 0.005
  19545. }
  19546. },
  19547. frontDressed: {
  19548. height: math.unit(6 + 3 / 12, "feet"),
  19549. weight: math.unit(519, "lb"),
  19550. name: "Front (Dressed)",
  19551. image: {
  19552. source: "./media/characters/dhari/front-dressed.svg",
  19553. extra: 1713 / 1546,
  19554. bottom: 0.02
  19555. }
  19556. },
  19557. backDressed: {
  19558. height: math.unit(6 + 3 / 12, "feet"),
  19559. weight: math.unit(519, "lb"),
  19560. name: "Back (Dressed)",
  19561. image: {
  19562. source: "./media/characters/dhari/back-dressed.svg",
  19563. extra: 1699 / 1537,
  19564. bottom: 0.01
  19565. }
  19566. },
  19567. maw: {
  19568. height: math.unit(0.95, "feet"),
  19569. name: "Maw",
  19570. image: {
  19571. source: "./media/characters/dhari/maw.svg"
  19572. }
  19573. },
  19574. wereFront: {
  19575. height: math.unit(12 + 8 / 12, "feet"),
  19576. weight: math.unit(4000, "lb"),
  19577. name: "Front (Were)",
  19578. image: {
  19579. source: "./media/characters/dhari/were-front.svg",
  19580. extra: 1065 / 969,
  19581. bottom: 0.015
  19582. }
  19583. },
  19584. wereBack: {
  19585. height: math.unit(12 + 8 / 12, "feet"),
  19586. weight: math.unit(4000, "lb"),
  19587. name: "Back (Were)",
  19588. image: {
  19589. source: "./media/characters/dhari/were-back.svg",
  19590. extra: 1065 / 969,
  19591. bottom: 0.012
  19592. }
  19593. },
  19594. wereMaw: {
  19595. height: math.unit(0.625, "meters"),
  19596. name: "Maw (Were)",
  19597. image: {
  19598. source: "./media/characters/dhari/were-maw.svg"
  19599. }
  19600. },
  19601. },
  19602. [
  19603. {
  19604. name: "Normal",
  19605. height: math.unit(6 + 3 / 12, "feet"),
  19606. default: true
  19607. },
  19608. ]
  19609. ))
  19610. characterMakers.push(() => makeCharacter(
  19611. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19612. {
  19613. anthro: {
  19614. height: math.unit(5 + 7 / 12, "feet"),
  19615. weight: math.unit(175, "lb"),
  19616. name: "Anthro",
  19617. image: {
  19618. source: "./media/characters/rena-dyne/anthro.svg",
  19619. extra: 1849 / 1785,
  19620. bottom: 0.005
  19621. }
  19622. },
  19623. taur: {
  19624. height: math.unit(15 + 6 / 12, "feet"),
  19625. weight: math.unit(8000, "lb"),
  19626. name: "Taur",
  19627. image: {
  19628. source: "./media/characters/rena-dyne/taur.svg",
  19629. extra: 2315 / 2234,
  19630. bottom: 0.033
  19631. }
  19632. },
  19633. },
  19634. [
  19635. {
  19636. name: "Normal",
  19637. height: math.unit(5 + 7 / 12, "feet"),
  19638. default: true
  19639. },
  19640. ]
  19641. ))
  19642. characterMakers.push(() => makeCharacter(
  19643. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19644. {
  19645. front: {
  19646. height: math.unit(8, "feet"),
  19647. weight: math.unit(600, "lb"),
  19648. name: "Front",
  19649. image: {
  19650. source: "./media/characters/weremeep/front.svg",
  19651. extra: 967 / 862,
  19652. bottom: 0.01
  19653. }
  19654. },
  19655. },
  19656. [
  19657. {
  19658. name: "Normal",
  19659. height: math.unit(8, "feet"),
  19660. default: true
  19661. },
  19662. {
  19663. name: "Lorg",
  19664. height: math.unit(12, "feet")
  19665. },
  19666. {
  19667. name: "Oh Lawd She Comin'",
  19668. height: math.unit(20, "feet")
  19669. },
  19670. ]
  19671. ))
  19672. characterMakers.push(() => makeCharacter(
  19673. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19674. {
  19675. front: {
  19676. height: math.unit(4, "feet"),
  19677. weight: math.unit(90, "lb"),
  19678. name: "Front",
  19679. image: {
  19680. source: "./media/characters/reza/front.svg",
  19681. extra: 1183 / 1111,
  19682. bottom: 0.017
  19683. }
  19684. },
  19685. back: {
  19686. height: math.unit(4, "feet"),
  19687. weight: math.unit(90, "lb"),
  19688. name: "Back",
  19689. image: {
  19690. source: "./media/characters/reza/back.svg",
  19691. extra: 1183 / 1111,
  19692. bottom: 0.01
  19693. }
  19694. },
  19695. drake: {
  19696. height: math.unit(30, "feet"),
  19697. weight: math.unit(246960, "lb"),
  19698. name: "Drake",
  19699. image: {
  19700. source: "./media/characters/reza/drake.svg",
  19701. extra: 2350 / 2024,
  19702. bottom: 60.7 / 2403
  19703. }
  19704. },
  19705. },
  19706. [
  19707. {
  19708. name: "Normal",
  19709. height: math.unit(4, "feet"),
  19710. default: true
  19711. },
  19712. ]
  19713. ))
  19714. characterMakers.push(() => makeCharacter(
  19715. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  19716. {
  19717. side: {
  19718. height: math.unit(15, "feet"),
  19719. weight: math.unit(14, "tons"),
  19720. name: "Side",
  19721. image: {
  19722. source: "./media/characters/athea/side.svg",
  19723. extra: 960 / 540,
  19724. bottom: 0.003
  19725. }
  19726. },
  19727. sitting: {
  19728. height: math.unit(6 * 2.85, "feet"),
  19729. weight: math.unit(14, "tons"),
  19730. name: "Sitting",
  19731. image: {
  19732. source: "./media/characters/athea/sitting.svg",
  19733. extra: 621 / 581,
  19734. bottom: 0.075
  19735. }
  19736. },
  19737. maw: {
  19738. height: math.unit(7.59498031496063, "feet"),
  19739. name: "Maw",
  19740. image: {
  19741. source: "./media/characters/athea/maw.svg"
  19742. }
  19743. },
  19744. },
  19745. [
  19746. {
  19747. name: "Lap Cat",
  19748. height: math.unit(2.5, "feet")
  19749. },
  19750. {
  19751. name: "Minimacro",
  19752. height: math.unit(15, "feet"),
  19753. default: true
  19754. },
  19755. {
  19756. name: "Macro",
  19757. height: math.unit(120, "feet")
  19758. },
  19759. {
  19760. name: "Macro+",
  19761. height: math.unit(640, "feet")
  19762. },
  19763. {
  19764. name: "Colossus",
  19765. height: math.unit(2.2, "miles")
  19766. },
  19767. ]
  19768. ))
  19769. characterMakers.push(() => makeCharacter(
  19770. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  19771. {
  19772. front: {
  19773. height: math.unit(8 + 8 / 12, "feet"),
  19774. weight: math.unit(130, "kg"),
  19775. name: "Front",
  19776. image: {
  19777. source: "./media/characters/seroko/front.svg",
  19778. extra: 1385 / 1280,
  19779. bottom: 0.025
  19780. }
  19781. },
  19782. back: {
  19783. height: math.unit(8 + 8 / 12, "feet"),
  19784. weight: math.unit(130, "kg"),
  19785. name: "Back",
  19786. image: {
  19787. source: "./media/characters/seroko/back.svg",
  19788. extra: 1369 / 1238,
  19789. bottom: 0.018
  19790. }
  19791. },
  19792. frontDressed: {
  19793. height: math.unit(8 + 8 / 12, "feet"),
  19794. weight: math.unit(130, "kg"),
  19795. name: "Front (Dressed)",
  19796. image: {
  19797. source: "./media/characters/seroko/front-dressed.svg",
  19798. extra: 1366 / 1275,
  19799. bottom: 0.03
  19800. }
  19801. },
  19802. },
  19803. [
  19804. {
  19805. name: "Normal",
  19806. height: math.unit(8 + 8 / 12, "feet"),
  19807. default: true
  19808. },
  19809. ]
  19810. ))
  19811. characterMakers.push(() => makeCharacter(
  19812. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  19813. {
  19814. front: {
  19815. height: math.unit(5.5, "feet"),
  19816. weight: math.unit(160, "lb"),
  19817. name: "Front",
  19818. image: {
  19819. source: "./media/characters/quatzi/front.svg",
  19820. extra: 2346 / 2242,
  19821. bottom: 0.015
  19822. }
  19823. },
  19824. },
  19825. [
  19826. {
  19827. name: "Normal",
  19828. height: math.unit(5.5, "feet"),
  19829. default: true
  19830. },
  19831. {
  19832. name: "Big",
  19833. height: math.unit(7.7, "feet")
  19834. },
  19835. ]
  19836. ))
  19837. characterMakers.push(() => makeCharacter(
  19838. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  19839. {
  19840. front: {
  19841. height: math.unit(5 + 11 / 12, "feet"),
  19842. weight: math.unit(180, "lb"),
  19843. name: "Front",
  19844. image: {
  19845. source: "./media/characters/sen/front.svg",
  19846. extra: 1321 / 1254,
  19847. bottom: 0.015
  19848. }
  19849. },
  19850. side: {
  19851. height: math.unit(5 + 11 / 12, "feet"),
  19852. weight: math.unit(180, "lb"),
  19853. name: "Side",
  19854. image: {
  19855. source: "./media/characters/sen/side.svg",
  19856. extra: 1321 / 1254,
  19857. bottom: 0.007
  19858. }
  19859. },
  19860. back: {
  19861. height: math.unit(5 + 11 / 12, "feet"),
  19862. weight: math.unit(180, "lb"),
  19863. name: "Back",
  19864. image: {
  19865. source: "./media/characters/sen/back.svg",
  19866. extra: 1321 / 1254
  19867. }
  19868. },
  19869. },
  19870. [
  19871. {
  19872. name: "Normal",
  19873. height: math.unit(5 + 11 / 12, "feet"),
  19874. default: true
  19875. },
  19876. ]
  19877. ))
  19878. characterMakers.push(() => makeCharacter(
  19879. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  19880. {
  19881. front: {
  19882. height: math.unit(166.6, "cm"),
  19883. weight: math.unit(66.6, "kg"),
  19884. name: "Front",
  19885. image: {
  19886. source: "./media/characters/fruity/front.svg",
  19887. extra: 1510 / 1386,
  19888. bottom: 0.04
  19889. }
  19890. },
  19891. back: {
  19892. height: math.unit(166.6, "cm"),
  19893. weight: math.unit(66.6, "lb"),
  19894. name: "Back",
  19895. image: {
  19896. source: "./media/characters/fruity/back.svg",
  19897. extra: 1563 / 1435,
  19898. bottom: 0.005
  19899. }
  19900. },
  19901. },
  19902. [
  19903. {
  19904. name: "Normal",
  19905. height: math.unit(166.6, "cm"),
  19906. default: true
  19907. },
  19908. {
  19909. name: "Demonic",
  19910. height: math.unit(166.6, "feet")
  19911. },
  19912. ]
  19913. ))
  19914. characterMakers.push(() => makeCharacter(
  19915. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  19916. {
  19917. side: {
  19918. height: math.unit(10, "feet"),
  19919. weight: math.unit(500, "lb"),
  19920. name: "Side",
  19921. image: {
  19922. source: "./media/characters/zost/side.svg",
  19923. extra: 966 / 880,
  19924. bottom: 0.075
  19925. }
  19926. },
  19927. mawFront: {
  19928. height: math.unit(1.08, "meters"),
  19929. name: "Maw (Front)",
  19930. image: {
  19931. source: "./media/characters/zost/maw-front.svg"
  19932. }
  19933. },
  19934. mawSide: {
  19935. height: math.unit(2.66, "feet"),
  19936. name: "Maw (Side)",
  19937. image: {
  19938. source: "./media/characters/zost/maw-side.svg"
  19939. }
  19940. },
  19941. },
  19942. [
  19943. {
  19944. name: "Normal",
  19945. height: math.unit(10, "feet"),
  19946. default: true
  19947. },
  19948. ]
  19949. ))
  19950. characterMakers.push(() => makeCharacter(
  19951. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  19952. {
  19953. front: {
  19954. height: math.unit(5 + 4 / 12, "feet"),
  19955. weight: math.unit(120, "lb"),
  19956. name: "Front",
  19957. image: {
  19958. source: "./media/characters/luci/front.svg",
  19959. extra: 1985 / 1884,
  19960. bottom: 0.04
  19961. }
  19962. },
  19963. back: {
  19964. height: math.unit(5 + 4 / 12, "feet"),
  19965. weight: math.unit(120, "lb"),
  19966. name: "Back",
  19967. image: {
  19968. source: "./media/characters/luci/back.svg",
  19969. extra: 1892 / 1791,
  19970. bottom: 0.002
  19971. }
  19972. },
  19973. },
  19974. [
  19975. {
  19976. name: "Normal",
  19977. height: math.unit(5 + 4 / 12, "feet"),
  19978. default: true
  19979. },
  19980. ]
  19981. ))
  19982. characterMakers.push(() => makeCharacter(
  19983. { name: "2th", species: ["monster"], tags: ["anthro"] },
  19984. {
  19985. front: {
  19986. height: math.unit(1500, "feet"),
  19987. weight: math.unit(3.8e6, "tons"),
  19988. name: "Front",
  19989. image: {
  19990. source: "./media/characters/2th/front.svg",
  19991. extra: 3489 / 3350,
  19992. bottom: 0.1
  19993. }
  19994. },
  19995. foot: {
  19996. height: math.unit(461, "feet"),
  19997. name: "Foot",
  19998. image: {
  19999. source: "./media/characters/2th/foot.svg"
  20000. }
  20001. },
  20002. },
  20003. [
  20004. {
  20005. name: "\"Micro\"",
  20006. height: math.unit(15 + 7 / 12, "feet")
  20007. },
  20008. {
  20009. name: "Normal",
  20010. height: math.unit(1500, "feet"),
  20011. default: true
  20012. },
  20013. {
  20014. name: "Macro",
  20015. height: math.unit(5000, "feet")
  20016. },
  20017. {
  20018. name: "Megamacro",
  20019. height: math.unit(15, "miles")
  20020. },
  20021. {
  20022. name: "Gigamacro",
  20023. height: math.unit(4000, "miles")
  20024. },
  20025. {
  20026. name: "Galactic",
  20027. height: math.unit(50, "AU")
  20028. },
  20029. ]
  20030. ))
  20031. characterMakers.push(() => makeCharacter(
  20032. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20033. {
  20034. front: {
  20035. height: math.unit(5 + 6 / 12, "feet"),
  20036. weight: math.unit(220, "lb"),
  20037. name: "Front",
  20038. image: {
  20039. source: "./media/characters/amethyst/front.svg",
  20040. extra: 2078 / 2040,
  20041. bottom: 0.045
  20042. }
  20043. },
  20044. back: {
  20045. height: math.unit(5 + 6 / 12, "feet"),
  20046. weight: math.unit(220, "lb"),
  20047. name: "Back",
  20048. image: {
  20049. source: "./media/characters/amethyst/back.svg",
  20050. extra: 2021 / 1989,
  20051. bottom: 0.02
  20052. }
  20053. },
  20054. },
  20055. [
  20056. {
  20057. name: "Normal",
  20058. height: math.unit(5 + 6 / 12, "feet"),
  20059. default: true
  20060. },
  20061. ]
  20062. ))
  20063. characterMakers.push(() => makeCharacter(
  20064. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20065. {
  20066. front: {
  20067. height: math.unit(4 + 11 / 12, "feet"),
  20068. weight: math.unit(120, "lb"),
  20069. name: "Front",
  20070. image: {
  20071. source: "./media/characters/yumi-akiyama/front.svg",
  20072. extra: 1327 / 1235,
  20073. bottom: 0.02
  20074. }
  20075. },
  20076. back: {
  20077. height: math.unit(4 + 11 / 12, "feet"),
  20078. weight: math.unit(120, "lb"),
  20079. name: "Back",
  20080. image: {
  20081. source: "./media/characters/yumi-akiyama/back.svg",
  20082. extra: 1287 / 1245,
  20083. bottom: 0.002
  20084. }
  20085. },
  20086. },
  20087. [
  20088. {
  20089. name: "Galactic",
  20090. height: math.unit(50, "galaxies"),
  20091. default: true
  20092. },
  20093. {
  20094. name: "Universal",
  20095. height: math.unit(100, "universes")
  20096. },
  20097. ]
  20098. ))
  20099. characterMakers.push(() => makeCharacter(
  20100. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20101. {
  20102. front: {
  20103. height: math.unit(8, "feet"),
  20104. weight: math.unit(500, "lb"),
  20105. name: "Front",
  20106. image: {
  20107. source: "./media/characters/rifter-yrmori/front.svg",
  20108. extra: 1180 / 1125,
  20109. bottom: 0.02
  20110. }
  20111. },
  20112. back: {
  20113. height: math.unit(8, "feet"),
  20114. weight: math.unit(500, "lb"),
  20115. name: "Back",
  20116. image: {
  20117. source: "./media/characters/rifter-yrmori/back.svg",
  20118. extra: 1190 / 1145,
  20119. bottom: 0.001
  20120. }
  20121. },
  20122. wings: {
  20123. height: math.unit(7.75, "feet"),
  20124. weight: math.unit(500, "lb"),
  20125. name: "Wings",
  20126. image: {
  20127. source: "./media/characters/rifter-yrmori/wings.svg",
  20128. extra: 1357 / 1285
  20129. }
  20130. },
  20131. maw: {
  20132. height: math.unit(0.8, "feet"),
  20133. name: "Maw",
  20134. image: {
  20135. source: "./media/characters/rifter-yrmori/maw.svg"
  20136. }
  20137. },
  20138. },
  20139. [
  20140. {
  20141. name: "Normal",
  20142. height: math.unit(8, "feet"),
  20143. default: true
  20144. },
  20145. {
  20146. name: "Macro",
  20147. height: math.unit(42, "meters")
  20148. },
  20149. ]
  20150. ))
  20151. characterMakers.push(() => makeCharacter(
  20152. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20153. {
  20154. were: {
  20155. height: math.unit(25 + 6 / 12, "feet"),
  20156. weight: math.unit(10000, "lb"),
  20157. name: "Were",
  20158. image: {
  20159. source: "./media/characters/tahajin/were.svg",
  20160. extra: 801 / 770,
  20161. bottom: 0.042
  20162. }
  20163. },
  20164. aquatic: {
  20165. height: math.unit(6 + 4 / 12, "feet"),
  20166. weight: math.unit(160, "lb"),
  20167. name: "Aquatic",
  20168. image: {
  20169. source: "./media/characters/tahajin/aquatic.svg",
  20170. extra: 572 / 542,
  20171. bottom: 0.04
  20172. }
  20173. },
  20174. chow: {
  20175. height: math.unit(8 + 11 / 12, "feet"),
  20176. weight: math.unit(450, "lb"),
  20177. name: "Chow",
  20178. image: {
  20179. source: "./media/characters/tahajin/chow.svg",
  20180. extra: 660 / 640,
  20181. bottom: 0.015
  20182. }
  20183. },
  20184. demiNaga: {
  20185. height: math.unit(6 + 8 / 12, "feet"),
  20186. weight: math.unit(300, "lb"),
  20187. name: "Demi Naga",
  20188. image: {
  20189. source: "./media/characters/tahajin/demi-naga.svg",
  20190. extra: 643 / 615,
  20191. bottom: 0.1
  20192. }
  20193. },
  20194. data: {
  20195. height: math.unit(5, "inches"),
  20196. weight: math.unit(0.1, "lb"),
  20197. name: "Data",
  20198. image: {
  20199. source: "./media/characters/tahajin/data.svg"
  20200. }
  20201. },
  20202. fluu: {
  20203. height: math.unit(5 + 7 / 12, "feet"),
  20204. weight: math.unit(140, "lb"),
  20205. name: "Fluu",
  20206. image: {
  20207. source: "./media/characters/tahajin/fluu.svg",
  20208. extra: 628 / 592,
  20209. bottom: 0.02
  20210. }
  20211. },
  20212. starWarrior: {
  20213. height: math.unit(4 + 5 / 12, "feet"),
  20214. weight: math.unit(50, "lb"),
  20215. name: "Star Warrior",
  20216. image: {
  20217. source: "./media/characters/tahajin/star-warrior.svg"
  20218. }
  20219. },
  20220. },
  20221. [
  20222. {
  20223. name: "Normal",
  20224. height: math.unit(25 + 6 / 12, "feet"),
  20225. default: true
  20226. },
  20227. ]
  20228. ))
  20229. characterMakers.push(() => makeCharacter(
  20230. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20231. {
  20232. front: {
  20233. height: math.unit(8, "feet"),
  20234. weight: math.unit(350, "lb"),
  20235. name: "Front",
  20236. image: {
  20237. source: "./media/characters/gabira/front.svg",
  20238. extra: 608 / 580,
  20239. bottom: 0.03
  20240. }
  20241. },
  20242. back: {
  20243. height: math.unit(8, "feet"),
  20244. weight: math.unit(350, "lb"),
  20245. name: "Back",
  20246. image: {
  20247. source: "./media/characters/gabira/back.svg",
  20248. extra: 608 / 580,
  20249. bottom: 0.03
  20250. }
  20251. },
  20252. },
  20253. [
  20254. {
  20255. name: "Normal",
  20256. height: math.unit(8, "feet"),
  20257. default: true
  20258. },
  20259. ]
  20260. ))
  20261. characterMakers.push(() => makeCharacter(
  20262. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20263. {
  20264. front: {
  20265. height: math.unit(5 + 3 / 12, "feet"),
  20266. weight: math.unit(137, "lb"),
  20267. name: "Front",
  20268. image: {
  20269. source: "./media/characters/sasha-katraine/front.svg",
  20270. bottom: 0.045
  20271. }
  20272. },
  20273. },
  20274. [
  20275. {
  20276. name: "Micro",
  20277. height: math.unit(5, "inches")
  20278. },
  20279. {
  20280. name: "Normal",
  20281. height: math.unit(5 + 3 / 12, "feet"),
  20282. default: true
  20283. },
  20284. ]
  20285. ))
  20286. characterMakers.push(() => makeCharacter(
  20287. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20288. {
  20289. side: {
  20290. height: math.unit(4, "inches"),
  20291. weight: math.unit(200, "grams"),
  20292. name: "Side",
  20293. image: {
  20294. source: "./media/characters/der/side.svg",
  20295. extra: 719 / 400,
  20296. bottom: 30.6 / 749.9187
  20297. }
  20298. },
  20299. },
  20300. [
  20301. {
  20302. name: "Micro",
  20303. height: math.unit(4, "inches"),
  20304. default: true
  20305. },
  20306. ]
  20307. ))
  20308. characterMakers.push(() => makeCharacter(
  20309. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20310. {
  20311. side: {
  20312. height: math.unit(30, "meters"),
  20313. weight: math.unit(700, "tonnes"),
  20314. name: "Side",
  20315. image: {
  20316. source: "./media/characters/fixerdragon/side.svg",
  20317. extra: (1293.0514 - 116.03) / 1106.86,
  20318. bottom: 116.03 / 1293.0514
  20319. }
  20320. },
  20321. },
  20322. [
  20323. {
  20324. name: "Planck",
  20325. height: math.unit(1.6e-35, "meters")
  20326. },
  20327. {
  20328. name: "Micro",
  20329. height: math.unit(0.4, "meters")
  20330. },
  20331. {
  20332. name: "Normal",
  20333. height: math.unit(30, "meters"),
  20334. default: true
  20335. },
  20336. {
  20337. name: "Megamacro",
  20338. height: math.unit(1.2, "megameters")
  20339. },
  20340. {
  20341. name: "Teramacro",
  20342. height: math.unit(130, "terameters")
  20343. },
  20344. {
  20345. name: "Yottamacro",
  20346. height: math.unit(6200, "yottameters")
  20347. },
  20348. ]
  20349. ));
  20350. characterMakers.push(() => makeCharacter(
  20351. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20352. {
  20353. front: {
  20354. height: math.unit(8, "feet"),
  20355. weight: math.unit(250, "lb"),
  20356. name: "Front",
  20357. image: {
  20358. source: "./media/characters/kite/front.svg",
  20359. extra: 2796 / 2659,
  20360. bottom: 0.002
  20361. }
  20362. },
  20363. },
  20364. [
  20365. {
  20366. name: "Normal",
  20367. height: math.unit(8, "feet"),
  20368. default: true
  20369. },
  20370. {
  20371. name: "Macro",
  20372. height: math.unit(360, "feet")
  20373. },
  20374. {
  20375. name: "Megamacro",
  20376. height: math.unit(1500, "feet")
  20377. },
  20378. ]
  20379. ))
  20380. characterMakers.push(() => makeCharacter(
  20381. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20382. {
  20383. front: {
  20384. height: math.unit(5 + 10 / 12, "feet"),
  20385. weight: math.unit(150, "lb"),
  20386. name: "Front",
  20387. image: {
  20388. source: "./media/characters/poojawa-vynar/front.svg",
  20389. extra: (1506.1547 - 55) / 1356.6,
  20390. bottom: 55 / 1506.1547
  20391. }
  20392. },
  20393. frontTailless: {
  20394. height: math.unit(5 + 10 / 12, "feet"),
  20395. weight: math.unit(150, "lb"),
  20396. name: "Front (Tailless)",
  20397. image: {
  20398. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20399. extra: (1506.1547 - 55) / 1356.6,
  20400. bottom: 55 / 1506.1547
  20401. }
  20402. },
  20403. },
  20404. [
  20405. {
  20406. name: "Normal",
  20407. height: math.unit(5 + 10 / 12, "feet"),
  20408. default: true
  20409. },
  20410. ]
  20411. ))
  20412. characterMakers.push(() => makeCharacter(
  20413. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20414. {
  20415. front: {
  20416. height: math.unit(293, "meters"),
  20417. weight: math.unit(70400, "tons"),
  20418. name: "Front",
  20419. image: {
  20420. source: "./media/characters/violette/front.svg",
  20421. extra: 1227 / 1180,
  20422. bottom: 0.005
  20423. }
  20424. },
  20425. back: {
  20426. height: math.unit(293, "meters"),
  20427. weight: math.unit(70400, "tons"),
  20428. name: "Back",
  20429. image: {
  20430. source: "./media/characters/violette/back.svg",
  20431. extra: 1227 / 1180,
  20432. bottom: 0.005
  20433. }
  20434. },
  20435. },
  20436. [
  20437. {
  20438. name: "Macro",
  20439. height: math.unit(293, "meters"),
  20440. default: true
  20441. },
  20442. ]
  20443. ))
  20444. characterMakers.push(() => makeCharacter(
  20445. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20446. {
  20447. front: {
  20448. height: math.unit(1050, "feet"),
  20449. weight: math.unit(200000, "tons"),
  20450. name: "Front",
  20451. image: {
  20452. source: "./media/characters/alessandra/front.svg",
  20453. extra: 960 / 912,
  20454. bottom: 0.06
  20455. }
  20456. },
  20457. },
  20458. [
  20459. {
  20460. name: "Macro",
  20461. height: math.unit(1050, "feet")
  20462. },
  20463. {
  20464. name: "Macro+",
  20465. height: math.unit(900, "meters"),
  20466. default: true
  20467. },
  20468. ]
  20469. ))
  20470. characterMakers.push(() => makeCharacter(
  20471. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20472. {
  20473. front: {
  20474. height: math.unit(5, "feet"),
  20475. weight: math.unit(187, "lb"),
  20476. name: "Front",
  20477. image: {
  20478. source: "./media/characters/person/front.svg",
  20479. extra: 3087 / 2945,
  20480. bottom: 91 / 3181
  20481. }
  20482. },
  20483. },
  20484. [
  20485. {
  20486. name: "Micro",
  20487. height: math.unit(3, "inches")
  20488. },
  20489. {
  20490. name: "Normal",
  20491. height: math.unit(5, "feet"),
  20492. default: true
  20493. },
  20494. {
  20495. name: "Macro",
  20496. height: math.unit(90, "feet")
  20497. },
  20498. {
  20499. name: "Max Size",
  20500. height: math.unit(280, "feet")
  20501. },
  20502. ]
  20503. ))
  20504. characterMakers.push(() => makeCharacter(
  20505. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20506. {
  20507. front: {
  20508. height: math.unit(4.5, "meters"),
  20509. weight: math.unit(3200, "lb"),
  20510. name: "Front",
  20511. image: {
  20512. source: "./media/characters/ty/front.svg",
  20513. extra: 1038 / 960,
  20514. bottom: 31.156 / 1068
  20515. }
  20516. },
  20517. back: {
  20518. height: math.unit(4.5, "meters"),
  20519. weight: math.unit(3200, "lb"),
  20520. name: "Back",
  20521. image: {
  20522. source: "./media/characters/ty/back.svg",
  20523. extra: 1044 / 966,
  20524. bottom: 7.48 / 1049
  20525. }
  20526. },
  20527. },
  20528. [
  20529. {
  20530. name: "Normal",
  20531. height: math.unit(4.5, "meters"),
  20532. default: true
  20533. },
  20534. ]
  20535. ))
  20536. characterMakers.push(() => makeCharacter(
  20537. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20538. {
  20539. front: {
  20540. height: math.unit(5 + 4 / 12, "feet"),
  20541. weight: math.unit(115, "lb"),
  20542. name: "Front",
  20543. image: {
  20544. source: "./media/characters/rocky/front.svg",
  20545. extra: 1012 / 975,
  20546. bottom: 54 / 1066
  20547. }
  20548. },
  20549. },
  20550. [
  20551. {
  20552. name: "Normal",
  20553. height: math.unit(5 + 4 / 12, "feet"),
  20554. default: true
  20555. },
  20556. ]
  20557. ))
  20558. characterMakers.push(() => makeCharacter(
  20559. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20560. {
  20561. upright: {
  20562. height: math.unit(6, "meters"),
  20563. weight: math.unit(4000, "kg"),
  20564. name: "Upright",
  20565. image: {
  20566. source: "./media/characters/ruin/upright.svg",
  20567. extra: 668 / 661,
  20568. bottom: 42 / 799.8396
  20569. }
  20570. },
  20571. },
  20572. [
  20573. {
  20574. name: "Normal",
  20575. height: math.unit(6, "meters"),
  20576. default: true
  20577. },
  20578. ]
  20579. ))
  20580. characterMakers.push(() => makeCharacter(
  20581. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20582. {
  20583. front: {
  20584. height: math.unit(5, "feet"),
  20585. weight: math.unit(106, "lb"),
  20586. name: "Front",
  20587. image: {
  20588. source: "./media/characters/robin/front.svg",
  20589. extra: 862 / 799,
  20590. bottom: 42.4 / 914.8856
  20591. }
  20592. },
  20593. },
  20594. [
  20595. {
  20596. name: "Normal",
  20597. height: math.unit(5, "feet"),
  20598. default: true
  20599. },
  20600. ]
  20601. ))
  20602. characterMakers.push(() => makeCharacter(
  20603. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20604. {
  20605. side: {
  20606. height: math.unit(3, "feet"),
  20607. weight: math.unit(225, "lb"),
  20608. name: "Side",
  20609. image: {
  20610. source: "./media/characters/saian/side.svg",
  20611. extra: 566 / 356,
  20612. bottom: 79.7 / 643
  20613. }
  20614. },
  20615. maw: {
  20616. height: math.unit(2.85, "feet"),
  20617. name: "Maw",
  20618. image: {
  20619. source: "./media/characters/saian/maw.svg"
  20620. }
  20621. },
  20622. },
  20623. [
  20624. {
  20625. name: "Normal",
  20626. height: math.unit(3, "feet"),
  20627. default: true
  20628. },
  20629. ]
  20630. ))
  20631. characterMakers.push(() => makeCharacter(
  20632. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20633. {
  20634. side: {
  20635. height: math.unit(8, "feet"),
  20636. weight: math.unit(300, "lb"),
  20637. name: "Side",
  20638. image: {
  20639. source: "./media/characters/equus-silvermane/side.svg",
  20640. extra: 2176 / 2050,
  20641. bottom: 65.7 / 2245
  20642. }
  20643. },
  20644. front: {
  20645. height: math.unit(8, "feet"),
  20646. weight: math.unit(300, "lb"),
  20647. name: "Front",
  20648. image: {
  20649. source: "./media/characters/equus-silvermane/front.svg",
  20650. extra: 4633 / 4400,
  20651. bottom: 71.3 / 4706.915
  20652. }
  20653. },
  20654. sideStepping: {
  20655. height: math.unit(8, "feet"),
  20656. weight: math.unit(300, "lb"),
  20657. name: "Side (Stepping)",
  20658. image: {
  20659. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20660. extra: 1968 / 1860,
  20661. bottom: 16.4 / 1989
  20662. }
  20663. },
  20664. },
  20665. [
  20666. {
  20667. name: "Normal",
  20668. height: math.unit(8, "feet")
  20669. },
  20670. {
  20671. name: "Minimacro",
  20672. height: math.unit(75, "feet"),
  20673. default: true
  20674. },
  20675. {
  20676. name: "Macro",
  20677. height: math.unit(150, "feet")
  20678. },
  20679. {
  20680. name: "Macro+",
  20681. height: math.unit(1000, "feet")
  20682. },
  20683. {
  20684. name: "Megamacro",
  20685. height: math.unit(1, "mile")
  20686. },
  20687. ]
  20688. ))
  20689. characterMakers.push(() => makeCharacter(
  20690. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  20691. {
  20692. side: {
  20693. height: math.unit(20, "feet"),
  20694. weight: math.unit(30000, "kg"),
  20695. name: "Side",
  20696. image: {
  20697. source: "./media/characters/windar/side.svg",
  20698. extra: 1491 / 1248,
  20699. bottom: 82.56 / 1568
  20700. }
  20701. },
  20702. },
  20703. [
  20704. {
  20705. name: "Normal",
  20706. height: math.unit(20, "feet"),
  20707. default: true
  20708. },
  20709. ]
  20710. ))
  20711. characterMakers.push(() => makeCharacter(
  20712. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  20713. {
  20714. side: {
  20715. height: math.unit(15.66, "feet"),
  20716. weight: math.unit(150, "lb"),
  20717. name: "Side",
  20718. image: {
  20719. source: "./media/characters/melody/side.svg",
  20720. extra: 1097 / 944,
  20721. bottom: 11.8 / 1109
  20722. }
  20723. },
  20724. sideOutfit: {
  20725. height: math.unit(15.66, "feet"),
  20726. weight: math.unit(150, "lb"),
  20727. name: "Side (Outfit)",
  20728. image: {
  20729. source: "./media/characters/melody/side-outfit.svg",
  20730. extra: 1097 / 944,
  20731. bottom: 11.8 / 1109
  20732. }
  20733. },
  20734. },
  20735. [
  20736. {
  20737. name: "Normal",
  20738. height: math.unit(15.66, "feet"),
  20739. default: true
  20740. },
  20741. ]
  20742. ))
  20743. characterMakers.push(() => makeCharacter(
  20744. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  20745. {
  20746. front: {
  20747. height: math.unit(8, "feet"),
  20748. weight: math.unit(325, "lb"),
  20749. name: "Front",
  20750. image: {
  20751. source: "./media/characters/windera/front.svg",
  20752. extra: 3180 / 2845,
  20753. bottom: 178 / 3365
  20754. }
  20755. },
  20756. },
  20757. [
  20758. {
  20759. name: "Normal",
  20760. height: math.unit(8, "feet"),
  20761. default: true
  20762. },
  20763. ]
  20764. ))
  20765. characterMakers.push(() => makeCharacter(
  20766. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  20767. {
  20768. front: {
  20769. height: math.unit(28.75, "feet"),
  20770. weight: math.unit(2000, "kg"),
  20771. name: "Front",
  20772. image: {
  20773. source: "./media/characters/sonear/front.svg",
  20774. extra: 1041.1 / 964.9,
  20775. bottom: 53.7 / 1096.6
  20776. }
  20777. },
  20778. },
  20779. [
  20780. {
  20781. name: "Normal",
  20782. height: math.unit(28.75, "feet"),
  20783. default: true
  20784. },
  20785. ]
  20786. ))
  20787. characterMakers.push(() => makeCharacter(
  20788. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  20789. {
  20790. side: {
  20791. height: math.unit(25.5, "feet"),
  20792. weight: math.unit(23000, "kg"),
  20793. name: "Side",
  20794. image: {
  20795. source: "./media/characters/kanara/side.svg"
  20796. }
  20797. },
  20798. },
  20799. [
  20800. {
  20801. name: "Normal",
  20802. height: math.unit(25.5, "feet"),
  20803. default: true
  20804. },
  20805. ]
  20806. ))
  20807. characterMakers.push(() => makeCharacter(
  20808. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  20809. {
  20810. side: {
  20811. height: math.unit(10, "feet"),
  20812. weight: math.unit(1000, "kg"),
  20813. name: "Side",
  20814. image: {
  20815. source: "./media/characters/ereus/side.svg",
  20816. extra: 1157 / 959,
  20817. bottom: 153 / 1312.5
  20818. }
  20819. },
  20820. },
  20821. [
  20822. {
  20823. name: "Normal",
  20824. height: math.unit(10, "feet"),
  20825. default: true
  20826. },
  20827. ]
  20828. ))
  20829. characterMakers.push(() => makeCharacter(
  20830. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  20831. {
  20832. side: {
  20833. height: math.unit(4.5, "feet"),
  20834. weight: math.unit(500, "lb"),
  20835. name: "Side",
  20836. image: {
  20837. source: "./media/characters/e-ter/side.svg",
  20838. extra: 1550 / 1248,
  20839. bottom: 146 / 1694
  20840. }
  20841. },
  20842. },
  20843. [
  20844. {
  20845. name: "Normal",
  20846. height: math.unit(4.5, "feet"),
  20847. default: true
  20848. },
  20849. ]
  20850. ))
  20851. characterMakers.push(() => makeCharacter(
  20852. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  20853. {
  20854. side: {
  20855. height: math.unit(9.7, "feet"),
  20856. weight: math.unit(4000, "kg"),
  20857. name: "Side",
  20858. image: {
  20859. source: "./media/characters/yamie/side.svg"
  20860. }
  20861. },
  20862. },
  20863. [
  20864. {
  20865. name: "Normal",
  20866. height: math.unit(9.7, "feet"),
  20867. default: true
  20868. },
  20869. ]
  20870. ))
  20871. characterMakers.push(() => makeCharacter(
  20872. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  20873. {
  20874. front: {
  20875. height: math.unit(50, "feet"),
  20876. weight: math.unit(50000, "kg"),
  20877. name: "Front",
  20878. image: {
  20879. source: "./media/characters/anders/front.svg",
  20880. extra: 570 / 539,
  20881. bottom: 14.7 / 586.7
  20882. }
  20883. },
  20884. },
  20885. [
  20886. {
  20887. name: "Large",
  20888. height: math.unit(50, "feet")
  20889. },
  20890. {
  20891. name: "Macro",
  20892. height: math.unit(2000, "feet"),
  20893. default: true
  20894. },
  20895. {
  20896. name: "Megamacro",
  20897. height: math.unit(12, "miles")
  20898. },
  20899. ]
  20900. ))
  20901. characterMakers.push(() => makeCharacter(
  20902. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  20903. {
  20904. front: {
  20905. height: math.unit(7 + 2 / 12, "feet"),
  20906. weight: math.unit(300, "lb"),
  20907. name: "Front",
  20908. image: {
  20909. source: "./media/characters/reban/front.svg",
  20910. extra: 516 / 487,
  20911. bottom: 42.82 / 558.356
  20912. }
  20913. },
  20914. dick: {
  20915. height: math.unit(7 / 5, "feet"),
  20916. name: "Dick",
  20917. image: {
  20918. source: "./media/characters/reban/dick.svg"
  20919. }
  20920. },
  20921. },
  20922. [
  20923. {
  20924. name: "Natural Height",
  20925. height: math.unit(7 + 2 / 12, "feet")
  20926. },
  20927. {
  20928. name: "Macro",
  20929. height: math.unit(500, "feet"),
  20930. default: true
  20931. },
  20932. {
  20933. name: "Canon Height",
  20934. height: math.unit(50, "AU")
  20935. },
  20936. ]
  20937. ))
  20938. characterMakers.push(() => makeCharacter(
  20939. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  20940. {
  20941. front: {
  20942. height: math.unit(6, "feet"),
  20943. weight: math.unit(150, "lb"),
  20944. name: "Front",
  20945. image: {
  20946. source: "./media/characters/terrance-keayes/front.svg",
  20947. extra: 1.005,
  20948. bottom: 151 / 1615
  20949. }
  20950. },
  20951. side: {
  20952. height: math.unit(6, "feet"),
  20953. weight: math.unit(150, "lb"),
  20954. name: "Side",
  20955. image: {
  20956. source: "./media/characters/terrance-keayes/side.svg",
  20957. extra: 1.005,
  20958. bottom: 129.4 / 1544
  20959. }
  20960. },
  20961. back: {
  20962. height: math.unit(6, "feet"),
  20963. weight: math.unit(150, "lb"),
  20964. name: "Back",
  20965. image: {
  20966. source: "./media/characters/terrance-keayes/back.svg",
  20967. extra: 1.005,
  20968. bottom: 58.4 / 1557.3
  20969. }
  20970. },
  20971. dick: {
  20972. height: math.unit(6 * 0.208, "feet"),
  20973. name: "Dick",
  20974. image: {
  20975. source: "./media/characters/terrance-keayes/dick.svg"
  20976. }
  20977. },
  20978. },
  20979. [
  20980. {
  20981. name: "Canon Height",
  20982. height: math.unit(35, "miles"),
  20983. default: true
  20984. },
  20985. ]
  20986. ))
  20987. characterMakers.push(() => makeCharacter(
  20988. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  20989. {
  20990. front: {
  20991. height: math.unit(6, "feet"),
  20992. weight: math.unit(150, "lb"),
  20993. name: "Front",
  20994. image: {
  20995. source: "./media/characters/ofelia/front.svg",
  20996. extra: 546 / 541,
  20997. bottom: 39 / 583
  20998. }
  20999. },
  21000. back: {
  21001. height: math.unit(6, "feet"),
  21002. weight: math.unit(150, "lb"),
  21003. name: "Back",
  21004. image: {
  21005. source: "./media/characters/ofelia/back.svg",
  21006. extra: 564 / 559.5,
  21007. bottom: 8.69 / 573.02
  21008. }
  21009. },
  21010. maw: {
  21011. height: math.unit(1, "feet"),
  21012. name: "Maw",
  21013. image: {
  21014. source: "./media/characters/ofelia/maw.svg"
  21015. }
  21016. },
  21017. foot: {
  21018. height: math.unit(1.949, "feet"),
  21019. name: "Foot",
  21020. image: {
  21021. source: "./media/characters/ofelia/foot.svg"
  21022. }
  21023. },
  21024. },
  21025. [
  21026. {
  21027. name: "Canon Height",
  21028. height: math.unit(2000, "miles"),
  21029. default: true
  21030. },
  21031. ]
  21032. ))
  21033. characterMakers.push(() => makeCharacter(
  21034. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21035. {
  21036. front: {
  21037. height: math.unit(6, "feet"),
  21038. weight: math.unit(150, "lb"),
  21039. name: "Front",
  21040. image: {
  21041. source: "./media/characters/samuel/front.svg",
  21042. extra: 265 / 258,
  21043. bottom: 2 / 266.1566
  21044. }
  21045. },
  21046. },
  21047. [
  21048. {
  21049. name: "Macro",
  21050. height: math.unit(100, "feet"),
  21051. default: true
  21052. },
  21053. {
  21054. name: "Full Size",
  21055. height: math.unit(1000, "miles")
  21056. },
  21057. ]
  21058. ))
  21059. characterMakers.push(() => makeCharacter(
  21060. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21061. {
  21062. front: {
  21063. height: math.unit(6, "feet"),
  21064. weight: math.unit(300, "lb"),
  21065. name: "Front",
  21066. image: {
  21067. source: "./media/characters/beishir-kiel/front.svg",
  21068. extra: 569 / 547,
  21069. bottom: 41.9 / 609
  21070. }
  21071. },
  21072. maw: {
  21073. height: math.unit(6 * 0.202, "feet"),
  21074. name: "Maw",
  21075. image: {
  21076. source: "./media/characters/beishir-kiel/maw.svg"
  21077. }
  21078. },
  21079. },
  21080. [
  21081. {
  21082. name: "Macro",
  21083. height: math.unit(300, "feet"),
  21084. default: true
  21085. },
  21086. ]
  21087. ))
  21088. characterMakers.push(() => makeCharacter(
  21089. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21090. {
  21091. front: {
  21092. height: math.unit(5 + 8 / 12, "feet"),
  21093. weight: math.unit(120, "lb"),
  21094. name: "Front",
  21095. image: {
  21096. source: "./media/characters/logan-grey/front.svg",
  21097. extra: 2539 / 2393,
  21098. bottom: 97.6 / 2636.37
  21099. }
  21100. },
  21101. frontAlt: {
  21102. height: math.unit(5 + 8 / 12, "feet"),
  21103. weight: math.unit(120, "lb"),
  21104. name: "Front (Alt)",
  21105. image: {
  21106. source: "./media/characters/logan-grey/front-alt.svg",
  21107. extra: 958 / 893,
  21108. bottom: 15 / 970.768
  21109. }
  21110. },
  21111. back: {
  21112. height: math.unit(5 + 8 / 12, "feet"),
  21113. weight: math.unit(120, "lb"),
  21114. name: "Back",
  21115. image: {
  21116. source: "./media/characters/logan-grey/back.svg",
  21117. extra: 958 / 893,
  21118. bottom: 2.1881 / 970.9788
  21119. }
  21120. },
  21121. dick: {
  21122. height: math.unit(1.437, "feet"),
  21123. name: "Dick",
  21124. image: {
  21125. source: "./media/characters/logan-grey/dick.svg"
  21126. }
  21127. },
  21128. },
  21129. [
  21130. {
  21131. name: "Normal",
  21132. height: math.unit(5 + 8 / 12, "feet")
  21133. },
  21134. {
  21135. name: "The 500 Foot Femboy",
  21136. height: math.unit(500, "feet"),
  21137. default: true
  21138. },
  21139. {
  21140. name: "Megmacro",
  21141. height: math.unit(20, "miles")
  21142. },
  21143. ]
  21144. ))
  21145. characterMakers.push(() => makeCharacter(
  21146. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21147. {
  21148. front: {
  21149. height: math.unit(8 + 2 / 12, "feet"),
  21150. weight: math.unit(275, "lb"),
  21151. name: "Front",
  21152. image: {
  21153. source: "./media/characters/draganta/front.svg",
  21154. extra: 1177 / 1135,
  21155. bottom: 33.46 / 1212.1
  21156. }
  21157. },
  21158. },
  21159. [
  21160. {
  21161. name: "Normal",
  21162. height: math.unit(8 + 6 / 12, "feet"),
  21163. default: true
  21164. },
  21165. {
  21166. name: "Macro",
  21167. height: math.unit(150, "feet")
  21168. },
  21169. {
  21170. name: "Megamacro",
  21171. height: math.unit(1000, "miles")
  21172. },
  21173. ]
  21174. ))
  21175. characterMakers.push(() => makeCharacter(
  21176. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21177. {
  21178. front: {
  21179. height: math.unit(1.72, "m"),
  21180. weight: math.unit(80, "lb"),
  21181. name: "Front",
  21182. image: {
  21183. source: "./media/characters/voski/front.svg",
  21184. extra: 2076.22 / 2022.4,
  21185. bottom: 102.7 / 2177.3866
  21186. }
  21187. },
  21188. frontNsfw: {
  21189. height: math.unit(1.72, "m"),
  21190. weight: math.unit(80, "lb"),
  21191. name: "Front (NSFW)",
  21192. image: {
  21193. source: "./media/characters/voski/front-nsfw.svg",
  21194. extra: 2076.22 / 2022.4,
  21195. bottom: 102.7 / 2177.3866
  21196. }
  21197. },
  21198. back: {
  21199. height: math.unit(1.72, "m"),
  21200. weight: math.unit(80, "lb"),
  21201. name: "Back",
  21202. image: {
  21203. source: "./media/characters/voski/back.svg",
  21204. extra: 2104 / 2051,
  21205. bottom: 10.45 / 2113.63
  21206. }
  21207. },
  21208. },
  21209. [
  21210. {
  21211. name: "Normal",
  21212. height: math.unit(1.72, "m")
  21213. },
  21214. {
  21215. name: "Macro",
  21216. height: math.unit(55, "m"),
  21217. default: true
  21218. },
  21219. {
  21220. name: "Macro+",
  21221. height: math.unit(300, "m")
  21222. },
  21223. {
  21224. name: "Macro++",
  21225. height: math.unit(700, "m")
  21226. },
  21227. {
  21228. name: "Macro+++",
  21229. height: math.unit(4500, "m")
  21230. },
  21231. {
  21232. name: "Macro++++",
  21233. height: math.unit(45, "km")
  21234. },
  21235. {
  21236. name: "Macro+++++",
  21237. height: math.unit(1220, "km")
  21238. },
  21239. ]
  21240. ))
  21241. characterMakers.push(() => makeCharacter(
  21242. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21243. {
  21244. front: {
  21245. height: math.unit(2.3, "m"),
  21246. weight: math.unit(304, "kg"),
  21247. name: "Front",
  21248. image: {
  21249. source: "./media/characters/icowom-lee/front.svg",
  21250. extra: 985 / 955,
  21251. bottom: 25.4 / 1012
  21252. }
  21253. },
  21254. fronttentacles: {
  21255. height: math.unit(2.3, "m"),
  21256. weight: math.unit(304, "kg"),
  21257. name: "Front-tentacles",
  21258. image: {
  21259. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21260. extra: 985 / 955,
  21261. bottom: 25.4 / 1012
  21262. }
  21263. },
  21264. back: {
  21265. height: math.unit(2.3, "m"),
  21266. weight: math.unit(304, "kg"),
  21267. name: "Back",
  21268. image: {
  21269. source: "./media/characters/icowom-lee/back.svg",
  21270. extra: 975 / 954,
  21271. bottom: 9.5 / 985
  21272. }
  21273. },
  21274. backtentacles: {
  21275. height: math.unit(2.3, "m"),
  21276. weight: math.unit(304, "kg"),
  21277. name: "Back-tentacles",
  21278. image: {
  21279. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21280. extra: 975 / 954,
  21281. bottom: 9.5 / 985
  21282. }
  21283. },
  21284. frontDressed: {
  21285. height: math.unit(2.3, "m"),
  21286. weight: math.unit(304, "kg"),
  21287. name: "Front (Dressed)",
  21288. image: {
  21289. source: "./media/characters/icowom-lee/front-dressed.svg",
  21290. extra: 3076 / 2933,
  21291. bottom: 51.4 / 3125.1889
  21292. }
  21293. },
  21294. rump: {
  21295. height: math.unit(0.776, "meters"),
  21296. name: "Rump",
  21297. image: {
  21298. source: "./media/characters/icowom-lee/rump.svg"
  21299. }
  21300. },
  21301. genitals: {
  21302. height: math.unit(0.78, "meters"),
  21303. name: "Genitals",
  21304. image: {
  21305. source: "./media/characters/icowom-lee/genitals.svg"
  21306. }
  21307. },
  21308. },
  21309. [
  21310. {
  21311. name: "Normal",
  21312. height: math.unit(2.3, "meters"),
  21313. default: true
  21314. },
  21315. {
  21316. name: "Macro",
  21317. height: math.unit(94, "meters"),
  21318. default: true
  21319. },
  21320. ]
  21321. ))
  21322. characterMakers.push(() => makeCharacter(
  21323. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21324. {
  21325. front: {
  21326. height: math.unit(22, "meters"),
  21327. weight: math.unit(21000, "kg"),
  21328. name: "Front",
  21329. image: {
  21330. source: "./media/characters/shock-diamond/front.svg",
  21331. extra: 2204 / 2053,
  21332. bottom: 65 / 2239.47
  21333. }
  21334. },
  21335. frontNude: {
  21336. height: math.unit(22, "meters"),
  21337. weight: math.unit(21000, "kg"),
  21338. name: "Front (Nude)",
  21339. image: {
  21340. source: "./media/characters/shock-diamond/front-nude.svg",
  21341. extra: 2514 / 2285,
  21342. bottom: 13 / 2527.56
  21343. }
  21344. },
  21345. },
  21346. [
  21347. {
  21348. name: "Normal",
  21349. height: math.unit(3, "meters")
  21350. },
  21351. {
  21352. name: "Macro",
  21353. height: math.unit(22, "meters"),
  21354. default: true
  21355. },
  21356. ]
  21357. ))
  21358. characterMakers.push(() => makeCharacter(
  21359. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21360. {
  21361. front: {
  21362. height: math.unit(5 + 4 / 12, "feet"),
  21363. weight: math.unit(120, "lb"),
  21364. name: "Front",
  21365. image: {
  21366. source: "./media/characters/rory/front.svg",
  21367. extra: 589 / 556,
  21368. bottom: 45.7 / 635.76
  21369. }
  21370. },
  21371. frontNude: {
  21372. height: math.unit(5 + 4 / 12, "feet"),
  21373. weight: math.unit(120, "lb"),
  21374. name: "Front (Nude)",
  21375. image: {
  21376. source: "./media/characters/rory/front-nude.svg",
  21377. extra: 589 / 556,
  21378. bottom: 45.7 / 635.76
  21379. }
  21380. },
  21381. side: {
  21382. height: math.unit(5 + 4 / 12, "feet"),
  21383. weight: math.unit(120, "lb"),
  21384. name: "Side",
  21385. image: {
  21386. source: "./media/characters/rory/side.svg",
  21387. extra: 597 / 564,
  21388. bottom: 55 / 653
  21389. }
  21390. },
  21391. back: {
  21392. height: math.unit(5 + 4 / 12, "feet"),
  21393. weight: math.unit(120, "lb"),
  21394. name: "Back",
  21395. image: {
  21396. source: "./media/characters/rory/back.svg",
  21397. extra: 620 / 585,
  21398. bottom: 8.86 / 630.43
  21399. }
  21400. },
  21401. dick: {
  21402. height: math.unit(0.86, "feet"),
  21403. name: "Dick",
  21404. image: {
  21405. source: "./media/characters/rory/dick.svg"
  21406. }
  21407. },
  21408. },
  21409. [
  21410. {
  21411. name: "Normal",
  21412. height: math.unit(5 + 4 / 12, "feet"),
  21413. default: true
  21414. },
  21415. {
  21416. name: "Macro",
  21417. height: math.unit(100, "feet")
  21418. },
  21419. {
  21420. name: "Macro+",
  21421. height: math.unit(140, "feet")
  21422. },
  21423. {
  21424. name: "Macro++",
  21425. height: math.unit(300, "feet")
  21426. },
  21427. ]
  21428. ))
  21429. characterMakers.push(() => makeCharacter(
  21430. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21431. {
  21432. front: {
  21433. height: math.unit(5 + 9 / 12, "feet"),
  21434. weight: math.unit(190, "lb"),
  21435. name: "Front",
  21436. image: {
  21437. source: "./media/characters/sprisk/front.svg",
  21438. extra: 1225 / 1180,
  21439. bottom: 42.7 / 1266.4
  21440. }
  21441. },
  21442. frontNsfw: {
  21443. height: math.unit(5 + 9 / 12, "feet"),
  21444. weight: math.unit(190, "lb"),
  21445. name: "Front (NSFW)",
  21446. image: {
  21447. source: "./media/characters/sprisk/front-nsfw.svg",
  21448. extra: 1225 / 1180,
  21449. bottom: 42.7 / 1266.4
  21450. }
  21451. },
  21452. back: {
  21453. height: math.unit(5 + 9 / 12, "feet"),
  21454. weight: math.unit(190, "lb"),
  21455. name: "Back",
  21456. image: {
  21457. source: "./media/characters/sprisk/back.svg",
  21458. extra: 1247 / 1200,
  21459. bottom: 5.6 / 1253.04
  21460. }
  21461. },
  21462. },
  21463. [
  21464. {
  21465. name: "Tiny",
  21466. height: math.unit(2, "inches")
  21467. },
  21468. {
  21469. name: "Normal",
  21470. height: math.unit(5 + 9 / 12, "feet"),
  21471. default: true
  21472. },
  21473. {
  21474. name: "Mini Macro",
  21475. height: math.unit(18, "feet")
  21476. },
  21477. {
  21478. name: "Macro",
  21479. height: math.unit(100, "feet")
  21480. },
  21481. {
  21482. name: "MACRO",
  21483. height: math.unit(50, "miles")
  21484. },
  21485. {
  21486. name: "M A C R O",
  21487. height: math.unit(300, "miles")
  21488. },
  21489. ]
  21490. ))
  21491. characterMakers.push(() => makeCharacter(
  21492. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21493. {
  21494. side: {
  21495. height: math.unit(15.6, "meters"),
  21496. weight: math.unit(700000, "kg"),
  21497. name: "Side",
  21498. image: {
  21499. source: "./media/characters/bunsen/side.svg",
  21500. extra: 1644 / 358
  21501. }
  21502. },
  21503. foot: {
  21504. height: math.unit(1.611 * 1644 / 358, "meter"),
  21505. name: "Foot",
  21506. image: {
  21507. source: "./media/characters/bunsen/foot.svg"
  21508. }
  21509. },
  21510. },
  21511. [
  21512. {
  21513. name: "Small",
  21514. height: math.unit(10, "feet")
  21515. },
  21516. {
  21517. name: "Normal",
  21518. height: math.unit(15.6, "meters"),
  21519. default: true
  21520. },
  21521. ]
  21522. ))
  21523. characterMakers.push(() => makeCharacter(
  21524. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21525. {
  21526. front: {
  21527. height: math.unit(4 + 11 / 12, "feet"),
  21528. weight: math.unit(140, "lb"),
  21529. name: "Front",
  21530. image: {
  21531. source: "./media/characters/sesh/front.svg",
  21532. extra: 3420 / 3231,
  21533. bottom: 72 / 3949.5
  21534. }
  21535. },
  21536. },
  21537. [
  21538. {
  21539. name: "Normal",
  21540. height: math.unit(4 + 11 / 12, "feet")
  21541. },
  21542. {
  21543. name: "Grown",
  21544. height: math.unit(15, "feet"),
  21545. default: true
  21546. },
  21547. {
  21548. name: "Macro",
  21549. height: math.unit(1500, "feet")
  21550. },
  21551. {
  21552. name: "Megamacro",
  21553. height: math.unit(30, "miles")
  21554. },
  21555. {
  21556. name: "Continental",
  21557. height: math.unit(3000, "miles")
  21558. },
  21559. {
  21560. name: "Gravity Mass",
  21561. height: math.unit(300000, "miles")
  21562. },
  21563. {
  21564. name: "Planet Buster",
  21565. height: math.unit(30000000, "miles")
  21566. },
  21567. {
  21568. name: "Big",
  21569. height: math.unit(3000000000, "miles")
  21570. },
  21571. ]
  21572. ))
  21573. characterMakers.push(() => makeCharacter(
  21574. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21575. {
  21576. front: {
  21577. height: math.unit(9, "feet"),
  21578. weight: math.unit(350, "lb"),
  21579. name: "Front",
  21580. image: {
  21581. source: "./media/characters/pepper/front.svg",
  21582. extra: 1448 / 1312,
  21583. bottom: 9.4 / 1457.88
  21584. }
  21585. },
  21586. back: {
  21587. height: math.unit(9, "feet"),
  21588. weight: math.unit(350, "lb"),
  21589. name: "Back",
  21590. image: {
  21591. source: "./media/characters/pepper/back.svg",
  21592. extra: 1423 / 1300,
  21593. bottom: 4.6 / 1429
  21594. }
  21595. },
  21596. maw: {
  21597. height: math.unit(0.932, "feet"),
  21598. name: "Maw",
  21599. image: {
  21600. source: "./media/characters/pepper/maw.svg"
  21601. }
  21602. },
  21603. },
  21604. [
  21605. {
  21606. name: "Normal",
  21607. height: math.unit(9, "feet"),
  21608. default: true
  21609. },
  21610. ]
  21611. ))
  21612. characterMakers.push(() => makeCharacter(
  21613. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21614. {
  21615. front: {
  21616. height: math.unit(6, "feet"),
  21617. weight: math.unit(150, "lb"),
  21618. name: "Front",
  21619. image: {
  21620. source: "./media/characters/maelstrom/front.svg",
  21621. extra: 2100 / 1883,
  21622. bottom: 94 / 2196.7
  21623. }
  21624. },
  21625. },
  21626. [
  21627. {
  21628. name: "Less Kaiju",
  21629. height: math.unit(200, "feet")
  21630. },
  21631. {
  21632. name: "Kaiju",
  21633. height: math.unit(400, "feet"),
  21634. default: true
  21635. },
  21636. {
  21637. name: "Kaiju-er",
  21638. height: math.unit(600, "feet")
  21639. },
  21640. ]
  21641. ))
  21642. characterMakers.push(() => makeCharacter(
  21643. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21644. {
  21645. front: {
  21646. height: math.unit(6 + 5 / 12, "feet"),
  21647. weight: math.unit(180, "lb"),
  21648. name: "Front",
  21649. image: {
  21650. source: "./media/characters/lexir/front.svg",
  21651. extra: 180 / 172,
  21652. bottom: 12 / 192
  21653. }
  21654. },
  21655. back: {
  21656. height: math.unit(6 + 5 / 12, "feet"),
  21657. weight: math.unit(180, "lb"),
  21658. name: "Back",
  21659. image: {
  21660. source: "./media/characters/lexir/back.svg",
  21661. extra: 183.84 / 175.5,
  21662. bottom: 3.1 / 187
  21663. }
  21664. },
  21665. },
  21666. [
  21667. {
  21668. name: "Very Smal",
  21669. height: math.unit(1, "nm")
  21670. },
  21671. {
  21672. name: "Normal",
  21673. height: math.unit(6 + 5 / 12, "feet"),
  21674. default: true
  21675. },
  21676. {
  21677. name: "Macro",
  21678. height: math.unit(1, "mile")
  21679. },
  21680. {
  21681. name: "Megamacro",
  21682. height: math.unit(50, "miles")
  21683. },
  21684. ]
  21685. ))
  21686. characterMakers.push(() => makeCharacter(
  21687. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  21688. {
  21689. front: {
  21690. height: math.unit(1.5, "meters"),
  21691. weight: math.unit(100, "lb"),
  21692. name: "Front",
  21693. image: {
  21694. source: "./media/characters/maksio/front.svg",
  21695. extra: 1549 / 1531,
  21696. bottom: 123.7 / 1674.5429
  21697. }
  21698. },
  21699. back: {
  21700. height: math.unit(1.5, "meters"),
  21701. weight: math.unit(100, "lb"),
  21702. name: "Back",
  21703. image: {
  21704. source: "./media/characters/maksio/back.svg",
  21705. extra: 1541 / 1509,
  21706. bottom: 97 / 1639
  21707. }
  21708. },
  21709. hand: {
  21710. height: math.unit(0.621, "feet"),
  21711. name: "Hand",
  21712. image: {
  21713. source: "./media/characters/maksio/hand.svg"
  21714. }
  21715. },
  21716. foot: {
  21717. height: math.unit(1.611, "feet"),
  21718. name: "Foot",
  21719. image: {
  21720. source: "./media/characters/maksio/foot.svg"
  21721. }
  21722. },
  21723. },
  21724. [
  21725. {
  21726. name: "Shrunken",
  21727. height: math.unit(10, "cm")
  21728. },
  21729. {
  21730. name: "Normal",
  21731. height: math.unit(150, "cm"),
  21732. default: true
  21733. },
  21734. ]
  21735. ))
  21736. characterMakers.push(() => makeCharacter(
  21737. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  21738. {
  21739. front: {
  21740. height: math.unit(100, "feet"),
  21741. name: "Front",
  21742. image: {
  21743. source: "./media/characters/erza-bear/front.svg",
  21744. extra: 2449 / 2390,
  21745. bottom: 46 / 2494
  21746. }
  21747. },
  21748. back: {
  21749. height: math.unit(100, "feet"),
  21750. name: "Back",
  21751. image: {
  21752. source: "./media/characters/erza-bear/back.svg",
  21753. extra: 2489 / 2430,
  21754. bottom: 85.4 / 2480
  21755. }
  21756. },
  21757. tail: {
  21758. height: math.unit(42, "feet"),
  21759. name: "Tail",
  21760. image: {
  21761. source: "./media/characters/erza-bear/tail.svg"
  21762. }
  21763. },
  21764. tongue: {
  21765. height: math.unit(8, "feet"),
  21766. name: "Tongue",
  21767. image: {
  21768. source: "./media/characters/erza-bear/tongue.svg"
  21769. }
  21770. },
  21771. dick: {
  21772. height: math.unit(10.5, "feet"),
  21773. name: "Dick",
  21774. image: {
  21775. source: "./media/characters/erza-bear/dick.svg"
  21776. }
  21777. },
  21778. dickVertical: {
  21779. height: math.unit(16.9, "feet"),
  21780. name: "Dick (Vertical)",
  21781. image: {
  21782. source: "./media/characters/erza-bear/dick-vertical.svg"
  21783. }
  21784. },
  21785. },
  21786. [
  21787. {
  21788. name: "Macro",
  21789. height: math.unit(100, "feet"),
  21790. default: true
  21791. },
  21792. ]
  21793. ))
  21794. characterMakers.push(() => makeCharacter(
  21795. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  21796. {
  21797. front: {
  21798. height: math.unit(172, "cm"),
  21799. weight: math.unit(73, "kg"),
  21800. name: "Front",
  21801. image: {
  21802. source: "./media/characters/violet-flor/front.svg",
  21803. extra: 1530 / 1442,
  21804. bottom: 61.9 / 1588.8
  21805. }
  21806. },
  21807. back: {
  21808. height: math.unit(180, "cm"),
  21809. weight: math.unit(73, "kg"),
  21810. name: "Back",
  21811. image: {
  21812. source: "./media/characters/violet-flor/back.svg",
  21813. extra: 1692 / 1630,
  21814. bottom: 20 / 1712
  21815. }
  21816. },
  21817. },
  21818. [
  21819. {
  21820. name: "Normal",
  21821. height: math.unit(172, "cm"),
  21822. default: true
  21823. },
  21824. ]
  21825. ))
  21826. characterMakers.push(() => makeCharacter(
  21827. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  21828. {
  21829. front: {
  21830. height: math.unit(6, "feet"),
  21831. weight: math.unit(220, "lb"),
  21832. name: "Front",
  21833. image: {
  21834. source: "./media/characters/lynn-rhea/front.svg",
  21835. extra: 310 / 273
  21836. }
  21837. },
  21838. back: {
  21839. height: math.unit(6, "feet"),
  21840. weight: math.unit(220, "lb"),
  21841. name: "Back",
  21842. image: {
  21843. source: "./media/characters/lynn-rhea/back.svg",
  21844. extra: 310 / 273
  21845. }
  21846. },
  21847. dicks: {
  21848. height: math.unit(0.9, "feet"),
  21849. name: "Dicks",
  21850. image: {
  21851. source: "./media/characters/lynn-rhea/dicks.svg"
  21852. }
  21853. },
  21854. slit: {
  21855. height: math.unit(0.4, "feet"),
  21856. name: "Slit",
  21857. image: {
  21858. source: "./media/characters/lynn-rhea/slit.svg"
  21859. }
  21860. },
  21861. },
  21862. [
  21863. {
  21864. name: "Micro",
  21865. height: math.unit(1, "inch")
  21866. },
  21867. {
  21868. name: "Macro",
  21869. height: math.unit(60, "feet"),
  21870. default: true
  21871. },
  21872. {
  21873. name: "Megamacro",
  21874. height: math.unit(2, "miles")
  21875. },
  21876. {
  21877. name: "Gigamacro",
  21878. height: math.unit(3, "earths")
  21879. },
  21880. {
  21881. name: "Galactic",
  21882. height: math.unit(0.8, "galaxies")
  21883. },
  21884. ]
  21885. ))
  21886. characterMakers.push(() => makeCharacter(
  21887. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  21888. {
  21889. front: {
  21890. height: math.unit(1600, "feet"),
  21891. weight: math.unit(85758785169, "kg"),
  21892. name: "Front",
  21893. image: {
  21894. source: "./media/characters/valathos/front.svg",
  21895. extra: 1451 / 1339
  21896. }
  21897. },
  21898. },
  21899. [
  21900. {
  21901. name: "Macro",
  21902. height: math.unit(1600, "feet"),
  21903. default: true
  21904. },
  21905. ]
  21906. ))
  21907. characterMakers.push(() => makeCharacter(
  21908. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  21909. {
  21910. front: {
  21911. height: math.unit(7 + 5 / 12, "feet"),
  21912. weight: math.unit(300, "lb"),
  21913. name: "Front",
  21914. image: {
  21915. source: "./media/characters/azula/front.svg",
  21916. extra: 3208 / 2880,
  21917. bottom: 80.2 / 3277
  21918. }
  21919. },
  21920. back: {
  21921. height: math.unit(7 + 5 / 12, "feet"),
  21922. weight: math.unit(300, "lb"),
  21923. name: "Back",
  21924. image: {
  21925. source: "./media/characters/azula/back.svg",
  21926. extra: 3169 / 2822,
  21927. bottom: 150.6 / 3321
  21928. }
  21929. },
  21930. },
  21931. [
  21932. {
  21933. name: "Normal",
  21934. height: math.unit(7 + 5 / 12, "feet"),
  21935. default: true
  21936. },
  21937. {
  21938. name: "Big",
  21939. height: math.unit(20, "feet")
  21940. },
  21941. ]
  21942. ))
  21943. characterMakers.push(() => makeCharacter(
  21944. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  21945. {
  21946. front: {
  21947. height: math.unit(5 + 1 / 12, "feet"),
  21948. weight: math.unit(110, "lb"),
  21949. name: "Front",
  21950. image: {
  21951. source: "./media/characters/rupert/front.svg",
  21952. extra: 1549 / 1495,
  21953. bottom: 54.2 / 1604.4
  21954. }
  21955. },
  21956. },
  21957. [
  21958. {
  21959. name: "Normal",
  21960. height: math.unit(5 + 1 / 12, "feet"),
  21961. default: true
  21962. },
  21963. ]
  21964. ))
  21965. characterMakers.push(() => makeCharacter(
  21966. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  21967. {
  21968. front: {
  21969. height: math.unit(8 + 4 / 12, "feet"),
  21970. weight: math.unit(350, "lb"),
  21971. name: "Front",
  21972. image: {
  21973. source: "./media/characters/sheera-castellar/front.svg",
  21974. extra: 1957 / 1894,
  21975. bottom: 26.97 / 1975.017
  21976. }
  21977. },
  21978. side: {
  21979. height: math.unit(8 + 4 / 12, "feet"),
  21980. weight: math.unit(350, "lb"),
  21981. name: "Side",
  21982. image: {
  21983. source: "./media/characters/sheera-castellar/side.svg",
  21984. extra: 1957 / 1894
  21985. }
  21986. },
  21987. back: {
  21988. height: math.unit(8 + 4 / 12, "feet"),
  21989. weight: math.unit(350, "lb"),
  21990. name: "Back",
  21991. image: {
  21992. source: "./media/characters/sheera-castellar/back.svg",
  21993. extra: 1957 / 1894
  21994. }
  21995. },
  21996. angled: {
  21997. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  21998. weight: math.unit(350, "lb"),
  21999. name: "Angled",
  22000. image: {
  22001. source: "./media/characters/sheera-castellar/angled.svg",
  22002. extra: 1807 / 1707,
  22003. bottom: 68 / 1875
  22004. }
  22005. },
  22006. genitals: {
  22007. height: math.unit(2.2, "feet"),
  22008. name: "Genitals",
  22009. image: {
  22010. source: "./media/characters/sheera-castellar/genitals.svg"
  22011. }
  22012. },
  22013. },
  22014. [
  22015. {
  22016. name: "Normal",
  22017. height: math.unit(8 + 4 / 12, "feet")
  22018. },
  22019. {
  22020. name: "Macro",
  22021. height: math.unit(150, "feet"),
  22022. default: true
  22023. },
  22024. {
  22025. name: "Macro+",
  22026. height: math.unit(800, "feet")
  22027. },
  22028. ]
  22029. ))
  22030. characterMakers.push(() => makeCharacter(
  22031. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22032. {
  22033. front: {
  22034. height: math.unit(6, "feet"),
  22035. weight: math.unit(150, "lb"),
  22036. name: "Front",
  22037. image: {
  22038. source: "./media/characters/jaipur/front.svg",
  22039. extra: 3860 / 3731,
  22040. bottom: 287 / 4140
  22041. }
  22042. },
  22043. back: {
  22044. height: math.unit(6, "feet"),
  22045. weight: math.unit(150, "lb"),
  22046. name: "Back",
  22047. image: {
  22048. source: "./media/characters/jaipur/back.svg",
  22049. extra: 4060 / 3930,
  22050. bottom: 151 / 4200
  22051. }
  22052. },
  22053. },
  22054. [
  22055. {
  22056. name: "Normal",
  22057. height: math.unit(1.85, "meters"),
  22058. default: true
  22059. },
  22060. {
  22061. name: "Macro",
  22062. height: math.unit(150, "meters")
  22063. },
  22064. {
  22065. name: "Macro+",
  22066. height: math.unit(0.5, "miles")
  22067. },
  22068. {
  22069. name: "Macro++",
  22070. height: math.unit(2.5, "miles")
  22071. },
  22072. {
  22073. name: "Macro+++",
  22074. height: math.unit(12, "miles")
  22075. },
  22076. {
  22077. name: "Macro++++",
  22078. height: math.unit(120, "miles")
  22079. },
  22080. {
  22081. name: "Macro+++++",
  22082. height: math.unit(1200, "miles")
  22083. },
  22084. ]
  22085. ))
  22086. characterMakers.push(() => makeCharacter(
  22087. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22088. {
  22089. front: {
  22090. height: math.unit(6, "feet"),
  22091. weight: math.unit(150, "lb"),
  22092. name: "Front",
  22093. image: {
  22094. source: "./media/characters/sheila-wolf/front.svg",
  22095. extra: 1931 / 1808,
  22096. bottom: 29.5 / 1960
  22097. }
  22098. },
  22099. dick: {
  22100. height: math.unit(1.464, "feet"),
  22101. name: "Dick",
  22102. image: {
  22103. source: "./media/characters/sheila-wolf/dick.svg"
  22104. }
  22105. },
  22106. muzzle: {
  22107. height: math.unit(0.513, "feet"),
  22108. name: "Muzzle",
  22109. image: {
  22110. source: "./media/characters/sheila-wolf/muzzle.svg"
  22111. }
  22112. },
  22113. },
  22114. [
  22115. {
  22116. name: "Macro",
  22117. height: math.unit(70, "feet"),
  22118. default: true
  22119. },
  22120. ]
  22121. ))
  22122. characterMakers.push(() => makeCharacter(
  22123. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22124. {
  22125. front: {
  22126. height: math.unit(32, "meters"),
  22127. weight: math.unit(300000, "kg"),
  22128. name: "Front",
  22129. image: {
  22130. source: "./media/characters/almor/front.svg",
  22131. extra: 1408 / 1322,
  22132. bottom: 94.6 / 1506.5
  22133. }
  22134. },
  22135. },
  22136. [
  22137. {
  22138. name: "Macro",
  22139. height: math.unit(32, "meters"),
  22140. default: true
  22141. },
  22142. ]
  22143. ))
  22144. characterMakers.push(() => makeCharacter(
  22145. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22146. {
  22147. front: {
  22148. height: math.unit(7, "feet"),
  22149. weight: math.unit(200, "lb"),
  22150. name: "Front",
  22151. image: {
  22152. source: "./media/characters/silver/front.svg",
  22153. extra: 472.1 / 450.5,
  22154. bottom: 26.5 / 499.424
  22155. }
  22156. },
  22157. },
  22158. [
  22159. {
  22160. name: "Normal",
  22161. height: math.unit(7, "feet"),
  22162. default: true
  22163. },
  22164. {
  22165. name: "Macro",
  22166. height: math.unit(800, "feet")
  22167. },
  22168. {
  22169. name: "Megamacro",
  22170. height: math.unit(250, "miles")
  22171. },
  22172. ]
  22173. ))
  22174. characterMakers.push(() => makeCharacter(
  22175. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22176. {
  22177. front: {
  22178. height: math.unit(6, "feet"),
  22179. weight: math.unit(150, "lb"),
  22180. name: "Front",
  22181. image: {
  22182. source: "./media/characters/pliskin/front.svg",
  22183. extra: 1469 / 1359,
  22184. bottom: 70 / 1540
  22185. }
  22186. },
  22187. },
  22188. [
  22189. {
  22190. name: "Micro",
  22191. height: math.unit(3, "inches")
  22192. },
  22193. {
  22194. name: "Normal",
  22195. height: math.unit(5 + 11 / 12, "feet"),
  22196. default: true
  22197. },
  22198. {
  22199. name: "Macro",
  22200. height: math.unit(120, "feet")
  22201. },
  22202. ]
  22203. ))
  22204. characterMakers.push(() => makeCharacter(
  22205. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22206. {
  22207. front: {
  22208. height: math.unit(6, "feet"),
  22209. weight: math.unit(150, "lb"),
  22210. name: "Front",
  22211. image: {
  22212. source: "./media/characters/sammy/front.svg",
  22213. extra: 1193 / 1089,
  22214. bottom: 30.5 / 1226
  22215. }
  22216. },
  22217. },
  22218. [
  22219. {
  22220. name: "Macro",
  22221. height: math.unit(1700, "feet"),
  22222. default: true
  22223. },
  22224. {
  22225. name: "Examacro",
  22226. height: math.unit(2.5e9, "lightyears")
  22227. },
  22228. ]
  22229. ))
  22230. characterMakers.push(() => makeCharacter(
  22231. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22232. {
  22233. front: {
  22234. height: math.unit(21, "meters"),
  22235. weight: math.unit(12, "tonnes"),
  22236. name: "Front",
  22237. image: {
  22238. source: "./media/characters/kuru/front.svg",
  22239. extra: 4301 / 3785,
  22240. bottom: 371.3 / 4691
  22241. }
  22242. },
  22243. },
  22244. [
  22245. {
  22246. name: "Macro",
  22247. height: math.unit(21, "meters"),
  22248. default: true
  22249. },
  22250. ]
  22251. ))
  22252. characterMakers.push(() => makeCharacter(
  22253. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22254. {
  22255. front: {
  22256. height: math.unit(23, "meters"),
  22257. weight: math.unit(12.2, "tonnes"),
  22258. name: "Front",
  22259. image: {
  22260. source: "./media/characters/rakka/front.svg",
  22261. extra: 4670 / 4169,
  22262. bottom: 301 / 4968.7
  22263. }
  22264. },
  22265. },
  22266. [
  22267. {
  22268. name: "Macro",
  22269. height: math.unit(23, "meters"),
  22270. default: true
  22271. },
  22272. ]
  22273. ))
  22274. characterMakers.push(() => makeCharacter(
  22275. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22276. {
  22277. front: {
  22278. height: math.unit(6, "feet"),
  22279. weight: math.unit(150, "lb"),
  22280. name: "Front",
  22281. image: {
  22282. source: "./media/characters/rhys-feline/front.svg",
  22283. extra: 2488 / 2308,
  22284. bottom: 35.67 / 2519.19
  22285. }
  22286. },
  22287. },
  22288. [
  22289. {
  22290. name: "Really Small",
  22291. height: math.unit(1, "nm")
  22292. },
  22293. {
  22294. name: "Micro",
  22295. height: math.unit(4, "inches")
  22296. },
  22297. {
  22298. name: "Normal",
  22299. height: math.unit(4 + 10 / 12, "feet"),
  22300. default: true
  22301. },
  22302. {
  22303. name: "Macro",
  22304. height: math.unit(100, "feet")
  22305. },
  22306. {
  22307. name: "Megamacto",
  22308. height: math.unit(50, "miles")
  22309. },
  22310. ]
  22311. ))
  22312. characterMakers.push(() => makeCharacter(
  22313. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22314. {
  22315. side: {
  22316. height: math.unit(30, "feet"),
  22317. weight: math.unit(35000, "kg"),
  22318. name: "Side",
  22319. image: {
  22320. source: "./media/characters/alydar/side.svg",
  22321. extra: 234 / 222,
  22322. bottom: 6.5 / 241
  22323. }
  22324. },
  22325. front: {
  22326. height: math.unit(30, "feet"),
  22327. weight: math.unit(35000, "kg"),
  22328. name: "Front",
  22329. image: {
  22330. source: "./media/characters/alydar/front.svg",
  22331. extra: 223.37 / 210.2,
  22332. bottom: 22.3 / 246.76
  22333. }
  22334. },
  22335. top: {
  22336. height: math.unit(64.54, "feet"),
  22337. weight: math.unit(35000, "kg"),
  22338. name: "Top",
  22339. image: {
  22340. source: "./media/characters/alydar/top.svg"
  22341. }
  22342. },
  22343. anthro: {
  22344. height: math.unit(30, "feet"),
  22345. weight: math.unit(9000, "kg"),
  22346. name: "Anthro",
  22347. image: {
  22348. source: "./media/characters/alydar/anthro.svg",
  22349. extra: 432 / 421,
  22350. bottom: 7.18 / 440
  22351. }
  22352. },
  22353. maw: {
  22354. height: math.unit(11.693, "feet"),
  22355. name: "Maw",
  22356. image: {
  22357. source: "./media/characters/alydar/maw.svg"
  22358. }
  22359. },
  22360. head: {
  22361. height: math.unit(11.693, "feet"),
  22362. name: "Head",
  22363. image: {
  22364. source: "./media/characters/alydar/head.svg"
  22365. }
  22366. },
  22367. headAlt: {
  22368. height: math.unit(12.861, "feet"),
  22369. name: "Head (Alt)",
  22370. image: {
  22371. source: "./media/characters/alydar/head-alt.svg"
  22372. }
  22373. },
  22374. wing: {
  22375. height: math.unit(20.712, "feet"),
  22376. name: "Wing",
  22377. image: {
  22378. source: "./media/characters/alydar/wing.svg"
  22379. }
  22380. },
  22381. wingFeather: {
  22382. height: math.unit(9.662, "feet"),
  22383. name: "Wing Feather",
  22384. image: {
  22385. source: "./media/characters/alydar/wing-feather.svg"
  22386. }
  22387. },
  22388. countourFeather: {
  22389. height: math.unit(4.154, "feet"),
  22390. name: "Contour Feather",
  22391. image: {
  22392. source: "./media/characters/alydar/contour-feather.svg"
  22393. }
  22394. },
  22395. },
  22396. [
  22397. {
  22398. name: "Diplomatic",
  22399. height: math.unit(13, "feet"),
  22400. default: true
  22401. },
  22402. {
  22403. name: "Small",
  22404. height: math.unit(30, "feet")
  22405. },
  22406. {
  22407. name: "Normal",
  22408. height: math.unit(95, "feet"),
  22409. default: true
  22410. },
  22411. {
  22412. name: "Large",
  22413. height: math.unit(285, "feet")
  22414. },
  22415. {
  22416. name: "Incomprehensible",
  22417. height: math.unit(450, "megameters")
  22418. },
  22419. ]
  22420. ))
  22421. characterMakers.push(() => makeCharacter(
  22422. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22423. {
  22424. side: {
  22425. height: math.unit(11, "feet"),
  22426. weight: math.unit(1750, "kg"),
  22427. name: "Side",
  22428. image: {
  22429. source: "./media/characters/selicia/side.svg",
  22430. extra: 440 / 396,
  22431. bottom: 24.8 / 465.979
  22432. }
  22433. },
  22434. maw: {
  22435. height: math.unit(4.665, "feet"),
  22436. name: "Maw",
  22437. image: {
  22438. source: "./media/characters/selicia/maw.svg"
  22439. }
  22440. },
  22441. },
  22442. [
  22443. {
  22444. name: "Normal",
  22445. height: math.unit(11, "feet"),
  22446. default: true
  22447. },
  22448. ]
  22449. ))
  22450. characterMakers.push(() => makeCharacter(
  22451. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22452. {
  22453. side: {
  22454. height: math.unit(2 + 6 / 12, "feet"),
  22455. weight: math.unit(30, "lb"),
  22456. name: "Side",
  22457. image: {
  22458. source: "./media/characters/layla/side.svg",
  22459. extra: 244 / 188,
  22460. bottom: 18.2 / 262.1
  22461. }
  22462. },
  22463. back: {
  22464. height: math.unit(2 + 6 / 12, "feet"),
  22465. weight: math.unit(30, "lb"),
  22466. name: "Back",
  22467. image: {
  22468. source: "./media/characters/layla/back.svg",
  22469. extra: 308 / 241.5,
  22470. bottom: 8.9 / 316.8
  22471. }
  22472. },
  22473. cumming: {
  22474. height: math.unit(2 + 6 / 12, "feet"),
  22475. weight: math.unit(30, "lb"),
  22476. name: "Cumming",
  22477. image: {
  22478. source: "./media/characters/layla/cumming.svg",
  22479. extra: 342 / 279,
  22480. bottom: 595 / 938
  22481. }
  22482. },
  22483. dickFlaccid: {
  22484. height: math.unit(2.595, "feet"),
  22485. name: "Flaccid Genitals",
  22486. image: {
  22487. source: "./media/characters/layla/dick-flaccid.svg"
  22488. }
  22489. },
  22490. dickErect: {
  22491. height: math.unit(2.359, "feet"),
  22492. name: "Erect Genitals",
  22493. image: {
  22494. source: "./media/characters/layla/dick-erect.svg"
  22495. }
  22496. },
  22497. },
  22498. [
  22499. {
  22500. name: "Micro",
  22501. height: math.unit(1, "inch")
  22502. },
  22503. {
  22504. name: "Small",
  22505. height: math.unit(1, "foot")
  22506. },
  22507. {
  22508. name: "Normal",
  22509. height: math.unit(2 + 6 / 12, "feet"),
  22510. default: true
  22511. },
  22512. {
  22513. name: "Macro",
  22514. height: math.unit(200, "feet")
  22515. },
  22516. {
  22517. name: "Megamacro",
  22518. height: math.unit(1000, "miles")
  22519. },
  22520. {
  22521. name: "Planetary",
  22522. height: math.unit(8000, "miles")
  22523. },
  22524. {
  22525. name: "True Layla",
  22526. height: math.unit(200000 * 7, "multiverses")
  22527. },
  22528. ]
  22529. ))
  22530. characterMakers.push(() => makeCharacter(
  22531. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22532. {
  22533. back: {
  22534. height: math.unit(10.5, "feet"),
  22535. weight: math.unit(800, "lb"),
  22536. name: "Back",
  22537. image: {
  22538. source: "./media/characters/knox/back.svg",
  22539. extra: 1486 / 1089,
  22540. bottom: 107 / 1601.4
  22541. }
  22542. },
  22543. side: {
  22544. height: math.unit(10.5, "feet"),
  22545. weight: math.unit(800, "lb"),
  22546. name: "Side",
  22547. image: {
  22548. source: "./media/characters/knox/side.svg",
  22549. extra: 244 / 218,
  22550. bottom: 14 / 260
  22551. }
  22552. },
  22553. },
  22554. [
  22555. {
  22556. name: "Compact",
  22557. height: math.unit(10.5, "feet"),
  22558. default: true
  22559. },
  22560. {
  22561. name: "Dynamax",
  22562. height: math.unit(210, "feet")
  22563. },
  22564. {
  22565. name: "Full Macro",
  22566. height: math.unit(850, "feet")
  22567. },
  22568. ]
  22569. ))
  22570. characterMakers.push(() => makeCharacter(
  22571. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22572. {
  22573. front: {
  22574. height: math.unit(6, "feet"),
  22575. weight: math.unit(152, "lb"),
  22576. name: "Front",
  22577. image: {
  22578. source: "./media/characters/shin-pikachu/front.svg",
  22579. extra: 1574 / 1480,
  22580. bottom: 53.3 / 1626
  22581. }
  22582. },
  22583. hand: {
  22584. height: math.unit(1.055, "feet"),
  22585. name: "Hand",
  22586. image: {
  22587. source: "./media/characters/shin-pikachu/hand.svg"
  22588. }
  22589. },
  22590. foot: {
  22591. height: math.unit(1.1, "feet"),
  22592. name: "Foot",
  22593. image: {
  22594. source: "./media/characters/shin-pikachu/foot.svg"
  22595. }
  22596. },
  22597. collar: {
  22598. height: math.unit(0.386, "feet"),
  22599. name: "Collar",
  22600. image: {
  22601. source: "./media/characters/shin-pikachu/collar.svg"
  22602. }
  22603. },
  22604. },
  22605. [
  22606. {
  22607. name: "Smallest",
  22608. height: math.unit(0.5, "inches")
  22609. },
  22610. {
  22611. name: "Micro",
  22612. height: math.unit(6, "inches")
  22613. },
  22614. {
  22615. name: "Normal",
  22616. height: math.unit(6, "feet"),
  22617. default: true
  22618. },
  22619. {
  22620. name: "Macro",
  22621. height: math.unit(150, "feet")
  22622. },
  22623. ]
  22624. ))
  22625. characterMakers.push(() => makeCharacter(
  22626. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22627. {
  22628. front: {
  22629. height: math.unit(28, "feet"),
  22630. weight: math.unit(10500, "lb"),
  22631. name: "Front",
  22632. image: {
  22633. source: "./media/characters/kayda/front.svg",
  22634. extra: 1536 / 1428,
  22635. bottom: 68.7 / 1603
  22636. }
  22637. },
  22638. back: {
  22639. height: math.unit(28, "feet"),
  22640. weight: math.unit(10500, "lb"),
  22641. name: "Back",
  22642. image: {
  22643. source: "./media/characters/kayda/back.svg",
  22644. extra: 1557 / 1464,
  22645. bottom: 39.5 / 1597.49
  22646. }
  22647. },
  22648. dick: {
  22649. height: math.unit(3.858, "feet"),
  22650. name: "Dick",
  22651. image: {
  22652. source: "./media/characters/kayda/dick.svg"
  22653. }
  22654. },
  22655. },
  22656. [
  22657. {
  22658. name: "Macro",
  22659. height: math.unit(28, "feet"),
  22660. default: true
  22661. },
  22662. ]
  22663. ))
  22664. characterMakers.push(() => makeCharacter(
  22665. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22666. {
  22667. front: {
  22668. height: math.unit(10 + 11 / 12, "feet"),
  22669. weight: math.unit(1400, "lb"),
  22670. name: "Front",
  22671. image: {
  22672. source: "./media/characters/brian/front.svg",
  22673. extra: 737 / 692,
  22674. bottom: 55.4 / 785
  22675. }
  22676. },
  22677. },
  22678. [
  22679. {
  22680. name: "Normal",
  22681. height: math.unit(10 + 11 / 12, "feet"),
  22682. default: true
  22683. },
  22684. ]
  22685. ))
  22686. characterMakers.push(() => makeCharacter(
  22687. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  22688. {
  22689. front: {
  22690. height: math.unit(5 + 8 / 12, "feet"),
  22691. weight: math.unit(140, "lb"),
  22692. name: "Front",
  22693. image: {
  22694. source: "./media/characters/khemri/front.svg",
  22695. extra: 4780 / 4059,
  22696. bottom: 80.1 / 4859.25
  22697. }
  22698. },
  22699. },
  22700. [
  22701. {
  22702. name: "Micro",
  22703. height: math.unit(6, "inches")
  22704. },
  22705. {
  22706. name: "Normal",
  22707. height: math.unit(5 + 8 / 12, "feet"),
  22708. default: true
  22709. },
  22710. ]
  22711. ))
  22712. characterMakers.push(() => makeCharacter(
  22713. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  22714. {
  22715. front: {
  22716. height: math.unit(13, "feet"),
  22717. weight: math.unit(1700, "lb"),
  22718. name: "Front",
  22719. image: {
  22720. source: "./media/characters/felix-braveheart/front.svg",
  22721. extra: 1222 / 1157,
  22722. bottom: 53.2 / 1280
  22723. }
  22724. },
  22725. back: {
  22726. height: math.unit(13, "feet"),
  22727. weight: math.unit(1700, "lb"),
  22728. name: "Back",
  22729. image: {
  22730. source: "./media/characters/felix-braveheart/back.svg",
  22731. extra: 1277 / 1203,
  22732. bottom: 50.2 / 1327
  22733. }
  22734. },
  22735. feral: {
  22736. height: math.unit(6, "feet"),
  22737. weight: math.unit(400, "lb"),
  22738. name: "Feral",
  22739. image: {
  22740. source: "./media/characters/felix-braveheart/feral.svg",
  22741. extra: 682 / 625,
  22742. bottom: 6.9 / 688
  22743. }
  22744. },
  22745. },
  22746. [
  22747. {
  22748. name: "Normal",
  22749. height: math.unit(13, "feet"),
  22750. default: true
  22751. },
  22752. ]
  22753. ))
  22754. characterMakers.push(() => makeCharacter(
  22755. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  22756. {
  22757. side: {
  22758. height: math.unit(5 + 11 / 12, "feet"),
  22759. weight: math.unit(1400, "lb"),
  22760. name: "Side",
  22761. image: {
  22762. source: "./media/characters/shadow-blade/side.svg",
  22763. extra: 1726 / 1267,
  22764. bottom: 58.4 / 1785
  22765. }
  22766. },
  22767. },
  22768. [
  22769. {
  22770. name: "Normal",
  22771. height: math.unit(5 + 11 / 12, "feet"),
  22772. default: true
  22773. },
  22774. ]
  22775. ))
  22776. characterMakers.push(() => makeCharacter(
  22777. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  22778. {
  22779. front: {
  22780. height: math.unit(1 + 6 / 12, "feet"),
  22781. weight: math.unit(25, "lb"),
  22782. name: "Front",
  22783. image: {
  22784. source: "./media/characters/karla-halldor/front.svg",
  22785. extra: 1459 / 1383,
  22786. bottom: 12 / 1472
  22787. }
  22788. },
  22789. },
  22790. [
  22791. {
  22792. name: "Normal",
  22793. height: math.unit(1 + 6 / 12, "feet"),
  22794. default: true
  22795. },
  22796. ]
  22797. ))
  22798. characterMakers.push(() => makeCharacter(
  22799. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  22800. {
  22801. front: {
  22802. height: math.unit(6 + 2 / 12, "feet"),
  22803. weight: math.unit(160, "lb"),
  22804. name: "Front",
  22805. image: {
  22806. source: "./media/characters/ariam/front.svg",
  22807. extra: 714 / 617,
  22808. bottom: 23.4 / 737,
  22809. }
  22810. },
  22811. squatting: {
  22812. height: math.unit(4.1, "feet"),
  22813. weight: math.unit(160, "lb"),
  22814. name: "Squatting",
  22815. image: {
  22816. source: "./media/characters/ariam/squatting.svg",
  22817. extra: 2617 / 2112,
  22818. bottom: 61.2 / 2681,
  22819. }
  22820. },
  22821. },
  22822. [
  22823. {
  22824. name: "Normal",
  22825. height: math.unit(6 + 2 / 12, "feet"),
  22826. default: true
  22827. },
  22828. {
  22829. name: "Normal+",
  22830. height: math.unit(4, "meters")
  22831. },
  22832. {
  22833. name: "Macro",
  22834. height: math.unit(50, "meters")
  22835. },
  22836. {
  22837. name: "Macro+",
  22838. height: math.unit(100, "meters")
  22839. },
  22840. {
  22841. name: "Megamacro",
  22842. height: math.unit(20, "km")
  22843. },
  22844. ]
  22845. ))
  22846. characterMakers.push(() => makeCharacter(
  22847. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  22848. {
  22849. front: {
  22850. height: math.unit(1.67, "meters"),
  22851. weight: math.unit(140, "lb"),
  22852. name: "Front",
  22853. image: {
  22854. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  22855. extra: 438 / 410,
  22856. bottom: 0.75 / 439
  22857. }
  22858. },
  22859. },
  22860. [
  22861. {
  22862. name: "Shrunken",
  22863. height: math.unit(7.6, "cm")
  22864. },
  22865. {
  22866. name: "Human Scale",
  22867. height: math.unit(1.67, "meters")
  22868. },
  22869. {
  22870. name: "Wolxi Scale",
  22871. height: math.unit(36.7, "meters"),
  22872. default: true
  22873. },
  22874. ]
  22875. ))
  22876. characterMakers.push(() => makeCharacter(
  22877. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  22878. {
  22879. front: {
  22880. height: math.unit(1.73, "meters"),
  22881. weight: math.unit(240, "lb"),
  22882. name: "Front",
  22883. image: {
  22884. source: "./media/characters/izue-two-mothers/front.svg",
  22885. extra: 469 / 437,
  22886. bottom: 1.24 / 470.6
  22887. }
  22888. },
  22889. },
  22890. [
  22891. {
  22892. name: "Shrunken",
  22893. height: math.unit(7.86, "cm")
  22894. },
  22895. {
  22896. name: "Human Scale",
  22897. height: math.unit(1.73, "meters")
  22898. },
  22899. {
  22900. name: "Wolxi Scale",
  22901. height: math.unit(38, "meters"),
  22902. default: true
  22903. },
  22904. ]
  22905. ))
  22906. characterMakers.push(() => makeCharacter(
  22907. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  22908. {
  22909. front: {
  22910. height: math.unit(1.55, "meters"),
  22911. weight: math.unit(120, "lb"),
  22912. name: "Front",
  22913. image: {
  22914. source: "./media/characters/teeku-love-shack/front.svg",
  22915. extra: 387 / 362,
  22916. bottom: 1.51 / 388
  22917. }
  22918. },
  22919. },
  22920. [
  22921. {
  22922. name: "Shrunken",
  22923. height: math.unit(7, "cm")
  22924. },
  22925. {
  22926. name: "Human Scale",
  22927. height: math.unit(1.55, "meters")
  22928. },
  22929. {
  22930. name: "Wolxi Scale",
  22931. height: math.unit(34.1, "meters"),
  22932. default: true
  22933. },
  22934. ]
  22935. ))
  22936. characterMakers.push(() => makeCharacter(
  22937. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  22938. {
  22939. front: {
  22940. height: math.unit(1.83, "meters"),
  22941. weight: math.unit(135, "lb"),
  22942. name: "Front",
  22943. image: {
  22944. source: "./media/characters/dejma-the-red/front.svg",
  22945. extra: 480 / 458,
  22946. bottom: 1.8 / 482
  22947. }
  22948. },
  22949. },
  22950. [
  22951. {
  22952. name: "Shrunken",
  22953. height: math.unit(8.3, "cm")
  22954. },
  22955. {
  22956. name: "Human Scale",
  22957. height: math.unit(1.83, "meters")
  22958. },
  22959. {
  22960. name: "Wolxi Scale",
  22961. height: math.unit(40, "meters"),
  22962. default: true
  22963. },
  22964. ]
  22965. ))
  22966. characterMakers.push(() => makeCharacter(
  22967. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  22968. {
  22969. front: {
  22970. height: math.unit(1.78, "meters"),
  22971. weight: math.unit(65, "kg"),
  22972. name: "Front",
  22973. image: {
  22974. source: "./media/characters/aki/front.svg",
  22975. extra: 452 / 415
  22976. }
  22977. },
  22978. frontNsfw: {
  22979. height: math.unit(1.78, "meters"),
  22980. weight: math.unit(65, "kg"),
  22981. name: "Front (NSFW)",
  22982. image: {
  22983. source: "./media/characters/aki/front-nsfw.svg",
  22984. extra: 452 / 415
  22985. }
  22986. },
  22987. back: {
  22988. height: math.unit(1.78, "meters"),
  22989. weight: math.unit(65, "kg"),
  22990. name: "Back",
  22991. image: {
  22992. source: "./media/characters/aki/back.svg",
  22993. extra: 452 / 415
  22994. }
  22995. },
  22996. rump: {
  22997. height: math.unit(2.05, "feet"),
  22998. name: "Rump",
  22999. image: {
  23000. source: "./media/characters/aki/rump.svg"
  23001. }
  23002. },
  23003. dick: {
  23004. height: math.unit(0.95, "feet"),
  23005. name: "Dick",
  23006. image: {
  23007. source: "./media/characters/aki/dick.svg"
  23008. }
  23009. },
  23010. },
  23011. [
  23012. {
  23013. name: "Micro",
  23014. height: math.unit(15, "cm")
  23015. },
  23016. {
  23017. name: "Normal",
  23018. height: math.unit(178, "cm"),
  23019. default: true
  23020. },
  23021. {
  23022. name: "Macro",
  23023. height: math.unit(214, "m")
  23024. },
  23025. {
  23026. name: "Macro+",
  23027. height: math.unit(534, "m")
  23028. },
  23029. ]
  23030. ))
  23031. characterMakers.push(() => makeCharacter(
  23032. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23033. {
  23034. front: {
  23035. height: math.unit(5 + 5 / 12, "feet"),
  23036. weight: math.unit(120, "lb"),
  23037. name: "Front",
  23038. image: {
  23039. source: "./media/characters/ari/front.svg",
  23040. extra: 714.5 / 682,
  23041. bottom: 8 / 722.5
  23042. }
  23043. },
  23044. },
  23045. [
  23046. {
  23047. name: "Normal",
  23048. height: math.unit(5 + 5 / 12, "feet")
  23049. },
  23050. {
  23051. name: "Macro",
  23052. height: math.unit(100, "feet"),
  23053. default: true
  23054. },
  23055. {
  23056. name: "Megamacro",
  23057. height: math.unit(100, "miles")
  23058. },
  23059. {
  23060. name: "Gigamacro",
  23061. height: math.unit(80000, "miles")
  23062. },
  23063. ]
  23064. ))
  23065. characterMakers.push(() => makeCharacter(
  23066. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23067. {
  23068. side: {
  23069. height: math.unit(9, "feet"),
  23070. weight: math.unit(400, "kg"),
  23071. name: "Side",
  23072. image: {
  23073. source: "./media/characters/bolt/side.svg",
  23074. extra: 1126 / 896,
  23075. bottom: 60 / 1187.3,
  23076. }
  23077. },
  23078. },
  23079. [
  23080. {
  23081. name: "Micro",
  23082. height: math.unit(5, "inches")
  23083. },
  23084. {
  23085. name: "Normal",
  23086. height: math.unit(9, "feet"),
  23087. default: true
  23088. },
  23089. {
  23090. name: "Macro",
  23091. height: math.unit(700, "feet")
  23092. },
  23093. {
  23094. name: "Max Size",
  23095. height: math.unit(1.52e22, "yottameters")
  23096. },
  23097. ]
  23098. ))
  23099. characterMakers.push(() => makeCharacter(
  23100. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23101. {
  23102. front: {
  23103. height: math.unit(4.53, "meters"),
  23104. weight: math.unit(3, "tons"),
  23105. name: "Front",
  23106. image: {
  23107. source: "./media/characters/draekon-sylviar/front.svg",
  23108. extra: 1228 / 1068,
  23109. bottom: 41 / 1270
  23110. }
  23111. },
  23112. tail: {
  23113. height: math.unit(1.772, "meter"),
  23114. name: "Tail",
  23115. image: {
  23116. source: "./media/characters/draekon-sylviar/tail.svg"
  23117. }
  23118. },
  23119. head: {
  23120. height: math.unit(1.331, "meter"),
  23121. name: "Head",
  23122. image: {
  23123. source: "./media/characters/draekon-sylviar/head.svg"
  23124. }
  23125. },
  23126. hand: {
  23127. height: math.unit(0.564, "meter"),
  23128. name: "Hand",
  23129. image: {
  23130. source: "./media/characters/draekon-sylviar/hand.svg"
  23131. }
  23132. },
  23133. foot: {
  23134. height: math.unit(0.621, "meter"),
  23135. name: "Foot",
  23136. image: {
  23137. source: "./media/characters/draekon-sylviar/foot.svg",
  23138. bottom: 32 / 324
  23139. }
  23140. },
  23141. dick: {
  23142. height: math.unit(61, "cm"),
  23143. name: "Dick",
  23144. image: {
  23145. source: "./media/characters/draekon-sylviar/dick.svg"
  23146. }
  23147. },
  23148. dickseparated: {
  23149. height: math.unit(61, "cm"),
  23150. name: "Dick-separated",
  23151. image: {
  23152. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23153. }
  23154. },
  23155. },
  23156. [
  23157. {
  23158. name: "Small",
  23159. height: math.unit(4.53 / 2, "meters"),
  23160. default: true
  23161. },
  23162. {
  23163. name: "Normal",
  23164. height: math.unit(4.53, "meters"),
  23165. default: true
  23166. },
  23167. {
  23168. name: "Large",
  23169. height: math.unit(4.53 * 2, "meters"),
  23170. },
  23171. ]
  23172. ))
  23173. characterMakers.push(() => makeCharacter(
  23174. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23175. {
  23176. front: {
  23177. height: math.unit(6 + 2 / 12, "feet"),
  23178. weight: math.unit(180, "lb"),
  23179. name: "Front",
  23180. image: {
  23181. source: "./media/characters/brawler/front.svg",
  23182. extra: 3301 / 3027,
  23183. bottom: 138 / 3439
  23184. }
  23185. },
  23186. },
  23187. [
  23188. {
  23189. name: "Normal",
  23190. height: math.unit(6 + 2 / 12, "feet"),
  23191. default: true
  23192. },
  23193. ]
  23194. ))
  23195. characterMakers.push(() => makeCharacter(
  23196. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23197. {
  23198. front: {
  23199. height: math.unit(11, "feet"),
  23200. weight: math.unit(1000, "lb"),
  23201. name: "Front",
  23202. image: {
  23203. source: "./media/characters/alex/front.svg",
  23204. bottom: 44.5 / 620
  23205. }
  23206. },
  23207. },
  23208. [
  23209. {
  23210. name: "Micro",
  23211. height: math.unit(5, "inches")
  23212. },
  23213. {
  23214. name: "Normal",
  23215. height: math.unit(11, "feet"),
  23216. default: true
  23217. },
  23218. {
  23219. name: "Macro",
  23220. height: math.unit(9.5e9, "feet")
  23221. },
  23222. {
  23223. name: "Max Size",
  23224. height: math.unit(1.4e283, "yottameters")
  23225. },
  23226. ]
  23227. ))
  23228. characterMakers.push(() => makeCharacter(
  23229. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23230. {
  23231. female: {
  23232. height: math.unit(29.9, "m"),
  23233. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23234. name: "Female",
  23235. image: {
  23236. source: "./media/characters/zenari/female.svg",
  23237. extra: 3281.6 / 3217,
  23238. bottom: 72.2 / 3353
  23239. }
  23240. },
  23241. male: {
  23242. height: math.unit(27.7, "m"),
  23243. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23244. name: "Male",
  23245. image: {
  23246. source: "./media/characters/zenari/male.svg",
  23247. extra: 3008 / 2991,
  23248. bottom: 54.6 / 3069
  23249. }
  23250. },
  23251. },
  23252. [
  23253. {
  23254. name: "Macro",
  23255. height: math.unit(29.7, "meters"),
  23256. default: true
  23257. },
  23258. ]
  23259. ))
  23260. characterMakers.push(() => makeCharacter(
  23261. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23262. {
  23263. female: {
  23264. height: math.unit(23.8, "m"),
  23265. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23266. name: "Female",
  23267. image: {
  23268. source: "./media/characters/mactarian/female.svg",
  23269. extra: 2662 / 2569,
  23270. bottom: 73 / 2736
  23271. }
  23272. },
  23273. male: {
  23274. height: math.unit(23.8, "m"),
  23275. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23276. name: "Male",
  23277. image: {
  23278. source: "./media/characters/mactarian/male.svg",
  23279. extra: 2673 / 2600,
  23280. bottom: 76 / 2750
  23281. }
  23282. },
  23283. },
  23284. [
  23285. {
  23286. name: "Macro",
  23287. height: math.unit(23.8, "meters"),
  23288. default: true
  23289. },
  23290. ]
  23291. ))
  23292. characterMakers.push(() => makeCharacter(
  23293. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23294. {
  23295. female: {
  23296. height: math.unit(19.3, "m"),
  23297. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23298. name: "Female",
  23299. image: {
  23300. source: "./media/characters/umok/female.svg",
  23301. extra: 2186 / 2078,
  23302. bottom: 87 / 2277
  23303. }
  23304. },
  23305. male: {
  23306. height: math.unit(19.5, "m"),
  23307. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23308. name: "Male",
  23309. image: {
  23310. source: "./media/characters/umok/male.svg",
  23311. extra: 2233 / 2140,
  23312. bottom: 24.4 / 2258
  23313. }
  23314. },
  23315. },
  23316. [
  23317. {
  23318. name: "Macro",
  23319. height: math.unit(19.3, "meters"),
  23320. default: true
  23321. },
  23322. ]
  23323. ))
  23324. characterMakers.push(() => makeCharacter(
  23325. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23326. {
  23327. female: {
  23328. height: math.unit(26.15, "m"),
  23329. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23330. name: "Female",
  23331. image: {
  23332. source: "./media/characters/joraxian/female.svg",
  23333. extra: 2912 / 2824,
  23334. bottom: 36 / 2956
  23335. }
  23336. },
  23337. male: {
  23338. height: math.unit(25.4, "m"),
  23339. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23340. name: "Male",
  23341. image: {
  23342. source: "./media/characters/joraxian/male.svg",
  23343. extra: 2877 / 2721,
  23344. bottom: 82 / 2967
  23345. }
  23346. },
  23347. },
  23348. [
  23349. {
  23350. name: "Macro",
  23351. height: math.unit(26.15, "meters"),
  23352. default: true
  23353. },
  23354. ]
  23355. ))
  23356. characterMakers.push(() => makeCharacter(
  23357. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23358. {
  23359. female: {
  23360. height: math.unit(21.6, "m"),
  23361. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23362. name: "Female",
  23363. image: {
  23364. source: "./media/characters/sthara/female.svg",
  23365. extra: 2516 / 2347,
  23366. bottom: 21.5 / 2537
  23367. }
  23368. },
  23369. male: {
  23370. height: math.unit(24, "m"),
  23371. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23372. name: "Male",
  23373. image: {
  23374. source: "./media/characters/sthara/male.svg",
  23375. extra: 2732 / 2607,
  23376. bottom: 23 / 2732
  23377. }
  23378. },
  23379. },
  23380. [
  23381. {
  23382. name: "Macro",
  23383. height: math.unit(21.6, "meters"),
  23384. default: true
  23385. },
  23386. ]
  23387. ))
  23388. characterMakers.push(() => makeCharacter(
  23389. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23390. {
  23391. front: {
  23392. height: math.unit(6 + 4 / 12, "feet"),
  23393. weight: math.unit(175, "lb"),
  23394. name: "Front",
  23395. image: {
  23396. source: "./media/characters/luka-bryzant/front.svg",
  23397. extra: 311 / 289,
  23398. bottom: 4 / 315
  23399. }
  23400. },
  23401. back: {
  23402. height: math.unit(6 + 4 / 12, "feet"),
  23403. weight: math.unit(175, "lb"),
  23404. name: "Back",
  23405. image: {
  23406. source: "./media/characters/luka-bryzant/back.svg",
  23407. extra: 311 / 289,
  23408. bottom: 3.8 / 313.7
  23409. }
  23410. },
  23411. },
  23412. [
  23413. {
  23414. name: "Micro",
  23415. height: math.unit(10, "inches")
  23416. },
  23417. {
  23418. name: "Normal",
  23419. height: math.unit(6 + 4 / 12, "feet"),
  23420. default: true
  23421. },
  23422. {
  23423. name: "Large",
  23424. height: math.unit(12, "feet")
  23425. },
  23426. ]
  23427. ))
  23428. characterMakers.push(() => makeCharacter(
  23429. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23430. {
  23431. front: {
  23432. height: math.unit(5 + 7 / 12, "feet"),
  23433. weight: math.unit(185, "lb"),
  23434. name: "Front",
  23435. image: {
  23436. source: "./media/characters/aman-aquila/front.svg",
  23437. extra: 1013 / 976,
  23438. bottom: 45.6 / 1057
  23439. }
  23440. },
  23441. side: {
  23442. height: math.unit(5 + 7 / 12, "feet"),
  23443. weight: math.unit(185, "lb"),
  23444. name: "Side",
  23445. image: {
  23446. source: "./media/characters/aman-aquila/side.svg",
  23447. extra: 1054 / 1011,
  23448. bottom: 15 / 1070
  23449. }
  23450. },
  23451. back: {
  23452. height: math.unit(5 + 7 / 12, "feet"),
  23453. weight: math.unit(185, "lb"),
  23454. name: "Back",
  23455. image: {
  23456. source: "./media/characters/aman-aquila/back.svg",
  23457. extra: 1026 / 970,
  23458. bottom: 12 / 1039
  23459. }
  23460. },
  23461. head: {
  23462. height: math.unit(1.211, "feet"),
  23463. name: "Head",
  23464. image: {
  23465. source: "./media/characters/aman-aquila/head.svg",
  23466. }
  23467. },
  23468. },
  23469. [
  23470. {
  23471. name: "Minimicro",
  23472. height: math.unit(0.057, "inches")
  23473. },
  23474. {
  23475. name: "Micro",
  23476. height: math.unit(7, "inches")
  23477. },
  23478. {
  23479. name: "Mini",
  23480. height: math.unit(3 + 7 / 12, "feet")
  23481. },
  23482. {
  23483. name: "Normal",
  23484. height: math.unit(5 + 7 / 12, "feet"),
  23485. default: true
  23486. },
  23487. {
  23488. name: "Macro",
  23489. height: math.unit(157 + 7 / 12, "feet")
  23490. },
  23491. {
  23492. name: "Megamacro",
  23493. height: math.unit(1557 + 7 / 12, "feet")
  23494. },
  23495. {
  23496. name: "Gigamacro",
  23497. height: math.unit(15557 + 7 / 12, "feet")
  23498. },
  23499. ]
  23500. ))
  23501. characterMakers.push(() => makeCharacter(
  23502. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23503. {
  23504. front: {
  23505. height: math.unit(3 + 2 / 12, "inches"),
  23506. weight: math.unit(0.3, "ounces"),
  23507. name: "Front",
  23508. image: {
  23509. source: "./media/characters/hiphae/front.svg",
  23510. extra: 1931 / 1683,
  23511. bottom: 24 / 1955
  23512. }
  23513. },
  23514. },
  23515. [
  23516. {
  23517. name: "Normal",
  23518. height: math.unit(3 + 1 / 2, "inches"),
  23519. default: true
  23520. },
  23521. ]
  23522. ))
  23523. characterMakers.push(() => makeCharacter(
  23524. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23525. {
  23526. front: {
  23527. height: math.unit(5 + 10 / 12, "feet"),
  23528. weight: math.unit(165, "lb"),
  23529. name: "Front",
  23530. image: {
  23531. source: "./media/characters/nicky/front.svg",
  23532. extra: 3144 / 2886,
  23533. bottom: 45.6 / 3192
  23534. }
  23535. },
  23536. back: {
  23537. height: math.unit(5 + 10 / 12, "feet"),
  23538. weight: math.unit(165, "lb"),
  23539. name: "Back",
  23540. image: {
  23541. source: "./media/characters/nicky/back.svg",
  23542. extra: 3055 / 2804,
  23543. bottom: 28.4 / 3087
  23544. }
  23545. },
  23546. frontclothed: {
  23547. height: math.unit(5 + 10 / 12, "feet"),
  23548. weight: math.unit(165, "lb"),
  23549. name: "Front-clothed",
  23550. image: {
  23551. source: "./media/characters/nicky/front-clothed.svg",
  23552. extra: 3184.9 / 2926.9,
  23553. bottom: 86.5 / 3239.9
  23554. }
  23555. },
  23556. foot: {
  23557. height: math.unit(1.16, "feet"),
  23558. name: "Foot",
  23559. image: {
  23560. source: "./media/characters/nicky/foot.svg"
  23561. }
  23562. },
  23563. feet: {
  23564. height: math.unit(1.34, "feet"),
  23565. name: "Feet",
  23566. image: {
  23567. source: "./media/characters/nicky/feet.svg"
  23568. }
  23569. },
  23570. maw: {
  23571. height: math.unit(0.9, "feet"),
  23572. name: "Maw",
  23573. image: {
  23574. source: "./media/characters/nicky/maw.svg"
  23575. }
  23576. },
  23577. },
  23578. [
  23579. {
  23580. name: "Normal",
  23581. height: math.unit(5 + 10 / 12, "feet"),
  23582. default: true
  23583. },
  23584. {
  23585. name: "Macro",
  23586. height: math.unit(60, "feet")
  23587. },
  23588. {
  23589. name: "Megamacro",
  23590. height: math.unit(1, "mile")
  23591. },
  23592. ]
  23593. ))
  23594. characterMakers.push(() => makeCharacter(
  23595. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23596. {
  23597. side: {
  23598. height: math.unit(10, "feet"),
  23599. weight: math.unit(600, "lb"),
  23600. name: "Side",
  23601. image: {
  23602. source: "./media/characters/blair/side.svg",
  23603. bottom: 16.6 / 475,
  23604. extra: 458 / 431
  23605. }
  23606. },
  23607. },
  23608. [
  23609. {
  23610. name: "Micro",
  23611. height: math.unit(8, "inches")
  23612. },
  23613. {
  23614. name: "Normal",
  23615. height: math.unit(10, "feet"),
  23616. default: true
  23617. },
  23618. {
  23619. name: "Macro",
  23620. height: math.unit(180, "feet")
  23621. },
  23622. ]
  23623. ))
  23624. characterMakers.push(() => makeCharacter(
  23625. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23626. {
  23627. front: {
  23628. height: math.unit(5 + 4 / 12, "feet"),
  23629. weight: math.unit(125, "lb"),
  23630. name: "Front",
  23631. image: {
  23632. source: "./media/characters/fisher/front.svg",
  23633. extra: 444 / 390,
  23634. bottom: 2 / 444.8
  23635. }
  23636. },
  23637. },
  23638. [
  23639. {
  23640. name: "Micro",
  23641. height: math.unit(4, "inches")
  23642. },
  23643. {
  23644. name: "Normal",
  23645. height: math.unit(5 + 4 / 12, "feet"),
  23646. default: true
  23647. },
  23648. {
  23649. name: "Macro",
  23650. height: math.unit(100, "feet")
  23651. },
  23652. ]
  23653. ))
  23654. characterMakers.push(() => makeCharacter(
  23655. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23656. {
  23657. front: {
  23658. height: math.unit(6.71, "feet"),
  23659. weight: math.unit(200, "lb"),
  23660. capacity: math.unit(1000000, "people"),
  23661. name: "Front",
  23662. image: {
  23663. source: "./media/characters/gliss/front.svg",
  23664. extra: 2347 / 2231,
  23665. bottom: 113 / 2462
  23666. }
  23667. },
  23668. hammerspaceSize: {
  23669. height: math.unit(6.71 * 717, "feet"),
  23670. weight: math.unit(200, "lb"),
  23671. capacity: math.unit(1000000, "people"),
  23672. name: "Hammerspace Size",
  23673. image: {
  23674. source: "./media/characters/gliss/front.svg",
  23675. extra: 2347 / 2231,
  23676. bottom: 113 / 2462
  23677. }
  23678. },
  23679. },
  23680. [
  23681. {
  23682. name: "Normal",
  23683. height: math.unit(6.71, "feet"),
  23684. default: true
  23685. },
  23686. ]
  23687. ))
  23688. characterMakers.push(() => makeCharacter(
  23689. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  23690. {
  23691. side: {
  23692. height: math.unit(1.44, "m"),
  23693. weight: math.unit(80, "kg"),
  23694. name: "Side",
  23695. image: {
  23696. source: "./media/characters/dune-anderson/side.svg",
  23697. bottom: 49 / 1426
  23698. }
  23699. },
  23700. },
  23701. [
  23702. {
  23703. name: "Wolf-sized",
  23704. height: math.unit(1.44, "meters")
  23705. },
  23706. {
  23707. name: "Normal",
  23708. height: math.unit(5.05, "meters"),
  23709. default: true
  23710. },
  23711. {
  23712. name: "Big",
  23713. height: math.unit(14.4, "meters")
  23714. },
  23715. {
  23716. name: "Huge",
  23717. height: math.unit(144, "meters")
  23718. },
  23719. ]
  23720. ))
  23721. characterMakers.push(() => makeCharacter(
  23722. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  23723. {
  23724. front: {
  23725. height: math.unit(7, "feet"),
  23726. weight: math.unit(425, "lb"),
  23727. name: "Front",
  23728. image: {
  23729. source: "./media/characters/hind/front.svg",
  23730. extra: 2091 / 1860,
  23731. bottom: 129 / 2220
  23732. }
  23733. },
  23734. back: {
  23735. height: math.unit(7, "feet"),
  23736. weight: math.unit(425, "lb"),
  23737. name: "Back",
  23738. image: {
  23739. source: "./media/characters/hind/back.svg",
  23740. extra: 2091 / 1860,
  23741. bottom: 24.6 / 2309
  23742. }
  23743. },
  23744. tail: {
  23745. height: math.unit(2.8, "feet"),
  23746. name: "Tail",
  23747. image: {
  23748. source: "./media/characters/hind/tail.svg"
  23749. }
  23750. },
  23751. head: {
  23752. height: math.unit(2.55, "feet"),
  23753. name: "Head",
  23754. image: {
  23755. source: "./media/characters/hind/head.svg"
  23756. }
  23757. },
  23758. },
  23759. [
  23760. {
  23761. name: "XS",
  23762. height: math.unit(0.7, "feet")
  23763. },
  23764. {
  23765. name: "Normal",
  23766. height: math.unit(7, "feet"),
  23767. default: true
  23768. },
  23769. {
  23770. name: "XL",
  23771. height: math.unit(70, "feet")
  23772. },
  23773. ]
  23774. ))
  23775. characterMakers.push(() => makeCharacter(
  23776. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  23777. {
  23778. front: {
  23779. height: math.unit(6, "feet"),
  23780. weight: math.unit(150, "lb"),
  23781. name: "Front",
  23782. image: {
  23783. source: "./media/characters/dylan-skaven/front.svg",
  23784. extra: 2318 / 2063,
  23785. bottom: 93.4 / 2410
  23786. }
  23787. },
  23788. },
  23789. [
  23790. {
  23791. name: "Nano",
  23792. height: math.unit(1, "mm")
  23793. },
  23794. {
  23795. name: "Micro",
  23796. height: math.unit(1, "cm")
  23797. },
  23798. {
  23799. name: "Normal",
  23800. height: math.unit(2.1, "meters"),
  23801. default: true
  23802. },
  23803. ]
  23804. ))
  23805. characterMakers.push(() => makeCharacter(
  23806. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  23807. {
  23808. front: {
  23809. height: math.unit(7 + 5 / 12, "feet"),
  23810. weight: math.unit(357, "lb"),
  23811. name: "Front",
  23812. image: {
  23813. source: "./media/characters/solex-draconov/front.svg",
  23814. extra: 1993 / 1865,
  23815. bottom: 117 / 2111
  23816. }
  23817. },
  23818. },
  23819. [
  23820. {
  23821. name: "Natural Height",
  23822. height: math.unit(7 + 5 / 12, "feet"),
  23823. default: true
  23824. },
  23825. {
  23826. name: "Macro",
  23827. height: math.unit(350, "feet")
  23828. },
  23829. {
  23830. name: "Macro+",
  23831. height: math.unit(1000, "feet")
  23832. },
  23833. {
  23834. name: "Megamacro",
  23835. height: math.unit(20, "km")
  23836. },
  23837. {
  23838. name: "Megamacro+",
  23839. height: math.unit(1000, "km")
  23840. },
  23841. {
  23842. name: "Gigamacro",
  23843. height: math.unit(2.5, "Gm")
  23844. },
  23845. {
  23846. name: "Teramacro",
  23847. height: math.unit(15, "Tm")
  23848. },
  23849. {
  23850. name: "Galactic",
  23851. height: math.unit(30, "Zm")
  23852. },
  23853. {
  23854. name: "Universal",
  23855. height: math.unit(21000, "Ym")
  23856. },
  23857. {
  23858. name: "Omniversal",
  23859. height: math.unit(9.861e50, "Ym")
  23860. },
  23861. {
  23862. name: "Existential",
  23863. height: math.unit(1e300, "meters")
  23864. },
  23865. ]
  23866. ))
  23867. characterMakers.push(() => makeCharacter(
  23868. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  23869. {
  23870. side: {
  23871. height: math.unit(25, "feet"),
  23872. weight: math.unit(90000, "lb"),
  23873. name: "Side",
  23874. image: {
  23875. source: "./media/characters/mandarax/side.svg",
  23876. extra: 614 / 332,
  23877. bottom: 55 / 630
  23878. }
  23879. },
  23880. head: {
  23881. height: math.unit(11.4, "feet"),
  23882. name: "Head",
  23883. image: {
  23884. source: "./media/characters/mandarax/head.svg"
  23885. }
  23886. },
  23887. belly: {
  23888. height: math.unit(33, "feet"),
  23889. name: "Belly",
  23890. capacity: math.unit(500, "people"),
  23891. image: {
  23892. source: "./media/characters/mandarax/belly.svg"
  23893. }
  23894. },
  23895. dick: {
  23896. height: math.unit(8.46, "feet"),
  23897. name: "Dick",
  23898. image: {
  23899. source: "./media/characters/mandarax/dick.svg"
  23900. }
  23901. },
  23902. top: {
  23903. height: math.unit(28, "meters"),
  23904. name: "Top",
  23905. image: {
  23906. source: "./media/characters/mandarax/top.svg"
  23907. }
  23908. },
  23909. },
  23910. [
  23911. {
  23912. name: "Normal",
  23913. height: math.unit(25, "feet"),
  23914. default: true
  23915. },
  23916. ]
  23917. ))
  23918. characterMakers.push(() => makeCharacter(
  23919. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  23920. {
  23921. front: {
  23922. height: math.unit(5, "feet"),
  23923. weight: math.unit(90, "lb"),
  23924. name: "Front",
  23925. image: {
  23926. source: "./media/characters/pixil/front.svg",
  23927. extra: 2000 / 1618,
  23928. bottom: 12.3 / 2011
  23929. }
  23930. },
  23931. },
  23932. [
  23933. {
  23934. name: "Normal",
  23935. height: math.unit(5, "feet"),
  23936. default: true
  23937. },
  23938. {
  23939. name: "Megamacro",
  23940. height: math.unit(10, "miles"),
  23941. },
  23942. ]
  23943. ))
  23944. characterMakers.push(() => makeCharacter(
  23945. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  23946. {
  23947. front: {
  23948. height: math.unit(7 + 2 / 12, "feet"),
  23949. weight: math.unit(200, "lb"),
  23950. name: "Front",
  23951. image: {
  23952. source: "./media/characters/angel/front.svg",
  23953. extra: 1830 / 1737,
  23954. bottom: 22.6 / 1854,
  23955. }
  23956. },
  23957. },
  23958. [
  23959. {
  23960. name: "Normal",
  23961. height: math.unit(7 + 2 / 12, "feet"),
  23962. default: true
  23963. },
  23964. {
  23965. name: "Macro",
  23966. height: math.unit(1000, "feet")
  23967. },
  23968. {
  23969. name: "Megamacro",
  23970. height: math.unit(2, "miles")
  23971. },
  23972. {
  23973. name: "Gigamacro",
  23974. height: math.unit(20, "earths")
  23975. },
  23976. ]
  23977. ))
  23978. characterMakers.push(() => makeCharacter(
  23979. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  23980. {
  23981. front: {
  23982. height: math.unit(5, "feet"),
  23983. weight: math.unit(180, "lb"),
  23984. name: "Front",
  23985. image: {
  23986. source: "./media/characters/mekana/front.svg",
  23987. extra: 1671 / 1605,
  23988. bottom: 3.5 / 1691
  23989. }
  23990. },
  23991. side: {
  23992. height: math.unit(5, "feet"),
  23993. weight: math.unit(180, "lb"),
  23994. name: "Side",
  23995. image: {
  23996. source: "./media/characters/mekana/side.svg",
  23997. extra: 1671 / 1605,
  23998. bottom: 3.5 / 1691
  23999. }
  24000. },
  24001. back: {
  24002. height: math.unit(5, "feet"),
  24003. weight: math.unit(180, "lb"),
  24004. name: "Back",
  24005. image: {
  24006. source: "./media/characters/mekana/back.svg",
  24007. extra: 1671 / 1605,
  24008. bottom: 3.5 / 1691
  24009. }
  24010. },
  24011. },
  24012. [
  24013. {
  24014. name: "Normal",
  24015. height: math.unit(5, "feet"),
  24016. default: true
  24017. },
  24018. ]
  24019. ))
  24020. characterMakers.push(() => makeCharacter(
  24021. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24022. {
  24023. front: {
  24024. height: math.unit(4 + 6 / 12, "feet"),
  24025. weight: math.unit(80, "lb"),
  24026. name: "Front",
  24027. image: {
  24028. source: "./media/characters/pixie/front.svg",
  24029. extra: 1924 / 1825,
  24030. bottom: 22.4 / 1946
  24031. }
  24032. },
  24033. },
  24034. [
  24035. {
  24036. name: "Normal",
  24037. height: math.unit(4 + 6 / 12, "feet"),
  24038. default: true
  24039. },
  24040. {
  24041. name: "Macro",
  24042. height: math.unit(40, "feet")
  24043. },
  24044. ]
  24045. ))
  24046. characterMakers.push(() => makeCharacter(
  24047. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24048. {
  24049. front: {
  24050. height: math.unit(2.1, "meters"),
  24051. weight: math.unit(200, "lb"),
  24052. name: "Front",
  24053. image: {
  24054. source: "./media/characters/the-lascivious/front.svg",
  24055. extra: 1 / 0.893,
  24056. bottom: 3.5 / 573.7
  24057. }
  24058. },
  24059. },
  24060. [
  24061. {
  24062. name: "Human Scale",
  24063. height: math.unit(2.1, "meters")
  24064. },
  24065. {
  24066. name: "Wolxi Scale",
  24067. height: math.unit(46.2, "m"),
  24068. default: true
  24069. },
  24070. {
  24071. name: "Boinker of Buildings",
  24072. height: math.unit(10, "km")
  24073. },
  24074. {
  24075. name: "Shagger of Skyscrapers",
  24076. height: math.unit(40, "km")
  24077. },
  24078. {
  24079. name: "Banger of Boroughs",
  24080. height: math.unit(4000, "km")
  24081. },
  24082. {
  24083. name: "Screwer of States",
  24084. height: math.unit(100000, "km")
  24085. },
  24086. {
  24087. name: "Pounder of Planets",
  24088. height: math.unit(2000000, "km")
  24089. },
  24090. ]
  24091. ))
  24092. characterMakers.push(() => makeCharacter(
  24093. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24094. {
  24095. front: {
  24096. height: math.unit(6, "feet"),
  24097. weight: math.unit(150, "lb"),
  24098. name: "Front",
  24099. image: {
  24100. source: "./media/characters/aj/front.svg",
  24101. extra: 2039 / 1562,
  24102. bottom: 40 / 2079
  24103. }
  24104. },
  24105. },
  24106. [
  24107. {
  24108. name: "Normal",
  24109. height: math.unit(11 + 6 / 12, "feet"),
  24110. default: true
  24111. },
  24112. {
  24113. name: "Megamacro",
  24114. height: math.unit(60, "megameters")
  24115. },
  24116. ]
  24117. ))
  24118. characterMakers.push(() => makeCharacter(
  24119. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24120. {
  24121. side: {
  24122. height: math.unit(31 + 8/12, "feet"),
  24123. weight: math.unit(75000, "kg"),
  24124. name: "Side",
  24125. image: {
  24126. source: "./media/characters/koros/side.svg",
  24127. extra: 1442/1297,
  24128. bottom: 122.7/1562
  24129. }
  24130. },
  24131. dicksKingsCrown: {
  24132. height: math.unit(6, "feet"),
  24133. name: "Dicks (King's Crown)",
  24134. image: {
  24135. source: "./media/characters/koros/dicks-kings-crown.svg"
  24136. }
  24137. },
  24138. dicksTailSet: {
  24139. height: math.unit(3, "feet"),
  24140. name: "Dicks (Tail Set)",
  24141. image: {
  24142. source: "./media/characters/koros/dicks-tail-set.svg"
  24143. }
  24144. },
  24145. dickCumming: {
  24146. height: math.unit(7.98, "feet"),
  24147. name: "Dick (Cumming)",
  24148. image: {
  24149. source: "./media/characters/koros/dick-cumming.svg"
  24150. }
  24151. },
  24152. dicksBack: {
  24153. height: math.unit(5.9, "feet"),
  24154. name: "Dicks (Back)",
  24155. image: {
  24156. source: "./media/characters/koros/dicks-back.svg"
  24157. }
  24158. },
  24159. dicksFront: {
  24160. height: math.unit(3.72, "feet"),
  24161. name: "Dicks (Front)",
  24162. image: {
  24163. source: "./media/characters/koros/dicks-front.svg"
  24164. }
  24165. },
  24166. dicksPeeking: {
  24167. height: math.unit(3.0, "feet"),
  24168. name: "Dicks (Peeking)",
  24169. image: {
  24170. source: "./media/characters/koros/dicks-peeking.svg"
  24171. }
  24172. },
  24173. eye: {
  24174. height: math.unit(1.7, "feet"),
  24175. name: "Eye",
  24176. image: {
  24177. source: "./media/characters/koros/eye.svg"
  24178. }
  24179. },
  24180. headFront: {
  24181. height: math.unit(11.69, "feet"),
  24182. name: "Head (Front)",
  24183. image: {
  24184. source: "./media/characters/koros/head-front.svg"
  24185. }
  24186. },
  24187. headSide: {
  24188. height: math.unit(14, "feet"),
  24189. name: "Head (Side)",
  24190. image: {
  24191. source: "./media/characters/koros/head-side.svg"
  24192. }
  24193. },
  24194. leg: {
  24195. height: math.unit(17, "feet"),
  24196. name: "Leg",
  24197. image: {
  24198. source: "./media/characters/koros/leg.svg"
  24199. }
  24200. },
  24201. mawSide: {
  24202. height: math.unit(12.8, "feet"),
  24203. name: "Maw (Side)",
  24204. image: {
  24205. source: "./media/characters/koros/maw-side.svg"
  24206. }
  24207. },
  24208. mawSpitting: {
  24209. height: math.unit(17, "feet"),
  24210. name: "Maw (Spitting)",
  24211. image: {
  24212. source: "./media/characters/koros/maw-spitting.svg"
  24213. }
  24214. },
  24215. slit: {
  24216. height: math.unit(2.8, "feet"),
  24217. name: "Slit",
  24218. image: {
  24219. source: "./media/characters/koros/slit.svg"
  24220. }
  24221. },
  24222. stomach: {
  24223. height: math.unit(6.8, "feet"),
  24224. capacity: math.unit(20, "people"),
  24225. name: "Stomach",
  24226. image: {
  24227. source: "./media/characters/koros/stomach.svg"
  24228. }
  24229. },
  24230. wingspanBottom: {
  24231. height: math.unit(114, "feet"),
  24232. name: "Wingspan (Bottom)",
  24233. image: {
  24234. source: "./media/characters/koros/wingspan-bottom.svg"
  24235. }
  24236. },
  24237. wingspanTop: {
  24238. height: math.unit(104, "feet"),
  24239. name: "Wingspan (Top)",
  24240. image: {
  24241. source: "./media/characters/koros/wingspan-top.svg"
  24242. }
  24243. },
  24244. },
  24245. [
  24246. {
  24247. name: "Normal",
  24248. height: math.unit(31 + 8/12, "feet"),
  24249. default: true
  24250. },
  24251. ]
  24252. ))
  24253. characterMakers.push(() => makeCharacter(
  24254. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24255. {
  24256. front: {
  24257. height: math.unit(18 + 5/12, "feet"),
  24258. weight: math.unit(3750, "kg"),
  24259. name: "Front",
  24260. image: {
  24261. source: "./media/characters/vexx/front.svg",
  24262. extra: 426/396,
  24263. bottom: 31.5/458
  24264. }
  24265. },
  24266. maw: {
  24267. height: math.unit(6, "feet"),
  24268. name: "Maw",
  24269. image: {
  24270. source: "./media/characters/vexx/maw.svg"
  24271. }
  24272. },
  24273. },
  24274. [
  24275. {
  24276. name: "Normal",
  24277. height: math.unit(18 + 5/12, "feet"),
  24278. default: true
  24279. },
  24280. ]
  24281. ))
  24282. characterMakers.push(() => makeCharacter(
  24283. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24284. {
  24285. front: {
  24286. height: math.unit(17 + 6/12, "feet"),
  24287. weight: math.unit(150, "lb"),
  24288. name: "Front",
  24289. image: {
  24290. source: "./media/characters/baadra/front.svg",
  24291. extra: 3137/2890,
  24292. bottom: 168.4/3305
  24293. }
  24294. },
  24295. back: {
  24296. height: math.unit(17 + 6/12, "feet"),
  24297. weight: math.unit(150, "lb"),
  24298. name: "Back",
  24299. image: {
  24300. source: "./media/characters/baadra/back.svg",
  24301. extra: 3142/2890,
  24302. bottom: 220/3371
  24303. }
  24304. },
  24305. head: {
  24306. height: math.unit(5.45, "feet"),
  24307. name: "Head",
  24308. image: {
  24309. source: "./media/characters/baadra/head.svg"
  24310. }
  24311. },
  24312. headAngry: {
  24313. height: math.unit(4.95, "feet"),
  24314. name: "Head (Angry)",
  24315. image: {
  24316. source: "./media/characters/baadra/head-angry.svg"
  24317. }
  24318. },
  24319. headOpen: {
  24320. height: math.unit(6, "feet"),
  24321. name: "Head (Open)",
  24322. image: {
  24323. source: "./media/characters/baadra/head-open.svg"
  24324. }
  24325. },
  24326. },
  24327. [
  24328. {
  24329. name: "Normal",
  24330. height: math.unit(17 + 6/12, "feet"),
  24331. default: true
  24332. },
  24333. ]
  24334. ))
  24335. characterMakers.push(() => makeCharacter(
  24336. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24337. {
  24338. front: {
  24339. height: math.unit(7 + 3/12, "feet"),
  24340. weight: math.unit(180, "lb"),
  24341. name: "Front",
  24342. image: {
  24343. source: "./media/characters/juri/front.svg",
  24344. extra: 1401/1237,
  24345. bottom: 18.5/1418
  24346. }
  24347. },
  24348. side: {
  24349. height: math.unit(7 + 3/12, "feet"),
  24350. weight: math.unit(180, "lb"),
  24351. name: "Side",
  24352. image: {
  24353. source: "./media/characters/juri/side.svg",
  24354. extra: 1424/1242,
  24355. bottom: 18.5/1447
  24356. }
  24357. },
  24358. sitting: {
  24359. height: math.unit(6, "feet"),
  24360. weight: math.unit(180, "lb"),
  24361. name: "Sitting",
  24362. image: {
  24363. source: "./media/characters/juri/sitting.svg",
  24364. extra: 1270/1143,
  24365. bottom: 100/1343
  24366. }
  24367. },
  24368. back: {
  24369. height: math.unit(7 + 3/12, "feet"),
  24370. weight: math.unit(180, "lb"),
  24371. name: "Back",
  24372. image: {
  24373. source: "./media/characters/juri/back.svg",
  24374. extra: 1377/1240,
  24375. bottom: 23.7/1405
  24376. }
  24377. },
  24378. maw: {
  24379. height: math.unit(2.8, "feet"),
  24380. name: "Maw",
  24381. image: {
  24382. source: "./media/characters/juri/maw.svg"
  24383. }
  24384. },
  24385. stomach: {
  24386. height: math.unit(0.89, "feet"),
  24387. capacity: math.unit(4, "liters"),
  24388. name: "Stomach",
  24389. image: {
  24390. source: "./media/characters/juri/stomach.svg"
  24391. }
  24392. },
  24393. },
  24394. [
  24395. {
  24396. name: "Normal",
  24397. height: math.unit(7 + 3/12, "feet"),
  24398. default: true
  24399. },
  24400. ]
  24401. ))
  24402. characterMakers.push(() => makeCharacter(
  24403. { name: "Maxene Sita", species: ["fox"], tags: ["anthro"] },
  24404. {
  24405. fox: {
  24406. height: math.unit(5 + 6/12, "feet"),
  24407. weight: math.unit(140, "lb"),
  24408. name: "Fox",
  24409. image: {
  24410. source: "./media/characters/maxene-sita/fox.svg",
  24411. extra: 146/138,
  24412. bottom: 2.1/148.19
  24413. }
  24414. },
  24415. kitsune: {
  24416. height: math.unit(10, "feet"),
  24417. weight: math.unit(800, "lb"),
  24418. name: "Kitsune",
  24419. image: {
  24420. source: "./media/characters/maxene-sita/kitsune.svg",
  24421. extra: 185/176,
  24422. bottom: 4.7/189.9
  24423. }
  24424. },
  24425. },
  24426. [
  24427. {
  24428. name: "Normal",
  24429. height: math.unit(5 + 6/12, "feet"),
  24430. default: true
  24431. },
  24432. ]
  24433. ))
  24434. characterMakers.push(() => makeCharacter(
  24435. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24436. {
  24437. front: {
  24438. height: math.unit(3 + 4/12, "feet"),
  24439. weight: math.unit(70, "lb"),
  24440. name: "Front",
  24441. image: {
  24442. source: "./media/characters/maia/front.svg",
  24443. extra: 227/219.5,
  24444. bottom: 40 / 267
  24445. }
  24446. },
  24447. back: {
  24448. height: math.unit(3 + 4/12, "feet"),
  24449. weight: math.unit(70, "lb"),
  24450. name: "Back",
  24451. image: {
  24452. source: "./media/characters/maia/back.svg",
  24453. extra: 237/225
  24454. }
  24455. },
  24456. },
  24457. [
  24458. {
  24459. name: "Normal",
  24460. height: math.unit(3 + 4/12, "feet"),
  24461. default: true
  24462. },
  24463. ]
  24464. ))
  24465. characterMakers.push(() => makeCharacter(
  24466. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24467. {
  24468. front: {
  24469. height: math.unit(5 + 10/12, "feet"),
  24470. weight: math.unit(197, "lb"),
  24471. name: "Front",
  24472. image: {
  24473. source: "./media/characters/jabaro/front.svg",
  24474. extra: 225/216,
  24475. bottom: 5.06/230
  24476. }
  24477. },
  24478. back: {
  24479. height: math.unit(5 + 10/12, "feet"),
  24480. weight: math.unit(197, "lb"),
  24481. name: "Back",
  24482. image: {
  24483. source: "./media/characters/jabaro/back.svg",
  24484. extra: 225/219,
  24485. bottom: 1.9/227
  24486. }
  24487. },
  24488. },
  24489. [
  24490. {
  24491. name: "Normal",
  24492. height: math.unit(5 + 10/12, "feet"),
  24493. default: true
  24494. },
  24495. ]
  24496. ))
  24497. characterMakers.push(() => makeCharacter(
  24498. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24499. {
  24500. front: {
  24501. height: math.unit(5 + 8/12, "feet"),
  24502. weight: math.unit(139, "lb"),
  24503. name: "Front",
  24504. image: {
  24505. source: "./media/characters/risa/front.svg",
  24506. extra: 270/260,
  24507. bottom: 11.2/282
  24508. }
  24509. },
  24510. back: {
  24511. height: math.unit(5 + 8/12, "feet"),
  24512. weight: math.unit(139, "lb"),
  24513. name: "Back",
  24514. image: {
  24515. source: "./media/characters/risa/back.svg",
  24516. extra: 264/255,
  24517. bottom: 4/268
  24518. }
  24519. },
  24520. },
  24521. [
  24522. {
  24523. name: "Normal",
  24524. height: math.unit(5 + 8/12, "feet"),
  24525. default: true
  24526. },
  24527. ]
  24528. ))
  24529. characterMakers.push(() => makeCharacter(
  24530. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  24531. {
  24532. front: {
  24533. height: math.unit(2 + 11/12, "feet"),
  24534. weight: math.unit(30, "lb"),
  24535. name: "Front",
  24536. image: {
  24537. source: "./media/characters/weatley/front.svg",
  24538. bottom: 10.7/414,
  24539. extra: 403.5/362
  24540. }
  24541. },
  24542. back: {
  24543. height: math.unit(2 + 11/12, "feet"),
  24544. weight: math.unit(30, "lb"),
  24545. name: "Back",
  24546. image: {
  24547. source: "./media/characters/weatley/back.svg",
  24548. bottom: 10.7/414,
  24549. extra: 403.5/362
  24550. }
  24551. },
  24552. },
  24553. [
  24554. {
  24555. name: "Normal",
  24556. height: math.unit(2 + 11/12, "feet"),
  24557. default: true
  24558. },
  24559. ]
  24560. ))
  24561. characterMakers.push(() => makeCharacter(
  24562. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  24563. {
  24564. front: {
  24565. height: math.unit(5 + 2/12, "feet"),
  24566. weight: math.unit(50, "kg"),
  24567. name: "Front",
  24568. image: {
  24569. source: "./media/characters/mercury-crescent/front.svg",
  24570. extra: 1088/1033,
  24571. bottom: 18.9/1109
  24572. }
  24573. },
  24574. },
  24575. [
  24576. {
  24577. name: "Normal",
  24578. height: math.unit(5 + 2/12, "feet"),
  24579. default: true
  24580. },
  24581. ]
  24582. ))
  24583. characterMakers.push(() => makeCharacter(
  24584. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  24585. {
  24586. front: {
  24587. height: math.unit(2, "feet"),
  24588. weight: math.unit(15, "kg"),
  24589. name: "Front",
  24590. image: {
  24591. source: "./media/characters/diamond-jones/front.svg",
  24592. bottom: 16/568
  24593. }
  24594. },
  24595. },
  24596. [
  24597. {
  24598. name: "Normal",
  24599. height: math.unit(2, "feet"),
  24600. default: true
  24601. },
  24602. ]
  24603. ))
  24604. characterMakers.push(() => makeCharacter(
  24605. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  24606. {
  24607. front: {
  24608. height: math.unit(3, "feet"),
  24609. weight: math.unit(30, "kg"),
  24610. name: "Front",
  24611. image: {
  24612. source: "./media/characters/sweet-bit/front.svg",
  24613. extra: 675/567,
  24614. bottom: 27.7/703
  24615. }
  24616. },
  24617. },
  24618. [
  24619. {
  24620. name: "Normal",
  24621. height: math.unit(3, "feet"),
  24622. default: true
  24623. },
  24624. ]
  24625. ))
  24626. characterMakers.push(() => makeCharacter(
  24627. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  24628. {
  24629. side: {
  24630. height: math.unit(9.178, "feet"),
  24631. weight: math.unit(500, "lb"),
  24632. name: "Side",
  24633. image: {
  24634. source: "./media/characters/umbrazen/side.svg",
  24635. extra: 1730/1473,
  24636. bottom: 34.6/1765
  24637. }
  24638. },
  24639. },
  24640. [
  24641. {
  24642. name: "Normal",
  24643. height: math.unit(9.178, "feet"),
  24644. default: true
  24645. },
  24646. ]
  24647. ))
  24648. characterMakers.push(() => makeCharacter(
  24649. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  24650. {
  24651. front: {
  24652. height: math.unit(10, "feet"),
  24653. weight: math.unit(750, "lb"),
  24654. name: "Front",
  24655. image: {
  24656. source: "./media/characters/arlist/front.svg",
  24657. extra: 961/778,
  24658. bottom: 6.2/986
  24659. }
  24660. },
  24661. },
  24662. [
  24663. {
  24664. name: "Normal",
  24665. height: math.unit(10, "feet"),
  24666. default: true
  24667. },
  24668. ]
  24669. ))
  24670. characterMakers.push(() => makeCharacter(
  24671. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  24672. {
  24673. front: {
  24674. height: math.unit(5 + 1/12, "feet"),
  24675. weight: math.unit(110, "lb"),
  24676. name: "Front",
  24677. image: {
  24678. source: "./media/characters/aradel/front.svg",
  24679. extra: 324/303,
  24680. bottom: 3.6/329.4
  24681. }
  24682. },
  24683. },
  24684. [
  24685. {
  24686. name: "Normal",
  24687. height: math.unit(5 + 1/12, "feet"),
  24688. default: true
  24689. },
  24690. ]
  24691. ))
  24692. characterMakers.push(() => makeCharacter(
  24693. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  24694. {
  24695. front: {
  24696. height: math.unit(3 + 8/12, "feet"),
  24697. weight: math.unit(50, "lb"),
  24698. name: "Front",
  24699. image: {
  24700. source: "./media/characters/serryn/front.svg",
  24701. extra: 1792/1656,
  24702. bottom: 43.5/1840
  24703. }
  24704. },
  24705. },
  24706. [
  24707. {
  24708. name: "Normal",
  24709. height: math.unit(3 + 8/12, "feet"),
  24710. default: true
  24711. },
  24712. ]
  24713. ))
  24714. characterMakers.push(() => makeCharacter(
  24715. { name: "Xavier Thyme" },
  24716. {
  24717. front: {
  24718. height: math.unit(7 + 10/12, "feet"),
  24719. weight: math.unit(255, "lb"),
  24720. name: "Front",
  24721. image: {
  24722. source: "./media/characters/xavier-thyme/front.svg",
  24723. extra: 3733/3642,
  24724. bottom: 131/3869
  24725. }
  24726. },
  24727. frontRaven: {
  24728. height: math.unit(7 + 10/12, "feet"),
  24729. weight: math.unit(255, "lb"),
  24730. name: "Front (Raven)",
  24731. image: {
  24732. source: "./media/characters/xavier-thyme/front-raven.svg",
  24733. extra: 4385/3642,
  24734. bottom: 131/4517
  24735. }
  24736. },
  24737. },
  24738. [
  24739. {
  24740. name: "Normal",
  24741. height: math.unit(7 + 10/12, "feet"),
  24742. default: true
  24743. },
  24744. ]
  24745. ))
  24746. characterMakers.push(() => makeCharacter(
  24747. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  24748. {
  24749. front: {
  24750. height: math.unit(1.6, "m"),
  24751. weight: math.unit(50, "kg"),
  24752. name: "Front",
  24753. image: {
  24754. source: "./media/characters/kiki/front.svg",
  24755. extra: 4682/3610,
  24756. bottom: 115/4777
  24757. }
  24758. },
  24759. },
  24760. [
  24761. {
  24762. name: "Normal",
  24763. height: math.unit(1.6, "meters"),
  24764. default: true
  24765. },
  24766. ]
  24767. ))
  24768. characterMakers.push(() => makeCharacter(
  24769. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  24770. {
  24771. front: {
  24772. height: math.unit(50, "m"),
  24773. weight: math.unit(500, "tonnes"),
  24774. name: "Front",
  24775. image: {
  24776. source: "./media/characters/ryoko/front.svg",
  24777. extra: 4632/3926,
  24778. bottom: 193/4823
  24779. }
  24780. },
  24781. },
  24782. [
  24783. {
  24784. name: "Normal",
  24785. height: math.unit(50, "meters"),
  24786. default: true
  24787. },
  24788. ]
  24789. ))
  24790. characterMakers.push(() => makeCharacter(
  24791. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  24792. {
  24793. front: {
  24794. height: math.unit(30, "m"),
  24795. weight: math.unit(22, "tonnes"),
  24796. name: "Front",
  24797. image: {
  24798. source: "./media/characters/elio/front.svg",
  24799. extra: 4582/3720,
  24800. bottom: 236/4828
  24801. }
  24802. },
  24803. },
  24804. [
  24805. {
  24806. name: "Normal",
  24807. height: math.unit(30, "meters"),
  24808. default: true
  24809. },
  24810. ]
  24811. ))
  24812. characterMakers.push(() => makeCharacter(
  24813. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  24814. {
  24815. front: {
  24816. height: math.unit(6 + 3/12, "feet"),
  24817. weight: math.unit(120, "lb"),
  24818. name: "Front",
  24819. image: {
  24820. source: "./media/characters/azura/front.svg",
  24821. extra: 1149/1135,
  24822. bottom: 45/1194
  24823. }
  24824. },
  24825. frontClothed: {
  24826. height: math.unit(6 + 3/12, "feet"),
  24827. weight: math.unit(120, "lb"),
  24828. name: "Front (Clothed)",
  24829. image: {
  24830. source: "./media/characters/azura/front-clothed.svg",
  24831. extra: 1149/1135,
  24832. bottom: 45/1194
  24833. }
  24834. },
  24835. },
  24836. [
  24837. {
  24838. name: "Normal",
  24839. height: math.unit(6 + 3/12, "feet"),
  24840. default: true
  24841. },
  24842. {
  24843. name: "Macro",
  24844. height: math.unit(20 + 6/12, "feet")
  24845. },
  24846. {
  24847. name: "Megamacro",
  24848. height: math.unit(12, "miles")
  24849. },
  24850. {
  24851. name: "Gigamacro",
  24852. height: math.unit(10000, "miles")
  24853. },
  24854. {
  24855. name: "Teramacro",
  24856. height: math.unit(900000, "miles")
  24857. },
  24858. ]
  24859. ))
  24860. //characters
  24861. function makeCharacters() {
  24862. const results = [];
  24863. characterMakers.forEach(character => {
  24864. results.push(character());
  24865. });
  24866. return results;
  24867. }