less copy protection, more size visualization
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

32159 lines
806 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.capacity) {
  29. views[key].attributes.capacity = {
  30. name: "Capacity",
  31. power: 3,
  32. type: "volume",
  33. base: value.capacity
  34. }
  35. }
  36. });
  37. return createEntityMaker(info, views, defaultSizes);
  38. }
  39. const speciesData = {
  40. animal: {
  41. name: "Animal"
  42. },
  43. dog: {
  44. name: "Dog",
  45. parents: [
  46. "canine"
  47. ]
  48. },
  49. canine: {
  50. name: "Canine",
  51. parents: [
  52. "mammal"
  53. ]
  54. },
  55. crux: {
  56. name: "Crux",
  57. parents: [
  58. "mammal"
  59. ]
  60. },
  61. mammal: {
  62. name: "Mammal",
  63. parents: [
  64. "animal"
  65. ]
  66. },
  67. "rough-collie": {
  68. name: "Rough Collie",
  69. parents: [
  70. "dog"
  71. ]
  72. },
  73. dragon: {
  74. name: "Dragon",
  75. parents: [
  76. "reptile"
  77. ]
  78. },
  79. reptile: {
  80. name: "Reptile",
  81. parents: [
  82. "animal"
  83. ]
  84. },
  85. woodpecker: {
  86. name: "Woodpecker",
  87. parents: [
  88. "avian"
  89. ]
  90. },
  91. avian: {
  92. name: "Avian",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. kitsune: {
  98. name: "Kitsune",
  99. parents: [
  100. "fox"
  101. ]
  102. },
  103. fox: {
  104. name: "Fox",
  105. parents: [
  106. "mammal"
  107. ]
  108. },
  109. pokemon: {
  110. name: "Pokemon"
  111. },
  112. tiger: {
  113. name: "Tiger",
  114. parents: [
  115. "cat"
  116. ]
  117. },
  118. cat: {
  119. name: "Cat",
  120. parents: [
  121. "mammal"
  122. ]
  123. },
  124. "blue-jay": {
  125. name: "Blue Jay",
  126. parents: [
  127. "avian"
  128. ]
  129. },
  130. wolf: {
  131. name: "Wolf",
  132. parents: [
  133. "mammal"
  134. ]
  135. },
  136. coyote: {
  137. name: "Coyote",
  138. parents: [
  139. "mammal"
  140. ]
  141. },
  142. raccoon: {
  143. name: "Raccoon",
  144. parents: [
  145. "mammal"
  146. ]
  147. },
  148. weasel: {
  149. name: "Weasel",
  150. parents: [
  151. "mammal"
  152. ]
  153. },
  154. "red-panda": {
  155. name: "Red Panda",
  156. parents: [
  157. "mammal"
  158. ]
  159. },
  160. dolphin: {
  161. name: "Dolphin",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. "african-wild-dog": {
  167. name: "African Wild Dog",
  168. parents: [
  169. "canine"
  170. ]
  171. },
  172. "hyena": {
  173. name: "Hyena",
  174. parents: [
  175. "canine"
  176. ]
  177. },
  178. "carbuncle": {
  179. name: "Carbuncle",
  180. parents: [
  181. "animal"
  182. ]
  183. },
  184. bat: {
  185. name: "Bat",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. "leaf-nosed-bat": {
  191. name: "Leaf-Nosed Bat",
  192. parents: [
  193. "bat"
  194. ]
  195. },
  196. "fish": {
  197. name: "Fish",
  198. parents: [
  199. "animal"
  200. ]
  201. },
  202. "ram": {
  203. name: "Ram",
  204. parents: [
  205. "mammal"
  206. ]
  207. },
  208. "demon": {
  209. name: "Demon"
  210. },
  211. "cougar": {
  212. name: "Cougar",
  213. parents: [
  214. "cat"
  215. ]
  216. },
  217. "goat": {
  218. name: "Goat",
  219. parents: [
  220. "mammal"
  221. ]
  222. },
  223. "lion": {
  224. name: "Lion",
  225. parents: [
  226. "cat"
  227. ]
  228. },
  229. "harpy-eager": {
  230. name: "Harpy Eagle",
  231. parents: [
  232. "avian"
  233. ]
  234. },
  235. "deer": {
  236. name: "Deer",
  237. parents: [
  238. "mammal"
  239. ]
  240. },
  241. "phoenix": {
  242. name: "Phoenix",
  243. parents: [
  244. "avian"
  245. ]
  246. },
  247. "aeromorph": {
  248. name: "Aeromorph",
  249. parents: [
  250. "machine"
  251. ]
  252. },
  253. "machine": {
  254. name: "Machine",
  255. },
  256. "android": {
  257. name: "Android",
  258. parents: [
  259. "machine"
  260. ]
  261. },
  262. "jackal": {
  263. name: "Jackal",
  264. parents: [
  265. "canine"
  266. ]
  267. },
  268. "corvid": {
  269. name: "Corvid",
  270. parents: [
  271. "avian"
  272. ]
  273. },
  274. "pharaoh-hound": {
  275. name: "Pharaoh Hound",
  276. parents: [
  277. "dog"
  278. ]
  279. },
  280. "skunk": {
  281. name: "Skunk",
  282. parents: [
  283. "mammal"
  284. ]
  285. },
  286. "shark": {
  287. name: "Shark",
  288. parents: [
  289. "fish"
  290. ]
  291. },
  292. "black-panther": {
  293. name: "Black Panther",
  294. parents: [
  295. "cat"
  296. ]
  297. },
  298. "umbra": {
  299. name: "Umbra",
  300. parents: [
  301. "animal"
  302. ]
  303. },
  304. "raven": {
  305. name: "Raven",
  306. parents: [
  307. "corvid"
  308. ]
  309. },
  310. "snow-leopard": {
  311. name: "Snow Leopard",
  312. parents: [
  313. "cat"
  314. ]
  315. },
  316. "barbary-lion": {
  317. name: "Barbary Lion",
  318. parents: [
  319. "lion"
  320. ]
  321. },
  322. "dra'gal": {
  323. name: "Dra'Gal",
  324. parents: [
  325. "mammal"
  326. ]
  327. },
  328. "german-shepherd": {
  329. name: "German Shepherd",
  330. parents: [
  331. "dog"
  332. ]
  333. },
  334. "bayleef": {
  335. name: "Bayleef",
  336. parents: [
  337. "pokemon"
  338. ]
  339. },
  340. "mouse": {
  341. name: "Mouse",
  342. parents: [
  343. "rodent"
  344. ]
  345. },
  346. "rat": {
  347. name: "Rat",
  348. parents: [
  349. "mammal"
  350. ]
  351. },
  352. "hoshiko-beast": {
  353. name: "Hoshiko Beast",
  354. parents: ["animal"]
  355. },
  356. "snow-jugani": {
  357. name: "Snow Jugani",
  358. parents: ["cat"]
  359. },
  360. "patamon": {
  361. name: "Patamon",
  362. parents: ["digimon"]
  363. },
  364. "digimon": {
  365. name: "Digimon",
  366. },
  367. "jugani": {
  368. name: "Jugani",
  369. parents: ["cat"]
  370. },
  371. "luxray": {
  372. name: "Luxray",
  373. parents: ["pokemon"]
  374. },
  375. "mech": {
  376. name: "Mech",
  377. parents: ["machine"]
  378. },
  379. "zoid": {
  380. name: "Zoid",
  381. parents: ["mech"]
  382. },
  383. "monster": {
  384. name: "Monster",
  385. parents: ["animal"]
  386. },
  387. "foo-dog": {
  388. name: "Foo Dog",
  389. parents: ["mammal"]
  390. },
  391. "elephant": {
  392. name: "Elephant",
  393. parents: ["mammal"]
  394. },
  395. "eagle": {
  396. name: "Eagle",
  397. parents: ["avian"]
  398. },
  399. "cow": {
  400. name: "Cow",
  401. parents: ["mammal"]
  402. },
  403. "crocodile": {
  404. name: "Crocodile",
  405. parents: ["reptile"]
  406. },
  407. "borzoi": {
  408. name: "Borzoi",
  409. parents: ["dog"]
  410. },
  411. "snake": {
  412. name: "Snake",
  413. parents: ["reptile"]
  414. },
  415. "horned-bush-viper": {
  416. name: "Horned Bush Viper",
  417. parents: ["snake"]
  418. },
  419. "cobra": {
  420. name: "Cobra",
  421. parents: ["snake"]
  422. },
  423. "harpy-eagle": {
  424. name: "Harpy Eagle",
  425. parents: ["eagle"]
  426. },
  427. "raptor": {
  428. name: "Raptor",
  429. parents: ["dinosaur"]
  430. },
  431. "dinosaur": {
  432. name: "Dinosaur",
  433. parents: ["reptile"]
  434. },
  435. "veilhound": {
  436. name: "Veilhound",
  437. parents: ["hellhound", "demon"]
  438. },
  439. "hellhound": {
  440. name: "Hellhound",
  441. parents: ["canine"]
  442. },
  443. "insect": {
  444. name: "Insect",
  445. parents: ["animal"]
  446. },
  447. "beetle": {
  448. name: "Beetle",
  449. parents: ["insect"]
  450. },
  451. "moth": {
  452. name: "Moth",
  453. parents: ["insect"]
  454. },
  455. "eastern-dragon": {
  456. name: "Eastern Dragon",
  457. parents: ["dragon"]
  458. },
  459. "jaguar": {
  460. name: "Jaguar",
  461. parents: ["cat"]
  462. },
  463. "horse": {
  464. name: "Horse",
  465. parents: ["mammal"]
  466. },
  467. "sergal": {
  468. name: "Sergal",
  469. parents: ["mammal"]
  470. },
  471. "gryphon": {
  472. name: "Gryphon",
  473. parents: ["lion", "eagle"]
  474. },
  475. "robot": {
  476. name: "Robot",
  477. parents: ["machine"]
  478. },
  479. "medihound": {
  480. name: "Medihound",
  481. parents: ["robot", "dog"]
  482. },
  483. "sylveon": {
  484. name: "Sylveon",
  485. parents: ["pokemon"]
  486. },
  487. "catgirl": {
  488. name: "Catgirl",
  489. parents: ["mammal"]
  490. },
  491. "cowgirl": {
  492. name: "Cowgirl",
  493. parents: ["mammal"]
  494. },
  495. "pony": {
  496. name: "Pony",
  497. parents: ["horse"]
  498. },
  499. "rabbit": {
  500. name: "Rabbit",
  501. parents: ["mammal"]
  502. },
  503. "fennec-fox": {
  504. name: "Fennec Fox",
  505. parents: ["fox"]
  506. },
  507. "azodian": {
  508. name: "Azodian",
  509. parents: ["mouse"]
  510. },
  511. "shiba-inu": {
  512. name: "Shiba Inu",
  513. parents: ["dog"]
  514. },
  515. "changeling": {
  516. name: "Changeling",
  517. parents: ["insect"]
  518. },
  519. "cheetah": {
  520. name: "Cheetah",
  521. parents: ["cat"]
  522. },
  523. "golden-jackal": {
  524. name: "Golden Jackal",
  525. parents: ["jackal"]
  526. },
  527. "manectric": {
  528. name: "Manectric",
  529. parents: ["pokemon"]
  530. },
  531. "rat": {
  532. name: "Rat",
  533. parents: ["rodent"]
  534. },
  535. "rodent": {
  536. name: "Rodent",
  537. parents: ["mammal"]
  538. },
  539. "octocoon": {
  540. name: "Octocoon",
  541. parents: ["raccoon", "octopus"]
  542. },
  543. "octopus": {
  544. name: "Octopus",
  545. parents: ["fish"]
  546. },
  547. "werewolf": {
  548. name: "Werewolf",
  549. parents: ["wolf"]
  550. },
  551. "meerkat": {
  552. name: "Meerkat",
  553. parents: ["mammal"]
  554. },
  555. "human": {
  556. name: "Human",
  557. parents: ["mammal"]
  558. },
  559. "geth": {
  560. name: "Geth",
  561. parents: ["android"]
  562. },
  563. "husky": {
  564. name: "Husky",
  565. parents: ["dog"]
  566. },
  567. "long-eared-bat": {
  568. name: "Long Eared Bat",
  569. parents: ["bat"]
  570. },
  571. "lizard": {
  572. name: "Lizard",
  573. parents: ["reptile"]
  574. },
  575. "salamander": {
  576. name: "Salamander",
  577. parents: ["lizard"]
  578. },
  579. "chameleon": {
  580. name: "Chameleon",
  581. parents: ["lizard"]
  582. },
  583. "gecko": {
  584. name: "Gecko",
  585. parents: ["lizard"]
  586. },
  587. "kobold": {
  588. name: "Kobold",
  589. parents: ["reptile"]
  590. },
  591. "charizard": {
  592. name: "Charizard",
  593. parents: ["pokemon"]
  594. },
  595. "lugia": {
  596. name: "Lugia",
  597. parents: ["pokemon"]
  598. },
  599. "cerberus": {
  600. name: "Cerberus",
  601. parents: ["dog"]
  602. },
  603. "tyrantrum": {
  604. name: "Tyrantrum",
  605. parents: ["pokemon"]
  606. },
  607. "lemur": {
  608. name: "Lemur",
  609. parents: ["mammal"]
  610. },
  611. "kelpie": {
  612. name: "Kelpie",
  613. parents: ["horse", "monster"]
  614. },
  615. "labrador": {
  616. name: "Labrador",
  617. parents: ["dog"]
  618. },
  619. "sylveon": {
  620. name: "Sylveon",
  621. parents: ["eeveelution"]
  622. },
  623. "eeveelution": {
  624. name: "Eeveelution",
  625. parents: ["pokemon"]
  626. },
  627. "polar-bear": {
  628. name: "Polar Bear",
  629. parents: ["bear"]
  630. },
  631. "bear": {
  632. name: "Bear",
  633. parents: ["mammal"]
  634. },
  635. "absol": {
  636. name: "Absol",
  637. parents: ["pokemon"]
  638. },
  639. "wolver": {
  640. name: "Wolver",
  641. parents: ["mammal"]
  642. },
  643. "rottweiler": {
  644. name: "Rottweiler",
  645. parents: ["dog"]
  646. },
  647. "zebra": {
  648. name: "Zebra",
  649. parents: ["horse"]
  650. },
  651. "yoshi": {
  652. name: "Yoshi",
  653. parents: ["lizard"]
  654. },
  655. "lynx": {
  656. name: "Lynx",
  657. parents: ["cat"]
  658. },
  659. "unknown": {
  660. name: "Unknown",
  661. parents: []
  662. },
  663. "thylacine": {
  664. name: "Thylacine",
  665. parents: ["mammal"]
  666. },
  667. "gabumon": {
  668. name: "Gabumon",
  669. parents: ["digimon"]
  670. },
  671. "border-collie": {
  672. name: "Border Collie",
  673. parents: ["dog"]
  674. },
  675. "imp": {
  676. name: "Imp",
  677. parents: ["demon"]
  678. },
  679. "kangaroo": {
  680. name: "Kangaroo",
  681. parents: ["mammal"]
  682. },
  683. "renamon": {
  684. name: "Renamon",
  685. parents: ["digimon"]
  686. },
  687. "candy-orca-dragon": {
  688. name: "Candy Orca Dragon",
  689. parents: ["fish", "dragon", "candy"]
  690. },
  691. "sabertooth-tiger": {
  692. name: "Sabertooth Tiger",
  693. parents: ["cat"]
  694. },
  695. "espurr": {
  696. name: "Espurr",
  697. parents: ["pokemon"]
  698. },
  699. "otter": {
  700. name: "Otter",
  701. parents: ["mammal"]
  702. },
  703. "elemental": {
  704. name: "Elemental",
  705. parents: ["mammal"]
  706. },
  707. "mew": {
  708. name: "Mew",
  709. parents: ["pokemon"]
  710. },
  711. "goodra": {
  712. name: "Goodra",
  713. parents: ["pokemon"]
  714. },
  715. "fairy": {
  716. name: "Fairy",
  717. parents: ["magical"]
  718. },
  719. "typhlosion": {
  720. name: "Typhlosion",
  721. parents: ["pokemon"]
  722. },
  723. "magical": {
  724. name: "Magical",
  725. parents: []
  726. },
  727. "xenomorph": {
  728. name: "Xenomorph",
  729. parents: ["monster", "alien"]
  730. },
  731. "charr": {
  732. name: "Charr",
  733. parents: ["cat"]
  734. },
  735. "siberian-husky": {
  736. name: "Siberian Husky",
  737. parents: ["husky"]
  738. },
  739. "alligator": {
  740. name: "Alligator",
  741. parents: ["reptile"]
  742. },
  743. "bernese-mountain-dog": {
  744. name: "Bernese Mountain Dog",
  745. parents: ["dog"]
  746. },
  747. "reshiram": {
  748. name: "Reshiram",
  749. parents: ["pokemon"]
  750. },
  751. "grizzly-bear": {
  752. name: "Grizzly Bear",
  753. parents: ["bear"]
  754. },
  755. "water-monitor": {
  756. name: "Water Monitor",
  757. parents: ["lizard"]
  758. },
  759. "banchofossa": {
  760. name: "Banchofossa",
  761. parents: ["mammal"]
  762. },
  763. "kirin": {
  764. name: "Kirin",
  765. parents: ["monster"]
  766. },
  767. "quilava": {
  768. name: "Quilava",
  769. parents: ["pokemon"]
  770. },
  771. "seviper": {
  772. name: "Seviper",
  773. parents: ["pokemon"]
  774. },
  775. "flying-fox": {
  776. name: "Flying Fox",
  777. parents: ["bat"]
  778. },
  779. "keynain": {
  780. name: "Keynain",
  781. parents: ["avian"]
  782. },
  783. "lucario": {
  784. name: "Lucario",
  785. parents: ["pokemon"]
  786. },
  787. "siamese-cat": {
  788. name: "Siamese Cat",
  789. parents: ["cat"]
  790. },
  791. "spider": {
  792. name: "Spider",
  793. parents: ["insect"]
  794. },
  795. "samurott": {
  796. name: "Samurott",
  797. parents: ["pokemon"]
  798. },
  799. "megalodon": {
  800. name: "Megalodon",
  801. parents: ["shark"]
  802. },
  803. "unicorn": {
  804. name: "Unicorn",
  805. parents: ["horse"]
  806. },
  807. "greninja": {
  808. name: "Greninja",
  809. parents: ["pokemon"]
  810. },
  811. "water-dragon": {
  812. name: "Water Dragon",
  813. parents: ["dragon"]
  814. },
  815. "cross-fox": {
  816. name: "Cross Fox",
  817. parents: ["fox"]
  818. },
  819. "synth": {
  820. name: "Synth",
  821. parents: ["machine"]
  822. },
  823. "construct": {
  824. name: "Construct",
  825. parents: []
  826. },
  827. "mexican-wolf": {
  828. name: "Mexican Wolf",
  829. parents: ["wolf"]
  830. },
  831. "leopard": {
  832. name: "Leopard",
  833. parents: ["cat"]
  834. },
  835. "pig": {
  836. name: "Pig",
  837. parents: ["mammal"]
  838. },
  839. "ampharos": {
  840. name: "Ampharos",
  841. parents: ["pokemon"]
  842. },
  843. "orca": {
  844. name: "Orca",
  845. parents: ["fish"]
  846. },
  847. "lycanroc": {
  848. name: "Lycanroc",
  849. parents: ["pokemon"]
  850. },
  851. "surkanu": {
  852. name: "Surkanu",
  853. parents: ["monster"]
  854. },
  855. "seal": {
  856. name: "Seal",
  857. parents: ["mammal"]
  858. },
  859. "keldeo": {
  860. name: "Keldeo",
  861. parents: ["pokemon"]
  862. },
  863. "great-dane": {
  864. name: "Great Dane",
  865. parents: ["dog"]
  866. },
  867. "black-backed-jackal": {
  868. name: "Black Backed Jackal",
  869. parents: ["jackal"]
  870. },
  871. "sheep": {
  872. name: "Sheep",
  873. parents: ["mammal"]
  874. },
  875. "leopard-seal": {
  876. name: "Leopard Seal",
  877. parents: ["seal"]
  878. },
  879. "zoroark": {
  880. name: "Zoroark",
  881. parents: ["pokemon"]
  882. },
  883. "maned-wolf": {
  884. name: "Maned Wolf",
  885. parents: ["canine"]
  886. },
  887. "dracha": {
  888. name: "Dracha",
  889. parents: ["dragon"]
  890. },
  891. "wolxi": {
  892. name: "Wolxi",
  893. parents: ["mammal", "alien"]
  894. },
  895. "dratini": {
  896. name: "Dratini",
  897. parents: ["pokemon", "dragon"]
  898. },
  899. "skaven": {
  900. name: "Skaven",
  901. parents: ["rat"]
  902. },
  903. "mongoose": {
  904. name: "Mongoose",
  905. parents: ["mammal"]
  906. },
  907. "lopunny": {
  908. name: "Lopunny",
  909. parents: ["pokemon", "rabbit"]
  910. },
  911. "feraligatr": {
  912. name: "Feraligatr",
  913. parents: ["pokemon", "alligator"]
  914. },
  915. "houndoom": {
  916. name: "Houndoom",
  917. parents: ["pokemon", "dog"]
  918. },
  919. "protogen": {
  920. name: "Protogen",
  921. parents: ["machine"]
  922. },
  923. "saint-bernard": {
  924. name: "Saint Bernard",
  925. parents: ["dog"]
  926. },
  927. "crow": {
  928. name: "Crow",
  929. parents: ["corvid"]
  930. },
  931. "delphox": {
  932. name: "Delphox",
  933. parents: ["pokemon", "fox"]
  934. },
  935. "moose": {
  936. name: "Moose",
  937. parents: ["mammal"]
  938. },
  939. "joraxian": {
  940. name: "Joraxian",
  941. parents: ["monster", "canine", "demon"]
  942. },
  943. "nimbat": {
  944. name: "Nimbat",
  945. parents: ["mammal"]
  946. },
  947. "aardwolf": {
  948. name: "Aardwolf",
  949. parents: ["canine"]
  950. },
  951. "fluudrani": {
  952. name: "Fluudrani",
  953. parents: ["animal"]
  954. },
  955. "arcanine": {
  956. name: "Arcanine",
  957. parents: ["pokemon", "dog"]
  958. },
  959. "inteleon": {
  960. name: "Inteleon",
  961. parents: ["pokemon", "fish"]
  962. },
  963. "ninetales": {
  964. name: "Ninetales",
  965. parents: ["pokemon", "kitsune"]
  966. },
  967. "tigrex": {
  968. name: "Tigrex",
  969. parents: ["tiger"]
  970. },
  971. "zorua": {
  972. name: "Zorua",
  973. parents: ["pokemon", "fox"]
  974. },
  975. "vulpix": {
  976. name: "Vulpix",
  977. parents: ["pokemon", "fox"]
  978. },
  979. "barghest": {
  980. name: "Barghest",
  981. parents: ["monster"]
  982. },
  983. "gray-wolf": {
  984. name: "Gray Wolf",
  985. parents: ["wolf"]
  986. },
  987. "ruppells-fox": {
  988. name: "Rüppell's Fox",
  989. parents: ["fox"]
  990. },
  991. "bull-terrier": {
  992. name: "Bull Terrier",
  993. parents: ["dog"]
  994. },
  995. "european-honey-buzzard": {
  996. name: "European Honey Buzzard",
  997. parents: ["avian"]
  998. },
  999. "t-rex": {
  1000. name: "T Rex",
  1001. parents: ["dinosaur"]
  1002. },
  1003. "mactarian": {
  1004. name: "Mactarian",
  1005. parents: ["shark", "monster"]
  1006. },
  1007. "mewtwo-y": {
  1008. name: "Mewtwo Y",
  1009. parents: ["mewtwo"]
  1010. },
  1011. "mewtwo": {
  1012. name: "Mewtwo",
  1013. parents: ["pokemon"]
  1014. },
  1015. "mew": {
  1016. name: "Mew",
  1017. parents: ["pokemon"]
  1018. },
  1019. "eevee": {
  1020. name: "Eevee",
  1021. parents: ["eeveelution"]
  1022. },
  1023. "mienshao": {
  1024. name: "Mienshao",
  1025. parents: ["pokemon"]
  1026. },
  1027. "sugar-glider": {
  1028. name: "Sugar Glider",
  1029. parents: ["opossum"]
  1030. },
  1031. "spectral-bat": {
  1032. name: "Spectral Bat",
  1033. parents: ["bat"]
  1034. },
  1035. "scolipede": {
  1036. name: "Scolipede",
  1037. parents: ["pokemon", "insect"]
  1038. },
  1039. "jackalope": {
  1040. name: "Jackalope",
  1041. parents: ["rabbit", "antelope"]
  1042. },
  1043. "caracal": {
  1044. name: "Caracal",
  1045. parents: ["cat"]
  1046. },
  1047. "stoat": {
  1048. name: "Stoat",
  1049. parents: ["mammal"]
  1050. },
  1051. "african-golden-cat": {
  1052. name: "African Golden Cat",
  1053. parents: ["cat"]
  1054. },
  1055. "gigantosaurus": {
  1056. name: "Gigantosaurus",
  1057. parents: ["dinosaur"]
  1058. },
  1059. "zorgoia": {
  1060. name: "Zorgoia",
  1061. parents: ["mammal"]
  1062. },
  1063. "monitor-lizard": {
  1064. name: "Monitor Lizard",
  1065. parents: ["lizard"]
  1066. },
  1067. "ziralkia": {
  1068. name: "Ziralkia",
  1069. parents: ["mammal"]
  1070. },
  1071. "kiiasi": {
  1072. name: "Kiiasi",
  1073. parents: ["animal"]
  1074. },
  1075. "synx": {
  1076. name: "Synx",
  1077. parents: ["monster"]
  1078. },
  1079. "panther": {
  1080. name: "Panther",
  1081. parents: ["cat"]
  1082. },
  1083. "azumarill": {
  1084. name: "Azumarill",
  1085. parents: ["pokemon"]
  1086. },
  1087. "river-snaptail": {
  1088. name: "River Snaptail",
  1089. parents: ["otter", "crocodile"]
  1090. },
  1091. "great-blue-heron": {
  1092. name: "Great Blue Heron",
  1093. parents: ["avian"]
  1094. },
  1095. "smeargle": {
  1096. name: "Smeargle",
  1097. parents: ["pokemon"]
  1098. },
  1099. "vendeilen": {
  1100. name: "Vendeilen",
  1101. parents: ["monster"]
  1102. },
  1103. "ventura": {
  1104. name: "Ventura",
  1105. parents: ["canine"]
  1106. },
  1107. "clouded-leopard": {
  1108. name: "Clouded Leopard",
  1109. parents: ["leopard"]
  1110. },
  1111. "argonian": {
  1112. name: "Argonian",
  1113. parents: ["lizard"]
  1114. },
  1115. "salazzle": {
  1116. name: "Salazzle",
  1117. parents: ["pokemon", "lizard"]
  1118. },
  1119. "je-stoff-drachen": {
  1120. name: "Je-Stoff Drachen",
  1121. parents: ["dragon"]
  1122. },
  1123. "finnish-spitz-dog": {
  1124. name: "Finnish Spitz Dog",
  1125. parents: ["dog"]
  1126. },
  1127. "gray-fox": {
  1128. name: "Gray Fox",
  1129. parents: ["fox"]
  1130. },
  1131. "opossum": {
  1132. name: "opossum",
  1133. parents: ["mammal"]
  1134. },
  1135. "antelope": {
  1136. name: "Antelope",
  1137. parents: ["mammal"]
  1138. },
  1139. "weavile": {
  1140. name: "Weavile",
  1141. parents: ["pokemon"]
  1142. },
  1143. "pikachu": {
  1144. name: "Pikachu",
  1145. parents: ["pokemon", "mouse"]
  1146. },
  1147. "grovyle": {
  1148. name: "Grovyle",
  1149. parents: ["pokemon", "plant"]
  1150. },
  1151. "sthara": {
  1152. name: "Sthara",
  1153. parents: ["snow-leopard", "reptile"]
  1154. },
  1155. "star-warrior": {
  1156. name: "Star Warrior",
  1157. parents: ["magical"]
  1158. },
  1159. "dragonoid": {
  1160. name: "Dragonoid",
  1161. parents: ["dragon"]
  1162. },
  1163. "suicune": {
  1164. name: "Suicune",
  1165. parents: ["pokemon"]
  1166. },
  1167. "vole": {
  1168. name: "Vole",
  1169. parents: ["mammal"]
  1170. },
  1171. "blaziken": {
  1172. name: "Blaziken",
  1173. parents: ["pokemon", "avian"]
  1174. },
  1175. "buizel": {
  1176. name: "Buizel",
  1177. parents: ["pokemon", "fish"]
  1178. },
  1179. "floatzel": {
  1180. name: "Floatzel",
  1181. parents: ["pokemon", "fish"]
  1182. },
  1183. "umok": {
  1184. name: "Umok",
  1185. parents: ["avian"]
  1186. },
  1187. "sea-monster": {
  1188. name: "Sea Monster",
  1189. parents: ["monster", "fish"]
  1190. },
  1191. "egyptian-vulture": {
  1192. name: "Egyptian Vulture",
  1193. parents: ["avian"]
  1194. },
  1195. "doberman": {
  1196. name: "Doberman",
  1197. parents: ["dog"]
  1198. },
  1199. "zangoose": {
  1200. name: "Zangoose",
  1201. parents: ["pokemon", "mongoose"]
  1202. },
  1203. "mongoose": {
  1204. name: "Mongoose",
  1205. parents: ["mammal"]
  1206. },
  1207. "wickerbeast": {
  1208. name: "Wickerbeast",
  1209. parents: ["monster"]
  1210. },
  1211. "zenari": {
  1212. name: "Zenari",
  1213. parents: ["lizard"]
  1214. },
  1215. "plant": {
  1216. name: "Plant",
  1217. parents: []
  1218. },
  1219. "raskatox": {
  1220. name: "Raskatox",
  1221. parents: ["raccoon", "skunk", "cat", "fox"]
  1222. },
  1223. "mikromare": {
  1224. name: "mikromare",
  1225. parents: ["alien"]
  1226. },
  1227. "alien": {
  1228. name: "Alien",
  1229. parents: ["animal"]
  1230. },
  1231. "deity": {
  1232. name: "Deity",
  1233. parents: []
  1234. },
  1235. "skarlan": {
  1236. name: "Skarlan",
  1237. parents: ["slug", "dragon"]
  1238. },
  1239. "slug": {
  1240. name: "Slug",
  1241. parents: ["mollusk"]
  1242. },
  1243. "mollusk": {
  1244. name: "Mollusk",
  1245. parents: ["animal"]
  1246. },
  1247. "chimera": {
  1248. name: "Chimera",
  1249. parents: ["monster"]
  1250. },
  1251. "gestalt": {
  1252. name: "Gestalt",
  1253. parents: ["construct"]
  1254. },
  1255. "mimic": {
  1256. name: "Mimic",
  1257. parents: ["monster"]
  1258. },
  1259. "calico-rat": {
  1260. name: "Calico Rat",
  1261. parents: ["rat"]
  1262. },
  1263. "panda": {
  1264. name: "Panda",
  1265. parents: ["mammal"]
  1266. },
  1267. "oni": {
  1268. name: "Oni",
  1269. parents: ["monster"]
  1270. },
  1271. "pegasus": {
  1272. name: "Pegasus",
  1273. parents: ["horse"]
  1274. },
  1275. "vulpera": {
  1276. name: "Vulpera",
  1277. parents: ["fennec-fox"]
  1278. },
  1279. "ceratosaurus": {
  1280. name: "Ceratosaurus",
  1281. parents: ["dinosaur"]
  1282. },
  1283. "nykur": {
  1284. name: "Nykur",
  1285. parents: ["horse", "monster"]
  1286. },
  1287. "giraffe": {
  1288. name: "Giraffe",
  1289. parents: ["mammal"]
  1290. },
  1291. "tauren": {
  1292. name: "Tauren",
  1293. parents: ["cow"]
  1294. },
  1295. "draconi": {
  1296. name: "Draconi",
  1297. parents: ["alien", "cat", "cyborg"]
  1298. },
  1299. "dire-wolf": {
  1300. name: "Dire Wolf",
  1301. parents: ["wolf"]
  1302. },
  1303. "ferromorph": {
  1304. name: "Ferromorph",
  1305. parents: ["construct"]
  1306. },
  1307. "meowth": {
  1308. name: "Meowth",
  1309. parents: ["cat", "pokemon"]
  1310. },
  1311. "pavodragon": {
  1312. name: "Pavodragon",
  1313. parents: ["dragon"]
  1314. },
  1315. "aaltranae": {
  1316. name: "Aaltranae",
  1317. parents: ["dragon"]
  1318. },
  1319. "cyborg": {
  1320. name: "Cyborg",
  1321. parents: ["machine"]
  1322. },
  1323. "draptor": {
  1324. name: "Draptor",
  1325. parents: ["dragon"]
  1326. },
  1327. "candy": {
  1328. name: "Candy",
  1329. parents: []
  1330. },
  1331. "drenath": {
  1332. name: "Drenath",
  1333. parents: ["dragon", "snake", "rabbit"]
  1334. },
  1335. "coyju": {
  1336. name: "Coyju",
  1337. parents: ["coyote", "kaiju"]
  1338. },
  1339. "kaiju": {
  1340. name: "Kaiju",
  1341. parents: ["monster"]
  1342. },
  1343. "nickit": {
  1344. name: "Nickit",
  1345. parents: ["pokemon", "cat"]
  1346. },
  1347. "lopunny": {
  1348. name: "Lopunny",
  1349. parents: ["pokemon", "rabbit"]
  1350. },
  1351. "korean-jindo-dog": {
  1352. name: "Korean Jindo Dog",
  1353. parents: ["dog"]
  1354. },
  1355. "naga": {
  1356. name: "Naga",
  1357. parents: ["snake", "monster"]
  1358. },
  1359. "undead": {
  1360. name: "Undead",
  1361. parents: ["monster"]
  1362. },
  1363. "whale": {
  1364. name: "Whale",
  1365. parents: ["fish"]
  1366. },
  1367. "gelato-bee": {
  1368. name: "Gelato Bee",
  1369. parents: ["bee"]
  1370. },
  1371. "bee": {
  1372. name: "Bee",
  1373. parents: ["insect"]
  1374. },
  1375. "gardevoir": {
  1376. name: "Gardevoir",
  1377. parents: ["pokemon"]
  1378. },
  1379. "ant": {
  1380. name: "Ant",
  1381. parents: ["insect"]
  1382. },
  1383. "frog": {
  1384. name: "Frog",
  1385. parents: ["amphibian"]
  1386. },
  1387. "amphibian": {
  1388. name: "Amphibian",
  1389. parents: ["animal"]
  1390. },
  1391. "pangolin": {
  1392. name: "Pangolin",
  1393. parents: ["mammal"]
  1394. },
  1395. "uragi'viidorn": {
  1396. name: "Uragi'viidorn",
  1397. parents: ["avian", "bear"]
  1398. },
  1399. "gryphdelphais": {
  1400. name: "Gryphdelphais",
  1401. parents: ["dolphin", "gryphon"]
  1402. },
  1403. "plush": {
  1404. name: "Plush",
  1405. parents: ["construct"]
  1406. },
  1407. "draiger": {
  1408. name: "Draiger",
  1409. parents: ["dragon","tiger"]
  1410. },
  1411. "foxsky": {
  1412. name: "Foxsky",
  1413. parents: ["fox", "husky"]
  1414. },
  1415. "umbreon": {
  1416. name: "Umbreon",
  1417. parents: ["eeveelution"]
  1418. },
  1419. "slime-dragon": {
  1420. name: "Slime Dragon",
  1421. parents: ["dragon"]
  1422. },
  1423. "enderman": {
  1424. name: "Enderman",
  1425. parents: ["monster"]
  1426. },
  1427. "gremlin": {
  1428. name: "Gremlin",
  1429. parents: ["monster"]
  1430. },
  1431. "dragonsune": {
  1432. name: "Dragonsune",
  1433. parents: ["dragon", "kitsune"]
  1434. },
  1435. "ghost": {
  1436. name: "Ghost",
  1437. parents: ["monster"]
  1438. },
  1439. }
  1440. //species
  1441. function getSpeciesInfo(speciesList) {
  1442. let result = new Set();
  1443. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1444. result.add(entry)
  1445. });
  1446. return Array.from(result);
  1447. };
  1448. function getSpeciesInfoHelper(species) {
  1449. if (!speciesData[species]) {
  1450. console.warn(species + " doesn't exist");
  1451. return [];
  1452. }
  1453. if (speciesData[species].parents) {
  1454. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1455. } else {
  1456. return [species];
  1457. }
  1458. }
  1459. characterMakers.push(() => makeCharacter(
  1460. {
  1461. name: "Fen",
  1462. species: ["crux"],
  1463. description: {
  1464. title: "Bio",
  1465. text: "Very furry. Sheds on everything."
  1466. },
  1467. tags: [
  1468. "anthro",
  1469. "goo"
  1470. ]
  1471. },
  1472. {
  1473. back: {
  1474. height: math.unit(2.2428, "meter"),
  1475. weight: math.unit(124.738, "kg"),
  1476. name: "Back",
  1477. image: {
  1478. source: "./media/characters/fen/back.svg",
  1479. extra: 2024 / 1867,
  1480. bottom: 13 / 2037
  1481. },
  1482. info: {
  1483. description: {
  1484. mode: "append",
  1485. text: "\n\nHe is not currently looking at you."
  1486. }
  1487. }
  1488. },
  1489. full: {
  1490. height: math.unit(1.34, "meter"),
  1491. weight: math.unit(225, "kg"),
  1492. name: "Full",
  1493. image: {
  1494. source: "./media/characters/fen/full.svg"
  1495. },
  1496. info: {
  1497. description: {
  1498. mode: "append",
  1499. text: "\n\nMunch."
  1500. }
  1501. }
  1502. },
  1503. kneeling: {
  1504. height: math.unit(5.4, "feet"),
  1505. weight: math.unit(124.738, "kg"),
  1506. name: "Kneeling",
  1507. image: {
  1508. source: "./media/characters/fen/kneeling.svg",
  1509. extra: 563 / 507
  1510. }
  1511. },
  1512. goo: {
  1513. height: math.unit(2.8, "feet"),
  1514. weight: math.unit(125, "kg"),
  1515. capacity: math.unit(1, "people"),
  1516. name: "Goo",
  1517. image: {
  1518. source: "./media/characters/fen/goo.svg",
  1519. bottom: 116 / 613
  1520. }
  1521. },
  1522. lounging: {
  1523. height: math.unit(6.5, "feet"),
  1524. weight: math.unit(125, "kg"),
  1525. name: "Lounging",
  1526. image: {
  1527. source: "./media/characters/fen/lounging.svg"
  1528. }
  1529. },
  1530. },
  1531. [
  1532. {
  1533. name: "Normal",
  1534. height: math.unit(2.2428, "meter")
  1535. },
  1536. {
  1537. name: "Big",
  1538. height: math.unit(12, "feet")
  1539. },
  1540. {
  1541. name: "Minimacro",
  1542. height: math.unit(40, "feet"),
  1543. default: true,
  1544. info: {
  1545. description: {
  1546. mode: "append",
  1547. text: "\n\nTOO DAMN BIG"
  1548. }
  1549. }
  1550. },
  1551. {
  1552. name: "Macro",
  1553. height: math.unit(100, "feet"),
  1554. info: {
  1555. description: {
  1556. mode: "append",
  1557. text: "\n\nTOO DAMN BIG"
  1558. }
  1559. }
  1560. },
  1561. {
  1562. name: "Macro+",
  1563. height: math.unit(300, "feet")
  1564. },
  1565. {
  1566. name: "Megamacro",
  1567. height: math.unit(2, "miles")
  1568. }
  1569. ]
  1570. ))
  1571. characterMakers.push(() => makeCharacter(
  1572. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1573. {
  1574. front: {
  1575. height: math.unit(183, "cm"),
  1576. weight: math.unit(80, "kg"),
  1577. name: "Front",
  1578. image: {
  1579. source: "./media/characters/sofia-fluttertail/front.svg",
  1580. bottom: 0.01,
  1581. extra: 2154 / 2081
  1582. }
  1583. },
  1584. frontAlt: {
  1585. height: math.unit(183, "cm"),
  1586. weight: math.unit(80, "kg"),
  1587. name: "Front (alt)",
  1588. image: {
  1589. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1590. }
  1591. },
  1592. back: {
  1593. height: math.unit(183, "cm"),
  1594. weight: math.unit(80, "kg"),
  1595. name: "Back",
  1596. image: {
  1597. source: "./media/characters/sofia-fluttertail/back.svg"
  1598. }
  1599. },
  1600. kneeling: {
  1601. height: math.unit(125, "cm"),
  1602. weight: math.unit(80, "kg"),
  1603. name: "Kneeling",
  1604. image: {
  1605. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1606. extra: 1033 / 977,
  1607. bottom: 23.7 / 1057
  1608. }
  1609. },
  1610. maw: {
  1611. height: math.unit(183 / 5, "cm"),
  1612. name: "Maw",
  1613. image: {
  1614. source: "./media/characters/sofia-fluttertail/maw.svg"
  1615. }
  1616. },
  1617. mawcloseup: {
  1618. height: math.unit(183 / 5 * 0.41, "cm"),
  1619. name: "Maw (Closeup)",
  1620. image: {
  1621. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1622. }
  1623. },
  1624. paws: {
  1625. height: math.unit(1.17, "feet"),
  1626. name: "Paws",
  1627. image: {
  1628. source: "./media/characters/sofia-fluttertail/paws.svg",
  1629. extra: 851 / 851,
  1630. bottom: 17 / 868
  1631. }
  1632. },
  1633. },
  1634. [
  1635. {
  1636. name: "Normal",
  1637. height: math.unit(1.83, "meter")
  1638. },
  1639. {
  1640. name: "Size Thief",
  1641. height: math.unit(18, "feet")
  1642. },
  1643. {
  1644. name: "50 Foot Collie",
  1645. height: math.unit(50, "feet")
  1646. },
  1647. {
  1648. name: "Macro",
  1649. height: math.unit(96, "feet"),
  1650. default: true
  1651. },
  1652. {
  1653. name: "Megamerger",
  1654. height: math.unit(650, "feet")
  1655. },
  1656. ]
  1657. ))
  1658. characterMakers.push(() => makeCharacter(
  1659. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1660. {
  1661. front: {
  1662. height: math.unit(7, "feet"),
  1663. weight: math.unit(100, "kg"),
  1664. name: "Front",
  1665. image: {
  1666. source: "./media/characters/march/front.svg",
  1667. extra: 1,
  1668. bottom: 0.015
  1669. }
  1670. },
  1671. foot: {
  1672. height: math.unit(0.9, "feet"),
  1673. name: "Foot",
  1674. image: {
  1675. source: "./media/characters/march/foot.svg"
  1676. }
  1677. },
  1678. },
  1679. [
  1680. {
  1681. name: "Normal",
  1682. height: math.unit(7.9, "feet")
  1683. },
  1684. {
  1685. name: "Macro",
  1686. height: math.unit(220, "meters")
  1687. },
  1688. {
  1689. name: "Megamacro",
  1690. height: math.unit(2.98, "km"),
  1691. default: true
  1692. },
  1693. {
  1694. name: "Gigamacro",
  1695. height: math.unit(15963, "km")
  1696. },
  1697. {
  1698. name: "Teramacro",
  1699. height: math.unit(2980000000, "km")
  1700. },
  1701. {
  1702. name: "Examacro",
  1703. height: math.unit(250, "parsecs")
  1704. },
  1705. ]
  1706. ))
  1707. characterMakers.push(() => makeCharacter(
  1708. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1709. {
  1710. front: {
  1711. height: math.unit(6, "feet"),
  1712. weight: math.unit(60, "kg"),
  1713. name: "Front",
  1714. image: {
  1715. source: "./media/characters/noir/front.svg",
  1716. extra: 1,
  1717. bottom: 0.032
  1718. }
  1719. },
  1720. },
  1721. [
  1722. {
  1723. name: "Normal",
  1724. height: math.unit(6.6, "feet")
  1725. },
  1726. {
  1727. name: "Macro",
  1728. height: math.unit(500, "feet")
  1729. },
  1730. {
  1731. name: "Megamacro",
  1732. height: math.unit(2.5, "km"),
  1733. default: true
  1734. },
  1735. {
  1736. name: "Gigamacro",
  1737. height: math.unit(22500, "km")
  1738. },
  1739. {
  1740. name: "Teramacro",
  1741. height: math.unit(2500000000, "km")
  1742. },
  1743. {
  1744. name: "Examacro",
  1745. height: math.unit(200, "parsecs")
  1746. },
  1747. ]
  1748. ))
  1749. characterMakers.push(() => makeCharacter(
  1750. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1751. {
  1752. front: {
  1753. height: math.unit(7, "feet"),
  1754. weight: math.unit(100, "kg"),
  1755. name: "Front",
  1756. image: {
  1757. source: "./media/characters/okuri/front.svg",
  1758. extra: 1,
  1759. bottom: 0.037
  1760. }
  1761. },
  1762. back: {
  1763. height: math.unit(7, "feet"),
  1764. weight: math.unit(100, "kg"),
  1765. name: "Back",
  1766. image: {
  1767. source: "./media/characters/okuri/back.svg",
  1768. extra: 1,
  1769. bottom: 0.007
  1770. }
  1771. },
  1772. },
  1773. [
  1774. {
  1775. name: "Megamacro",
  1776. height: math.unit(100, "miles"),
  1777. default: true
  1778. },
  1779. ]
  1780. ))
  1781. characterMakers.push(() => makeCharacter(
  1782. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1783. {
  1784. front: {
  1785. height: math.unit(7, "feet"),
  1786. weight: math.unit(100, "kg"),
  1787. name: "Front",
  1788. image: {
  1789. source: "./media/characters/manny/front.svg",
  1790. extra: 1,
  1791. bottom: 0.06
  1792. }
  1793. },
  1794. back: {
  1795. height: math.unit(7, "feet"),
  1796. weight: math.unit(100, "kg"),
  1797. name: "Back",
  1798. image: {
  1799. source: "./media/characters/manny/back.svg",
  1800. extra: 1,
  1801. bottom: 0.014
  1802. }
  1803. },
  1804. },
  1805. [
  1806. {
  1807. name: "Normal",
  1808. height: math.unit(7, "feet"),
  1809. },
  1810. {
  1811. name: "Macro",
  1812. height: math.unit(78, "feet"),
  1813. default: true
  1814. },
  1815. {
  1816. name: "Macro+",
  1817. height: math.unit(300, "meters")
  1818. },
  1819. {
  1820. name: "Macro++",
  1821. height: math.unit(2400, "meters")
  1822. },
  1823. {
  1824. name: "Megamacro",
  1825. height: math.unit(5167, "meters")
  1826. },
  1827. {
  1828. name: "Gigamacro",
  1829. height: math.unit(41769, "miles")
  1830. },
  1831. ]
  1832. ))
  1833. characterMakers.push(() => makeCharacter(
  1834. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1835. {
  1836. front: {
  1837. height: math.unit(7, "feet"),
  1838. weight: math.unit(100, "kg"),
  1839. name: "Front",
  1840. image: {
  1841. source: "./media/characters/adake/front-1.svg"
  1842. }
  1843. },
  1844. frontAlt: {
  1845. height: math.unit(7, "feet"),
  1846. weight: math.unit(100, "kg"),
  1847. name: "Front (Alt)",
  1848. image: {
  1849. source: "./media/characters/adake/front-2.svg",
  1850. extra: 1,
  1851. bottom: 0.01
  1852. }
  1853. },
  1854. back: {
  1855. height: math.unit(7, "feet"),
  1856. weight: math.unit(100, "kg"),
  1857. name: "Back",
  1858. image: {
  1859. source: "./media/characters/adake/back.svg",
  1860. }
  1861. },
  1862. kneel: {
  1863. height: math.unit(5.385, "feet"),
  1864. weight: math.unit(100, "kg"),
  1865. name: "Kneeling",
  1866. image: {
  1867. source: "./media/characters/adake/kneel.svg",
  1868. bottom: 0.052
  1869. }
  1870. },
  1871. },
  1872. [
  1873. {
  1874. name: "Normal",
  1875. height: math.unit(7, "feet"),
  1876. },
  1877. {
  1878. name: "Macro",
  1879. height: math.unit(78, "feet"),
  1880. default: true
  1881. },
  1882. {
  1883. name: "Macro+",
  1884. height: math.unit(300, "meters")
  1885. },
  1886. {
  1887. name: "Macro++",
  1888. height: math.unit(2400, "meters")
  1889. },
  1890. {
  1891. name: "Megamacro",
  1892. height: math.unit(5167, "meters")
  1893. },
  1894. {
  1895. name: "Gigamacro",
  1896. height: math.unit(41769, "miles")
  1897. },
  1898. ]
  1899. ))
  1900. characterMakers.push(() => makeCharacter(
  1901. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1902. {
  1903. front: {
  1904. height: math.unit(1.65, "meters"),
  1905. weight: math.unit(50, "kg"),
  1906. name: "Front",
  1907. image: {
  1908. source: "./media/characters/elijah/front.svg",
  1909. extra: 858 / 830,
  1910. bottom: 95.5 / 953.8559
  1911. }
  1912. },
  1913. back: {
  1914. height: math.unit(1.65, "meters"),
  1915. weight: math.unit(50, "kg"),
  1916. name: "Back",
  1917. image: {
  1918. source: "./media/characters/elijah/back.svg",
  1919. extra: 895 / 850,
  1920. bottom: 5.3 / 897.956
  1921. }
  1922. },
  1923. frontNsfw: {
  1924. height: math.unit(1.65, "meters"),
  1925. weight: math.unit(50, "kg"),
  1926. name: "Front (NSFW)",
  1927. image: {
  1928. source: "./media/characters/elijah/front-nsfw.svg",
  1929. extra: 858 / 830,
  1930. bottom: 95.5 / 953.8559
  1931. }
  1932. },
  1933. backNsfw: {
  1934. height: math.unit(1.65, "meters"),
  1935. weight: math.unit(50, "kg"),
  1936. name: "Back (NSFW)",
  1937. image: {
  1938. source: "./media/characters/elijah/back-nsfw.svg",
  1939. extra: 895 / 850,
  1940. bottom: 5.3 / 897.956
  1941. }
  1942. },
  1943. dick: {
  1944. height: math.unit(1, "feet"),
  1945. name: "Dick",
  1946. image: {
  1947. source: "./media/characters/elijah/dick.svg"
  1948. }
  1949. },
  1950. beakOpen: {
  1951. height: math.unit(1.25, "feet"),
  1952. name: "Beak (Open)",
  1953. image: {
  1954. source: "./media/characters/elijah/beak-open.svg"
  1955. }
  1956. },
  1957. beakShut: {
  1958. height: math.unit(1.25, "feet"),
  1959. name: "Beak (Shut)",
  1960. image: {
  1961. source: "./media/characters/elijah/beak-shut.svg"
  1962. }
  1963. },
  1964. footFlexing: {
  1965. height: math.unit(1.61, "feet"),
  1966. name: "Foot (Flexing)",
  1967. image: {
  1968. source: "./media/characters/elijah/foot-flexing.svg"
  1969. }
  1970. },
  1971. footStepping: {
  1972. height: math.unit(1.44, "feet"),
  1973. name: "Foot (Stepping)",
  1974. image: {
  1975. source: "./media/characters/elijah/foot-stepping.svg"
  1976. }
  1977. },
  1978. plantigradeLeg: {
  1979. height: math.unit(2.34, "feet"),
  1980. name: "Plantigrade Leg",
  1981. image: {
  1982. source: "./media/characters/elijah/plantigrade-leg.svg"
  1983. }
  1984. },
  1985. plantigradeFootLeft: {
  1986. height: math.unit(0.9, "feet"),
  1987. name: "Plantigrade Foot (Left)",
  1988. image: {
  1989. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1990. }
  1991. },
  1992. plantigradeFootRight: {
  1993. height: math.unit(0.9, "feet"),
  1994. name: "Plantigrade Foot (Right)",
  1995. image: {
  1996. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1997. }
  1998. },
  1999. },
  2000. [
  2001. {
  2002. name: "Normal",
  2003. height: math.unit(1.65, "meters")
  2004. },
  2005. {
  2006. name: "Macro",
  2007. height: math.unit(55, "meters"),
  2008. default: true
  2009. },
  2010. {
  2011. name: "Macro+",
  2012. height: math.unit(105, "meters")
  2013. },
  2014. ]
  2015. ))
  2016. characterMakers.push(() => makeCharacter(
  2017. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2018. {
  2019. front: {
  2020. height: math.unit(11, "feet"),
  2021. weight: math.unit(80, "kg"),
  2022. name: "Front",
  2023. image: {
  2024. source: "./media/characters/rai/front.svg",
  2025. extra: 1,
  2026. bottom: 0.03
  2027. }
  2028. },
  2029. side: {
  2030. height: math.unit(11, "feet"),
  2031. weight: math.unit(80, "kg"),
  2032. name: "Side",
  2033. image: {
  2034. source: "./media/characters/rai/side.svg"
  2035. }
  2036. },
  2037. back: {
  2038. height: math.unit(11, "feet"),
  2039. weight: math.unit(80, "lb"),
  2040. name: "Back",
  2041. image: {
  2042. source: "./media/characters/rai/back.svg",
  2043. extra: 1,
  2044. bottom: 0.01
  2045. }
  2046. },
  2047. feral: {
  2048. height: math.unit(11, "feet"),
  2049. weight: math.unit(800, "lb"),
  2050. name: "Feral",
  2051. image: {
  2052. source: "./media/characters/rai/feral.svg",
  2053. extra: 1050 / 659,
  2054. bottom: 0.07
  2055. }
  2056. },
  2057. dragon: {
  2058. height: math.unit(23, "feet"),
  2059. weight: math.unit(50000, "lb"),
  2060. name: "Dragon",
  2061. image: {
  2062. source: "./media/characters/rai/dragon.svg",
  2063. extra: 2498 / 2030,
  2064. bottom: 85.2 / 2584
  2065. }
  2066. },
  2067. maw: {
  2068. height: math.unit(6 / 3.81416, "feet"),
  2069. name: "Maw",
  2070. image: {
  2071. source: "./media/characters/rai/maw.svg"
  2072. }
  2073. },
  2074. },
  2075. [
  2076. {
  2077. name: "Normal",
  2078. height: math.unit(11, "feet")
  2079. },
  2080. {
  2081. name: "Macro",
  2082. height: math.unit(302, "feet"),
  2083. default: true
  2084. },
  2085. ]
  2086. ))
  2087. characterMakers.push(() => makeCharacter(
  2088. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2089. {
  2090. frontDressed: {
  2091. height: math.unit(216, "feet"),
  2092. weight: math.unit(7000000, "lb"),
  2093. name: "Front (Dressed)",
  2094. image: {
  2095. source: "./media/characters/jazzy/front-dressed.svg",
  2096. extra: 2738 / 2651,
  2097. bottom: 41.8 / 2786
  2098. }
  2099. },
  2100. backDressed: {
  2101. height: math.unit(216, "feet"),
  2102. weight: math.unit(7000000, "lb"),
  2103. name: "Back (Dressed)",
  2104. image: {
  2105. source: "./media/characters/jazzy/back-dressed.svg",
  2106. extra: 2775 / 2673,
  2107. bottom: 36.8 / 2817
  2108. }
  2109. },
  2110. front: {
  2111. height: math.unit(216, "feet"),
  2112. weight: math.unit(7000000, "lb"),
  2113. name: "Front",
  2114. image: {
  2115. source: "./media/characters/jazzy/front.svg",
  2116. extra: 2738 / 2651,
  2117. bottom: 41.8 / 2786
  2118. }
  2119. },
  2120. back: {
  2121. height: math.unit(216, "feet"),
  2122. weight: math.unit(7000000, "lb"),
  2123. name: "Back",
  2124. image: {
  2125. source: "./media/characters/jazzy/back.svg",
  2126. extra: 2775 / 2673,
  2127. bottom: 36.8 / 2817
  2128. }
  2129. },
  2130. maw: {
  2131. height: math.unit(20, "feet"),
  2132. name: "Maw",
  2133. image: {
  2134. source: "./media/characters/jazzy/maw.svg"
  2135. }
  2136. },
  2137. paws: {
  2138. height: math.unit(27.5, "feet"),
  2139. name: "Paws",
  2140. image: {
  2141. source: "./media/characters/jazzy/paws.svg"
  2142. }
  2143. },
  2144. eye: {
  2145. height: math.unit(4.4, "feet"),
  2146. name: "Eye",
  2147. image: {
  2148. source: "./media/characters/jazzy/eye.svg"
  2149. }
  2150. },
  2151. droneOffense: {
  2152. height: math.unit(9.5, "inches"),
  2153. name: "Drone (Offense)",
  2154. image: {
  2155. source: "./media/characters/jazzy/drone-offense.svg"
  2156. }
  2157. },
  2158. droneRecon: {
  2159. height: math.unit(9.5, "inches"),
  2160. name: "Drone (Recon)",
  2161. image: {
  2162. source: "./media/characters/jazzy/drone-recon.svg"
  2163. }
  2164. },
  2165. droneDefense: {
  2166. height: math.unit(9.5, "inches"),
  2167. name: "Drone (Defense)",
  2168. image: {
  2169. source: "./media/characters/jazzy/drone-defense.svg"
  2170. }
  2171. },
  2172. },
  2173. [
  2174. {
  2175. name: "Macro",
  2176. height: math.unit(216, "feet"),
  2177. default: true
  2178. },
  2179. ]
  2180. ))
  2181. characterMakers.push(() => makeCharacter(
  2182. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2183. {
  2184. front: {
  2185. height: math.unit(7, "feet"),
  2186. weight: math.unit(80, "kg"),
  2187. name: "Front",
  2188. image: {
  2189. source: "./media/characters/flamm/front.svg",
  2190. extra: 1794 / 1677,
  2191. bottom: 31.7 / 1828.5
  2192. }
  2193. },
  2194. },
  2195. [
  2196. {
  2197. name: "Normal",
  2198. height: math.unit(9.5, "feet")
  2199. },
  2200. {
  2201. name: "Macro",
  2202. height: math.unit(200, "feet"),
  2203. default: true
  2204. },
  2205. ]
  2206. ))
  2207. characterMakers.push(() => makeCharacter(
  2208. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2209. {
  2210. front: {
  2211. height: math.unit(7, "feet"),
  2212. weight: math.unit(80, "kg"),
  2213. name: "Front",
  2214. image: {
  2215. source: "./media/characters/zephiro/front.svg",
  2216. extra: 2309 / 2162,
  2217. bottom: 0.069
  2218. }
  2219. },
  2220. side: {
  2221. height: math.unit(7, "feet"),
  2222. weight: math.unit(80, "kg"),
  2223. name: "Side",
  2224. image: {
  2225. source: "./media/characters/zephiro/side.svg",
  2226. extra: 2403 / 2279,
  2227. bottom: 0.015
  2228. }
  2229. },
  2230. back: {
  2231. height: math.unit(7, "feet"),
  2232. weight: math.unit(80, "kg"),
  2233. name: "Back",
  2234. image: {
  2235. source: "./media/characters/zephiro/back.svg",
  2236. extra: 2373 / 2244,
  2237. bottom: 0.013
  2238. }
  2239. },
  2240. },
  2241. [
  2242. {
  2243. name: "Micro",
  2244. height: math.unit(3, "inches")
  2245. },
  2246. {
  2247. name: "Normal",
  2248. height: math.unit(5 + 3 / 12, "feet"),
  2249. default: true
  2250. },
  2251. {
  2252. name: "Macro",
  2253. height: math.unit(118, "feet")
  2254. },
  2255. ]
  2256. ))
  2257. characterMakers.push(() => makeCharacter(
  2258. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2259. {
  2260. front: {
  2261. height: math.unit(5, "feet"),
  2262. weight: math.unit(90, "kg"),
  2263. name: "Front",
  2264. image: {
  2265. source: "./media/characters/fory/front.svg",
  2266. extra: 2862 / 2674,
  2267. bottom: 180 / 3043.8
  2268. }
  2269. },
  2270. back: {
  2271. height: math.unit(5, "feet"),
  2272. weight: math.unit(90, "kg"),
  2273. name: "Back",
  2274. image: {
  2275. source: "./media/characters/fory/back.svg",
  2276. extra: 2962 / 2791,
  2277. bottom: 106 / 3071.8
  2278. }
  2279. },
  2280. foot: {
  2281. height: math.unit(2.14, "feet"),
  2282. name: "Foot",
  2283. image: {
  2284. source: "./media/characters/fory/foot.svg"
  2285. }
  2286. },
  2287. },
  2288. [
  2289. {
  2290. name: "Normal",
  2291. height: math.unit(5, "feet")
  2292. },
  2293. {
  2294. name: "Macro",
  2295. height: math.unit(50, "feet"),
  2296. default: true
  2297. },
  2298. {
  2299. name: "Megamacro",
  2300. height: math.unit(10, "miles")
  2301. },
  2302. {
  2303. name: "Gigamacro",
  2304. height: math.unit(5, "earths")
  2305. },
  2306. ]
  2307. ))
  2308. characterMakers.push(() => makeCharacter(
  2309. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2310. {
  2311. front: {
  2312. height: math.unit(7, "feet"),
  2313. weight: math.unit(90, "kg"),
  2314. name: "Front",
  2315. image: {
  2316. source: "./media/characters/kurrikage/front.svg",
  2317. extra: 1,
  2318. bottom: 0.035
  2319. }
  2320. },
  2321. back: {
  2322. height: math.unit(7, "feet"),
  2323. weight: math.unit(90, "lb"),
  2324. name: "Back",
  2325. image: {
  2326. source: "./media/characters/kurrikage/back.svg"
  2327. }
  2328. },
  2329. paw: {
  2330. height: math.unit(1.5, "feet"),
  2331. name: "Paw",
  2332. image: {
  2333. source: "./media/characters/kurrikage/paw.svg"
  2334. }
  2335. },
  2336. staff: {
  2337. height: math.unit(6.7, "feet"),
  2338. name: "Staff",
  2339. image: {
  2340. source: "./media/characters/kurrikage/staff.svg"
  2341. }
  2342. },
  2343. peek: {
  2344. height: math.unit(1.05, "feet"),
  2345. name: "Peeking",
  2346. image: {
  2347. source: "./media/characters/kurrikage/peek.svg",
  2348. bottom: 0.08
  2349. }
  2350. },
  2351. },
  2352. [
  2353. {
  2354. name: "Normal",
  2355. height: math.unit(12, "feet"),
  2356. default: true
  2357. },
  2358. {
  2359. name: "Big",
  2360. height: math.unit(20, "feet")
  2361. },
  2362. {
  2363. name: "Macro",
  2364. height: math.unit(500, "feet")
  2365. },
  2366. {
  2367. name: "Megamacro",
  2368. height: math.unit(20, "miles")
  2369. },
  2370. ]
  2371. ))
  2372. characterMakers.push(() => makeCharacter(
  2373. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2374. {
  2375. front: {
  2376. height: math.unit(6, "feet"),
  2377. weight: math.unit(75, "kg"),
  2378. name: "Front",
  2379. image: {
  2380. source: "./media/characters/shingo/front.svg",
  2381. extra: 3511 / 3338,
  2382. bottom: 0.005
  2383. }
  2384. },
  2385. paw: {
  2386. height: math.unit(1, "feet"),
  2387. name: "Paw",
  2388. image: {
  2389. source: "./media/characters/shingo/paw.svg"
  2390. }
  2391. },
  2392. },
  2393. [
  2394. {
  2395. name: "Micro",
  2396. height: math.unit(4, "inches")
  2397. },
  2398. {
  2399. name: "Normal",
  2400. height: math.unit(6, "feet"),
  2401. default: true
  2402. },
  2403. {
  2404. name: "Macro",
  2405. height: math.unit(108, "feet")
  2406. },
  2407. {
  2408. name: "Macro+",
  2409. height: math.unit(1500, "feet")
  2410. },
  2411. ]
  2412. ))
  2413. characterMakers.push(() => makeCharacter(
  2414. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2415. {
  2416. side: {
  2417. height: math.unit(6, "feet"),
  2418. weight: math.unit(75, "kg"),
  2419. name: "Side",
  2420. image: {
  2421. source: "./media/characters/aigey/side.svg"
  2422. }
  2423. },
  2424. },
  2425. [
  2426. {
  2427. name: "Macro",
  2428. height: math.unit(200, "feet"),
  2429. default: true
  2430. },
  2431. {
  2432. name: "Megamacro",
  2433. height: math.unit(100, "miles")
  2434. },
  2435. ]
  2436. )
  2437. )
  2438. characterMakers.push(() => makeCharacter(
  2439. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2440. {
  2441. front: {
  2442. height: math.unit(5 + 5 / 12, "feet"),
  2443. weight: math.unit(75, "kg"),
  2444. name: "Front",
  2445. image: {
  2446. source: "./media/characters/natasha/front.svg",
  2447. extra: 859 / 824,
  2448. bottom: 23 / 879.6
  2449. }
  2450. },
  2451. frontNsfw: {
  2452. height: math.unit(5 + 5 / 12, "feet"),
  2453. weight: math.unit(75, "kg"),
  2454. name: "Front (NSFW)",
  2455. image: {
  2456. source: "./media/characters/natasha/front-nsfw.svg",
  2457. extra: 859 / 824,
  2458. bottom: 23 / 879.6
  2459. }
  2460. },
  2461. frontErect: {
  2462. height: math.unit(5 + 5 / 12, "feet"),
  2463. weight: math.unit(75, "kg"),
  2464. name: "Front (Erect)",
  2465. image: {
  2466. source: "./media/characters/natasha/front-erect.svg",
  2467. extra: 859 / 824,
  2468. bottom: 23 / 879.6
  2469. }
  2470. },
  2471. back: {
  2472. height: math.unit(5 + 5 / 12, "feet"),
  2473. weight: math.unit(75, "kg"),
  2474. name: "Back",
  2475. image: {
  2476. source: "./media/characters/natasha/back.svg",
  2477. extra: 887.9 / 852.6,
  2478. bottom: 9.7 / 896.4
  2479. }
  2480. },
  2481. backAlt: {
  2482. height: math.unit(5 + 5 / 12, "feet"),
  2483. weight: math.unit(75, "kg"),
  2484. name: "Back (Alt)",
  2485. image: {
  2486. source: "./media/characters/natasha/back-alt.svg",
  2487. extra: 1236.7 / 1192,
  2488. bottom: 22.3 / 1258.2
  2489. }
  2490. },
  2491. dick: {
  2492. height: math.unit(1.772, "feet"),
  2493. name: "Dick",
  2494. image: {
  2495. source: "./media/characters/natasha/dick.svg"
  2496. }
  2497. },
  2498. paw: {
  2499. height: math.unit(0.250, "meters"),
  2500. name: "Paw",
  2501. image: {
  2502. source: "./media/characters/natasha/paw.svg"
  2503. }
  2504. },
  2505. },
  2506. [
  2507. {
  2508. name: "Normal",
  2509. height: math.unit(5 + 5 / 12, "feet")
  2510. },
  2511. {
  2512. name: "Large",
  2513. height: math.unit(12, "feet")
  2514. },
  2515. {
  2516. name: "Macro",
  2517. height: math.unit(100, "feet"),
  2518. default: true
  2519. },
  2520. {
  2521. name: "Macro+",
  2522. height: math.unit(260, "feet")
  2523. },
  2524. {
  2525. name: "Macro++",
  2526. height: math.unit(1, "mile")
  2527. },
  2528. ]
  2529. ))
  2530. characterMakers.push(() => makeCharacter(
  2531. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2532. {
  2533. front: {
  2534. height: math.unit(6, "feet"),
  2535. weight: math.unit(75, "kg"),
  2536. name: "Front",
  2537. image: {
  2538. source: "./media/characters/malik/front.svg"
  2539. }
  2540. },
  2541. side: {
  2542. height: math.unit(6, "feet"),
  2543. weight: math.unit(75, "kg"),
  2544. name: "Side",
  2545. image: {
  2546. source: "./media/characters/malik/side.svg",
  2547. extra: 1.1539
  2548. }
  2549. },
  2550. back: {
  2551. height: math.unit(6, "feet"),
  2552. weight: math.unit(75, "kg"),
  2553. name: "Back",
  2554. image: {
  2555. source: "./media/characters/malik/back.svg"
  2556. }
  2557. },
  2558. },
  2559. [
  2560. {
  2561. name: "Macro",
  2562. height: math.unit(156, "feet"),
  2563. default: true
  2564. },
  2565. {
  2566. name: "Macro+",
  2567. height: math.unit(1188, "feet")
  2568. },
  2569. ]
  2570. ))
  2571. characterMakers.push(() => makeCharacter(
  2572. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2573. {
  2574. front: {
  2575. height: math.unit(6, "feet"),
  2576. weight: math.unit(75, "kg"),
  2577. name: "Front",
  2578. image: {
  2579. source: "./media/characters/sefer/front.svg",
  2580. extra: 848 / 659,
  2581. bottom: 28.3 / 876.442
  2582. }
  2583. },
  2584. back: {
  2585. height: math.unit(6, "feet"),
  2586. weight: math.unit(75, "kg"),
  2587. name: "Back",
  2588. image: {
  2589. source: "./media/characters/sefer/back.svg",
  2590. extra: 864 / 695,
  2591. bottom: 10 / 871
  2592. }
  2593. },
  2594. frontDressed: {
  2595. height: math.unit(6, "feet"),
  2596. weight: math.unit(75, "kg"),
  2597. name: "Front (Dressed)",
  2598. image: {
  2599. source: "./media/characters/sefer/front-dressed.svg",
  2600. extra: 839 / 653,
  2601. bottom: 37.6 / 878
  2602. }
  2603. },
  2604. },
  2605. [
  2606. {
  2607. name: "Normal",
  2608. height: math.unit(6, "feet"),
  2609. default: true
  2610. },
  2611. ]
  2612. ))
  2613. characterMakers.push(() => makeCharacter(
  2614. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2615. {
  2616. body: {
  2617. height: math.unit(2.2428, "meter"),
  2618. weight: math.unit(124.738, "kg"),
  2619. name: "Body",
  2620. image: {
  2621. extra: 1225 / 1050,
  2622. source: "./media/characters/north/front.svg"
  2623. }
  2624. }
  2625. },
  2626. [
  2627. {
  2628. name: "Micro",
  2629. height: math.unit(4, "inches")
  2630. },
  2631. {
  2632. name: "Macro",
  2633. height: math.unit(63, "meters")
  2634. },
  2635. {
  2636. name: "Megamacro",
  2637. height: math.unit(101, "miles"),
  2638. default: true
  2639. }
  2640. ]
  2641. ))
  2642. characterMakers.push(() => makeCharacter(
  2643. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2644. {
  2645. angled: {
  2646. height: math.unit(4, "meter"),
  2647. weight: math.unit(150, "kg"),
  2648. name: "Angled",
  2649. image: {
  2650. source: "./media/characters/talan/angled-sfw.svg",
  2651. bottom: 29 / 3734
  2652. }
  2653. },
  2654. angledNsfw: {
  2655. height: math.unit(4, "meter"),
  2656. weight: math.unit(150, "kg"),
  2657. name: "Angled (NSFW)",
  2658. image: {
  2659. source: "./media/characters/talan/angled-nsfw.svg",
  2660. bottom: 29 / 3734
  2661. }
  2662. },
  2663. frontNsfw: {
  2664. height: math.unit(4, "meter"),
  2665. weight: math.unit(150, "kg"),
  2666. name: "Front (NSFW)",
  2667. image: {
  2668. source: "./media/characters/talan/front-nsfw.svg",
  2669. bottom: 29 / 3734
  2670. }
  2671. },
  2672. sideNsfw: {
  2673. height: math.unit(4, "meter"),
  2674. weight: math.unit(150, "kg"),
  2675. name: "Side (NSFW)",
  2676. image: {
  2677. source: "./media/characters/talan/side-nsfw.svg",
  2678. bottom: 29 / 3734
  2679. }
  2680. },
  2681. back: {
  2682. height: math.unit(4, "meter"),
  2683. weight: math.unit(150, "kg"),
  2684. name: "Back",
  2685. image: {
  2686. source: "./media/characters/talan/back.svg"
  2687. }
  2688. },
  2689. dickBottom: {
  2690. height: math.unit(0.621, "meter"),
  2691. name: "Dick (Bottom)",
  2692. image: {
  2693. source: "./media/characters/talan/dick-bottom.svg"
  2694. }
  2695. },
  2696. dickTop: {
  2697. height: math.unit(0.621, "meter"),
  2698. name: "Dick (Top)",
  2699. image: {
  2700. source: "./media/characters/talan/dick-top.svg"
  2701. }
  2702. },
  2703. dickSide: {
  2704. height: math.unit(0.305, "meter"),
  2705. name: "Dick (Side)",
  2706. image: {
  2707. source: "./media/characters/talan/dick-side.svg"
  2708. }
  2709. },
  2710. dickFront: {
  2711. height: math.unit(0.305, "meter"),
  2712. name: "Dick (Front)",
  2713. image: {
  2714. source: "./media/characters/talan/dick-front.svg"
  2715. }
  2716. },
  2717. },
  2718. [
  2719. {
  2720. name: "Normal",
  2721. height: math.unit(4, "meters")
  2722. },
  2723. {
  2724. name: "Macro",
  2725. height: math.unit(100, "meters")
  2726. },
  2727. {
  2728. name: "Megamacro",
  2729. height: math.unit(2, "miles"),
  2730. default: true
  2731. },
  2732. {
  2733. name: "Gigamacro",
  2734. height: math.unit(5000, "miles")
  2735. },
  2736. {
  2737. name: "Teramacro",
  2738. height: math.unit(100, "parsecs")
  2739. }
  2740. ]
  2741. ))
  2742. characterMakers.push(() => makeCharacter(
  2743. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2744. {
  2745. front: {
  2746. height: math.unit(2, "meter"),
  2747. weight: math.unit(90, "kg"),
  2748. name: "Front",
  2749. image: {
  2750. source: "./media/characters/gael'rathus/front.svg"
  2751. }
  2752. },
  2753. frontAlt: {
  2754. height: math.unit(2, "meter"),
  2755. weight: math.unit(90, "kg"),
  2756. name: "Front (alt)",
  2757. image: {
  2758. source: "./media/characters/gael'rathus/front-alt.svg"
  2759. }
  2760. },
  2761. frontAlt2: {
  2762. height: math.unit(2, "meter"),
  2763. weight: math.unit(90, "kg"),
  2764. name: "Front (alt 2)",
  2765. image: {
  2766. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2767. }
  2768. }
  2769. },
  2770. [
  2771. {
  2772. name: "Normal",
  2773. height: math.unit(9, "feet"),
  2774. default: true
  2775. },
  2776. {
  2777. name: "Large",
  2778. height: math.unit(25, "feet")
  2779. },
  2780. {
  2781. name: "Macro",
  2782. height: math.unit(0.25, "miles")
  2783. },
  2784. {
  2785. name: "Megamacro",
  2786. height: math.unit(10, "miles")
  2787. }
  2788. ]
  2789. ))
  2790. characterMakers.push(() => makeCharacter(
  2791. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2792. {
  2793. side: {
  2794. height: math.unit(2, "meter"),
  2795. weight: math.unit(140, "kg"),
  2796. name: "Side",
  2797. image: {
  2798. source: "./media/characters/sosha/side.svg",
  2799. bottom: 0.042
  2800. }
  2801. },
  2802. },
  2803. [
  2804. {
  2805. name: "Normal",
  2806. height: math.unit(12, "feet"),
  2807. default: true
  2808. }
  2809. ]
  2810. ))
  2811. characterMakers.push(() => makeCharacter(
  2812. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2813. {
  2814. side: {
  2815. height: math.unit(5 + 5 / 12, "feet"),
  2816. weight: math.unit(170, "kg"),
  2817. name: "Side",
  2818. image: {
  2819. source: "./media/characters/runnola/side.svg",
  2820. extra: 741 / 448,
  2821. bottom: 0.05
  2822. }
  2823. },
  2824. },
  2825. [
  2826. {
  2827. name: "Small",
  2828. height: math.unit(3, "feet")
  2829. },
  2830. {
  2831. name: "Normal",
  2832. height: math.unit(5 + 5 / 12, "feet"),
  2833. default: true
  2834. },
  2835. {
  2836. name: "Big",
  2837. height: math.unit(10, "feet")
  2838. },
  2839. ]
  2840. ))
  2841. characterMakers.push(() => makeCharacter(
  2842. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2843. {
  2844. front: {
  2845. height: math.unit(2, "meter"),
  2846. weight: math.unit(50, "kg"),
  2847. name: "Front",
  2848. image: {
  2849. source: "./media/characters/kurribird/front.svg",
  2850. bottom: 0.015
  2851. }
  2852. },
  2853. frontAlt: {
  2854. height: math.unit(1.5, "meter"),
  2855. weight: math.unit(50, "kg"),
  2856. name: "Front (Alt)",
  2857. image: {
  2858. source: "./media/characters/kurribird/front-alt.svg",
  2859. extra: 1.45
  2860. }
  2861. },
  2862. },
  2863. [
  2864. {
  2865. name: "Normal",
  2866. height: math.unit(7, "feet")
  2867. },
  2868. {
  2869. name: "Big",
  2870. height: math.unit(12, "feet"),
  2871. default: true
  2872. },
  2873. {
  2874. name: "Macro",
  2875. height: math.unit(1500, "feet")
  2876. },
  2877. {
  2878. name: "Megamacro",
  2879. height: math.unit(2, "miles")
  2880. }
  2881. ]
  2882. ))
  2883. characterMakers.push(() => makeCharacter(
  2884. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2885. {
  2886. front: {
  2887. height: math.unit(2, "meter"),
  2888. weight: math.unit(80, "kg"),
  2889. name: "Front",
  2890. image: {
  2891. source: "./media/characters/elbial/front.svg",
  2892. extra: 1643 / 1556,
  2893. bottom: 60.2 / 1696
  2894. }
  2895. },
  2896. side: {
  2897. height: math.unit(2, "meter"),
  2898. weight: math.unit(80, "kg"),
  2899. name: "Side",
  2900. image: {
  2901. source: "./media/characters/elbial/side.svg",
  2902. extra: 1630 / 1565,
  2903. bottom: 71.5 / 1697
  2904. }
  2905. },
  2906. back: {
  2907. height: math.unit(2, "meter"),
  2908. weight: math.unit(80, "kg"),
  2909. name: "Back",
  2910. image: {
  2911. source: "./media/characters/elbial/back.svg",
  2912. extra: 1668 / 1595,
  2913. bottom: 5.6 / 1672
  2914. }
  2915. },
  2916. frontDressed: {
  2917. height: math.unit(2, "meter"),
  2918. weight: math.unit(80, "kg"),
  2919. name: "Front (Dressed)",
  2920. image: {
  2921. source: "./media/characters/elbial/front-dressed.svg",
  2922. extra: 1653 / 1584,
  2923. bottom: 57 / 1708
  2924. }
  2925. },
  2926. genitals: {
  2927. height: math.unit(2 / 3.367, "meter"),
  2928. name: "Genitals",
  2929. image: {
  2930. source: "./media/characters/elbial/genitals.svg"
  2931. }
  2932. },
  2933. },
  2934. [
  2935. {
  2936. name: "Large",
  2937. height: math.unit(100, "feet")
  2938. },
  2939. {
  2940. name: "Macro",
  2941. height: math.unit(500, "feet"),
  2942. default: true
  2943. },
  2944. {
  2945. name: "Megamacro",
  2946. height: math.unit(10, "miles")
  2947. },
  2948. {
  2949. name: "Gigamacro",
  2950. height: math.unit(25000, "miles")
  2951. },
  2952. {
  2953. name: "Full-Size",
  2954. height: math.unit(8000000, "gigaparsecs")
  2955. }
  2956. ]
  2957. ))
  2958. characterMakers.push(() => makeCharacter(
  2959. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2960. {
  2961. front: {
  2962. height: math.unit(2, "meter"),
  2963. weight: math.unit(60, "kg"),
  2964. name: "Front",
  2965. image: {
  2966. source: "./media/characters/noah/front.svg"
  2967. }
  2968. },
  2969. talons: {
  2970. height: math.unit(0.315, "meter"),
  2971. name: "Talons",
  2972. image: {
  2973. source: "./media/characters/noah/talons.svg"
  2974. }
  2975. }
  2976. },
  2977. [
  2978. {
  2979. name: "Large",
  2980. height: math.unit(50, "feet")
  2981. },
  2982. {
  2983. name: "Macro",
  2984. height: math.unit(750, "feet"),
  2985. default: true
  2986. },
  2987. {
  2988. name: "Megamacro",
  2989. height: math.unit(50, "miles")
  2990. },
  2991. {
  2992. name: "Gigamacro",
  2993. height: math.unit(100000, "miles")
  2994. },
  2995. {
  2996. name: "Full-Size",
  2997. height: math.unit(3000000000, "miles")
  2998. }
  2999. ]
  3000. ))
  3001. characterMakers.push(() => makeCharacter(
  3002. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3003. {
  3004. front: {
  3005. height: math.unit(2, "meter"),
  3006. weight: math.unit(80, "kg"),
  3007. name: "Front",
  3008. image: {
  3009. source: "./media/characters/natalya/front.svg"
  3010. }
  3011. },
  3012. back: {
  3013. height: math.unit(2, "meter"),
  3014. weight: math.unit(80, "kg"),
  3015. name: "Back",
  3016. image: {
  3017. source: "./media/characters/natalya/back.svg"
  3018. }
  3019. }
  3020. },
  3021. [
  3022. {
  3023. name: "Normal",
  3024. height: math.unit(150, "feet"),
  3025. default: true
  3026. },
  3027. {
  3028. name: "Megamacro",
  3029. height: math.unit(5, "miles")
  3030. },
  3031. {
  3032. name: "Full-Size",
  3033. height: math.unit(600, "kiloparsecs")
  3034. }
  3035. ]
  3036. ))
  3037. characterMakers.push(() => makeCharacter(
  3038. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3039. {
  3040. front: {
  3041. height: math.unit(2, "meter"),
  3042. weight: math.unit(50, "kg"),
  3043. name: "Front",
  3044. image: {
  3045. source: "./media/characters/erestrebah/front.svg",
  3046. extra: 208 / 193,
  3047. bottom: 0.055
  3048. }
  3049. },
  3050. back: {
  3051. height: math.unit(2, "meter"),
  3052. weight: math.unit(50, "kg"),
  3053. name: "Back",
  3054. image: {
  3055. source: "./media/characters/erestrebah/back.svg",
  3056. extra: 1.3
  3057. }
  3058. }
  3059. },
  3060. [
  3061. {
  3062. name: "Normal",
  3063. height: math.unit(10, "feet")
  3064. },
  3065. {
  3066. name: "Large",
  3067. height: math.unit(50, "feet"),
  3068. default: true
  3069. },
  3070. {
  3071. name: "Macro",
  3072. height: math.unit(300, "feet")
  3073. },
  3074. {
  3075. name: "Macro+",
  3076. height: math.unit(750, "feet")
  3077. },
  3078. {
  3079. name: "Megamacro",
  3080. height: math.unit(3, "miles")
  3081. }
  3082. ]
  3083. ))
  3084. characterMakers.push(() => makeCharacter(
  3085. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3086. {
  3087. front: {
  3088. height: math.unit(2, "meter"),
  3089. weight: math.unit(80, "kg"),
  3090. name: "Front",
  3091. image: {
  3092. source: "./media/characters/jennifer/front.svg",
  3093. bottom: 0.11,
  3094. extra: 1.16
  3095. }
  3096. },
  3097. frontAlt: {
  3098. height: math.unit(2, "meter"),
  3099. weight: math.unit(80, "kg"),
  3100. name: "Front (Alt)",
  3101. image: {
  3102. source: "./media/characters/jennifer/front-alt.svg"
  3103. }
  3104. }
  3105. },
  3106. [
  3107. {
  3108. name: "Canon Height",
  3109. height: math.unit(120, "feet"),
  3110. default: true
  3111. },
  3112. {
  3113. name: "Macro+",
  3114. height: math.unit(300, "feet")
  3115. },
  3116. {
  3117. name: "Megamacro",
  3118. height: math.unit(20000, "feet")
  3119. }
  3120. ]
  3121. ))
  3122. characterMakers.push(() => makeCharacter(
  3123. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3124. {
  3125. front: {
  3126. height: math.unit(2, "meter"),
  3127. weight: math.unit(50, "kg"),
  3128. name: "Front",
  3129. image: {
  3130. source: "./media/characters/kalista/front.svg",
  3131. extra: 1947 / 1700,
  3132. bottom: 76.6 / 1412.98
  3133. }
  3134. },
  3135. back: {
  3136. height: math.unit(2, "meter"),
  3137. weight: math.unit(50, "kg"),
  3138. name: "Back",
  3139. image: {
  3140. source: "./media/characters/kalista/back.svg",
  3141. extra: 1366 / 1156,
  3142. bottom: 33.9 / 1362.78
  3143. }
  3144. }
  3145. },
  3146. [
  3147. {
  3148. name: "Uncomfortably Small",
  3149. height: math.unit(10, "feet")
  3150. },
  3151. {
  3152. name: "Small",
  3153. height: math.unit(30, "feet")
  3154. },
  3155. {
  3156. name: "Macro",
  3157. height: math.unit(100, "feet"),
  3158. default: true
  3159. },
  3160. {
  3161. name: "Macro+",
  3162. height: math.unit(2000, "feet")
  3163. },
  3164. {
  3165. name: "True Form",
  3166. height: math.unit(8924, "miles")
  3167. }
  3168. ]
  3169. ))
  3170. characterMakers.push(() => makeCharacter(
  3171. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3172. {
  3173. front: {
  3174. height: math.unit(2, "meter"),
  3175. weight: math.unit(120, "kg"),
  3176. name: "Front",
  3177. image: {
  3178. source: "./media/characters/ggv/front.svg"
  3179. }
  3180. },
  3181. side: {
  3182. height: math.unit(2, "meter"),
  3183. weight: math.unit(120, "kg"),
  3184. name: "Side",
  3185. image: {
  3186. source: "./media/characters/ggv/side.svg"
  3187. }
  3188. }
  3189. },
  3190. [
  3191. {
  3192. name: "Extremely Puny",
  3193. height: math.unit(9 + 5 / 12, "feet")
  3194. },
  3195. {
  3196. name: "Horribly Small",
  3197. height: math.unit(47.7, "miles"),
  3198. default: true
  3199. },
  3200. {
  3201. name: "Reasonably Sized",
  3202. height: math.unit(25000, "parsecs")
  3203. },
  3204. {
  3205. name: "Slightly Uncompressed",
  3206. height: math.unit(7.77e31, "parsecs")
  3207. },
  3208. {
  3209. name: "Omniversal",
  3210. height: math.unit(1e300, "meters")
  3211. },
  3212. ]
  3213. ))
  3214. characterMakers.push(() => makeCharacter(
  3215. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3216. {
  3217. front: {
  3218. height: math.unit(2, "meter"),
  3219. weight: math.unit(75, "lb"),
  3220. name: "Front",
  3221. image: {
  3222. source: "./media/characters/napalm/front.svg"
  3223. }
  3224. },
  3225. back: {
  3226. height: math.unit(2, "meter"),
  3227. weight: math.unit(75, "lb"),
  3228. name: "Back",
  3229. image: {
  3230. source: "./media/characters/napalm/back.svg"
  3231. }
  3232. }
  3233. },
  3234. [
  3235. {
  3236. name: "Standard",
  3237. height: math.unit(55, "feet"),
  3238. default: true
  3239. }
  3240. ]
  3241. ))
  3242. characterMakers.push(() => makeCharacter(
  3243. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3244. {
  3245. front: {
  3246. height: math.unit(7 + 5 / 6, "feet"),
  3247. weight: math.unit(325, "lb"),
  3248. name: "Front",
  3249. image: {
  3250. source: "./media/characters/asana/front.svg",
  3251. extra: 1133 / 1060,
  3252. bottom: 15.2 / 1148.6
  3253. }
  3254. },
  3255. back: {
  3256. height: math.unit(7 + 5 / 6, "feet"),
  3257. weight: math.unit(325, "lb"),
  3258. name: "Back",
  3259. image: {
  3260. source: "./media/characters/asana/back.svg",
  3261. extra: 1114 / 1043,
  3262. bottom: 5 / 1120
  3263. }
  3264. },
  3265. dressedDark: {
  3266. height: math.unit(7 + 5 / 6, "feet"),
  3267. weight: math.unit(325, "lb"),
  3268. name: "Dressed (Dark)",
  3269. image: {
  3270. source: "./media/characters/asana/dressed-dark.svg",
  3271. extra: 1133 / 1060,
  3272. bottom: 15.2 / 1148.6
  3273. }
  3274. },
  3275. dressedLight: {
  3276. height: math.unit(7 + 5 / 6, "feet"),
  3277. weight: math.unit(325, "lb"),
  3278. name: "Dressed (Light)",
  3279. image: {
  3280. source: "./media/characters/asana/dressed-light.svg",
  3281. extra: 1133 / 1060,
  3282. bottom: 15.2 / 1148.6
  3283. }
  3284. },
  3285. },
  3286. [
  3287. {
  3288. name: "Standard",
  3289. height: math.unit(7 + 5 / 6, "feet"),
  3290. default: true
  3291. },
  3292. {
  3293. name: "Large",
  3294. height: math.unit(10, "meters")
  3295. },
  3296. {
  3297. name: "Macro",
  3298. height: math.unit(2500, "meters")
  3299. },
  3300. {
  3301. name: "Megamacro",
  3302. height: math.unit(5e6, "meters")
  3303. },
  3304. {
  3305. name: "Examacro",
  3306. height: math.unit(5e12, "lightyears")
  3307. },
  3308. {
  3309. name: "Max Size",
  3310. height: math.unit(1e31, "lightyears")
  3311. }
  3312. ]
  3313. ))
  3314. characterMakers.push(() => makeCharacter(
  3315. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3316. {
  3317. front: {
  3318. height: math.unit(2, "meter"),
  3319. weight: math.unit(60, "kg"),
  3320. name: "Front",
  3321. image: {
  3322. source: "./media/characters/ebony/front.svg",
  3323. bottom: 0.03,
  3324. extra: 1045 / 810 + 0.03
  3325. }
  3326. },
  3327. side: {
  3328. height: math.unit(2, "meter"),
  3329. weight: math.unit(60, "kg"),
  3330. name: "Side",
  3331. image: {
  3332. source: "./media/characters/ebony/side.svg",
  3333. bottom: 0.03,
  3334. extra: 1045 / 810 + 0.03
  3335. }
  3336. },
  3337. back: {
  3338. height: math.unit(2, "meter"),
  3339. weight: math.unit(60, "kg"),
  3340. name: "Back",
  3341. image: {
  3342. source: "./media/characters/ebony/back.svg",
  3343. bottom: 0.01,
  3344. extra: 1045 / 810 + 0.01
  3345. }
  3346. },
  3347. },
  3348. [
  3349. // TODO check why I did this lol
  3350. {
  3351. name: "Standard",
  3352. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3353. default: true
  3354. },
  3355. {
  3356. name: "Macro",
  3357. height: math.unit(200, "feet")
  3358. },
  3359. {
  3360. name: "Gigamacro",
  3361. height: math.unit(13000, "km")
  3362. }
  3363. ]
  3364. ))
  3365. characterMakers.push(() => makeCharacter(
  3366. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3367. {
  3368. front: {
  3369. height: math.unit(6, "feet"),
  3370. weight: math.unit(175, "lb"),
  3371. name: "Front",
  3372. image: {
  3373. source: "./media/characters/mountain/front.svg",
  3374. extra: 972 / 955,
  3375. bottom: 64 / 1036.6
  3376. }
  3377. },
  3378. back: {
  3379. height: math.unit(6, "feet"),
  3380. weight: math.unit(175, "lb"),
  3381. name: "Back",
  3382. image: {
  3383. source: "./media/characters/mountain/back.svg",
  3384. extra: 970 / 950,
  3385. bottom: 28.25 / 999
  3386. }
  3387. },
  3388. },
  3389. [
  3390. {
  3391. name: "Large",
  3392. height: math.unit(20, "meters")
  3393. },
  3394. {
  3395. name: "Macro",
  3396. height: math.unit(300, "meters")
  3397. },
  3398. {
  3399. name: "Gigamacro",
  3400. height: math.unit(10000, "km"),
  3401. default: true
  3402. },
  3403. {
  3404. name: "Examacro",
  3405. height: math.unit(10e9, "lightyears")
  3406. }
  3407. ]
  3408. ))
  3409. characterMakers.push(() => makeCharacter(
  3410. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3411. {
  3412. front: {
  3413. height: math.unit(8, "feet"),
  3414. weight: math.unit(500, "lb"),
  3415. name: "Front",
  3416. image: {
  3417. source: "./media/characters/rick/front.svg"
  3418. }
  3419. }
  3420. },
  3421. [
  3422. {
  3423. name: "Normal",
  3424. height: math.unit(8, "feet"),
  3425. default: true
  3426. },
  3427. {
  3428. name: "Macro",
  3429. height: math.unit(5, "km")
  3430. }
  3431. ]
  3432. ))
  3433. characterMakers.push(() => makeCharacter(
  3434. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3435. {
  3436. front: {
  3437. height: math.unit(8, "feet"),
  3438. weight: math.unit(120, "lb"),
  3439. name: "Front",
  3440. image: {
  3441. source: "./media/characters/ona/front.svg"
  3442. }
  3443. },
  3444. frontAlt: {
  3445. height: math.unit(8, "feet"),
  3446. weight: math.unit(120, "lb"),
  3447. name: "Front (Alt)",
  3448. image: {
  3449. source: "./media/characters/ona/front-alt.svg"
  3450. }
  3451. },
  3452. back: {
  3453. height: math.unit(8, "feet"),
  3454. weight: math.unit(120, "lb"),
  3455. name: "Back",
  3456. image: {
  3457. source: "./media/characters/ona/back.svg"
  3458. }
  3459. },
  3460. foot: {
  3461. height: math.unit(1.1, "feet"),
  3462. name: "Foot",
  3463. image: {
  3464. source: "./media/characters/ona/foot.svg"
  3465. }
  3466. }
  3467. },
  3468. [
  3469. {
  3470. name: "Megamacro",
  3471. height: math.unit(70, "km"),
  3472. default: true
  3473. },
  3474. {
  3475. name: "Gigamacro",
  3476. height: math.unit(681818, "miles")
  3477. },
  3478. {
  3479. name: "Examacro",
  3480. height: math.unit(3800000, "lightyears")
  3481. },
  3482. ]
  3483. ))
  3484. characterMakers.push(() => makeCharacter(
  3485. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3486. {
  3487. front: {
  3488. height: math.unit(12, "feet"),
  3489. weight: math.unit(3000, "lb"),
  3490. name: "Front",
  3491. image: {
  3492. source: "./media/characters/mech/front.svg",
  3493. extra: 2900 / 2770,
  3494. bottom: 110 / 3010
  3495. }
  3496. },
  3497. back: {
  3498. height: math.unit(12, "feet"),
  3499. weight: math.unit(3000, "lb"),
  3500. name: "Back",
  3501. image: {
  3502. source: "./media/characters/mech/back.svg",
  3503. extra: 3011 / 2890,
  3504. bottom: 94 / 3105
  3505. }
  3506. },
  3507. maw: {
  3508. height: math.unit(3.07, "feet"),
  3509. name: "Maw",
  3510. image: {
  3511. source: "./media/characters/mech/maw.svg"
  3512. }
  3513. },
  3514. head: {
  3515. height: math.unit(2.82, "feet"),
  3516. name: "Head",
  3517. image: {
  3518. source: "./media/characters/mech/head.svg"
  3519. }
  3520. },
  3521. dick: {
  3522. height: math.unit(1.43, "feet"),
  3523. name: "Dick",
  3524. image: {
  3525. source: "./media/characters/mech/dick.svg"
  3526. }
  3527. },
  3528. },
  3529. [
  3530. {
  3531. name: "Normal",
  3532. height: math.unit(12, "feet")
  3533. },
  3534. {
  3535. name: "Macro",
  3536. height: math.unit(300, "feet"),
  3537. default: true
  3538. },
  3539. {
  3540. name: "Macro+",
  3541. height: math.unit(1500, "feet")
  3542. },
  3543. ]
  3544. ))
  3545. characterMakers.push(() => makeCharacter(
  3546. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3547. {
  3548. front: {
  3549. height: math.unit(1.3, "meter"),
  3550. weight: math.unit(30, "kg"),
  3551. name: "Front",
  3552. image: {
  3553. source: "./media/characters/gregory/front.svg",
  3554. }
  3555. }
  3556. },
  3557. [
  3558. {
  3559. name: "Normal",
  3560. height: math.unit(1.3, "meter"),
  3561. default: true
  3562. },
  3563. {
  3564. name: "Macro",
  3565. height: math.unit(20, "meter")
  3566. }
  3567. ]
  3568. ))
  3569. characterMakers.push(() => makeCharacter(
  3570. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3571. {
  3572. front: {
  3573. height: math.unit(2.8, "meter"),
  3574. weight: math.unit(200, "kg"),
  3575. name: "Front",
  3576. image: {
  3577. source: "./media/characters/elory/front.svg",
  3578. }
  3579. }
  3580. },
  3581. [
  3582. {
  3583. name: "Normal",
  3584. height: math.unit(2.8, "meter"),
  3585. default: true
  3586. },
  3587. {
  3588. name: "Macro",
  3589. height: math.unit(38, "meter")
  3590. }
  3591. ]
  3592. ))
  3593. characterMakers.push(() => makeCharacter(
  3594. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3595. {
  3596. front: {
  3597. height: math.unit(470, "feet"),
  3598. weight: math.unit(924, "tons"),
  3599. name: "Front",
  3600. image: {
  3601. source: "./media/characters/angelpatamon/front.svg",
  3602. }
  3603. }
  3604. },
  3605. [
  3606. {
  3607. name: "Normal",
  3608. height: math.unit(470, "feet"),
  3609. default: true
  3610. },
  3611. {
  3612. name: "Deity Size I",
  3613. height: math.unit(28651.2, "km")
  3614. },
  3615. {
  3616. name: "Deity Size II",
  3617. height: math.unit(171907.2, "km")
  3618. }
  3619. ]
  3620. ))
  3621. characterMakers.push(() => makeCharacter(
  3622. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3623. {
  3624. side: {
  3625. height: math.unit(7.2, "meter"),
  3626. weight: math.unit(8.2, "tons"),
  3627. name: "Side",
  3628. image: {
  3629. source: "./media/characters/cryae/side.svg",
  3630. extra: 3500 / 1500
  3631. }
  3632. }
  3633. },
  3634. [
  3635. {
  3636. name: "Normal",
  3637. height: math.unit(7.2, "meter"),
  3638. default: true
  3639. }
  3640. ]
  3641. ))
  3642. characterMakers.push(() => makeCharacter(
  3643. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3644. {
  3645. front: {
  3646. height: math.unit(6, "feet"),
  3647. weight: math.unit(175, "lb"),
  3648. name: "Front",
  3649. image: {
  3650. source: "./media/characters/xera/front.svg",
  3651. extra: 2377 / 1972,
  3652. bottom: 75.5 / 2452
  3653. }
  3654. },
  3655. side: {
  3656. height: math.unit(6, "feet"),
  3657. weight: math.unit(175, "lb"),
  3658. name: "Side",
  3659. image: {
  3660. source: "./media/characters/xera/side.svg",
  3661. extra: 2345 / 2019,
  3662. bottom: 39.7 / 2384
  3663. }
  3664. },
  3665. back: {
  3666. height: math.unit(6, "feet"),
  3667. weight: math.unit(175, "lb"),
  3668. name: "Back",
  3669. image: {
  3670. source: "./media/characters/xera/back.svg",
  3671. extra: 2095 / 1984,
  3672. bottom: 67 / 2166
  3673. }
  3674. },
  3675. },
  3676. [
  3677. {
  3678. name: "Small",
  3679. height: math.unit(10, "feet")
  3680. },
  3681. {
  3682. name: "Macro",
  3683. height: math.unit(500, "meters"),
  3684. default: true
  3685. },
  3686. {
  3687. name: "Macro+",
  3688. height: math.unit(10, "km")
  3689. },
  3690. {
  3691. name: "Gigamacro",
  3692. height: math.unit(25000, "km")
  3693. },
  3694. {
  3695. name: "Teramacro",
  3696. height: math.unit(3e6, "km")
  3697. }
  3698. ]
  3699. ))
  3700. characterMakers.push(() => makeCharacter(
  3701. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3702. {
  3703. front: {
  3704. height: math.unit(6, "feet"),
  3705. weight: math.unit(175, "lb"),
  3706. name: "Front",
  3707. image: {
  3708. source: "./media/characters/nebula/front.svg",
  3709. extra: 2566 / 2362,
  3710. bottom: 81 / 2644
  3711. }
  3712. }
  3713. },
  3714. [
  3715. {
  3716. name: "Small",
  3717. height: math.unit(4.5, "meters")
  3718. },
  3719. {
  3720. name: "Macro",
  3721. height: math.unit(1500, "meters"),
  3722. default: true
  3723. },
  3724. {
  3725. name: "Megamacro",
  3726. height: math.unit(150, "km")
  3727. },
  3728. {
  3729. name: "Gigamacro",
  3730. height: math.unit(27000, "km")
  3731. }
  3732. ]
  3733. ))
  3734. characterMakers.push(() => makeCharacter(
  3735. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3736. {
  3737. front: {
  3738. height: math.unit(6, "feet"),
  3739. weight: math.unit(225, "lb"),
  3740. name: "Front",
  3741. image: {
  3742. source: "./media/characters/abysgar/front.svg"
  3743. }
  3744. }
  3745. },
  3746. [
  3747. {
  3748. name: "Small",
  3749. height: math.unit(4.5, "meters")
  3750. },
  3751. {
  3752. name: "Macro",
  3753. height: math.unit(1250, "meters"),
  3754. default: true
  3755. },
  3756. {
  3757. name: "Megamacro",
  3758. height: math.unit(125, "km")
  3759. },
  3760. {
  3761. name: "Gigamacro",
  3762. height: math.unit(26000, "km")
  3763. }
  3764. ]
  3765. ))
  3766. characterMakers.push(() => makeCharacter(
  3767. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3768. {
  3769. front: {
  3770. height: math.unit(6, "feet"),
  3771. weight: math.unit(180, "lb"),
  3772. name: "Front",
  3773. image: {
  3774. source: "./media/characters/yakuz/front.svg"
  3775. }
  3776. }
  3777. },
  3778. [
  3779. {
  3780. name: "Small",
  3781. height: math.unit(5, "meters")
  3782. },
  3783. {
  3784. name: "Macro",
  3785. height: math.unit(1500, "meters"),
  3786. default: true
  3787. },
  3788. {
  3789. name: "Megamacro",
  3790. height: math.unit(200, "km")
  3791. },
  3792. {
  3793. name: "Gigamacro",
  3794. height: math.unit(100000, "km")
  3795. }
  3796. ]
  3797. ))
  3798. characterMakers.push(() => makeCharacter(
  3799. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3800. {
  3801. front: {
  3802. height: math.unit(6, "feet"),
  3803. weight: math.unit(175, "lb"),
  3804. name: "Front",
  3805. image: {
  3806. source: "./media/characters/mirova/front.svg",
  3807. extra: 3334 / 3071,
  3808. bottom: 42 / 3375.6
  3809. }
  3810. }
  3811. },
  3812. [
  3813. {
  3814. name: "Small",
  3815. height: math.unit(5, "meters")
  3816. },
  3817. {
  3818. name: "Macro",
  3819. height: math.unit(900, "meters"),
  3820. default: true
  3821. },
  3822. {
  3823. name: "Megamacro",
  3824. height: math.unit(135, "km")
  3825. },
  3826. {
  3827. name: "Gigamacro",
  3828. height: math.unit(20000, "km")
  3829. }
  3830. ]
  3831. ))
  3832. characterMakers.push(() => makeCharacter(
  3833. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3834. {
  3835. side: {
  3836. height: math.unit(28.35, "feet"),
  3837. weight: math.unit(99.75, "tons"),
  3838. name: "Side",
  3839. image: {
  3840. source: "./media/characters/asana-mech/side.svg",
  3841. extra: 923 / 699,
  3842. bottom: 50 / 975
  3843. }
  3844. },
  3845. chaingun: {
  3846. height: math.unit(7, "feet"),
  3847. weight: math.unit(2400, "lb"),
  3848. name: "Chaingun",
  3849. image: {
  3850. source: "./media/characters/asana-mech/chaingun.svg"
  3851. }
  3852. },
  3853. laser: {
  3854. height: math.unit(7.12, "feet"),
  3855. weight: math.unit(2000, "lb"),
  3856. name: "Laser",
  3857. image: {
  3858. source: "./media/characters/asana-mech/laser.svg"
  3859. }
  3860. },
  3861. },
  3862. [
  3863. {
  3864. name: "Normal",
  3865. height: math.unit(28.35, "feet"),
  3866. default: true
  3867. },
  3868. {
  3869. name: "Macro",
  3870. height: math.unit(2500, "feet")
  3871. },
  3872. {
  3873. name: "Megamacro",
  3874. height: math.unit(25, "miles")
  3875. },
  3876. {
  3877. name: "Examacro",
  3878. height: math.unit(6e8, "lightyears")
  3879. },
  3880. ]
  3881. ))
  3882. characterMakers.push(() => makeCharacter(
  3883. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3884. {
  3885. front: {
  3886. height: math.unit(5, "meters"),
  3887. weight: math.unit(1000, "kg"),
  3888. name: "Front",
  3889. image: {
  3890. source: "./media/characters/asche/front.svg",
  3891. extra: 1258 / 1190,
  3892. bottom: 47 / 1305
  3893. }
  3894. },
  3895. frontUnderwear: {
  3896. height: math.unit(5, "meters"),
  3897. weight: math.unit(1000, "kg"),
  3898. name: "Front (Underwear)",
  3899. image: {
  3900. source: "./media/characters/asche/front-underwear.svg",
  3901. extra: 1258 / 1190,
  3902. bottom: 47 / 1305
  3903. }
  3904. },
  3905. frontDressed: {
  3906. height: math.unit(5, "meters"),
  3907. weight: math.unit(1000, "kg"),
  3908. name: "Front (Dressed)",
  3909. image: {
  3910. source: "./media/characters/asche/front-dressed.svg",
  3911. extra: 1258 / 1190,
  3912. bottom: 47 / 1305
  3913. }
  3914. },
  3915. frontArmor: {
  3916. height: math.unit(5, "meters"),
  3917. weight: math.unit(1000, "kg"),
  3918. name: "Front (Armored)",
  3919. image: {
  3920. source: "./media/characters/asche/front-armored.svg",
  3921. extra: 1374 / 1308,
  3922. bottom: 23 / 1397
  3923. }
  3924. },
  3925. mp724: {
  3926. height: math.unit(0.96, "meters"),
  3927. weight: math.unit(38, "kg"),
  3928. name: "H&K MP724",
  3929. image: {
  3930. source: "./media/characters/asche/h&k-mp724.svg"
  3931. }
  3932. },
  3933. side: {
  3934. height: math.unit(5, "meters"),
  3935. weight: math.unit(1000, "kg"),
  3936. name: "Side",
  3937. image: {
  3938. source: "./media/characters/asche/side.svg",
  3939. extra: 1717 / 1609,
  3940. bottom: 0.005
  3941. }
  3942. },
  3943. back: {
  3944. height: math.unit(5, "meters"),
  3945. weight: math.unit(1000, "kg"),
  3946. name: "Back",
  3947. image: {
  3948. source: "./media/characters/asche/back.svg",
  3949. extra: 1570 / 1501
  3950. }
  3951. },
  3952. },
  3953. [
  3954. {
  3955. name: "DEFCON 5",
  3956. height: math.unit(5, "meters")
  3957. },
  3958. {
  3959. name: "DEFCON 4",
  3960. height: math.unit(500, "meters"),
  3961. default: true
  3962. },
  3963. {
  3964. name: "DEFCON 3",
  3965. height: math.unit(5, "km")
  3966. },
  3967. {
  3968. name: "DEFCON 2",
  3969. height: math.unit(500, "km")
  3970. },
  3971. {
  3972. name: "DEFCON 1",
  3973. height: math.unit(500000, "km")
  3974. },
  3975. {
  3976. name: "DEFCON 0",
  3977. height: math.unit(3, "gigaparsecs")
  3978. },
  3979. ]
  3980. ))
  3981. characterMakers.push(() => makeCharacter(
  3982. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3983. {
  3984. front: {
  3985. height: math.unit(2, "meters"),
  3986. weight: math.unit(76, "kg"),
  3987. name: "Front",
  3988. image: {
  3989. source: "./media/characters/gale/front.svg"
  3990. }
  3991. },
  3992. frontAlt1: {
  3993. height: math.unit(2, "meters"),
  3994. weight: math.unit(76, "kg"),
  3995. name: "Front (Alt 1)",
  3996. image: {
  3997. source: "./media/characters/gale/front-alt-1.svg"
  3998. }
  3999. },
  4000. frontAlt2: {
  4001. height: math.unit(2, "meters"),
  4002. weight: math.unit(76, "kg"),
  4003. name: "Front (Alt 2)",
  4004. image: {
  4005. source: "./media/characters/gale/front-alt-2.svg"
  4006. }
  4007. },
  4008. },
  4009. [
  4010. {
  4011. name: "Normal",
  4012. height: math.unit(7, "feet")
  4013. },
  4014. {
  4015. name: "Macro",
  4016. height: math.unit(150, "feet"),
  4017. default: true
  4018. },
  4019. {
  4020. name: "Macro+",
  4021. height: math.unit(300, "feet")
  4022. },
  4023. ]
  4024. ))
  4025. characterMakers.push(() => makeCharacter(
  4026. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4027. {
  4028. front: {
  4029. height: math.unit(2, "meters"),
  4030. weight: math.unit(76, "kg"),
  4031. name: "Front",
  4032. image: {
  4033. source: "./media/characters/draylen/front.svg"
  4034. }
  4035. }
  4036. },
  4037. [
  4038. {
  4039. name: "Macro",
  4040. height: math.unit(150, "feet"),
  4041. default: true
  4042. }
  4043. ]
  4044. ))
  4045. characterMakers.push(() => makeCharacter(
  4046. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4047. {
  4048. front: {
  4049. height: math.unit(7 + 9 / 12, "feet"),
  4050. weight: math.unit(379, "lbs"),
  4051. name: "Front",
  4052. image: {
  4053. source: "./media/characters/chez/front.svg"
  4054. }
  4055. },
  4056. side: {
  4057. height: math.unit(7 + 9 / 12, "feet"),
  4058. weight: math.unit(379, "lbs"),
  4059. name: "Side",
  4060. image: {
  4061. source: "./media/characters/chez/side.svg"
  4062. }
  4063. }
  4064. },
  4065. [
  4066. {
  4067. name: "Normal",
  4068. height: math.unit(7 + 9 / 12, "feet"),
  4069. default: true
  4070. },
  4071. {
  4072. name: "God King",
  4073. height: math.unit(9750000, "meters")
  4074. }
  4075. ]
  4076. ))
  4077. characterMakers.push(() => makeCharacter(
  4078. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4079. {
  4080. front: {
  4081. height: math.unit(6, "feet"),
  4082. weight: math.unit(275, "lbs"),
  4083. name: "Front",
  4084. image: {
  4085. source: "./media/characters/kaylum/front.svg",
  4086. bottom: 0.01,
  4087. extra: 1166 / 1031
  4088. }
  4089. },
  4090. frontWingless: {
  4091. height: math.unit(6, "feet"),
  4092. weight: math.unit(275, "lbs"),
  4093. name: "Front (Wingless)",
  4094. image: {
  4095. source: "./media/characters/kaylum/front-wingless.svg",
  4096. bottom: 0.01,
  4097. extra: 1117 / 1031
  4098. }
  4099. }
  4100. },
  4101. [
  4102. {
  4103. name: "Normal",
  4104. height: math.unit(3.05, "meters")
  4105. },
  4106. {
  4107. name: "Master",
  4108. height: math.unit(5.5, "meters")
  4109. },
  4110. {
  4111. name: "Rampage",
  4112. height: math.unit(19, "meters")
  4113. },
  4114. {
  4115. name: "Macro Lite",
  4116. height: math.unit(37, "meters")
  4117. },
  4118. {
  4119. name: "Hyper Predator",
  4120. height: math.unit(61, "meters")
  4121. },
  4122. {
  4123. name: "Macro",
  4124. height: math.unit(138, "meters"),
  4125. default: true
  4126. }
  4127. ]
  4128. ))
  4129. characterMakers.push(() => makeCharacter(
  4130. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4131. {
  4132. front: {
  4133. height: math.unit(6, "feet"),
  4134. weight: math.unit(150, "lbs"),
  4135. name: "Front",
  4136. image: {
  4137. source: "./media/characters/geta/front.svg"
  4138. }
  4139. }
  4140. },
  4141. [
  4142. {
  4143. name: "Micro",
  4144. height: math.unit(3, "inches"),
  4145. default: true
  4146. },
  4147. {
  4148. name: "Normal",
  4149. height: math.unit(5 + 5 / 12, "feet")
  4150. }
  4151. ]
  4152. ))
  4153. characterMakers.push(() => makeCharacter(
  4154. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4155. {
  4156. front: {
  4157. height: math.unit(6, "feet"),
  4158. weight: math.unit(300, "lbs"),
  4159. name: "Front",
  4160. image: {
  4161. source: "./media/characters/tyrnn/front.svg"
  4162. }
  4163. }
  4164. },
  4165. [
  4166. {
  4167. name: "Main Height",
  4168. height: math.unit(355, "feet"),
  4169. default: true
  4170. },
  4171. {
  4172. name: "Fave. Height",
  4173. height: math.unit(2400, "feet")
  4174. }
  4175. ]
  4176. ))
  4177. characterMakers.push(() => makeCharacter(
  4178. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4179. {
  4180. front: {
  4181. height: math.unit(6, "feet"),
  4182. weight: math.unit(300, "lbs"),
  4183. name: "Front",
  4184. image: {
  4185. source: "./media/characters/appledectomy/front.svg"
  4186. }
  4187. }
  4188. },
  4189. [
  4190. {
  4191. name: "Macro",
  4192. height: math.unit(2500, "feet")
  4193. },
  4194. {
  4195. name: "Megamacro",
  4196. height: math.unit(50, "miles"),
  4197. default: true
  4198. },
  4199. {
  4200. name: "Gigamacro",
  4201. height: math.unit(5000, "miles")
  4202. },
  4203. {
  4204. name: "Teramacro",
  4205. height: math.unit(250000, "miles")
  4206. },
  4207. ]
  4208. ))
  4209. characterMakers.push(() => makeCharacter(
  4210. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4211. {
  4212. front: {
  4213. height: math.unit(6, "feet"),
  4214. weight: math.unit(200, "lbs"),
  4215. name: "Front",
  4216. image: {
  4217. source: "./media/characters/vulpes/front.svg",
  4218. extra: 573 / 543,
  4219. bottom: 0.033
  4220. }
  4221. },
  4222. side: {
  4223. height: math.unit(6, "feet"),
  4224. weight: math.unit(200, "lbs"),
  4225. name: "Side",
  4226. image: {
  4227. source: "./media/characters/vulpes/side.svg",
  4228. extra: 577 / 549,
  4229. bottom: 11 / 588
  4230. }
  4231. },
  4232. back: {
  4233. height: math.unit(6, "feet"),
  4234. weight: math.unit(200, "lbs"),
  4235. name: "Back",
  4236. image: {
  4237. source: "./media/characters/vulpes/back.svg",
  4238. extra: 573 / 549,
  4239. bottom: 20 / 593
  4240. }
  4241. },
  4242. feet: {
  4243. height: math.unit(1.276, "feet"),
  4244. name: "Feet",
  4245. image: {
  4246. source: "./media/characters/vulpes/feet.svg"
  4247. }
  4248. },
  4249. maw: {
  4250. height: math.unit(1.18, "feet"),
  4251. name: "Maw",
  4252. image: {
  4253. source: "./media/characters/vulpes/maw.svg"
  4254. }
  4255. },
  4256. },
  4257. [
  4258. {
  4259. name: "Micro",
  4260. height: math.unit(2, "inches")
  4261. },
  4262. {
  4263. name: "Normal",
  4264. height: math.unit(6.3, "feet")
  4265. },
  4266. {
  4267. name: "Macro",
  4268. height: math.unit(850, "feet")
  4269. },
  4270. {
  4271. name: "Megamacro",
  4272. height: math.unit(7500, "feet"),
  4273. default: true
  4274. },
  4275. {
  4276. name: "Gigamacro",
  4277. height: math.unit(570000, "miles")
  4278. }
  4279. ]
  4280. ))
  4281. characterMakers.push(() => makeCharacter(
  4282. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4283. {
  4284. front: {
  4285. height: math.unit(6, "feet"),
  4286. weight: math.unit(210, "lbs"),
  4287. name: "Front",
  4288. image: {
  4289. source: "./media/characters/rain-fallen/front.svg"
  4290. }
  4291. },
  4292. side: {
  4293. height: math.unit(6, "feet"),
  4294. weight: math.unit(210, "lbs"),
  4295. name: "Side",
  4296. image: {
  4297. source: "./media/characters/rain-fallen/side.svg"
  4298. }
  4299. },
  4300. back: {
  4301. height: math.unit(6, "feet"),
  4302. weight: math.unit(210, "lbs"),
  4303. name: "Back",
  4304. image: {
  4305. source: "./media/characters/rain-fallen/back.svg"
  4306. }
  4307. },
  4308. feral: {
  4309. height: math.unit(9, "feet"),
  4310. weight: math.unit(700, "lbs"),
  4311. name: "Feral",
  4312. image: {
  4313. source: "./media/characters/rain-fallen/feral.svg"
  4314. }
  4315. },
  4316. },
  4317. [
  4318. {
  4319. name: "Meddling with Mortals",
  4320. height: math.unit(8 + 8/12, "feet")
  4321. },
  4322. {
  4323. name: "Normal",
  4324. height: math.unit(5, "meter")
  4325. },
  4326. {
  4327. name: "Macro",
  4328. height: math.unit(150, "meter"),
  4329. default: true
  4330. },
  4331. {
  4332. name: "Megamacro",
  4333. height: math.unit(278e6, "meter")
  4334. },
  4335. {
  4336. name: "Gigamacro",
  4337. height: math.unit(2e9, "meter")
  4338. },
  4339. {
  4340. name: "Teramacro",
  4341. height: math.unit(8e12, "meter")
  4342. },
  4343. {
  4344. name: "Devourer",
  4345. height: math.unit(14, "zettameters")
  4346. },
  4347. {
  4348. name: "Scarlet King",
  4349. height: math.unit(18, "yottameters")
  4350. },
  4351. {
  4352. name: "Void",
  4353. height: math.unit(6.66e66, "yottameters")
  4354. }
  4355. ]
  4356. ))
  4357. characterMakers.push(() => makeCharacter(
  4358. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4359. {
  4360. standing: {
  4361. height: math.unit(6, "feet"),
  4362. weight: math.unit(180, "lbs"),
  4363. name: "Standing",
  4364. image: {
  4365. source: "./media/characters/zaakira/standing.svg"
  4366. }
  4367. },
  4368. laying: {
  4369. height: math.unit(3, "feet"),
  4370. weight: math.unit(180, "lbs"),
  4371. name: "Laying",
  4372. image: {
  4373. source: "./media/characters/zaakira/laying.svg"
  4374. }
  4375. },
  4376. },
  4377. [
  4378. {
  4379. name: "Normal",
  4380. height: math.unit(12, "feet")
  4381. },
  4382. {
  4383. name: "Macro",
  4384. height: math.unit(279, "feet"),
  4385. default: true
  4386. }
  4387. ]
  4388. ))
  4389. characterMakers.push(() => makeCharacter(
  4390. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4391. {
  4392. femSfw: {
  4393. height: math.unit(8, "feet"),
  4394. weight: math.unit(350, "lb"),
  4395. name: "Fem",
  4396. image: {
  4397. source: "./media/characters/sigvald/fem-sfw.svg",
  4398. extra: 182 / 164,
  4399. bottom: 8.7 / 190.5
  4400. }
  4401. },
  4402. femNsfw: {
  4403. height: math.unit(8, "feet"),
  4404. weight: math.unit(350, "lb"),
  4405. name: "Fem (NSFW)",
  4406. image: {
  4407. source: "./media/characters/sigvald/fem-nsfw.svg",
  4408. extra: 182 / 164,
  4409. bottom: 8.7 / 190.5
  4410. }
  4411. },
  4412. maleNsfw: {
  4413. height: math.unit(8, "feet"),
  4414. weight: math.unit(350, "lb"),
  4415. name: "Male (NSFW)",
  4416. image: {
  4417. source: "./media/characters/sigvald/male-nsfw.svg",
  4418. extra: 182 / 164,
  4419. bottom: 8.7 / 190.5
  4420. }
  4421. },
  4422. hermNsfw: {
  4423. height: math.unit(8, "feet"),
  4424. weight: math.unit(350, "lb"),
  4425. name: "Herm (NSFW)",
  4426. image: {
  4427. source: "./media/characters/sigvald/herm-nsfw.svg",
  4428. extra: 182 / 164,
  4429. bottom: 8.7 / 190.5
  4430. }
  4431. },
  4432. dick: {
  4433. height: math.unit(2.36, "feet"),
  4434. name: "Dick",
  4435. image: {
  4436. source: "./media/characters/sigvald/dick.svg"
  4437. }
  4438. },
  4439. eye: {
  4440. height: math.unit(0.31, "feet"),
  4441. name: "Eye",
  4442. image: {
  4443. source: "./media/characters/sigvald/eye.svg"
  4444. }
  4445. },
  4446. mouth: {
  4447. height: math.unit(0.92, "feet"),
  4448. name: "Mouth",
  4449. image: {
  4450. source: "./media/characters/sigvald/mouth.svg"
  4451. }
  4452. },
  4453. paws: {
  4454. height: math.unit(2.2, "feet"),
  4455. name: "Paws",
  4456. image: {
  4457. source: "./media/characters/sigvald/paws.svg"
  4458. }
  4459. }
  4460. },
  4461. [
  4462. {
  4463. name: "Normal",
  4464. height: math.unit(8, "feet")
  4465. },
  4466. {
  4467. name: "Large",
  4468. height: math.unit(12, "feet")
  4469. },
  4470. {
  4471. name: "Larger",
  4472. height: math.unit(20, "feet")
  4473. },
  4474. {
  4475. name: "Macro",
  4476. height: math.unit(150, "feet")
  4477. },
  4478. {
  4479. name: "Macro+",
  4480. height: math.unit(200, "feet"),
  4481. default: true
  4482. },
  4483. ]
  4484. ))
  4485. characterMakers.push(() => makeCharacter(
  4486. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4487. {
  4488. side: {
  4489. height: math.unit(12, "feet"),
  4490. weight: math.unit(2000, "kg"),
  4491. name: "Side",
  4492. image: {
  4493. source: "./media/characters/scott/side.svg",
  4494. extra: 754 / 724,
  4495. bottom: 0.069
  4496. }
  4497. },
  4498. upright: {
  4499. height: math.unit(12, "feet"),
  4500. weight: math.unit(2000, "kg"),
  4501. name: "Upright",
  4502. image: {
  4503. source: "./media/characters/scott/upright.svg",
  4504. extra: 3881 / 3722,
  4505. bottom: 0.05
  4506. }
  4507. },
  4508. },
  4509. [
  4510. {
  4511. name: "Normal",
  4512. height: math.unit(12, "feet"),
  4513. default: true
  4514. },
  4515. ]
  4516. ))
  4517. characterMakers.push(() => makeCharacter(
  4518. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4519. {
  4520. side: {
  4521. height: math.unit(8, "meters"),
  4522. weight: math.unit(84755, "lbs"),
  4523. name: "Side",
  4524. image: {
  4525. source: "./media/characters/tobias/side.svg",
  4526. extra: 1474 / 1096,
  4527. bottom: 38.9 / 1513.1235
  4528. }
  4529. },
  4530. },
  4531. [
  4532. {
  4533. name: "Normal",
  4534. height: math.unit(8, "meters"),
  4535. default: true
  4536. },
  4537. ]
  4538. ))
  4539. characterMakers.push(() => makeCharacter(
  4540. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4541. {
  4542. front: {
  4543. height: math.unit(5.5, "feet"),
  4544. weight: math.unit(400, "lbs"),
  4545. name: "Front",
  4546. image: {
  4547. source: "./media/characters/kieran/front.svg",
  4548. extra: 2694 / 2364,
  4549. bottom: 217 / 2908
  4550. }
  4551. },
  4552. side: {
  4553. height: math.unit(5.5, "feet"),
  4554. weight: math.unit(400, "lbs"),
  4555. name: "Side",
  4556. image: {
  4557. source: "./media/characters/kieran/side.svg",
  4558. extra: 875 / 777,
  4559. bottom: 84.6 / 959
  4560. }
  4561. },
  4562. },
  4563. [
  4564. {
  4565. name: "Normal",
  4566. height: math.unit(5.5, "feet"),
  4567. default: true
  4568. },
  4569. ]
  4570. ))
  4571. characterMakers.push(() => makeCharacter(
  4572. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4573. {
  4574. side: {
  4575. height: math.unit(2, "meters"),
  4576. weight: math.unit(70, "kg"),
  4577. name: "Side",
  4578. image: {
  4579. source: "./media/characters/sanya/side.svg",
  4580. bottom: 0.02,
  4581. extra: 1.02
  4582. }
  4583. },
  4584. },
  4585. [
  4586. {
  4587. name: "Small",
  4588. height: math.unit(2, "meters")
  4589. },
  4590. {
  4591. name: "Normal",
  4592. height: math.unit(3, "meters")
  4593. },
  4594. {
  4595. name: "Macro",
  4596. height: math.unit(16, "meters"),
  4597. default: true
  4598. },
  4599. ]
  4600. ))
  4601. characterMakers.push(() => makeCharacter(
  4602. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4603. {
  4604. front: {
  4605. height: math.unit(2, "meters"),
  4606. weight: math.unit(120, "kg"),
  4607. name: "Front",
  4608. image: {
  4609. source: "./media/characters/miranda/front.svg",
  4610. extra: 195 / 185,
  4611. bottom: 10.9 / 206.5
  4612. }
  4613. },
  4614. back: {
  4615. height: math.unit(2, "meters"),
  4616. weight: math.unit(120, "kg"),
  4617. name: "Back",
  4618. image: {
  4619. source: "./media/characters/miranda/back.svg",
  4620. extra: 201 / 193,
  4621. bottom: 2.3 / 203.7
  4622. }
  4623. },
  4624. },
  4625. [
  4626. {
  4627. name: "Normal",
  4628. height: math.unit(10, "feet"),
  4629. default: true
  4630. }
  4631. ]
  4632. ))
  4633. characterMakers.push(() => makeCharacter(
  4634. { name: "James", species: ["deer"], tags: ["anthro"] },
  4635. {
  4636. side: {
  4637. height: math.unit(2, "meters"),
  4638. weight: math.unit(100, "kg"),
  4639. name: "Front",
  4640. image: {
  4641. source: "./media/characters/james/front.svg",
  4642. extra: 10 / 8.5
  4643. }
  4644. },
  4645. },
  4646. [
  4647. {
  4648. name: "Normal",
  4649. height: math.unit(8.5, "feet"),
  4650. default: true
  4651. }
  4652. ]
  4653. ))
  4654. characterMakers.push(() => makeCharacter(
  4655. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4656. {
  4657. side: {
  4658. height: math.unit(9.5, "feet"),
  4659. weight: math.unit(2500, "lbs"),
  4660. name: "Side",
  4661. image: {
  4662. source: "./media/characters/heather/side.svg"
  4663. }
  4664. },
  4665. },
  4666. [
  4667. {
  4668. name: "Normal",
  4669. height: math.unit(9.5, "feet"),
  4670. default: true
  4671. }
  4672. ]
  4673. ))
  4674. characterMakers.push(() => makeCharacter(
  4675. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4676. {
  4677. side: {
  4678. height: math.unit(6.5, "feet"),
  4679. weight: math.unit(400, "lbs"),
  4680. name: "Side",
  4681. image: {
  4682. source: "./media/characters/lukas/side.svg",
  4683. extra: 7.25 / 6.5
  4684. }
  4685. },
  4686. },
  4687. [
  4688. {
  4689. name: "Normal",
  4690. height: math.unit(6.5, "feet"),
  4691. default: true
  4692. }
  4693. ]
  4694. ))
  4695. characterMakers.push(() => makeCharacter(
  4696. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4697. {
  4698. side: {
  4699. height: math.unit(5, "feet"),
  4700. weight: math.unit(3000, "lbs"),
  4701. name: "Side",
  4702. image: {
  4703. source: "./media/characters/louise/side.svg"
  4704. }
  4705. },
  4706. },
  4707. [
  4708. {
  4709. name: "Normal",
  4710. height: math.unit(5, "feet"),
  4711. default: true
  4712. }
  4713. ]
  4714. ))
  4715. characterMakers.push(() => makeCharacter(
  4716. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4717. {
  4718. side: {
  4719. height: math.unit(6, "feet"),
  4720. weight: math.unit(150, "lbs"),
  4721. name: "Side",
  4722. image: {
  4723. source: "./media/characters/ramona/side.svg"
  4724. }
  4725. },
  4726. },
  4727. [
  4728. {
  4729. name: "Normal",
  4730. height: math.unit(5.3, "meters"),
  4731. default: true
  4732. },
  4733. {
  4734. name: "Macro",
  4735. height: math.unit(20, "stories")
  4736. },
  4737. {
  4738. name: "Macro+",
  4739. height: math.unit(50, "stories")
  4740. },
  4741. ]
  4742. ))
  4743. characterMakers.push(() => makeCharacter(
  4744. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4745. {
  4746. standing: {
  4747. height: math.unit(5.75, "feet"),
  4748. weight: math.unit(160, "lbs"),
  4749. name: "Standing",
  4750. image: {
  4751. source: "./media/characters/deerpuff/standing.svg",
  4752. extra: 682 / 624
  4753. }
  4754. },
  4755. sitting: {
  4756. height: math.unit(5.75 / 1.79, "feet"),
  4757. weight: math.unit(160, "lbs"),
  4758. name: "Sitting",
  4759. image: {
  4760. source: "./media/characters/deerpuff/sitting.svg",
  4761. bottom: 44 / 400,
  4762. extra: 1
  4763. }
  4764. },
  4765. taurLaying: {
  4766. height: math.unit(6, "feet"),
  4767. weight: math.unit(400, "lbs"),
  4768. name: "Taur (Laying)",
  4769. image: {
  4770. source: "./media/characters/deerpuff/taur-laying.svg"
  4771. }
  4772. },
  4773. },
  4774. [
  4775. {
  4776. name: "Puffball",
  4777. height: math.unit(6, "inches")
  4778. },
  4779. {
  4780. name: "Normalpuff",
  4781. height: math.unit(5.75, "feet")
  4782. },
  4783. {
  4784. name: "Macropuff",
  4785. height: math.unit(1500, "feet"),
  4786. default: true
  4787. },
  4788. {
  4789. name: "Megapuff",
  4790. height: math.unit(500, "miles")
  4791. },
  4792. {
  4793. name: "Gigapuff",
  4794. height: math.unit(250000, "miles")
  4795. },
  4796. {
  4797. name: "Omegapuff",
  4798. height: math.unit(1000, "lightyears")
  4799. },
  4800. ]
  4801. ))
  4802. characterMakers.push(() => makeCharacter(
  4803. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4804. {
  4805. stomping: {
  4806. height: math.unit(6, "feet"),
  4807. weight: math.unit(170, "lbs"),
  4808. name: "Stomping",
  4809. image: {
  4810. source: "./media/characters/vivian/stomping.svg"
  4811. }
  4812. },
  4813. sitting: {
  4814. height: math.unit(6 / 1.75, "feet"),
  4815. weight: math.unit(170, "lbs"),
  4816. name: "Sitting",
  4817. image: {
  4818. source: "./media/characters/vivian/sitting.svg",
  4819. bottom: 1 / 6.4,
  4820. extra: 1,
  4821. }
  4822. },
  4823. },
  4824. [
  4825. {
  4826. name: "Normal",
  4827. height: math.unit(7, "feet"),
  4828. default: true
  4829. },
  4830. {
  4831. name: "Macro",
  4832. height: math.unit(10, "stories")
  4833. },
  4834. {
  4835. name: "Macro+",
  4836. height: math.unit(30, "stories")
  4837. },
  4838. {
  4839. name: "Megamacro",
  4840. height: math.unit(10, "miles")
  4841. },
  4842. {
  4843. name: "Megamacro+",
  4844. height: math.unit(2750000, "meters")
  4845. },
  4846. ]
  4847. ))
  4848. characterMakers.push(() => makeCharacter(
  4849. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4850. {
  4851. front: {
  4852. height: math.unit(6, "feet"),
  4853. weight: math.unit(160, "lbs"),
  4854. name: "Front",
  4855. image: {
  4856. source: "./media/characters/prince/front.svg",
  4857. extra: 3400 / 3000
  4858. }
  4859. },
  4860. jumping: {
  4861. height: math.unit(6, "feet"),
  4862. weight: math.unit(160, "lbs"),
  4863. name: "Jumping",
  4864. image: {
  4865. source: "./media/characters/prince/jump.svg",
  4866. extra: 2555 / 2134
  4867. }
  4868. },
  4869. },
  4870. [
  4871. {
  4872. name: "Normal",
  4873. height: math.unit(7.75, "feet"),
  4874. default: true
  4875. },
  4876. {
  4877. name: "Not cute",
  4878. height: math.unit(17, "feet")
  4879. },
  4880. {
  4881. name: "I said NOT",
  4882. height: math.unit(91, "feet")
  4883. },
  4884. {
  4885. name: "Please stop",
  4886. height: math.unit(560, "feet")
  4887. },
  4888. {
  4889. name: "What have you done",
  4890. height: math.unit(2200, "feet")
  4891. },
  4892. {
  4893. name: "Deer God",
  4894. height: math.unit(3.6, "miles")
  4895. },
  4896. ]
  4897. ))
  4898. characterMakers.push(() => makeCharacter(
  4899. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4900. {
  4901. standing: {
  4902. height: math.unit(6, "feet"),
  4903. weight: math.unit(300, "lbs"),
  4904. name: "Standing",
  4905. image: {
  4906. source: "./media/characters/psymon/standing.svg",
  4907. extra: 1888 / 1810,
  4908. bottom: 0.05
  4909. }
  4910. },
  4911. slithering: {
  4912. height: math.unit(6, "feet"),
  4913. weight: math.unit(300, "lbs"),
  4914. name: "Slithering",
  4915. image: {
  4916. source: "./media/characters/psymon/slithering.svg",
  4917. extra: 1330 / 1224
  4918. }
  4919. },
  4920. slitheringAlt: {
  4921. height: math.unit(6, "feet"),
  4922. weight: math.unit(300, "lbs"),
  4923. name: "Slithering (Alt)",
  4924. image: {
  4925. source: "./media/characters/psymon/slithering-alt.svg",
  4926. extra: 1330 / 1224
  4927. }
  4928. },
  4929. },
  4930. [
  4931. {
  4932. name: "Normal",
  4933. height: math.unit(11.25, "feet"),
  4934. default: true
  4935. },
  4936. {
  4937. name: "Large",
  4938. height: math.unit(27, "feet")
  4939. },
  4940. {
  4941. name: "Giant",
  4942. height: math.unit(87, "feet")
  4943. },
  4944. {
  4945. name: "Macro",
  4946. height: math.unit(365, "feet")
  4947. },
  4948. {
  4949. name: "Megamacro",
  4950. height: math.unit(3, "miles")
  4951. },
  4952. {
  4953. name: "World Serpent",
  4954. height: math.unit(8000, "miles")
  4955. },
  4956. ]
  4957. ))
  4958. characterMakers.push(() => makeCharacter(
  4959. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4960. {
  4961. front: {
  4962. height: math.unit(6, "feet"),
  4963. weight: math.unit(180, "lbs"),
  4964. name: "Front",
  4965. image: {
  4966. source: "./media/characters/daimos/front.svg",
  4967. extra: 4160 / 3897,
  4968. bottom: 0.021
  4969. }
  4970. }
  4971. },
  4972. [
  4973. {
  4974. name: "Normal",
  4975. height: math.unit(8, "feet"),
  4976. default: true
  4977. },
  4978. {
  4979. name: "Big Dog",
  4980. height: math.unit(22, "feet")
  4981. },
  4982. {
  4983. name: "Macro",
  4984. height: math.unit(127, "feet")
  4985. },
  4986. {
  4987. name: "Megamacro",
  4988. height: math.unit(3600, "feet")
  4989. },
  4990. ]
  4991. ))
  4992. characterMakers.push(() => makeCharacter(
  4993. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4994. {
  4995. side: {
  4996. height: math.unit(6, "feet"),
  4997. weight: math.unit(180, "lbs"),
  4998. name: "Side",
  4999. image: {
  5000. source: "./media/characters/blake/side.svg",
  5001. extra: 1212 / 1120,
  5002. bottom: 0.05
  5003. }
  5004. },
  5005. crouched: {
  5006. height: math.unit(6 * 0.57, "feet"),
  5007. weight: math.unit(180, "lbs"),
  5008. name: "Crouched",
  5009. image: {
  5010. source: "./media/characters/blake/crouched.svg",
  5011. extra: 840 / 587,
  5012. bottom: 0.04
  5013. }
  5014. },
  5015. bent: {
  5016. height: math.unit(6 * 0.75, "feet"),
  5017. weight: math.unit(180, "lbs"),
  5018. name: "Bent",
  5019. image: {
  5020. source: "./media/characters/blake/bent.svg",
  5021. extra: 592 / 544,
  5022. bottom: 0.035
  5023. }
  5024. },
  5025. },
  5026. [
  5027. {
  5028. name: "Normal",
  5029. height: math.unit(8 + 1 / 6, "feet"),
  5030. default: true
  5031. },
  5032. {
  5033. name: "Big Backside",
  5034. height: math.unit(37, "feet")
  5035. },
  5036. {
  5037. name: "Subway Shredder",
  5038. height: math.unit(72, "feet")
  5039. },
  5040. {
  5041. name: "City Carver",
  5042. height: math.unit(1675, "feet")
  5043. },
  5044. {
  5045. name: "Tectonic Tweaker",
  5046. height: math.unit(2300, "miles")
  5047. },
  5048. ]
  5049. ))
  5050. characterMakers.push(() => makeCharacter(
  5051. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5052. {
  5053. front: {
  5054. height: math.unit(6, "feet"),
  5055. weight: math.unit(180, "lbs"),
  5056. name: "Front",
  5057. image: {
  5058. source: "./media/characters/guisetto/front.svg",
  5059. extra: 856 / 817,
  5060. bottom: 0.06
  5061. }
  5062. },
  5063. airborne: {
  5064. height: math.unit(6, "feet"),
  5065. weight: math.unit(180, "lbs"),
  5066. name: "Airborne",
  5067. image: {
  5068. source: "./media/characters/guisetto/airborne.svg",
  5069. extra: 584 / 525
  5070. }
  5071. },
  5072. },
  5073. [
  5074. {
  5075. name: "Normal",
  5076. height: math.unit(10 + 11 / 12, "feet"),
  5077. default: true
  5078. },
  5079. {
  5080. name: "Large",
  5081. height: math.unit(35, "feet")
  5082. },
  5083. {
  5084. name: "Macro",
  5085. height: math.unit(475, "feet")
  5086. },
  5087. ]
  5088. ))
  5089. characterMakers.push(() => makeCharacter(
  5090. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5091. {
  5092. front: {
  5093. height: math.unit(6, "feet"),
  5094. weight: math.unit(180, "lbs"),
  5095. name: "Front",
  5096. image: {
  5097. source: "./media/characters/luxor/front.svg",
  5098. extra: 2940 / 2152
  5099. }
  5100. },
  5101. back: {
  5102. height: math.unit(6, "feet"),
  5103. weight: math.unit(180, "lbs"),
  5104. name: "Back",
  5105. image: {
  5106. source: "./media/characters/luxor/back.svg",
  5107. extra: 1083 / 960
  5108. }
  5109. },
  5110. },
  5111. [
  5112. {
  5113. name: "Normal",
  5114. height: math.unit(5 + 5 / 6, "feet"),
  5115. default: true
  5116. },
  5117. {
  5118. name: "Lamp",
  5119. height: math.unit(50, "feet")
  5120. },
  5121. {
  5122. name: "Lämp",
  5123. height: math.unit(300, "feet")
  5124. },
  5125. {
  5126. name: "The sun is a lamp",
  5127. height: math.unit(250000, "miles")
  5128. },
  5129. ]
  5130. ))
  5131. characterMakers.push(() => makeCharacter(
  5132. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5133. {
  5134. front: {
  5135. height: math.unit(6, "feet"),
  5136. weight: math.unit(50, "lbs"),
  5137. name: "Front",
  5138. image: {
  5139. source: "./media/characters/huoyan/front.svg"
  5140. }
  5141. },
  5142. side: {
  5143. height: math.unit(6, "feet"),
  5144. weight: math.unit(180, "lbs"),
  5145. name: "Side",
  5146. image: {
  5147. source: "./media/characters/huoyan/side.svg"
  5148. }
  5149. },
  5150. },
  5151. [
  5152. {
  5153. name: "Chef",
  5154. height: math.unit(9, "feet")
  5155. },
  5156. {
  5157. name: "Normal",
  5158. height: math.unit(65, "feet"),
  5159. default: true
  5160. },
  5161. {
  5162. name: "Macro",
  5163. height: math.unit(780, "feet")
  5164. },
  5165. {
  5166. name: "Flaming Mountain",
  5167. height: math.unit(4.8, "miles")
  5168. },
  5169. {
  5170. name: "Celestial",
  5171. height: math.unit(765000, "miles")
  5172. },
  5173. ]
  5174. ))
  5175. characterMakers.push(() => makeCharacter(
  5176. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5177. {
  5178. front: {
  5179. height: math.unit(5 + 3 / 4, "feet"),
  5180. weight: math.unit(120, "lbs"),
  5181. name: "Front",
  5182. image: {
  5183. source: "./media/characters/tails/front.svg"
  5184. }
  5185. }
  5186. },
  5187. [
  5188. {
  5189. name: "Normal",
  5190. height: math.unit(5 + 3 / 4, "feet"),
  5191. default: true
  5192. }
  5193. ]
  5194. ))
  5195. characterMakers.push(() => makeCharacter(
  5196. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5197. {
  5198. front: {
  5199. height: math.unit(4, "feet"),
  5200. weight: math.unit(50, "lbs"),
  5201. name: "Front",
  5202. image: {
  5203. source: "./media/characters/rainy/front.svg"
  5204. }
  5205. }
  5206. },
  5207. [
  5208. {
  5209. name: "Macro",
  5210. height: math.unit(800, "feet"),
  5211. default: true
  5212. }
  5213. ]
  5214. ))
  5215. characterMakers.push(() => makeCharacter(
  5216. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5217. {
  5218. front: {
  5219. height: math.unit(6, "feet"),
  5220. weight: math.unit(150, "lbs"),
  5221. name: "Front",
  5222. image: {
  5223. source: "./media/characters/rainier/front.svg"
  5224. }
  5225. }
  5226. },
  5227. [
  5228. {
  5229. name: "Micro",
  5230. height: math.unit(2, "mm"),
  5231. default: true
  5232. }
  5233. ]
  5234. ))
  5235. characterMakers.push(() => makeCharacter(
  5236. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5237. {
  5238. front: {
  5239. height: math.unit(6, "feet"),
  5240. weight: math.unit(180, "lbs"),
  5241. name: "Front",
  5242. image: {
  5243. source: "./media/characters/andy/front.svg"
  5244. }
  5245. }
  5246. },
  5247. [
  5248. {
  5249. name: "Normal",
  5250. height: math.unit(8, "feet"),
  5251. default: true
  5252. },
  5253. {
  5254. name: "Macro",
  5255. height: math.unit(1000, "feet")
  5256. },
  5257. {
  5258. name: "Megamacro",
  5259. height: math.unit(5, "miles")
  5260. },
  5261. {
  5262. name: "Gigamacro",
  5263. height: math.unit(5000, "miles")
  5264. },
  5265. ]
  5266. ))
  5267. characterMakers.push(() => makeCharacter(
  5268. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5269. {
  5270. front: {
  5271. height: math.unit(6, "feet"),
  5272. weight: math.unit(210, "lbs"),
  5273. name: "Front",
  5274. image: {
  5275. source: "./media/characters/cimmaron/front-sfw.svg",
  5276. extra: 701 / 676,
  5277. bottom: 0.046
  5278. }
  5279. },
  5280. back: {
  5281. height: math.unit(6, "feet"),
  5282. weight: math.unit(210, "lbs"),
  5283. name: "Back",
  5284. image: {
  5285. source: "./media/characters/cimmaron/back-sfw.svg",
  5286. extra: 701 / 676,
  5287. bottom: 0.046
  5288. }
  5289. },
  5290. frontNsfw: {
  5291. height: math.unit(6, "feet"),
  5292. weight: math.unit(210, "lbs"),
  5293. name: "Front (NSFW)",
  5294. image: {
  5295. source: "./media/characters/cimmaron/front-nsfw.svg",
  5296. extra: 701 / 676,
  5297. bottom: 0.046
  5298. }
  5299. },
  5300. backNsfw: {
  5301. height: math.unit(6, "feet"),
  5302. weight: math.unit(210, "lbs"),
  5303. name: "Back (NSFW)",
  5304. image: {
  5305. source: "./media/characters/cimmaron/back-nsfw.svg",
  5306. extra: 701 / 676,
  5307. bottom: 0.046
  5308. }
  5309. },
  5310. dick: {
  5311. height: math.unit(1.714, "feet"),
  5312. name: "Dick",
  5313. image: {
  5314. source: "./media/characters/cimmaron/dick.svg"
  5315. }
  5316. },
  5317. },
  5318. [
  5319. {
  5320. name: "Normal",
  5321. height: math.unit(6, "feet"),
  5322. default: true
  5323. },
  5324. {
  5325. name: "Macro Mayor",
  5326. height: math.unit(350, "meters")
  5327. },
  5328. ]
  5329. ))
  5330. characterMakers.push(() => makeCharacter(
  5331. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5332. {
  5333. front: {
  5334. height: math.unit(6, "feet"),
  5335. weight: math.unit(200, "lbs"),
  5336. name: "Front",
  5337. image: {
  5338. source: "./media/characters/akari/front.svg",
  5339. extra: 962 / 901,
  5340. bottom: 0.04
  5341. }
  5342. }
  5343. },
  5344. [
  5345. {
  5346. name: "Micro",
  5347. height: math.unit(5, "inches"),
  5348. default: true
  5349. },
  5350. {
  5351. name: "Normal",
  5352. height: math.unit(7, "feet")
  5353. },
  5354. ]
  5355. ))
  5356. characterMakers.push(() => makeCharacter(
  5357. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5358. {
  5359. front: {
  5360. height: math.unit(6, "feet"),
  5361. weight: math.unit(140, "lbs"),
  5362. name: "Front",
  5363. image: {
  5364. source: "./media/characters/cynosura/front.svg",
  5365. extra: 896 / 847
  5366. }
  5367. },
  5368. back: {
  5369. height: math.unit(6, "feet"),
  5370. weight: math.unit(140, "lbs"),
  5371. name: "Back",
  5372. image: {
  5373. source: "./media/characters/cynosura/back.svg",
  5374. extra: 1365 / 1250
  5375. }
  5376. },
  5377. },
  5378. [
  5379. {
  5380. name: "Micro",
  5381. height: math.unit(4, "inches")
  5382. },
  5383. {
  5384. name: "Normal",
  5385. height: math.unit(5.75, "feet"),
  5386. default: true
  5387. },
  5388. {
  5389. name: "Tall",
  5390. height: math.unit(10, "feet")
  5391. },
  5392. {
  5393. name: "Big",
  5394. height: math.unit(20, "feet")
  5395. },
  5396. {
  5397. name: "Macro",
  5398. height: math.unit(50, "feet")
  5399. },
  5400. ]
  5401. ))
  5402. characterMakers.push(() => makeCharacter(
  5403. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5404. {
  5405. front: {
  5406. height: math.unit(6, "feet"),
  5407. weight: math.unit(170, "lbs"),
  5408. name: "Front",
  5409. image: {
  5410. source: "./media/characters/gin/front.svg",
  5411. extra: 1.053,
  5412. bottom: 0.025
  5413. }
  5414. },
  5415. foot: {
  5416. height: math.unit(6 / 4.25, "feet"),
  5417. name: "Foot",
  5418. image: {
  5419. source: "./media/characters/gin/foot.svg"
  5420. }
  5421. },
  5422. sole: {
  5423. height: math.unit(6 / 4.40, "feet"),
  5424. name: "Sole",
  5425. image: {
  5426. source: "./media/characters/gin/sole.svg"
  5427. }
  5428. },
  5429. },
  5430. [
  5431. {
  5432. name: "Normal",
  5433. height: math.unit(13 + 2 / 12, "feet")
  5434. },
  5435. {
  5436. name: "Macro",
  5437. height: math.unit(1500, "feet")
  5438. },
  5439. {
  5440. name: "Megamacro",
  5441. height: math.unit(200, "miles"),
  5442. default: true
  5443. },
  5444. {
  5445. name: "Gigamacro",
  5446. height: math.unit(500, "megameters")
  5447. },
  5448. {
  5449. name: "Teramacro",
  5450. height: math.unit(15, "lightyears")
  5451. }
  5452. ]
  5453. ))
  5454. characterMakers.push(() => makeCharacter(
  5455. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5456. {
  5457. front: {
  5458. height: math.unit(6 + 1 / 6, "feet"),
  5459. weight: math.unit(178, "lbs"),
  5460. name: "Front",
  5461. image: {
  5462. source: "./media/characters/guy/front.svg"
  5463. }
  5464. }
  5465. },
  5466. [
  5467. {
  5468. name: "Normal",
  5469. height: math.unit(6 + 1 / 6, "feet"),
  5470. default: true
  5471. },
  5472. {
  5473. name: "Large",
  5474. height: math.unit(25 + 7 / 12, "feet")
  5475. },
  5476. {
  5477. name: "Macro",
  5478. height: math.unit(60 + 9 / 12, "feet")
  5479. },
  5480. {
  5481. name: "Macro+",
  5482. height: math.unit(246, "feet")
  5483. },
  5484. {
  5485. name: "Macro++",
  5486. height: math.unit(878, "feet")
  5487. }
  5488. ]
  5489. ))
  5490. characterMakers.push(() => makeCharacter(
  5491. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5492. {
  5493. front: {
  5494. height: math.unit(9, "feet"),
  5495. weight: math.unit(800, "lbs"),
  5496. name: "Front",
  5497. image: {
  5498. source: "./media/characters/tiberius/front.svg",
  5499. extra: 2295 / 2071
  5500. }
  5501. },
  5502. back: {
  5503. height: math.unit(9, "feet"),
  5504. weight: math.unit(800, "lbs"),
  5505. name: "Back",
  5506. image: {
  5507. source: "./media/characters/tiberius/back.svg",
  5508. extra: 2373 / 2160
  5509. }
  5510. },
  5511. },
  5512. [
  5513. {
  5514. name: "Normal",
  5515. height: math.unit(9, "feet"),
  5516. default: true
  5517. }
  5518. ]
  5519. ))
  5520. characterMakers.push(() => makeCharacter(
  5521. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5522. {
  5523. front: {
  5524. height: math.unit(6, "feet"),
  5525. weight: math.unit(600, "lbs"),
  5526. name: "Front",
  5527. image: {
  5528. source: "./media/characters/surgo/front.svg",
  5529. extra: 3591 / 2227
  5530. }
  5531. },
  5532. back: {
  5533. height: math.unit(6, "feet"),
  5534. weight: math.unit(600, "lbs"),
  5535. name: "Back",
  5536. image: {
  5537. source: "./media/characters/surgo/back.svg",
  5538. extra: 3557 / 2228
  5539. }
  5540. },
  5541. laying: {
  5542. height: math.unit(6 * 0.85, "feet"),
  5543. weight: math.unit(600, "lbs"),
  5544. name: "Laying",
  5545. image: {
  5546. source: "./media/characters/surgo/laying.svg"
  5547. }
  5548. },
  5549. },
  5550. [
  5551. {
  5552. name: "Normal",
  5553. height: math.unit(6, "feet"),
  5554. default: true
  5555. }
  5556. ]
  5557. ))
  5558. characterMakers.push(() => makeCharacter(
  5559. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5560. {
  5561. side: {
  5562. height: math.unit(6, "feet"),
  5563. weight: math.unit(150, "lbs"),
  5564. name: "Side",
  5565. image: {
  5566. source: "./media/characters/cibus/side.svg",
  5567. extra: 800 / 400
  5568. }
  5569. },
  5570. },
  5571. [
  5572. {
  5573. name: "Normal",
  5574. height: math.unit(6, "feet"),
  5575. default: true
  5576. }
  5577. ]
  5578. ))
  5579. characterMakers.push(() => makeCharacter(
  5580. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5581. {
  5582. front: {
  5583. height: math.unit(6, "feet"),
  5584. weight: math.unit(240, "lbs"),
  5585. name: "Front",
  5586. image: {
  5587. source: "./media/characters/nibbles/front.svg"
  5588. }
  5589. },
  5590. side: {
  5591. height: math.unit(6, "feet"),
  5592. weight: math.unit(240, "lbs"),
  5593. name: "Side",
  5594. image: {
  5595. source: "./media/characters/nibbles/side.svg"
  5596. }
  5597. },
  5598. },
  5599. [
  5600. {
  5601. name: "Normal",
  5602. height: math.unit(9, "feet"),
  5603. default: true
  5604. }
  5605. ]
  5606. ))
  5607. characterMakers.push(() => makeCharacter(
  5608. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5609. {
  5610. side: {
  5611. height: math.unit(5 + 1 / 6, "feet"),
  5612. weight: math.unit(130, "lbs"),
  5613. name: "Side",
  5614. image: {
  5615. source: "./media/characters/rikky/side.svg",
  5616. extra: 851 / 801
  5617. }
  5618. },
  5619. },
  5620. [
  5621. {
  5622. name: "Normal",
  5623. height: math.unit(5 + 1 / 6, "feet")
  5624. },
  5625. {
  5626. name: "Macro",
  5627. height: math.unit(152, "feet"),
  5628. default: true
  5629. },
  5630. {
  5631. name: "Megamacro",
  5632. height: math.unit(7, "miles")
  5633. }
  5634. ]
  5635. ))
  5636. characterMakers.push(() => makeCharacter(
  5637. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5638. {
  5639. side: {
  5640. height: math.unit(370, "cm"),
  5641. weight: math.unit(350, "lbs"),
  5642. name: "Side",
  5643. image: {
  5644. source: "./media/characters/malfressa/side.svg"
  5645. }
  5646. },
  5647. walking: {
  5648. height: math.unit(370, "cm"),
  5649. weight: math.unit(350, "lbs"),
  5650. name: "Walking",
  5651. image: {
  5652. source: "./media/characters/malfressa/walking.svg"
  5653. }
  5654. },
  5655. feral: {
  5656. height: math.unit(2500, "cm"),
  5657. weight: math.unit(100000, "lbs"),
  5658. name: "Feral",
  5659. image: {
  5660. source: "./media/characters/malfressa/feral.svg",
  5661. extra: 2108 / 837,
  5662. bottom: 0.02
  5663. }
  5664. },
  5665. },
  5666. [
  5667. {
  5668. name: "Normal",
  5669. height: math.unit(370, "cm")
  5670. },
  5671. {
  5672. name: "Macro",
  5673. height: math.unit(300, "meters"),
  5674. default: true
  5675. }
  5676. ]
  5677. ))
  5678. characterMakers.push(() => makeCharacter(
  5679. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5680. {
  5681. front: {
  5682. height: math.unit(6, "feet"),
  5683. weight: math.unit(60, "kg"),
  5684. name: "Front",
  5685. image: {
  5686. source: "./media/characters/jaro/front.svg"
  5687. }
  5688. },
  5689. back: {
  5690. height: math.unit(6, "feet"),
  5691. weight: math.unit(60, "kg"),
  5692. name: "Back",
  5693. image: {
  5694. source: "./media/characters/jaro/back.svg"
  5695. }
  5696. },
  5697. },
  5698. [
  5699. {
  5700. name: "Micro",
  5701. height: math.unit(7, "inches")
  5702. },
  5703. {
  5704. name: "Normal",
  5705. height: math.unit(5.5, "feet"),
  5706. default: true
  5707. },
  5708. {
  5709. name: "Minimacro",
  5710. height: math.unit(20, "feet")
  5711. },
  5712. {
  5713. name: "Macro",
  5714. height: math.unit(200, "meters")
  5715. }
  5716. ]
  5717. ))
  5718. characterMakers.push(() => makeCharacter(
  5719. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5720. {
  5721. front: {
  5722. height: math.unit(6, "feet"),
  5723. weight: math.unit(195, "lb"),
  5724. name: "Front",
  5725. image: {
  5726. source: "./media/characters/rogue/front.svg"
  5727. }
  5728. },
  5729. },
  5730. [
  5731. {
  5732. name: "Macro",
  5733. height: math.unit(90, "feet"),
  5734. default: true
  5735. },
  5736. ]
  5737. ))
  5738. characterMakers.push(() => makeCharacter(
  5739. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5740. {
  5741. front: {
  5742. height: math.unit(5 + 8 / 12, "feet"),
  5743. weight: math.unit(140, "lb"),
  5744. name: "Front",
  5745. image: {
  5746. source: "./media/characters/piper/front.svg",
  5747. extra: 3928 / 3681
  5748. }
  5749. },
  5750. },
  5751. [
  5752. {
  5753. name: "Micro",
  5754. height: math.unit(2, "inches")
  5755. },
  5756. {
  5757. name: "Normal",
  5758. height: math.unit(5 + 8 / 12, "feet")
  5759. },
  5760. {
  5761. name: "Macro",
  5762. height: math.unit(250, "feet"),
  5763. default: true
  5764. },
  5765. {
  5766. name: "Megamacro",
  5767. height: math.unit(7, "miles")
  5768. },
  5769. ]
  5770. ))
  5771. characterMakers.push(() => makeCharacter(
  5772. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5773. {
  5774. front: {
  5775. height: math.unit(6, "feet"),
  5776. weight: math.unit(220, "lb"),
  5777. name: "Front",
  5778. image: {
  5779. source: "./media/characters/gemini/front.svg"
  5780. }
  5781. },
  5782. back: {
  5783. height: math.unit(6, "feet"),
  5784. weight: math.unit(220, "lb"),
  5785. name: "Back",
  5786. image: {
  5787. source: "./media/characters/gemini/back.svg"
  5788. }
  5789. },
  5790. kneeling: {
  5791. height: math.unit(6 / 1.5, "feet"),
  5792. weight: math.unit(220, "lb"),
  5793. name: "Kneeling",
  5794. image: {
  5795. source: "./media/characters/gemini/kneeling.svg",
  5796. bottom: 0.02
  5797. }
  5798. },
  5799. },
  5800. [
  5801. {
  5802. name: "Macro",
  5803. height: math.unit(300, "meters"),
  5804. default: true
  5805. },
  5806. {
  5807. name: "Megamacro",
  5808. height: math.unit(6900, "meters")
  5809. },
  5810. ]
  5811. ))
  5812. characterMakers.push(() => makeCharacter(
  5813. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5814. {
  5815. anthro: {
  5816. height: math.unit(2.35, "meters"),
  5817. weight: math.unit(73, "kg"),
  5818. name: "Anthro",
  5819. image: {
  5820. source: "./media/characters/alicia/anthro.svg",
  5821. extra: 2571 / 2385,
  5822. bottom: 75 / 2648
  5823. }
  5824. },
  5825. paw: {
  5826. height: math.unit(1.32, "feet"),
  5827. name: "Paw",
  5828. image: {
  5829. source: "./media/characters/alicia/paw.svg"
  5830. }
  5831. },
  5832. feral: {
  5833. height: math.unit(1.69, "meters"),
  5834. weight: math.unit(73, "kg"),
  5835. name: "Feral",
  5836. image: {
  5837. source: "./media/characters/alicia/feral.svg",
  5838. extra: 2123 / 1715,
  5839. bottom: 222 / 2349
  5840. }
  5841. },
  5842. },
  5843. [
  5844. {
  5845. name: "Normal",
  5846. height: math.unit(2.35, "meters")
  5847. },
  5848. {
  5849. name: "Macro",
  5850. height: math.unit(60, "meters"),
  5851. default: true
  5852. },
  5853. {
  5854. name: "Megamacro",
  5855. height: math.unit(10000, "kilometers")
  5856. },
  5857. ]
  5858. ))
  5859. characterMakers.push(() => makeCharacter(
  5860. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5861. {
  5862. front: {
  5863. height: math.unit(7, "feet"),
  5864. weight: math.unit(250, "lbs"),
  5865. name: "Front",
  5866. image: {
  5867. source: "./media/characters/archy/front.svg"
  5868. }
  5869. }
  5870. },
  5871. [
  5872. {
  5873. name: "Micro",
  5874. height: math.unit(1, "inch")
  5875. },
  5876. {
  5877. name: "Shorty",
  5878. height: math.unit(5, "feet")
  5879. },
  5880. {
  5881. name: "Normal",
  5882. height: math.unit(7, "feet")
  5883. },
  5884. {
  5885. name: "Macro",
  5886. height: math.unit(600, "meters"),
  5887. default: true
  5888. },
  5889. {
  5890. name: "Megamacro",
  5891. height: math.unit(1, "mile")
  5892. },
  5893. ]
  5894. ))
  5895. characterMakers.push(() => makeCharacter(
  5896. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5897. {
  5898. front: {
  5899. height: math.unit(1.65, "meters"),
  5900. weight: math.unit(74, "kg"),
  5901. name: "Front",
  5902. image: {
  5903. source: "./media/characters/berri/front.svg",
  5904. extra: 857 / 837,
  5905. bottom: 18 / 877
  5906. }
  5907. },
  5908. bum: {
  5909. height: math.unit(1.46, "feet"),
  5910. name: "Bum",
  5911. image: {
  5912. source: "./media/characters/berri/bum.svg"
  5913. }
  5914. },
  5915. mouth: {
  5916. height: math.unit(0.44, "feet"),
  5917. name: "Mouth",
  5918. image: {
  5919. source: "./media/characters/berri/mouth.svg"
  5920. }
  5921. },
  5922. paw: {
  5923. height: math.unit(0.826, "feet"),
  5924. name: "Paw",
  5925. image: {
  5926. source: "./media/characters/berri/paw.svg"
  5927. }
  5928. },
  5929. },
  5930. [
  5931. {
  5932. name: "Normal",
  5933. height: math.unit(1.65, "meters")
  5934. },
  5935. {
  5936. name: "Macro",
  5937. height: math.unit(60, "m"),
  5938. default: true
  5939. },
  5940. {
  5941. name: "Megamacro",
  5942. height: math.unit(9.213, "km")
  5943. },
  5944. {
  5945. name: "Planet Eater",
  5946. height: math.unit(489, "megameters")
  5947. },
  5948. {
  5949. name: "Teramacro",
  5950. height: math.unit(2471635000000, "meters")
  5951. },
  5952. {
  5953. name: "Examacro",
  5954. height: math.unit(8.0624e+26, "meters")
  5955. }
  5956. ]
  5957. ))
  5958. characterMakers.push(() => makeCharacter(
  5959. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5960. {
  5961. front: {
  5962. height: math.unit(1.72, "meters"),
  5963. weight: math.unit(68, "kg"),
  5964. name: "Front",
  5965. image: {
  5966. source: "./media/characters/lexi/front.svg"
  5967. }
  5968. }
  5969. },
  5970. [
  5971. {
  5972. name: "Very Smol",
  5973. height: math.unit(10, "mm")
  5974. },
  5975. {
  5976. name: "Micro",
  5977. height: math.unit(6.8, "cm"),
  5978. default: true
  5979. },
  5980. {
  5981. name: "Normal",
  5982. height: math.unit(1.72, "m")
  5983. }
  5984. ]
  5985. ))
  5986. characterMakers.push(() => makeCharacter(
  5987. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5988. {
  5989. front: {
  5990. height: math.unit(1.69, "meters"),
  5991. weight: math.unit(68, "kg"),
  5992. name: "Front",
  5993. image: {
  5994. source: "./media/characters/martin/front.svg",
  5995. extra: 596 / 581
  5996. }
  5997. }
  5998. },
  5999. [
  6000. {
  6001. name: "Micro",
  6002. height: math.unit(6.85, "cm"),
  6003. default: true
  6004. },
  6005. {
  6006. name: "Normal",
  6007. height: math.unit(1.69, "m")
  6008. }
  6009. ]
  6010. ))
  6011. characterMakers.push(() => makeCharacter(
  6012. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6013. {
  6014. front: {
  6015. height: math.unit(1.69, "meters"),
  6016. weight: math.unit(68, "kg"),
  6017. name: "Front",
  6018. image: {
  6019. source: "./media/characters/juno/front.svg"
  6020. }
  6021. }
  6022. },
  6023. [
  6024. {
  6025. name: "Micro",
  6026. height: math.unit(7, "cm")
  6027. },
  6028. {
  6029. name: "Normal",
  6030. height: math.unit(1.89, "m")
  6031. },
  6032. {
  6033. name: "Macro",
  6034. height: math.unit(353, "meters"),
  6035. default: true
  6036. }
  6037. ]
  6038. ))
  6039. characterMakers.push(() => makeCharacter(
  6040. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6041. {
  6042. front: {
  6043. height: math.unit(1.93, "meters"),
  6044. weight: math.unit(83, "kg"),
  6045. name: "Front",
  6046. image: {
  6047. source: "./media/characters/samantha/front.svg"
  6048. }
  6049. },
  6050. frontClothed: {
  6051. height: math.unit(1.93, "meters"),
  6052. weight: math.unit(83, "kg"),
  6053. name: "Front (Clothed)",
  6054. image: {
  6055. source: "./media/characters/samantha/front-clothed.svg"
  6056. }
  6057. },
  6058. back: {
  6059. height: math.unit(1.93, "meters"),
  6060. weight: math.unit(83, "kg"),
  6061. name: "Back",
  6062. image: {
  6063. source: "./media/characters/samantha/back.svg"
  6064. }
  6065. },
  6066. },
  6067. [
  6068. {
  6069. name: "Normal",
  6070. height: math.unit(1.93, "m")
  6071. },
  6072. {
  6073. name: "Macro",
  6074. height: math.unit(74, "meters"),
  6075. default: true
  6076. },
  6077. {
  6078. name: "Macro+",
  6079. height: math.unit(223, "meters"),
  6080. },
  6081. {
  6082. name: "Megamacro",
  6083. height: math.unit(8381, "meters"),
  6084. },
  6085. {
  6086. name: "Megamacro+",
  6087. height: math.unit(12000, "kilometers")
  6088. },
  6089. ]
  6090. ))
  6091. characterMakers.push(() => makeCharacter(
  6092. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6093. {
  6094. front: {
  6095. height: math.unit(1.92, "meters"),
  6096. weight: math.unit(80, "kg"),
  6097. name: "Front",
  6098. image: {
  6099. source: "./media/characters/dr-clay/front.svg"
  6100. }
  6101. },
  6102. frontClothed: {
  6103. height: math.unit(1.92, "meters"),
  6104. weight: math.unit(80, "kg"),
  6105. name: "Front (Clothed)",
  6106. image: {
  6107. source: "./media/characters/dr-clay/front-clothed.svg"
  6108. }
  6109. }
  6110. },
  6111. [
  6112. {
  6113. name: "Normal",
  6114. height: math.unit(1.92, "m")
  6115. },
  6116. {
  6117. name: "Macro",
  6118. height: math.unit(214, "meters"),
  6119. default: true
  6120. },
  6121. {
  6122. name: "Macro+",
  6123. height: math.unit(12.237, "meters"),
  6124. },
  6125. {
  6126. name: "Megamacro",
  6127. height: math.unit(557, "megameters"),
  6128. },
  6129. {
  6130. name: "Unimaginable",
  6131. height: math.unit(120e9, "lightyears")
  6132. },
  6133. ]
  6134. ))
  6135. characterMakers.push(() => makeCharacter(
  6136. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6137. {
  6138. front: {
  6139. height: math.unit(2, "meters"),
  6140. weight: math.unit(80, "kg"),
  6141. name: "Front",
  6142. image: {
  6143. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6144. }
  6145. }
  6146. },
  6147. [
  6148. {
  6149. name: "Teramacro",
  6150. height: math.unit(500000, "lightyears"),
  6151. default: true
  6152. },
  6153. ]
  6154. ))
  6155. characterMakers.push(() => makeCharacter(
  6156. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6157. {
  6158. front: {
  6159. height: math.unit(2, "meters"),
  6160. weight: math.unit(150, "kg"),
  6161. name: "Front",
  6162. image: {
  6163. source: "./media/characters/vemus/front.svg",
  6164. extra: 2384 / 2084,
  6165. bottom: 0.0123
  6166. }
  6167. }
  6168. },
  6169. [
  6170. {
  6171. name: "Normal",
  6172. height: math.unit(3.75, "meters"),
  6173. default: true
  6174. },
  6175. {
  6176. name: "Big",
  6177. height: math.unit(8, "meters")
  6178. },
  6179. {
  6180. name: "Macro",
  6181. height: math.unit(100, "meters")
  6182. },
  6183. {
  6184. name: "Macro+",
  6185. height: math.unit(1500, "meters")
  6186. },
  6187. {
  6188. name: "Stellar",
  6189. height: math.unit(14e8, "meters")
  6190. },
  6191. ]
  6192. ))
  6193. characterMakers.push(() => makeCharacter(
  6194. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6195. {
  6196. front: {
  6197. height: math.unit(2, "meters"),
  6198. weight: math.unit(70, "kg"),
  6199. name: "Front",
  6200. image: {
  6201. source: "./media/characters/beherit/front.svg",
  6202. extra: 1408 / 1242
  6203. }
  6204. }
  6205. },
  6206. [
  6207. {
  6208. name: "Normal",
  6209. height: math.unit(6, "feet")
  6210. },
  6211. {
  6212. name: "Lorg",
  6213. height: math.unit(25, "feet"),
  6214. default: true
  6215. },
  6216. {
  6217. name: "Lorger",
  6218. height: math.unit(75, "feet")
  6219. },
  6220. {
  6221. name: "Macro",
  6222. height: math.unit(200, "meters")
  6223. },
  6224. ]
  6225. ))
  6226. characterMakers.push(() => makeCharacter(
  6227. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6228. {
  6229. front: {
  6230. height: math.unit(2, "meters"),
  6231. weight: math.unit(150, "kg"),
  6232. name: "Front",
  6233. image: {
  6234. source: "./media/characters/everett/front.svg",
  6235. extra: 2038 / 1737,
  6236. bottom: 0.03
  6237. }
  6238. },
  6239. paw: {
  6240. height: math.unit(2 / 3.6, "meters"),
  6241. name: "Paw",
  6242. image: {
  6243. source: "./media/characters/everett/paw.svg"
  6244. }
  6245. },
  6246. },
  6247. [
  6248. {
  6249. name: "Normal",
  6250. height: math.unit(15, "feet"),
  6251. default: true
  6252. },
  6253. {
  6254. name: "Lorg",
  6255. height: math.unit(70, "feet"),
  6256. default: true
  6257. },
  6258. {
  6259. name: "Lorger",
  6260. height: math.unit(250, "feet")
  6261. },
  6262. {
  6263. name: "Macro",
  6264. height: math.unit(500, "meters")
  6265. },
  6266. ]
  6267. ))
  6268. characterMakers.push(() => makeCharacter(
  6269. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6270. {
  6271. front: {
  6272. height: math.unit(2, "meters"),
  6273. weight: math.unit(86, "kg"),
  6274. name: "Front",
  6275. image: {
  6276. source: "./media/characters/rose/front.svg",
  6277. extra: 350/335,
  6278. bottom: 10/360
  6279. }
  6280. },
  6281. frontAlt: {
  6282. height: math.unit(1.6, "meters"),
  6283. weight: math.unit(86, "kg"),
  6284. name: "Front (Alt)",
  6285. image: {
  6286. source: "./media/characters/rose/front-alt.svg",
  6287. extra: 299/283,
  6288. bottom: 3/302
  6289. }
  6290. },
  6291. plush: {
  6292. height: math.unit(2, "meters"),
  6293. weight: math.unit(86/3, "kg"),
  6294. name: "Plush",
  6295. image: {
  6296. source: "./media/characters/rose/plush.svg",
  6297. extra: 361/337,
  6298. bottom: 11/372
  6299. }
  6300. },
  6301. },
  6302. [
  6303. {
  6304. name: "Mini-Micro",
  6305. height: math.unit(1, "cm")
  6306. },
  6307. {
  6308. name: "Micro",
  6309. height: math.unit(3.5, "inches"),
  6310. default: true
  6311. },
  6312. {
  6313. name: "Normal",
  6314. height: math.unit(6 + 1 / 6, "feet")
  6315. },
  6316. {
  6317. name: "Mini-Macro",
  6318. height: math.unit(9 + 10 / 12, "feet")
  6319. },
  6320. ]
  6321. ))
  6322. characterMakers.push(() => makeCharacter(
  6323. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6324. {
  6325. front: {
  6326. height: math.unit(2, "meters"),
  6327. weight: math.unit(350, "lbs"),
  6328. name: "Front",
  6329. image: {
  6330. source: "./media/characters/regal/front.svg"
  6331. }
  6332. },
  6333. back: {
  6334. height: math.unit(2, "meters"),
  6335. weight: math.unit(350, "lbs"),
  6336. name: "Back",
  6337. image: {
  6338. source: "./media/characters/regal/back.svg"
  6339. }
  6340. },
  6341. },
  6342. [
  6343. {
  6344. name: "Macro",
  6345. height: math.unit(350, "feet"),
  6346. default: true
  6347. }
  6348. ]
  6349. ))
  6350. characterMakers.push(() => makeCharacter(
  6351. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6352. {
  6353. front: {
  6354. height: math.unit(4 + 11 / 12, "feet"),
  6355. weight: math.unit(100, "lbs"),
  6356. name: "Front",
  6357. image: {
  6358. source: "./media/characters/opal/front.svg"
  6359. }
  6360. },
  6361. frontAlt: {
  6362. height: math.unit(4 + 11 / 12, "feet"),
  6363. weight: math.unit(100, "lbs"),
  6364. name: "Front (Alt)",
  6365. image: {
  6366. source: "./media/characters/opal/front-alt.svg"
  6367. }
  6368. },
  6369. },
  6370. [
  6371. {
  6372. name: "Small",
  6373. height: math.unit(4 + 11 / 12, "feet")
  6374. },
  6375. {
  6376. name: "Normal",
  6377. height: math.unit(20, "feet"),
  6378. default: true
  6379. },
  6380. {
  6381. name: "Macro",
  6382. height: math.unit(120, "feet")
  6383. },
  6384. {
  6385. name: "Megamacro",
  6386. height: math.unit(80, "miles")
  6387. },
  6388. {
  6389. name: "True Size",
  6390. height: math.unit(100000, "lightyears")
  6391. },
  6392. ]
  6393. ))
  6394. characterMakers.push(() => makeCharacter(
  6395. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6396. {
  6397. front: {
  6398. height: math.unit(6, "feet"),
  6399. weight: math.unit(200, "lbs"),
  6400. name: "Front",
  6401. image: {
  6402. source: "./media/characters/vector-wuff/front.svg"
  6403. }
  6404. }
  6405. },
  6406. [
  6407. {
  6408. name: "Normal",
  6409. height: math.unit(2.8, "meters")
  6410. },
  6411. {
  6412. name: "Macro",
  6413. height: math.unit(450, "meters"),
  6414. default: true
  6415. },
  6416. {
  6417. name: "Megamacro",
  6418. height: math.unit(15, "kilometers")
  6419. }
  6420. ]
  6421. ))
  6422. characterMakers.push(() => makeCharacter(
  6423. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6424. {
  6425. front: {
  6426. height: math.unit(6, "feet"),
  6427. weight: math.unit(256, "lbs"),
  6428. name: "Front",
  6429. image: {
  6430. source: "./media/characters/dannik/front.svg"
  6431. }
  6432. }
  6433. },
  6434. [
  6435. {
  6436. name: "Macro",
  6437. height: math.unit(69.57, "meters"),
  6438. default: true
  6439. },
  6440. ]
  6441. ))
  6442. characterMakers.push(() => makeCharacter(
  6443. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6444. {
  6445. front: {
  6446. height: math.unit(6, "feet"),
  6447. weight: math.unit(120, "lbs"),
  6448. name: "Front",
  6449. image: {
  6450. source: "./media/characters/azura-saharah/front.svg"
  6451. }
  6452. },
  6453. back: {
  6454. height: math.unit(6, "feet"),
  6455. weight: math.unit(120, "lbs"),
  6456. name: "Back",
  6457. image: {
  6458. source: "./media/characters/azura-saharah/back.svg"
  6459. }
  6460. },
  6461. },
  6462. [
  6463. {
  6464. name: "Macro",
  6465. height: math.unit(100, "feet"),
  6466. default: true
  6467. },
  6468. ]
  6469. ))
  6470. characterMakers.push(() => makeCharacter(
  6471. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6472. {
  6473. side: {
  6474. height: math.unit(5 + 4 / 12, "feet"),
  6475. weight: math.unit(163, "lbs"),
  6476. name: "Side",
  6477. image: {
  6478. source: "./media/characters/kennedy/side.svg"
  6479. }
  6480. }
  6481. },
  6482. [
  6483. {
  6484. name: "Standard Doggo",
  6485. height: math.unit(5 + 4 / 12, "feet")
  6486. },
  6487. {
  6488. name: "Big Doggo",
  6489. height: math.unit(25 + 3 / 12, "feet"),
  6490. default: true
  6491. },
  6492. ]
  6493. ))
  6494. characterMakers.push(() => makeCharacter(
  6495. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6496. {
  6497. front: {
  6498. height: math.unit(6, "feet"),
  6499. weight: math.unit(90, "lbs"),
  6500. name: "Front",
  6501. image: {
  6502. source: "./media/characters/odi-lunar/front.svg"
  6503. }
  6504. }
  6505. },
  6506. [
  6507. {
  6508. name: "Micro",
  6509. height: math.unit(3, "inches"),
  6510. default: true
  6511. },
  6512. {
  6513. name: "Normal",
  6514. height: math.unit(5.5, "feet")
  6515. }
  6516. ]
  6517. ))
  6518. characterMakers.push(() => makeCharacter(
  6519. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6520. {
  6521. back: {
  6522. height: math.unit(6, "feet"),
  6523. weight: math.unit(220, "lbs"),
  6524. name: "Back",
  6525. image: {
  6526. source: "./media/characters/mandake/back.svg"
  6527. }
  6528. }
  6529. },
  6530. [
  6531. {
  6532. name: "Normal",
  6533. height: math.unit(7, "feet"),
  6534. default: true
  6535. },
  6536. {
  6537. name: "Macro",
  6538. height: math.unit(78, "feet")
  6539. },
  6540. {
  6541. name: "Macro+",
  6542. height: math.unit(300, "meters")
  6543. },
  6544. {
  6545. name: "Macro++",
  6546. height: math.unit(2400, "feet")
  6547. },
  6548. {
  6549. name: "Megamacro",
  6550. height: math.unit(5167, "meters")
  6551. },
  6552. {
  6553. name: "Gigamacro",
  6554. height: math.unit(41769, "miles")
  6555. },
  6556. ]
  6557. ))
  6558. characterMakers.push(() => makeCharacter(
  6559. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6560. {
  6561. front: {
  6562. height: math.unit(6, "feet"),
  6563. weight: math.unit(120, "lbs"),
  6564. name: "Front",
  6565. image: {
  6566. source: "./media/characters/yozey/front.svg"
  6567. }
  6568. },
  6569. frontAlt: {
  6570. height: math.unit(6, "feet"),
  6571. weight: math.unit(120, "lbs"),
  6572. name: "Front (Alt)",
  6573. image: {
  6574. source: "./media/characters/yozey/front-alt.svg"
  6575. }
  6576. },
  6577. side: {
  6578. height: math.unit(6, "feet"),
  6579. weight: math.unit(120, "lbs"),
  6580. name: "Side",
  6581. image: {
  6582. source: "./media/characters/yozey/side.svg"
  6583. }
  6584. },
  6585. },
  6586. [
  6587. {
  6588. name: "Micro",
  6589. height: math.unit(3, "inches"),
  6590. default: true
  6591. },
  6592. {
  6593. name: "Normal",
  6594. height: math.unit(6, "feet")
  6595. }
  6596. ]
  6597. ))
  6598. characterMakers.push(() => makeCharacter(
  6599. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6600. {
  6601. front: {
  6602. height: math.unit(6, "feet"),
  6603. weight: math.unit(103, "lbs"),
  6604. name: "Front",
  6605. image: {
  6606. source: "./media/characters/valeska-voss/front.svg"
  6607. }
  6608. }
  6609. },
  6610. [
  6611. {
  6612. name: "Mini-Sized Sub",
  6613. height: math.unit(3.1, "inches")
  6614. },
  6615. {
  6616. name: "Mid-Sized Sub",
  6617. height: math.unit(6.2, "inches")
  6618. },
  6619. {
  6620. name: "Full-Sized Sub",
  6621. height: math.unit(9.3, "inches")
  6622. },
  6623. {
  6624. name: "Normal",
  6625. height: math.unit(5 + 2 / 12, "foot"),
  6626. default: true
  6627. },
  6628. ]
  6629. ))
  6630. characterMakers.push(() => makeCharacter(
  6631. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6632. {
  6633. front: {
  6634. height: math.unit(6, "feet"),
  6635. weight: math.unit(160, "lbs"),
  6636. name: "Front",
  6637. image: {
  6638. source: "./media/characters/gene-zeta/front.svg",
  6639. extra: 3006 / 2826,
  6640. bottom: 182 / 3188
  6641. }
  6642. }
  6643. },
  6644. [
  6645. {
  6646. name: "Micro",
  6647. height: math.unit(6, "inches")
  6648. },
  6649. {
  6650. name: "Normal",
  6651. height: math.unit(5 + 11 / 12, "foot"),
  6652. default: true
  6653. },
  6654. {
  6655. name: "Macro",
  6656. height: math.unit(140, "feet")
  6657. },
  6658. {
  6659. name: "Supercharged",
  6660. height: math.unit(2500, "feet")
  6661. },
  6662. ]
  6663. ))
  6664. characterMakers.push(() => makeCharacter(
  6665. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6666. {
  6667. front: {
  6668. height: math.unit(6, "feet"),
  6669. weight: math.unit(350, "lbs"),
  6670. name: "Front",
  6671. image: {
  6672. source: "./media/characters/razinox/front.svg",
  6673. extra: 1686 / 1548,
  6674. bottom: 28.2 / 1868
  6675. }
  6676. },
  6677. back: {
  6678. height: math.unit(6, "feet"),
  6679. weight: math.unit(350, "lbs"),
  6680. name: "Back",
  6681. image: {
  6682. source: "./media/characters/razinox/back.svg",
  6683. extra: 1660 / 1590,
  6684. bottom: 15 / 1665
  6685. }
  6686. },
  6687. },
  6688. [
  6689. {
  6690. name: "Normal",
  6691. height: math.unit(10 + 8 / 12, "foot")
  6692. },
  6693. {
  6694. name: "Minimacro",
  6695. height: math.unit(15, "foot")
  6696. },
  6697. {
  6698. name: "Macro",
  6699. height: math.unit(60, "foot"),
  6700. default: true
  6701. },
  6702. {
  6703. name: "Megamacro",
  6704. height: math.unit(5, "miles")
  6705. },
  6706. {
  6707. name: "Gigamacro",
  6708. height: math.unit(6000, "miles")
  6709. },
  6710. ]
  6711. ))
  6712. characterMakers.push(() => makeCharacter(
  6713. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6714. {
  6715. front: {
  6716. height: math.unit(6, "feet"),
  6717. weight: math.unit(150, "lbs"),
  6718. name: "Front",
  6719. image: {
  6720. source: "./media/characters/cobalt/front.svg"
  6721. }
  6722. }
  6723. },
  6724. [
  6725. {
  6726. name: "Normal",
  6727. height: math.unit(8 + 1 / 12, "foot")
  6728. },
  6729. {
  6730. name: "Macro",
  6731. height: math.unit(111, "foot"),
  6732. default: true
  6733. },
  6734. {
  6735. name: "Supracosmic",
  6736. height: math.unit(1e42, "feet")
  6737. },
  6738. ]
  6739. ))
  6740. characterMakers.push(() => makeCharacter(
  6741. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6742. {
  6743. front: {
  6744. height: math.unit(6, "feet"),
  6745. weight: math.unit(140, "lbs"),
  6746. name: "Front",
  6747. image: {
  6748. source: "./media/characters/amanda/front.svg"
  6749. }
  6750. }
  6751. },
  6752. [
  6753. {
  6754. name: "Micro",
  6755. height: math.unit(5, "inches"),
  6756. default: true
  6757. },
  6758. ]
  6759. ))
  6760. characterMakers.push(() => makeCharacter(
  6761. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6762. {
  6763. front: {
  6764. height: math.unit(2.75, "meters"),
  6765. weight: math.unit(1200, "lb"),
  6766. name: "Front",
  6767. image: {
  6768. source: "./media/characters/teal/front.svg",
  6769. extra: 2463 / 2320,
  6770. bottom: 166 / 2629
  6771. }
  6772. },
  6773. back: {
  6774. height: math.unit(2.75, "meters"),
  6775. weight: math.unit(1200, "lb"),
  6776. name: "Back",
  6777. image: {
  6778. source: "./media/characters/teal/back.svg",
  6779. extra: 2580 / 2489,
  6780. bottom: 151 / 2731
  6781. }
  6782. },
  6783. sitting: {
  6784. height: math.unit(1.9, "meters"),
  6785. weight: math.unit(1200, "lb"),
  6786. name: "Sitting",
  6787. image: {
  6788. source: "./media/characters/teal/sitting.svg",
  6789. extra: 623 / 590,
  6790. bottom: 121 / 744
  6791. }
  6792. },
  6793. standing: {
  6794. height: math.unit(2.75, "meters"),
  6795. weight: math.unit(1200, "lb"),
  6796. name: "Standing",
  6797. image: {
  6798. source: "./media/characters/teal/standing.svg",
  6799. extra: 923 / 893,
  6800. bottom: 60 / 983
  6801. }
  6802. },
  6803. stretching: {
  6804. height: math.unit(3.65, "meters"),
  6805. weight: math.unit(1200, "lb"),
  6806. name: "Stretching",
  6807. image: {
  6808. source: "./media/characters/teal/stretching.svg",
  6809. extra: 1276 / 1244,
  6810. bottom: 0 / 1276
  6811. }
  6812. },
  6813. legged: {
  6814. height: math.unit(1.3, "meters"),
  6815. weight: math.unit(100, "lb"),
  6816. name: "Legged",
  6817. image: {
  6818. source: "./media/characters/teal/legged.svg",
  6819. extra: 462 / 437,
  6820. bottom: 24 / 486
  6821. }
  6822. },
  6823. naga: {
  6824. height: math.unit(5.4, "meters"),
  6825. weight: math.unit(4000, "lb"),
  6826. name: "Naga",
  6827. image: {
  6828. source: "./media/characters/teal/naga.svg",
  6829. extra: 1902 / 1858,
  6830. bottom: 0 / 1902
  6831. }
  6832. },
  6833. hand: {
  6834. height: math.unit(0.52, "meters"),
  6835. name: "Hand",
  6836. image: {
  6837. source: "./media/characters/teal/hand.svg"
  6838. }
  6839. },
  6840. maw: {
  6841. height: math.unit(0.43, "meters"),
  6842. name: "Maw",
  6843. image: {
  6844. source: "./media/characters/teal/maw.svg"
  6845. }
  6846. },
  6847. slit: {
  6848. height: math.unit(0.25, "meters"),
  6849. name: "Slit",
  6850. image: {
  6851. source: "./media/characters/teal/slit.svg"
  6852. }
  6853. },
  6854. },
  6855. [
  6856. {
  6857. name: "Normal",
  6858. height: math.unit(2.75, "meters"),
  6859. default: true
  6860. },
  6861. {
  6862. name: "Macro",
  6863. height: math.unit(300, "feet")
  6864. },
  6865. {
  6866. name: "Macro+",
  6867. height: math.unit(2000, "feet")
  6868. },
  6869. ]
  6870. ))
  6871. characterMakers.push(() => makeCharacter(
  6872. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6873. {
  6874. frontCat: {
  6875. height: math.unit(6, "feet"),
  6876. weight: math.unit(180, "lbs"),
  6877. name: "Front (Cat)",
  6878. image: {
  6879. source: "./media/characters/ravin-amulet/front-cat.svg"
  6880. }
  6881. },
  6882. frontCatAlt: {
  6883. height: math.unit(6, "feet"),
  6884. weight: math.unit(180, "lbs"),
  6885. name: "Front (Alt, Cat)",
  6886. image: {
  6887. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6888. }
  6889. },
  6890. frontWerewolf: {
  6891. height: math.unit(6 * 1.2, "feet"),
  6892. weight: math.unit(225, "lbs"),
  6893. name: "Front (Werewolf)",
  6894. image: {
  6895. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6896. }
  6897. },
  6898. backWerewolf: {
  6899. height: math.unit(6 * 1.2, "feet"),
  6900. weight: math.unit(225, "lbs"),
  6901. name: "Back (Werewolf)",
  6902. image: {
  6903. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6904. }
  6905. },
  6906. },
  6907. [
  6908. {
  6909. name: "Nano",
  6910. height: math.unit(1, "micrometer")
  6911. },
  6912. {
  6913. name: "Micro",
  6914. height: math.unit(1, "inch")
  6915. },
  6916. {
  6917. name: "Normal",
  6918. height: math.unit(6, "feet"),
  6919. default: true
  6920. },
  6921. {
  6922. name: "Macro",
  6923. height: math.unit(60, "feet")
  6924. }
  6925. ]
  6926. ))
  6927. characterMakers.push(() => makeCharacter(
  6928. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6929. {
  6930. front: {
  6931. height: math.unit(6, "feet"),
  6932. weight: math.unit(165, "lbs"),
  6933. name: "Front",
  6934. image: {
  6935. source: "./media/characters/fluoresce/front.svg"
  6936. }
  6937. }
  6938. },
  6939. [
  6940. {
  6941. name: "Micro",
  6942. height: math.unit(6, "cm")
  6943. },
  6944. {
  6945. name: "Normal",
  6946. height: math.unit(5 + 7 / 12, "feet"),
  6947. default: true
  6948. },
  6949. {
  6950. name: "Macro",
  6951. height: math.unit(56, "feet")
  6952. },
  6953. {
  6954. name: "Megamacro",
  6955. height: math.unit(1.9, "miles")
  6956. },
  6957. ]
  6958. ))
  6959. characterMakers.push(() => makeCharacter(
  6960. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6961. {
  6962. front: {
  6963. height: math.unit(9 + 6 / 12, "feet"),
  6964. weight: math.unit(523, "lbs"),
  6965. name: "Side",
  6966. image: {
  6967. source: "./media/characters/aurora/side.svg"
  6968. }
  6969. }
  6970. },
  6971. [
  6972. {
  6973. name: "Normal",
  6974. height: math.unit(9 + 6 / 12, "feet")
  6975. },
  6976. {
  6977. name: "Macro",
  6978. height: math.unit(96, "feet"),
  6979. default: true
  6980. },
  6981. {
  6982. name: "Macro+",
  6983. height: math.unit(243, "feet")
  6984. },
  6985. ]
  6986. ))
  6987. characterMakers.push(() => makeCharacter(
  6988. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6989. {
  6990. front: {
  6991. height: math.unit(194, "cm"),
  6992. weight: math.unit(90, "kg"),
  6993. name: "Front",
  6994. image: {
  6995. source: "./media/characters/ranek/front.svg"
  6996. }
  6997. },
  6998. side: {
  6999. height: math.unit(194, "cm"),
  7000. weight: math.unit(90, "kg"),
  7001. name: "Side",
  7002. image: {
  7003. source: "./media/characters/ranek/side.svg"
  7004. }
  7005. },
  7006. back: {
  7007. height: math.unit(194, "cm"),
  7008. weight: math.unit(90, "kg"),
  7009. name: "Back",
  7010. image: {
  7011. source: "./media/characters/ranek/back.svg"
  7012. }
  7013. },
  7014. feral: {
  7015. height: math.unit(30, "cm"),
  7016. weight: math.unit(1.6, "lbs"),
  7017. name: "Feral",
  7018. image: {
  7019. source: "./media/characters/ranek/feral.svg"
  7020. }
  7021. },
  7022. },
  7023. [
  7024. {
  7025. name: "Normal",
  7026. height: math.unit(194, "cm"),
  7027. default: true
  7028. },
  7029. {
  7030. name: "Macro",
  7031. height: math.unit(100, "meters")
  7032. },
  7033. ]
  7034. ))
  7035. characterMakers.push(() => makeCharacter(
  7036. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7037. {
  7038. front: {
  7039. height: math.unit(5 + 6 / 12, "feet"),
  7040. weight: math.unit(153, "lbs"),
  7041. name: "Front",
  7042. image: {
  7043. source: "./media/characters/andrew-cooper/front.svg"
  7044. }
  7045. },
  7046. },
  7047. [
  7048. {
  7049. name: "Nano",
  7050. height: math.unit(1, "mm")
  7051. },
  7052. {
  7053. name: "Micro",
  7054. height: math.unit(2, "inches")
  7055. },
  7056. {
  7057. name: "Normal",
  7058. height: math.unit(5 + 6 / 12, "feet"),
  7059. default: true
  7060. }
  7061. ]
  7062. ))
  7063. characterMakers.push(() => makeCharacter(
  7064. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7065. {
  7066. front: {
  7067. height: math.unit(6, "feet"),
  7068. weight: math.unit(180, "lbs"),
  7069. name: "Front",
  7070. image: {
  7071. source: "./media/characters/akane-sato/front.svg",
  7072. extra: 1219 / 1140
  7073. }
  7074. },
  7075. back: {
  7076. height: math.unit(6, "feet"),
  7077. weight: math.unit(180, "lbs"),
  7078. name: "Back",
  7079. image: {
  7080. source: "./media/characters/akane-sato/back.svg",
  7081. extra: 1219 / 1170
  7082. }
  7083. },
  7084. },
  7085. [
  7086. {
  7087. name: "Normal",
  7088. height: math.unit(2.5, "meters")
  7089. },
  7090. {
  7091. name: "Macro",
  7092. height: math.unit(250, "meters"),
  7093. default: true
  7094. },
  7095. {
  7096. name: "Megamacro",
  7097. height: math.unit(25, "km")
  7098. },
  7099. ]
  7100. ))
  7101. characterMakers.push(() => makeCharacter(
  7102. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7103. {
  7104. front: {
  7105. height: math.unit(6, "feet"),
  7106. weight: math.unit(65, "kg"),
  7107. name: "Front",
  7108. image: {
  7109. source: "./media/characters/rook/front.svg",
  7110. extra: 960 / 950
  7111. }
  7112. }
  7113. },
  7114. [
  7115. {
  7116. name: "Normal",
  7117. height: math.unit(8.8, "feet")
  7118. },
  7119. {
  7120. name: "Macro",
  7121. height: math.unit(88, "feet"),
  7122. default: true
  7123. },
  7124. {
  7125. name: "Megamacro",
  7126. height: math.unit(8, "miles")
  7127. },
  7128. ]
  7129. ))
  7130. characterMakers.push(() => makeCharacter(
  7131. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7132. {
  7133. front: {
  7134. height: math.unit(12 + 2 / 12, "feet"),
  7135. weight: math.unit(808, "lbs"),
  7136. name: "Front",
  7137. image: {
  7138. source: "./media/characters/prodigy/front.svg"
  7139. }
  7140. }
  7141. },
  7142. [
  7143. {
  7144. name: "Normal",
  7145. height: math.unit(12 + 2 / 12, "feet"),
  7146. default: true
  7147. },
  7148. {
  7149. name: "Macro",
  7150. height: math.unit(143, "feet")
  7151. },
  7152. {
  7153. name: "Macro+",
  7154. height: math.unit(400, "feet")
  7155. },
  7156. ]
  7157. ))
  7158. characterMakers.push(() => makeCharacter(
  7159. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7160. {
  7161. front: {
  7162. height: math.unit(6, "feet"),
  7163. weight: math.unit(225, "lbs"),
  7164. name: "Front",
  7165. image: {
  7166. source: "./media/characters/daniel/front.svg"
  7167. }
  7168. },
  7169. leaning: {
  7170. height: math.unit(6, "feet"),
  7171. weight: math.unit(225, "lbs"),
  7172. name: "Leaning",
  7173. image: {
  7174. source: "./media/characters/daniel/leaning.svg"
  7175. }
  7176. },
  7177. },
  7178. [
  7179. {
  7180. name: "Macro",
  7181. height: math.unit(1000, "feet"),
  7182. default: true
  7183. },
  7184. ]
  7185. ))
  7186. characterMakers.push(() => makeCharacter(
  7187. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7188. {
  7189. front: {
  7190. height: math.unit(6, "feet"),
  7191. weight: math.unit(88, "lbs"),
  7192. name: "Front",
  7193. image: {
  7194. source: "./media/characters/chiros/front.svg",
  7195. extra: 306 / 226
  7196. }
  7197. },
  7198. side: {
  7199. height: math.unit(6, "feet"),
  7200. weight: math.unit(88, "lbs"),
  7201. name: "Side",
  7202. image: {
  7203. source: "./media/characters/chiros/side.svg",
  7204. extra: 306 / 226
  7205. }
  7206. },
  7207. },
  7208. [
  7209. {
  7210. name: "Normal",
  7211. height: math.unit(6, "cm"),
  7212. default: true
  7213. },
  7214. ]
  7215. ))
  7216. characterMakers.push(() => makeCharacter(
  7217. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7218. {
  7219. front: {
  7220. height: math.unit(6, "feet"),
  7221. weight: math.unit(100, "lbs"),
  7222. name: "Front",
  7223. image: {
  7224. source: "./media/characters/selka/front.svg",
  7225. extra: 947 / 887
  7226. }
  7227. }
  7228. },
  7229. [
  7230. {
  7231. name: "Normal",
  7232. height: math.unit(5, "cm"),
  7233. default: true
  7234. },
  7235. ]
  7236. ))
  7237. characterMakers.push(() => makeCharacter(
  7238. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7239. {
  7240. front: {
  7241. height: math.unit(8 + 3 / 12, "feet"),
  7242. weight: math.unit(424, "lbs"),
  7243. name: "Front",
  7244. image: {
  7245. source: "./media/characters/verin/front.svg",
  7246. extra: 1845 / 1550
  7247. }
  7248. },
  7249. frontArmored: {
  7250. height: math.unit(8 + 3 / 12, "feet"),
  7251. weight: math.unit(424, "lbs"),
  7252. name: "Front (Armored)",
  7253. image: {
  7254. source: "./media/characters/verin/front-armor.svg",
  7255. extra: 1845 / 1550,
  7256. bottom: 0.01
  7257. }
  7258. },
  7259. back: {
  7260. height: math.unit(8 + 3 / 12, "feet"),
  7261. weight: math.unit(424, "lbs"),
  7262. name: "Back",
  7263. image: {
  7264. source: "./media/characters/verin/back.svg",
  7265. bottom: 0.1,
  7266. extra: 1
  7267. }
  7268. },
  7269. foot: {
  7270. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7271. name: "Foot",
  7272. image: {
  7273. source: "./media/characters/verin/foot.svg"
  7274. }
  7275. },
  7276. },
  7277. [
  7278. {
  7279. name: "Normal",
  7280. height: math.unit(8 + 3 / 12, "feet")
  7281. },
  7282. {
  7283. name: "Minimacro",
  7284. height: math.unit(21, "feet"),
  7285. default: true
  7286. },
  7287. {
  7288. name: "Macro",
  7289. height: math.unit(626, "feet")
  7290. },
  7291. ]
  7292. ))
  7293. characterMakers.push(() => makeCharacter(
  7294. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7295. {
  7296. front: {
  7297. height: math.unit(2.718, "meters"),
  7298. weight: math.unit(150, "lbs"),
  7299. name: "Front",
  7300. image: {
  7301. source: "./media/characters/sovrim-terraquian/front.svg"
  7302. }
  7303. },
  7304. back: {
  7305. height: math.unit(2.718, "meters"),
  7306. weight: math.unit(150, "lbs"),
  7307. name: "Back",
  7308. image: {
  7309. source: "./media/characters/sovrim-terraquian/back.svg"
  7310. }
  7311. }
  7312. },
  7313. [
  7314. {
  7315. name: "Micro",
  7316. height: math.unit(2, "inches")
  7317. },
  7318. {
  7319. name: "Small",
  7320. height: math.unit(1, "meter")
  7321. },
  7322. {
  7323. name: "Normal",
  7324. height: math.unit(Math.E, "meters"),
  7325. default: true
  7326. },
  7327. {
  7328. name: "Macro",
  7329. height: math.unit(20, "meters")
  7330. },
  7331. {
  7332. name: "Macro+",
  7333. height: math.unit(400, "meters")
  7334. },
  7335. ]
  7336. ))
  7337. characterMakers.push(() => makeCharacter(
  7338. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7339. {
  7340. front: {
  7341. height: math.unit(7, "feet"),
  7342. weight: math.unit(489, "lbs"),
  7343. name: "Front",
  7344. image: {
  7345. source: "./media/characters/reece-silvermane/front.svg",
  7346. bottom: 0.02,
  7347. extra: 1
  7348. }
  7349. },
  7350. },
  7351. [
  7352. {
  7353. name: "Macro",
  7354. height: math.unit(1.5, "miles"),
  7355. default: true
  7356. },
  7357. ]
  7358. ))
  7359. characterMakers.push(() => makeCharacter(
  7360. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7361. {
  7362. front: {
  7363. height: math.unit(6, "feet"),
  7364. weight: math.unit(78, "kg"),
  7365. name: "Front",
  7366. image: {
  7367. source: "./media/characters/kane/front.svg",
  7368. extra: 978 / 899
  7369. }
  7370. },
  7371. },
  7372. [
  7373. {
  7374. name: "Normal",
  7375. height: math.unit(2.1, "m"),
  7376. },
  7377. {
  7378. name: "Macro",
  7379. height: math.unit(1, "km"),
  7380. default: true
  7381. },
  7382. ]
  7383. ))
  7384. characterMakers.push(() => makeCharacter(
  7385. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7386. {
  7387. front: {
  7388. height: math.unit(6, "feet"),
  7389. weight: math.unit(200, "kg"),
  7390. name: "Front",
  7391. image: {
  7392. source: "./media/characters/tegon/front.svg",
  7393. bottom: 0.01,
  7394. extra: 1
  7395. }
  7396. },
  7397. },
  7398. [
  7399. {
  7400. name: "Micro",
  7401. height: math.unit(1, "inch")
  7402. },
  7403. {
  7404. name: "Normal",
  7405. height: math.unit(6 + 3 / 12, "feet"),
  7406. default: true
  7407. },
  7408. {
  7409. name: "Macro",
  7410. height: math.unit(300, "feet")
  7411. },
  7412. {
  7413. name: "Megamacro",
  7414. height: math.unit(69, "miles")
  7415. },
  7416. ]
  7417. ))
  7418. characterMakers.push(() => makeCharacter(
  7419. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7420. {
  7421. side: {
  7422. height: math.unit(6, "feet"),
  7423. weight: math.unit(2304, "lbs"),
  7424. name: "Side",
  7425. image: {
  7426. source: "./media/characters/arcturax/side.svg",
  7427. extra: 790 / 376,
  7428. bottom: 0.01
  7429. }
  7430. },
  7431. },
  7432. [
  7433. {
  7434. name: "Micro",
  7435. height: math.unit(2, "inch")
  7436. },
  7437. {
  7438. name: "Normal",
  7439. height: math.unit(6, "feet")
  7440. },
  7441. {
  7442. name: "Macro",
  7443. height: math.unit(39, "feet"),
  7444. default: true
  7445. },
  7446. {
  7447. name: "Megamacro",
  7448. height: math.unit(7, "miles")
  7449. },
  7450. ]
  7451. ))
  7452. characterMakers.push(() => makeCharacter(
  7453. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7454. {
  7455. front: {
  7456. height: math.unit(6, "feet"),
  7457. weight: math.unit(50, "lbs"),
  7458. name: "Front",
  7459. image: {
  7460. source: "./media/characters/sentri/front.svg",
  7461. extra: 1750 / 1570,
  7462. bottom: 0.025
  7463. }
  7464. },
  7465. frontAlt: {
  7466. height: math.unit(6, "feet"),
  7467. weight: math.unit(50, "lbs"),
  7468. name: "Front (Alt)",
  7469. image: {
  7470. source: "./media/characters/sentri/front-alt.svg",
  7471. extra: 1750 / 1570,
  7472. bottom: 0.025
  7473. }
  7474. },
  7475. },
  7476. [
  7477. {
  7478. name: "Normal",
  7479. height: math.unit(15, "feet"),
  7480. default: true
  7481. },
  7482. {
  7483. name: "Macro",
  7484. height: math.unit(2500, "feet")
  7485. }
  7486. ]
  7487. ))
  7488. characterMakers.push(() => makeCharacter(
  7489. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7490. {
  7491. front: {
  7492. height: math.unit(5 + 8 / 12, "feet"),
  7493. weight: math.unit(130, "lbs"),
  7494. name: "Front",
  7495. image: {
  7496. source: "./media/characters/corvin/front.svg",
  7497. extra: 1803 / 1629
  7498. }
  7499. },
  7500. frontShirt: {
  7501. height: math.unit(5 + 8 / 12, "feet"),
  7502. weight: math.unit(130, "lbs"),
  7503. name: "Front (Shirt)",
  7504. image: {
  7505. source: "./media/characters/corvin/front-shirt.svg",
  7506. extra: 1803 / 1629
  7507. }
  7508. },
  7509. frontPoncho: {
  7510. height: math.unit(5 + 8 / 12, "feet"),
  7511. weight: math.unit(130, "lbs"),
  7512. name: "Front (Poncho)",
  7513. image: {
  7514. source: "./media/characters/corvin/front-poncho.svg",
  7515. extra: 1803 / 1629
  7516. }
  7517. },
  7518. side: {
  7519. height: math.unit(5 + 8 / 12, "feet"),
  7520. weight: math.unit(130, "lbs"),
  7521. name: "Side",
  7522. image: {
  7523. source: "./media/characters/corvin/side.svg",
  7524. extra: 1012 / 945
  7525. }
  7526. },
  7527. back: {
  7528. height: math.unit(5 + 8 / 12, "feet"),
  7529. weight: math.unit(130, "lbs"),
  7530. name: "Back",
  7531. image: {
  7532. source: "./media/characters/corvin/back.svg",
  7533. extra: 1803 / 1629
  7534. }
  7535. },
  7536. },
  7537. [
  7538. {
  7539. name: "Micro",
  7540. height: math.unit(3, "inches")
  7541. },
  7542. {
  7543. name: "Normal",
  7544. height: math.unit(5 + 8 / 12, "feet")
  7545. },
  7546. {
  7547. name: "Macro",
  7548. height: math.unit(300, "feet"),
  7549. default: true
  7550. },
  7551. {
  7552. name: "Megamacro",
  7553. height: math.unit(500, "miles")
  7554. }
  7555. ]
  7556. ))
  7557. characterMakers.push(() => makeCharacter(
  7558. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7559. {
  7560. front: {
  7561. height: math.unit(6, "feet"),
  7562. weight: math.unit(135, "lbs"),
  7563. name: "Front",
  7564. image: {
  7565. source: "./media/characters/q/front.svg",
  7566. extra: 854 / 752,
  7567. bottom: 0.005
  7568. }
  7569. },
  7570. back: {
  7571. height: math.unit(6, "feet"),
  7572. weight: math.unit(130, "lbs"),
  7573. name: "Back",
  7574. image: {
  7575. source: "./media/characters/q/back.svg",
  7576. extra: 854 / 752
  7577. }
  7578. },
  7579. },
  7580. [
  7581. {
  7582. name: "Macro",
  7583. height: math.unit(90, "feet"),
  7584. default: true
  7585. },
  7586. {
  7587. name: "Extra Macro",
  7588. height: math.unit(300, "feet"),
  7589. },
  7590. {
  7591. name: "BIG WALF",
  7592. height: math.unit(750, "feet"),
  7593. },
  7594. ]
  7595. ))
  7596. characterMakers.push(() => makeCharacter(
  7597. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7598. {
  7599. front: {
  7600. height: math.unit(6, "feet"),
  7601. weight: math.unit(150, "lbs"),
  7602. name: "Front",
  7603. image: {
  7604. source: "./media/characters/carley/front.svg",
  7605. extra: 3927 / 3540,
  7606. bottom: 29.2 / 735
  7607. }
  7608. }
  7609. },
  7610. [
  7611. {
  7612. name: "Normal",
  7613. height: math.unit(6 + 3 / 12, "feet")
  7614. },
  7615. {
  7616. name: "Macro",
  7617. height: math.unit(185, "feet"),
  7618. default: true
  7619. },
  7620. {
  7621. name: "Megamacro",
  7622. height: math.unit(8, "miles"),
  7623. },
  7624. ]
  7625. ))
  7626. characterMakers.push(() => makeCharacter(
  7627. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7628. {
  7629. front: {
  7630. height: math.unit(3, "feet"),
  7631. weight: math.unit(28, "lbs"),
  7632. name: "Front",
  7633. image: {
  7634. source: "./media/characters/citrine/front.svg"
  7635. }
  7636. }
  7637. },
  7638. [
  7639. {
  7640. name: "Normal",
  7641. height: math.unit(3, "feet"),
  7642. default: true
  7643. }
  7644. ]
  7645. ))
  7646. characterMakers.push(() => makeCharacter(
  7647. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7648. {
  7649. front: {
  7650. height: math.unit(14, "feet"),
  7651. weight: math.unit(1450, "kg"),
  7652. capacity: math.unit(15, "people"),
  7653. name: "Front",
  7654. image: {
  7655. source: "./media/characters/aura-starwind/front.svg",
  7656. extra: 1455 / 1335
  7657. }
  7658. },
  7659. side: {
  7660. height: math.unit(14, "feet"),
  7661. weight: math.unit(1450, "kg"),
  7662. capacity: math.unit(15, "people"),
  7663. name: "Side",
  7664. image: {
  7665. source: "./media/characters/aura-starwind/side.svg",
  7666. extra: 1654 / 1497
  7667. }
  7668. },
  7669. taur: {
  7670. height: math.unit(18, "feet"),
  7671. weight: math.unit(5500, "kg"),
  7672. capacity: math.unit(50, "people"),
  7673. name: "Taur",
  7674. image: {
  7675. source: "./media/characters/aura-starwind/taur.svg",
  7676. extra: 1760 / 1650
  7677. }
  7678. },
  7679. feral: {
  7680. height: math.unit(46, "feet"),
  7681. weight: math.unit(25000, "kg"),
  7682. capacity: math.unit(120, "people"),
  7683. name: "Feral",
  7684. image: {
  7685. source: "./media/characters/aura-starwind/feral.svg"
  7686. }
  7687. },
  7688. },
  7689. [
  7690. {
  7691. name: "Normal",
  7692. height: math.unit(14, "feet"),
  7693. default: true
  7694. },
  7695. {
  7696. name: "Macro",
  7697. height: math.unit(50, "meters")
  7698. },
  7699. {
  7700. name: "Megamacro",
  7701. height: math.unit(5000, "meters")
  7702. },
  7703. {
  7704. name: "Gigamacro",
  7705. height: math.unit(100000, "kilometers")
  7706. },
  7707. ]
  7708. ))
  7709. characterMakers.push(() => makeCharacter(
  7710. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7711. {
  7712. front: {
  7713. height: math.unit(2 + 7 / 12, "feet"),
  7714. weight: math.unit(32, "lbs"),
  7715. name: "Front",
  7716. image: {
  7717. source: "./media/characters/rivet/front.svg",
  7718. extra: 1716 / 1658,
  7719. bottom: 0.03
  7720. }
  7721. },
  7722. foot: {
  7723. height: math.unit(0.551, "feet"),
  7724. name: "Rivet's Foot",
  7725. image: {
  7726. source: "./media/characters/rivet/foot.svg"
  7727. },
  7728. rename: true
  7729. }
  7730. },
  7731. [
  7732. {
  7733. name: "Micro",
  7734. height: math.unit(1.5, "inches"),
  7735. },
  7736. {
  7737. name: "Normal",
  7738. height: math.unit(2 + 7 / 12, "feet"),
  7739. default: true
  7740. },
  7741. {
  7742. name: "Macro",
  7743. height: math.unit(85, "feet")
  7744. },
  7745. {
  7746. name: "Megamacro",
  7747. height: math.unit(2.2, "km")
  7748. }
  7749. ]
  7750. ))
  7751. characterMakers.push(() => makeCharacter(
  7752. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7753. {
  7754. front: {
  7755. height: math.unit(5 + 9 / 12, "feet"),
  7756. weight: math.unit(150, "lbs"),
  7757. name: "Front",
  7758. image: {
  7759. source: "./media/characters/coffee/front.svg",
  7760. extra: 3666 / 3032,
  7761. bottom: 0.04
  7762. }
  7763. },
  7764. foot: {
  7765. height: math.unit(1.29, "feet"),
  7766. name: "Foot",
  7767. image: {
  7768. source: "./media/characters/coffee/foot.svg"
  7769. }
  7770. },
  7771. },
  7772. [
  7773. {
  7774. name: "Micro",
  7775. height: math.unit(2, "inches"),
  7776. },
  7777. {
  7778. name: "Normal",
  7779. height: math.unit(5 + 9 / 12, "feet"),
  7780. default: true
  7781. },
  7782. {
  7783. name: "Macro",
  7784. height: math.unit(800, "feet")
  7785. },
  7786. {
  7787. name: "Megamacro",
  7788. height: math.unit(25, "miles")
  7789. }
  7790. ]
  7791. ))
  7792. characterMakers.push(() => makeCharacter(
  7793. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7794. {
  7795. front: {
  7796. height: math.unit(6, "feet"),
  7797. weight: math.unit(200, "lbs"),
  7798. name: "Front",
  7799. image: {
  7800. source: "./media/characters/chari-gal/front.svg",
  7801. extra: 1568 / 1385,
  7802. bottom: 0.047
  7803. }
  7804. },
  7805. gigantamax: {
  7806. height: math.unit(6 * 16, "feet"),
  7807. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7808. name: "Gigantamax",
  7809. image: {
  7810. source: "./media/characters/chari-gal/gigantamax.svg",
  7811. extra: 1124 / 888,
  7812. bottom: 0.03
  7813. }
  7814. },
  7815. },
  7816. [
  7817. {
  7818. name: "Normal",
  7819. height: math.unit(5 + 7 / 12, "feet")
  7820. },
  7821. {
  7822. name: "Macro",
  7823. height: math.unit(200, "feet"),
  7824. default: true
  7825. }
  7826. ]
  7827. ))
  7828. characterMakers.push(() => makeCharacter(
  7829. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7830. {
  7831. front: {
  7832. height: math.unit(6, "feet"),
  7833. weight: math.unit(150, "lbs"),
  7834. name: "Front",
  7835. image: {
  7836. source: "./media/characters/nova/front.svg",
  7837. extra: 5000 / 4722,
  7838. bottom: 0.02
  7839. }
  7840. }
  7841. },
  7842. [
  7843. {
  7844. name: "Micro-",
  7845. height: math.unit(0.8, "inches")
  7846. },
  7847. {
  7848. name: "Micro",
  7849. height: math.unit(2, "inches"),
  7850. default: true
  7851. },
  7852. ]
  7853. ))
  7854. characterMakers.push(() => makeCharacter(
  7855. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7856. {
  7857. front: {
  7858. height: math.unit(3 + 1 / 12, "feet"),
  7859. weight: math.unit(21.7, "lbs"),
  7860. name: "Front",
  7861. image: {
  7862. source: "./media/characters/argent/front.svg",
  7863. extra: 1471 / 1331,
  7864. bottom: 100.8 / 1575.5
  7865. }
  7866. }
  7867. },
  7868. [
  7869. {
  7870. name: "Micro",
  7871. height: math.unit(2, "inches")
  7872. },
  7873. {
  7874. name: "Normal",
  7875. height: math.unit(3 + 1 / 12, "feet"),
  7876. default: true
  7877. },
  7878. {
  7879. name: "Macro",
  7880. height: math.unit(120, "feet")
  7881. },
  7882. ]
  7883. ))
  7884. characterMakers.push(() => makeCharacter(
  7885. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7886. {
  7887. lamp: {
  7888. height: math.unit(7 * 1559 / 989, "feet"),
  7889. name: "Magic Lamp",
  7890. image: {
  7891. source: "./media/characters/mira-al-cul/lamp.svg",
  7892. extra: 1617 / 1559
  7893. }
  7894. },
  7895. front: {
  7896. height: math.unit(7, "feet"),
  7897. name: "Front",
  7898. image: {
  7899. source: "./media/characters/mira-al-cul/front.svg",
  7900. extra: 1044 / 990
  7901. }
  7902. },
  7903. },
  7904. [
  7905. {
  7906. name: "Heavily Restricted",
  7907. height: math.unit(7 * 1559 / 989, "feet")
  7908. },
  7909. {
  7910. name: "Freshly Freed",
  7911. height: math.unit(50 * 1559 / 989, "feet")
  7912. },
  7913. {
  7914. name: "World Encompassing",
  7915. height: math.unit(10000 * 1559 / 989, "miles")
  7916. },
  7917. {
  7918. name: "Galactic",
  7919. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7920. },
  7921. {
  7922. name: "Palmed Universe",
  7923. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7924. default: true
  7925. },
  7926. {
  7927. name: "Multiversal Matriarch",
  7928. height: math.unit(8.87e10, "yottameters")
  7929. },
  7930. {
  7931. name: "Void Mother",
  7932. height: math.unit(3.14e110, "yottaparsecs")
  7933. },
  7934. {
  7935. name: "Toying with Transcendence",
  7936. height: math.unit(1e307, "meters")
  7937. },
  7938. ]
  7939. ))
  7940. characterMakers.push(() => makeCharacter(
  7941. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7942. {
  7943. front: {
  7944. height: math.unit(17 + 1 / 12, "feet"),
  7945. weight: math.unit(476.2 * 5, "lbs"),
  7946. name: "Front",
  7947. image: {
  7948. source: "./media/characters/kuro-shi-uchū/front.svg",
  7949. extra: 2329 / 1835,
  7950. bottom: 0.02
  7951. }
  7952. },
  7953. },
  7954. [
  7955. {
  7956. name: "Micro",
  7957. height: math.unit(2, "inches")
  7958. },
  7959. {
  7960. name: "Normal",
  7961. height: math.unit(12, "meters")
  7962. },
  7963. {
  7964. name: "Planetary",
  7965. height: math.unit(0.00929, "AU"),
  7966. default: true
  7967. },
  7968. {
  7969. name: "Universal",
  7970. height: math.unit(20, "gigaparsecs")
  7971. },
  7972. ]
  7973. ))
  7974. characterMakers.push(() => makeCharacter(
  7975. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7976. {
  7977. front: {
  7978. height: math.unit(5 + 2 / 12, "feet"),
  7979. weight: math.unit(120, "lbs"),
  7980. name: "Front",
  7981. image: {
  7982. source: "./media/characters/katherine/front.svg",
  7983. extra: 2075 / 1969
  7984. }
  7985. },
  7986. dress: {
  7987. height: math.unit(5 + 2 / 12, "feet"),
  7988. weight: math.unit(120, "lbs"),
  7989. name: "Dress",
  7990. image: {
  7991. source: "./media/characters/katherine/dress.svg",
  7992. extra: 2258 / 2064
  7993. }
  7994. },
  7995. },
  7996. [
  7997. {
  7998. name: "Micro",
  7999. height: math.unit(1, "inches"),
  8000. default: true
  8001. },
  8002. {
  8003. name: "Normal",
  8004. height: math.unit(5 + 2 / 12, "feet")
  8005. },
  8006. {
  8007. name: "Macro",
  8008. height: math.unit(100, "meters")
  8009. },
  8010. {
  8011. name: "Megamacro",
  8012. height: math.unit(80, "miles")
  8013. },
  8014. ]
  8015. ))
  8016. characterMakers.push(() => makeCharacter(
  8017. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8018. {
  8019. front: {
  8020. height: math.unit(7 + 8 / 12, "feet"),
  8021. weight: math.unit(250, "lbs"),
  8022. name: "Front",
  8023. image: {
  8024. source: "./media/characters/yevis/front.svg",
  8025. extra: 1938 / 1755
  8026. }
  8027. }
  8028. },
  8029. [
  8030. {
  8031. name: "Mortal",
  8032. height: math.unit(7 + 8 / 12, "feet")
  8033. },
  8034. {
  8035. name: "Battle",
  8036. height: math.unit(25 + 11 / 12, "feet")
  8037. },
  8038. {
  8039. name: "Wrath",
  8040. height: math.unit(1654 + 11 / 12, "feet")
  8041. },
  8042. {
  8043. name: "Planet Destroyer",
  8044. height: math.unit(12000, "miles")
  8045. },
  8046. {
  8047. name: "Galaxy Conqueror",
  8048. height: math.unit(1.45, "zettameters"),
  8049. default: true
  8050. },
  8051. {
  8052. name: "Universal War",
  8053. height: math.unit(184, "gigaparsecs")
  8054. },
  8055. {
  8056. name: "Eternity War",
  8057. height: math.unit(1.98e55, "yottaparsecs")
  8058. },
  8059. ]
  8060. ))
  8061. characterMakers.push(() => makeCharacter(
  8062. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8063. {
  8064. front: {
  8065. height: math.unit(5 + 8 / 12, "feet"),
  8066. weight: math.unit(63, "kg"),
  8067. name: "Front",
  8068. image: {
  8069. source: "./media/characters/xavier/front.svg",
  8070. extra: 944 / 883
  8071. }
  8072. },
  8073. frontStretch: {
  8074. height: math.unit(5 + 8 / 12, "feet"),
  8075. weight: math.unit(63, "kg"),
  8076. name: "Stretching",
  8077. image: {
  8078. source: "./media/characters/xavier/front-stretch.svg",
  8079. extra: 962 / 820
  8080. }
  8081. },
  8082. },
  8083. [
  8084. {
  8085. name: "Normal",
  8086. height: math.unit(5 + 8 / 12, "feet")
  8087. },
  8088. {
  8089. name: "Macro",
  8090. height: math.unit(100, "meters"),
  8091. default: true
  8092. },
  8093. {
  8094. name: "McLargeHuge",
  8095. height: math.unit(10, "miles")
  8096. },
  8097. ]
  8098. ))
  8099. characterMakers.push(() => makeCharacter(
  8100. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8101. {
  8102. front: {
  8103. height: math.unit(5 + 5 / 12, "feet"),
  8104. weight: math.unit(150, "lb"),
  8105. name: "Front",
  8106. image: {
  8107. source: "./media/characters/joshii/front.svg",
  8108. extra: 765 / 653,
  8109. bottom: 51 / 816
  8110. }
  8111. },
  8112. foot: {
  8113. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8114. name: "Foot",
  8115. image: {
  8116. source: "./media/characters/joshii/foot.svg"
  8117. }
  8118. },
  8119. },
  8120. [
  8121. {
  8122. name: "Micro",
  8123. height: math.unit(2, "inches"),
  8124. default: true
  8125. },
  8126. {
  8127. name: "Normal",
  8128. height: math.unit(5 + 5 / 12, "feet")
  8129. },
  8130. {
  8131. name: "Macro",
  8132. height: math.unit(785, "feet")
  8133. },
  8134. {
  8135. name: "Megamacro",
  8136. height: math.unit(24.5, "miles")
  8137. },
  8138. ]
  8139. ))
  8140. characterMakers.push(() => makeCharacter(
  8141. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8142. {
  8143. front: {
  8144. height: math.unit(6, "feet"),
  8145. weight: math.unit(150, "lb"),
  8146. name: "Front",
  8147. image: {
  8148. source: "./media/characters/goddess-elizabeth/front.svg",
  8149. extra: 1800 / 1525,
  8150. bottom: 0.005
  8151. }
  8152. },
  8153. foot: {
  8154. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8155. name: "Foot",
  8156. image: {
  8157. source: "./media/characters/goddess-elizabeth/foot.svg"
  8158. }
  8159. },
  8160. mouth: {
  8161. height: math.unit(6, "feet"),
  8162. name: "Mouth",
  8163. image: {
  8164. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8165. }
  8166. },
  8167. },
  8168. [
  8169. {
  8170. name: "Micro",
  8171. height: math.unit(12, "feet")
  8172. },
  8173. {
  8174. name: "Normal",
  8175. height: math.unit(80, "miles"),
  8176. default: true
  8177. },
  8178. {
  8179. name: "Macro",
  8180. height: math.unit(15000, "parsecs")
  8181. },
  8182. ]
  8183. ))
  8184. characterMakers.push(() => makeCharacter(
  8185. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8186. {
  8187. front: {
  8188. height: math.unit(5 + 9 / 12, "feet"),
  8189. weight: math.unit(144, "lb"),
  8190. name: "Front",
  8191. image: {
  8192. source: "./media/characters/kara/front.svg"
  8193. }
  8194. },
  8195. feet: {
  8196. height: math.unit(6 / 6.765, "feet"),
  8197. name: "Kara's Feet",
  8198. rename: true,
  8199. image: {
  8200. source: "./media/characters/kara/feet.svg"
  8201. }
  8202. },
  8203. },
  8204. [
  8205. {
  8206. name: "Normal",
  8207. height: math.unit(5 + 9 / 12, "feet")
  8208. },
  8209. {
  8210. name: "Macro",
  8211. height: math.unit(174, "feet"),
  8212. default: true
  8213. },
  8214. ]
  8215. ))
  8216. characterMakers.push(() => makeCharacter(
  8217. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8218. {
  8219. front: {
  8220. height: math.unit(18, "feet"),
  8221. weight: math.unit(4050, "lb"),
  8222. name: "Front",
  8223. image: {
  8224. source: "./media/characters/tyrone/front.svg",
  8225. extra: 2405 / 2270,
  8226. bottom: 182 / 2587
  8227. }
  8228. },
  8229. },
  8230. [
  8231. {
  8232. name: "Normal",
  8233. height: math.unit(18, "feet"),
  8234. default: true
  8235. },
  8236. {
  8237. name: "Macro",
  8238. height: math.unit(300, "feet")
  8239. },
  8240. {
  8241. name: "Megamacro",
  8242. height: math.unit(15, "km")
  8243. },
  8244. {
  8245. name: "Gigamacro",
  8246. height: math.unit(500, "km")
  8247. },
  8248. {
  8249. name: "Teramacro",
  8250. height: math.unit(0.5, "gigameters")
  8251. },
  8252. {
  8253. name: "Omnimacro",
  8254. height: math.unit(1e252, "yottauniverse")
  8255. },
  8256. ]
  8257. ))
  8258. characterMakers.push(() => makeCharacter(
  8259. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8260. {
  8261. front: {
  8262. height: math.unit(7 + 8 / 12, "feet"),
  8263. weight: math.unit(120, "lb"),
  8264. name: "Front",
  8265. image: {
  8266. source: "./media/characters/danny/front.svg",
  8267. extra: 1490 / 1350
  8268. }
  8269. },
  8270. back: {
  8271. height: math.unit(7 + 8 / 12, "feet"),
  8272. weight: math.unit(120, "lb"),
  8273. name: "Back",
  8274. image: {
  8275. source: "./media/characters/danny/back.svg",
  8276. extra: 1490 / 1350
  8277. }
  8278. },
  8279. },
  8280. [
  8281. {
  8282. name: "Normal",
  8283. height: math.unit(7 + 8 / 12, "feet"),
  8284. default: true
  8285. },
  8286. ]
  8287. ))
  8288. characterMakers.push(() => makeCharacter(
  8289. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8290. {
  8291. front: {
  8292. height: math.unit(3.5, "inches"),
  8293. weight: math.unit(19, "grams"),
  8294. name: "Front",
  8295. image: {
  8296. source: "./media/characters/mallow/front.svg",
  8297. extra: 471 / 431
  8298. }
  8299. },
  8300. back: {
  8301. height: math.unit(3.5, "inches"),
  8302. weight: math.unit(19, "grams"),
  8303. name: "Back",
  8304. image: {
  8305. source: "./media/characters/mallow/back.svg",
  8306. extra: 471 / 431
  8307. }
  8308. },
  8309. },
  8310. [
  8311. {
  8312. name: "Normal",
  8313. height: math.unit(3.5, "inches"),
  8314. default: true
  8315. },
  8316. ]
  8317. ))
  8318. characterMakers.push(() => makeCharacter(
  8319. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8320. {
  8321. front: {
  8322. height: math.unit(9, "feet"),
  8323. weight: math.unit(230, "kg"),
  8324. name: "Front",
  8325. image: {
  8326. source: "./media/characters/starry-aqua/front.svg"
  8327. }
  8328. },
  8329. back: {
  8330. height: math.unit(9, "feet"),
  8331. weight: math.unit(230, "kg"),
  8332. name: "Back",
  8333. image: {
  8334. source: "./media/characters/starry-aqua/back.svg"
  8335. }
  8336. },
  8337. hand: {
  8338. height: math.unit(9 * 0.1168, "feet"),
  8339. name: "Hand",
  8340. image: {
  8341. source: "./media/characters/starry-aqua/hand.svg"
  8342. }
  8343. },
  8344. foot: {
  8345. height: math.unit(9 * 0.18, "feet"),
  8346. name: "Foot",
  8347. image: {
  8348. source: "./media/characters/starry-aqua/foot.svg"
  8349. }
  8350. }
  8351. },
  8352. [
  8353. {
  8354. name: "Micro",
  8355. height: math.unit(3, "inches")
  8356. },
  8357. {
  8358. name: "Normal",
  8359. height: math.unit(9, "feet")
  8360. },
  8361. {
  8362. name: "Macro",
  8363. height: math.unit(300, "feet"),
  8364. default: true
  8365. },
  8366. {
  8367. name: "Megamacro",
  8368. height: math.unit(3200, "feet")
  8369. }
  8370. ]
  8371. ))
  8372. characterMakers.push(() => makeCharacter(
  8373. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8374. {
  8375. front: {
  8376. height: math.unit(6, "feet"),
  8377. weight: math.unit(230, "lb"),
  8378. name: "Front",
  8379. image: {
  8380. source: "./media/characters/luka/front.svg",
  8381. extra: 1,
  8382. bottom: 0.025
  8383. }
  8384. },
  8385. },
  8386. [
  8387. {
  8388. name: "Normal",
  8389. height: math.unit(12 + 8 / 12, "feet"),
  8390. default: true
  8391. },
  8392. {
  8393. name: "Minimacro",
  8394. height: math.unit(20, "feet")
  8395. },
  8396. {
  8397. name: "Macro",
  8398. height: math.unit(250, "feet")
  8399. },
  8400. {
  8401. name: "Megamacro",
  8402. height: math.unit(5, "miles")
  8403. },
  8404. {
  8405. name: "Gigamacro",
  8406. height: math.unit(8000, "miles")
  8407. },
  8408. ]
  8409. ))
  8410. characterMakers.push(() => makeCharacter(
  8411. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8412. {
  8413. front: {
  8414. height: math.unit(6, "feet"),
  8415. weight: math.unit(150, "lb"),
  8416. name: "Front",
  8417. image: {
  8418. source: "./media/characters/natalie-nightring/front.svg",
  8419. extra: 1,
  8420. bottom: 0.06
  8421. }
  8422. },
  8423. },
  8424. [
  8425. {
  8426. name: "Uh Oh",
  8427. height: math.unit(0.1, "mm")
  8428. },
  8429. {
  8430. name: "Small",
  8431. height: math.unit(3, "inches")
  8432. },
  8433. {
  8434. name: "Human Scale",
  8435. height: math.unit(6, "feet")
  8436. },
  8437. {
  8438. name: "Librarian",
  8439. height: math.unit(50, "feet"),
  8440. default: true
  8441. },
  8442. {
  8443. name: "Immense",
  8444. height: math.unit(200, "miles")
  8445. },
  8446. ]
  8447. ))
  8448. characterMakers.push(() => makeCharacter(
  8449. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8450. {
  8451. front: {
  8452. height: math.unit(6, "feet"),
  8453. weight: math.unit(180, "lbs"),
  8454. name: "Front",
  8455. image: {
  8456. source: "./media/characters/danni-rosie/front.svg",
  8457. extra: 1260 / 1128,
  8458. bottom: 0.022
  8459. }
  8460. },
  8461. },
  8462. [
  8463. {
  8464. name: "Micro",
  8465. height: math.unit(2, "inches"),
  8466. default: true
  8467. },
  8468. ]
  8469. ))
  8470. characterMakers.push(() => makeCharacter(
  8471. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8472. {
  8473. front: {
  8474. height: math.unit(5 + 9 / 12, "feet"),
  8475. weight: math.unit(220, "lb"),
  8476. name: "Front",
  8477. image: {
  8478. source: "./media/characters/samantha-kruse/front.svg",
  8479. extra: (985 / 935),
  8480. bottom: 0.03
  8481. }
  8482. },
  8483. frontUndressed: {
  8484. height: math.unit(5 + 9 / 12, "feet"),
  8485. weight: math.unit(220, "lb"),
  8486. name: "Front (Undressed)",
  8487. image: {
  8488. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8489. extra: (973 / 923),
  8490. bottom: 0.025
  8491. }
  8492. },
  8493. fat: {
  8494. height: math.unit(5 + 9 / 12, "feet"),
  8495. weight: math.unit(900, "lb"),
  8496. name: "Front (Fat)",
  8497. image: {
  8498. source: "./media/characters/samantha-kruse/fat.svg",
  8499. extra: 2688 / 2561
  8500. }
  8501. },
  8502. },
  8503. [
  8504. {
  8505. name: "Normal",
  8506. height: math.unit(5 + 9 / 12, "feet"),
  8507. default: true
  8508. }
  8509. ]
  8510. ))
  8511. characterMakers.push(() => makeCharacter(
  8512. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8513. {
  8514. back: {
  8515. height: math.unit(5 + 4 / 12, "feet"),
  8516. weight: math.unit(4963, "lb"),
  8517. name: "Back",
  8518. image: {
  8519. source: "./media/characters/amelia-rosie/back.svg",
  8520. extra: 1113 / 963,
  8521. bottom: 0.01
  8522. }
  8523. },
  8524. },
  8525. [
  8526. {
  8527. name: "Level 0",
  8528. height: math.unit(5 + 4 / 12, "feet")
  8529. },
  8530. {
  8531. name: "Level 1",
  8532. height: math.unit(164597, "feet"),
  8533. default: true
  8534. },
  8535. {
  8536. name: "Level 2",
  8537. height: math.unit(956243, "miles")
  8538. },
  8539. {
  8540. name: "Level 3",
  8541. height: math.unit(29421709423, "miles")
  8542. },
  8543. {
  8544. name: "Level 4",
  8545. height: math.unit(154, "lightyears")
  8546. },
  8547. {
  8548. name: "Level 5",
  8549. height: math.unit(4738272, "lightyears")
  8550. },
  8551. {
  8552. name: "Level 6",
  8553. height: math.unit(145787152896, "lightyears")
  8554. },
  8555. ]
  8556. ))
  8557. characterMakers.push(() => makeCharacter(
  8558. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8559. {
  8560. front: {
  8561. height: math.unit(5 + 11 / 12, "feet"),
  8562. weight: math.unit(65, "kg"),
  8563. name: "Front",
  8564. image: {
  8565. source: "./media/characters/rook-kitara/front.svg",
  8566. extra: 1347 / 1274,
  8567. bottom: 0.005
  8568. }
  8569. },
  8570. },
  8571. [
  8572. {
  8573. name: "Totally Unfair",
  8574. height: math.unit(1.8, "mm")
  8575. },
  8576. {
  8577. name: "Lap Rookie",
  8578. height: math.unit(1.4, "feet")
  8579. },
  8580. {
  8581. name: "Normal",
  8582. height: math.unit(5 + 11 / 12, "feet"),
  8583. default: true
  8584. },
  8585. {
  8586. name: "How Did This Happen",
  8587. height: math.unit(80, "miles")
  8588. }
  8589. ]
  8590. ))
  8591. characterMakers.push(() => makeCharacter(
  8592. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8593. {
  8594. front: {
  8595. height: math.unit(7, "feet"),
  8596. weight: math.unit(300, "lb"),
  8597. name: "Front",
  8598. image: {
  8599. source: "./media/characters/pisces/front.svg",
  8600. extra: 2255 / 2115,
  8601. bottom: 0.03
  8602. }
  8603. },
  8604. back: {
  8605. height: math.unit(7, "feet"),
  8606. weight: math.unit(300, "lb"),
  8607. name: "Back",
  8608. image: {
  8609. source: "./media/characters/pisces/back.svg",
  8610. extra: 2146 / 2055,
  8611. bottom: 0.04
  8612. }
  8613. },
  8614. },
  8615. [
  8616. {
  8617. name: "Normal",
  8618. height: math.unit(7, "feet"),
  8619. default: true
  8620. },
  8621. {
  8622. name: "Swimming Pool",
  8623. height: math.unit(12.2, "meters")
  8624. },
  8625. {
  8626. name: "Olympic Swimming Pool",
  8627. height: math.unit(56.3, "meters")
  8628. },
  8629. {
  8630. name: "Lake Superior",
  8631. height: math.unit(93900, "meters")
  8632. },
  8633. {
  8634. name: "Mediterranean Sea",
  8635. height: math.unit(644457, "meters")
  8636. },
  8637. {
  8638. name: "World's Oceans",
  8639. height: math.unit(4567491, "meters")
  8640. },
  8641. ]
  8642. ))
  8643. characterMakers.push(() => makeCharacter(
  8644. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8645. {
  8646. front: {
  8647. height: math.unit(2.3, "meters"),
  8648. weight: math.unit(120, "kg"),
  8649. name: "Front",
  8650. image: {
  8651. source: "./media/characters/zelas/front.svg"
  8652. }
  8653. },
  8654. side: {
  8655. height: math.unit(2.3, "meters"),
  8656. weight: math.unit(120, "kg"),
  8657. name: "Side",
  8658. image: {
  8659. source: "./media/characters/zelas/side.svg"
  8660. }
  8661. },
  8662. back: {
  8663. height: math.unit(2.3, "meters"),
  8664. weight: math.unit(120, "kg"),
  8665. name: "Back",
  8666. image: {
  8667. source: "./media/characters/zelas/back.svg"
  8668. }
  8669. },
  8670. foot: {
  8671. height: math.unit(1.116, "feet"),
  8672. name: "Foot",
  8673. image: {
  8674. source: "./media/characters/zelas/foot.svg"
  8675. }
  8676. },
  8677. },
  8678. [
  8679. {
  8680. name: "Normal",
  8681. height: math.unit(2.3, "meters")
  8682. },
  8683. {
  8684. name: "Macro",
  8685. height: math.unit(30, "meters"),
  8686. default: true
  8687. },
  8688. ]
  8689. ))
  8690. characterMakers.push(() => makeCharacter(
  8691. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8692. {
  8693. front: {
  8694. height: math.unit(1, "inch"),
  8695. weight: math.unit(0.21, "grams"),
  8696. name: "Front",
  8697. image: {
  8698. source: "./media/characters/talbot/front.svg",
  8699. extra: 594 / 544
  8700. }
  8701. },
  8702. },
  8703. [
  8704. {
  8705. name: "Micro",
  8706. height: math.unit(1, "inch"),
  8707. default: true
  8708. },
  8709. ]
  8710. ))
  8711. characterMakers.push(() => makeCharacter(
  8712. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8713. {
  8714. front: {
  8715. height: math.unit(3 + 3 / 12, "feet"),
  8716. weight: math.unit(51.8, "lb"),
  8717. name: "Front",
  8718. image: {
  8719. source: "./media/characters/fliss/front.svg",
  8720. extra: 840 / 640
  8721. }
  8722. },
  8723. },
  8724. [
  8725. {
  8726. name: "Teeny Tiny",
  8727. height: math.unit(1, "mm")
  8728. },
  8729. {
  8730. name: "Small",
  8731. height: math.unit(1, "inch"),
  8732. default: true
  8733. },
  8734. {
  8735. name: "Standard Sylveon",
  8736. height: math.unit(3 + 3 / 12, "feet")
  8737. },
  8738. {
  8739. name: "Large Nuisance",
  8740. height: math.unit(33, "feet")
  8741. },
  8742. {
  8743. name: "City Filler",
  8744. height: math.unit(3000, "feet")
  8745. },
  8746. {
  8747. name: "New Horizon",
  8748. height: math.unit(6000, "miles")
  8749. },
  8750. ]
  8751. ))
  8752. characterMakers.push(() => makeCharacter(
  8753. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8754. {
  8755. front: {
  8756. height: math.unit(5, "cm"),
  8757. weight: math.unit(1.94, "g"),
  8758. name: "Front",
  8759. image: {
  8760. source: "./media/characters/fleta/front.svg",
  8761. extra: 835 / 803
  8762. }
  8763. },
  8764. back: {
  8765. height: math.unit(5, "cm"),
  8766. weight: math.unit(1.94, "g"),
  8767. name: "Back",
  8768. image: {
  8769. source: "./media/characters/fleta/back.svg",
  8770. extra: 835 / 803
  8771. }
  8772. },
  8773. },
  8774. [
  8775. {
  8776. name: "Micro",
  8777. height: math.unit(5, "cm"),
  8778. default: true
  8779. },
  8780. ]
  8781. ))
  8782. characterMakers.push(() => makeCharacter(
  8783. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8784. {
  8785. front: {
  8786. height: math.unit(6, "feet"),
  8787. weight: math.unit(225, "lb"),
  8788. name: "Front",
  8789. image: {
  8790. source: "./media/characters/dominic/front.svg",
  8791. extra: 1770 / 1620,
  8792. bottom: 0.025
  8793. }
  8794. },
  8795. back: {
  8796. height: math.unit(6, "feet"),
  8797. weight: math.unit(225, "lb"),
  8798. name: "Back",
  8799. image: {
  8800. source: "./media/characters/dominic/back.svg",
  8801. extra: 1745 / 1620,
  8802. bottom: 0.065
  8803. }
  8804. },
  8805. },
  8806. [
  8807. {
  8808. name: "Nano",
  8809. height: math.unit(0.1, "mm")
  8810. },
  8811. {
  8812. name: "Micro-",
  8813. height: math.unit(1, "mm")
  8814. },
  8815. {
  8816. name: "Micro",
  8817. height: math.unit(4, "inches")
  8818. },
  8819. {
  8820. name: "Normal",
  8821. height: math.unit(6 + 4 / 12, "feet"),
  8822. default: true
  8823. },
  8824. {
  8825. name: "Macro",
  8826. height: math.unit(115, "feet")
  8827. },
  8828. {
  8829. name: "Macro+",
  8830. height: math.unit(955, "feet")
  8831. },
  8832. {
  8833. name: "Megamacro",
  8834. height: math.unit(8990, "feet")
  8835. },
  8836. {
  8837. name: "Gigmacro",
  8838. height: math.unit(9310, "miles")
  8839. },
  8840. {
  8841. name: "Teramacro",
  8842. height: math.unit(1567005010, "miles")
  8843. },
  8844. {
  8845. name: "Examacro",
  8846. height: math.unit(1425, "parsecs")
  8847. },
  8848. ]
  8849. ))
  8850. characterMakers.push(() => makeCharacter(
  8851. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8852. {
  8853. front: {
  8854. height: math.unit(400, "feet"),
  8855. weight: math.unit(44444444, "lb"),
  8856. name: "Front",
  8857. image: {
  8858. source: "./media/characters/major-colonel/front.svg"
  8859. }
  8860. },
  8861. back: {
  8862. height: math.unit(400, "feet"),
  8863. weight: math.unit(44444444, "lb"),
  8864. name: "Back",
  8865. image: {
  8866. source: "./media/characters/major-colonel/back.svg"
  8867. }
  8868. },
  8869. },
  8870. [
  8871. {
  8872. name: "Macro",
  8873. height: math.unit(400, "feet"),
  8874. default: true
  8875. },
  8876. ]
  8877. ))
  8878. characterMakers.push(() => makeCharacter(
  8879. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8880. {
  8881. catFront: {
  8882. height: math.unit(6, "feet"),
  8883. weight: math.unit(120, "lb"),
  8884. name: "Front (Cat Side)",
  8885. image: {
  8886. source: "./media/characters/axel-lycan/cat-front.svg",
  8887. extra: 430 / 402,
  8888. bottom: 43 / 472.35
  8889. }
  8890. },
  8891. catBack: {
  8892. height: math.unit(6, "feet"),
  8893. weight: math.unit(120, "lb"),
  8894. name: "Back (Cat Side)",
  8895. image: {
  8896. source: "./media/characters/axel-lycan/cat-back.svg",
  8897. extra: 447 / 419,
  8898. bottom: 23.3 / 469
  8899. }
  8900. },
  8901. wolfFront: {
  8902. height: math.unit(6, "feet"),
  8903. weight: math.unit(120, "lb"),
  8904. name: "Front (Wolf Side)",
  8905. image: {
  8906. source: "./media/characters/axel-lycan/wolf-front.svg",
  8907. extra: 485 / 456,
  8908. bottom: 19 / 504
  8909. }
  8910. },
  8911. wolfBack: {
  8912. height: math.unit(6, "feet"),
  8913. weight: math.unit(120, "lb"),
  8914. name: "Back (Wolf Side)",
  8915. image: {
  8916. source: "./media/characters/axel-lycan/wolf-back.svg",
  8917. extra: 475 / 438,
  8918. bottom: 39.2 / 514
  8919. }
  8920. },
  8921. },
  8922. [
  8923. {
  8924. name: "Macro",
  8925. height: math.unit(1, "km"),
  8926. default: true
  8927. },
  8928. ]
  8929. ))
  8930. characterMakers.push(() => makeCharacter(
  8931. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8932. {
  8933. front: {
  8934. height: math.unit(5 + 9 / 12, "feet"),
  8935. weight: math.unit(175, "lb"),
  8936. name: "Front",
  8937. image: {
  8938. source: "./media/characters/vanrel-hyena/front.svg",
  8939. extra: 1086 / 1010,
  8940. bottom: 0.04
  8941. }
  8942. },
  8943. },
  8944. [
  8945. {
  8946. name: "Normal",
  8947. height: math.unit(5 + 9 / 12, "feet"),
  8948. default: true
  8949. },
  8950. ]
  8951. ))
  8952. characterMakers.push(() => makeCharacter(
  8953. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8954. {
  8955. front: {
  8956. height: math.unit(6, "feet"),
  8957. weight: math.unit(103, "lb"),
  8958. name: "Front",
  8959. image: {
  8960. source: "./media/characters/abbott-absol/front.svg",
  8961. extra: 2010 / 1842
  8962. }
  8963. },
  8964. },
  8965. [
  8966. {
  8967. name: "Megamicro",
  8968. height: math.unit(0.1, "mm")
  8969. },
  8970. {
  8971. name: "Micro",
  8972. height: math.unit(1, "inch")
  8973. },
  8974. {
  8975. name: "Normal",
  8976. height: math.unit(6, "feet"),
  8977. default: true
  8978. },
  8979. ]
  8980. ))
  8981. characterMakers.push(() => makeCharacter(
  8982. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8983. {
  8984. front: {
  8985. height: math.unit(6, "feet"),
  8986. weight: math.unit(264, "lb"),
  8987. name: "Front",
  8988. image: {
  8989. source: "./media/characters/hector/front.svg",
  8990. extra: 2280 / 2130,
  8991. bottom: 0.07
  8992. }
  8993. },
  8994. },
  8995. [
  8996. {
  8997. name: "Normal",
  8998. height: math.unit(12.25, "foot"),
  8999. default: true
  9000. },
  9001. {
  9002. name: "Macro",
  9003. height: math.unit(160, "feet")
  9004. },
  9005. ]
  9006. ))
  9007. characterMakers.push(() => makeCharacter(
  9008. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9009. {
  9010. front: {
  9011. height: math.unit(6, "feet"),
  9012. weight: math.unit(150, "lb"),
  9013. name: "Front",
  9014. image: {
  9015. source: "./media/characters/sal/front.svg",
  9016. extra: 1846 / 1699,
  9017. bottom: 0.04
  9018. }
  9019. },
  9020. },
  9021. [
  9022. {
  9023. name: "Megamacro",
  9024. height: math.unit(10, "miles"),
  9025. default: true
  9026. },
  9027. ]
  9028. ))
  9029. characterMakers.push(() => makeCharacter(
  9030. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9031. {
  9032. front: {
  9033. height: math.unit(3, "meters"),
  9034. weight: math.unit(450, "kg"),
  9035. name: "front",
  9036. image: {
  9037. source: "./media/characters/ranger/front.svg",
  9038. extra: 2401 / 2243,
  9039. bottom: 0.05
  9040. }
  9041. },
  9042. },
  9043. [
  9044. {
  9045. name: "Normal",
  9046. height: math.unit(3, "meters"),
  9047. default: true
  9048. },
  9049. ]
  9050. ))
  9051. characterMakers.push(() => makeCharacter(
  9052. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9053. {
  9054. front: {
  9055. height: math.unit(14, "feet"),
  9056. weight: math.unit(800, "kg"),
  9057. name: "Front",
  9058. image: {
  9059. source: "./media/characters/theresa/front.svg",
  9060. extra: 3575 / 3346,
  9061. bottom: 0.03
  9062. }
  9063. },
  9064. },
  9065. [
  9066. {
  9067. name: "Normal",
  9068. height: math.unit(14, "feet"),
  9069. default: true
  9070. },
  9071. ]
  9072. ))
  9073. characterMakers.push(() => makeCharacter(
  9074. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9075. {
  9076. front: {
  9077. height: math.unit(6, "feet"),
  9078. weight: math.unit(3, "kg"),
  9079. name: "Front",
  9080. image: {
  9081. source: "./media/characters/ine/front.svg",
  9082. extra: 678 / 539,
  9083. bottom: 0.023
  9084. }
  9085. },
  9086. },
  9087. [
  9088. {
  9089. name: "Normal",
  9090. height: math.unit(2.265, "feet"),
  9091. default: true
  9092. },
  9093. ]
  9094. ))
  9095. characterMakers.push(() => makeCharacter(
  9096. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9097. {
  9098. front: {
  9099. height: math.unit(5, "feet"),
  9100. weight: math.unit(30, "kg"),
  9101. name: "Front",
  9102. image: {
  9103. source: "./media/characters/vial/front.svg",
  9104. extra: 1365 / 1277,
  9105. bottom: 0.04
  9106. }
  9107. },
  9108. },
  9109. [
  9110. {
  9111. name: "Normal",
  9112. height: math.unit(5, "feet"),
  9113. default: true
  9114. },
  9115. ]
  9116. ))
  9117. characterMakers.push(() => makeCharacter(
  9118. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9119. {
  9120. side: {
  9121. height: math.unit(3.4, "meters"),
  9122. weight: math.unit(1000, "lb"),
  9123. name: "Side",
  9124. image: {
  9125. source: "./media/characters/rovoska/side.svg",
  9126. extra: 4403 / 1515
  9127. }
  9128. },
  9129. },
  9130. [
  9131. {
  9132. name: "Normal",
  9133. height: math.unit(3.4, "meters"),
  9134. default: true
  9135. },
  9136. ]
  9137. ))
  9138. characterMakers.push(() => makeCharacter(
  9139. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9140. {
  9141. front: {
  9142. height: math.unit(8, "feet"),
  9143. weight: math.unit(315, "lb"),
  9144. name: "Front",
  9145. image: {
  9146. source: "./media/characters/gunner-rotthbauer/front.svg"
  9147. }
  9148. },
  9149. back: {
  9150. height: math.unit(8, "feet"),
  9151. weight: math.unit(315, "lb"),
  9152. name: "Back",
  9153. image: {
  9154. source: "./media/characters/gunner-rotthbauer/back.svg"
  9155. }
  9156. },
  9157. },
  9158. [
  9159. {
  9160. name: "Micro",
  9161. height: math.unit(3.5, "inches")
  9162. },
  9163. {
  9164. name: "Normal",
  9165. height: math.unit(8, "feet"),
  9166. default: true
  9167. },
  9168. {
  9169. name: "Macro",
  9170. height: math.unit(250, "feet")
  9171. },
  9172. {
  9173. name: "Megamacro",
  9174. height: math.unit(1, "AU")
  9175. },
  9176. ]
  9177. ))
  9178. characterMakers.push(() => makeCharacter(
  9179. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9180. {
  9181. front: {
  9182. height: math.unit(5 + 5 / 12, "feet"),
  9183. weight: math.unit(140, "lb"),
  9184. name: "Front",
  9185. image: {
  9186. source: "./media/characters/allatia/front.svg",
  9187. extra: 1227 / 1180,
  9188. bottom: 0.027
  9189. }
  9190. },
  9191. },
  9192. [
  9193. {
  9194. name: "Normal",
  9195. height: math.unit(5 + 5 / 12, "feet")
  9196. },
  9197. {
  9198. name: "Macro",
  9199. height: math.unit(250, "feet"),
  9200. default: true
  9201. },
  9202. {
  9203. name: "Megamacro",
  9204. height: math.unit(8, "miles")
  9205. }
  9206. ]
  9207. ))
  9208. characterMakers.push(() => makeCharacter(
  9209. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9210. {
  9211. front: {
  9212. height: math.unit(6, "feet"),
  9213. weight: math.unit(120, "lb"),
  9214. name: "Front",
  9215. image: {
  9216. source: "./media/characters/tene/front.svg",
  9217. extra: 1728 / 1578,
  9218. bottom: 0.022
  9219. }
  9220. },
  9221. stomping: {
  9222. height: math.unit(2.025, "meters"),
  9223. weight: math.unit(120, "lb"),
  9224. name: "Stomping",
  9225. image: {
  9226. source: "./media/characters/tene/stomping.svg",
  9227. extra: 938 / 873,
  9228. bottom: 0.01
  9229. }
  9230. },
  9231. sitting: {
  9232. height: math.unit(1, "meter"),
  9233. weight: math.unit(120, "lb"),
  9234. name: "Sitting",
  9235. image: {
  9236. source: "./media/characters/tene/sitting.svg",
  9237. extra: 437 / 415,
  9238. bottom: 0.1
  9239. }
  9240. },
  9241. feral: {
  9242. height: math.unit(3.9, "feet"),
  9243. weight: math.unit(250, "lb"),
  9244. name: "Feral",
  9245. image: {
  9246. source: "./media/characters/tene/feral.svg",
  9247. extra: 717 / 458,
  9248. bottom: 0.179
  9249. }
  9250. },
  9251. },
  9252. [
  9253. {
  9254. name: "Normal",
  9255. height: math.unit(6, "feet")
  9256. },
  9257. {
  9258. name: "Macro",
  9259. height: math.unit(300, "feet"),
  9260. default: true
  9261. },
  9262. {
  9263. name: "Megamacro",
  9264. height: math.unit(5, "miles")
  9265. },
  9266. ]
  9267. ))
  9268. characterMakers.push(() => makeCharacter(
  9269. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9270. {
  9271. side: {
  9272. height: math.unit(6, "feet"),
  9273. name: "Side",
  9274. image: {
  9275. source: "./media/characters/evander/side.svg",
  9276. extra: 877 / 477
  9277. }
  9278. },
  9279. },
  9280. [
  9281. {
  9282. name: "Normal",
  9283. height: math.unit(0.83, "meters"),
  9284. default: true
  9285. },
  9286. ]
  9287. ))
  9288. characterMakers.push(() => makeCharacter(
  9289. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9290. {
  9291. front: {
  9292. height: math.unit(12, "feet"),
  9293. weight: math.unit(1000, "lb"),
  9294. name: "Front",
  9295. image: {
  9296. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9297. extra: 1762 / 1611
  9298. }
  9299. },
  9300. back: {
  9301. height: math.unit(12, "feet"),
  9302. weight: math.unit(1000, "lb"),
  9303. name: "Back",
  9304. image: {
  9305. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9306. extra: 1762 / 1611
  9307. }
  9308. },
  9309. },
  9310. [
  9311. {
  9312. name: "Normal",
  9313. height: math.unit(12, "feet"),
  9314. default: true
  9315. },
  9316. {
  9317. name: "Kaiju",
  9318. height: math.unit(150, "feet")
  9319. },
  9320. ]
  9321. ))
  9322. characterMakers.push(() => makeCharacter(
  9323. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9324. {
  9325. front: {
  9326. height: math.unit(6, "feet"),
  9327. weight: math.unit(150, "lb"),
  9328. name: "Front",
  9329. image: {
  9330. source: "./media/characters/zero-alurus/front.svg"
  9331. }
  9332. },
  9333. back: {
  9334. height: math.unit(6, "feet"),
  9335. weight: math.unit(150, "lb"),
  9336. name: "Back",
  9337. image: {
  9338. source: "./media/characters/zero-alurus/back.svg"
  9339. }
  9340. },
  9341. },
  9342. [
  9343. {
  9344. name: "Normal",
  9345. height: math.unit(5 + 10 / 12, "feet")
  9346. },
  9347. {
  9348. name: "Macro",
  9349. height: math.unit(60, "feet"),
  9350. default: true
  9351. },
  9352. {
  9353. name: "Macro+",
  9354. height: math.unit(450, "feet")
  9355. },
  9356. ]
  9357. ))
  9358. characterMakers.push(() => makeCharacter(
  9359. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9360. {
  9361. front: {
  9362. height: math.unit(6, "feet"),
  9363. weight: math.unit(200, "lb"),
  9364. name: "Front",
  9365. image: {
  9366. source: "./media/characters/mega-shi/front.svg",
  9367. extra: 1279 / 1250,
  9368. bottom: 0.02
  9369. }
  9370. },
  9371. back: {
  9372. height: math.unit(6, "feet"),
  9373. weight: math.unit(200, "lb"),
  9374. name: "Back",
  9375. image: {
  9376. source: "./media/characters/mega-shi/back.svg",
  9377. extra: 1279 / 1250,
  9378. bottom: 0.02
  9379. }
  9380. },
  9381. },
  9382. [
  9383. {
  9384. name: "Micro",
  9385. height: math.unit(16 + 6 / 12, "feet")
  9386. },
  9387. {
  9388. name: "Third Dimension",
  9389. height: math.unit(40, "meters")
  9390. },
  9391. {
  9392. name: "Normal",
  9393. height: math.unit(660, "feet"),
  9394. default: true
  9395. },
  9396. {
  9397. name: "Megamacro",
  9398. height: math.unit(10, "miles")
  9399. },
  9400. {
  9401. name: "Planetary Launch",
  9402. height: math.unit(500, "miles")
  9403. },
  9404. {
  9405. name: "Interstellar",
  9406. height: math.unit(1e9, "miles")
  9407. },
  9408. {
  9409. name: "Leaving the Universe",
  9410. height: math.unit(1, "gigaparsec")
  9411. },
  9412. {
  9413. name: "Travelling Universes",
  9414. height: math.unit(30e15, "parsecs")
  9415. },
  9416. ]
  9417. ))
  9418. characterMakers.push(() => makeCharacter(
  9419. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9420. {
  9421. front: {
  9422. height: math.unit(6, "feet"),
  9423. weight: math.unit(150, "lb"),
  9424. name: "Front",
  9425. image: {
  9426. source: "./media/characters/odyssey/front.svg",
  9427. extra: 1782 / 1582,
  9428. bottom: 0.01
  9429. }
  9430. },
  9431. side: {
  9432. height: math.unit(5.7, "feet"),
  9433. weight: math.unit(140, "lb"),
  9434. name: "Side",
  9435. image: {
  9436. source: "./media/characters/odyssey/side.svg",
  9437. extra: 6462 / 5700
  9438. }
  9439. },
  9440. },
  9441. [
  9442. {
  9443. name: "Normal",
  9444. height: math.unit(5 + 4 / 12, "feet")
  9445. },
  9446. {
  9447. name: "Macro",
  9448. height: math.unit(1, "km")
  9449. },
  9450. {
  9451. name: "Megamacro",
  9452. height: math.unit(3000, "km")
  9453. },
  9454. {
  9455. name: "Gigamacro",
  9456. height: math.unit(1, "AU"),
  9457. default: true
  9458. },
  9459. {
  9460. name: "Omniversal",
  9461. height: math.unit(100e14, "lightyears")
  9462. },
  9463. ]
  9464. ))
  9465. characterMakers.push(() => makeCharacter(
  9466. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9467. {
  9468. front: {
  9469. height: math.unit(6, "feet"),
  9470. weight: math.unit(300, "lb"),
  9471. name: "Front",
  9472. image: {
  9473. source: "./media/characters/mekuto/front.svg",
  9474. extra: 921 / 832,
  9475. bottom: 0.03
  9476. }
  9477. },
  9478. hand: {
  9479. height: math.unit(6 / 10.24, "feet"),
  9480. name: "Hand",
  9481. image: {
  9482. source: "./media/characters/mekuto/hand.svg"
  9483. }
  9484. },
  9485. foot: {
  9486. height: math.unit(6 / 5.05, "feet"),
  9487. name: "Foot",
  9488. image: {
  9489. source: "./media/characters/mekuto/foot.svg"
  9490. }
  9491. },
  9492. },
  9493. [
  9494. {
  9495. name: "Minimicro",
  9496. height: math.unit(0.2, "inches")
  9497. },
  9498. {
  9499. name: "Micro",
  9500. height: math.unit(1.5, "inches")
  9501. },
  9502. {
  9503. name: "Normal",
  9504. height: math.unit(5 + 11 / 12, "feet"),
  9505. default: true
  9506. },
  9507. {
  9508. name: "Minimacro",
  9509. height: math.unit(17 + 9 / 12, "feet")
  9510. },
  9511. {
  9512. name: "Macro",
  9513. height: math.unit(177.5, "feet")
  9514. },
  9515. {
  9516. name: "Megamacro",
  9517. height: math.unit(152, "miles")
  9518. },
  9519. ]
  9520. ))
  9521. characterMakers.push(() => makeCharacter(
  9522. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9523. {
  9524. front: {
  9525. height: math.unit(6.5, "inches"),
  9526. weight: math.unit(13, "oz"),
  9527. name: "Front",
  9528. image: {
  9529. source: "./media/characters/dafydd-tomos/front.svg",
  9530. extra: 2990 / 2603,
  9531. bottom: 0.03
  9532. }
  9533. },
  9534. },
  9535. [
  9536. {
  9537. name: "Micro",
  9538. height: math.unit(6.5, "inches"),
  9539. default: true
  9540. },
  9541. ]
  9542. ))
  9543. characterMakers.push(() => makeCharacter(
  9544. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9545. {
  9546. front: {
  9547. height: math.unit(6, "feet"),
  9548. weight: math.unit(150, "lb"),
  9549. name: "Front",
  9550. image: {
  9551. source: "./media/characters/splinter/front.svg",
  9552. extra: 2990 / 2882,
  9553. bottom: 0.04
  9554. }
  9555. },
  9556. back: {
  9557. height: math.unit(6, "feet"),
  9558. weight: math.unit(150, "lb"),
  9559. name: "Back",
  9560. image: {
  9561. source: "./media/characters/splinter/back.svg",
  9562. extra: 2990 / 2882,
  9563. bottom: 0.04
  9564. }
  9565. },
  9566. },
  9567. [
  9568. {
  9569. name: "Normal",
  9570. height: math.unit(6, "feet")
  9571. },
  9572. {
  9573. name: "Macro",
  9574. height: math.unit(230, "meters"),
  9575. default: true
  9576. },
  9577. ]
  9578. ))
  9579. characterMakers.push(() => makeCharacter(
  9580. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9581. {
  9582. front: {
  9583. height: math.unit(4 + 10 / 12, "feet"),
  9584. weight: math.unit(480, "lb"),
  9585. name: "Front",
  9586. image: {
  9587. source: "./media/characters/snow-gabumon/front.svg",
  9588. extra: 1140 / 963,
  9589. bottom: 0.058
  9590. }
  9591. },
  9592. back: {
  9593. height: math.unit(4 + 10 / 12, "feet"),
  9594. weight: math.unit(480, "lb"),
  9595. name: "Back",
  9596. image: {
  9597. source: "./media/characters/snow-gabumon/back.svg",
  9598. extra: 1115 / 962,
  9599. bottom: 0.041
  9600. }
  9601. },
  9602. frontUndresed: {
  9603. height: math.unit(4 + 10 / 12, "feet"),
  9604. weight: math.unit(480, "lb"),
  9605. name: "Front (Undressed)",
  9606. image: {
  9607. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9608. extra: 1061 / 960,
  9609. bottom: 0.045
  9610. }
  9611. },
  9612. },
  9613. [
  9614. {
  9615. name: "Micro",
  9616. height: math.unit(1, "inch")
  9617. },
  9618. {
  9619. name: "Normal",
  9620. height: math.unit(4 + 10 / 12, "feet"),
  9621. default: true
  9622. },
  9623. {
  9624. name: "Macro",
  9625. height: math.unit(200, "feet")
  9626. },
  9627. {
  9628. name: "Megamacro",
  9629. height: math.unit(120, "miles")
  9630. },
  9631. {
  9632. name: "Gigamacro",
  9633. height: math.unit(9800, "miles")
  9634. },
  9635. ]
  9636. ))
  9637. characterMakers.push(() => makeCharacter(
  9638. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9639. {
  9640. front: {
  9641. height: math.unit(1.7, "meters"),
  9642. weight: math.unit(140, "lb"),
  9643. name: "Front",
  9644. image: {
  9645. source: "./media/characters/moody/front.svg",
  9646. extra: 3226 / 3007,
  9647. bottom: 0.087
  9648. }
  9649. },
  9650. },
  9651. [
  9652. {
  9653. name: "Micro",
  9654. height: math.unit(1, "mm")
  9655. },
  9656. {
  9657. name: "Normal",
  9658. height: math.unit(1.7, "meters"),
  9659. default: true
  9660. },
  9661. {
  9662. name: "Macro",
  9663. height: math.unit(80, "meters")
  9664. },
  9665. {
  9666. name: "Macro+",
  9667. height: math.unit(500, "meters")
  9668. },
  9669. ]
  9670. ))
  9671. characterMakers.push(() => makeCharacter(
  9672. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9673. {
  9674. front: {
  9675. height: math.unit(6, "feet"),
  9676. weight: math.unit(150, "lb"),
  9677. name: "Front",
  9678. image: {
  9679. source: "./media/characters/zyas/front.svg",
  9680. extra: 1180 / 1120,
  9681. bottom: 0.045
  9682. }
  9683. },
  9684. },
  9685. [
  9686. {
  9687. name: "Normal",
  9688. height: math.unit(10, "feet"),
  9689. default: true
  9690. },
  9691. {
  9692. name: "Macro",
  9693. height: math.unit(500, "feet")
  9694. },
  9695. {
  9696. name: "Megamacro",
  9697. height: math.unit(5, "miles")
  9698. },
  9699. {
  9700. name: "Teramacro",
  9701. height: math.unit(150000, "miles")
  9702. },
  9703. ]
  9704. ))
  9705. characterMakers.push(() => makeCharacter(
  9706. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9707. {
  9708. front: {
  9709. height: math.unit(6, "feet"),
  9710. weight: math.unit(150, "lb"),
  9711. name: "Front",
  9712. image: {
  9713. source: "./media/characters/cuon/front.svg",
  9714. extra: 1390 / 1320,
  9715. bottom: 0.008
  9716. }
  9717. },
  9718. },
  9719. [
  9720. {
  9721. name: "Micro",
  9722. height: math.unit(3, "inches")
  9723. },
  9724. {
  9725. name: "Normal",
  9726. height: math.unit(18 + 9 / 12, "feet"),
  9727. default: true
  9728. },
  9729. {
  9730. name: "Macro",
  9731. height: math.unit(360, "feet")
  9732. },
  9733. {
  9734. name: "Megamacro",
  9735. height: math.unit(360, "miles")
  9736. },
  9737. ]
  9738. ))
  9739. characterMakers.push(() => makeCharacter(
  9740. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9741. {
  9742. front: {
  9743. height: math.unit(2.4, "meters"),
  9744. weight: math.unit(70, "kg"),
  9745. name: "Front",
  9746. image: {
  9747. source: "./media/characters/nyanuxk/front.svg",
  9748. extra: 1172 / 1084,
  9749. bottom: 0.065
  9750. }
  9751. },
  9752. side: {
  9753. height: math.unit(2.4, "meters"),
  9754. weight: math.unit(70, "kg"),
  9755. name: "Side",
  9756. image: {
  9757. source: "./media/characters/nyanuxk/side.svg",
  9758. extra: 1190 / 1132,
  9759. bottom: 0.007
  9760. }
  9761. },
  9762. back: {
  9763. height: math.unit(2.4, "meters"),
  9764. weight: math.unit(70, "kg"),
  9765. name: "Back",
  9766. image: {
  9767. source: "./media/characters/nyanuxk/back.svg",
  9768. extra: 1200 / 1141,
  9769. bottom: 0.015
  9770. }
  9771. },
  9772. foot: {
  9773. height: math.unit(0.52, "meters"),
  9774. name: "Foot",
  9775. image: {
  9776. source: "./media/characters/nyanuxk/foot.svg"
  9777. }
  9778. },
  9779. },
  9780. [
  9781. {
  9782. name: "Micro",
  9783. height: math.unit(2, "cm")
  9784. },
  9785. {
  9786. name: "Normal",
  9787. height: math.unit(2.4, "meters"),
  9788. default: true
  9789. },
  9790. {
  9791. name: "Smaller Macro",
  9792. height: math.unit(120, "meters")
  9793. },
  9794. {
  9795. name: "Bigger Macro",
  9796. height: math.unit(1.2, "km")
  9797. },
  9798. {
  9799. name: "Megamacro",
  9800. height: math.unit(15, "kilometers")
  9801. },
  9802. {
  9803. name: "Gigamacro",
  9804. height: math.unit(2000, "km")
  9805. },
  9806. {
  9807. name: "Teramacro",
  9808. height: math.unit(500000, "km")
  9809. },
  9810. ]
  9811. ))
  9812. characterMakers.push(() => makeCharacter(
  9813. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9814. {
  9815. side: {
  9816. height: math.unit(6, "feet"),
  9817. name: "Side",
  9818. image: {
  9819. source: "./media/characters/ailbhe/side.svg",
  9820. extra: 757 / 464,
  9821. bottom: 0.041
  9822. }
  9823. },
  9824. },
  9825. [
  9826. {
  9827. name: "Normal",
  9828. height: math.unit(1.07, "meters"),
  9829. default: true
  9830. },
  9831. ]
  9832. ))
  9833. characterMakers.push(() => makeCharacter(
  9834. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9835. {
  9836. front: {
  9837. height: math.unit(6, "feet"),
  9838. weight: math.unit(120, "kg"),
  9839. name: "Front",
  9840. image: {
  9841. source: "./media/characters/zevulfius/front.svg",
  9842. extra: 965 / 903
  9843. }
  9844. },
  9845. side: {
  9846. height: math.unit(6, "feet"),
  9847. weight: math.unit(120, "kg"),
  9848. name: "Side",
  9849. image: {
  9850. source: "./media/characters/zevulfius/side.svg",
  9851. extra: 939 / 900
  9852. }
  9853. },
  9854. back: {
  9855. height: math.unit(6, "feet"),
  9856. weight: math.unit(120, "kg"),
  9857. name: "Back",
  9858. image: {
  9859. source: "./media/characters/zevulfius/back.svg",
  9860. extra: 918 / 854,
  9861. bottom: 0.005
  9862. }
  9863. },
  9864. foot: {
  9865. height: math.unit(6 / 3.72, "feet"),
  9866. name: "Foot",
  9867. image: {
  9868. source: "./media/characters/zevulfius/foot.svg"
  9869. }
  9870. },
  9871. },
  9872. [
  9873. {
  9874. name: "Macro",
  9875. height: math.unit(750, "meters")
  9876. },
  9877. {
  9878. name: "Megamacro",
  9879. height: math.unit(20, "km"),
  9880. default: true
  9881. },
  9882. {
  9883. name: "Gigamacro",
  9884. height: math.unit(2000, "km")
  9885. },
  9886. {
  9887. name: "Teramacro",
  9888. height: math.unit(250000, "km")
  9889. },
  9890. ]
  9891. ))
  9892. characterMakers.push(() => makeCharacter(
  9893. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9894. {
  9895. front: {
  9896. height: math.unit(100, "feet"),
  9897. weight: math.unit(350, "kg"),
  9898. name: "Front",
  9899. image: {
  9900. source: "./media/characters/rikes/front.svg",
  9901. extra: 1565 / 1483,
  9902. bottom: 0.017
  9903. }
  9904. },
  9905. },
  9906. [
  9907. {
  9908. name: "Macro",
  9909. height: math.unit(100, "feet"),
  9910. default: true
  9911. },
  9912. ]
  9913. ))
  9914. characterMakers.push(() => makeCharacter(
  9915. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9916. {
  9917. anthro: {
  9918. height: math.unit(8, "feet"),
  9919. weight: math.unit(120, "kg"),
  9920. name: "Anthro",
  9921. image: {
  9922. source: "./media/characters/adam-silver-mane/anthro.svg",
  9923. extra: 5743 / 5339,
  9924. bottom: 0.07
  9925. }
  9926. },
  9927. taur: {
  9928. height: math.unit(16, "feet"),
  9929. weight: math.unit(1500, "kg"),
  9930. name: "Taur",
  9931. image: {
  9932. source: "./media/characters/adam-silver-mane/taur.svg",
  9933. extra: 1713 / 1571,
  9934. bottom: 0.01
  9935. }
  9936. },
  9937. },
  9938. [
  9939. {
  9940. name: "Normal",
  9941. height: math.unit(8, "feet")
  9942. },
  9943. {
  9944. name: "Minimacro",
  9945. height: math.unit(80, "feet")
  9946. },
  9947. {
  9948. name: "Macro",
  9949. height: math.unit(800, "feet"),
  9950. default: true
  9951. },
  9952. {
  9953. name: "Megamacro",
  9954. height: math.unit(8000, "feet")
  9955. },
  9956. {
  9957. name: "Gigamacro",
  9958. height: math.unit(800, "miles")
  9959. },
  9960. {
  9961. name: "Teramacro",
  9962. height: math.unit(80000, "miles")
  9963. },
  9964. {
  9965. name: "Celestial",
  9966. height: math.unit(8e6, "miles")
  9967. },
  9968. {
  9969. name: "Star Dragon",
  9970. height: math.unit(800000, "parsecs")
  9971. },
  9972. {
  9973. name: "Godly",
  9974. height: math.unit(800, "teraparsecs")
  9975. },
  9976. ]
  9977. ))
  9978. characterMakers.push(() => makeCharacter(
  9979. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9980. {
  9981. front: {
  9982. height: math.unit(6, "feet"),
  9983. weight: math.unit(150, "lb"),
  9984. name: "Front",
  9985. image: {
  9986. source: "./media/characters/ky'owin/front.svg",
  9987. extra: 3888 / 3068,
  9988. bottom: 0.015
  9989. }
  9990. },
  9991. },
  9992. [
  9993. {
  9994. name: "Normal",
  9995. height: math.unit(6 + 8 / 12, "feet")
  9996. },
  9997. {
  9998. name: "Large",
  9999. height: math.unit(68, "feet")
  10000. },
  10001. {
  10002. name: "Macro",
  10003. height: math.unit(132, "feet")
  10004. },
  10005. {
  10006. name: "Macro+",
  10007. height: math.unit(340, "feet")
  10008. },
  10009. {
  10010. name: "Macro++",
  10011. height: math.unit(680, "feet"),
  10012. default: true
  10013. },
  10014. {
  10015. name: "Megamacro",
  10016. height: math.unit(1, "mile")
  10017. },
  10018. {
  10019. name: "Megamacro+",
  10020. height: math.unit(10, "miles")
  10021. },
  10022. ]
  10023. ))
  10024. characterMakers.push(() => makeCharacter(
  10025. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10026. {
  10027. front: {
  10028. height: math.unit(4, "feet"),
  10029. weight: math.unit(50, "lb"),
  10030. name: "Front",
  10031. image: {
  10032. source: "./media/characters/mal/front.svg",
  10033. extra: 785 / 724,
  10034. bottom: 0.07
  10035. }
  10036. },
  10037. },
  10038. [
  10039. {
  10040. name: "Micro",
  10041. height: math.unit(4, "inches")
  10042. },
  10043. {
  10044. name: "Normal",
  10045. height: math.unit(4, "feet"),
  10046. default: true
  10047. },
  10048. {
  10049. name: "Macro",
  10050. height: math.unit(200, "feet")
  10051. },
  10052. ]
  10053. ))
  10054. characterMakers.push(() => makeCharacter(
  10055. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10056. {
  10057. front: {
  10058. height: math.unit(6, "feet"),
  10059. weight: math.unit(150, "lb"),
  10060. name: "Front",
  10061. image: {
  10062. source: "./media/characters/jordan-deware/front.svg",
  10063. extra: 1191 / 1012
  10064. }
  10065. },
  10066. },
  10067. [
  10068. {
  10069. name: "Nano",
  10070. height: math.unit(0.01, "mm")
  10071. },
  10072. {
  10073. name: "Minimicro",
  10074. height: math.unit(1, "mm")
  10075. },
  10076. {
  10077. name: "Micro",
  10078. height: math.unit(0.5, "inches")
  10079. },
  10080. {
  10081. name: "Normal",
  10082. height: math.unit(4, "feet"),
  10083. default: true
  10084. },
  10085. {
  10086. name: "Minimacro",
  10087. height: math.unit(40, "meters")
  10088. },
  10089. {
  10090. name: "Small Macro",
  10091. height: math.unit(400, "meters")
  10092. },
  10093. {
  10094. name: "Macro",
  10095. height: math.unit(4, "miles")
  10096. },
  10097. {
  10098. name: "Megamacro",
  10099. height: math.unit(40, "miles")
  10100. },
  10101. {
  10102. name: "Megamacro+",
  10103. height: math.unit(400, "miles")
  10104. },
  10105. {
  10106. name: "Gigamacro",
  10107. height: math.unit(400000, "miles")
  10108. },
  10109. ]
  10110. ))
  10111. characterMakers.push(() => makeCharacter(
  10112. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10113. {
  10114. side: {
  10115. height: math.unit(6, "feet"),
  10116. weight: math.unit(150, "lb"),
  10117. name: "Side",
  10118. image: {
  10119. source: "./media/characters/kimiko/side.svg",
  10120. extra: 600 / 358
  10121. }
  10122. },
  10123. },
  10124. [
  10125. {
  10126. name: "Normal",
  10127. height: math.unit(15, "feet"),
  10128. default: true
  10129. },
  10130. {
  10131. name: "Macro",
  10132. height: math.unit(220, "feet")
  10133. },
  10134. {
  10135. name: "Macro+",
  10136. height: math.unit(1450, "feet")
  10137. },
  10138. {
  10139. name: "Megamacro",
  10140. height: math.unit(11500, "feet")
  10141. },
  10142. {
  10143. name: "Gigamacro",
  10144. height: math.unit(9500, "miles")
  10145. },
  10146. {
  10147. name: "Teramacro",
  10148. height: math.unit(2208005005, "miles")
  10149. },
  10150. {
  10151. name: "Examacro",
  10152. height: math.unit(2750, "parsecs")
  10153. },
  10154. {
  10155. name: "Zettamacro",
  10156. height: math.unit(101500, "parsecs")
  10157. },
  10158. ]
  10159. ))
  10160. characterMakers.push(() => makeCharacter(
  10161. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10162. {
  10163. front: {
  10164. height: math.unit(6, "feet"),
  10165. weight: math.unit(70, "kg"),
  10166. name: "Front",
  10167. image: {
  10168. source: "./media/characters/andrew-sleepy/front.svg"
  10169. }
  10170. },
  10171. side: {
  10172. height: math.unit(6, "feet"),
  10173. weight: math.unit(70, "kg"),
  10174. name: "Side",
  10175. image: {
  10176. source: "./media/characters/andrew-sleepy/side.svg"
  10177. }
  10178. },
  10179. },
  10180. [
  10181. {
  10182. name: "Micro",
  10183. height: math.unit(1, "mm"),
  10184. default: true
  10185. },
  10186. ]
  10187. ))
  10188. characterMakers.push(() => makeCharacter(
  10189. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10190. {
  10191. front: {
  10192. height: math.unit(6, "feet"),
  10193. weight: math.unit(150, "lb"),
  10194. name: "Front",
  10195. image: {
  10196. source: "./media/characters/judio/front.svg",
  10197. extra: 1258 / 1110
  10198. }
  10199. },
  10200. },
  10201. [
  10202. {
  10203. name: "Normal",
  10204. height: math.unit(5 + 6 / 12, "feet")
  10205. },
  10206. {
  10207. name: "Macro",
  10208. height: math.unit(1000, "feet"),
  10209. default: true
  10210. },
  10211. {
  10212. name: "Megamacro",
  10213. height: math.unit(10, "miles")
  10214. },
  10215. ]
  10216. ))
  10217. characterMakers.push(() => makeCharacter(
  10218. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10219. {
  10220. front: {
  10221. height: math.unit(6, "feet"),
  10222. weight: math.unit(68, "kg"),
  10223. name: "Front",
  10224. image: {
  10225. source: "./media/characters/nomaxice/front.svg",
  10226. extra: 1498 / 1073,
  10227. bottom: 0.075
  10228. }
  10229. },
  10230. foot: {
  10231. height: math.unit(1.1, "feet"),
  10232. name: "Foot",
  10233. image: {
  10234. source: "./media/characters/nomaxice/foot.svg"
  10235. }
  10236. },
  10237. },
  10238. [
  10239. {
  10240. name: "Micro",
  10241. height: math.unit(8, "cm")
  10242. },
  10243. {
  10244. name: "Norm",
  10245. height: math.unit(1.82, "m")
  10246. },
  10247. {
  10248. name: "Norm+",
  10249. height: math.unit(8.8, "feet")
  10250. },
  10251. {
  10252. name: "Big",
  10253. height: math.unit(8, "meters"),
  10254. default: true
  10255. },
  10256. {
  10257. name: "Macro",
  10258. height: math.unit(18, "meters")
  10259. },
  10260. {
  10261. name: "Macro+",
  10262. height: math.unit(88, "meters")
  10263. },
  10264. ]
  10265. ))
  10266. characterMakers.push(() => makeCharacter(
  10267. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10268. {
  10269. front: {
  10270. height: math.unit(12, "feet"),
  10271. weight: math.unit(1.5, "tons"),
  10272. name: "Front",
  10273. image: {
  10274. source: "./media/characters/dydros/front.svg",
  10275. extra: 863 / 800,
  10276. bottom: 0.015
  10277. }
  10278. },
  10279. back: {
  10280. height: math.unit(12, "feet"),
  10281. weight: math.unit(1.5, "tons"),
  10282. name: "Back",
  10283. image: {
  10284. source: "./media/characters/dydros/back.svg",
  10285. extra: 900 / 843,
  10286. bottom: 0.005
  10287. }
  10288. },
  10289. },
  10290. [
  10291. {
  10292. name: "Normal",
  10293. height: math.unit(12, "feet"),
  10294. default: true
  10295. },
  10296. ]
  10297. ))
  10298. characterMakers.push(() => makeCharacter(
  10299. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10300. {
  10301. front: {
  10302. height: math.unit(6, "feet"),
  10303. weight: math.unit(100, "kg"),
  10304. name: "Front",
  10305. image: {
  10306. source: "./media/characters/riggi/front.svg",
  10307. extra: 5787 / 5303
  10308. }
  10309. },
  10310. hyper: {
  10311. height: math.unit(6 * 5 / 3, "feet"),
  10312. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10313. name: "Hyper",
  10314. image: {
  10315. source: "./media/characters/riggi/hyper.svg",
  10316. extra: 3595 / 3485
  10317. }
  10318. },
  10319. },
  10320. [
  10321. {
  10322. name: "Small Macro",
  10323. height: math.unit(50, "feet")
  10324. },
  10325. {
  10326. name: "Default",
  10327. height: math.unit(200, "feet"),
  10328. default: true
  10329. },
  10330. {
  10331. name: "Loom",
  10332. height: math.unit(10000, "feet")
  10333. },
  10334. {
  10335. name: "Cruising Altitude",
  10336. height: math.unit(30000, "feet")
  10337. },
  10338. {
  10339. name: "Megamacro",
  10340. height: math.unit(100, "miles")
  10341. },
  10342. {
  10343. name: "Continent Sized",
  10344. height: math.unit(2800, "miles")
  10345. },
  10346. {
  10347. name: "Earth Sized",
  10348. height: math.unit(8000, "miles")
  10349. },
  10350. ]
  10351. ))
  10352. characterMakers.push(() => makeCharacter(
  10353. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10354. {
  10355. front: {
  10356. height: math.unit(6, "feet"),
  10357. weight: math.unit(250, "lb"),
  10358. name: "Front",
  10359. image: {
  10360. source: "./media/characters/alexi/front.svg",
  10361. extra: 3483 / 3291,
  10362. bottom: 0.04
  10363. }
  10364. },
  10365. back: {
  10366. height: math.unit(6, "feet"),
  10367. weight: math.unit(250, "lb"),
  10368. name: "Back",
  10369. image: {
  10370. source: "./media/characters/alexi/back.svg",
  10371. extra: 3533 / 3356,
  10372. bottom: 0.021
  10373. }
  10374. },
  10375. frontTransforming: {
  10376. height: math.unit(8.58, "feet"),
  10377. weight: math.unit(1300, "lb"),
  10378. name: "Transforming",
  10379. image: {
  10380. source: "./media/characters/alexi/front-transforming.svg",
  10381. extra: 437 / 409,
  10382. bottom: 19 / 458.66
  10383. }
  10384. },
  10385. frontTransformed: {
  10386. height: math.unit(12.5, "feet"),
  10387. weight: math.unit(4000, "lb"),
  10388. name: "Transformed",
  10389. image: {
  10390. source: "./media/characters/alexi/front-transformed.svg",
  10391. extra: 639 / 614,
  10392. bottom: 30.55 / 671
  10393. }
  10394. },
  10395. },
  10396. [
  10397. {
  10398. name: "Normal",
  10399. height: math.unit(14, "feet"),
  10400. default: true
  10401. },
  10402. {
  10403. name: "Minimacro",
  10404. height: math.unit(30, "meters")
  10405. },
  10406. {
  10407. name: "Macro",
  10408. height: math.unit(500, "meters")
  10409. },
  10410. {
  10411. name: "Megamacro",
  10412. height: math.unit(9000, "km")
  10413. },
  10414. {
  10415. name: "Teramacro",
  10416. height: math.unit(384000, "km")
  10417. },
  10418. ]
  10419. ))
  10420. characterMakers.push(() => makeCharacter(
  10421. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10422. {
  10423. front: {
  10424. height: math.unit(6, "feet"),
  10425. weight: math.unit(150, "lb"),
  10426. name: "Front",
  10427. image: {
  10428. source: "./media/characters/kayroo/front.svg",
  10429. extra: 1153 / 1038,
  10430. bottom: 0.06
  10431. }
  10432. },
  10433. foot: {
  10434. height: math.unit(6, "feet"),
  10435. weight: math.unit(150, "lb"),
  10436. name: "Foot",
  10437. image: {
  10438. source: "./media/characters/kayroo/foot.svg"
  10439. }
  10440. },
  10441. },
  10442. [
  10443. {
  10444. name: "Normal",
  10445. height: math.unit(8, "feet"),
  10446. default: true
  10447. },
  10448. {
  10449. name: "Minimacro",
  10450. height: math.unit(250, "feet")
  10451. },
  10452. {
  10453. name: "Macro",
  10454. height: math.unit(2800, "feet")
  10455. },
  10456. {
  10457. name: "Megamacro",
  10458. height: math.unit(5200, "feet")
  10459. },
  10460. {
  10461. name: "Gigamacro",
  10462. height: math.unit(27000, "feet")
  10463. },
  10464. {
  10465. name: "Omega",
  10466. height: math.unit(45000, "feet")
  10467. },
  10468. ]
  10469. ))
  10470. characterMakers.push(() => makeCharacter(
  10471. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10472. {
  10473. front: {
  10474. height: math.unit(18, "feet"),
  10475. weight: math.unit(5800, "lb"),
  10476. name: "Front",
  10477. image: {
  10478. source: "./media/characters/rhys/front.svg",
  10479. extra: 3386 / 3090,
  10480. bottom: 0.07
  10481. }
  10482. },
  10483. },
  10484. [
  10485. {
  10486. name: "Normal",
  10487. height: math.unit(18, "feet"),
  10488. default: true
  10489. },
  10490. {
  10491. name: "Working Size",
  10492. height: math.unit(200, "feet")
  10493. },
  10494. {
  10495. name: "Demolition Size",
  10496. height: math.unit(2000, "feet")
  10497. },
  10498. {
  10499. name: "Maximum Licensed Size",
  10500. height: math.unit(5, "miles")
  10501. },
  10502. {
  10503. name: "Maximum Observed Size",
  10504. height: math.unit(10, "yottameters")
  10505. },
  10506. ]
  10507. ))
  10508. characterMakers.push(() => makeCharacter(
  10509. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10510. {
  10511. front: {
  10512. height: math.unit(6, "feet"),
  10513. weight: math.unit(250, "lb"),
  10514. name: "Front",
  10515. image: {
  10516. source: "./media/characters/toto/front.svg",
  10517. extra: 527 / 479,
  10518. bottom: 0.05
  10519. }
  10520. },
  10521. },
  10522. [
  10523. {
  10524. name: "Micro",
  10525. height: math.unit(3, "feet")
  10526. },
  10527. {
  10528. name: "Normal",
  10529. height: math.unit(10, "feet")
  10530. },
  10531. {
  10532. name: "Macro",
  10533. height: math.unit(150, "feet"),
  10534. default: true
  10535. },
  10536. {
  10537. name: "Megamacro",
  10538. height: math.unit(1200, "feet")
  10539. },
  10540. ]
  10541. ))
  10542. characterMakers.push(() => makeCharacter(
  10543. { name: "King", species: ["lion"], tags: ["anthro"] },
  10544. {
  10545. back: {
  10546. height: math.unit(6, "feet"),
  10547. weight: math.unit(150, "lb"),
  10548. name: "Back",
  10549. image: {
  10550. source: "./media/characters/king/back.svg"
  10551. }
  10552. },
  10553. },
  10554. [
  10555. {
  10556. name: "Micro",
  10557. height: math.unit(2, "inches")
  10558. },
  10559. {
  10560. name: "Normal",
  10561. height: math.unit(8, "feet")
  10562. },
  10563. {
  10564. name: "Macro",
  10565. height: math.unit(200, "feet"),
  10566. default: true
  10567. },
  10568. {
  10569. name: "Megamacro",
  10570. height: math.unit(50, "miles")
  10571. },
  10572. ]
  10573. ))
  10574. characterMakers.push(() => makeCharacter(
  10575. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10576. {
  10577. anthro: {
  10578. height: math.unit(6 + 5 / 12, "feet"),
  10579. weight: math.unit(280, "lb"),
  10580. name: "Anthro",
  10581. image: {
  10582. source: "./media/characters/cordite/anthro.svg",
  10583. extra: 1986 / 1905,
  10584. bottom: 0.025
  10585. }
  10586. },
  10587. feral: {
  10588. height: math.unit(2, "feet"),
  10589. weight: math.unit(90, "lb"),
  10590. name: "Feral",
  10591. image: {
  10592. source: "./media/characters/cordite/feral.svg",
  10593. extra: 1260 / 755,
  10594. bottom: 0.05
  10595. }
  10596. },
  10597. },
  10598. [
  10599. {
  10600. name: "Normal",
  10601. height: math.unit(6 + 5 / 12, "feet"),
  10602. default: true
  10603. },
  10604. ]
  10605. ))
  10606. characterMakers.push(() => makeCharacter(
  10607. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10608. {
  10609. front: {
  10610. height: math.unit(6, "feet"),
  10611. weight: math.unit(150, "lb"),
  10612. name: "Front",
  10613. image: {
  10614. source: "./media/characters/pianostrong/front.svg",
  10615. extra: 6577 / 6254,
  10616. bottom: 0.02
  10617. }
  10618. },
  10619. side: {
  10620. height: math.unit(6, "feet"),
  10621. weight: math.unit(150, "lb"),
  10622. name: "Side",
  10623. image: {
  10624. source: "./media/characters/pianostrong/side.svg",
  10625. extra: 6106 / 5730
  10626. }
  10627. },
  10628. back: {
  10629. height: math.unit(6, "feet"),
  10630. weight: math.unit(150, "lb"),
  10631. name: "Back",
  10632. image: {
  10633. source: "./media/characters/pianostrong/back.svg",
  10634. extra: 6085 / 5733,
  10635. bottom: 0.01
  10636. }
  10637. },
  10638. },
  10639. [
  10640. {
  10641. name: "Macro",
  10642. height: math.unit(100, "feet")
  10643. },
  10644. {
  10645. name: "Macro+",
  10646. height: math.unit(300, "feet"),
  10647. default: true
  10648. },
  10649. {
  10650. name: "Macro++",
  10651. height: math.unit(1000, "feet")
  10652. },
  10653. ]
  10654. ))
  10655. characterMakers.push(() => makeCharacter(
  10656. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10657. {
  10658. front: {
  10659. height: math.unit(6, "feet"),
  10660. weight: math.unit(150, "lb"),
  10661. name: "Front",
  10662. image: {
  10663. source: "./media/characters/kona/front.svg",
  10664. extra: 2960 / 2629,
  10665. bottom: 0.005
  10666. }
  10667. },
  10668. },
  10669. [
  10670. {
  10671. name: "Normal",
  10672. height: math.unit(11 + 8 / 12, "feet")
  10673. },
  10674. {
  10675. name: "Macro",
  10676. height: math.unit(850, "feet"),
  10677. default: true
  10678. },
  10679. {
  10680. name: "Macro+",
  10681. height: math.unit(1.5, "km"),
  10682. default: true
  10683. },
  10684. {
  10685. name: "Megamacro",
  10686. height: math.unit(80, "miles")
  10687. },
  10688. {
  10689. name: "Gigamacro",
  10690. height: math.unit(3500, "miles")
  10691. },
  10692. ]
  10693. ))
  10694. characterMakers.push(() => makeCharacter(
  10695. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10696. {
  10697. side: {
  10698. height: math.unit(1.9, "meters"),
  10699. weight: math.unit(326, "kg"),
  10700. name: "Side",
  10701. image: {
  10702. source: "./media/characters/levi/side.svg",
  10703. extra: 1704 / 1334,
  10704. bottom: 0.02
  10705. }
  10706. },
  10707. },
  10708. [
  10709. {
  10710. name: "Normal",
  10711. height: math.unit(1.9, "meters"),
  10712. default: true
  10713. },
  10714. {
  10715. name: "Macro",
  10716. height: math.unit(20, "meters")
  10717. },
  10718. {
  10719. name: "Macro+",
  10720. height: math.unit(200, "meters")
  10721. },
  10722. {
  10723. name: "Megamacro",
  10724. height: math.unit(2, "km")
  10725. },
  10726. {
  10727. name: "Megamacro+",
  10728. height: math.unit(20, "km")
  10729. },
  10730. {
  10731. name: "Gigamacro",
  10732. height: math.unit(2500, "km")
  10733. },
  10734. {
  10735. name: "Gigamacro+",
  10736. height: math.unit(120000, "km")
  10737. },
  10738. {
  10739. name: "Teramacro",
  10740. height: math.unit(7.77e6, "km")
  10741. },
  10742. ]
  10743. ))
  10744. characterMakers.push(() => makeCharacter(
  10745. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10746. {
  10747. front: {
  10748. height: math.unit(6 + 4 / 12, "feet"),
  10749. weight: math.unit(188, "lb"),
  10750. name: "Front",
  10751. image: {
  10752. source: "./media/characters/bmc/front.svg",
  10753. extra: 1067 / 1022,
  10754. bottom: 0.047
  10755. }
  10756. },
  10757. },
  10758. [
  10759. {
  10760. name: "Human-sized",
  10761. height: math.unit(6 + 4 / 12, "feet")
  10762. },
  10763. {
  10764. name: "Small",
  10765. height: math.unit(250, "feet")
  10766. },
  10767. {
  10768. name: "Normal",
  10769. height: math.unit(1250, "feet"),
  10770. default: true
  10771. },
  10772. {
  10773. name: "Good Day",
  10774. height: math.unit(88, "miles")
  10775. },
  10776. {
  10777. name: "Largest Measured Size",
  10778. height: math.unit(11.2e6, "lightyears")
  10779. },
  10780. ]
  10781. ))
  10782. characterMakers.push(() => makeCharacter(
  10783. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10784. {
  10785. front: {
  10786. height: math.unit(20, "feet"),
  10787. weight: math.unit(2016, "kg"),
  10788. name: "Front",
  10789. image: {
  10790. source: "./media/characters/sven-the-kaiju/front.svg",
  10791. extra: 1479 / 1449,
  10792. bottom: 0.05
  10793. }
  10794. },
  10795. },
  10796. [
  10797. {
  10798. name: "Fairy",
  10799. height: math.unit(6, "inches")
  10800. },
  10801. {
  10802. name: "Normal",
  10803. height: math.unit(20, "feet"),
  10804. default: true
  10805. },
  10806. {
  10807. name: "Rampage",
  10808. height: math.unit(200, "feet")
  10809. },
  10810. {
  10811. name: "Archfey Forest Guardian",
  10812. height: math.unit(1, "mile")
  10813. },
  10814. ]
  10815. ))
  10816. characterMakers.push(() => makeCharacter(
  10817. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10818. {
  10819. front: {
  10820. height: math.unit(4, "meters"),
  10821. weight: math.unit(2, "tons"),
  10822. name: "Front",
  10823. image: {
  10824. source: "./media/characters/marik/front.svg",
  10825. extra: 1057 / 1003,
  10826. bottom: 0.08
  10827. }
  10828. },
  10829. },
  10830. [
  10831. {
  10832. name: "Normal",
  10833. height: math.unit(4, "meters"),
  10834. default: true
  10835. },
  10836. {
  10837. name: "Macro",
  10838. height: math.unit(20, "meters")
  10839. },
  10840. {
  10841. name: "Megamacro",
  10842. height: math.unit(50, "km")
  10843. },
  10844. {
  10845. name: "Gigamacro",
  10846. height: math.unit(100, "km")
  10847. },
  10848. {
  10849. name: "Alpha Macro",
  10850. height: math.unit(7.88e7, "yottameters")
  10851. },
  10852. ]
  10853. ))
  10854. characterMakers.push(() => makeCharacter(
  10855. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10856. {
  10857. front: {
  10858. height: math.unit(6, "feet"),
  10859. weight: math.unit(110, "lb"),
  10860. name: "Front",
  10861. image: {
  10862. source: "./media/characters/mel/front.svg",
  10863. extra: 736 / 617,
  10864. bottom: 0.017
  10865. }
  10866. },
  10867. },
  10868. [
  10869. {
  10870. name: "Pico",
  10871. height: math.unit(3, "pm")
  10872. },
  10873. {
  10874. name: "Nano",
  10875. height: math.unit(3, "nm")
  10876. },
  10877. {
  10878. name: "Micro",
  10879. height: math.unit(0.3, "mm"),
  10880. default: true
  10881. },
  10882. {
  10883. name: "Micro+",
  10884. height: math.unit(3, "mm")
  10885. },
  10886. {
  10887. name: "Normal",
  10888. height: math.unit(5 + 10.5 / 12, "feet")
  10889. },
  10890. ]
  10891. ))
  10892. characterMakers.push(() => makeCharacter(
  10893. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10894. {
  10895. kaiju: {
  10896. height: math.unit(1.75, "meters"),
  10897. weight: math.unit(55, "kg"),
  10898. name: "Kaiju",
  10899. image: {
  10900. source: "./media/characters/lykonous/kaiju.svg",
  10901. extra: 1055 / 946,
  10902. bottom: 0.135
  10903. }
  10904. },
  10905. },
  10906. [
  10907. {
  10908. name: "Normal",
  10909. height: math.unit(2.5, "meters"),
  10910. default: true
  10911. },
  10912. {
  10913. name: "Kaiju Dragon",
  10914. height: math.unit(60, "meters")
  10915. },
  10916. {
  10917. name: "Mega Kaiju",
  10918. height: math.unit(120, "km")
  10919. },
  10920. {
  10921. name: "Giga Kaiju",
  10922. height: math.unit(200, "megameters")
  10923. },
  10924. {
  10925. name: "Terra Kaiju",
  10926. height: math.unit(400, "gigameters")
  10927. },
  10928. {
  10929. name: "Kaiju Dragon God",
  10930. height: math.unit(13000, "exaparsecs")
  10931. },
  10932. ]
  10933. ))
  10934. characterMakers.push(() => makeCharacter(
  10935. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10936. {
  10937. front: {
  10938. height: math.unit(6, "feet"),
  10939. weight: math.unit(150, "lb"),
  10940. name: "Front",
  10941. image: {
  10942. source: "./media/characters/blü/front.svg",
  10943. extra: 1883 / 1564,
  10944. bottom: 0.031
  10945. }
  10946. },
  10947. },
  10948. [
  10949. {
  10950. name: "Normal",
  10951. height: math.unit(13, "feet"),
  10952. default: true
  10953. },
  10954. {
  10955. name: "Big Boi",
  10956. height: math.unit(150, "meters")
  10957. },
  10958. {
  10959. name: "Mini Stomper",
  10960. height: math.unit(300, "meters")
  10961. },
  10962. {
  10963. name: "Macro",
  10964. height: math.unit(1000, "meters")
  10965. },
  10966. {
  10967. name: "Megamacro",
  10968. height: math.unit(11000, "meters")
  10969. },
  10970. {
  10971. name: "Gigamacro",
  10972. height: math.unit(11000, "km")
  10973. },
  10974. {
  10975. name: "Teramacro",
  10976. height: math.unit(420000, "km")
  10977. },
  10978. {
  10979. name: "Examacro",
  10980. height: math.unit(120, "parsecs")
  10981. },
  10982. {
  10983. name: "God Tho",
  10984. height: math.unit(98000000000, "parsecs")
  10985. },
  10986. ]
  10987. ))
  10988. characterMakers.push(() => makeCharacter(
  10989. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10990. {
  10991. taurFront: {
  10992. height: math.unit(6, "feet"),
  10993. weight: math.unit(200, "lb"),
  10994. name: "Taur (Front)",
  10995. image: {
  10996. source: "./media/characters/scales/taur-front.svg",
  10997. extra: 1,
  10998. bottom: 0.05
  10999. }
  11000. },
  11001. taurBack: {
  11002. height: math.unit(6, "feet"),
  11003. weight: math.unit(200, "lb"),
  11004. name: "Taur (Back)",
  11005. image: {
  11006. source: "./media/characters/scales/taur-back.svg",
  11007. extra: 1,
  11008. bottom: 0.08
  11009. }
  11010. },
  11011. anthro: {
  11012. height: math.unit(6 * 7 / 12, "feet"),
  11013. weight: math.unit(100, "lb"),
  11014. name: "Anthro",
  11015. image: {
  11016. source: "./media/characters/scales/anthro.svg",
  11017. extra: 1,
  11018. bottom: 0.06
  11019. }
  11020. },
  11021. },
  11022. [
  11023. {
  11024. name: "Normal",
  11025. height: math.unit(12, "feet"),
  11026. default: true
  11027. },
  11028. ]
  11029. ))
  11030. characterMakers.push(() => makeCharacter(
  11031. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11032. {
  11033. front: {
  11034. height: math.unit(6, "feet"),
  11035. weight: math.unit(150, "lb"),
  11036. name: "Front",
  11037. image: {
  11038. source: "./media/characters/koragos/front.svg",
  11039. extra: 841 / 794,
  11040. bottom: 0.035
  11041. }
  11042. },
  11043. back: {
  11044. height: math.unit(6, "feet"),
  11045. weight: math.unit(150, "lb"),
  11046. name: "Back",
  11047. image: {
  11048. source: "./media/characters/koragos/back.svg",
  11049. extra: 841 / 810,
  11050. bottom: 0.022
  11051. }
  11052. },
  11053. },
  11054. [
  11055. {
  11056. name: "Normal",
  11057. height: math.unit(6 + 11 / 12, "feet"),
  11058. default: true
  11059. },
  11060. {
  11061. name: "Macro",
  11062. height: math.unit(490, "feet")
  11063. },
  11064. {
  11065. name: "Megamacro",
  11066. height: math.unit(10, "miles")
  11067. },
  11068. {
  11069. name: "Gigamacro",
  11070. height: math.unit(50, "miles")
  11071. },
  11072. ]
  11073. ))
  11074. characterMakers.push(() => makeCharacter(
  11075. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11076. {
  11077. front: {
  11078. height: math.unit(6, "feet"),
  11079. weight: math.unit(250, "lb"),
  11080. name: "Front",
  11081. image: {
  11082. source: "./media/characters/xylrem/front.svg",
  11083. extra: 3323 / 3050,
  11084. bottom: 0.065
  11085. }
  11086. },
  11087. },
  11088. [
  11089. {
  11090. name: "Micro",
  11091. height: math.unit(4, "feet")
  11092. },
  11093. {
  11094. name: "Normal",
  11095. height: math.unit(16, "feet"),
  11096. default: true
  11097. },
  11098. {
  11099. name: "Macro",
  11100. height: math.unit(2720, "feet")
  11101. },
  11102. {
  11103. name: "Megamacro",
  11104. height: math.unit(25000, "miles")
  11105. },
  11106. ]
  11107. ))
  11108. characterMakers.push(() => makeCharacter(
  11109. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11110. {
  11111. front: {
  11112. height: math.unit(8, "feet"),
  11113. weight: math.unit(250, "kg"),
  11114. name: "Front",
  11115. image: {
  11116. source: "./media/characters/ikideru/front.svg",
  11117. extra: 930 / 870,
  11118. bottom: 0.087
  11119. }
  11120. },
  11121. back: {
  11122. height: math.unit(8, "feet"),
  11123. weight: math.unit(250, "kg"),
  11124. name: "Back",
  11125. image: {
  11126. source: "./media/characters/ikideru/back.svg",
  11127. extra: 919 / 852,
  11128. bottom: 0.055
  11129. }
  11130. },
  11131. },
  11132. [
  11133. {
  11134. name: "Rare",
  11135. height: math.unit(8, "feet"),
  11136. default: true
  11137. },
  11138. {
  11139. name: "Playful Loom",
  11140. height: math.unit(80, "feet")
  11141. },
  11142. {
  11143. name: "City Leaner",
  11144. height: math.unit(230, "feet")
  11145. },
  11146. {
  11147. name: "Megamacro",
  11148. height: math.unit(2500, "feet")
  11149. },
  11150. {
  11151. name: "Gigamacro",
  11152. height: math.unit(26400, "feet")
  11153. },
  11154. {
  11155. name: "Tectonic Shifter",
  11156. height: math.unit(1.7, "megameters")
  11157. },
  11158. {
  11159. name: "Planet Carer",
  11160. height: math.unit(21, "megameters")
  11161. },
  11162. {
  11163. name: "God",
  11164. height: math.unit(11157.22, "parsecs")
  11165. },
  11166. ]
  11167. ))
  11168. characterMakers.push(() => makeCharacter(
  11169. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11170. {
  11171. front: {
  11172. height: math.unit(6, "feet"),
  11173. weight: math.unit(120, "lb"),
  11174. name: "Front",
  11175. image: {
  11176. source: "./media/characters/neo/front.svg"
  11177. }
  11178. },
  11179. },
  11180. [
  11181. {
  11182. name: "Micro",
  11183. height: math.unit(2, "inches"),
  11184. default: true
  11185. },
  11186. {
  11187. name: "Human Size",
  11188. height: math.unit(5 + 8 / 12, "feet")
  11189. },
  11190. ]
  11191. ))
  11192. characterMakers.push(() => makeCharacter(
  11193. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11194. {
  11195. front: {
  11196. height: math.unit(13 + 10 / 12, "feet"),
  11197. weight: math.unit(5320, "lb"),
  11198. name: "Front",
  11199. image: {
  11200. source: "./media/characters/chauncey-chantz/front.svg",
  11201. extra: 1587 / 1435,
  11202. bottom: 0.02
  11203. }
  11204. },
  11205. },
  11206. [
  11207. {
  11208. name: "Normal",
  11209. height: math.unit(13 + 10 / 12, "feet"),
  11210. default: true
  11211. },
  11212. {
  11213. name: "Macro",
  11214. height: math.unit(45, "feet")
  11215. },
  11216. {
  11217. name: "Megamacro",
  11218. height: math.unit(250, "miles")
  11219. },
  11220. {
  11221. name: "Planetary",
  11222. height: math.unit(10000, "miles")
  11223. },
  11224. {
  11225. name: "Galactic",
  11226. height: math.unit(40000, "parsecs")
  11227. },
  11228. {
  11229. name: "Universal",
  11230. height: math.unit(1, "yottameter")
  11231. },
  11232. ]
  11233. ))
  11234. characterMakers.push(() => makeCharacter(
  11235. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11236. {
  11237. front: {
  11238. height: math.unit(6, "feet"),
  11239. weight: math.unit(150, "lb"),
  11240. name: "Front",
  11241. image: {
  11242. source: "./media/characters/epifox/front.svg",
  11243. extra: 1,
  11244. bottom: 0.075
  11245. }
  11246. },
  11247. },
  11248. [
  11249. {
  11250. name: "Micro",
  11251. height: math.unit(6, "inches")
  11252. },
  11253. {
  11254. name: "Normal",
  11255. height: math.unit(12, "feet"),
  11256. default: true
  11257. },
  11258. {
  11259. name: "Macro",
  11260. height: math.unit(3810, "feet")
  11261. },
  11262. {
  11263. name: "Megamacro",
  11264. height: math.unit(500, "miles")
  11265. },
  11266. ]
  11267. ))
  11268. characterMakers.push(() => makeCharacter(
  11269. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11270. {
  11271. front: {
  11272. height: math.unit(1.8796, "m"),
  11273. weight: math.unit(230, "lb"),
  11274. name: "Front",
  11275. image: {
  11276. source: "./media/characters/colin-t/front.svg",
  11277. extra: 1272 / 1193,
  11278. bottom: 0.07
  11279. }
  11280. },
  11281. },
  11282. [
  11283. {
  11284. name: "Micro",
  11285. height: math.unit(0.571, "meters")
  11286. },
  11287. {
  11288. name: "Normal",
  11289. height: math.unit(1.8796, "meters"),
  11290. default: true
  11291. },
  11292. {
  11293. name: "Tall",
  11294. height: math.unit(4, "meters")
  11295. },
  11296. {
  11297. name: "Macro",
  11298. height: math.unit(67.241, "meters")
  11299. },
  11300. {
  11301. name: "Megamacro",
  11302. height: math.unit(371.856, "meters")
  11303. },
  11304. {
  11305. name: "Planetary",
  11306. height: math.unit(12631.5689, "km")
  11307. },
  11308. ]
  11309. ))
  11310. characterMakers.push(() => makeCharacter(
  11311. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11312. {
  11313. front: {
  11314. height: math.unit(1.85, "meters"),
  11315. weight: math.unit(80, "kg"),
  11316. name: "Front",
  11317. image: {
  11318. source: "./media/characters/matvei/front.svg",
  11319. extra: 614 / 594,
  11320. bottom: 0.01
  11321. }
  11322. },
  11323. },
  11324. [
  11325. {
  11326. name: "Normal",
  11327. height: math.unit(1.85, "meters"),
  11328. default: true
  11329. },
  11330. ]
  11331. ))
  11332. characterMakers.push(() => makeCharacter(
  11333. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11334. {
  11335. front: {
  11336. height: math.unit(5 + 9 / 12, "feet"),
  11337. weight: math.unit(70, "lb"),
  11338. name: "Front",
  11339. image: {
  11340. source: "./media/characters/quincy/front.svg",
  11341. extra: 3041 / 2751
  11342. }
  11343. },
  11344. back: {
  11345. height: math.unit(5 + 9 / 12, "feet"),
  11346. weight: math.unit(70, "lb"),
  11347. name: "Back",
  11348. image: {
  11349. source: "./media/characters/quincy/back.svg",
  11350. extra: 3041 / 2751
  11351. }
  11352. },
  11353. flying: {
  11354. height: math.unit(5 + 4 / 12, "feet"),
  11355. weight: math.unit(70, "lb"),
  11356. name: "Flying",
  11357. image: {
  11358. source: "./media/characters/quincy/flying.svg",
  11359. extra: 1044 / 930
  11360. }
  11361. },
  11362. },
  11363. [
  11364. {
  11365. name: "Micro",
  11366. height: math.unit(3, "cm")
  11367. },
  11368. {
  11369. name: "Normal",
  11370. height: math.unit(5 + 9 / 12, "feet")
  11371. },
  11372. {
  11373. name: "Macro",
  11374. height: math.unit(200, "meters"),
  11375. default: true
  11376. },
  11377. {
  11378. name: "Megamacro",
  11379. height: math.unit(1000, "meters")
  11380. },
  11381. ]
  11382. ))
  11383. characterMakers.push(() => makeCharacter(
  11384. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11385. {
  11386. front: {
  11387. height: math.unit(4 + 7 / 12, "feet"),
  11388. weight: math.unit(50, "lb"),
  11389. name: "Front",
  11390. image: {
  11391. source: "./media/characters/vanrel/front.svg",
  11392. extra: 1,
  11393. bottom: 0.02
  11394. }
  11395. },
  11396. frontAlt: {
  11397. height: math.unit(4 + 7 / 12, "feet"),
  11398. weight: math.unit(50, "lb"),
  11399. name: "Front-alt",
  11400. image: {
  11401. source: "./media/characters/vanrel/front-alt.svg",
  11402. extra: 1,
  11403. bottom: 15 / 1511
  11404. }
  11405. },
  11406. elemental: {
  11407. height: math.unit(3, "feet"),
  11408. weight: math.unit(50, "lb"),
  11409. name: "Elemental",
  11410. image: {
  11411. source: "./media/characters/vanrel/elemental.svg",
  11412. extra: 192.3 / 162.8,
  11413. bottom: 1.79 / 194.17
  11414. }
  11415. },
  11416. side: {
  11417. height: math.unit(4 + 7 / 12, "feet"),
  11418. weight: math.unit(50, "lb"),
  11419. name: "Side",
  11420. image: {
  11421. source: "./media/characters/vanrel/side.svg",
  11422. extra: 1,
  11423. bottom: 0.025
  11424. }
  11425. },
  11426. tome: {
  11427. height: math.unit(1.35, "feet"),
  11428. weight: math.unit(10, "lb"),
  11429. name: "Vanrel's Tome",
  11430. rename: true,
  11431. image: {
  11432. source: "./media/characters/vanrel/tome.svg"
  11433. }
  11434. },
  11435. beans: {
  11436. height: math.unit(0.89, "feet"),
  11437. name: "Beans",
  11438. image: {
  11439. source: "./media/characters/vanrel/beans.svg"
  11440. }
  11441. },
  11442. },
  11443. [
  11444. {
  11445. name: "Normal",
  11446. height: math.unit(4 + 7 / 12, "feet"),
  11447. default: true
  11448. },
  11449. ]
  11450. ))
  11451. characterMakers.push(() => makeCharacter(
  11452. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11453. {
  11454. front: {
  11455. height: math.unit(7 + 5 / 12, "feet"),
  11456. weight: math.unit(150, "lb"),
  11457. name: "Front",
  11458. image: {
  11459. source: "./media/characters/kuiper-vanrel/front.svg",
  11460. extra: 1118 / 1068,
  11461. bottom: 0.09
  11462. }
  11463. },
  11464. foot: {
  11465. height: math.unit(0.55, "meters"),
  11466. name: "Foot",
  11467. image: {
  11468. source: "./media/characters/kuiper-vanrel/foot.svg",
  11469. }
  11470. },
  11471. battle: {
  11472. height: math.unit(6.824, "feet"),
  11473. weight: math.unit(150, "lb"),
  11474. name: "Battle",
  11475. image: {
  11476. source: "./media/characters/kuiper-vanrel/battle.svg",
  11477. extra: 1466 / 1327,
  11478. bottom: 29 / 1492.5
  11479. }
  11480. },
  11481. battleAlt: {
  11482. height: math.unit(6.824, "feet"),
  11483. weight: math.unit(150, "lb"),
  11484. name: "Battle (Alt)",
  11485. image: {
  11486. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11487. extra: 2081 / 1965,
  11488. bottom: 40 / 2121
  11489. }
  11490. },
  11491. },
  11492. [
  11493. {
  11494. name: "Normal",
  11495. height: math.unit(7 + 5 / 12, "feet"),
  11496. default: true
  11497. },
  11498. ]
  11499. ))
  11500. characterMakers.push(() => makeCharacter(
  11501. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11502. {
  11503. front: {
  11504. height: math.unit(8 + 5 / 12, "feet"),
  11505. weight: math.unit(150, "lb"),
  11506. name: "Front",
  11507. image: {
  11508. source: "./media/characters/keset-vanrel/front.svg",
  11509. extra: 1150 / 1084,
  11510. bottom: 0.05
  11511. }
  11512. },
  11513. hand: {
  11514. height: math.unit(0.6, "meters"),
  11515. name: "Hand",
  11516. image: {
  11517. source: "./media/characters/keset-vanrel/hand.svg"
  11518. }
  11519. },
  11520. foot: {
  11521. height: math.unit(0.94978, "meters"),
  11522. name: "Foot",
  11523. image: {
  11524. source: "./media/characters/keset-vanrel/foot.svg"
  11525. }
  11526. },
  11527. battle: {
  11528. height: math.unit(7.408, "feet"),
  11529. weight: math.unit(150, "lb"),
  11530. name: "Battle",
  11531. image: {
  11532. source: "./media/characters/keset-vanrel/battle.svg",
  11533. extra: 1890 / 1386,
  11534. bottom: 73.28 / 1970
  11535. }
  11536. },
  11537. },
  11538. [
  11539. {
  11540. name: "Normal",
  11541. height: math.unit(8 + 5 / 12, "feet"),
  11542. default: true
  11543. },
  11544. ]
  11545. ))
  11546. characterMakers.push(() => makeCharacter(
  11547. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11548. {
  11549. front: {
  11550. height: math.unit(6, "feet"),
  11551. weight: math.unit(150, "lb"),
  11552. name: "Front",
  11553. image: {
  11554. source: "./media/characters/neos/front.svg",
  11555. extra: 1696 / 992,
  11556. bottom: 0.14
  11557. }
  11558. },
  11559. },
  11560. [
  11561. {
  11562. name: "Normal",
  11563. height: math.unit(54, "cm"),
  11564. default: true
  11565. },
  11566. {
  11567. name: "Macro",
  11568. height: math.unit(100, "m")
  11569. },
  11570. {
  11571. name: "Megamacro",
  11572. height: math.unit(10, "km")
  11573. },
  11574. {
  11575. name: "Megamacro+",
  11576. height: math.unit(100, "km")
  11577. },
  11578. {
  11579. name: "Gigamacro",
  11580. height: math.unit(100, "Mm")
  11581. },
  11582. {
  11583. name: "Teramacro",
  11584. height: math.unit(100, "Gm")
  11585. },
  11586. {
  11587. name: "Examacro",
  11588. height: math.unit(100, "Em")
  11589. },
  11590. {
  11591. name: "Godly",
  11592. height: math.unit(10000, "Ym")
  11593. },
  11594. {
  11595. name: "Beyond Godly",
  11596. height: math.unit(25, "multiverses")
  11597. },
  11598. ]
  11599. ))
  11600. characterMakers.push(() => makeCharacter(
  11601. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11602. {
  11603. feminine: {
  11604. height: math.unit(5, "feet"),
  11605. weight: math.unit(100, "lb"),
  11606. name: "Feminine",
  11607. image: {
  11608. source: "./media/characters/sammy-mouse/feminine.svg",
  11609. extra: 2526 / 2425,
  11610. bottom: 0.123
  11611. }
  11612. },
  11613. masculine: {
  11614. height: math.unit(5, "feet"),
  11615. weight: math.unit(100, "lb"),
  11616. name: "Masculine",
  11617. image: {
  11618. source: "./media/characters/sammy-mouse/masculine.svg",
  11619. extra: 2526 / 2425,
  11620. bottom: 0.123
  11621. }
  11622. },
  11623. },
  11624. [
  11625. {
  11626. name: "Micro",
  11627. height: math.unit(5, "inches")
  11628. },
  11629. {
  11630. name: "Normal",
  11631. height: math.unit(5, "feet"),
  11632. default: true
  11633. },
  11634. {
  11635. name: "Macro",
  11636. height: math.unit(60, "feet")
  11637. },
  11638. ]
  11639. ))
  11640. characterMakers.push(() => makeCharacter(
  11641. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11642. {
  11643. front: {
  11644. height: math.unit(4, "feet"),
  11645. weight: math.unit(50, "lb"),
  11646. name: "Front",
  11647. image: {
  11648. source: "./media/characters/kole/front.svg",
  11649. extra: 1423 / 1303,
  11650. bottom: 0.025
  11651. }
  11652. },
  11653. back: {
  11654. height: math.unit(4, "feet"),
  11655. weight: math.unit(50, "lb"),
  11656. name: "Back",
  11657. image: {
  11658. source: "./media/characters/kole/back.svg",
  11659. extra: 1426 / 1280,
  11660. bottom: 0.02
  11661. }
  11662. },
  11663. },
  11664. [
  11665. {
  11666. name: "Normal",
  11667. height: math.unit(4, "feet"),
  11668. default: true
  11669. },
  11670. ]
  11671. ))
  11672. characterMakers.push(() => makeCharacter(
  11673. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11674. {
  11675. front: {
  11676. height: math.unit(2 + 6 / 12, "feet"),
  11677. weight: math.unit(20, "lb"),
  11678. name: "Front",
  11679. image: {
  11680. source: "./media/characters/rufran/front.svg",
  11681. extra: 2041 / 1839,
  11682. bottom: 0.055
  11683. }
  11684. },
  11685. back: {
  11686. height: math.unit(2 + 6 / 12, "feet"),
  11687. weight: math.unit(20, "lb"),
  11688. name: "Back",
  11689. image: {
  11690. source: "./media/characters/rufran/back.svg",
  11691. extra: 2054 / 1839,
  11692. bottom: 0.01
  11693. }
  11694. },
  11695. hand: {
  11696. height: math.unit(0.2166, "meters"),
  11697. name: "Hand",
  11698. image: {
  11699. source: "./media/characters/rufran/hand.svg"
  11700. }
  11701. },
  11702. foot: {
  11703. height: math.unit(0.185, "meters"),
  11704. name: "Foot",
  11705. image: {
  11706. source: "./media/characters/rufran/foot.svg"
  11707. }
  11708. },
  11709. },
  11710. [
  11711. {
  11712. name: "Micro",
  11713. height: math.unit(1, "inch")
  11714. },
  11715. {
  11716. name: "Normal",
  11717. height: math.unit(2 + 6 / 12, "feet"),
  11718. default: true
  11719. },
  11720. {
  11721. name: "Big",
  11722. height: math.unit(60, "feet")
  11723. },
  11724. {
  11725. name: "Macro",
  11726. height: math.unit(325, "feet")
  11727. },
  11728. ]
  11729. ))
  11730. characterMakers.push(() => makeCharacter(
  11731. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11732. {
  11733. front: {
  11734. height: math.unit(0.3, "meters"),
  11735. weight: math.unit(3.5, "kg"),
  11736. name: "Front",
  11737. image: {
  11738. source: "./media/characters/chip/front.svg",
  11739. extra: 748 / 674
  11740. }
  11741. },
  11742. },
  11743. [
  11744. {
  11745. name: "Micro",
  11746. height: math.unit(1, "inch"),
  11747. default: true
  11748. },
  11749. ]
  11750. ))
  11751. characterMakers.push(() => makeCharacter(
  11752. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11753. {
  11754. side: {
  11755. height: math.unit(2.3, "meters"),
  11756. weight: math.unit(3500, "lb"),
  11757. name: "Side",
  11758. image: {
  11759. source: "./media/characters/torvid/side.svg",
  11760. extra: 1972 / 722,
  11761. bottom: 0.035
  11762. }
  11763. },
  11764. },
  11765. [
  11766. {
  11767. name: "Normal",
  11768. height: math.unit(2.3, "meters"),
  11769. default: true
  11770. },
  11771. ]
  11772. ))
  11773. characterMakers.push(() => makeCharacter(
  11774. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11775. {
  11776. front: {
  11777. height: math.unit(2, "meters"),
  11778. weight: math.unit(150.5, "kg"),
  11779. name: "Front",
  11780. image: {
  11781. source: "./media/characters/susan/front.svg",
  11782. extra: 693 / 635,
  11783. bottom: 0.05
  11784. }
  11785. },
  11786. },
  11787. [
  11788. {
  11789. name: "Megamacro",
  11790. height: math.unit(505, "miles"),
  11791. default: true
  11792. },
  11793. ]
  11794. ))
  11795. characterMakers.push(() => makeCharacter(
  11796. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11797. {
  11798. front: {
  11799. height: math.unit(6, "feet"),
  11800. weight: math.unit(150, "lb"),
  11801. name: "Front",
  11802. image: {
  11803. source: "./media/characters/raindrops/front.svg",
  11804. extra: 2655 / 2461,
  11805. bottom: 49 / 2705
  11806. }
  11807. },
  11808. back: {
  11809. height: math.unit(6, "feet"),
  11810. weight: math.unit(150, "lb"),
  11811. name: "Back",
  11812. image: {
  11813. source: "./media/characters/raindrops/back.svg",
  11814. extra: 2574 / 2400,
  11815. bottom: 65 / 2634
  11816. }
  11817. },
  11818. },
  11819. [
  11820. {
  11821. name: "Micro",
  11822. height: math.unit(6, "inches")
  11823. },
  11824. {
  11825. name: "Normal",
  11826. height: math.unit(6 + 2 / 12, "feet")
  11827. },
  11828. {
  11829. name: "Macro",
  11830. height: math.unit(131, "feet"),
  11831. default: true
  11832. },
  11833. {
  11834. name: "Megamacro",
  11835. height: math.unit(15, "miles")
  11836. },
  11837. {
  11838. name: "Gigamacro",
  11839. height: math.unit(4000, "miles")
  11840. },
  11841. {
  11842. name: "Teramacro",
  11843. height: math.unit(315000, "miles")
  11844. },
  11845. ]
  11846. ))
  11847. characterMakers.push(() => makeCharacter(
  11848. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11849. {
  11850. front: {
  11851. height: math.unit(2.794, "meters"),
  11852. weight: math.unit(325, "kg"),
  11853. name: "Front",
  11854. image: {
  11855. source: "./media/characters/tezwa/front.svg",
  11856. extra: 2083 / 1906,
  11857. bottom: 0.031
  11858. }
  11859. },
  11860. foot: {
  11861. height: math.unit(0.687, "meters"),
  11862. name: "Foot",
  11863. image: {
  11864. source: "./media/characters/tezwa/foot.svg"
  11865. }
  11866. },
  11867. },
  11868. [
  11869. {
  11870. name: "Normal",
  11871. height: math.unit(9 + 2 / 12, "feet"),
  11872. default: true
  11873. },
  11874. ]
  11875. ))
  11876. characterMakers.push(() => makeCharacter(
  11877. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11878. {
  11879. front: {
  11880. height: math.unit(58, "feet"),
  11881. weight: math.unit(89000, "lb"),
  11882. name: "Front",
  11883. image: {
  11884. source: "./media/characters/typhus/front.svg",
  11885. extra: 816 / 800,
  11886. bottom: 0.065
  11887. }
  11888. },
  11889. },
  11890. [
  11891. {
  11892. name: "Macro",
  11893. height: math.unit(58, "feet"),
  11894. default: true
  11895. },
  11896. ]
  11897. ))
  11898. characterMakers.push(() => makeCharacter(
  11899. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11900. {
  11901. front: {
  11902. height: math.unit(12, "feet"),
  11903. weight: math.unit(6, "tonnes"),
  11904. name: "Front",
  11905. image: {
  11906. source: "./media/characters/lyra-von-wulf/front.svg",
  11907. extra: 1,
  11908. bottom: 0.10
  11909. }
  11910. },
  11911. frontMecha: {
  11912. height: math.unit(12, "feet"),
  11913. weight: math.unit(12, "tonnes"),
  11914. name: "Front (Mecha)",
  11915. image: {
  11916. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11917. extra: 1,
  11918. bottom: 0.042
  11919. }
  11920. },
  11921. maw: {
  11922. height: math.unit(2.2, "feet"),
  11923. name: "Maw",
  11924. image: {
  11925. source: "./media/characters/lyra-von-wulf/maw.svg"
  11926. }
  11927. },
  11928. },
  11929. [
  11930. {
  11931. name: "Normal",
  11932. height: math.unit(12, "feet"),
  11933. default: true
  11934. },
  11935. {
  11936. name: "Classic",
  11937. height: math.unit(50, "feet")
  11938. },
  11939. {
  11940. name: "Macro",
  11941. height: math.unit(500, "feet")
  11942. },
  11943. {
  11944. name: "Megamacro",
  11945. height: math.unit(1, "mile")
  11946. },
  11947. {
  11948. name: "Gigamacro",
  11949. height: math.unit(400, "miles")
  11950. },
  11951. {
  11952. name: "Teramacro",
  11953. height: math.unit(22000, "miles")
  11954. },
  11955. {
  11956. name: "Solarmacro",
  11957. height: math.unit(8600000, "miles")
  11958. },
  11959. {
  11960. name: "Galactic",
  11961. height: math.unit(1057000, "lightyears")
  11962. },
  11963. ]
  11964. ))
  11965. characterMakers.push(() => makeCharacter(
  11966. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11967. {
  11968. front: {
  11969. height: math.unit(6 + 10 / 12, "feet"),
  11970. weight: math.unit(150, "lb"),
  11971. name: "Front",
  11972. image: {
  11973. source: "./media/characters/dixon/front.svg",
  11974. extra: 3361 / 3209,
  11975. bottom: 0.01
  11976. }
  11977. },
  11978. },
  11979. [
  11980. {
  11981. name: "Normal",
  11982. height: math.unit(6 + 10 / 12, "feet"),
  11983. default: true
  11984. },
  11985. {
  11986. name: "Big",
  11987. height: math.unit(12, "meters")
  11988. },
  11989. {
  11990. name: "Macro",
  11991. height: math.unit(500, "meters")
  11992. },
  11993. {
  11994. name: "Megamacro",
  11995. height: math.unit(2, "km")
  11996. },
  11997. ]
  11998. ))
  11999. characterMakers.push(() => makeCharacter(
  12000. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12001. {
  12002. front: {
  12003. height: math.unit(185, "cm"),
  12004. weight: math.unit(68, "kg"),
  12005. name: "Front",
  12006. image: {
  12007. source: "./media/characters/kauko/front.svg",
  12008. extra: 1455 / 1421,
  12009. bottom: 0.03
  12010. }
  12011. },
  12012. back: {
  12013. height: math.unit(185, "cm"),
  12014. weight: math.unit(68, "kg"),
  12015. name: "Back",
  12016. image: {
  12017. source: "./media/characters/kauko/back.svg",
  12018. extra: 1455 / 1421,
  12019. bottom: 0.004
  12020. }
  12021. },
  12022. },
  12023. [
  12024. {
  12025. name: "Normal",
  12026. height: math.unit(185, "cm"),
  12027. default: true
  12028. },
  12029. ]
  12030. ))
  12031. characterMakers.push(() => makeCharacter(
  12032. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12033. {
  12034. front: {
  12035. height: math.unit(6, "feet"),
  12036. weight: math.unit(150, "kg"),
  12037. name: "Front",
  12038. image: {
  12039. source: "./media/characters/varg/front.svg",
  12040. extra: 1108 / 1018,
  12041. bottom: 0.0375
  12042. }
  12043. },
  12044. },
  12045. [
  12046. {
  12047. name: "Normal",
  12048. height: math.unit(5, "meters")
  12049. },
  12050. {
  12051. name: "Macro",
  12052. height: math.unit(200, "meters")
  12053. },
  12054. {
  12055. name: "Megamacro",
  12056. height: math.unit(20, "kilometers")
  12057. },
  12058. {
  12059. name: "True Size",
  12060. height: math.unit(211, "km"),
  12061. default: true
  12062. },
  12063. {
  12064. name: "Gigamacro",
  12065. height: math.unit(1000, "km")
  12066. },
  12067. {
  12068. name: "Gigamacro+",
  12069. height: math.unit(8000, "km")
  12070. },
  12071. {
  12072. name: "Teramacro",
  12073. height: math.unit(1000000, "km")
  12074. },
  12075. ]
  12076. ))
  12077. characterMakers.push(() => makeCharacter(
  12078. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12079. {
  12080. front: {
  12081. height: math.unit(7 + 7 / 12, "feet"),
  12082. weight: math.unit(267, "lb"),
  12083. name: "Front",
  12084. image: {
  12085. source: "./media/characters/dayza/front.svg",
  12086. extra: 1262 / 1200,
  12087. bottom: 0.035
  12088. }
  12089. },
  12090. side: {
  12091. height: math.unit(7 + 7 / 12, "feet"),
  12092. weight: math.unit(267, "lb"),
  12093. name: "Side",
  12094. image: {
  12095. source: "./media/characters/dayza/side.svg",
  12096. extra: 1295 / 1245,
  12097. bottom: 0.05
  12098. }
  12099. },
  12100. back: {
  12101. height: math.unit(7 + 7 / 12, "feet"),
  12102. weight: math.unit(267, "lb"),
  12103. name: "Back",
  12104. image: {
  12105. source: "./media/characters/dayza/back.svg",
  12106. extra: 1241 / 1170
  12107. }
  12108. },
  12109. },
  12110. [
  12111. {
  12112. name: "Normal",
  12113. height: math.unit(7 + 7 / 12, "feet"),
  12114. default: true
  12115. },
  12116. {
  12117. name: "Macro",
  12118. height: math.unit(155, "feet")
  12119. },
  12120. ]
  12121. ))
  12122. characterMakers.push(() => makeCharacter(
  12123. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12124. {
  12125. front: {
  12126. height: math.unit(6 + 5 / 12, "feet"),
  12127. weight: math.unit(160, "lb"),
  12128. name: "Front",
  12129. image: {
  12130. source: "./media/characters/xanthos/front.svg",
  12131. extra: 1,
  12132. bottom: 0.04
  12133. }
  12134. },
  12135. back: {
  12136. height: math.unit(6 + 5 / 12, "feet"),
  12137. weight: math.unit(160, "lb"),
  12138. name: "Back",
  12139. image: {
  12140. source: "./media/characters/xanthos/back.svg",
  12141. extra: 1,
  12142. bottom: 0.03
  12143. }
  12144. },
  12145. hand: {
  12146. height: math.unit(0.928, "feet"),
  12147. name: "Hand",
  12148. image: {
  12149. source: "./media/characters/xanthos/hand.svg"
  12150. }
  12151. },
  12152. foot: {
  12153. height: math.unit(1.286, "feet"),
  12154. name: "Foot",
  12155. image: {
  12156. source: "./media/characters/xanthos/foot.svg"
  12157. }
  12158. },
  12159. },
  12160. [
  12161. {
  12162. name: "Normal",
  12163. height: math.unit(6 + 5 / 12, "feet"),
  12164. default: true
  12165. },
  12166. {
  12167. name: "Normal+",
  12168. height: math.unit(6, "meters")
  12169. },
  12170. {
  12171. name: "Macro",
  12172. height: math.unit(40, "feet")
  12173. },
  12174. {
  12175. name: "Macro+",
  12176. height: math.unit(200, "meters")
  12177. },
  12178. {
  12179. name: "Megamacro",
  12180. height: math.unit(20, "km")
  12181. },
  12182. {
  12183. name: "Megamacro+",
  12184. height: math.unit(100, "km")
  12185. },
  12186. ]
  12187. ))
  12188. characterMakers.push(() => makeCharacter(
  12189. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12190. {
  12191. front: {
  12192. height: math.unit(6 + 3 / 12, "feet"),
  12193. weight: math.unit(215, "lb"),
  12194. name: "Front",
  12195. image: {
  12196. source: "./media/characters/grynn/front.svg",
  12197. extra: 4627 / 4209,
  12198. bottom: 0.047
  12199. }
  12200. },
  12201. },
  12202. [
  12203. {
  12204. name: "Micro",
  12205. height: math.unit(6, "inches")
  12206. },
  12207. {
  12208. name: "Normal",
  12209. height: math.unit(6 + 3 / 12, "feet"),
  12210. default: true
  12211. },
  12212. {
  12213. name: "Big",
  12214. height: math.unit(104, "feet")
  12215. },
  12216. {
  12217. name: "Macro",
  12218. height: math.unit(944, "feet")
  12219. },
  12220. {
  12221. name: "Macro+",
  12222. height: math.unit(9480, "feet")
  12223. },
  12224. {
  12225. name: "Megamacro",
  12226. height: math.unit(78752, "feet")
  12227. },
  12228. {
  12229. name: "Megamacro+",
  12230. height: math.unit(630128, "feet")
  12231. },
  12232. {
  12233. name: "Megamacro++",
  12234. height: math.unit(3150695, "feet")
  12235. },
  12236. ]
  12237. ))
  12238. characterMakers.push(() => makeCharacter(
  12239. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12240. {
  12241. front: {
  12242. height: math.unit(7 + 5 / 12, "feet"),
  12243. weight: math.unit(450, "lb"),
  12244. name: "Front",
  12245. image: {
  12246. source: "./media/characters/mocha-aura/front.svg",
  12247. extra: 1907 / 1817,
  12248. bottom: 0.04
  12249. }
  12250. },
  12251. back: {
  12252. height: math.unit(7 + 5 / 12, "feet"),
  12253. weight: math.unit(450, "lb"),
  12254. name: "Back",
  12255. image: {
  12256. source: "./media/characters/mocha-aura/back.svg",
  12257. extra: 1900 / 1825,
  12258. bottom: 0.045
  12259. }
  12260. },
  12261. },
  12262. [
  12263. {
  12264. name: "Nano",
  12265. height: math.unit(1, "nm")
  12266. },
  12267. {
  12268. name: "Megamicro",
  12269. height: math.unit(1, "mm")
  12270. },
  12271. {
  12272. name: "Micro",
  12273. height: math.unit(3, "inches")
  12274. },
  12275. {
  12276. name: "Normal",
  12277. height: math.unit(7 + 5 / 12, "feet"),
  12278. default: true
  12279. },
  12280. {
  12281. name: "Macro",
  12282. height: math.unit(30, "feet")
  12283. },
  12284. {
  12285. name: "Megamacro",
  12286. height: math.unit(3500, "feet")
  12287. },
  12288. {
  12289. name: "Teramacro",
  12290. height: math.unit(500000, "miles")
  12291. },
  12292. {
  12293. name: "Petamacro",
  12294. height: math.unit(50000000000000000, "parsecs")
  12295. },
  12296. ]
  12297. ))
  12298. characterMakers.push(() => makeCharacter(
  12299. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12300. {
  12301. front: {
  12302. height: math.unit(6, "feet"),
  12303. weight: math.unit(150, "lb"),
  12304. name: "Front",
  12305. image: {
  12306. source: "./media/characters/ilisha-devya/front.svg",
  12307. extra: 1,
  12308. bottom: 0.175
  12309. }
  12310. },
  12311. back: {
  12312. height: math.unit(6, "feet"),
  12313. weight: math.unit(150, "lb"),
  12314. name: "Back",
  12315. image: {
  12316. source: "./media/characters/ilisha-devya/back.svg",
  12317. extra: 1,
  12318. bottom: 0.015
  12319. }
  12320. },
  12321. },
  12322. [
  12323. {
  12324. name: "Macro",
  12325. height: math.unit(500, "feet"),
  12326. default: true
  12327. },
  12328. {
  12329. name: "Megamacro",
  12330. height: math.unit(10, "miles")
  12331. },
  12332. {
  12333. name: "Gigamacro",
  12334. height: math.unit(100000, "miles")
  12335. },
  12336. {
  12337. name: "Examacro",
  12338. height: math.unit(1e9, "lightyears")
  12339. },
  12340. {
  12341. name: "Omniversal",
  12342. height: math.unit(1e33, "lightyears")
  12343. },
  12344. {
  12345. name: "Beyond Infinite",
  12346. height: math.unit(1e100, "lightyears")
  12347. },
  12348. ]
  12349. ))
  12350. characterMakers.push(() => makeCharacter(
  12351. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12352. {
  12353. Side: {
  12354. height: math.unit(6, "feet"),
  12355. weight: math.unit(150, "lb"),
  12356. name: "Side",
  12357. image: {
  12358. source: "./media/characters/mira/side.svg",
  12359. extra: 900 / 799,
  12360. bottom: 0.02
  12361. }
  12362. },
  12363. },
  12364. [
  12365. {
  12366. name: "Human Size",
  12367. height: math.unit(6, "feet")
  12368. },
  12369. {
  12370. name: "Macro",
  12371. height: math.unit(100, "feet"),
  12372. default: true
  12373. },
  12374. {
  12375. name: "Megamacro",
  12376. height: math.unit(10, "miles")
  12377. },
  12378. {
  12379. name: "Gigamacro",
  12380. height: math.unit(25000, "miles")
  12381. },
  12382. {
  12383. name: "Teramacro",
  12384. height: math.unit(300, "AU")
  12385. },
  12386. {
  12387. name: "Full Size",
  12388. height: math.unit(4.5e10, "lightyears")
  12389. },
  12390. ]
  12391. ))
  12392. characterMakers.push(() => makeCharacter(
  12393. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12394. {
  12395. front: {
  12396. height: math.unit(6, "feet"),
  12397. weight: math.unit(150, "lb"),
  12398. name: "Front",
  12399. image: {
  12400. source: "./media/characters/holly/front.svg",
  12401. extra: 639 / 606
  12402. }
  12403. },
  12404. back: {
  12405. height: math.unit(6, "feet"),
  12406. weight: math.unit(150, "lb"),
  12407. name: "Back",
  12408. image: {
  12409. source: "./media/characters/holly/back.svg",
  12410. extra: 623 / 598
  12411. }
  12412. },
  12413. frontWorking: {
  12414. height: math.unit(6, "feet"),
  12415. weight: math.unit(150, "lb"),
  12416. name: "Front (Working)",
  12417. image: {
  12418. source: "./media/characters/holly/front-working.svg",
  12419. extra: 607 / 577,
  12420. bottom: 0.048
  12421. }
  12422. },
  12423. },
  12424. [
  12425. {
  12426. name: "Normal",
  12427. height: math.unit(12 + 3 / 12, "feet"),
  12428. default: true
  12429. },
  12430. ]
  12431. ))
  12432. characterMakers.push(() => makeCharacter(
  12433. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12434. {
  12435. front: {
  12436. height: math.unit(6, "feet"),
  12437. weight: math.unit(150, "lb"),
  12438. name: "Front",
  12439. image: {
  12440. source: "./media/characters/porter/front.svg",
  12441. extra: 1,
  12442. bottom: 0.01
  12443. }
  12444. },
  12445. frontRobes: {
  12446. height: math.unit(6, "feet"),
  12447. weight: math.unit(150, "lb"),
  12448. name: "Front (Robes)",
  12449. image: {
  12450. source: "./media/characters/porter/front-robes.svg",
  12451. extra: 1.01,
  12452. bottom: 0.01
  12453. }
  12454. },
  12455. },
  12456. [
  12457. {
  12458. name: "Normal",
  12459. height: math.unit(11 + 9 / 12, "feet"),
  12460. default: true
  12461. },
  12462. ]
  12463. ))
  12464. characterMakers.push(() => makeCharacter(
  12465. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12466. {
  12467. legendary: {
  12468. height: math.unit(6, "feet"),
  12469. weight: math.unit(150, "lb"),
  12470. name: "Legendary",
  12471. image: {
  12472. source: "./media/characters/lucy/legendary.svg",
  12473. extra: 1355 / 1100,
  12474. bottom: 0.045
  12475. }
  12476. },
  12477. },
  12478. [
  12479. {
  12480. name: "Legendary",
  12481. height: math.unit(86882 * 2, "miles"),
  12482. default: true
  12483. },
  12484. ]
  12485. ))
  12486. characterMakers.push(() => makeCharacter(
  12487. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12488. {
  12489. front: {
  12490. height: math.unit(6, "feet"),
  12491. weight: math.unit(150, "lb"),
  12492. name: "Front",
  12493. image: {
  12494. source: "./media/characters/drusilla/front.svg",
  12495. extra: 678 / 635,
  12496. bottom: 0.03
  12497. }
  12498. },
  12499. back: {
  12500. height: math.unit(6, "feet"),
  12501. weight: math.unit(150, "lb"),
  12502. name: "Back",
  12503. image: {
  12504. source: "./media/characters/drusilla/back.svg",
  12505. extra: 678 / 635,
  12506. bottom: 0.005
  12507. }
  12508. },
  12509. },
  12510. [
  12511. {
  12512. name: "Macro",
  12513. height: math.unit(100, "feet")
  12514. },
  12515. {
  12516. name: "Canon Height",
  12517. height: math.unit(2000, "feet"),
  12518. default: true
  12519. },
  12520. ]
  12521. ))
  12522. characterMakers.push(() => makeCharacter(
  12523. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12524. {
  12525. front: {
  12526. height: math.unit(6, "feet"),
  12527. weight: math.unit(180, "lb"),
  12528. name: "Front",
  12529. image: {
  12530. source: "./media/characters/renard-thatch/front.svg",
  12531. extra: 2411 / 2275,
  12532. bottom: 0.01
  12533. }
  12534. },
  12535. frontPosing: {
  12536. height: math.unit(6, "feet"),
  12537. weight: math.unit(180, "lb"),
  12538. name: "Front (Posing)",
  12539. image: {
  12540. source: "./media/characters/renard-thatch/front-posing.svg",
  12541. extra: 2381 / 2261,
  12542. bottom: 0.01
  12543. }
  12544. },
  12545. back: {
  12546. height: math.unit(6, "feet"),
  12547. weight: math.unit(180, "lb"),
  12548. name: "Back",
  12549. image: {
  12550. source: "./media/characters/renard-thatch/back.svg",
  12551. extra: 2428 / 2288
  12552. }
  12553. },
  12554. },
  12555. [
  12556. {
  12557. name: "Micro",
  12558. height: math.unit(3, "inches")
  12559. },
  12560. {
  12561. name: "Default",
  12562. height: math.unit(6, "feet"),
  12563. default: true
  12564. },
  12565. {
  12566. name: "Macro",
  12567. height: math.unit(75, "feet")
  12568. },
  12569. ]
  12570. ))
  12571. characterMakers.push(() => makeCharacter(
  12572. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12573. {
  12574. front: {
  12575. height: math.unit(1450, "feet"),
  12576. weight: math.unit(1.21e6, "tons"),
  12577. name: "Front",
  12578. image: {
  12579. source: "./media/characters/sekvra/front.svg",
  12580. extra: 1,
  12581. bottom: 0.03
  12582. }
  12583. },
  12584. frontClothed: {
  12585. height: math.unit(1450, "feet"),
  12586. weight: math.unit(1.21e6, "tons"),
  12587. name: "Front (Clothed)",
  12588. image: {
  12589. source: "./media/characters/sekvra/front-clothed.svg",
  12590. extra: 1,
  12591. bottom: 0.03
  12592. }
  12593. },
  12594. side: {
  12595. height: math.unit(1450, "feet"),
  12596. weight: math.unit(1.21e6, "tons"),
  12597. name: "Side",
  12598. image: {
  12599. source: "./media/characters/sekvra/side.svg",
  12600. extra: 1,
  12601. bottom: 0.025
  12602. }
  12603. },
  12604. back: {
  12605. height: math.unit(1450, "feet"),
  12606. weight: math.unit(1.21e6, "tons"),
  12607. name: "Back",
  12608. image: {
  12609. source: "./media/characters/sekvra/back.svg",
  12610. extra: 1,
  12611. bottom: 0.005
  12612. }
  12613. },
  12614. },
  12615. [
  12616. {
  12617. name: "Macro",
  12618. height: math.unit(1450, "feet"),
  12619. default: true
  12620. },
  12621. {
  12622. name: "Megamacro",
  12623. height: math.unit(15000, "feet")
  12624. },
  12625. ]
  12626. ))
  12627. characterMakers.push(() => makeCharacter(
  12628. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12629. {
  12630. front: {
  12631. height: math.unit(6, "feet"),
  12632. weight: math.unit(150, "lb"),
  12633. name: "Front",
  12634. image: {
  12635. source: "./media/characters/carmine/front.svg",
  12636. extra: 1,
  12637. bottom: 0.035
  12638. }
  12639. },
  12640. frontArmor: {
  12641. height: math.unit(6, "feet"),
  12642. weight: math.unit(150, "lb"),
  12643. name: "Front (Armor)",
  12644. image: {
  12645. source: "./media/characters/carmine/front-armor.svg",
  12646. extra: 1,
  12647. bottom: 0.035
  12648. }
  12649. },
  12650. },
  12651. [
  12652. {
  12653. name: "Large",
  12654. height: math.unit(1, "mile")
  12655. },
  12656. {
  12657. name: "Huge",
  12658. height: math.unit(40, "miles"),
  12659. default: true
  12660. },
  12661. {
  12662. name: "Colossal",
  12663. height: math.unit(2500, "miles")
  12664. },
  12665. ]
  12666. ))
  12667. characterMakers.push(() => makeCharacter(
  12668. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12669. {
  12670. front: {
  12671. height: math.unit(6, "feet"),
  12672. weight: math.unit(150, "lb"),
  12673. name: "Front",
  12674. image: {
  12675. source: "./media/characters/elyssia/front.svg",
  12676. extra: 2201 / 2035,
  12677. bottom: 0.05
  12678. }
  12679. },
  12680. frontClothed: {
  12681. height: math.unit(6, "feet"),
  12682. weight: math.unit(150, "lb"),
  12683. name: "Front (Clothed)",
  12684. image: {
  12685. source: "./media/characters/elyssia/front-clothed.svg",
  12686. extra: 2201 / 2035,
  12687. bottom: 0.05
  12688. }
  12689. },
  12690. back: {
  12691. height: math.unit(6, "feet"),
  12692. weight: math.unit(150, "lb"),
  12693. name: "Back",
  12694. image: {
  12695. source: "./media/characters/elyssia/back.svg",
  12696. extra: 2201 / 2035,
  12697. bottom: 0.013
  12698. }
  12699. },
  12700. },
  12701. [
  12702. {
  12703. name: "Smaller",
  12704. height: math.unit(150, "feet")
  12705. },
  12706. {
  12707. name: "Standard",
  12708. height: math.unit(1400, "feet"),
  12709. default: true
  12710. },
  12711. {
  12712. name: "Distracted",
  12713. height: math.unit(15000, "feet")
  12714. },
  12715. ]
  12716. ))
  12717. characterMakers.push(() => makeCharacter(
  12718. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12719. {
  12720. front: {
  12721. height: math.unit(7 + 4 / 12, "feet"),
  12722. weight: math.unit(500, "lb"),
  12723. name: "Front",
  12724. image: {
  12725. source: "./media/characters/geno-maxwell/front.svg",
  12726. extra: 2207 / 2040,
  12727. bottom: 0.015
  12728. }
  12729. },
  12730. },
  12731. [
  12732. {
  12733. name: "Micro",
  12734. height: math.unit(3, "inches")
  12735. },
  12736. {
  12737. name: "Normal",
  12738. height: math.unit(7 + 4 / 12, "feet"),
  12739. default: true
  12740. },
  12741. {
  12742. name: "Macro",
  12743. height: math.unit(220, "feet")
  12744. },
  12745. {
  12746. name: "Megamacro",
  12747. height: math.unit(11, "miles")
  12748. },
  12749. ]
  12750. ))
  12751. characterMakers.push(() => makeCharacter(
  12752. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12753. {
  12754. front: {
  12755. height: math.unit(7 + 4 / 12, "feet"),
  12756. weight: math.unit(500, "lb"),
  12757. name: "Front",
  12758. image: {
  12759. source: "./media/characters/regena-maxwell/front.svg",
  12760. extra: 3115 / 2770,
  12761. bottom: 0.02
  12762. }
  12763. },
  12764. },
  12765. [
  12766. {
  12767. name: "Normal",
  12768. height: math.unit(7 + 4 / 12, "feet"),
  12769. default: true
  12770. },
  12771. {
  12772. name: "Macro",
  12773. height: math.unit(220, "feet")
  12774. },
  12775. {
  12776. name: "Megamacro",
  12777. height: math.unit(11, "miles")
  12778. },
  12779. ]
  12780. ))
  12781. characterMakers.push(() => makeCharacter(
  12782. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12783. {
  12784. front: {
  12785. height: math.unit(6, "feet"),
  12786. weight: math.unit(150, "lb"),
  12787. name: "Front",
  12788. image: {
  12789. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12790. extra: 860 / 690,
  12791. bottom: 0.03
  12792. }
  12793. },
  12794. },
  12795. [
  12796. {
  12797. name: "Normal",
  12798. height: math.unit(1.7, "meters"),
  12799. default: true
  12800. },
  12801. ]
  12802. ))
  12803. characterMakers.push(() => makeCharacter(
  12804. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12805. {
  12806. front: {
  12807. height: math.unit(6, "feet"),
  12808. weight: math.unit(150, "lb"),
  12809. name: "Front",
  12810. image: {
  12811. source: "./media/characters/quilly/front.svg",
  12812. extra: 890 / 776
  12813. }
  12814. },
  12815. },
  12816. [
  12817. {
  12818. name: "Gigamacro",
  12819. height: math.unit(404090, "miles"),
  12820. default: true
  12821. },
  12822. ]
  12823. ))
  12824. characterMakers.push(() => makeCharacter(
  12825. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12826. {
  12827. front: {
  12828. height: math.unit(7 + 8 / 12, "feet"),
  12829. weight: math.unit(350, "lb"),
  12830. name: "Front",
  12831. image: {
  12832. source: "./media/characters/tempest/front.svg",
  12833. extra: 1175 / 1086,
  12834. bottom: 0.02
  12835. }
  12836. },
  12837. },
  12838. [
  12839. {
  12840. name: "Normal",
  12841. height: math.unit(7 + 8 / 12, "feet"),
  12842. default: true
  12843. },
  12844. ]
  12845. ))
  12846. characterMakers.push(() => makeCharacter(
  12847. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12848. {
  12849. side: {
  12850. height: math.unit(4 + 5 / 12, "feet"),
  12851. weight: math.unit(80, "lb"),
  12852. name: "Side",
  12853. image: {
  12854. source: "./media/characters/rodger/side.svg",
  12855. extra: 1235 / 1118
  12856. }
  12857. },
  12858. },
  12859. [
  12860. {
  12861. name: "Micro",
  12862. height: math.unit(1, "inch")
  12863. },
  12864. {
  12865. name: "Normal",
  12866. height: math.unit(4 + 5 / 12, "feet"),
  12867. default: true
  12868. },
  12869. {
  12870. name: "Macro",
  12871. height: math.unit(120, "feet")
  12872. },
  12873. ]
  12874. ))
  12875. characterMakers.push(() => makeCharacter(
  12876. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12877. {
  12878. front: {
  12879. height: math.unit(6, "feet"),
  12880. weight: math.unit(150, "lb"),
  12881. name: "Front",
  12882. image: {
  12883. source: "./media/characters/danyel/front.svg",
  12884. extra: 1185 / 1123,
  12885. bottom: 0.05
  12886. }
  12887. },
  12888. },
  12889. [
  12890. {
  12891. name: "Shrunken",
  12892. height: math.unit(0.5, "mm")
  12893. },
  12894. {
  12895. name: "Micro",
  12896. height: math.unit(1, "mm"),
  12897. default: true
  12898. },
  12899. {
  12900. name: "Upsized",
  12901. height: math.unit(5 + 5 / 12, "feet")
  12902. },
  12903. ]
  12904. ))
  12905. characterMakers.push(() => makeCharacter(
  12906. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12907. {
  12908. front: {
  12909. height: math.unit(5 + 6 / 12, "feet"),
  12910. weight: math.unit(200, "lb"),
  12911. name: "Front",
  12912. image: {
  12913. source: "./media/characters/vivian-bijoux/front.svg",
  12914. extra: 1,
  12915. bottom: 0.072
  12916. }
  12917. },
  12918. },
  12919. [
  12920. {
  12921. name: "Normal",
  12922. height: math.unit(5 + 6 / 12, "feet"),
  12923. default: true
  12924. },
  12925. {
  12926. name: "Bad Dream",
  12927. height: math.unit(500, "feet")
  12928. },
  12929. {
  12930. name: "Nightmare",
  12931. height: math.unit(500, "miles")
  12932. },
  12933. ]
  12934. ))
  12935. characterMakers.push(() => makeCharacter(
  12936. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12937. {
  12938. front: {
  12939. height: math.unit(6 + 1 / 12, "feet"),
  12940. weight: math.unit(260, "lb"),
  12941. name: "Front",
  12942. image: {
  12943. source: "./media/characters/zeta/front.svg",
  12944. extra: 1968 / 1889,
  12945. bottom: 0.06
  12946. }
  12947. },
  12948. back: {
  12949. height: math.unit(6 + 1 / 12, "feet"),
  12950. weight: math.unit(260, "lb"),
  12951. name: "Back",
  12952. image: {
  12953. source: "./media/characters/zeta/back.svg",
  12954. extra: 1944 / 1858,
  12955. bottom: 0.03
  12956. }
  12957. },
  12958. hand: {
  12959. height: math.unit(1.112, "feet"),
  12960. name: "Hand",
  12961. image: {
  12962. source: "./media/characters/zeta/hand.svg"
  12963. }
  12964. },
  12965. foot: {
  12966. height: math.unit(1.48, "feet"),
  12967. name: "Foot",
  12968. image: {
  12969. source: "./media/characters/zeta/foot.svg"
  12970. }
  12971. },
  12972. },
  12973. [
  12974. {
  12975. name: "Micro",
  12976. height: math.unit(6, "inches")
  12977. },
  12978. {
  12979. name: "Normal",
  12980. height: math.unit(6 + 1 / 12, "feet"),
  12981. default: true
  12982. },
  12983. {
  12984. name: "Macro",
  12985. height: math.unit(20, "feet")
  12986. },
  12987. ]
  12988. ))
  12989. characterMakers.push(() => makeCharacter(
  12990. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12991. {
  12992. front: {
  12993. height: math.unit(6, "feet"),
  12994. weight: math.unit(150, "lb"),
  12995. name: "Front",
  12996. image: {
  12997. source: "./media/characters/jamie-larsen/front.svg",
  12998. extra: 962 / 933,
  12999. bottom: 0.02
  13000. }
  13001. },
  13002. back: {
  13003. height: math.unit(6, "feet"),
  13004. weight: math.unit(150, "lb"),
  13005. name: "Back",
  13006. image: {
  13007. source: "./media/characters/jamie-larsen/back.svg",
  13008. extra: 997 / 946
  13009. }
  13010. },
  13011. },
  13012. [
  13013. {
  13014. name: "Macro",
  13015. height: math.unit(28 + 7 / 12, "feet"),
  13016. default: true
  13017. },
  13018. {
  13019. name: "Macro+",
  13020. height: math.unit(180, "feet")
  13021. },
  13022. {
  13023. name: "Megamacro",
  13024. height: math.unit(10, "miles")
  13025. },
  13026. {
  13027. name: "Gigamacro",
  13028. height: math.unit(200000, "miles")
  13029. },
  13030. ]
  13031. ))
  13032. characterMakers.push(() => makeCharacter(
  13033. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13034. {
  13035. front: {
  13036. height: math.unit(6, "feet"),
  13037. weight: math.unit(120, "lb"),
  13038. name: "Front",
  13039. image: {
  13040. source: "./media/characters/vance/front.svg",
  13041. extra: 1980 / 1890,
  13042. bottom: 0.09
  13043. }
  13044. },
  13045. back: {
  13046. height: math.unit(6, "feet"),
  13047. weight: math.unit(120, "lb"),
  13048. name: "Back",
  13049. image: {
  13050. source: "./media/characters/vance/back.svg",
  13051. extra: 2081 / 1994,
  13052. bottom: 0.014
  13053. }
  13054. },
  13055. hand: {
  13056. height: math.unit(0.88, "feet"),
  13057. name: "Hand",
  13058. image: {
  13059. source: "./media/characters/vance/hand.svg"
  13060. }
  13061. },
  13062. foot: {
  13063. height: math.unit(0.64, "feet"),
  13064. name: "Foot",
  13065. image: {
  13066. source: "./media/characters/vance/foot.svg"
  13067. }
  13068. },
  13069. },
  13070. [
  13071. {
  13072. name: "Small",
  13073. height: math.unit(90, "feet"),
  13074. default: true
  13075. },
  13076. {
  13077. name: "Macro",
  13078. height: math.unit(100, "meters")
  13079. },
  13080. {
  13081. name: "Megamacro",
  13082. height: math.unit(15, "miles")
  13083. },
  13084. ]
  13085. ))
  13086. characterMakers.push(() => makeCharacter(
  13087. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13088. {
  13089. front: {
  13090. height: math.unit(6, "feet"),
  13091. weight: math.unit(180, "lb"),
  13092. name: "Front",
  13093. image: {
  13094. source: "./media/characters/xochitl/front.svg",
  13095. extra: 2297 / 2261,
  13096. bottom: 0.065
  13097. }
  13098. },
  13099. back: {
  13100. height: math.unit(6, "feet"),
  13101. weight: math.unit(180, "lb"),
  13102. name: "Back",
  13103. image: {
  13104. source: "./media/characters/xochitl/back.svg",
  13105. extra: 2386 / 2354,
  13106. bottom: 0.01
  13107. }
  13108. },
  13109. foot: {
  13110. height: math.unit(6 / 5 * 1.15, "feet"),
  13111. weight: math.unit(150, "lb"),
  13112. name: "Foot",
  13113. image: {
  13114. source: "./media/characters/xochitl/foot.svg"
  13115. }
  13116. },
  13117. },
  13118. [
  13119. {
  13120. name: "Macro",
  13121. height: math.unit(80, "feet")
  13122. },
  13123. {
  13124. name: "Macro+",
  13125. height: math.unit(400, "feet"),
  13126. default: true
  13127. },
  13128. {
  13129. name: "Gigamacro",
  13130. height: math.unit(80000, "miles")
  13131. },
  13132. {
  13133. name: "Gigamacro+",
  13134. height: math.unit(400000, "miles")
  13135. },
  13136. {
  13137. name: "Teramacro",
  13138. height: math.unit(300, "AU")
  13139. },
  13140. ]
  13141. ))
  13142. characterMakers.push(() => makeCharacter(
  13143. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13144. {
  13145. front: {
  13146. height: math.unit(6, "feet"),
  13147. weight: math.unit(150, "lb"),
  13148. name: "Front",
  13149. image: {
  13150. source: "./media/characters/vincent/front.svg",
  13151. extra: 1130 / 1080,
  13152. bottom: 0.055
  13153. }
  13154. },
  13155. beak: {
  13156. height: math.unit(6 * 0.1, "feet"),
  13157. name: "Beak",
  13158. image: {
  13159. source: "./media/characters/vincent/beak.svg"
  13160. }
  13161. },
  13162. hand: {
  13163. height: math.unit(6 * 0.85, "feet"),
  13164. weight: math.unit(150, "lb"),
  13165. name: "Hand",
  13166. image: {
  13167. source: "./media/characters/vincent/hand.svg"
  13168. }
  13169. },
  13170. foot: {
  13171. height: math.unit(6 * 0.19, "feet"),
  13172. weight: math.unit(150, "lb"),
  13173. name: "Foot",
  13174. image: {
  13175. source: "./media/characters/vincent/foot.svg"
  13176. }
  13177. },
  13178. },
  13179. [
  13180. {
  13181. name: "Base",
  13182. height: math.unit(6 + 5 / 12, "feet"),
  13183. default: true
  13184. },
  13185. {
  13186. name: "Macro",
  13187. height: math.unit(300, "feet")
  13188. },
  13189. {
  13190. name: "Megamacro",
  13191. height: math.unit(2, "miles")
  13192. },
  13193. {
  13194. name: "Gigamacro",
  13195. height: math.unit(1000, "miles")
  13196. },
  13197. ]
  13198. ))
  13199. characterMakers.push(() => makeCharacter(
  13200. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13201. {
  13202. front: {
  13203. height: math.unit(6 + 2 / 12, "feet"),
  13204. weight: math.unit(265, "lb"),
  13205. name: "Front",
  13206. image: {
  13207. source: "./media/characters/jay/front.svg",
  13208. extra: 1510 / 1430,
  13209. bottom: 0.042
  13210. }
  13211. },
  13212. back: {
  13213. height: math.unit(6 + 2 / 12, "feet"),
  13214. weight: math.unit(265, "lb"),
  13215. name: "Back",
  13216. image: {
  13217. source: "./media/characters/jay/back.svg",
  13218. extra: 1510 / 1430,
  13219. bottom: 0.025
  13220. }
  13221. },
  13222. clothed: {
  13223. height: math.unit(6 + 2 / 12, "feet"),
  13224. weight: math.unit(265, "lb"),
  13225. name: "Front (Clothed)",
  13226. image: {
  13227. source: "./media/characters/jay/clothed.svg",
  13228. extra: 744 / 699,
  13229. bottom: 0.043
  13230. }
  13231. },
  13232. head: {
  13233. height: math.unit(1.772, "feet"),
  13234. name: "Head",
  13235. image: {
  13236. source: "./media/characters/jay/head.svg"
  13237. }
  13238. },
  13239. sizeRay: {
  13240. height: math.unit(1.331, "feet"),
  13241. name: "Size Ray",
  13242. image: {
  13243. source: "./media/characters/jay/size-ray.svg"
  13244. }
  13245. },
  13246. },
  13247. [
  13248. {
  13249. name: "Micro",
  13250. height: math.unit(1, "inch")
  13251. },
  13252. {
  13253. name: "Normal",
  13254. height: math.unit(6 + 2 / 12, "feet"),
  13255. default: true
  13256. },
  13257. {
  13258. name: "Macro",
  13259. height: math.unit(1, "mile")
  13260. },
  13261. {
  13262. name: "Megamacro",
  13263. height: math.unit(100, "miles")
  13264. },
  13265. ]
  13266. ))
  13267. characterMakers.push(() => makeCharacter(
  13268. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13269. {
  13270. front: {
  13271. height: math.unit(2, "meters"),
  13272. weight: math.unit(500, "kg"),
  13273. name: "Front",
  13274. image: {
  13275. source: "./media/characters/coatl/front.svg",
  13276. extra: 3948 / 3500,
  13277. bottom: 0.082
  13278. }
  13279. },
  13280. },
  13281. [
  13282. {
  13283. name: "Normal",
  13284. height: math.unit(4, "meters")
  13285. },
  13286. {
  13287. name: "Macro",
  13288. height: math.unit(100, "meters"),
  13289. default: true
  13290. },
  13291. {
  13292. name: "Macro+",
  13293. height: math.unit(300, "meters")
  13294. },
  13295. {
  13296. name: "Megamacro",
  13297. height: math.unit(3, "gigameters")
  13298. },
  13299. {
  13300. name: "Megamacro+",
  13301. height: math.unit(300, "terameters")
  13302. },
  13303. {
  13304. name: "Megamacro++",
  13305. height: math.unit(3, "lightyears")
  13306. },
  13307. ]
  13308. ))
  13309. characterMakers.push(() => makeCharacter(
  13310. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13311. {
  13312. front: {
  13313. height: math.unit(6, "feet"),
  13314. weight: math.unit(50, "kg"),
  13315. name: "front",
  13316. image: {
  13317. source: "./media/characters/shiroryu/front.svg",
  13318. extra: 1990 / 1935
  13319. }
  13320. },
  13321. },
  13322. [
  13323. {
  13324. name: "Mortal Mingling",
  13325. height: math.unit(3, "meters")
  13326. },
  13327. {
  13328. name: "Kaiju-ish",
  13329. height: math.unit(250, "meters")
  13330. },
  13331. {
  13332. name: "Somewhat Godly",
  13333. height: math.unit(400, "km"),
  13334. default: true
  13335. },
  13336. {
  13337. name: "Planetary",
  13338. height: math.unit(300, "megameters")
  13339. },
  13340. {
  13341. name: "Galaxy-dwarfing",
  13342. height: math.unit(450, "kiloparsecs")
  13343. },
  13344. {
  13345. name: "Universe Eater",
  13346. height: math.unit(150, "gigaparsecs")
  13347. },
  13348. {
  13349. name: "Almost Immeasurable",
  13350. height: math.unit(1.3e266, "yottaparsecs")
  13351. },
  13352. ]
  13353. ))
  13354. characterMakers.push(() => makeCharacter(
  13355. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13356. {
  13357. front: {
  13358. height: math.unit(6, "feet"),
  13359. weight: math.unit(150, "lb"),
  13360. name: "Front",
  13361. image: {
  13362. source: "./media/characters/umeko/front.svg",
  13363. extra: 1,
  13364. bottom: 0.019
  13365. }
  13366. },
  13367. frontArmored: {
  13368. height: math.unit(6, "feet"),
  13369. weight: math.unit(150, "lb"),
  13370. name: "Front (Armored)",
  13371. image: {
  13372. source: "./media/characters/umeko/front-armored.svg",
  13373. extra: 1,
  13374. bottom: 0.021
  13375. }
  13376. },
  13377. },
  13378. [
  13379. {
  13380. name: "Macro",
  13381. height: math.unit(220, "feet"),
  13382. default: true
  13383. },
  13384. {
  13385. name: "Guardian Dragon",
  13386. height: math.unit(50, "miles")
  13387. },
  13388. {
  13389. name: "Cosmic",
  13390. height: math.unit(800000, "miles")
  13391. },
  13392. ]
  13393. ))
  13394. characterMakers.push(() => makeCharacter(
  13395. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13396. {
  13397. front: {
  13398. height: math.unit(6, "feet"),
  13399. weight: math.unit(150, "lb"),
  13400. name: "Front",
  13401. image: {
  13402. source: "./media/characters/cassidy/front.svg",
  13403. extra: 1,
  13404. bottom: 0.043
  13405. }
  13406. },
  13407. },
  13408. [
  13409. {
  13410. name: "Canon Height",
  13411. height: math.unit(120, "feet"),
  13412. default: true
  13413. },
  13414. {
  13415. name: "Macro+",
  13416. height: math.unit(400, "feet")
  13417. },
  13418. {
  13419. name: "Macro++",
  13420. height: math.unit(4000, "feet")
  13421. },
  13422. {
  13423. name: "Megamacro",
  13424. height: math.unit(3, "miles")
  13425. },
  13426. ]
  13427. ))
  13428. characterMakers.push(() => makeCharacter(
  13429. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13430. {
  13431. front: {
  13432. height: math.unit(6, "feet"),
  13433. weight: math.unit(150, "lb"),
  13434. name: "Front",
  13435. image: {
  13436. source: "./media/characters/isaac/front.svg",
  13437. extra: 896 / 815,
  13438. bottom: 0.11
  13439. }
  13440. },
  13441. },
  13442. [
  13443. {
  13444. name: "Human Size",
  13445. height: math.unit(8, "feet"),
  13446. default: true
  13447. },
  13448. {
  13449. name: "Macro",
  13450. height: math.unit(400, "feet")
  13451. },
  13452. {
  13453. name: "Megamacro",
  13454. height: math.unit(50, "miles")
  13455. },
  13456. {
  13457. name: "Canon Height",
  13458. height: math.unit(200, "AU")
  13459. },
  13460. ]
  13461. ))
  13462. characterMakers.push(() => makeCharacter(
  13463. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13464. {
  13465. front: {
  13466. height: math.unit(6, "feet"),
  13467. weight: math.unit(72, "kg"),
  13468. name: "Front",
  13469. image: {
  13470. source: "./media/characters/sleekit/front.svg",
  13471. extra: 4693 / 4487,
  13472. bottom: 0.012
  13473. }
  13474. },
  13475. },
  13476. [
  13477. {
  13478. name: "Minimum Height",
  13479. height: math.unit(10, "meters")
  13480. },
  13481. {
  13482. name: "Smaller",
  13483. height: math.unit(25, "meters")
  13484. },
  13485. {
  13486. name: "Larger",
  13487. height: math.unit(38, "meters"),
  13488. default: true
  13489. },
  13490. {
  13491. name: "Maximum height",
  13492. height: math.unit(100, "meters")
  13493. },
  13494. ]
  13495. ))
  13496. characterMakers.push(() => makeCharacter(
  13497. { name: "Nillia", species: ["caracal"], 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/nillia/front.svg",
  13505. extra: 2195 / 2037,
  13506. bottom: 0.005
  13507. }
  13508. },
  13509. back: {
  13510. height: math.unit(6, "feet"),
  13511. weight: math.unit(150, "lb"),
  13512. name: "Back",
  13513. image: {
  13514. source: "./media/characters/nillia/back.svg",
  13515. extra: 2195 / 2037,
  13516. bottom: 0.005
  13517. }
  13518. },
  13519. },
  13520. [
  13521. {
  13522. name: "Canon Height",
  13523. height: math.unit(489, "feet"),
  13524. default: true
  13525. }
  13526. ]
  13527. ))
  13528. characterMakers.push(() => makeCharacter(
  13529. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13530. {
  13531. front: {
  13532. height: math.unit(6, "feet"),
  13533. weight: math.unit(150, "lb"),
  13534. name: "Front",
  13535. image: {
  13536. source: "./media/characters/mesmyriza/front.svg",
  13537. extra: 2067 / 1784,
  13538. bottom: 0.035
  13539. }
  13540. },
  13541. foot: {
  13542. height: math.unit(6 / (250 / 35), "feet"),
  13543. name: "Foot",
  13544. image: {
  13545. source: "./media/characters/mesmyriza/foot.svg"
  13546. }
  13547. },
  13548. },
  13549. [
  13550. {
  13551. name: "Macro",
  13552. height: math.unit(457, "meters"),
  13553. default: true
  13554. },
  13555. {
  13556. name: "Megamacro",
  13557. height: math.unit(8, "megameters")
  13558. },
  13559. ]
  13560. ))
  13561. characterMakers.push(() => makeCharacter(
  13562. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13563. {
  13564. front: {
  13565. height: math.unit(6, "feet"),
  13566. weight: math.unit(250, "lb"),
  13567. name: "Front",
  13568. image: {
  13569. source: "./media/characters/saudade/front.svg",
  13570. extra: 1172 / 1139,
  13571. bottom: 0.035
  13572. }
  13573. },
  13574. },
  13575. [
  13576. {
  13577. name: "Micro",
  13578. height: math.unit(3, "inches")
  13579. },
  13580. {
  13581. name: "Normal",
  13582. height: math.unit(6, "feet"),
  13583. default: true
  13584. },
  13585. {
  13586. name: "Macro",
  13587. height: math.unit(50, "feet")
  13588. },
  13589. {
  13590. name: "Megamacro",
  13591. height: math.unit(2800, "feet")
  13592. },
  13593. ]
  13594. ))
  13595. characterMakers.push(() => makeCharacter(
  13596. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13597. {
  13598. front: {
  13599. height: math.unit(5 + 4 / 12, "feet"),
  13600. weight: math.unit(100, "lb"),
  13601. name: "Front",
  13602. image: {
  13603. source: "./media/characters/keireer/front.svg",
  13604. extra: 716 / 666,
  13605. bottom: 0.05
  13606. }
  13607. },
  13608. },
  13609. [
  13610. {
  13611. name: "Normal",
  13612. height: math.unit(5 + 4 / 12, "feet"),
  13613. default: true
  13614. },
  13615. ]
  13616. ))
  13617. characterMakers.push(() => makeCharacter(
  13618. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13619. {
  13620. front: {
  13621. height: math.unit(6, "feet"),
  13622. weight: math.unit(90, "kg"),
  13623. name: "Front",
  13624. image: {
  13625. source: "./media/characters/mirja/front.svg",
  13626. extra: 1789 / 1683,
  13627. bottom: 0.05
  13628. }
  13629. },
  13630. frontDressed: {
  13631. height: math.unit(6, "feet"),
  13632. weight: math.unit(90, "lb"),
  13633. name: "Front (Dressed)",
  13634. image: {
  13635. source: "./media/characters/mirja/front-dressed.svg",
  13636. extra: 1789 / 1683,
  13637. bottom: 0.05
  13638. }
  13639. },
  13640. back: {
  13641. height: math.unit(6, "feet"),
  13642. weight: math.unit(90, "lb"),
  13643. name: "Back",
  13644. image: {
  13645. source: "./media/characters/mirja/back.svg",
  13646. extra: 953 / 917,
  13647. bottom: 0.017
  13648. }
  13649. },
  13650. },
  13651. [
  13652. {
  13653. name: "\"Incognito\"",
  13654. height: math.unit(3, "meters")
  13655. },
  13656. {
  13657. name: "Strolling Size",
  13658. height: math.unit(15, "km")
  13659. },
  13660. {
  13661. name: "Larger Strolling Size",
  13662. height: math.unit(400, "km")
  13663. },
  13664. {
  13665. name: "Preferred Size",
  13666. height: math.unit(5000, "km")
  13667. },
  13668. {
  13669. name: "True Size",
  13670. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13671. default: true
  13672. },
  13673. ]
  13674. ))
  13675. characterMakers.push(() => makeCharacter(
  13676. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13677. {
  13678. front: {
  13679. height: math.unit(15, "feet"),
  13680. weight: math.unit(880, "kg"),
  13681. name: "Front",
  13682. image: {
  13683. source: "./media/characters/nightraver/front.svg",
  13684. extra: 2444 / 2160,
  13685. bottom: 0.027
  13686. }
  13687. },
  13688. back: {
  13689. height: math.unit(15, "feet"),
  13690. weight: math.unit(880, "kg"),
  13691. name: "Back",
  13692. image: {
  13693. source: "./media/characters/nightraver/back.svg",
  13694. extra: 2309 / 2180,
  13695. bottom: 0.005
  13696. }
  13697. },
  13698. sole: {
  13699. height: math.unit(2.878, "feet"),
  13700. name: "Sole",
  13701. image: {
  13702. source: "./media/characters/nightraver/sole.svg"
  13703. }
  13704. },
  13705. foot: {
  13706. height: math.unit(2.285, "feet"),
  13707. name: "Foot",
  13708. image: {
  13709. source: "./media/characters/nightraver/foot.svg"
  13710. }
  13711. },
  13712. maw: {
  13713. height: math.unit(2.67, "feet"),
  13714. name: "Maw",
  13715. image: {
  13716. source: "./media/characters/nightraver/maw.svg"
  13717. }
  13718. },
  13719. },
  13720. [
  13721. {
  13722. name: "Micro",
  13723. height: math.unit(1, "cm")
  13724. },
  13725. {
  13726. name: "Normal",
  13727. height: math.unit(15, "feet"),
  13728. default: true
  13729. },
  13730. {
  13731. name: "Macro",
  13732. height: math.unit(300, "feet")
  13733. },
  13734. {
  13735. name: "Megamacro",
  13736. height: math.unit(300, "miles")
  13737. },
  13738. {
  13739. name: "Gigamacro",
  13740. height: math.unit(10000, "miles")
  13741. },
  13742. ]
  13743. ))
  13744. characterMakers.push(() => makeCharacter(
  13745. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13746. {
  13747. side: {
  13748. height: math.unit(2, "inches"),
  13749. weight: math.unit(5, "grams"),
  13750. name: "Side",
  13751. image: {
  13752. source: "./media/characters/arc/side.svg"
  13753. }
  13754. },
  13755. },
  13756. [
  13757. {
  13758. name: "Micro",
  13759. height: math.unit(2, "inches"),
  13760. default: true
  13761. },
  13762. ]
  13763. ))
  13764. characterMakers.push(() => makeCharacter(
  13765. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13766. {
  13767. front: {
  13768. height: math.unit(1.1938, "meters"),
  13769. weight: math.unit(54, "kg"),
  13770. name: "Front",
  13771. image: {
  13772. source: "./media/characters/nebula-shahar/front.svg",
  13773. extra: 1642 / 1436,
  13774. bottom: 0.06
  13775. }
  13776. },
  13777. },
  13778. [
  13779. {
  13780. name: "Megamicro",
  13781. height: math.unit(0.3, "mm")
  13782. },
  13783. {
  13784. name: "Micro",
  13785. height: math.unit(3, "cm")
  13786. },
  13787. {
  13788. name: "Normal",
  13789. height: math.unit(138, "cm"),
  13790. default: true
  13791. },
  13792. {
  13793. name: "Macro",
  13794. height: math.unit(30, "m")
  13795. },
  13796. ]
  13797. ))
  13798. characterMakers.push(() => makeCharacter(
  13799. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13800. {
  13801. front: {
  13802. height: math.unit(5.24, "feet"),
  13803. weight: math.unit(150, "lb"),
  13804. name: "Front",
  13805. image: {
  13806. source: "./media/characters/shayla/front.svg",
  13807. extra: 1512 / 1414,
  13808. bottom: 0.01
  13809. }
  13810. },
  13811. back: {
  13812. height: math.unit(5.24, "feet"),
  13813. weight: math.unit(150, "lb"),
  13814. name: "Back",
  13815. image: {
  13816. source: "./media/characters/shayla/back.svg",
  13817. extra: 1512 / 1414
  13818. }
  13819. },
  13820. hand: {
  13821. height: math.unit(0.7781496062992126, "feet"),
  13822. name: "Hand",
  13823. image: {
  13824. source: "./media/characters/shayla/hand.svg"
  13825. }
  13826. },
  13827. foot: {
  13828. height: math.unit(1.4206036745406823, "feet"),
  13829. name: "Foot",
  13830. image: {
  13831. source: "./media/characters/shayla/foot.svg"
  13832. }
  13833. },
  13834. },
  13835. [
  13836. {
  13837. name: "Micro",
  13838. height: math.unit(0.32, "feet")
  13839. },
  13840. {
  13841. name: "Normal",
  13842. height: math.unit(5.24, "feet"),
  13843. default: true
  13844. },
  13845. {
  13846. name: "Macro",
  13847. height: math.unit(492.12, "feet")
  13848. },
  13849. {
  13850. name: "Megamacro",
  13851. height: math.unit(186.41, "miles")
  13852. },
  13853. ]
  13854. ))
  13855. characterMakers.push(() => makeCharacter(
  13856. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13857. {
  13858. front: {
  13859. height: math.unit(2.2, "m"),
  13860. weight: math.unit(120, "kg"),
  13861. name: "Front",
  13862. image: {
  13863. source: "./media/characters/pia-jr/front.svg",
  13864. extra: 1000 / 970,
  13865. bottom: 0.035
  13866. }
  13867. },
  13868. hand: {
  13869. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13870. name: "Hand",
  13871. image: {
  13872. source: "./media/characters/pia-jr/hand.svg"
  13873. }
  13874. },
  13875. paw: {
  13876. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13877. name: "Paw",
  13878. image: {
  13879. source: "./media/characters/pia-jr/paw.svg"
  13880. }
  13881. },
  13882. },
  13883. [
  13884. {
  13885. name: "Micro",
  13886. height: math.unit(1.2, "cm")
  13887. },
  13888. {
  13889. name: "Normal",
  13890. height: math.unit(2.2, "m"),
  13891. default: true
  13892. },
  13893. {
  13894. name: "Macro",
  13895. height: math.unit(180, "m")
  13896. },
  13897. {
  13898. name: "Megamacro",
  13899. height: math.unit(420, "km")
  13900. },
  13901. ]
  13902. ))
  13903. characterMakers.push(() => makeCharacter(
  13904. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13905. {
  13906. front: {
  13907. height: math.unit(2, "m"),
  13908. weight: math.unit(115, "kg"),
  13909. name: "Front",
  13910. image: {
  13911. source: "./media/characters/pia-sr/front.svg",
  13912. extra: 760 / 730,
  13913. bottom: 0.015
  13914. }
  13915. },
  13916. back: {
  13917. height: math.unit(2, "m"),
  13918. weight: math.unit(115, "kg"),
  13919. name: "Back",
  13920. image: {
  13921. source: "./media/characters/pia-sr/back.svg",
  13922. extra: 760 / 730,
  13923. bottom: 0.01
  13924. }
  13925. },
  13926. hand: {
  13927. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13928. name: "Hand",
  13929. image: {
  13930. source: "./media/characters/pia-sr/hand.svg"
  13931. }
  13932. },
  13933. foot: {
  13934. height: math.unit(1.83, "feet"),
  13935. name: "Foot",
  13936. image: {
  13937. source: "./media/characters/pia-sr/foot.svg"
  13938. }
  13939. },
  13940. },
  13941. [
  13942. {
  13943. name: "Micro",
  13944. height: math.unit(88, "mm")
  13945. },
  13946. {
  13947. name: "Normal",
  13948. height: math.unit(2, "m"),
  13949. default: true
  13950. },
  13951. {
  13952. name: "Macro",
  13953. height: math.unit(200, "m")
  13954. },
  13955. {
  13956. name: "Megamacro",
  13957. height: math.unit(420, "km")
  13958. },
  13959. ]
  13960. ))
  13961. characterMakers.push(() => makeCharacter(
  13962. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13963. {
  13964. front: {
  13965. height: math.unit(8 + 2 / 12, "feet"),
  13966. weight: math.unit(300, "lb"),
  13967. name: "Front",
  13968. image: {
  13969. source: "./media/characters/kibibyte/front.svg",
  13970. extra: 2221 / 2098,
  13971. bottom: 0.04
  13972. }
  13973. },
  13974. },
  13975. [
  13976. {
  13977. name: "Normal",
  13978. height: math.unit(8 + 2 / 12, "feet"),
  13979. default: true
  13980. },
  13981. {
  13982. name: "Socialable Macro",
  13983. height: math.unit(50, "feet")
  13984. },
  13985. {
  13986. name: "Macro",
  13987. height: math.unit(300, "feet")
  13988. },
  13989. {
  13990. name: "Megamacro",
  13991. height: math.unit(500, "miles")
  13992. },
  13993. ]
  13994. ))
  13995. characterMakers.push(() => makeCharacter(
  13996. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13997. {
  13998. front: {
  13999. height: math.unit(6, "feet"),
  14000. weight: math.unit(150, "lb"),
  14001. name: "Front",
  14002. image: {
  14003. source: "./media/characters/felix/front.svg",
  14004. extra: 762 / 722,
  14005. bottom: 0.02
  14006. }
  14007. },
  14008. frontClothed: {
  14009. height: math.unit(6, "feet"),
  14010. weight: math.unit(150, "lb"),
  14011. name: "Front (Clothed)",
  14012. image: {
  14013. source: "./media/characters/felix/front-clothed.svg",
  14014. extra: 762 / 722,
  14015. bottom: 0.02
  14016. }
  14017. },
  14018. },
  14019. [
  14020. {
  14021. name: "Normal",
  14022. height: math.unit(6 + 8 / 12, "feet"),
  14023. default: true
  14024. },
  14025. {
  14026. name: "Macro",
  14027. height: math.unit(2600, "feet")
  14028. },
  14029. {
  14030. name: "Megamacro",
  14031. height: math.unit(450, "miles")
  14032. },
  14033. ]
  14034. ))
  14035. characterMakers.push(() => makeCharacter(
  14036. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14037. {
  14038. front: {
  14039. height: math.unit(6 + 1 / 12, "feet"),
  14040. weight: math.unit(250, "lb"),
  14041. name: "Front",
  14042. image: {
  14043. source: "./media/characters/tobo/front.svg",
  14044. extra: 608 / 586,
  14045. bottom: 0.023
  14046. }
  14047. },
  14048. back: {
  14049. height: math.unit(6 + 1 / 12, "feet"),
  14050. weight: math.unit(250, "lb"),
  14051. name: "Back",
  14052. image: {
  14053. source: "./media/characters/tobo/back.svg",
  14054. extra: 608 / 586
  14055. }
  14056. },
  14057. },
  14058. [
  14059. {
  14060. name: "Nano",
  14061. height: math.unit(2, "nm")
  14062. },
  14063. {
  14064. name: "Megamicro",
  14065. height: math.unit(0.1, "mm")
  14066. },
  14067. {
  14068. name: "Micro",
  14069. height: math.unit(1, "inch"),
  14070. default: true
  14071. },
  14072. {
  14073. name: "Human-sized",
  14074. height: math.unit(6 + 1 / 12, "feet")
  14075. },
  14076. {
  14077. name: "Macro",
  14078. height: math.unit(250, "feet")
  14079. },
  14080. {
  14081. name: "Megamacro",
  14082. height: math.unit(75, "miles")
  14083. },
  14084. {
  14085. name: "Texas-sized",
  14086. height: math.unit(750, "miles")
  14087. },
  14088. {
  14089. name: "Teramacro",
  14090. height: math.unit(50000, "miles")
  14091. },
  14092. ]
  14093. ))
  14094. characterMakers.push(() => makeCharacter(
  14095. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14096. {
  14097. front: {
  14098. height: math.unit(6, "feet"),
  14099. weight: math.unit(269, "lb"),
  14100. name: "Front",
  14101. image: {
  14102. source: "./media/characters/danny-kapowsky/front.svg",
  14103. extra: 766 / 736,
  14104. bottom: 0.044
  14105. }
  14106. },
  14107. back: {
  14108. height: math.unit(6, "feet"),
  14109. weight: math.unit(269, "lb"),
  14110. name: "Back",
  14111. image: {
  14112. source: "./media/characters/danny-kapowsky/back.svg",
  14113. extra: 797 / 760,
  14114. bottom: 0.025
  14115. }
  14116. },
  14117. },
  14118. [
  14119. {
  14120. name: "Macro",
  14121. height: math.unit(150, "feet"),
  14122. default: true
  14123. },
  14124. {
  14125. name: "Macro+",
  14126. height: math.unit(200, "feet")
  14127. },
  14128. {
  14129. name: "Macro++",
  14130. height: math.unit(300, "feet")
  14131. },
  14132. {
  14133. name: "Macro+++",
  14134. height: math.unit(400, "feet")
  14135. },
  14136. ]
  14137. ))
  14138. characterMakers.push(() => makeCharacter(
  14139. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14140. {
  14141. side: {
  14142. height: math.unit(6, "feet"),
  14143. weight: math.unit(170, "lb"),
  14144. name: "Side",
  14145. image: {
  14146. source: "./media/characters/finn/side.svg",
  14147. extra: 1953 / 1807,
  14148. bottom: 0.057
  14149. }
  14150. },
  14151. },
  14152. [
  14153. {
  14154. name: "Megamacro",
  14155. height: math.unit(14445, "feet"),
  14156. default: true
  14157. },
  14158. ]
  14159. ))
  14160. characterMakers.push(() => makeCharacter(
  14161. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14162. {
  14163. front: {
  14164. height: math.unit(5 + 6 / 12, "feet"),
  14165. weight: math.unit(125, "lb"),
  14166. name: "Front",
  14167. image: {
  14168. source: "./media/characters/roy/front.svg",
  14169. extra: 1,
  14170. bottom: 0.11
  14171. }
  14172. },
  14173. },
  14174. [
  14175. {
  14176. name: "Micro",
  14177. height: math.unit(3, "inches"),
  14178. default: true
  14179. },
  14180. {
  14181. name: "Normal",
  14182. height: math.unit(5 + 6 / 12, "feet")
  14183. },
  14184. {
  14185. name: "Lesser Macro",
  14186. height: math.unit(60, "feet")
  14187. },
  14188. {
  14189. name: "Greater Macro",
  14190. height: math.unit(120, "feet")
  14191. },
  14192. ]
  14193. ))
  14194. characterMakers.push(() => makeCharacter(
  14195. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14196. {
  14197. front: {
  14198. height: math.unit(6, "feet"),
  14199. weight: math.unit(100, "lb"),
  14200. name: "Front",
  14201. image: {
  14202. source: "./media/characters/aevsivs/front.svg",
  14203. extra: 1,
  14204. bottom: 0.03
  14205. }
  14206. },
  14207. back: {
  14208. height: math.unit(6, "feet"),
  14209. weight: math.unit(100, "lb"),
  14210. name: "Back",
  14211. image: {
  14212. source: "./media/characters/aevsivs/back.svg"
  14213. }
  14214. },
  14215. },
  14216. [
  14217. {
  14218. name: "Micro",
  14219. height: math.unit(2, "inches"),
  14220. default: true
  14221. },
  14222. {
  14223. name: "Normal",
  14224. height: math.unit(5, "feet")
  14225. },
  14226. ]
  14227. ))
  14228. characterMakers.push(() => makeCharacter(
  14229. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14230. {
  14231. front: {
  14232. height: math.unit(5 + 7 / 12, "feet"),
  14233. weight: math.unit(159, "lb"),
  14234. name: "Front",
  14235. image: {
  14236. source: "./media/characters/hildegard/front.svg",
  14237. extra: 289 / 269,
  14238. bottom: 7.63 / 297.8
  14239. }
  14240. },
  14241. back: {
  14242. height: math.unit(5 + 7 / 12, "feet"),
  14243. weight: math.unit(159, "lb"),
  14244. name: "Back",
  14245. image: {
  14246. source: "./media/characters/hildegard/back.svg",
  14247. extra: 280 / 260,
  14248. bottom: 2.3 / 282
  14249. }
  14250. },
  14251. },
  14252. [
  14253. {
  14254. name: "Normal",
  14255. height: math.unit(5 + 7 / 12, "feet"),
  14256. default: true
  14257. },
  14258. ]
  14259. ))
  14260. characterMakers.push(() => makeCharacter(
  14261. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14262. {
  14263. bernard: {
  14264. height: math.unit(2 + 7 / 12, "feet"),
  14265. weight: math.unit(66, "lb"),
  14266. name: "Bernard",
  14267. rename: true,
  14268. image: {
  14269. source: "./media/characters/bernard-wilder/bernard.svg",
  14270. extra: 192 / 128,
  14271. bottom: 0.05
  14272. }
  14273. },
  14274. wilder: {
  14275. height: math.unit(5 + 8 / 12, "feet"),
  14276. weight: math.unit(143, "lb"),
  14277. name: "Wilder",
  14278. rename: true,
  14279. image: {
  14280. source: "./media/characters/bernard-wilder/wilder.svg",
  14281. extra: 361 / 312,
  14282. bottom: 0.02
  14283. }
  14284. },
  14285. },
  14286. [
  14287. {
  14288. name: "Normal",
  14289. height: math.unit(2 + 7 / 12, "feet"),
  14290. default: true
  14291. },
  14292. ]
  14293. ))
  14294. characterMakers.push(() => makeCharacter(
  14295. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14296. {
  14297. anthro: {
  14298. height: math.unit(6 + 1 / 12, "feet"),
  14299. weight: math.unit(155, "lb"),
  14300. name: "Anthro",
  14301. image: {
  14302. source: "./media/characters/hearth/anthro.svg",
  14303. extra: 260 / 250,
  14304. bottom: 0.02
  14305. }
  14306. },
  14307. feral: {
  14308. height: math.unit(3.78, "feet"),
  14309. weight: math.unit(35, "kg"),
  14310. name: "Feral",
  14311. image: {
  14312. source: "./media/characters/hearth/feral.svg",
  14313. extra: 153 / 135,
  14314. bottom: 0.03
  14315. }
  14316. },
  14317. },
  14318. [
  14319. {
  14320. name: "Normal",
  14321. height: math.unit(6 + 1 / 12, "feet"),
  14322. default: true
  14323. },
  14324. ]
  14325. ))
  14326. characterMakers.push(() => makeCharacter(
  14327. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14328. {
  14329. front: {
  14330. height: math.unit(6, "feet"),
  14331. weight: math.unit(182, "lb"),
  14332. name: "Front",
  14333. image: {
  14334. source: "./media/characters/ingrid/front.svg",
  14335. extra: 294 / 268,
  14336. bottom: 0.027
  14337. }
  14338. },
  14339. },
  14340. [
  14341. {
  14342. name: "Normal",
  14343. height: math.unit(6, "feet"),
  14344. default: true
  14345. },
  14346. ]
  14347. ))
  14348. characterMakers.push(() => makeCharacter(
  14349. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14350. {
  14351. eevee: {
  14352. height: math.unit(2 + 10 / 12, "feet"),
  14353. weight: math.unit(86, "lb"),
  14354. name: "Malgam",
  14355. image: {
  14356. source: "./media/characters/malgam/eevee.svg",
  14357. extra: 218 / 180,
  14358. bottom: 0.2
  14359. }
  14360. },
  14361. sylveon: {
  14362. height: math.unit(4, "feet"),
  14363. weight: math.unit(101, "lb"),
  14364. name: "Future Malgam",
  14365. rename: true,
  14366. image: {
  14367. source: "./media/characters/malgam/sylveon.svg",
  14368. extra: 371 / 325,
  14369. bottom: 0.015
  14370. }
  14371. },
  14372. gigantamax: {
  14373. height: math.unit(50, "feet"),
  14374. name: "Gigantamax Malgam",
  14375. rename: true,
  14376. image: {
  14377. source: "./media/characters/malgam/gigantamax.svg"
  14378. }
  14379. },
  14380. },
  14381. [
  14382. {
  14383. name: "Normal",
  14384. height: math.unit(2 + 10 / 12, "feet"),
  14385. default: true
  14386. },
  14387. ]
  14388. ))
  14389. characterMakers.push(() => makeCharacter(
  14390. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14391. {
  14392. front: {
  14393. height: math.unit(5 + 11 / 12, "feet"),
  14394. weight: math.unit(188, "lb"),
  14395. name: "Front",
  14396. image: {
  14397. source: "./media/characters/fleur/front.svg",
  14398. extra: 309 / 283,
  14399. bottom: 0.007
  14400. }
  14401. },
  14402. },
  14403. [
  14404. {
  14405. name: "Normal",
  14406. height: math.unit(5 + 11 / 12, "feet"),
  14407. default: true
  14408. },
  14409. ]
  14410. ))
  14411. characterMakers.push(() => makeCharacter(
  14412. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14413. {
  14414. front: {
  14415. height: math.unit(5 + 4 / 12, "feet"),
  14416. weight: math.unit(122, "lb"),
  14417. name: "Front",
  14418. image: {
  14419. source: "./media/characters/jude/front.svg",
  14420. extra: 288 / 273,
  14421. bottom: 0.03
  14422. }
  14423. },
  14424. },
  14425. [
  14426. {
  14427. name: "Normal",
  14428. height: math.unit(5 + 4 / 12, "feet"),
  14429. default: true
  14430. },
  14431. ]
  14432. ))
  14433. characterMakers.push(() => makeCharacter(
  14434. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14435. {
  14436. front: {
  14437. height: math.unit(5 + 11 / 12, "feet"),
  14438. weight: math.unit(190, "lb"),
  14439. name: "Front",
  14440. image: {
  14441. source: "./media/characters/seara/front.svg",
  14442. extra: 1,
  14443. bottom: 0.05
  14444. }
  14445. },
  14446. },
  14447. [
  14448. {
  14449. name: "Normal",
  14450. height: math.unit(5 + 11 / 12, "feet"),
  14451. default: true
  14452. },
  14453. ]
  14454. ))
  14455. characterMakers.push(() => makeCharacter(
  14456. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14457. {
  14458. front: {
  14459. height: math.unit(16 + 5 / 12, "feet"),
  14460. weight: math.unit(524, "lb"),
  14461. name: "Front",
  14462. image: {
  14463. source: "./media/characters/caspian/front.svg",
  14464. extra: 1,
  14465. bottom: 0.04
  14466. }
  14467. },
  14468. },
  14469. [
  14470. {
  14471. name: "Normal",
  14472. height: math.unit(16 + 5 / 12, "feet"),
  14473. default: true
  14474. },
  14475. ]
  14476. ))
  14477. characterMakers.push(() => makeCharacter(
  14478. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14479. {
  14480. front: {
  14481. height: math.unit(5 + 7 / 12, "feet"),
  14482. weight: math.unit(170, "lb"),
  14483. name: "Front",
  14484. image: {
  14485. source: "./media/characters/mika/front.svg",
  14486. extra: 1,
  14487. bottom: 0.016
  14488. }
  14489. },
  14490. },
  14491. [
  14492. {
  14493. name: "Normal",
  14494. height: math.unit(5 + 7 / 12, "feet"),
  14495. default: true
  14496. },
  14497. ]
  14498. ))
  14499. characterMakers.push(() => makeCharacter(
  14500. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14501. {
  14502. front: {
  14503. height: math.unit(6 + 2 / 12, "feet"),
  14504. weight: math.unit(268, "lb"),
  14505. name: "Front",
  14506. image: {
  14507. source: "./media/characters/sol/front.svg",
  14508. extra: 247 / 231,
  14509. bottom: 0.05
  14510. }
  14511. },
  14512. },
  14513. [
  14514. {
  14515. name: "Normal",
  14516. height: math.unit(6 + 2 / 12, "feet"),
  14517. default: true
  14518. },
  14519. ]
  14520. ))
  14521. characterMakers.push(() => makeCharacter(
  14522. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14523. {
  14524. buizel: {
  14525. height: math.unit(2 + 5 / 12, "feet"),
  14526. weight: math.unit(87, "lb"),
  14527. name: "Buizel",
  14528. image: {
  14529. source: "./media/characters/umiko/buizel.svg",
  14530. extra: 172 / 157,
  14531. bottom: 0.01
  14532. }
  14533. },
  14534. floatzel: {
  14535. height: math.unit(5 + 9 / 12, "feet"),
  14536. weight: math.unit(250, "lb"),
  14537. name: "Floatzel",
  14538. image: {
  14539. source: "./media/characters/umiko/floatzel.svg",
  14540. extra: 262 / 248
  14541. }
  14542. },
  14543. },
  14544. [
  14545. {
  14546. name: "Normal",
  14547. height: math.unit(2 + 5 / 12, "feet"),
  14548. default: true
  14549. },
  14550. ]
  14551. ))
  14552. characterMakers.push(() => makeCharacter(
  14553. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14554. {
  14555. front: {
  14556. height: math.unit(6 + 2 / 12, "feet"),
  14557. weight: math.unit(146, "lb"),
  14558. name: "Front",
  14559. image: {
  14560. source: "./media/characters/iliac/front.svg",
  14561. extra: 389 / 365,
  14562. bottom: 0.035
  14563. }
  14564. },
  14565. },
  14566. [
  14567. {
  14568. name: "Normal",
  14569. height: math.unit(6 + 2 / 12, "feet"),
  14570. default: true
  14571. },
  14572. ]
  14573. ))
  14574. characterMakers.push(() => makeCharacter(
  14575. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14576. {
  14577. front: {
  14578. height: math.unit(6, "feet"),
  14579. weight: math.unit(170, "lb"),
  14580. name: "Front",
  14581. image: {
  14582. source: "./media/characters/topaz/front.svg",
  14583. extra: 317 / 303,
  14584. bottom: 0.055
  14585. }
  14586. },
  14587. },
  14588. [
  14589. {
  14590. name: "Normal",
  14591. height: math.unit(6, "feet"),
  14592. default: true
  14593. },
  14594. ]
  14595. ))
  14596. characterMakers.push(() => makeCharacter(
  14597. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14598. {
  14599. front: {
  14600. height: math.unit(5 + 11 / 12, "feet"),
  14601. weight: math.unit(144, "lb"),
  14602. name: "Front",
  14603. image: {
  14604. source: "./media/characters/gabriel/front.svg",
  14605. extra: 285 / 262,
  14606. bottom: 0.004
  14607. }
  14608. },
  14609. },
  14610. [
  14611. {
  14612. name: "Normal",
  14613. height: math.unit(5 + 11 / 12, "feet"),
  14614. default: true
  14615. },
  14616. ]
  14617. ))
  14618. characterMakers.push(() => makeCharacter(
  14619. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14620. {
  14621. side: {
  14622. height: math.unit(6 + 5 / 12, "feet"),
  14623. weight: math.unit(300, "lb"),
  14624. name: "Side",
  14625. image: {
  14626. source: "./media/characters/tempest-suicune/side.svg",
  14627. extra: 195 / 154,
  14628. bottom: 0.04
  14629. }
  14630. },
  14631. },
  14632. [
  14633. {
  14634. name: "Normal",
  14635. height: math.unit(6 + 5 / 12, "feet"),
  14636. default: true
  14637. },
  14638. ]
  14639. ))
  14640. characterMakers.push(() => makeCharacter(
  14641. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14642. {
  14643. front: {
  14644. height: math.unit(7 + 2 / 12, "feet"),
  14645. weight: math.unit(322, "lb"),
  14646. name: "Front",
  14647. image: {
  14648. source: "./media/characters/vulcan/front.svg",
  14649. extra: 154 / 147,
  14650. bottom: 0.04
  14651. }
  14652. },
  14653. },
  14654. [
  14655. {
  14656. name: "Normal",
  14657. height: math.unit(7 + 2 / 12, "feet"),
  14658. default: true
  14659. },
  14660. ]
  14661. ))
  14662. characterMakers.push(() => makeCharacter(
  14663. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14664. {
  14665. front: {
  14666. height: math.unit(5 + 10 / 12, "feet"),
  14667. weight: math.unit(264, "lb"),
  14668. name: "Front",
  14669. image: {
  14670. source: "./media/characters/gault/front.svg",
  14671. extra: 161 / 140,
  14672. bottom: 0.028
  14673. }
  14674. },
  14675. },
  14676. [
  14677. {
  14678. name: "Normal",
  14679. height: math.unit(5 + 10 / 12, "feet"),
  14680. default: true
  14681. },
  14682. ]
  14683. ))
  14684. characterMakers.push(() => makeCharacter(
  14685. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14686. {
  14687. front: {
  14688. height: math.unit(6, "feet"),
  14689. weight: math.unit(150, "lb"),
  14690. name: "Front",
  14691. image: {
  14692. source: "./media/characters/shard/front.svg",
  14693. extra: 273 / 238,
  14694. bottom: 0.02
  14695. }
  14696. },
  14697. },
  14698. [
  14699. {
  14700. name: "Normal",
  14701. height: math.unit(3 + 6 / 12, "feet"),
  14702. default: true
  14703. },
  14704. ]
  14705. ))
  14706. characterMakers.push(() => makeCharacter(
  14707. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14708. {
  14709. front: {
  14710. height: math.unit(5 + 11 / 12, "feet"),
  14711. weight: math.unit(146, "lb"),
  14712. name: "Front",
  14713. image: {
  14714. source: "./media/characters/ashe/front.svg",
  14715. extra: 400 / 373,
  14716. bottom: 0.01
  14717. }
  14718. },
  14719. },
  14720. [
  14721. {
  14722. name: "Normal",
  14723. height: math.unit(5 + 11 / 12, "feet"),
  14724. default: true
  14725. },
  14726. ]
  14727. ))
  14728. characterMakers.push(() => makeCharacter(
  14729. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14730. {
  14731. front: {
  14732. height: math.unit(5 + 5 / 12, "feet"),
  14733. weight: math.unit(135, "lb"),
  14734. name: "Front",
  14735. image: {
  14736. source: "./media/characters/beatrix/front.svg",
  14737. extra: 392 / 379,
  14738. bottom: 0.01
  14739. }
  14740. },
  14741. },
  14742. [
  14743. {
  14744. name: "Normal",
  14745. height: math.unit(6, "feet"),
  14746. default: true
  14747. },
  14748. ]
  14749. ))
  14750. characterMakers.push(() => makeCharacter(
  14751. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14752. {
  14753. front: {
  14754. height: math.unit(6, "feet"),
  14755. weight: math.unit(150, "lb"),
  14756. name: "Front",
  14757. image: {
  14758. source: "./media/characters/ignatius/front.svg",
  14759. extra: 245 / 222,
  14760. bottom: 0.01
  14761. }
  14762. },
  14763. },
  14764. [
  14765. {
  14766. name: "Normal",
  14767. height: math.unit(5 + 5 / 12, "feet"),
  14768. default: true
  14769. },
  14770. ]
  14771. ))
  14772. characterMakers.push(() => makeCharacter(
  14773. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14774. {
  14775. front: {
  14776. height: math.unit(6 + 2 / 12, "feet"),
  14777. weight: math.unit(138, "lb"),
  14778. name: "Front",
  14779. image: {
  14780. source: "./media/characters/mei-li/front.svg",
  14781. extra: 237 / 229,
  14782. bottom: 0.03
  14783. }
  14784. },
  14785. },
  14786. [
  14787. {
  14788. name: "Normal",
  14789. height: math.unit(6 + 2 / 12, "feet"),
  14790. default: true
  14791. },
  14792. ]
  14793. ))
  14794. characterMakers.push(() => makeCharacter(
  14795. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14796. {
  14797. front: {
  14798. height: math.unit(2 + 4 / 12, "feet"),
  14799. weight: math.unit(62, "lb"),
  14800. name: "Front",
  14801. image: {
  14802. source: "./media/characters/puru/front.svg",
  14803. extra: 206 / 149,
  14804. bottom: 0.06
  14805. }
  14806. },
  14807. },
  14808. [
  14809. {
  14810. name: "Normal",
  14811. height: math.unit(2 + 4 / 12, "feet"),
  14812. default: true
  14813. },
  14814. ]
  14815. ))
  14816. characterMakers.push(() => makeCharacter(
  14817. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14818. {
  14819. taur: {
  14820. height: math.unit(11, "feet"),
  14821. weight: math.unit(500, "lb"),
  14822. name: "Taur",
  14823. image: {
  14824. source: "./media/characters/kee/taur.svg",
  14825. extra: 1,
  14826. bottom: 0.04
  14827. }
  14828. },
  14829. },
  14830. [
  14831. {
  14832. name: "Normal",
  14833. height: math.unit(11, "feet"),
  14834. default: true
  14835. },
  14836. ]
  14837. ))
  14838. characterMakers.push(() => makeCharacter(
  14839. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14840. {
  14841. anthro: {
  14842. height: math.unit(7, "feet"),
  14843. weight: math.unit(190, "lb"),
  14844. name: "Anthro",
  14845. image: {
  14846. source: "./media/characters/cobalt-dracha/anthro.svg",
  14847. extra: 231 / 225,
  14848. bottom: 0.04
  14849. }
  14850. },
  14851. feral: {
  14852. height: math.unit(9 + 7 / 12, "feet"),
  14853. weight: math.unit(294, "lb"),
  14854. name: "Feral",
  14855. image: {
  14856. source: "./media/characters/cobalt-dracha/feral.svg",
  14857. extra: 692 / 633,
  14858. bottom: 0.05
  14859. }
  14860. },
  14861. },
  14862. [
  14863. {
  14864. name: "Normal",
  14865. height: math.unit(7, "feet"),
  14866. default: true
  14867. },
  14868. ]
  14869. ))
  14870. characterMakers.push(() => makeCharacter(
  14871. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14872. {
  14873. fallen: {
  14874. height: math.unit(11 + 8 / 12, "feet"),
  14875. weight: math.unit(485, "lb"),
  14876. name: "Java (Fallen)",
  14877. rename: true,
  14878. image: {
  14879. source: "./media/characters/java/fallen.svg",
  14880. extra: 226 / 208,
  14881. bottom: 0.005
  14882. }
  14883. },
  14884. godkin: {
  14885. height: math.unit(10 + 6 / 12, "feet"),
  14886. weight: math.unit(328, "lb"),
  14887. name: "Java (Godkin)",
  14888. rename: true,
  14889. image: {
  14890. source: "./media/characters/java/godkin.svg",
  14891. extra: 270 / 262,
  14892. bottom: 0.02
  14893. }
  14894. },
  14895. },
  14896. [
  14897. {
  14898. name: "Normal",
  14899. height: math.unit(11 + 8 / 12, "feet"),
  14900. default: true
  14901. },
  14902. ]
  14903. ))
  14904. characterMakers.push(() => makeCharacter(
  14905. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14906. {
  14907. front: {
  14908. height: math.unit(7 + 8 / 12, "feet"),
  14909. weight: math.unit(320, "lb"),
  14910. name: "Front",
  14911. image: {
  14912. source: "./media/characters/skoll/front.svg",
  14913. extra: 232 / 220,
  14914. bottom: 0.02
  14915. }
  14916. },
  14917. },
  14918. [
  14919. {
  14920. name: "Normal",
  14921. height: math.unit(7 + 8 / 12, "feet"),
  14922. default: true
  14923. },
  14924. ]
  14925. ))
  14926. characterMakers.push(() => makeCharacter(
  14927. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14928. {
  14929. front: {
  14930. height: math.unit(5 + 9 / 12, "feet"),
  14931. weight: math.unit(170, "lb"),
  14932. name: "Front",
  14933. image: {
  14934. source: "./media/characters/purna/front.svg",
  14935. extra: 239 / 229,
  14936. bottom: 0.01
  14937. }
  14938. },
  14939. },
  14940. [
  14941. {
  14942. name: "Normal",
  14943. height: math.unit(5 + 9 / 12, "feet"),
  14944. default: true
  14945. },
  14946. ]
  14947. ))
  14948. characterMakers.push(() => makeCharacter(
  14949. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14950. {
  14951. front: {
  14952. height: math.unit(5 + 9 / 12, "feet"),
  14953. weight: math.unit(142, "lb"),
  14954. name: "Front",
  14955. image: {
  14956. source: "./media/characters/kuva/front.svg",
  14957. extra: 281 / 271,
  14958. bottom: 0.006
  14959. }
  14960. },
  14961. },
  14962. [
  14963. {
  14964. name: "Normal",
  14965. height: math.unit(5 + 9 / 12, "feet"),
  14966. default: true
  14967. },
  14968. ]
  14969. ))
  14970. characterMakers.push(() => makeCharacter(
  14971. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14972. {
  14973. anthro: {
  14974. height: math.unit(9 + 2 / 12, "feet"),
  14975. weight: math.unit(270, "lb"),
  14976. name: "Anthro",
  14977. image: {
  14978. source: "./media/characters/embra/anthro.svg",
  14979. extra: 200 / 187,
  14980. bottom: 0.02
  14981. }
  14982. },
  14983. feral: {
  14984. height: math.unit(18 + 8 / 12, "feet"),
  14985. weight: math.unit(576, "lb"),
  14986. name: "Feral",
  14987. image: {
  14988. source: "./media/characters/embra/feral.svg",
  14989. extra: 152 / 137,
  14990. bottom: 0.037
  14991. }
  14992. },
  14993. },
  14994. [
  14995. {
  14996. name: "Normal",
  14997. height: math.unit(9 + 2 / 12, "feet"),
  14998. default: true
  14999. },
  15000. ]
  15001. ))
  15002. characterMakers.push(() => makeCharacter(
  15003. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15004. {
  15005. anthro: {
  15006. height: math.unit(10 + 9 / 12, "feet"),
  15007. weight: math.unit(224, "lb"),
  15008. name: "Anthro",
  15009. image: {
  15010. source: "./media/characters/grottos/anthro.svg",
  15011. extra: 350 / 332,
  15012. bottom: 0.045
  15013. }
  15014. },
  15015. feral: {
  15016. height: math.unit(20 + 7 / 12, "feet"),
  15017. weight: math.unit(629, "lb"),
  15018. name: "Feral",
  15019. image: {
  15020. source: "./media/characters/grottos/feral.svg",
  15021. extra: 207 / 190,
  15022. bottom: 0.05
  15023. }
  15024. },
  15025. },
  15026. [
  15027. {
  15028. name: "Normal",
  15029. height: math.unit(10 + 9 / 12, "feet"),
  15030. default: true
  15031. },
  15032. ]
  15033. ))
  15034. characterMakers.push(() => makeCharacter(
  15035. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15036. {
  15037. anthro: {
  15038. height: math.unit(9 + 6 / 12, "feet"),
  15039. weight: math.unit(298, "lb"),
  15040. name: "Anthro",
  15041. image: {
  15042. source: "./media/characters/frifna/anthro.svg",
  15043. extra: 282 / 269,
  15044. bottom: 0.015
  15045. }
  15046. },
  15047. feral: {
  15048. height: math.unit(16 + 2 / 12, "feet"),
  15049. weight: math.unit(624, "lb"),
  15050. name: "Feral",
  15051. image: {
  15052. source: "./media/characters/frifna/feral.svg"
  15053. }
  15054. },
  15055. },
  15056. [
  15057. {
  15058. name: "Normal",
  15059. height: math.unit(9 + 6 / 12, "feet"),
  15060. default: true
  15061. },
  15062. ]
  15063. ))
  15064. characterMakers.push(() => makeCharacter(
  15065. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15066. {
  15067. front: {
  15068. height: math.unit(6 + 2 / 12, "feet"),
  15069. weight: math.unit(168, "lb"),
  15070. name: "Front",
  15071. image: {
  15072. source: "./media/characters/elise/front.svg",
  15073. extra: 276 / 271
  15074. }
  15075. },
  15076. },
  15077. [
  15078. {
  15079. name: "Normal",
  15080. height: math.unit(6 + 2 / 12, "feet"),
  15081. default: true
  15082. },
  15083. ]
  15084. ))
  15085. characterMakers.push(() => makeCharacter(
  15086. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15087. {
  15088. front: {
  15089. height: math.unit(5 + 10 / 12, "feet"),
  15090. weight: math.unit(210, "lb"),
  15091. name: "Front",
  15092. image: {
  15093. source: "./media/characters/glade/front.svg",
  15094. extra: 258 / 247,
  15095. bottom: 0.008
  15096. }
  15097. },
  15098. },
  15099. [
  15100. {
  15101. name: "Normal",
  15102. height: math.unit(5 + 10 / 12, "feet"),
  15103. default: true
  15104. },
  15105. ]
  15106. ))
  15107. characterMakers.push(() => makeCharacter(
  15108. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15109. {
  15110. front: {
  15111. height: math.unit(5 + 10 / 12, "feet"),
  15112. weight: math.unit(129, "lb"),
  15113. name: "Front",
  15114. image: {
  15115. source: "./media/characters/rina/front.svg",
  15116. extra: 266 / 255,
  15117. bottom: 0.005
  15118. }
  15119. },
  15120. },
  15121. [
  15122. {
  15123. name: "Normal",
  15124. height: math.unit(5 + 10 / 12, "feet"),
  15125. default: true
  15126. },
  15127. ]
  15128. ))
  15129. characterMakers.push(() => makeCharacter(
  15130. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15131. {
  15132. front: {
  15133. height: math.unit(6 + 1 / 12, "feet"),
  15134. weight: math.unit(192, "lb"),
  15135. name: "Front",
  15136. image: {
  15137. source: "./media/characters/veronica/front.svg",
  15138. extra: 319 / 309,
  15139. bottom: 0.005
  15140. }
  15141. },
  15142. },
  15143. [
  15144. {
  15145. name: "Normal",
  15146. height: math.unit(6 + 1 / 12, "feet"),
  15147. default: true
  15148. },
  15149. ]
  15150. ))
  15151. characterMakers.push(() => makeCharacter(
  15152. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15153. {
  15154. front: {
  15155. height: math.unit(9 + 3 / 12, "feet"),
  15156. weight: math.unit(1100, "lb"),
  15157. name: "Front",
  15158. image: {
  15159. source: "./media/characters/braxton/front.svg",
  15160. extra: 1057 / 984,
  15161. bottom: 0.05
  15162. }
  15163. },
  15164. },
  15165. [
  15166. {
  15167. name: "Normal",
  15168. height: math.unit(9 + 3 / 12, "feet")
  15169. },
  15170. {
  15171. name: "Giant",
  15172. height: math.unit(300, "feet"),
  15173. default: true
  15174. },
  15175. {
  15176. name: "Macro",
  15177. height: math.unit(700, "feet")
  15178. },
  15179. {
  15180. name: "Megamacro",
  15181. height: math.unit(6000, "feet")
  15182. },
  15183. ]
  15184. ))
  15185. characterMakers.push(() => makeCharacter(
  15186. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15187. {
  15188. front: {
  15189. height: math.unit(6 + 7 / 12, "feet"),
  15190. weight: math.unit(150, "lb"),
  15191. name: "Front",
  15192. image: {
  15193. source: "./media/characters/blue-feyonics/front.svg",
  15194. extra: 1403 / 1306,
  15195. bottom: 0.047
  15196. }
  15197. },
  15198. },
  15199. [
  15200. {
  15201. name: "Normal",
  15202. height: math.unit(6 + 7 / 12, "feet"),
  15203. default: true
  15204. },
  15205. ]
  15206. ))
  15207. characterMakers.push(() => makeCharacter(
  15208. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15209. {
  15210. front: {
  15211. height: math.unit(1.8, "meters"),
  15212. weight: math.unit(60, "kg"),
  15213. name: "Front",
  15214. image: {
  15215. source: "./media/characters/maxwell/front.svg",
  15216. extra: 2060 / 1873
  15217. }
  15218. },
  15219. },
  15220. [
  15221. {
  15222. name: "Micro",
  15223. height: math.unit(1, "mm")
  15224. },
  15225. {
  15226. name: "Normal",
  15227. height: math.unit(1.8, "meter"),
  15228. default: true
  15229. },
  15230. {
  15231. name: "Macro",
  15232. height: math.unit(30, "meters")
  15233. },
  15234. {
  15235. name: "Megamacro",
  15236. height: math.unit(10, "km")
  15237. },
  15238. ]
  15239. ))
  15240. characterMakers.push(() => makeCharacter(
  15241. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15242. {
  15243. front: {
  15244. height: math.unit(6, "feet"),
  15245. weight: math.unit(150, "lb"),
  15246. name: "Front",
  15247. image: {
  15248. source: "./media/characters/jack/front.svg",
  15249. extra: 1754 / 1640,
  15250. bottom: 0.01
  15251. }
  15252. },
  15253. },
  15254. [
  15255. {
  15256. name: "Normal",
  15257. height: math.unit(80000, "feet"),
  15258. default: true
  15259. },
  15260. {
  15261. name: "Max size",
  15262. height: math.unit(10, "lightyears")
  15263. },
  15264. ]
  15265. ))
  15266. characterMakers.push(() => makeCharacter(
  15267. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15268. {
  15269. upright: {
  15270. height: math.unit(7, "feet"),
  15271. weight: math.unit(170, "lb"),
  15272. name: "Upright",
  15273. image: {
  15274. source: "./media/characters/cafat/upright.svg",
  15275. bottom: 0.01
  15276. }
  15277. },
  15278. uprightFull: {
  15279. height: math.unit(7, "feet"),
  15280. weight: math.unit(170, "lb"),
  15281. name: "Upright (Full)",
  15282. image: {
  15283. source: "./media/characters/cafat/upright-full.svg",
  15284. bottom: 0.01
  15285. }
  15286. },
  15287. side: {
  15288. height: math.unit(5, "feet"),
  15289. weight: math.unit(150, "lb"),
  15290. name: "Side",
  15291. image: {
  15292. source: "./media/characters/cafat/side.svg"
  15293. }
  15294. },
  15295. },
  15296. [
  15297. {
  15298. name: "Small",
  15299. height: math.unit(7, "feet"),
  15300. default: true
  15301. },
  15302. {
  15303. name: "Large",
  15304. height: math.unit(15.5, "feet")
  15305. },
  15306. ]
  15307. ))
  15308. characterMakers.push(() => makeCharacter(
  15309. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15310. {
  15311. front: {
  15312. height: math.unit(6, "feet"),
  15313. weight: math.unit(150, "lb"),
  15314. name: "Front",
  15315. image: {
  15316. source: "./media/characters/verin-raharra/front.svg",
  15317. extra: 5019 / 4835,
  15318. bottom: 0.023
  15319. }
  15320. },
  15321. },
  15322. [
  15323. {
  15324. name: "Normal",
  15325. height: math.unit(7 + 5 / 12, "feet"),
  15326. default: true
  15327. },
  15328. {
  15329. name: "Upsized",
  15330. height: math.unit(20, "feet")
  15331. },
  15332. ]
  15333. ))
  15334. characterMakers.push(() => makeCharacter(
  15335. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15336. {
  15337. front: {
  15338. height: math.unit(7, "feet"),
  15339. weight: math.unit(230, "lb"),
  15340. name: "Front",
  15341. image: {
  15342. source: "./media/characters/nakata/front.svg",
  15343. extra: 1.005,
  15344. bottom: 0.01
  15345. }
  15346. },
  15347. },
  15348. [
  15349. {
  15350. name: "Normal",
  15351. height: math.unit(7, "feet"),
  15352. default: true
  15353. },
  15354. {
  15355. name: "Big",
  15356. height: math.unit(14, "feet")
  15357. },
  15358. {
  15359. name: "Macro",
  15360. height: math.unit(400, "feet")
  15361. },
  15362. ]
  15363. ))
  15364. characterMakers.push(() => makeCharacter(
  15365. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15366. {
  15367. front: {
  15368. height: math.unit(4.91, "feet"),
  15369. weight: math.unit(100, "lb"),
  15370. name: "Front",
  15371. image: {
  15372. source: "./media/characters/lily/front.svg",
  15373. extra: 1585 / 1415,
  15374. bottom: 0.02
  15375. }
  15376. },
  15377. },
  15378. [
  15379. {
  15380. name: "Normal",
  15381. height: math.unit(4.91, "feet"),
  15382. default: true
  15383. },
  15384. ]
  15385. ))
  15386. characterMakers.push(() => makeCharacter(
  15387. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15388. {
  15389. laying: {
  15390. height: math.unit(4 + 4 / 12, "feet"),
  15391. weight: math.unit(600, "lb"),
  15392. name: "Laying",
  15393. image: {
  15394. source: "./media/characters/sheila/laying.svg",
  15395. extra: 1333 / 1265,
  15396. bottom: 0.16
  15397. }
  15398. },
  15399. },
  15400. [
  15401. {
  15402. name: "Normal",
  15403. height: math.unit(4 + 4 / 12, "feet"),
  15404. default: true
  15405. },
  15406. ]
  15407. ))
  15408. characterMakers.push(() => makeCharacter(
  15409. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15410. {
  15411. front: {
  15412. height: math.unit(6, "feet"),
  15413. weight: math.unit(190, "lb"),
  15414. name: "Front",
  15415. image: {
  15416. source: "./media/characters/sax/front.svg",
  15417. extra: 1187 / 973,
  15418. bottom: 0.042
  15419. }
  15420. },
  15421. },
  15422. [
  15423. {
  15424. name: "Micro",
  15425. height: math.unit(4, "inches"),
  15426. default: true
  15427. },
  15428. ]
  15429. ))
  15430. characterMakers.push(() => makeCharacter(
  15431. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15432. {
  15433. front: {
  15434. height: math.unit(6, "feet"),
  15435. weight: math.unit(150, "lb"),
  15436. name: "Front",
  15437. image: {
  15438. source: "./media/characters/pandora/front.svg",
  15439. extra: 2720 / 2556,
  15440. bottom: 0.015
  15441. }
  15442. },
  15443. back: {
  15444. height: math.unit(6, "feet"),
  15445. weight: math.unit(150, "lb"),
  15446. name: "Back",
  15447. image: {
  15448. source: "./media/characters/pandora/back.svg",
  15449. extra: 2720 / 2556,
  15450. bottom: 0.01
  15451. }
  15452. },
  15453. beans: {
  15454. height: math.unit(6 / 8, "feet"),
  15455. name: "Beans",
  15456. image: {
  15457. source: "./media/characters/pandora/beans.svg"
  15458. }
  15459. },
  15460. skirt: {
  15461. height: math.unit(6, "feet"),
  15462. weight: math.unit(150, "lb"),
  15463. name: "Skirt",
  15464. image: {
  15465. source: "./media/characters/pandora/skirt.svg",
  15466. extra: 1622 / 1525,
  15467. bottom: 0.015
  15468. }
  15469. },
  15470. hoodie: {
  15471. height: math.unit(6, "feet"),
  15472. weight: math.unit(150, "lb"),
  15473. name: "Hoodie",
  15474. image: {
  15475. source: "./media/characters/pandora/hoodie.svg",
  15476. extra: 1622 / 1525,
  15477. bottom: 0.015
  15478. }
  15479. },
  15480. casual: {
  15481. height: math.unit(6, "feet"),
  15482. weight: math.unit(150, "lb"),
  15483. name: "Casual",
  15484. image: {
  15485. source: "./media/characters/pandora/casual.svg",
  15486. extra: 1622 / 1525,
  15487. bottom: 0.015
  15488. }
  15489. },
  15490. },
  15491. [
  15492. {
  15493. name: "Normal",
  15494. height: math.unit(6, "feet")
  15495. },
  15496. {
  15497. name: "Big Steppy",
  15498. height: math.unit(1, "km"),
  15499. default: true
  15500. },
  15501. ]
  15502. ))
  15503. characterMakers.push(() => makeCharacter(
  15504. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15505. {
  15506. side: {
  15507. height: math.unit(10, "feet"),
  15508. weight: math.unit(800, "kg"),
  15509. name: "Side",
  15510. image: {
  15511. source: "./media/characters/venio-darcony/side.svg",
  15512. extra: 1373 / 1003,
  15513. bottom: 0.037
  15514. }
  15515. },
  15516. front: {
  15517. height: math.unit(19, "feet"),
  15518. weight: math.unit(800, "kg"),
  15519. name: "Front",
  15520. image: {
  15521. source: "./media/characters/venio-darcony/front.svg"
  15522. }
  15523. },
  15524. back: {
  15525. height: math.unit(19, "feet"),
  15526. weight: math.unit(800, "kg"),
  15527. name: "Back",
  15528. image: {
  15529. source: "./media/characters/venio-darcony/back.svg"
  15530. }
  15531. },
  15532. sideNsfw: {
  15533. height: math.unit(10, "feet"),
  15534. weight: math.unit(800, "kg"),
  15535. name: "Side (NSFW)",
  15536. image: {
  15537. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15538. extra: 1373 / 1003,
  15539. bottom: 0.037
  15540. }
  15541. },
  15542. frontNsfw: {
  15543. height: math.unit(19, "feet"),
  15544. weight: math.unit(800, "kg"),
  15545. name: "Front (NSFW)",
  15546. image: {
  15547. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15548. }
  15549. },
  15550. backNsfw: {
  15551. height: math.unit(19, "feet"),
  15552. weight: math.unit(800, "kg"),
  15553. name: "Back (NSFW)",
  15554. image: {
  15555. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15556. }
  15557. },
  15558. sideArmored: {
  15559. height: math.unit(10, "feet"),
  15560. weight: math.unit(800, "kg"),
  15561. name: "Side (Armored)",
  15562. image: {
  15563. source: "./media/characters/venio-darcony/side-armored.svg",
  15564. extra: 1373 / 1003,
  15565. bottom: 0.037
  15566. }
  15567. },
  15568. frontArmored: {
  15569. height: math.unit(19, "feet"),
  15570. weight: math.unit(900, "kg"),
  15571. name: "Front (Armored)",
  15572. image: {
  15573. source: "./media/characters/venio-darcony/front-armored.svg"
  15574. }
  15575. },
  15576. backArmored: {
  15577. height: math.unit(19, "feet"),
  15578. weight: math.unit(900, "kg"),
  15579. name: "Back (Armored)",
  15580. image: {
  15581. source: "./media/characters/venio-darcony/back-armored.svg"
  15582. }
  15583. },
  15584. sword: {
  15585. height: math.unit(10, "feet"),
  15586. weight: math.unit(50, "lb"),
  15587. name: "Sword",
  15588. image: {
  15589. source: "./media/characters/venio-darcony/sword.svg"
  15590. }
  15591. },
  15592. },
  15593. [
  15594. {
  15595. name: "Normal",
  15596. height: math.unit(10, "feet")
  15597. },
  15598. {
  15599. name: "Macro",
  15600. height: math.unit(130, "feet"),
  15601. default: true
  15602. },
  15603. {
  15604. name: "Macro+",
  15605. height: math.unit(240, "feet")
  15606. },
  15607. ]
  15608. ))
  15609. characterMakers.push(() => makeCharacter(
  15610. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15611. {
  15612. front: {
  15613. height: math.unit(6, "feet"),
  15614. weight: math.unit(150, "lb"),
  15615. name: "Front",
  15616. image: {
  15617. source: "./media/characters/veski/front.svg",
  15618. extra: 1299 / 1225,
  15619. bottom: 0.04
  15620. }
  15621. },
  15622. back: {
  15623. height: math.unit(6, "feet"),
  15624. weight: math.unit(150, "lb"),
  15625. name: "Back",
  15626. image: {
  15627. source: "./media/characters/veski/back.svg",
  15628. extra: 1299 / 1225,
  15629. bottom: 0.008
  15630. }
  15631. },
  15632. maw: {
  15633. height: math.unit(1.5 * 1.21, "feet"),
  15634. name: "Maw",
  15635. image: {
  15636. source: "./media/characters/veski/maw.svg"
  15637. }
  15638. },
  15639. },
  15640. [
  15641. {
  15642. name: "Macro",
  15643. height: math.unit(2, "km"),
  15644. default: true
  15645. },
  15646. ]
  15647. ))
  15648. characterMakers.push(() => makeCharacter(
  15649. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15650. {
  15651. front: {
  15652. height: math.unit(5 + 7 / 12, "feet"),
  15653. name: "Front",
  15654. image: {
  15655. source: "./media/characters/isabelle/front.svg",
  15656. extra: 2130 / 1976,
  15657. bottom: 0.05
  15658. }
  15659. },
  15660. },
  15661. [
  15662. {
  15663. name: "Supermicro",
  15664. height: math.unit(10, "micrometers")
  15665. },
  15666. {
  15667. name: "Micro",
  15668. height: math.unit(1, "inch")
  15669. },
  15670. {
  15671. name: "Tiny",
  15672. height: math.unit(5, "inches")
  15673. },
  15674. {
  15675. name: "Standard",
  15676. height: math.unit(5 + 7 / 12, "inches")
  15677. },
  15678. {
  15679. name: "Macro",
  15680. height: math.unit(80, "meters"),
  15681. default: true
  15682. },
  15683. {
  15684. name: "Megamacro",
  15685. height: math.unit(250, "meters")
  15686. },
  15687. {
  15688. name: "Gigamacro",
  15689. height: math.unit(5, "km")
  15690. },
  15691. {
  15692. name: "Cosmic",
  15693. height: math.unit(2.5e6, "miles")
  15694. },
  15695. ]
  15696. ))
  15697. characterMakers.push(() => makeCharacter(
  15698. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15699. {
  15700. front: {
  15701. height: math.unit(6, "feet"),
  15702. weight: math.unit(150, "lb"),
  15703. name: "Front",
  15704. image: {
  15705. source: "./media/characters/hanzo/front.svg",
  15706. extra: 374 / 344,
  15707. bottom: 0.02
  15708. }
  15709. },
  15710. },
  15711. [
  15712. {
  15713. name: "Normal",
  15714. height: math.unit(8, "feet"),
  15715. default: true
  15716. },
  15717. ]
  15718. ))
  15719. characterMakers.push(() => makeCharacter(
  15720. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15721. {
  15722. front: {
  15723. height: math.unit(7, "feet"),
  15724. weight: math.unit(130, "lb"),
  15725. name: "Front",
  15726. image: {
  15727. source: "./media/characters/anna/front.svg",
  15728. extra: 169 / 145,
  15729. bottom: 0.06
  15730. }
  15731. },
  15732. full: {
  15733. height: math.unit(4.96, "feet"),
  15734. weight: math.unit(220, "lb"),
  15735. name: "Full",
  15736. image: {
  15737. source: "./media/characters/anna/full.svg",
  15738. extra: 138 / 114,
  15739. bottom: 0.15
  15740. }
  15741. },
  15742. tongue: {
  15743. height: math.unit(2.53, "feet"),
  15744. name: "Tongue",
  15745. image: {
  15746. source: "./media/characters/anna/tongue.svg"
  15747. }
  15748. },
  15749. },
  15750. [
  15751. {
  15752. name: "Normal",
  15753. height: math.unit(7, "feet"),
  15754. default: true
  15755. },
  15756. ]
  15757. ))
  15758. characterMakers.push(() => makeCharacter(
  15759. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15760. {
  15761. front: {
  15762. height: math.unit(7, "feet"),
  15763. weight: math.unit(150, "lb"),
  15764. name: "Front",
  15765. image: {
  15766. source: "./media/characters/ian-corvid/front.svg",
  15767. extra: 150 / 142,
  15768. bottom: 0.02
  15769. }
  15770. },
  15771. back: {
  15772. height: math.unit(7, "feet"),
  15773. weight: math.unit(150, "lb"),
  15774. name: "Back",
  15775. image: {
  15776. source: "./media/characters/ian-corvid/back.svg",
  15777. extra: 150 / 143,
  15778. bottom: 0.01
  15779. }
  15780. },
  15781. stomping: {
  15782. height: math.unit(7, "feet"),
  15783. weight: math.unit(150, "lb"),
  15784. name: "Stomping",
  15785. image: {
  15786. source: "./media/characters/ian-corvid/stomping.svg",
  15787. extra: 76 / 72
  15788. }
  15789. },
  15790. sitting: {
  15791. height: math.unit(7 / 1.8, "feet"),
  15792. weight: math.unit(150, "lb"),
  15793. name: "Sitting",
  15794. image: {
  15795. source: "./media/characters/ian-corvid/sitting.svg",
  15796. extra: 1400 / 1269,
  15797. bottom: 0.15
  15798. }
  15799. },
  15800. },
  15801. [
  15802. {
  15803. name: "Tiny Microw",
  15804. height: math.unit(1, "inch")
  15805. },
  15806. {
  15807. name: "Microw",
  15808. height: math.unit(6, "inches")
  15809. },
  15810. {
  15811. name: "Crow",
  15812. height: math.unit(7 + 1 / 12, "feet"),
  15813. default: true
  15814. },
  15815. {
  15816. name: "Macrow",
  15817. height: math.unit(176, "feet")
  15818. },
  15819. ]
  15820. ))
  15821. characterMakers.push(() => makeCharacter(
  15822. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15823. {
  15824. front: {
  15825. height: math.unit(5 + 7 / 12, "feet"),
  15826. weight: math.unit(147, "lb"),
  15827. name: "Front",
  15828. image: {
  15829. source: "./media/characters/natalie-kellon/front.svg",
  15830. extra: 1214 / 1141,
  15831. bottom: 0.02
  15832. }
  15833. },
  15834. },
  15835. [
  15836. {
  15837. name: "Micro",
  15838. height: math.unit(1 / 16, "inch")
  15839. },
  15840. {
  15841. name: "Tiny",
  15842. height: math.unit(4, "inches")
  15843. },
  15844. {
  15845. name: "Normal",
  15846. height: math.unit(5 + 7 / 12, "feet"),
  15847. default: true
  15848. },
  15849. {
  15850. name: "Amazon",
  15851. height: math.unit(12, "feet")
  15852. },
  15853. {
  15854. name: "Giantess",
  15855. height: math.unit(160, "meters")
  15856. },
  15857. {
  15858. name: "Titaness",
  15859. height: math.unit(800, "meters")
  15860. },
  15861. ]
  15862. ))
  15863. characterMakers.push(() => makeCharacter(
  15864. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15865. {
  15866. front: {
  15867. height: math.unit(6, "feet"),
  15868. weight: math.unit(150, "lb"),
  15869. name: "Front",
  15870. image: {
  15871. source: "./media/characters/alluria/front.svg",
  15872. extra: 806 / 738,
  15873. bottom: 0.01
  15874. }
  15875. },
  15876. side: {
  15877. height: math.unit(6, "feet"),
  15878. weight: math.unit(150, "lb"),
  15879. name: "Side",
  15880. image: {
  15881. source: "./media/characters/alluria/side.svg",
  15882. extra: 800 / 750,
  15883. }
  15884. },
  15885. back: {
  15886. height: math.unit(6, "feet"),
  15887. weight: math.unit(150, "lb"),
  15888. name: "Back",
  15889. image: {
  15890. source: "./media/characters/alluria/back.svg",
  15891. extra: 806 / 738,
  15892. }
  15893. },
  15894. frontMaid: {
  15895. height: math.unit(6, "feet"),
  15896. weight: math.unit(150, "lb"),
  15897. name: "Front (Maid)",
  15898. image: {
  15899. source: "./media/characters/alluria/front-maid.svg",
  15900. extra: 806 / 738,
  15901. bottom: 0.01
  15902. }
  15903. },
  15904. sideMaid: {
  15905. height: math.unit(6, "feet"),
  15906. weight: math.unit(150, "lb"),
  15907. name: "Side (Maid)",
  15908. image: {
  15909. source: "./media/characters/alluria/side-maid.svg",
  15910. extra: 800 / 750,
  15911. bottom: 0.005
  15912. }
  15913. },
  15914. backMaid: {
  15915. height: math.unit(6, "feet"),
  15916. weight: math.unit(150, "lb"),
  15917. name: "Back (Maid)",
  15918. image: {
  15919. source: "./media/characters/alluria/back-maid.svg",
  15920. extra: 806 / 738,
  15921. }
  15922. },
  15923. },
  15924. [
  15925. {
  15926. name: "Micro",
  15927. height: math.unit(6, "inches"),
  15928. default: true
  15929. },
  15930. ]
  15931. ))
  15932. characterMakers.push(() => makeCharacter(
  15933. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15934. {
  15935. front: {
  15936. height: math.unit(6, "feet"),
  15937. weight: math.unit(150, "lb"),
  15938. name: "Front",
  15939. image: {
  15940. source: "./media/characters/kyle/front.svg",
  15941. extra: 1069 / 962,
  15942. bottom: 77.228 / 1727.45
  15943. }
  15944. },
  15945. },
  15946. [
  15947. {
  15948. name: "Macro",
  15949. height: math.unit(150, "feet"),
  15950. default: true
  15951. },
  15952. ]
  15953. ))
  15954. characterMakers.push(() => makeCharacter(
  15955. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15956. {
  15957. front: {
  15958. height: math.unit(6, "feet"),
  15959. weight: math.unit(300, "lb"),
  15960. name: "Front",
  15961. image: {
  15962. source: "./media/characters/duncan/front.svg",
  15963. extra: 1650 / 1482,
  15964. bottom: 0.05
  15965. }
  15966. },
  15967. },
  15968. [
  15969. {
  15970. name: "Macro",
  15971. height: math.unit(100, "feet"),
  15972. default: true
  15973. },
  15974. ]
  15975. ))
  15976. characterMakers.push(() => makeCharacter(
  15977. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15978. {
  15979. front: {
  15980. height: math.unit(5 + 4 / 12, "feet"),
  15981. weight: math.unit(220, "lb"),
  15982. name: "Front",
  15983. image: {
  15984. source: "./media/characters/memory/front.svg",
  15985. extra: 3641 / 3545,
  15986. bottom: 0.03
  15987. }
  15988. },
  15989. back: {
  15990. height: math.unit(5 + 4 / 12, "feet"),
  15991. weight: math.unit(220, "lb"),
  15992. name: "Back",
  15993. image: {
  15994. source: "./media/characters/memory/back.svg",
  15995. extra: 3641 / 3545,
  15996. bottom: 0.025
  15997. }
  15998. },
  15999. frontSkirt: {
  16000. height: math.unit(5 + 4 / 12, "feet"),
  16001. weight: math.unit(220, "lb"),
  16002. name: "Front (Skirt)",
  16003. image: {
  16004. source: "./media/characters/memory/front-skirt.svg",
  16005. extra: 3641 / 3545,
  16006. bottom: 0.03
  16007. }
  16008. },
  16009. frontDress: {
  16010. height: math.unit(5 + 4 / 12, "feet"),
  16011. weight: math.unit(220, "lb"),
  16012. name: "Front (Dress)",
  16013. image: {
  16014. source: "./media/characters/memory/front-dress.svg",
  16015. extra: 3641 / 3545,
  16016. bottom: 0.03
  16017. }
  16018. },
  16019. },
  16020. [
  16021. {
  16022. name: "Micro",
  16023. height: math.unit(6, "inches"),
  16024. default: true
  16025. },
  16026. {
  16027. name: "Normal",
  16028. height: math.unit(5 + 4 / 12, "feet")
  16029. },
  16030. ]
  16031. ))
  16032. characterMakers.push(() => makeCharacter(
  16033. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16034. {
  16035. front: {
  16036. height: math.unit(4 + 11 / 12, "feet"),
  16037. weight: math.unit(100, "lb"),
  16038. name: "Front",
  16039. image: {
  16040. source: "./media/characters/luno/front.svg",
  16041. extra: 1535 / 1487,
  16042. bottom: 0.03
  16043. }
  16044. },
  16045. },
  16046. [
  16047. {
  16048. name: "Micro",
  16049. height: math.unit(3, "inches")
  16050. },
  16051. {
  16052. name: "Normal",
  16053. height: math.unit(4 + 11 / 12, "feet"),
  16054. default: true
  16055. },
  16056. {
  16057. name: "Macro",
  16058. height: math.unit(300, "feet")
  16059. },
  16060. {
  16061. name: "Megamacro",
  16062. height: math.unit(700, "miles")
  16063. },
  16064. ]
  16065. ))
  16066. characterMakers.push(() => makeCharacter(
  16067. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16068. {
  16069. front: {
  16070. height: math.unit(6 + 2 / 12, "feet"),
  16071. weight: math.unit(170, "lb"),
  16072. name: "Front",
  16073. image: {
  16074. source: "./media/characters/jamesy/front.svg",
  16075. extra: 440 / 382,
  16076. bottom: 0.005
  16077. }
  16078. },
  16079. },
  16080. [
  16081. {
  16082. name: "Micro",
  16083. height: math.unit(3, "inches")
  16084. },
  16085. {
  16086. name: "Normal",
  16087. height: math.unit(6 + 2 / 12, "feet"),
  16088. default: true
  16089. },
  16090. {
  16091. name: "Macro",
  16092. height: math.unit(300, "feet")
  16093. },
  16094. {
  16095. name: "Megamacro",
  16096. height: math.unit(700, "miles")
  16097. },
  16098. ]
  16099. ))
  16100. characterMakers.push(() => makeCharacter(
  16101. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16102. {
  16103. front: {
  16104. height: math.unit(6, "feet"),
  16105. weight: math.unit(160, "lb"),
  16106. name: "Front",
  16107. image: {
  16108. source: "./media/characters/mark/front.svg",
  16109. extra: 3300 / 3100,
  16110. bottom: 136.42 / 3440.47
  16111. }
  16112. },
  16113. },
  16114. [
  16115. {
  16116. name: "Macro",
  16117. height: math.unit(120, "meters")
  16118. },
  16119. {
  16120. name: "Bigger Macro",
  16121. height: math.unit(350, "meters")
  16122. },
  16123. {
  16124. name: "Megamacro",
  16125. height: math.unit(8, "km"),
  16126. default: true
  16127. },
  16128. {
  16129. name: "Continental",
  16130. height: math.unit(4550, "km")
  16131. },
  16132. {
  16133. name: "Planetary",
  16134. height: math.unit(65000, "km")
  16135. },
  16136. ]
  16137. ))
  16138. characterMakers.push(() => makeCharacter(
  16139. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16140. {
  16141. front: {
  16142. height: math.unit(6, "feet"),
  16143. weight: math.unit(400, "lb"),
  16144. name: "Front",
  16145. image: {
  16146. source: "./media/characters/mac/front.svg",
  16147. extra: 1048 / 987.7,
  16148. bottom: 60 / 1107.6,
  16149. }
  16150. },
  16151. },
  16152. [
  16153. {
  16154. name: "Macro",
  16155. height: math.unit(500, "feet"),
  16156. default: true
  16157. },
  16158. ]
  16159. ))
  16160. characterMakers.push(() => makeCharacter(
  16161. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16162. {
  16163. front: {
  16164. height: math.unit(5 + 2 / 12, "feet"),
  16165. weight: math.unit(190, "lb"),
  16166. name: "Front",
  16167. image: {
  16168. source: "./media/characters/bari/front.svg",
  16169. extra: 3156 / 2880,
  16170. bottom: 0.03
  16171. }
  16172. },
  16173. back: {
  16174. height: math.unit(5 + 2 / 12, "feet"),
  16175. weight: math.unit(190, "lb"),
  16176. name: "Back",
  16177. image: {
  16178. source: "./media/characters/bari/back.svg",
  16179. extra: 3260 / 2834,
  16180. bottom: 0.025
  16181. }
  16182. },
  16183. frontPlush: {
  16184. height: math.unit(5 + 2 / 12, "feet"),
  16185. weight: math.unit(190, "lb"),
  16186. name: "Front (Plush)",
  16187. image: {
  16188. source: "./media/characters/bari/front-plush.svg",
  16189. extra: 1112 / 1061,
  16190. bottom: 0.002
  16191. }
  16192. },
  16193. },
  16194. [
  16195. {
  16196. name: "Micro",
  16197. height: math.unit(3, "inches")
  16198. },
  16199. {
  16200. name: "Normal",
  16201. height: math.unit(5 + 2 / 12, "feet"),
  16202. default: true
  16203. },
  16204. {
  16205. name: "Macro",
  16206. height: math.unit(20, "feet")
  16207. },
  16208. ]
  16209. ))
  16210. characterMakers.push(() => makeCharacter(
  16211. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16212. {
  16213. front: {
  16214. height: math.unit(6 + 1 / 12, "feet"),
  16215. weight: math.unit(275, "lb"),
  16216. name: "Front",
  16217. image: {
  16218. source: "./media/characters/hunter-misha-raven/front.svg"
  16219. }
  16220. },
  16221. },
  16222. [
  16223. {
  16224. name: "Mortal",
  16225. height: math.unit(6 + 1 / 12, "feet")
  16226. },
  16227. {
  16228. name: "Divine",
  16229. height: math.unit(1.12134e34, "parsecs"),
  16230. default: true
  16231. },
  16232. ]
  16233. ))
  16234. characterMakers.push(() => makeCharacter(
  16235. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16236. {
  16237. front: {
  16238. height: math.unit(6 + 3 / 12, "feet"),
  16239. weight: math.unit(220, "lb"),
  16240. name: "Front",
  16241. image: {
  16242. source: "./media/characters/max-calore/front.svg",
  16243. extra: 1700 / 1648,
  16244. bottom: 0.01
  16245. }
  16246. },
  16247. back: {
  16248. height: math.unit(6 + 3 / 12, "feet"),
  16249. weight: math.unit(220, "lb"),
  16250. name: "Back",
  16251. image: {
  16252. source: "./media/characters/max-calore/back.svg",
  16253. extra: 1700 / 1648,
  16254. bottom: 0.01
  16255. }
  16256. },
  16257. },
  16258. [
  16259. {
  16260. name: "Normal",
  16261. height: math.unit(6 + 3 / 12, "feet"),
  16262. default: true
  16263. },
  16264. ]
  16265. ))
  16266. characterMakers.push(() => makeCharacter(
  16267. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16268. {
  16269. side: {
  16270. height: math.unit(2 + 8 / 12, "feet"),
  16271. weight: math.unit(99, "lb"),
  16272. name: "Side",
  16273. image: {
  16274. source: "./media/characters/aspen/side.svg",
  16275. extra: 152 / 138,
  16276. bottom: 0.032
  16277. }
  16278. },
  16279. },
  16280. [
  16281. {
  16282. name: "Normal",
  16283. height: math.unit(2 + 8 / 12, "feet"),
  16284. default: true
  16285. },
  16286. ]
  16287. ))
  16288. characterMakers.push(() => makeCharacter(
  16289. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16290. {
  16291. side: {
  16292. height: math.unit(3 + 2 / 12, "feet"),
  16293. weight: math.unit(224, "lb"),
  16294. name: "Side",
  16295. image: {
  16296. source: "./media/characters/sheila-feral-wolf/side.svg",
  16297. extra: 179 / 166,
  16298. bottom: 0.03
  16299. }
  16300. },
  16301. },
  16302. [
  16303. {
  16304. name: "Normal",
  16305. height: math.unit(3 + 2 / 12, "feet"),
  16306. default: true
  16307. },
  16308. ]
  16309. ))
  16310. characterMakers.push(() => makeCharacter(
  16311. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16312. {
  16313. side: {
  16314. height: math.unit(1 + 9 / 12, "feet"),
  16315. weight: math.unit(38, "lb"),
  16316. name: "Side",
  16317. image: {
  16318. source: "./media/characters/michelle/side.svg",
  16319. extra: 147 / 136.7,
  16320. bottom: 0.03
  16321. }
  16322. },
  16323. },
  16324. [
  16325. {
  16326. name: "Normal",
  16327. height: math.unit(1 + 9 / 12, "feet"),
  16328. default: true
  16329. },
  16330. ]
  16331. ))
  16332. characterMakers.push(() => makeCharacter(
  16333. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16334. {
  16335. front: {
  16336. height: math.unit(1 + 1 / 12, "feet"),
  16337. weight: math.unit(18, "lb"),
  16338. name: "Front",
  16339. image: {
  16340. source: "./media/characters/nino/front.svg"
  16341. }
  16342. },
  16343. },
  16344. [
  16345. {
  16346. name: "Normal",
  16347. height: math.unit(1 + 1 / 12, "feet"),
  16348. default: true
  16349. },
  16350. ]
  16351. ))
  16352. characterMakers.push(() => makeCharacter(
  16353. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16354. {
  16355. front: {
  16356. height: math.unit(1, "feet"),
  16357. weight: math.unit(16, "lb"),
  16358. name: "Front",
  16359. image: {
  16360. source: "./media/characters/viola/front.svg"
  16361. }
  16362. },
  16363. },
  16364. [
  16365. {
  16366. name: "Normal",
  16367. height: math.unit(1, "feet"),
  16368. default: true
  16369. },
  16370. ]
  16371. ))
  16372. characterMakers.push(() => makeCharacter(
  16373. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16374. {
  16375. front: {
  16376. height: math.unit(6 + 5 / 12, "feet"),
  16377. weight: math.unit(580, "lb"),
  16378. name: "Front",
  16379. image: {
  16380. source: "./media/characters/atlas/front.svg",
  16381. extra: 298.5 / 290,
  16382. bottom: 0.015
  16383. }
  16384. },
  16385. },
  16386. [
  16387. {
  16388. name: "Normal",
  16389. height: math.unit(6 + 5 / 12, "feet"),
  16390. default: true
  16391. },
  16392. ]
  16393. ))
  16394. characterMakers.push(() => makeCharacter(
  16395. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16396. {
  16397. side: {
  16398. height: math.unit(1 + 10 / 12, "feet"),
  16399. weight: math.unit(25, "lb"),
  16400. name: "Side",
  16401. image: {
  16402. source: "./media/characters/davy/side.svg",
  16403. extra: 200 / 170,
  16404. bottom: 0.01
  16405. }
  16406. },
  16407. },
  16408. [
  16409. {
  16410. name: "Normal",
  16411. height: math.unit(1 + 10 / 12, "feet"),
  16412. default: true
  16413. },
  16414. ]
  16415. ))
  16416. characterMakers.push(() => makeCharacter(
  16417. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16418. {
  16419. side: {
  16420. height: math.unit(4 + 8 / 12, "feet"),
  16421. weight: math.unit(166, "lb"),
  16422. name: "Side",
  16423. image: {
  16424. source: "./media/characters/fiona/side.svg",
  16425. extra: 232 / 220,
  16426. bottom: 0.03
  16427. }
  16428. },
  16429. },
  16430. [
  16431. {
  16432. name: "Normal",
  16433. height: math.unit(4 + 8 / 12, "feet"),
  16434. default: true
  16435. },
  16436. ]
  16437. ))
  16438. characterMakers.push(() => makeCharacter(
  16439. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16440. {
  16441. front: {
  16442. height: math.unit(2, "feet"),
  16443. weight: math.unit(62, "lb"),
  16444. name: "Front",
  16445. image: {
  16446. source: "./media/characters/lyla/front.svg",
  16447. bottom: 0.1
  16448. }
  16449. },
  16450. },
  16451. [
  16452. {
  16453. name: "Normal",
  16454. height: math.unit(2, "feet"),
  16455. default: true
  16456. },
  16457. ]
  16458. ))
  16459. characterMakers.push(() => makeCharacter(
  16460. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16461. {
  16462. side: {
  16463. height: math.unit(1.8, "feet"),
  16464. weight: math.unit(44, "lb"),
  16465. name: "Side",
  16466. image: {
  16467. source: "./media/characters/perseus/side.svg",
  16468. bottom: 0.21
  16469. }
  16470. },
  16471. },
  16472. [
  16473. {
  16474. name: "Normal",
  16475. height: math.unit(1.8, "feet"),
  16476. default: true
  16477. },
  16478. ]
  16479. ))
  16480. characterMakers.push(() => makeCharacter(
  16481. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16482. {
  16483. side: {
  16484. height: math.unit(4 + 2 / 12, "feet"),
  16485. weight: math.unit(20, "lb"),
  16486. name: "Side",
  16487. image: {
  16488. source: "./media/characters/remus/side.svg"
  16489. }
  16490. },
  16491. },
  16492. [
  16493. {
  16494. name: "Normal",
  16495. height: math.unit(4 + 2 / 12, "feet"),
  16496. default: true
  16497. },
  16498. ]
  16499. ))
  16500. characterMakers.push(() => makeCharacter(
  16501. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16502. {
  16503. front: {
  16504. height: math.unit(4 + 11 / 12, "feet"),
  16505. weight: math.unit(114, "lb"),
  16506. name: "Front",
  16507. image: {
  16508. source: "./media/characters/raf/front.svg",
  16509. bottom: 20.5 / 1863
  16510. }
  16511. },
  16512. side: {
  16513. height: math.unit(4 + 11 / 12, "feet"),
  16514. weight: math.unit(114, "lb"),
  16515. name: "Side",
  16516. image: {
  16517. source: "./media/characters/raf/side.svg",
  16518. bottom: 22 / 1822
  16519. }
  16520. },
  16521. },
  16522. [
  16523. {
  16524. name: "Micro",
  16525. height: math.unit(2, "inches")
  16526. },
  16527. {
  16528. name: "Normal",
  16529. height: math.unit(4 + 11 / 12, "feet"),
  16530. default: true
  16531. },
  16532. {
  16533. name: "Macro",
  16534. height: math.unit(70, "feet")
  16535. },
  16536. ]
  16537. ))
  16538. characterMakers.push(() => makeCharacter(
  16539. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16540. {
  16541. front: {
  16542. height: math.unit(1.5, "meters"),
  16543. weight: math.unit(68, "kg"),
  16544. name: "Front",
  16545. image: {
  16546. source: "./media/characters/liam-einarr/front.svg",
  16547. extra: 2822 / 2666
  16548. }
  16549. },
  16550. back: {
  16551. height: math.unit(1.5, "meters"),
  16552. weight: math.unit(68, "kg"),
  16553. name: "Back",
  16554. image: {
  16555. source: "./media/characters/liam-einarr/back.svg",
  16556. extra: 2822 / 2666,
  16557. bottom: 0.015
  16558. }
  16559. },
  16560. },
  16561. [
  16562. {
  16563. name: "Normal",
  16564. height: math.unit(1.5, "meters"),
  16565. default: true
  16566. },
  16567. {
  16568. name: "Macro",
  16569. height: math.unit(150, "meters")
  16570. },
  16571. {
  16572. name: "Megamacro",
  16573. height: math.unit(35, "km")
  16574. },
  16575. ]
  16576. ))
  16577. characterMakers.push(() => makeCharacter(
  16578. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16579. {
  16580. front: {
  16581. height: math.unit(6, "feet"),
  16582. weight: math.unit(75, "kg"),
  16583. name: "Front",
  16584. image: {
  16585. source: "./media/characters/linda/front.svg",
  16586. extra: 930 / 874,
  16587. bottom: 0.004
  16588. }
  16589. },
  16590. },
  16591. [
  16592. {
  16593. name: "Normal",
  16594. height: math.unit(6, "feet"),
  16595. default: true
  16596. },
  16597. ]
  16598. ))
  16599. characterMakers.push(() => makeCharacter(
  16600. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16601. {
  16602. front: {
  16603. height: math.unit(6 + 8 / 12, "feet"),
  16604. weight: math.unit(220, "lb"),
  16605. name: "Front",
  16606. image: {
  16607. source: "./media/characters/caylex/front.svg",
  16608. extra: 821 / 772,
  16609. bottom: 0.07
  16610. }
  16611. },
  16612. back: {
  16613. height: math.unit(6 + 8 / 12, "feet"),
  16614. weight: math.unit(220, "lb"),
  16615. name: "Back",
  16616. image: {
  16617. source: "./media/characters/caylex/back.svg",
  16618. extra: 821 / 772,
  16619. bottom: 0.022
  16620. }
  16621. },
  16622. hand: {
  16623. height: math.unit(1.25, "feet"),
  16624. name: "Hand",
  16625. image: {
  16626. source: "./media/characters/caylex/hand.svg"
  16627. }
  16628. },
  16629. foot: {
  16630. height: math.unit(1.6, "feet"),
  16631. name: "Foot",
  16632. image: {
  16633. source: "./media/characters/caylex/foot.svg"
  16634. }
  16635. },
  16636. armored: {
  16637. height: math.unit(6 + 8 / 12, "feet"),
  16638. weight: math.unit(250, "lb"),
  16639. name: "Armored",
  16640. image: {
  16641. source: "./media/characters/caylex/armored.svg",
  16642. extra: 1420 / 1310,
  16643. bottom: 0.045
  16644. }
  16645. },
  16646. },
  16647. [
  16648. {
  16649. name: "Normal",
  16650. height: math.unit(6 + 8 / 12, "feet"),
  16651. default: true
  16652. },
  16653. {
  16654. name: "Normal+",
  16655. height: math.unit(12, "feet")
  16656. },
  16657. ]
  16658. ))
  16659. characterMakers.push(() => makeCharacter(
  16660. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16661. {
  16662. front: {
  16663. height: math.unit(7 + 6 / 12, "feet"),
  16664. weight: math.unit(288, "lb"),
  16665. name: "Front",
  16666. image: {
  16667. source: "./media/characters/alana/front.svg",
  16668. extra: 679 / 653,
  16669. bottom: 22.5 / 701
  16670. }
  16671. },
  16672. },
  16673. [
  16674. {
  16675. name: "Normal",
  16676. height: math.unit(7 + 6 / 12, "feet")
  16677. },
  16678. {
  16679. name: "Large",
  16680. height: math.unit(50, "feet")
  16681. },
  16682. {
  16683. name: "Macro",
  16684. height: math.unit(100, "feet"),
  16685. default: true
  16686. },
  16687. {
  16688. name: "Macro+",
  16689. height: math.unit(200, "feet")
  16690. },
  16691. ]
  16692. ))
  16693. characterMakers.push(() => makeCharacter(
  16694. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16695. {
  16696. front: {
  16697. height: math.unit(6 + 1 / 12, "feet"),
  16698. weight: math.unit(210, "lb"),
  16699. name: "Front",
  16700. image: {
  16701. source: "./media/characters/hasani/front.svg",
  16702. extra: 244 / 232,
  16703. bottom: 0.01
  16704. }
  16705. },
  16706. back: {
  16707. height: math.unit(6 + 1 / 12, "feet"),
  16708. weight: math.unit(210, "lb"),
  16709. name: "Back",
  16710. image: {
  16711. source: "./media/characters/hasani/back.svg",
  16712. extra: 244 / 232,
  16713. bottom: 0.01
  16714. }
  16715. },
  16716. },
  16717. [
  16718. {
  16719. name: "Normal",
  16720. height: math.unit(6 + 1 / 12, "feet")
  16721. },
  16722. {
  16723. name: "Macro",
  16724. height: math.unit(175, "feet"),
  16725. default: true
  16726. },
  16727. ]
  16728. ))
  16729. characterMakers.push(() => makeCharacter(
  16730. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16731. {
  16732. front: {
  16733. height: math.unit(1.82, "meters"),
  16734. weight: math.unit(140, "lb"),
  16735. name: "Front",
  16736. image: {
  16737. source: "./media/characters/nita/front.svg",
  16738. extra: 2473 / 2363,
  16739. bottom: 0.01
  16740. }
  16741. },
  16742. },
  16743. [
  16744. {
  16745. name: "Normal",
  16746. height: math.unit(1.82, "m")
  16747. },
  16748. {
  16749. name: "Macro",
  16750. height: math.unit(300, "m")
  16751. },
  16752. {
  16753. name: "Mistake Canon",
  16754. height: math.unit(0.5, "miles"),
  16755. default: true
  16756. },
  16757. {
  16758. name: "Big Mistake",
  16759. height: math.unit(13, "miles")
  16760. },
  16761. {
  16762. name: "Playing God",
  16763. height: math.unit(2450, "miles")
  16764. },
  16765. ]
  16766. ))
  16767. characterMakers.push(() => makeCharacter(
  16768. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16769. {
  16770. front: {
  16771. height: math.unit(4, "feet"),
  16772. weight: math.unit(120, "lb"),
  16773. name: "Front",
  16774. image: {
  16775. source: "./media/characters/shiriko/front.svg",
  16776. extra: 195 / 188
  16777. }
  16778. },
  16779. },
  16780. [
  16781. {
  16782. name: "Normal",
  16783. height: math.unit(4, "feet"),
  16784. default: true
  16785. },
  16786. ]
  16787. ))
  16788. characterMakers.push(() => makeCharacter(
  16789. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16790. {
  16791. front: {
  16792. height: math.unit(6, "feet"),
  16793. name: "front",
  16794. image: {
  16795. source: "./media/characters/deja/front.svg",
  16796. extra: 926 / 840,
  16797. bottom: 0.07
  16798. }
  16799. },
  16800. },
  16801. [
  16802. {
  16803. name: "Planck Length",
  16804. height: math.unit(1.6e-35, "meters")
  16805. },
  16806. {
  16807. name: "Normal",
  16808. height: math.unit(30.48, "meters"),
  16809. default: true
  16810. },
  16811. {
  16812. name: "Universal",
  16813. height: math.unit(8.8e26, "meters")
  16814. },
  16815. ]
  16816. ))
  16817. characterMakers.push(() => makeCharacter(
  16818. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16819. {
  16820. side: {
  16821. height: math.unit(8, "feet"),
  16822. weight: math.unit(6300, "lb"),
  16823. name: "Side",
  16824. image: {
  16825. source: "./media/characters/anima/side.svg",
  16826. bottom: 0.035
  16827. }
  16828. },
  16829. },
  16830. [
  16831. {
  16832. name: "Normal",
  16833. height: math.unit(8, "feet"),
  16834. default: true
  16835. },
  16836. ]
  16837. ))
  16838. characterMakers.push(() => makeCharacter(
  16839. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16840. {
  16841. front: {
  16842. height: math.unit(8, "feet"),
  16843. weight: math.unit(350, "lb"),
  16844. name: "Front",
  16845. image: {
  16846. source: "./media/characters/bianca/front.svg",
  16847. extra: 234 / 225,
  16848. bottom: 0.03
  16849. }
  16850. },
  16851. },
  16852. [
  16853. {
  16854. name: "Normal",
  16855. height: math.unit(8, "feet"),
  16856. default: true
  16857. },
  16858. ]
  16859. ))
  16860. characterMakers.push(() => makeCharacter(
  16861. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16862. {
  16863. front: {
  16864. height: math.unit(6, "feet"),
  16865. weight: math.unit(150, "lb"),
  16866. name: "Front",
  16867. image: {
  16868. source: "./media/characters/adinia/front.svg",
  16869. extra: 1845 / 1672,
  16870. bottom: 0.02
  16871. }
  16872. },
  16873. back: {
  16874. height: math.unit(6, "feet"),
  16875. weight: math.unit(150, "lb"),
  16876. name: "Back",
  16877. image: {
  16878. source: "./media/characters/adinia/back.svg",
  16879. extra: 1845 / 1672,
  16880. bottom: 0.002
  16881. }
  16882. },
  16883. },
  16884. [
  16885. {
  16886. name: "Normal",
  16887. height: math.unit(11 + 5 / 12, "feet"),
  16888. default: true
  16889. },
  16890. ]
  16891. ))
  16892. characterMakers.push(() => makeCharacter(
  16893. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16894. {
  16895. front: {
  16896. height: math.unit(3, "meters"),
  16897. weight: math.unit(200, "kg"),
  16898. name: "Front",
  16899. image: {
  16900. source: "./media/characters/lykasa/front.svg",
  16901. extra: 1076 / 976,
  16902. bottom: 0.06
  16903. }
  16904. },
  16905. },
  16906. [
  16907. {
  16908. name: "Normal",
  16909. height: math.unit(3, "meters")
  16910. },
  16911. {
  16912. name: "Kaiju",
  16913. height: math.unit(120, "meters"),
  16914. default: true
  16915. },
  16916. {
  16917. name: "Mega Kaiju",
  16918. height: math.unit(240, "km")
  16919. },
  16920. {
  16921. name: "Giga Kaiju",
  16922. height: math.unit(400, "megameters")
  16923. },
  16924. {
  16925. name: "Tera Kaiju",
  16926. height: math.unit(800, "gigameters")
  16927. },
  16928. {
  16929. name: "Kaiju Dragon Goddess",
  16930. height: math.unit(26, "zettaparsecs")
  16931. },
  16932. ]
  16933. ))
  16934. characterMakers.push(() => makeCharacter(
  16935. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16936. {
  16937. side: {
  16938. height: math.unit(283 / 124 * 6, "feet"),
  16939. weight: math.unit(35000, "lb"),
  16940. name: "Side",
  16941. image: {
  16942. source: "./media/characters/malfaren/side.svg",
  16943. extra: 2500 / 1010,
  16944. bottom: 0.01
  16945. }
  16946. },
  16947. front: {
  16948. height: math.unit(22.36, "feet"),
  16949. weight: math.unit(35000, "lb"),
  16950. name: "Front",
  16951. image: {
  16952. source: "./media/characters/malfaren/front.svg",
  16953. extra: 1631 / 1476,
  16954. bottom: 0.01
  16955. }
  16956. },
  16957. maw: {
  16958. height: math.unit(6.9, "feet"),
  16959. name: "Maw",
  16960. image: {
  16961. source: "./media/characters/malfaren/maw.svg"
  16962. }
  16963. },
  16964. },
  16965. [
  16966. {
  16967. name: "Big",
  16968. height: math.unit(283 / 162 * 6, "feet"),
  16969. },
  16970. {
  16971. name: "Bigger",
  16972. height: math.unit(283 / 124 * 6, "feet")
  16973. },
  16974. {
  16975. name: "Massive",
  16976. height: math.unit(283 / 92 * 6, "feet"),
  16977. default: true
  16978. },
  16979. {
  16980. name: "👀💦",
  16981. height: math.unit(283 / 73 * 6, "feet"),
  16982. },
  16983. ]
  16984. ))
  16985. characterMakers.push(() => makeCharacter(
  16986. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16987. {
  16988. front: {
  16989. height: math.unit(1.7, "m"),
  16990. weight: math.unit(70, "kg"),
  16991. name: "Front",
  16992. image: {
  16993. source: "./media/characters/kernel/front.svg",
  16994. extra: 222 / 210,
  16995. bottom: 0.007
  16996. }
  16997. },
  16998. },
  16999. [
  17000. {
  17001. name: "Nano",
  17002. height: math.unit(17, "micrometers")
  17003. },
  17004. {
  17005. name: "Micro",
  17006. height: math.unit(1.7, "mm")
  17007. },
  17008. {
  17009. name: "Small",
  17010. height: math.unit(1.7, "cm")
  17011. },
  17012. {
  17013. name: "Normal",
  17014. height: math.unit(1.7, "m"),
  17015. default: true
  17016. },
  17017. ]
  17018. ))
  17019. characterMakers.push(() => makeCharacter(
  17020. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17021. {
  17022. front: {
  17023. height: math.unit(1.75, "meters"),
  17024. weight: math.unit(65, "kg"),
  17025. name: "Front",
  17026. image: {
  17027. source: "./media/characters/jayne-folest/front.svg",
  17028. extra: 2115 / 2007,
  17029. bottom: 0.02
  17030. }
  17031. },
  17032. back: {
  17033. height: math.unit(1.75, "meters"),
  17034. weight: math.unit(65, "kg"),
  17035. name: "Back",
  17036. image: {
  17037. source: "./media/characters/jayne-folest/back.svg",
  17038. extra: 2115 / 2007,
  17039. bottom: 0.005
  17040. }
  17041. },
  17042. frontClothed: {
  17043. height: math.unit(1.75, "meters"),
  17044. weight: math.unit(65, "kg"),
  17045. name: "Front (Clothed)",
  17046. image: {
  17047. source: "./media/characters/jayne-folest/front-clothed.svg",
  17048. extra: 2115 / 2007,
  17049. bottom: 0.035
  17050. }
  17051. },
  17052. hand: {
  17053. height: math.unit(1 / 1.260, "feet"),
  17054. name: "Hand",
  17055. image: {
  17056. source: "./media/characters/jayne-folest/hand.svg"
  17057. }
  17058. },
  17059. foot: {
  17060. height: math.unit(1 / 0.918, "feet"),
  17061. name: "Foot",
  17062. image: {
  17063. source: "./media/characters/jayne-folest/foot.svg"
  17064. }
  17065. },
  17066. },
  17067. [
  17068. {
  17069. name: "Micro",
  17070. height: math.unit(4, "cm")
  17071. },
  17072. {
  17073. name: "Normal",
  17074. height: math.unit(1.75, "meters")
  17075. },
  17076. {
  17077. name: "Macro",
  17078. height: math.unit(47.5, "meters"),
  17079. default: true
  17080. },
  17081. ]
  17082. ))
  17083. characterMakers.push(() => makeCharacter(
  17084. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17085. {
  17086. front: {
  17087. height: math.unit(180, "cm"),
  17088. weight: math.unit(70, "kg"),
  17089. name: "Front",
  17090. image: {
  17091. source: "./media/characters/algier/front.svg",
  17092. extra: 596 / 572,
  17093. bottom: 0.04
  17094. }
  17095. },
  17096. back: {
  17097. height: math.unit(180, "cm"),
  17098. weight: math.unit(70, "kg"),
  17099. name: "Back",
  17100. image: {
  17101. source: "./media/characters/algier/back.svg",
  17102. extra: 596 / 572,
  17103. bottom: 0.025
  17104. }
  17105. },
  17106. frontdressed: {
  17107. height: math.unit(180, "cm"),
  17108. weight: math.unit(150, "kg"),
  17109. name: "Front-dressed",
  17110. image: {
  17111. source: "./media/characters/algier/front-dressed.svg",
  17112. extra: 596 / 572,
  17113. bottom: 0.038
  17114. }
  17115. },
  17116. },
  17117. [
  17118. {
  17119. name: "Micro",
  17120. height: math.unit(5, "cm")
  17121. },
  17122. {
  17123. name: "Normal",
  17124. height: math.unit(180, "cm"),
  17125. default: true
  17126. },
  17127. {
  17128. name: "Macro",
  17129. height: math.unit(64, "m")
  17130. },
  17131. ]
  17132. ))
  17133. characterMakers.push(() => makeCharacter(
  17134. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17135. {
  17136. upright: {
  17137. height: math.unit(7, "feet"),
  17138. weight: math.unit(300, "lb"),
  17139. name: "Upright",
  17140. image: {
  17141. source: "./media/characters/pretzel/upright.svg",
  17142. extra: 534 / 522,
  17143. bottom: 0.065
  17144. }
  17145. },
  17146. sprawling: {
  17147. height: math.unit(3.75, "feet"),
  17148. weight: math.unit(300, "lb"),
  17149. name: "Sprawling",
  17150. image: {
  17151. source: "./media/characters/pretzel/sprawling.svg",
  17152. extra: 314 / 281,
  17153. bottom: 0.1
  17154. }
  17155. },
  17156. tongue: {
  17157. height: math.unit(2, "feet"),
  17158. name: "Tongue",
  17159. image: {
  17160. source: "./media/characters/pretzel/tongue.svg"
  17161. }
  17162. },
  17163. },
  17164. [
  17165. {
  17166. name: "Normal",
  17167. height: math.unit(7, "feet"),
  17168. default: true
  17169. },
  17170. {
  17171. name: "Oversized",
  17172. height: math.unit(15, "feet")
  17173. },
  17174. {
  17175. name: "Huge",
  17176. height: math.unit(30, "feet")
  17177. },
  17178. {
  17179. name: "Macro",
  17180. height: math.unit(250, "feet")
  17181. },
  17182. ]
  17183. ))
  17184. characterMakers.push(() => makeCharacter(
  17185. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17186. {
  17187. sideFront: {
  17188. height: math.unit(5 + 2 / 12, "feet"),
  17189. weight: math.unit(120, "lb"),
  17190. name: "Front Side",
  17191. image: {
  17192. source: "./media/characters/roxi/side-front.svg",
  17193. extra: 2924 / 2717,
  17194. bottom: 0.08
  17195. }
  17196. },
  17197. sideBack: {
  17198. height: math.unit(5 + 2 / 12, "feet"),
  17199. weight: math.unit(120, "lb"),
  17200. name: "Back Side",
  17201. image: {
  17202. source: "./media/characters/roxi/side-back.svg",
  17203. extra: 2904 / 2693,
  17204. bottom: 0.06
  17205. }
  17206. },
  17207. front: {
  17208. height: math.unit(5 + 2 / 12, "feet"),
  17209. weight: math.unit(120, "lb"),
  17210. name: "Front",
  17211. image: {
  17212. source: "./media/characters/roxi/front.svg",
  17213. extra: 2028 / 1907,
  17214. bottom: 0.01
  17215. }
  17216. },
  17217. frontAlt: {
  17218. height: math.unit(5 + 2 / 12, "feet"),
  17219. weight: math.unit(120, "lb"),
  17220. name: "Front (Alt)",
  17221. image: {
  17222. source: "./media/characters/roxi/front-alt.svg",
  17223. extra: 1828 / 1798,
  17224. bottom: 0.01
  17225. }
  17226. },
  17227. sitting: {
  17228. height: math.unit(2.8, "feet"),
  17229. weight: math.unit(120, "lb"),
  17230. name: "Sitting",
  17231. image: {
  17232. source: "./media/characters/roxi/sitting.svg",
  17233. extra: 2660 / 2462,
  17234. bottom: 0.1
  17235. }
  17236. },
  17237. },
  17238. [
  17239. {
  17240. name: "Normal",
  17241. height: math.unit(5 + 2 / 12, "feet"),
  17242. default: true
  17243. },
  17244. ]
  17245. ))
  17246. characterMakers.push(() => makeCharacter(
  17247. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17248. {
  17249. side: {
  17250. height: math.unit(55, "feet"),
  17251. weight: math.unit(153, "tons"),
  17252. name: "Side",
  17253. image: {
  17254. source: "./media/characters/shadow/side.svg",
  17255. extra: 701 / 628,
  17256. bottom: 0.02
  17257. }
  17258. },
  17259. flying: {
  17260. height: math.unit(145, "feet"),
  17261. weight: math.unit(153, "tons"),
  17262. name: "Flying",
  17263. image: {
  17264. source: "./media/characters/shadow/flying.svg"
  17265. }
  17266. },
  17267. },
  17268. [
  17269. {
  17270. name: "Normal",
  17271. height: math.unit(55, "feet"),
  17272. default: true
  17273. },
  17274. ]
  17275. ))
  17276. characterMakers.push(() => makeCharacter(
  17277. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17278. {
  17279. front: {
  17280. height: math.unit(6, "feet"),
  17281. weight: math.unit(200, "lb"),
  17282. name: "Front",
  17283. image: {
  17284. source: "./media/characters/marcie/front.svg",
  17285. extra: 960 / 876,
  17286. bottom: 58 / 1017.87
  17287. }
  17288. },
  17289. },
  17290. [
  17291. {
  17292. name: "Macro",
  17293. height: math.unit(1, "mile"),
  17294. default: true
  17295. },
  17296. ]
  17297. ))
  17298. characterMakers.push(() => makeCharacter(
  17299. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17300. {
  17301. front: {
  17302. height: math.unit(7, "feet"),
  17303. weight: math.unit(200, "lb"),
  17304. name: "Front",
  17305. image: {
  17306. source: "./media/characters/kachina/front.svg",
  17307. extra: 1290.68 / 1119,
  17308. bottom: 36.5 / 1327.18
  17309. }
  17310. },
  17311. },
  17312. [
  17313. {
  17314. name: "Normal",
  17315. height: math.unit(7, "feet"),
  17316. default: true
  17317. },
  17318. ]
  17319. ))
  17320. characterMakers.push(() => makeCharacter(
  17321. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17322. {
  17323. looking: {
  17324. height: math.unit(2, "meters"),
  17325. weight: math.unit(300, "kg"),
  17326. name: "Looking",
  17327. image: {
  17328. source: "./media/characters/kash/looking.svg",
  17329. extra: 474 / 344,
  17330. bottom: 0.03
  17331. }
  17332. },
  17333. side: {
  17334. height: math.unit(2, "meters"),
  17335. weight: math.unit(300, "kg"),
  17336. name: "Side",
  17337. image: {
  17338. source: "./media/characters/kash/side.svg",
  17339. extra: 302 / 251,
  17340. bottom: 0.03
  17341. }
  17342. },
  17343. front: {
  17344. height: math.unit(2, "meters"),
  17345. weight: math.unit(300, "kg"),
  17346. name: "Front",
  17347. image: {
  17348. source: "./media/characters/kash/front.svg",
  17349. extra: 495 / 360,
  17350. bottom: 0.015
  17351. }
  17352. },
  17353. },
  17354. [
  17355. {
  17356. name: "Normal",
  17357. height: math.unit(2, "meters"),
  17358. default: true
  17359. },
  17360. {
  17361. name: "Big",
  17362. height: math.unit(3, "meters")
  17363. },
  17364. {
  17365. name: "Large",
  17366. height: math.unit(5, "meters")
  17367. },
  17368. ]
  17369. ))
  17370. characterMakers.push(() => makeCharacter(
  17371. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17372. {
  17373. feeding: {
  17374. height: math.unit(6.7, "feet"),
  17375. weight: math.unit(350, "lb"),
  17376. name: "Feeding",
  17377. image: {
  17378. source: "./media/characters/lalim/feeding.svg",
  17379. }
  17380. },
  17381. },
  17382. [
  17383. {
  17384. name: "Normal",
  17385. height: math.unit(6.7, "feet"),
  17386. default: true
  17387. },
  17388. ]
  17389. ))
  17390. characterMakers.push(() => makeCharacter(
  17391. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17392. {
  17393. front: {
  17394. height: math.unit(9.5, "feet"),
  17395. weight: math.unit(600, "lb"),
  17396. name: "Front",
  17397. image: {
  17398. source: "./media/characters/de'vout/front.svg",
  17399. extra: 1443 / 1328,
  17400. bottom: 0.025
  17401. }
  17402. },
  17403. back: {
  17404. height: math.unit(9.5, "feet"),
  17405. weight: math.unit(600, "lb"),
  17406. name: "Back",
  17407. image: {
  17408. source: "./media/characters/de'vout/back.svg",
  17409. extra: 1443 / 1328
  17410. }
  17411. },
  17412. frontDressed: {
  17413. height: math.unit(9.5, "feet"),
  17414. weight: math.unit(600, "lb"),
  17415. name: "Front (Dressed",
  17416. image: {
  17417. source: "./media/characters/de'vout/front-dressed.svg",
  17418. extra: 1443 / 1328,
  17419. bottom: 0.025
  17420. }
  17421. },
  17422. backDressed: {
  17423. height: math.unit(9.5, "feet"),
  17424. weight: math.unit(600, "lb"),
  17425. name: "Back (Dressed",
  17426. image: {
  17427. source: "./media/characters/de'vout/back-dressed.svg",
  17428. extra: 1443 / 1328
  17429. }
  17430. },
  17431. },
  17432. [
  17433. {
  17434. name: "Normal",
  17435. height: math.unit(9.5, "feet"),
  17436. default: true
  17437. },
  17438. ]
  17439. ))
  17440. characterMakers.push(() => makeCharacter(
  17441. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17442. {
  17443. front: {
  17444. height: math.unit(8, "feet"),
  17445. weight: math.unit(225, "lb"),
  17446. name: "Front",
  17447. image: {
  17448. source: "./media/characters/talana/front.svg",
  17449. extra: 1410 / 1300,
  17450. bottom: 0.015
  17451. }
  17452. },
  17453. frontDressed: {
  17454. height: math.unit(8, "feet"),
  17455. weight: math.unit(225, "lb"),
  17456. name: "Front (Dressed",
  17457. image: {
  17458. source: "./media/characters/talana/front-dressed.svg",
  17459. extra: 1410 / 1300,
  17460. bottom: 0.015
  17461. }
  17462. },
  17463. },
  17464. [
  17465. {
  17466. name: "Normal",
  17467. height: math.unit(8, "feet"),
  17468. default: true
  17469. },
  17470. ]
  17471. ))
  17472. characterMakers.push(() => makeCharacter(
  17473. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17474. {
  17475. side: {
  17476. height: math.unit(7.2, "feet"),
  17477. weight: math.unit(150, "lb"),
  17478. name: "Side",
  17479. image: {
  17480. source: "./media/characters/xeauvok/side.svg",
  17481. extra: 1975 / 1523,
  17482. bottom: 0.07
  17483. }
  17484. },
  17485. },
  17486. [
  17487. {
  17488. name: "Normal",
  17489. height: math.unit(7.2, "feet"),
  17490. default: true
  17491. },
  17492. ]
  17493. ))
  17494. characterMakers.push(() => makeCharacter(
  17495. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17496. {
  17497. side: {
  17498. height: math.unit(10, "feet"),
  17499. weight: math.unit(900, "kg"),
  17500. name: "Side",
  17501. image: {
  17502. source: "./media/characters/zara/side.svg",
  17503. extra: 504 / 498
  17504. }
  17505. },
  17506. },
  17507. [
  17508. {
  17509. name: "Normal",
  17510. height: math.unit(10, "feet"),
  17511. default: true
  17512. },
  17513. ]
  17514. ))
  17515. characterMakers.push(() => makeCharacter(
  17516. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17517. {
  17518. side: {
  17519. height: math.unit(6, "feet"),
  17520. weight: math.unit(150, "lb"),
  17521. name: "Side",
  17522. image: {
  17523. source: "./media/characters/richard-dragon/side.svg",
  17524. extra: 845 / 340,
  17525. bottom: 0.017
  17526. }
  17527. },
  17528. maw: {
  17529. height: math.unit(2.97, "feet"),
  17530. name: "Maw",
  17531. image: {
  17532. source: "./media/characters/richard-dragon/maw.svg"
  17533. }
  17534. },
  17535. },
  17536. [
  17537. ]
  17538. ))
  17539. characterMakers.push(() => makeCharacter(
  17540. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17541. {
  17542. front: {
  17543. height: math.unit(4, "feet"),
  17544. weight: math.unit(100, "lb"),
  17545. name: "Front",
  17546. image: {
  17547. source: "./media/characters/richard-smeargle/front.svg",
  17548. extra: 2952 / 2820,
  17549. bottom: 0.028
  17550. }
  17551. },
  17552. },
  17553. [
  17554. {
  17555. name: "Normal",
  17556. height: math.unit(4, "feet"),
  17557. default: true
  17558. },
  17559. {
  17560. name: "Dynamax",
  17561. height: math.unit(20, "meters")
  17562. },
  17563. ]
  17564. ))
  17565. characterMakers.push(() => makeCharacter(
  17566. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17567. {
  17568. front: {
  17569. height: math.unit(6, "feet"),
  17570. weight: math.unit(110, "lb"),
  17571. name: "Front",
  17572. image: {
  17573. source: "./media/characters/klay/front.svg",
  17574. extra: 962 / 883,
  17575. bottom: 0.04
  17576. }
  17577. },
  17578. back: {
  17579. height: math.unit(6, "feet"),
  17580. weight: math.unit(110, "lb"),
  17581. name: "Back",
  17582. image: {
  17583. source: "./media/characters/klay/back.svg",
  17584. extra: 962 / 883
  17585. }
  17586. },
  17587. beans: {
  17588. height: math.unit(1.15, "feet"),
  17589. name: "Beans",
  17590. image: {
  17591. source: "./media/characters/klay/beans.svg"
  17592. }
  17593. },
  17594. },
  17595. [
  17596. {
  17597. name: "Micro",
  17598. height: math.unit(6, "inches")
  17599. },
  17600. {
  17601. name: "Mini",
  17602. height: math.unit(3, "feet")
  17603. },
  17604. {
  17605. name: "Normal",
  17606. height: math.unit(6, "feet"),
  17607. default: true
  17608. },
  17609. {
  17610. name: "Big",
  17611. height: math.unit(25, "feet")
  17612. },
  17613. {
  17614. name: "Macro",
  17615. height: math.unit(100, "feet")
  17616. },
  17617. {
  17618. name: "Megamacro",
  17619. height: math.unit(400, "feet")
  17620. },
  17621. ]
  17622. ))
  17623. characterMakers.push(() => makeCharacter(
  17624. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17625. {
  17626. front: {
  17627. height: math.unit(6, "feet"),
  17628. weight: math.unit(160, "lb"),
  17629. name: "Front",
  17630. image: {
  17631. source: "./media/characters/marcus/front.svg",
  17632. extra: 734 / 676,
  17633. bottom: 0.03
  17634. }
  17635. },
  17636. },
  17637. [
  17638. {
  17639. name: "Little",
  17640. height: math.unit(6, "feet")
  17641. },
  17642. {
  17643. name: "Normal",
  17644. height: math.unit(110, "feet"),
  17645. default: true
  17646. },
  17647. {
  17648. name: "Macro",
  17649. height: math.unit(250, "feet")
  17650. },
  17651. {
  17652. name: "Megamacro",
  17653. height: math.unit(1000, "feet")
  17654. },
  17655. ]
  17656. ))
  17657. characterMakers.push(() => makeCharacter(
  17658. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17659. {
  17660. front: {
  17661. height: math.unit(7, "feet"),
  17662. weight: math.unit(275, "lb"),
  17663. name: "Front",
  17664. image: {
  17665. source: "./media/characters/claude-delroute/front.svg",
  17666. extra: 230 / 214,
  17667. bottom: 0.007
  17668. }
  17669. },
  17670. side: {
  17671. height: math.unit(7, "feet"),
  17672. weight: math.unit(275, "lb"),
  17673. name: "Side",
  17674. image: {
  17675. source: "./media/characters/claude-delroute/side.svg",
  17676. extra: 222 / 214,
  17677. bottom: 0.01
  17678. }
  17679. },
  17680. back: {
  17681. height: math.unit(7, "feet"),
  17682. weight: math.unit(275, "lb"),
  17683. name: "Back",
  17684. image: {
  17685. source: "./media/characters/claude-delroute/back.svg",
  17686. extra: 230 / 214,
  17687. bottom: 0.015
  17688. }
  17689. },
  17690. maw: {
  17691. height: math.unit(0.6407, "meters"),
  17692. name: "Maw",
  17693. image: {
  17694. source: "./media/characters/claude-delroute/maw.svg"
  17695. }
  17696. },
  17697. },
  17698. [
  17699. {
  17700. name: "Normal",
  17701. height: math.unit(7, "feet"),
  17702. default: true
  17703. },
  17704. {
  17705. name: "Lorge",
  17706. height: math.unit(20, "feet")
  17707. },
  17708. ]
  17709. ))
  17710. characterMakers.push(() => makeCharacter(
  17711. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17712. {
  17713. front: {
  17714. height: math.unit(8 + 4 / 12, "feet"),
  17715. weight: math.unit(600, "lb"),
  17716. name: "Front",
  17717. image: {
  17718. source: "./media/characters/dragonien/front.svg",
  17719. extra: 100 / 94,
  17720. bottom: 3.3 / 103.3445
  17721. }
  17722. },
  17723. back: {
  17724. height: math.unit(8 + 4 / 12, "feet"),
  17725. weight: math.unit(600, "lb"),
  17726. name: "Back",
  17727. image: {
  17728. source: "./media/characters/dragonien/back.svg",
  17729. extra: 776 / 746,
  17730. bottom: 6.4 / 782.0616
  17731. }
  17732. },
  17733. foot: {
  17734. height: math.unit(1.54, "feet"),
  17735. name: "Foot",
  17736. image: {
  17737. source: "./media/characters/dragonien/foot.svg",
  17738. }
  17739. },
  17740. },
  17741. [
  17742. {
  17743. name: "Normal",
  17744. height: math.unit(8 + 4 / 12, "feet"),
  17745. default: true
  17746. },
  17747. {
  17748. name: "Macro",
  17749. height: math.unit(200, "feet")
  17750. },
  17751. {
  17752. name: "Megamacro",
  17753. height: math.unit(1, "mile")
  17754. },
  17755. {
  17756. name: "Gigamacro",
  17757. height: math.unit(1000, "miles")
  17758. },
  17759. ]
  17760. ))
  17761. characterMakers.push(() => makeCharacter(
  17762. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17763. {
  17764. front: {
  17765. height: math.unit(5 + 2 / 12, "feet"),
  17766. weight: math.unit(110, "lb"),
  17767. name: "Front",
  17768. image: {
  17769. source: "./media/characters/desta/front.svg",
  17770. extra: 767 / 726,
  17771. bottom: 11.7 / 779
  17772. }
  17773. },
  17774. back: {
  17775. height: math.unit(5 + 2 / 12, "feet"),
  17776. weight: math.unit(110, "lb"),
  17777. name: "Back",
  17778. image: {
  17779. source: "./media/characters/desta/back.svg",
  17780. extra: 777 / 728,
  17781. bottom: 6 / 784
  17782. }
  17783. },
  17784. frontAlt: {
  17785. height: math.unit(5 + 2 / 12, "feet"),
  17786. weight: math.unit(110, "lb"),
  17787. name: "Front",
  17788. image: {
  17789. source: "./media/characters/desta/front-alt.svg",
  17790. extra: 1482 / 1417
  17791. }
  17792. },
  17793. side: {
  17794. height: math.unit(5 + 2 / 12, "feet"),
  17795. weight: math.unit(110, "lb"),
  17796. name: "Side",
  17797. image: {
  17798. source: "./media/characters/desta/side.svg",
  17799. extra: 2579 / 2491,
  17800. bottom: 0.053
  17801. }
  17802. },
  17803. },
  17804. [
  17805. {
  17806. name: "Micro",
  17807. height: math.unit(6, "inches")
  17808. },
  17809. {
  17810. name: "Normal",
  17811. height: math.unit(5 + 2 / 12, "feet"),
  17812. default: true
  17813. },
  17814. {
  17815. name: "Macro",
  17816. height: math.unit(62, "feet")
  17817. },
  17818. {
  17819. name: "Megamacro",
  17820. height: math.unit(1800, "feet")
  17821. },
  17822. ]
  17823. ))
  17824. characterMakers.push(() => makeCharacter(
  17825. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17826. {
  17827. front: {
  17828. height: math.unit(10, "feet"),
  17829. weight: math.unit(700, "lb"),
  17830. name: "Front",
  17831. image: {
  17832. source: "./media/characters/storm-alystar/front.svg",
  17833. extra: 2112 / 1898,
  17834. bottom: 0.034
  17835. }
  17836. },
  17837. },
  17838. [
  17839. {
  17840. name: "Micro",
  17841. height: math.unit(3.5, "inches")
  17842. },
  17843. {
  17844. name: "Normal",
  17845. height: math.unit(10, "feet"),
  17846. default: true
  17847. },
  17848. {
  17849. name: "Macro",
  17850. height: math.unit(400, "feet")
  17851. },
  17852. {
  17853. name: "Deific",
  17854. height: math.unit(60, "miles")
  17855. },
  17856. ]
  17857. ))
  17858. characterMakers.push(() => makeCharacter(
  17859. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17860. {
  17861. front: {
  17862. height: math.unit(2.35, "meters"),
  17863. weight: math.unit(119, "kg"),
  17864. name: "Front",
  17865. image: {
  17866. source: "./media/characters/ilia/front.svg",
  17867. extra: 1285 / 1255,
  17868. bottom: 0.06
  17869. }
  17870. },
  17871. },
  17872. [
  17873. {
  17874. name: "Normal",
  17875. height: math.unit(2.35, "meters")
  17876. },
  17877. {
  17878. name: "Macro",
  17879. height: math.unit(140, "meters"),
  17880. default: true
  17881. },
  17882. {
  17883. name: "Megamacro",
  17884. height: math.unit(100, "miles")
  17885. },
  17886. ]
  17887. ))
  17888. characterMakers.push(() => makeCharacter(
  17889. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17890. {
  17891. front: {
  17892. height: math.unit(6 + 5 / 12, "feet"),
  17893. weight: math.unit(190, "lb"),
  17894. name: "Front",
  17895. image: {
  17896. source: "./media/characters/kingdead/front.svg",
  17897. extra: 1228 / 1177
  17898. }
  17899. },
  17900. },
  17901. [
  17902. {
  17903. name: "Micro",
  17904. height: math.unit(7, "inches")
  17905. },
  17906. {
  17907. name: "Normal",
  17908. height: math.unit(6 + 5 / 12, "feet")
  17909. },
  17910. {
  17911. name: "Macro",
  17912. height: math.unit(150, "feet"),
  17913. default: true
  17914. },
  17915. {
  17916. name: "Megamacro",
  17917. height: math.unit(200, "miles")
  17918. },
  17919. ]
  17920. ))
  17921. characterMakers.push(() => makeCharacter(
  17922. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17923. {
  17924. front: {
  17925. height: math.unit(8, "feet"),
  17926. weight: math.unit(600, "lb"),
  17927. name: "Front",
  17928. image: {
  17929. source: "./media/characters/kyrehx/front.svg",
  17930. extra: 1195 / 1095,
  17931. bottom: 0.034
  17932. }
  17933. },
  17934. },
  17935. [
  17936. {
  17937. name: "Micro",
  17938. height: math.unit(2, "inches")
  17939. },
  17940. {
  17941. name: "Normal",
  17942. height: math.unit(8, "feet"),
  17943. default: true
  17944. },
  17945. {
  17946. name: "Macro",
  17947. height: math.unit(255, "feet")
  17948. },
  17949. ]
  17950. ))
  17951. characterMakers.push(() => makeCharacter(
  17952. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17953. {
  17954. front: {
  17955. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17956. weight: math.unit(184, "lb"),
  17957. name: "Front",
  17958. image: {
  17959. source: "./media/characters/xang/front.svg",
  17960. extra: 845 / 755
  17961. }
  17962. },
  17963. },
  17964. [
  17965. {
  17966. name: "Normal",
  17967. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17968. default: true
  17969. },
  17970. {
  17971. name: "Macro",
  17972. height: math.unit(0.935 * 146, "feet")
  17973. },
  17974. {
  17975. name: "Megamacro",
  17976. height: math.unit(0.935 * 3, "miles")
  17977. },
  17978. ]
  17979. ))
  17980. characterMakers.push(() => makeCharacter(
  17981. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17982. {
  17983. frontDressed: {
  17984. height: math.unit(5 + 7 / 12, "feet"),
  17985. weight: math.unit(140, "lb"),
  17986. name: "Front (Dressed)",
  17987. image: {
  17988. source: "./media/characters/doc-weardno/front-dressed.svg",
  17989. extra: 263 / 234
  17990. }
  17991. },
  17992. backDressed: {
  17993. height: math.unit(5 + 7 / 12, "feet"),
  17994. weight: math.unit(140, "lb"),
  17995. name: "Back (Dressed)",
  17996. image: {
  17997. source: "./media/characters/doc-weardno/back-dressed.svg",
  17998. extra: 266 / 238
  17999. }
  18000. },
  18001. front: {
  18002. height: math.unit(5 + 7 / 12, "feet"),
  18003. weight: math.unit(140, "lb"),
  18004. name: "Front",
  18005. image: {
  18006. source: "./media/characters/doc-weardno/front.svg",
  18007. extra: 254 / 233
  18008. }
  18009. },
  18010. },
  18011. [
  18012. {
  18013. name: "Micro",
  18014. height: math.unit(3, "inches")
  18015. },
  18016. {
  18017. name: "Normal",
  18018. height: math.unit(5 + 7 / 12, "feet"),
  18019. default: true
  18020. },
  18021. {
  18022. name: "Macro",
  18023. height: math.unit(25, "feet")
  18024. },
  18025. {
  18026. name: "Megamacro",
  18027. height: math.unit(2, "miles")
  18028. },
  18029. ]
  18030. ))
  18031. characterMakers.push(() => makeCharacter(
  18032. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18033. {
  18034. front: {
  18035. height: math.unit(6 + 2 / 12, "feet"),
  18036. weight: math.unit(153, "lb"),
  18037. name: "Front",
  18038. image: {
  18039. source: "./media/characters/seth-whilst/front.svg",
  18040. bottom: 0.07
  18041. }
  18042. },
  18043. },
  18044. [
  18045. {
  18046. name: "Micro",
  18047. height: math.unit(5, "inches")
  18048. },
  18049. {
  18050. name: "Normal",
  18051. height: math.unit(6 + 2 / 12, "feet"),
  18052. default: true
  18053. },
  18054. ]
  18055. ))
  18056. characterMakers.push(() => makeCharacter(
  18057. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18058. {
  18059. front: {
  18060. height: math.unit(3, "inches"),
  18061. weight: math.unit(8, "grams"),
  18062. name: "Front",
  18063. image: {
  18064. source: "./media/characters/pocket-jabari/front.svg",
  18065. extra: 1024 / 974,
  18066. bottom: 0.039
  18067. }
  18068. },
  18069. },
  18070. [
  18071. {
  18072. name: "Minimicro",
  18073. height: math.unit(8, "mm")
  18074. },
  18075. {
  18076. name: "Micro",
  18077. height: math.unit(3, "inches"),
  18078. default: true
  18079. },
  18080. {
  18081. name: "Normal",
  18082. height: math.unit(3, "feet")
  18083. },
  18084. ]
  18085. ))
  18086. characterMakers.push(() => makeCharacter(
  18087. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18088. {
  18089. front: {
  18090. height: math.unit(15, "feet"),
  18091. weight: math.unit(3280, "lb"),
  18092. name: "Front",
  18093. image: {
  18094. source: "./media/characters/sapphy/front.svg",
  18095. extra: 671 / 577,
  18096. bottom: 0.085
  18097. }
  18098. },
  18099. back: {
  18100. height: math.unit(15, "feet"),
  18101. weight: math.unit(3280, "lb"),
  18102. name: "Back",
  18103. image: {
  18104. source: "./media/characters/sapphy/back.svg",
  18105. extra: 631 / 607,
  18106. bottom: 0.045
  18107. }
  18108. },
  18109. },
  18110. [
  18111. {
  18112. name: "Normal",
  18113. height: math.unit(15, "feet")
  18114. },
  18115. {
  18116. name: "Casual Macro",
  18117. height: math.unit(120, "feet")
  18118. },
  18119. {
  18120. name: "Macro",
  18121. height: math.unit(2150, "feet"),
  18122. default: true
  18123. },
  18124. {
  18125. name: "Megamacro",
  18126. height: math.unit(8, "miles")
  18127. },
  18128. {
  18129. name: "Galaxy Mom",
  18130. height: math.unit(6, "megalightyears")
  18131. },
  18132. ]
  18133. ))
  18134. characterMakers.push(() => makeCharacter(
  18135. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  18136. {
  18137. front: {
  18138. height: math.unit(6, "feet"),
  18139. weight: math.unit(170, "lb"),
  18140. name: "Front",
  18141. image: {
  18142. source: "./media/characters/kiro/front.svg",
  18143. extra: 1064 / 1012,
  18144. bottom: 0.052
  18145. }
  18146. },
  18147. },
  18148. [
  18149. {
  18150. name: "Micro",
  18151. height: math.unit(6, "inches")
  18152. },
  18153. {
  18154. name: "Normal",
  18155. height: math.unit(6, "feet"),
  18156. default: true
  18157. },
  18158. {
  18159. name: "Macro",
  18160. height: math.unit(72, "feet")
  18161. },
  18162. ]
  18163. ))
  18164. characterMakers.push(() => makeCharacter(
  18165. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18166. {
  18167. front: {
  18168. height: math.unit(5 + 9 / 12, "feet"),
  18169. weight: math.unit(175, "lb"),
  18170. name: "Front",
  18171. image: {
  18172. source: "./media/characters/irishfox/front.svg",
  18173. extra: 1912 / 1680,
  18174. bottom: 0.02
  18175. }
  18176. },
  18177. },
  18178. [
  18179. {
  18180. name: "Nano",
  18181. height: math.unit(1, "mm")
  18182. },
  18183. {
  18184. name: "Micro",
  18185. height: math.unit(2, "inches")
  18186. },
  18187. {
  18188. name: "Normal",
  18189. height: math.unit(5 + 9 / 12, "feet"),
  18190. default: true
  18191. },
  18192. {
  18193. name: "Macro",
  18194. height: math.unit(45, "feet")
  18195. },
  18196. ]
  18197. ))
  18198. characterMakers.push(() => makeCharacter(
  18199. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18200. {
  18201. front: {
  18202. height: math.unit(6 + 1 / 12, "feet"),
  18203. weight: math.unit(150, "lb"),
  18204. name: "Front",
  18205. image: {
  18206. source: "./media/characters/aronai-sieyes/front.svg",
  18207. extra: 1556 / 1480,
  18208. bottom: 0.015
  18209. }
  18210. },
  18211. side: {
  18212. height: math.unit(6 + 1 / 12, "feet"),
  18213. weight: math.unit(150, "lb"),
  18214. name: "Side",
  18215. image: {
  18216. source: "./media/characters/aronai-sieyes/side.svg",
  18217. extra: 1433 / 1390,
  18218. bottom: 0.0393
  18219. }
  18220. },
  18221. back: {
  18222. height: math.unit(6 + 1 / 12, "feet"),
  18223. weight: math.unit(150, "lb"),
  18224. name: "Back",
  18225. image: {
  18226. source: "./media/characters/aronai-sieyes/back.svg",
  18227. extra: 1544 / 1494,
  18228. bottom: 0.02
  18229. }
  18230. },
  18231. frontClothed: {
  18232. height: math.unit(6 + 1 / 12, "feet"),
  18233. weight: math.unit(150, "lb"),
  18234. name: "Front (Clothed)",
  18235. image: {
  18236. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18237. extra: 1582 / 1527
  18238. }
  18239. },
  18240. feral: {
  18241. height: math.unit(18, "feet"),
  18242. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  18243. name: "Feral",
  18244. image: {
  18245. source: "./media/characters/aronai-sieyes/feral.svg",
  18246. extra: 1530 / 1240,
  18247. bottom: 0.035
  18248. }
  18249. },
  18250. },
  18251. [
  18252. {
  18253. name: "Micro",
  18254. height: math.unit(2, "inches")
  18255. },
  18256. {
  18257. name: "Normal",
  18258. height: math.unit(6 + 1 / 12, "feet"),
  18259. default: true
  18260. }
  18261. ]
  18262. ))
  18263. characterMakers.push(() => makeCharacter(
  18264. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18265. {
  18266. front: {
  18267. height: math.unit(12, "feet"),
  18268. weight: math.unit(410, "kg"),
  18269. name: "Front",
  18270. image: {
  18271. source: "./media/characters/xuna/front.svg",
  18272. extra: 2184 / 1980
  18273. }
  18274. },
  18275. side: {
  18276. height: math.unit(12, "feet"),
  18277. weight: math.unit(410, "kg"),
  18278. name: "Side",
  18279. image: {
  18280. source: "./media/characters/xuna/side.svg",
  18281. extra: 2184 / 1980
  18282. }
  18283. },
  18284. back: {
  18285. height: math.unit(12, "feet"),
  18286. weight: math.unit(410, "kg"),
  18287. name: "Back",
  18288. image: {
  18289. source: "./media/characters/xuna/back.svg",
  18290. extra: 2184 / 1980
  18291. }
  18292. },
  18293. },
  18294. [
  18295. {
  18296. name: "Nano glow",
  18297. height: math.unit(10, "nm")
  18298. },
  18299. {
  18300. name: "Micro floof",
  18301. height: math.unit(0.3, "m")
  18302. },
  18303. {
  18304. name: "Huggable softy boi",
  18305. height: math.unit(3.6576, "m"),
  18306. default: true
  18307. },
  18308. {
  18309. name: "Admirable floof",
  18310. height: math.unit(80, "meters")
  18311. },
  18312. {
  18313. name: "Gentle macro",
  18314. height: math.unit(300, "meters")
  18315. },
  18316. {
  18317. name: "Very careful floof",
  18318. height: math.unit(3200, "meters")
  18319. },
  18320. {
  18321. name: "The mega floof",
  18322. height: math.unit(36000, "meters")
  18323. },
  18324. {
  18325. name: "Giga-fur-Wicker",
  18326. height: math.unit(4800000, "meters")
  18327. },
  18328. {
  18329. name: "Licky world",
  18330. height: math.unit(20000000, "meters")
  18331. },
  18332. {
  18333. name: "Floofy cyan sun",
  18334. height: math.unit(1500000000, "meters")
  18335. },
  18336. {
  18337. name: "Milky Wicker",
  18338. height: math.unit(1000000000000000000000, "meters")
  18339. },
  18340. {
  18341. name: "The observing Wicker",
  18342. height: math.unit(999999999999999999999999999, "meters")
  18343. },
  18344. ]
  18345. ))
  18346. characterMakers.push(() => makeCharacter(
  18347. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18348. {
  18349. front: {
  18350. height: math.unit(5 + 9 / 12, "feet"),
  18351. weight: math.unit(150, "lb"),
  18352. name: "Front",
  18353. image: {
  18354. source: "./media/characters/arokha-sieyes/front.svg",
  18355. extra: 1425 / 1284,
  18356. bottom: 0.05
  18357. }
  18358. },
  18359. },
  18360. [
  18361. {
  18362. name: "Normal",
  18363. height: math.unit(5 + 9 / 12, "feet")
  18364. },
  18365. {
  18366. name: "Macro",
  18367. height: math.unit(30, "meters"),
  18368. default: true
  18369. },
  18370. ]
  18371. ))
  18372. characterMakers.push(() => makeCharacter(
  18373. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18374. {
  18375. front: {
  18376. height: math.unit(6, "feet"),
  18377. weight: math.unit(180, "lb"),
  18378. name: "Front",
  18379. image: {
  18380. source: "./media/characters/arokh-sieyes/front.svg",
  18381. extra: 1830 / 1769,
  18382. bottom: 0.01
  18383. }
  18384. },
  18385. },
  18386. [
  18387. {
  18388. name: "Normal",
  18389. height: math.unit(6, "feet")
  18390. },
  18391. {
  18392. name: "Macro",
  18393. height: math.unit(30, "meters"),
  18394. default: true
  18395. },
  18396. ]
  18397. ))
  18398. characterMakers.push(() => makeCharacter(
  18399. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18400. {
  18401. side: {
  18402. height: math.unit(13 + 1 / 12, "feet"),
  18403. weight: math.unit(8.5, "tonnes"),
  18404. name: "Side",
  18405. image: {
  18406. source: "./media/characters/goldeneye/side.svg",
  18407. extra: 1182 / 778,
  18408. bottom: 0.067
  18409. }
  18410. },
  18411. paw: {
  18412. height: math.unit(3.4, "feet"),
  18413. name: "Paw",
  18414. image: {
  18415. source: "./media/characters/goldeneye/paw.svg"
  18416. }
  18417. },
  18418. },
  18419. [
  18420. {
  18421. name: "Normal",
  18422. height: math.unit(13 + 1 / 12, "feet"),
  18423. default: true
  18424. },
  18425. ]
  18426. ))
  18427. characterMakers.push(() => makeCharacter(
  18428. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18429. {
  18430. front: {
  18431. height: math.unit(6 + 1 / 12, "feet"),
  18432. weight: math.unit(210, "lb"),
  18433. name: "Front",
  18434. image: {
  18435. source: "./media/characters/leonardo-lycheborne/front.svg",
  18436. extra: 390 / 365,
  18437. bottom: 0.032
  18438. }
  18439. },
  18440. side: {
  18441. height: math.unit(6 + 1 / 12, "feet"),
  18442. weight: math.unit(210, "lb"),
  18443. name: "Side",
  18444. image: {
  18445. source: "./media/characters/leonardo-lycheborne/side.svg",
  18446. extra: 390 / 365,
  18447. bottom: 0.005
  18448. }
  18449. },
  18450. back: {
  18451. height: math.unit(6 + 1 / 12, "feet"),
  18452. weight: math.unit(210, "lb"),
  18453. name: "Back",
  18454. image: {
  18455. source: "./media/characters/leonardo-lycheborne/back.svg",
  18456. extra: 392 / 366,
  18457. bottom: 0.01
  18458. }
  18459. },
  18460. hand: {
  18461. height: math.unit(1.08, "feet"),
  18462. name: "Hand",
  18463. image: {
  18464. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18465. }
  18466. },
  18467. foot: {
  18468. height: math.unit(1.32, "feet"),
  18469. name: "Foot",
  18470. image: {
  18471. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18472. }
  18473. },
  18474. were: {
  18475. height: math.unit(20, "feet"),
  18476. weight: math.unit(7800, "lb"),
  18477. name: "Were",
  18478. image: {
  18479. source: "./media/characters/leonardo-lycheborne/were.svg",
  18480. extra: 308 / 294,
  18481. bottom: 0.048
  18482. }
  18483. },
  18484. feral: {
  18485. height: math.unit(7.5, "feet"),
  18486. weight: math.unit(600, "lb"),
  18487. name: "Feral",
  18488. image: {
  18489. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18490. extra: 210 / 186,
  18491. bottom: 0.108
  18492. }
  18493. },
  18494. taur: {
  18495. height: math.unit(11, "feet"),
  18496. weight: math.unit(3300, "lb"),
  18497. name: "Taur",
  18498. image: {
  18499. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18500. extra: 320 / 303,
  18501. bottom: 0.025
  18502. }
  18503. },
  18504. barghest: {
  18505. height: math.unit(11, "feet"),
  18506. weight: math.unit(1300, "lb"),
  18507. name: "Barghest",
  18508. image: {
  18509. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18510. extra: 323 / 302,
  18511. bottom: 0.027
  18512. }
  18513. },
  18514. dick: {
  18515. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18516. name: "Dick",
  18517. image: {
  18518. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18519. }
  18520. },
  18521. dickWere: {
  18522. height: math.unit((20) / 3.8, "feet"),
  18523. name: "Dick (Were)",
  18524. image: {
  18525. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18526. }
  18527. },
  18528. },
  18529. [
  18530. {
  18531. name: "Normal",
  18532. height: math.unit(6 + 1 / 12, "feet"),
  18533. default: true
  18534. },
  18535. ]
  18536. ))
  18537. characterMakers.push(() => makeCharacter(
  18538. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18539. {
  18540. front: {
  18541. height: math.unit(10, "feet"),
  18542. weight: math.unit(350, "lb"),
  18543. name: "Front",
  18544. image: {
  18545. source: "./media/characters/jet/front.svg",
  18546. extra: 2050 / 1980,
  18547. bottom: 0.013
  18548. }
  18549. },
  18550. back: {
  18551. height: math.unit(10, "feet"),
  18552. weight: math.unit(350, "lb"),
  18553. name: "Back",
  18554. image: {
  18555. source: "./media/characters/jet/back.svg",
  18556. extra: 2050 / 1980,
  18557. bottom: 0.013
  18558. }
  18559. },
  18560. },
  18561. [
  18562. {
  18563. name: "Micro",
  18564. height: math.unit(6, "inches")
  18565. },
  18566. {
  18567. name: "Normal",
  18568. height: math.unit(10, "feet"),
  18569. default: true
  18570. },
  18571. {
  18572. name: "Macro",
  18573. height: math.unit(100, "feet")
  18574. },
  18575. ]
  18576. ))
  18577. characterMakers.push(() => makeCharacter(
  18578. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18579. {
  18580. front: {
  18581. height: math.unit(15, "feet"),
  18582. weight: math.unit(2800, "lb"),
  18583. name: "Front",
  18584. image: {
  18585. source: "./media/characters/tanarath/front.svg",
  18586. extra: 2392 / 2220,
  18587. bottom: 0.03
  18588. }
  18589. },
  18590. back: {
  18591. height: math.unit(15, "feet"),
  18592. weight: math.unit(2800, "lb"),
  18593. name: "Back",
  18594. image: {
  18595. source: "./media/characters/tanarath/back.svg",
  18596. extra: 2392 / 2220,
  18597. bottom: 0.03
  18598. }
  18599. },
  18600. },
  18601. [
  18602. {
  18603. name: "Normal",
  18604. height: math.unit(15, "feet"),
  18605. default: true
  18606. },
  18607. ]
  18608. ))
  18609. characterMakers.push(() => makeCharacter(
  18610. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18611. {
  18612. front: {
  18613. height: math.unit(7 + 1 / 12, "feet"),
  18614. weight: math.unit(175, "lb"),
  18615. name: "Front",
  18616. image: {
  18617. source: "./media/characters/patty-cattybatty/front.svg",
  18618. extra: 908 / 874,
  18619. bottom: 0.025
  18620. }
  18621. },
  18622. },
  18623. [
  18624. {
  18625. name: "Micro",
  18626. height: math.unit(1, "inch")
  18627. },
  18628. {
  18629. name: "Normal",
  18630. height: math.unit(7 + 1 / 12, "feet")
  18631. },
  18632. {
  18633. name: "Mini Macro",
  18634. height: math.unit(155, "feet")
  18635. },
  18636. {
  18637. name: "Macro",
  18638. height: math.unit(1077, "feet")
  18639. },
  18640. {
  18641. name: "Mega Macro",
  18642. height: math.unit(47650, "feet"),
  18643. default: true
  18644. },
  18645. {
  18646. name: "Giga Macro",
  18647. height: math.unit(440, "miles")
  18648. },
  18649. {
  18650. name: "Tera Macro",
  18651. height: math.unit(8700, "miles")
  18652. },
  18653. {
  18654. name: "Planetary Macro",
  18655. height: math.unit(32700, "miles")
  18656. },
  18657. {
  18658. name: "Solar Macro",
  18659. height: math.unit(550000, "miles")
  18660. },
  18661. {
  18662. name: "Celestial Macro",
  18663. height: math.unit(2.5, "AU")
  18664. },
  18665. ]
  18666. ))
  18667. characterMakers.push(() => makeCharacter(
  18668. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18669. {
  18670. front: {
  18671. height: math.unit(4 + 5 / 12, "feet"),
  18672. weight: math.unit(90, "lb"),
  18673. name: "Front",
  18674. image: {
  18675. source: "./media/characters/cappu/front.svg",
  18676. extra: 1247 / 1152,
  18677. bottom: 0.012
  18678. }
  18679. },
  18680. },
  18681. [
  18682. {
  18683. name: "Normal",
  18684. height: math.unit(4 + 5 / 12, "feet"),
  18685. default: true
  18686. },
  18687. ]
  18688. ))
  18689. characterMakers.push(() => makeCharacter(
  18690. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18691. {
  18692. frontDressed: {
  18693. height: math.unit(70, "cm"),
  18694. weight: math.unit(6, "kg"),
  18695. name: "Front (Dressed)",
  18696. image: {
  18697. source: "./media/characters/sebi/front-dressed.svg",
  18698. extra: 713.5 / 686.5,
  18699. bottom: 0.003
  18700. }
  18701. },
  18702. front: {
  18703. height: math.unit(70, "cm"),
  18704. weight: math.unit(5, "kg"),
  18705. name: "Front",
  18706. image: {
  18707. source: "./media/characters/sebi/front.svg",
  18708. extra: 713.5 / 686.5,
  18709. bottom: 0.003
  18710. }
  18711. }
  18712. },
  18713. [
  18714. {
  18715. name: "Normal",
  18716. height: math.unit(70, "cm"),
  18717. default: true
  18718. },
  18719. {
  18720. name: "Macro",
  18721. height: math.unit(8, "meters")
  18722. },
  18723. ]
  18724. ))
  18725. characterMakers.push(() => makeCharacter(
  18726. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18727. {
  18728. front: {
  18729. height: math.unit(6, "feet"),
  18730. weight: math.unit(150, "lb"),
  18731. name: "Front",
  18732. image: {
  18733. source: "./media/characters/typhek/front.svg",
  18734. extra: 1948 / 1929,
  18735. bottom: 0.025
  18736. }
  18737. },
  18738. side: {
  18739. height: math.unit(6, "feet"),
  18740. weight: math.unit(150, "lb"),
  18741. name: "Side",
  18742. image: {
  18743. source: "./media/characters/typhek/side.svg",
  18744. extra: 2034 / 2010,
  18745. bottom: 0.003
  18746. }
  18747. },
  18748. back: {
  18749. height: math.unit(6, "feet"),
  18750. weight: math.unit(150, "lb"),
  18751. name: "Back",
  18752. image: {
  18753. source: "./media/characters/typhek/back.svg",
  18754. extra: 2005 / 1978,
  18755. bottom: 0.004
  18756. }
  18757. },
  18758. palm: {
  18759. height: math.unit(1.2, "feet"),
  18760. name: "Palm",
  18761. image: {
  18762. source: "./media/characters/typhek/palm.svg"
  18763. }
  18764. },
  18765. fist: {
  18766. height: math.unit(1.1, "feet"),
  18767. name: "Fist",
  18768. image: {
  18769. source: "./media/characters/typhek/fist.svg"
  18770. }
  18771. },
  18772. foot: {
  18773. height: math.unit(1.57, "feet"),
  18774. name: "Foot",
  18775. image: {
  18776. source: "./media/characters/typhek/foot.svg"
  18777. }
  18778. },
  18779. sole: {
  18780. height: math.unit(2.05, "feet"),
  18781. name: "Sole",
  18782. image: {
  18783. source: "./media/characters/typhek/sole.svg"
  18784. }
  18785. },
  18786. },
  18787. [
  18788. {
  18789. name: "Macro",
  18790. height: math.unit(40, "stories"),
  18791. default: true
  18792. },
  18793. {
  18794. name: "Megamacro",
  18795. height: math.unit(1, "mile")
  18796. },
  18797. {
  18798. name: "Gigamacro",
  18799. height: math.unit(4000, "solarradii")
  18800. },
  18801. {
  18802. name: "Universal",
  18803. height: math.unit(1.1, "universes")
  18804. }
  18805. ]
  18806. ))
  18807. characterMakers.push(() => makeCharacter(
  18808. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18809. {
  18810. side: {
  18811. height: math.unit(5 + 7 / 12, "feet"),
  18812. weight: math.unit(150, "lb"),
  18813. name: "Side",
  18814. image: {
  18815. source: "./media/characters/kassy/side.svg",
  18816. extra: 1280 / 1225,
  18817. bottom: 0.002
  18818. }
  18819. },
  18820. front: {
  18821. height: math.unit(5 + 7 / 12, "feet"),
  18822. weight: math.unit(150, "lb"),
  18823. name: "Front",
  18824. image: {
  18825. source: "./media/characters/kassy/front.svg",
  18826. extra: 1280 / 1225,
  18827. bottom: 0.025
  18828. }
  18829. },
  18830. back: {
  18831. height: math.unit(5 + 7 / 12, "feet"),
  18832. weight: math.unit(150, "lb"),
  18833. name: "Back",
  18834. image: {
  18835. source: "./media/characters/kassy/back.svg",
  18836. extra: 1280 / 1225,
  18837. bottom: 0.002
  18838. }
  18839. },
  18840. foot: {
  18841. height: math.unit(1.266, "feet"),
  18842. name: "Foot",
  18843. image: {
  18844. source: "./media/characters/kassy/foot.svg"
  18845. }
  18846. },
  18847. },
  18848. [
  18849. {
  18850. name: "Normal",
  18851. height: math.unit(5 + 7 / 12, "feet")
  18852. },
  18853. {
  18854. name: "Macro",
  18855. height: math.unit(137, "feet"),
  18856. default: true
  18857. },
  18858. {
  18859. name: "Megamacro",
  18860. height: math.unit(1, "mile")
  18861. },
  18862. ]
  18863. ))
  18864. characterMakers.push(() => makeCharacter(
  18865. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18866. {
  18867. front: {
  18868. height: math.unit(6 + 1 / 12, "feet"),
  18869. weight: math.unit(200, "lb"),
  18870. name: "Front",
  18871. image: {
  18872. source: "./media/characters/neil/front.svg",
  18873. extra: 1326 / 1250,
  18874. bottom: 0.023
  18875. }
  18876. },
  18877. },
  18878. [
  18879. {
  18880. name: "Normal",
  18881. height: math.unit(6 + 1 / 12, "feet"),
  18882. default: true
  18883. },
  18884. {
  18885. name: "Macro",
  18886. height: math.unit(200, "feet")
  18887. },
  18888. ]
  18889. ))
  18890. characterMakers.push(() => makeCharacter(
  18891. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18892. {
  18893. front: {
  18894. height: math.unit(5 + 9 / 12, "feet"),
  18895. weight: math.unit(190, "lb"),
  18896. name: "Front",
  18897. image: {
  18898. source: "./media/characters/atticus/front.svg",
  18899. extra: 2934 / 2785,
  18900. bottom: 0.025
  18901. }
  18902. },
  18903. },
  18904. [
  18905. {
  18906. name: "Normal",
  18907. height: math.unit(5 + 9 / 12, "feet"),
  18908. default: true
  18909. },
  18910. {
  18911. name: "Macro",
  18912. height: math.unit(180, "feet")
  18913. },
  18914. ]
  18915. ))
  18916. characterMakers.push(() => makeCharacter(
  18917. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18918. {
  18919. side: {
  18920. height: math.unit(9, "feet"),
  18921. weight: math.unit(650, "lb"),
  18922. name: "Side",
  18923. image: {
  18924. source: "./media/characters/milo/side.svg",
  18925. extra: 2644 / 2310,
  18926. bottom: 0.032
  18927. }
  18928. },
  18929. },
  18930. [
  18931. {
  18932. name: "Normal",
  18933. height: math.unit(9, "feet"),
  18934. default: true
  18935. },
  18936. {
  18937. name: "Macro",
  18938. height: math.unit(300, "feet")
  18939. },
  18940. ]
  18941. ))
  18942. characterMakers.push(() => makeCharacter(
  18943. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18944. {
  18945. side: {
  18946. height: math.unit(8, "meters"),
  18947. weight: math.unit(90000, "kg"),
  18948. name: "Side",
  18949. image: {
  18950. source: "./media/characters/ijzer/side.svg",
  18951. extra: 2756 / 1600,
  18952. bottom: 0.01
  18953. }
  18954. },
  18955. },
  18956. [
  18957. {
  18958. name: "Small",
  18959. height: math.unit(3, "meters")
  18960. },
  18961. {
  18962. name: "Normal",
  18963. height: math.unit(8, "meters"),
  18964. default: true
  18965. },
  18966. {
  18967. name: "Normal+",
  18968. height: math.unit(10, "meters")
  18969. },
  18970. {
  18971. name: "Bigger",
  18972. height: math.unit(24, "meters")
  18973. },
  18974. {
  18975. name: "Huge",
  18976. height: math.unit(80, "meters")
  18977. },
  18978. ]
  18979. ))
  18980. characterMakers.push(() => makeCharacter(
  18981. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18982. {
  18983. front: {
  18984. height: math.unit(6 + 2 / 12, "feet"),
  18985. weight: math.unit(153, "lb"),
  18986. name: "Front",
  18987. image: {
  18988. source: "./media/characters/luca-cervicum/front.svg",
  18989. extra: 370 / 327,
  18990. bottom: 0.015
  18991. }
  18992. },
  18993. back: {
  18994. height: math.unit(6 + 2 / 12, "feet"),
  18995. weight: math.unit(153, "lb"),
  18996. name: "Back",
  18997. image: {
  18998. source: "./media/characters/luca-cervicum/back.svg",
  18999. extra: 367 / 333,
  19000. bottom: 0.005
  19001. }
  19002. },
  19003. frontGear: {
  19004. height: math.unit(6 + 2 / 12, "feet"),
  19005. weight: math.unit(173, "lb"),
  19006. name: "Front (Gear)",
  19007. image: {
  19008. source: "./media/characters/luca-cervicum/front-gear.svg",
  19009. extra: 377 / 333,
  19010. bottom: 0.006
  19011. }
  19012. },
  19013. },
  19014. [
  19015. {
  19016. name: "Normal",
  19017. height: math.unit(6 + 2 / 12, "feet"),
  19018. default: true
  19019. },
  19020. ]
  19021. ))
  19022. characterMakers.push(() => makeCharacter(
  19023. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19024. {
  19025. front: {
  19026. height: math.unit(6 + 1 / 12, "feet"),
  19027. weight: math.unit(304, "lb"),
  19028. name: "Front",
  19029. image: {
  19030. source: "./media/characters/oliver/front.svg",
  19031. extra: 157 / 143,
  19032. bottom: 0.08
  19033. }
  19034. },
  19035. },
  19036. [
  19037. {
  19038. name: "Normal",
  19039. height: math.unit(6 + 1 / 12, "feet"),
  19040. default: true
  19041. },
  19042. ]
  19043. ))
  19044. characterMakers.push(() => makeCharacter(
  19045. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19046. {
  19047. front: {
  19048. height: math.unit(5 + 7 / 12, "feet"),
  19049. weight: math.unit(140, "lb"),
  19050. name: "Front",
  19051. image: {
  19052. source: "./media/characters/shane/front.svg",
  19053. extra: 304 / 289,
  19054. bottom: 0.005
  19055. }
  19056. },
  19057. },
  19058. [
  19059. {
  19060. name: "Normal",
  19061. height: math.unit(5 + 7 / 12, "feet"),
  19062. default: true
  19063. },
  19064. ]
  19065. ))
  19066. characterMakers.push(() => makeCharacter(
  19067. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19068. {
  19069. front: {
  19070. height: math.unit(5 + 9 / 12, "feet"),
  19071. weight: math.unit(178, "lb"),
  19072. name: "Front",
  19073. image: {
  19074. source: "./media/characters/shin/front.svg",
  19075. extra: 159 / 151,
  19076. bottom: 0.015
  19077. }
  19078. },
  19079. },
  19080. [
  19081. {
  19082. name: "Normal",
  19083. height: math.unit(5 + 9 / 12, "feet"),
  19084. default: true
  19085. },
  19086. ]
  19087. ))
  19088. characterMakers.push(() => makeCharacter(
  19089. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19090. {
  19091. front: {
  19092. height: math.unit(5 + 10 / 12, "feet"),
  19093. weight: math.unit(168, "lb"),
  19094. name: "Front",
  19095. image: {
  19096. source: "./media/characters/xerxes/front.svg",
  19097. extra: 282 / 260,
  19098. bottom: 0.045
  19099. }
  19100. },
  19101. },
  19102. [
  19103. {
  19104. name: "Normal",
  19105. height: math.unit(5 + 10 / 12, "feet"),
  19106. default: true
  19107. },
  19108. ]
  19109. ))
  19110. characterMakers.push(() => makeCharacter(
  19111. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19112. {
  19113. front: {
  19114. height: math.unit(6 + 7 / 12, "feet"),
  19115. weight: math.unit(208, "lb"),
  19116. name: "Front",
  19117. image: {
  19118. source: "./media/characters/chaska/front.svg",
  19119. extra: 332 / 319,
  19120. bottom: 0.015
  19121. }
  19122. },
  19123. },
  19124. [
  19125. {
  19126. name: "Normal",
  19127. height: math.unit(6 + 7 / 12, "feet"),
  19128. default: true
  19129. },
  19130. ]
  19131. ))
  19132. characterMakers.push(() => makeCharacter(
  19133. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19134. {
  19135. front: {
  19136. height: math.unit(5 + 8 / 12, "feet"),
  19137. weight: math.unit(208, "lb"),
  19138. name: "Front",
  19139. image: {
  19140. source: "./media/characters/enuk/front.svg",
  19141. extra: 437 / 406,
  19142. bottom: 0.02
  19143. }
  19144. },
  19145. },
  19146. [
  19147. {
  19148. name: "Normal",
  19149. height: math.unit(5 + 8 / 12, "feet"),
  19150. default: true
  19151. },
  19152. ]
  19153. ))
  19154. characterMakers.push(() => makeCharacter(
  19155. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19156. {
  19157. front: {
  19158. height: math.unit(5 + 10 / 12, "feet"),
  19159. weight: math.unit(252, "lb"),
  19160. name: "Front",
  19161. image: {
  19162. source: "./media/characters/bruun/front.svg",
  19163. extra: 197 / 187,
  19164. bottom: 0.012
  19165. }
  19166. },
  19167. },
  19168. [
  19169. {
  19170. name: "Normal",
  19171. height: math.unit(5 + 10 / 12, "feet"),
  19172. default: true
  19173. },
  19174. ]
  19175. ))
  19176. characterMakers.push(() => makeCharacter(
  19177. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19178. {
  19179. front: {
  19180. height: math.unit(6 + 10 / 12, "feet"),
  19181. weight: math.unit(255, "lb"),
  19182. name: "Front",
  19183. image: {
  19184. source: "./media/characters/alexeev/front.svg",
  19185. extra: 213 / 200,
  19186. bottom: 0.05
  19187. }
  19188. },
  19189. },
  19190. [
  19191. {
  19192. name: "Normal",
  19193. height: math.unit(6 + 10 / 12, "feet"),
  19194. default: true
  19195. },
  19196. ]
  19197. ))
  19198. characterMakers.push(() => makeCharacter(
  19199. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19200. {
  19201. front: {
  19202. height: math.unit(2 + 8 / 12, "feet"),
  19203. weight: math.unit(22, "lb"),
  19204. name: "Front",
  19205. image: {
  19206. source: "./media/characters/evelyn/front.svg",
  19207. extra: 208 / 180
  19208. }
  19209. },
  19210. },
  19211. [
  19212. {
  19213. name: "Normal",
  19214. height: math.unit(2 + 8 / 12, "feet"),
  19215. default: true
  19216. },
  19217. ]
  19218. ))
  19219. characterMakers.push(() => makeCharacter(
  19220. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19221. {
  19222. front: {
  19223. height: math.unit(5 + 9 / 12, "feet"),
  19224. weight: math.unit(139, "lb"),
  19225. name: "Front",
  19226. image: {
  19227. source: "./media/characters/inca/front.svg",
  19228. extra: 294 / 291,
  19229. bottom: 0.03
  19230. }
  19231. },
  19232. },
  19233. [
  19234. {
  19235. name: "Normal",
  19236. height: math.unit(5 + 9 / 12, "feet"),
  19237. default: true
  19238. },
  19239. ]
  19240. ))
  19241. characterMakers.push(() => makeCharacter(
  19242. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19243. {
  19244. front: {
  19245. height: math.unit(5 + 1 / 12, "feet"),
  19246. weight: math.unit(84, "lb"),
  19247. name: "Front",
  19248. image: {
  19249. source: "./media/characters/magdalene/front.svg",
  19250. extra: 293 / 273
  19251. }
  19252. },
  19253. },
  19254. [
  19255. {
  19256. name: "Normal",
  19257. height: math.unit(5 + 1 / 12, "feet"),
  19258. default: true
  19259. },
  19260. ]
  19261. ))
  19262. characterMakers.push(() => makeCharacter(
  19263. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19264. {
  19265. front: {
  19266. height: math.unit(6 + 3 / 12, "feet"),
  19267. weight: math.unit(185, "lb"),
  19268. name: "Front",
  19269. image: {
  19270. source: "./media/characters/mera/front.svg",
  19271. extra: 291 / 277,
  19272. bottom: 0.03
  19273. }
  19274. },
  19275. },
  19276. [
  19277. {
  19278. name: "Normal",
  19279. height: math.unit(6 + 3 / 12, "feet"),
  19280. default: true
  19281. },
  19282. ]
  19283. ))
  19284. characterMakers.push(() => makeCharacter(
  19285. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19286. {
  19287. front: {
  19288. height: math.unit(6 + 7 / 12, "feet"),
  19289. weight: math.unit(160, "lb"),
  19290. name: "Front",
  19291. image: {
  19292. source: "./media/characters/ceres/front.svg",
  19293. extra: 1023 / 950,
  19294. bottom: 0.027
  19295. }
  19296. },
  19297. back: {
  19298. height: math.unit(6 + 7 / 12, "feet"),
  19299. weight: math.unit(160, "lb"),
  19300. name: "Back",
  19301. image: {
  19302. source: "./media/characters/ceres/back.svg",
  19303. extra: 1023 / 950
  19304. }
  19305. },
  19306. },
  19307. [
  19308. {
  19309. name: "Normal",
  19310. height: math.unit(6 + 7 / 12, "feet"),
  19311. default: true
  19312. },
  19313. ]
  19314. ))
  19315. characterMakers.push(() => makeCharacter(
  19316. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19317. {
  19318. front: {
  19319. height: math.unit(5 + 10 / 12, "feet"),
  19320. weight: math.unit(150, "lb"),
  19321. name: "Front",
  19322. image: {
  19323. source: "./media/characters/kris/front.svg",
  19324. extra: 885 / 803,
  19325. bottom: 0.03
  19326. }
  19327. },
  19328. },
  19329. [
  19330. {
  19331. name: "Normal",
  19332. height: math.unit(5 + 10 / 12, "feet"),
  19333. default: true
  19334. },
  19335. ]
  19336. ))
  19337. characterMakers.push(() => makeCharacter(
  19338. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19339. {
  19340. front: {
  19341. height: math.unit(7, "feet"),
  19342. weight: math.unit(120, "kg"),
  19343. name: "Front",
  19344. image: {
  19345. source: "./media/characters/taluthus/front.svg",
  19346. extra: 903 / 833,
  19347. bottom: 0.015
  19348. }
  19349. },
  19350. },
  19351. [
  19352. {
  19353. name: "Normal",
  19354. height: math.unit(7, "feet"),
  19355. default: true
  19356. },
  19357. {
  19358. name: "Macro",
  19359. height: math.unit(300, "feet")
  19360. },
  19361. ]
  19362. ))
  19363. characterMakers.push(() => makeCharacter(
  19364. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19365. {
  19366. front: {
  19367. height: math.unit(5 + 9 / 12, "feet"),
  19368. weight: math.unit(145, "lb"),
  19369. name: "Front",
  19370. image: {
  19371. source: "./media/characters/dawn/front.svg",
  19372. extra: 2094 / 2016,
  19373. bottom: 0.025
  19374. }
  19375. },
  19376. back: {
  19377. height: math.unit(5 + 9 / 12, "feet"),
  19378. weight: math.unit(160, "lb"),
  19379. name: "Back",
  19380. image: {
  19381. source: "./media/characters/dawn/back.svg",
  19382. extra: 2112 / 2080,
  19383. bottom: 0.005
  19384. }
  19385. },
  19386. },
  19387. [
  19388. {
  19389. name: "Normal",
  19390. height: math.unit(6 + 7 / 12, "feet"),
  19391. default: true
  19392. },
  19393. ]
  19394. ))
  19395. characterMakers.push(() => makeCharacter(
  19396. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19397. {
  19398. anthro: {
  19399. height: math.unit(8 + 3 / 12, "feet"),
  19400. weight: math.unit(450, "lb"),
  19401. name: "Anthro",
  19402. image: {
  19403. source: "./media/characters/arador/anthro.svg",
  19404. extra: 1835 / 1718,
  19405. bottom: 0.025
  19406. }
  19407. },
  19408. feral: {
  19409. height: math.unit(4, "feet"),
  19410. weight: math.unit(200, "lb"),
  19411. name: "Feral",
  19412. image: {
  19413. source: "./media/characters/arador/feral.svg",
  19414. extra: 1683 / 1514,
  19415. bottom: 0.07
  19416. }
  19417. },
  19418. },
  19419. [
  19420. {
  19421. name: "Normal",
  19422. height: math.unit(8 + 3 / 12, "feet")
  19423. },
  19424. {
  19425. name: "Macro",
  19426. height: math.unit(82.5, "feet"),
  19427. default: true
  19428. },
  19429. ]
  19430. ))
  19431. characterMakers.push(() => makeCharacter(
  19432. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19433. {
  19434. front: {
  19435. height: math.unit(5 + 10 / 12, "feet"),
  19436. weight: math.unit(125, "lb"),
  19437. name: "Front",
  19438. image: {
  19439. source: "./media/characters/dharsi/front.svg",
  19440. extra: 716 / 630,
  19441. bottom: 0.035
  19442. }
  19443. },
  19444. },
  19445. [
  19446. {
  19447. name: "Nano",
  19448. height: math.unit(100, "nm")
  19449. },
  19450. {
  19451. name: "Micro",
  19452. height: math.unit(2, "inches")
  19453. },
  19454. {
  19455. name: "Normal",
  19456. height: math.unit(5 + 10 / 12, "feet"),
  19457. default: true
  19458. },
  19459. {
  19460. name: "Macro",
  19461. height: math.unit(1000, "feet")
  19462. },
  19463. {
  19464. name: "Megamacro",
  19465. height: math.unit(10, "miles")
  19466. },
  19467. {
  19468. name: "Gigamacro",
  19469. height: math.unit(3000, "miles")
  19470. },
  19471. {
  19472. name: "Teramacro",
  19473. height: math.unit(500000, "miles")
  19474. },
  19475. {
  19476. name: "Teramacro+",
  19477. height: math.unit(30, "galaxies")
  19478. },
  19479. ]
  19480. ))
  19481. characterMakers.push(() => makeCharacter(
  19482. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19483. {
  19484. front: {
  19485. height: math.unit(6, "feet"),
  19486. weight: math.unit(150, "lb"),
  19487. name: "Front",
  19488. image: {
  19489. source: "./media/characters/deathy/front.svg",
  19490. extra: 1552 / 1463,
  19491. bottom: 0.025
  19492. }
  19493. },
  19494. side: {
  19495. height: math.unit(6, "feet"),
  19496. weight: math.unit(150, "lb"),
  19497. name: "Side",
  19498. image: {
  19499. source: "./media/characters/deathy/side.svg",
  19500. extra: 1604 / 1455,
  19501. bottom: 0.025
  19502. }
  19503. },
  19504. back: {
  19505. height: math.unit(6, "feet"),
  19506. weight: math.unit(150, "lb"),
  19507. name: "Back",
  19508. image: {
  19509. source: "./media/characters/deathy/back.svg",
  19510. extra: 1580 / 1463,
  19511. bottom: 0.005
  19512. }
  19513. },
  19514. },
  19515. [
  19516. {
  19517. name: "Micro",
  19518. height: math.unit(5, "millimeters")
  19519. },
  19520. {
  19521. name: "Normal",
  19522. height: math.unit(6 + 5 / 12, "feet"),
  19523. default: true
  19524. },
  19525. ]
  19526. ))
  19527. characterMakers.push(() => makeCharacter(
  19528. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19529. {
  19530. front: {
  19531. height: math.unit(16, "feet"),
  19532. weight: math.unit(4000, "lb"),
  19533. name: "Front",
  19534. image: {
  19535. source: "./media/characters/juniper/front.svg",
  19536. bottom: 0.04
  19537. }
  19538. },
  19539. },
  19540. [
  19541. {
  19542. name: "Normal",
  19543. height: math.unit(16, "feet"),
  19544. default: true
  19545. },
  19546. ]
  19547. ))
  19548. characterMakers.push(() => makeCharacter(
  19549. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19550. {
  19551. front: {
  19552. height: math.unit(6, "feet"),
  19553. weight: math.unit(150, "lb"),
  19554. name: "Front",
  19555. image: {
  19556. source: "./media/characters/hipster/front.svg",
  19557. extra: 1312 / 1209,
  19558. bottom: 0.025
  19559. }
  19560. },
  19561. back: {
  19562. height: math.unit(6, "feet"),
  19563. weight: math.unit(150, "lb"),
  19564. name: "Back",
  19565. image: {
  19566. source: "./media/characters/hipster/back.svg",
  19567. extra: 1281 / 1196,
  19568. bottom: 0.01
  19569. }
  19570. },
  19571. },
  19572. [
  19573. {
  19574. name: "Micro",
  19575. height: math.unit(1, "mm")
  19576. },
  19577. {
  19578. name: "Normal",
  19579. height: math.unit(4, "inches"),
  19580. default: true
  19581. },
  19582. {
  19583. name: "Macro",
  19584. height: math.unit(500, "feet")
  19585. },
  19586. {
  19587. name: "Megamacro",
  19588. height: math.unit(1000, "miles")
  19589. },
  19590. ]
  19591. ))
  19592. characterMakers.push(() => makeCharacter(
  19593. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19594. {
  19595. front: {
  19596. height: math.unit(6, "feet"),
  19597. weight: math.unit(150, "lb"),
  19598. name: "Front",
  19599. image: {
  19600. source: "./media/characters/tendirmuldr/front.svg",
  19601. extra: 1878 / 1772,
  19602. bottom: 0.015
  19603. }
  19604. },
  19605. },
  19606. [
  19607. {
  19608. name: "Megamacro",
  19609. height: math.unit(1500, "miles"),
  19610. default: true
  19611. },
  19612. ]
  19613. ))
  19614. characterMakers.push(() => makeCharacter(
  19615. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19616. {
  19617. front: {
  19618. height: math.unit(14, "feet"),
  19619. weight: math.unit(12000, "lb"),
  19620. name: "Front",
  19621. image: {
  19622. source: "./media/characters/mort/front.svg",
  19623. extra: 365 / 318,
  19624. bottom: 0.01
  19625. }
  19626. },
  19627. side: {
  19628. height: math.unit(14, "feet"),
  19629. weight: math.unit(12000, "lb"),
  19630. name: "Side",
  19631. image: {
  19632. source: "./media/characters/mort/side.svg",
  19633. extra: 365 / 318,
  19634. bottom: 0.052
  19635. },
  19636. default: true
  19637. },
  19638. back: {
  19639. height: math.unit(14, "feet"),
  19640. weight: math.unit(12000, "lb"),
  19641. name: "Back",
  19642. image: {
  19643. source: "./media/characters/mort/back.svg",
  19644. extra: 371 / 332,
  19645. bottom: 0.18
  19646. }
  19647. },
  19648. },
  19649. [
  19650. {
  19651. name: "Normal",
  19652. height: math.unit(14, "feet"),
  19653. default: true
  19654. },
  19655. ]
  19656. ))
  19657. characterMakers.push(() => makeCharacter(
  19658. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19659. {
  19660. front: {
  19661. height: math.unit(8, "feet"),
  19662. weight: math.unit(1, "ton"),
  19663. name: "Front",
  19664. image: {
  19665. source: "./media/characters/lycoa/front.svg",
  19666. extra: 1875 / 1789,
  19667. bottom: 0.022
  19668. }
  19669. },
  19670. back: {
  19671. height: math.unit(8, "feet"),
  19672. weight: math.unit(1, "ton"),
  19673. name: "Back",
  19674. image: {
  19675. source: "./media/characters/lycoa/back.svg",
  19676. extra: 1835 / 1781,
  19677. bottom: 0.03
  19678. }
  19679. },
  19680. head: {
  19681. height: math.unit(2.1, "feet"),
  19682. name: "Head",
  19683. image: {
  19684. source: "./media/characters/lycoa/head.svg"
  19685. }
  19686. },
  19687. tailmaw: {
  19688. height: math.unit(1.9, "feet"),
  19689. name: "Tailmaw",
  19690. image: {
  19691. source: "./media/characters/lycoa/tailmaw.svg"
  19692. }
  19693. },
  19694. tentacles: {
  19695. height: math.unit(2.1, "feet"),
  19696. name: "Tentacles",
  19697. image: {
  19698. source: "./media/characters/lycoa/tentacles.svg"
  19699. }
  19700. },
  19701. dick: {
  19702. height: math.unit(1.73, "feet"),
  19703. name: "Dick",
  19704. image: {
  19705. source: "./media/characters/lycoa/dick.svg"
  19706. }
  19707. },
  19708. },
  19709. [
  19710. {
  19711. name: "Normal",
  19712. height: math.unit(8, "feet"),
  19713. default: true
  19714. },
  19715. {
  19716. name: "Macro",
  19717. height: math.unit(30, "feet")
  19718. },
  19719. ]
  19720. ))
  19721. characterMakers.push(() => makeCharacter(
  19722. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19723. {
  19724. front: {
  19725. height: math.unit(4 + 2 / 12, "feet"),
  19726. weight: math.unit(70, "lb"),
  19727. name: "Front",
  19728. image: {
  19729. source: "./media/characters/naldara/front.svg",
  19730. extra: 841 / 720,
  19731. bottom: 0.04
  19732. }
  19733. },
  19734. naga: {
  19735. height: math.unit(23, "feet"),
  19736. weight: math.unit(15000, "kg"),
  19737. name: "Naga",
  19738. image: {
  19739. source: "./media/characters/naldara/naga.svg",
  19740. extra: 3290 / 2959,
  19741. bottom: 124 / 3432
  19742. }
  19743. },
  19744. },
  19745. [
  19746. {
  19747. name: "Normal",
  19748. height: math.unit(4 + 2 / 12, "feet"),
  19749. default: true
  19750. },
  19751. ]
  19752. ))
  19753. characterMakers.push(() => makeCharacter(
  19754. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19755. {
  19756. front: {
  19757. height: math.unit(13 + 7 / 12, "feet"),
  19758. weight: math.unit(1500, "lb"),
  19759. name: "Front",
  19760. image: {
  19761. source: "./media/characters/briar/front.svg",
  19762. extra: 626 / 596,
  19763. bottom: 0.08
  19764. }
  19765. },
  19766. },
  19767. [
  19768. {
  19769. name: "Normal",
  19770. height: math.unit(13 + 7 / 12, "feet"),
  19771. default: true
  19772. },
  19773. ]
  19774. ))
  19775. characterMakers.push(() => makeCharacter(
  19776. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19777. {
  19778. side: {
  19779. height: math.unit(10, "feet"),
  19780. weight: math.unit(500, "lb"),
  19781. name: "Side",
  19782. image: {
  19783. source: "./media/characters/vanguard/side.svg",
  19784. extra: 502 / 425,
  19785. bottom: 0.087
  19786. }
  19787. },
  19788. },
  19789. [
  19790. {
  19791. name: "Normal",
  19792. height: math.unit(10, "feet"),
  19793. default: true
  19794. },
  19795. ]
  19796. ))
  19797. characterMakers.push(() => makeCharacter(
  19798. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19799. {
  19800. front: {
  19801. height: math.unit(7.5, "feet"),
  19802. weight: math.unit(2, "lb"),
  19803. name: "Front",
  19804. image: {
  19805. source: "./media/characters/artemis/front.svg",
  19806. extra: 1192 / 1075,
  19807. bottom: 0.07
  19808. }
  19809. },
  19810. frontNsfw: {
  19811. height: math.unit(7.5, "feet"),
  19812. weight: math.unit(2, "lb"),
  19813. name: "Front (NSFW)",
  19814. image: {
  19815. source: "./media/characters/artemis/front-nsfw.svg",
  19816. extra: 1192 / 1075,
  19817. bottom: 0.07
  19818. }
  19819. },
  19820. frontNsfwer: {
  19821. height: math.unit(7.5, "feet"),
  19822. weight: math.unit(2, "lb"),
  19823. name: "Front (NSFW-er)",
  19824. image: {
  19825. source: "./media/characters/artemis/front-nsfwer.svg",
  19826. extra: 1192 / 1075,
  19827. bottom: 0.07
  19828. }
  19829. },
  19830. side: {
  19831. height: math.unit(7.5, "feet"),
  19832. weight: math.unit(2, "lb"),
  19833. name: "Side",
  19834. image: {
  19835. source: "./media/characters/artemis/side.svg",
  19836. extra: 1192 / 1075,
  19837. bottom: 0.07
  19838. }
  19839. },
  19840. sideNsfw: {
  19841. height: math.unit(7.5, "feet"),
  19842. weight: math.unit(2, "lb"),
  19843. name: "Side (NSFW)",
  19844. image: {
  19845. source: "./media/characters/artemis/side-nsfw.svg",
  19846. extra: 1192 / 1075,
  19847. bottom: 0.07
  19848. }
  19849. },
  19850. sideNsfwer: {
  19851. height: math.unit(7.5, "feet"),
  19852. weight: math.unit(2, "lb"),
  19853. name: "Side (NSFW-er)",
  19854. image: {
  19855. source: "./media/characters/artemis/side-nsfwer.svg",
  19856. extra: 1192 / 1075,
  19857. bottom: 0.07
  19858. }
  19859. },
  19860. maw: {
  19861. height: math.unit(1.1, "feet"),
  19862. name: "Maw",
  19863. image: {
  19864. source: "./media/characters/artemis/maw.svg"
  19865. }
  19866. },
  19867. stomach: {
  19868. height: math.unit(0.95, "feet"),
  19869. name: "Stomach",
  19870. image: {
  19871. source: "./media/characters/artemis/stomach.svg"
  19872. }
  19873. },
  19874. dickCanine: {
  19875. height: math.unit(1, "feet"),
  19876. name: "Dick (Canine)",
  19877. image: {
  19878. source: "./media/characters/artemis/dick-canine.svg"
  19879. }
  19880. },
  19881. dickEquine: {
  19882. height: math.unit(0.85, "feet"),
  19883. name: "Dick (Equine)",
  19884. image: {
  19885. source: "./media/characters/artemis/dick-equine.svg"
  19886. }
  19887. },
  19888. dickExotic: {
  19889. height: math.unit(0.85, "feet"),
  19890. name: "Dick (Exotic)",
  19891. image: {
  19892. source: "./media/characters/artemis/dick-exotic.svg"
  19893. }
  19894. },
  19895. },
  19896. [
  19897. {
  19898. name: "Normal",
  19899. height: math.unit(7.5, "feet"),
  19900. default: true
  19901. },
  19902. {
  19903. name: "Enlarged",
  19904. height: math.unit(12, "feet")
  19905. },
  19906. ]
  19907. ))
  19908. characterMakers.push(() => makeCharacter(
  19909. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19910. {
  19911. front: {
  19912. height: math.unit(5 + 3 / 12, "feet"),
  19913. weight: math.unit(160, "lb"),
  19914. name: "Front",
  19915. image: {
  19916. source: "./media/characters/kira/front.svg",
  19917. extra: 906 / 786,
  19918. bottom: 0.01
  19919. }
  19920. },
  19921. back: {
  19922. height: math.unit(5 + 3 / 12, "feet"),
  19923. weight: math.unit(160, "lb"),
  19924. name: "Back",
  19925. image: {
  19926. source: "./media/characters/kira/back.svg",
  19927. extra: 882 / 757,
  19928. bottom: 0.005
  19929. }
  19930. },
  19931. frontDressed: {
  19932. height: math.unit(5 + 3 / 12, "feet"),
  19933. weight: math.unit(160, "lb"),
  19934. name: "Front (Dressed)",
  19935. image: {
  19936. source: "./media/characters/kira/front-dressed.svg",
  19937. extra: 906 / 786,
  19938. bottom: 0.01
  19939. }
  19940. },
  19941. beans: {
  19942. height: math.unit(0.92, "feet"),
  19943. name: "Beans",
  19944. image: {
  19945. source: "./media/characters/kira/beans.svg"
  19946. }
  19947. },
  19948. },
  19949. [
  19950. {
  19951. name: "Normal",
  19952. height: math.unit(5 + 3 / 12, "feet"),
  19953. default: true
  19954. },
  19955. ]
  19956. ))
  19957. characterMakers.push(() => makeCharacter(
  19958. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19959. {
  19960. front: {
  19961. height: math.unit(5 + 4 / 12, "feet"),
  19962. weight: math.unit(145, "lb"),
  19963. name: "Front",
  19964. image: {
  19965. source: "./media/characters/scramble/front.svg",
  19966. extra: 763 / 727,
  19967. bottom: 0.05
  19968. }
  19969. },
  19970. back: {
  19971. height: math.unit(5 + 4 / 12, "feet"),
  19972. weight: math.unit(145, "lb"),
  19973. name: "Back",
  19974. image: {
  19975. source: "./media/characters/scramble/back.svg",
  19976. extra: 826 / 737,
  19977. bottom: 0.002
  19978. }
  19979. },
  19980. },
  19981. [
  19982. {
  19983. name: "Normal",
  19984. height: math.unit(5 + 4 / 12, "feet"),
  19985. default: true
  19986. },
  19987. ]
  19988. ))
  19989. characterMakers.push(() => makeCharacter(
  19990. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19991. {
  19992. side: {
  19993. height: math.unit(6 + 2 / 12, "feet"),
  19994. weight: math.unit(190, "lb"),
  19995. name: "Side",
  19996. image: {
  19997. source: "./media/characters/biscuit/side.svg",
  19998. extra: 858 / 791,
  19999. bottom: 0.044
  20000. }
  20001. },
  20002. },
  20003. [
  20004. {
  20005. name: "Normal",
  20006. height: math.unit(6 + 2 / 12, "feet"),
  20007. default: true
  20008. },
  20009. ]
  20010. ))
  20011. characterMakers.push(() => makeCharacter(
  20012. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20013. {
  20014. front: {
  20015. height: math.unit(5 + 2 / 12, "feet"),
  20016. weight: math.unit(120, "lb"),
  20017. name: "Front",
  20018. image: {
  20019. source: "./media/characters/poffin/front.svg",
  20020. extra: 786 / 680,
  20021. bottom: 0.005
  20022. }
  20023. },
  20024. },
  20025. [
  20026. {
  20027. name: "Normal",
  20028. height: math.unit(5 + 2 / 12, "feet"),
  20029. default: true
  20030. },
  20031. ]
  20032. ))
  20033. characterMakers.push(() => makeCharacter(
  20034. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20035. {
  20036. front: {
  20037. height: math.unit(6 + 3 / 12, "feet"),
  20038. weight: math.unit(519, "lb"),
  20039. name: "Front",
  20040. image: {
  20041. source: "./media/characters/dhari/front.svg",
  20042. extra: 1048 / 946,
  20043. bottom: 0.015
  20044. }
  20045. },
  20046. back: {
  20047. height: math.unit(6 + 3 / 12, "feet"),
  20048. weight: math.unit(519, "lb"),
  20049. name: "Back",
  20050. image: {
  20051. source: "./media/characters/dhari/back.svg",
  20052. extra: 1048 / 931,
  20053. bottom: 0.005
  20054. }
  20055. },
  20056. frontDressed: {
  20057. height: math.unit(6 + 3 / 12, "feet"),
  20058. weight: math.unit(519, "lb"),
  20059. name: "Front (Dressed)",
  20060. image: {
  20061. source: "./media/characters/dhari/front-dressed.svg",
  20062. extra: 1713 / 1546,
  20063. bottom: 0.02
  20064. }
  20065. },
  20066. backDressed: {
  20067. height: math.unit(6 + 3 / 12, "feet"),
  20068. weight: math.unit(519, "lb"),
  20069. name: "Back (Dressed)",
  20070. image: {
  20071. source: "./media/characters/dhari/back-dressed.svg",
  20072. extra: 1699 / 1537,
  20073. bottom: 0.01
  20074. }
  20075. },
  20076. maw: {
  20077. height: math.unit(0.95, "feet"),
  20078. name: "Maw",
  20079. image: {
  20080. source: "./media/characters/dhari/maw.svg"
  20081. }
  20082. },
  20083. wereFront: {
  20084. height: math.unit(12 + 8 / 12, "feet"),
  20085. weight: math.unit(4000, "lb"),
  20086. name: "Front (Were)",
  20087. image: {
  20088. source: "./media/characters/dhari/were-front.svg",
  20089. extra: 1065 / 969,
  20090. bottom: 0.015
  20091. }
  20092. },
  20093. wereBack: {
  20094. height: math.unit(12 + 8 / 12, "feet"),
  20095. weight: math.unit(4000, "lb"),
  20096. name: "Back (Were)",
  20097. image: {
  20098. source: "./media/characters/dhari/were-back.svg",
  20099. extra: 1065 / 969,
  20100. bottom: 0.012
  20101. }
  20102. },
  20103. wereMaw: {
  20104. height: math.unit(0.625, "meters"),
  20105. name: "Maw (Were)",
  20106. image: {
  20107. source: "./media/characters/dhari/were-maw.svg"
  20108. }
  20109. },
  20110. },
  20111. [
  20112. {
  20113. name: "Normal",
  20114. height: math.unit(6 + 3 / 12, "feet"),
  20115. default: true
  20116. },
  20117. ]
  20118. ))
  20119. characterMakers.push(() => makeCharacter(
  20120. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20121. {
  20122. anthro: {
  20123. height: math.unit(5 + 7 / 12, "feet"),
  20124. weight: math.unit(175, "lb"),
  20125. name: "Anthro",
  20126. image: {
  20127. source: "./media/characters/rena-dyne/anthro.svg",
  20128. extra: 1849 / 1785,
  20129. bottom: 0.005
  20130. }
  20131. },
  20132. taur: {
  20133. height: math.unit(15 + 6 / 12, "feet"),
  20134. weight: math.unit(8000, "lb"),
  20135. name: "Taur",
  20136. image: {
  20137. source: "./media/characters/rena-dyne/taur.svg",
  20138. extra: 2315 / 2234,
  20139. bottom: 0.033
  20140. }
  20141. },
  20142. },
  20143. [
  20144. {
  20145. name: "Normal",
  20146. height: math.unit(5 + 7 / 12, "feet"),
  20147. default: true
  20148. },
  20149. ]
  20150. ))
  20151. characterMakers.push(() => makeCharacter(
  20152. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20153. {
  20154. front: {
  20155. height: math.unit(8, "feet"),
  20156. weight: math.unit(600, "lb"),
  20157. name: "Front",
  20158. image: {
  20159. source: "./media/characters/weremeep/front.svg",
  20160. extra: 967 / 862,
  20161. bottom: 0.01
  20162. }
  20163. },
  20164. },
  20165. [
  20166. {
  20167. name: "Normal",
  20168. height: math.unit(8, "feet"),
  20169. default: true
  20170. },
  20171. {
  20172. name: "Lorg",
  20173. height: math.unit(12, "feet")
  20174. },
  20175. {
  20176. name: "Oh Lawd She Comin'",
  20177. height: math.unit(20, "feet")
  20178. },
  20179. ]
  20180. ))
  20181. characterMakers.push(() => makeCharacter(
  20182. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20183. {
  20184. front: {
  20185. height: math.unit(4, "feet"),
  20186. weight: math.unit(90, "lb"),
  20187. name: "Front",
  20188. image: {
  20189. source: "./media/characters/reza/front.svg",
  20190. extra: 1183 / 1111,
  20191. bottom: 0.017
  20192. }
  20193. },
  20194. back: {
  20195. height: math.unit(4, "feet"),
  20196. weight: math.unit(90, "lb"),
  20197. name: "Back",
  20198. image: {
  20199. source: "./media/characters/reza/back.svg",
  20200. extra: 1183 / 1111,
  20201. bottom: 0.01
  20202. }
  20203. },
  20204. drake: {
  20205. height: math.unit(30, "feet"),
  20206. weight: math.unit(246960, "lb"),
  20207. name: "Drake",
  20208. image: {
  20209. source: "./media/characters/reza/drake.svg",
  20210. extra: 2350 / 2024,
  20211. bottom: 60.7 / 2403
  20212. }
  20213. },
  20214. },
  20215. [
  20216. {
  20217. name: "Normal",
  20218. height: math.unit(4, "feet"),
  20219. default: true
  20220. },
  20221. ]
  20222. ))
  20223. characterMakers.push(() => makeCharacter(
  20224. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20225. {
  20226. side: {
  20227. height: math.unit(15, "feet"),
  20228. weight: math.unit(14, "tons"),
  20229. name: "Side",
  20230. image: {
  20231. source: "./media/characters/athea/side.svg",
  20232. extra: 960 / 540,
  20233. bottom: 0.003
  20234. }
  20235. },
  20236. sitting: {
  20237. height: math.unit(6 * 2.85, "feet"),
  20238. weight: math.unit(14, "tons"),
  20239. name: "Sitting",
  20240. image: {
  20241. source: "./media/characters/athea/sitting.svg",
  20242. extra: 621 / 581,
  20243. bottom: 0.075
  20244. }
  20245. },
  20246. maw: {
  20247. height: math.unit(7.59498031496063, "feet"),
  20248. name: "Maw",
  20249. image: {
  20250. source: "./media/characters/athea/maw.svg"
  20251. }
  20252. },
  20253. },
  20254. [
  20255. {
  20256. name: "Lap Cat",
  20257. height: math.unit(2.5, "feet")
  20258. },
  20259. {
  20260. name: "Minimacro",
  20261. height: math.unit(15, "feet"),
  20262. default: true
  20263. },
  20264. {
  20265. name: "Macro",
  20266. height: math.unit(120, "feet")
  20267. },
  20268. {
  20269. name: "Macro+",
  20270. height: math.unit(640, "feet")
  20271. },
  20272. {
  20273. name: "Colossus",
  20274. height: math.unit(2.2, "miles")
  20275. },
  20276. ]
  20277. ))
  20278. characterMakers.push(() => makeCharacter(
  20279. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20280. {
  20281. front: {
  20282. height: math.unit(8 + 8 / 12, "feet"),
  20283. weight: math.unit(130, "kg"),
  20284. name: "Front",
  20285. image: {
  20286. source: "./media/characters/seroko/front.svg",
  20287. extra: 1385 / 1280,
  20288. bottom: 0.025
  20289. }
  20290. },
  20291. back: {
  20292. height: math.unit(8 + 8 / 12, "feet"),
  20293. weight: math.unit(130, "kg"),
  20294. name: "Back",
  20295. image: {
  20296. source: "./media/characters/seroko/back.svg",
  20297. extra: 1369 / 1238,
  20298. bottom: 0.018
  20299. }
  20300. },
  20301. frontDressed: {
  20302. height: math.unit(8 + 8 / 12, "feet"),
  20303. weight: math.unit(130, "kg"),
  20304. name: "Front (Dressed)",
  20305. image: {
  20306. source: "./media/characters/seroko/front-dressed.svg",
  20307. extra: 1366 / 1275,
  20308. bottom: 0.03
  20309. }
  20310. },
  20311. },
  20312. [
  20313. {
  20314. name: "Normal",
  20315. height: math.unit(8 + 8 / 12, "feet"),
  20316. default: true
  20317. },
  20318. ]
  20319. ))
  20320. characterMakers.push(() => makeCharacter(
  20321. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20322. {
  20323. front: {
  20324. height: math.unit(5.5, "feet"),
  20325. weight: math.unit(160, "lb"),
  20326. name: "Front",
  20327. image: {
  20328. source: "./media/characters/quatzi/front.svg",
  20329. extra: 2346 / 2242,
  20330. bottom: 0.015
  20331. }
  20332. },
  20333. },
  20334. [
  20335. {
  20336. name: "Normal",
  20337. height: math.unit(5.5, "feet"),
  20338. default: true
  20339. },
  20340. {
  20341. name: "Big",
  20342. height: math.unit(7.7, "feet")
  20343. },
  20344. ]
  20345. ))
  20346. characterMakers.push(() => makeCharacter(
  20347. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20348. {
  20349. front: {
  20350. height: math.unit(5 + 11 / 12, "feet"),
  20351. weight: math.unit(180, "lb"),
  20352. name: "Front",
  20353. image: {
  20354. source: "./media/characters/sen/front.svg",
  20355. extra: 1321 / 1254,
  20356. bottom: 0.015
  20357. }
  20358. },
  20359. side: {
  20360. height: math.unit(5 + 11 / 12, "feet"),
  20361. weight: math.unit(180, "lb"),
  20362. name: "Side",
  20363. image: {
  20364. source: "./media/characters/sen/side.svg",
  20365. extra: 1321 / 1254,
  20366. bottom: 0.007
  20367. }
  20368. },
  20369. back: {
  20370. height: math.unit(5 + 11 / 12, "feet"),
  20371. weight: math.unit(180, "lb"),
  20372. name: "Back",
  20373. image: {
  20374. source: "./media/characters/sen/back.svg",
  20375. extra: 1321 / 1254
  20376. }
  20377. },
  20378. },
  20379. [
  20380. {
  20381. name: "Normal",
  20382. height: math.unit(5 + 11 / 12, "feet"),
  20383. default: true
  20384. },
  20385. ]
  20386. ))
  20387. characterMakers.push(() => makeCharacter(
  20388. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20389. {
  20390. front: {
  20391. height: math.unit(166.6, "cm"),
  20392. weight: math.unit(66.6, "kg"),
  20393. name: "Front",
  20394. image: {
  20395. source: "./media/characters/fruity/front.svg",
  20396. extra: 1510 / 1386,
  20397. bottom: 0.04
  20398. }
  20399. },
  20400. back: {
  20401. height: math.unit(166.6, "cm"),
  20402. weight: math.unit(66.6, "lb"),
  20403. name: "Back",
  20404. image: {
  20405. source: "./media/characters/fruity/back.svg",
  20406. extra: 1563 / 1435,
  20407. bottom: 0.005
  20408. }
  20409. },
  20410. },
  20411. [
  20412. {
  20413. name: "Normal",
  20414. height: math.unit(166.6, "cm"),
  20415. default: true
  20416. },
  20417. {
  20418. name: "Demonic",
  20419. height: math.unit(166.6, "feet")
  20420. },
  20421. ]
  20422. ))
  20423. characterMakers.push(() => makeCharacter(
  20424. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20425. {
  20426. side: {
  20427. height: math.unit(10, "feet"),
  20428. weight: math.unit(500, "lb"),
  20429. name: "Side",
  20430. image: {
  20431. source: "./media/characters/zost/side.svg",
  20432. extra: 966 / 880,
  20433. bottom: 0.075
  20434. }
  20435. },
  20436. mawFront: {
  20437. height: math.unit(1.08, "meters"),
  20438. name: "Maw (Front)",
  20439. image: {
  20440. source: "./media/characters/zost/maw-front.svg"
  20441. }
  20442. },
  20443. mawSide: {
  20444. height: math.unit(2.66, "feet"),
  20445. name: "Maw (Side)",
  20446. image: {
  20447. source: "./media/characters/zost/maw-side.svg"
  20448. }
  20449. },
  20450. },
  20451. [
  20452. {
  20453. name: "Normal",
  20454. height: math.unit(10, "feet"),
  20455. default: true
  20456. },
  20457. ]
  20458. ))
  20459. characterMakers.push(() => makeCharacter(
  20460. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20461. {
  20462. front: {
  20463. height: math.unit(5 + 4 / 12, "feet"),
  20464. weight: math.unit(120, "lb"),
  20465. name: "Front",
  20466. image: {
  20467. source: "./media/characters/luci/front.svg",
  20468. extra: 1985 / 1884,
  20469. bottom: 0.04
  20470. }
  20471. },
  20472. back: {
  20473. height: math.unit(5 + 4 / 12, "feet"),
  20474. weight: math.unit(120, "lb"),
  20475. name: "Back",
  20476. image: {
  20477. source: "./media/characters/luci/back.svg",
  20478. extra: 1892 / 1791,
  20479. bottom: 0.002
  20480. }
  20481. },
  20482. },
  20483. [
  20484. {
  20485. name: "Normal",
  20486. height: math.unit(5 + 4 / 12, "feet"),
  20487. default: true
  20488. },
  20489. ]
  20490. ))
  20491. characterMakers.push(() => makeCharacter(
  20492. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20493. {
  20494. front: {
  20495. height: math.unit(1500, "feet"),
  20496. weight: math.unit(3.8e6, "tons"),
  20497. name: "Front",
  20498. image: {
  20499. source: "./media/characters/2th/front.svg",
  20500. extra: 3489 / 3350,
  20501. bottom: 0.1
  20502. }
  20503. },
  20504. foot: {
  20505. height: math.unit(461, "feet"),
  20506. name: "Foot",
  20507. image: {
  20508. source: "./media/characters/2th/foot.svg"
  20509. }
  20510. },
  20511. },
  20512. [
  20513. {
  20514. name: "\"Micro\"",
  20515. height: math.unit(15 + 7 / 12, "feet")
  20516. },
  20517. {
  20518. name: "Normal",
  20519. height: math.unit(1500, "feet"),
  20520. default: true
  20521. },
  20522. {
  20523. name: "Macro",
  20524. height: math.unit(5000, "feet")
  20525. },
  20526. {
  20527. name: "Megamacro",
  20528. height: math.unit(15, "miles")
  20529. },
  20530. {
  20531. name: "Gigamacro",
  20532. height: math.unit(4000, "miles")
  20533. },
  20534. {
  20535. name: "Galactic",
  20536. height: math.unit(50, "AU")
  20537. },
  20538. ]
  20539. ))
  20540. characterMakers.push(() => makeCharacter(
  20541. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20542. {
  20543. front: {
  20544. height: math.unit(5 + 6 / 12, "feet"),
  20545. weight: math.unit(220, "lb"),
  20546. name: "Front",
  20547. image: {
  20548. source: "./media/characters/amethyst/front.svg",
  20549. extra: 2078 / 2040,
  20550. bottom: 0.045
  20551. }
  20552. },
  20553. back: {
  20554. height: math.unit(5 + 6 / 12, "feet"),
  20555. weight: math.unit(220, "lb"),
  20556. name: "Back",
  20557. image: {
  20558. source: "./media/characters/amethyst/back.svg",
  20559. extra: 2021 / 1989,
  20560. bottom: 0.02
  20561. }
  20562. },
  20563. },
  20564. [
  20565. {
  20566. name: "Normal",
  20567. height: math.unit(5 + 6 / 12, "feet"),
  20568. default: true
  20569. },
  20570. ]
  20571. ))
  20572. characterMakers.push(() => makeCharacter(
  20573. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20574. {
  20575. front: {
  20576. height: math.unit(4 + 11 / 12, "feet"),
  20577. weight: math.unit(120, "lb"),
  20578. name: "Front",
  20579. image: {
  20580. source: "./media/characters/yumi-akiyama/front.svg",
  20581. extra: 1327 / 1235,
  20582. bottom: 0.02
  20583. }
  20584. },
  20585. back: {
  20586. height: math.unit(4 + 11 / 12, "feet"),
  20587. weight: math.unit(120, "lb"),
  20588. name: "Back",
  20589. image: {
  20590. source: "./media/characters/yumi-akiyama/back.svg",
  20591. extra: 1287 / 1245,
  20592. bottom: 0.002
  20593. }
  20594. },
  20595. },
  20596. [
  20597. {
  20598. name: "Galactic",
  20599. height: math.unit(50, "galaxies"),
  20600. default: true
  20601. },
  20602. {
  20603. name: "Universal",
  20604. height: math.unit(100, "universes")
  20605. },
  20606. ]
  20607. ))
  20608. characterMakers.push(() => makeCharacter(
  20609. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20610. {
  20611. front: {
  20612. height: math.unit(8, "feet"),
  20613. weight: math.unit(500, "lb"),
  20614. name: "Front",
  20615. image: {
  20616. source: "./media/characters/rifter-yrmori/front.svg",
  20617. extra: 1180 / 1125,
  20618. bottom: 0.02
  20619. }
  20620. },
  20621. back: {
  20622. height: math.unit(8, "feet"),
  20623. weight: math.unit(500, "lb"),
  20624. name: "Back",
  20625. image: {
  20626. source: "./media/characters/rifter-yrmori/back.svg",
  20627. extra: 1190 / 1145,
  20628. bottom: 0.001
  20629. }
  20630. },
  20631. wings: {
  20632. height: math.unit(7.75, "feet"),
  20633. weight: math.unit(500, "lb"),
  20634. name: "Wings",
  20635. image: {
  20636. source: "./media/characters/rifter-yrmori/wings.svg",
  20637. extra: 1357 / 1285
  20638. }
  20639. },
  20640. maw: {
  20641. height: math.unit(0.8, "feet"),
  20642. name: "Maw",
  20643. image: {
  20644. source: "./media/characters/rifter-yrmori/maw.svg"
  20645. }
  20646. },
  20647. mawfront: {
  20648. height: math.unit(1.45, "feet"),
  20649. name: "Maw (Front)",
  20650. image: {
  20651. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20652. }
  20653. },
  20654. },
  20655. [
  20656. {
  20657. name: "Normal",
  20658. height: math.unit(8, "feet"),
  20659. default: true
  20660. },
  20661. {
  20662. name: "Macro",
  20663. height: math.unit(42, "meters")
  20664. },
  20665. ]
  20666. ))
  20667. characterMakers.push(() => makeCharacter(
  20668. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20669. {
  20670. were: {
  20671. height: math.unit(25 + 6 / 12, "feet"),
  20672. weight: math.unit(10000, "lb"),
  20673. name: "Were",
  20674. image: {
  20675. source: "./media/characters/tahajin/were.svg",
  20676. extra: 801 / 770,
  20677. bottom: 0.042
  20678. }
  20679. },
  20680. aquatic: {
  20681. height: math.unit(6 + 4 / 12, "feet"),
  20682. weight: math.unit(160, "lb"),
  20683. name: "Aquatic",
  20684. image: {
  20685. source: "./media/characters/tahajin/aquatic.svg",
  20686. extra: 572 / 542,
  20687. bottom: 0.04
  20688. }
  20689. },
  20690. chow: {
  20691. height: math.unit(8 + 11 / 12, "feet"),
  20692. weight: math.unit(450, "lb"),
  20693. name: "Chow",
  20694. image: {
  20695. source: "./media/characters/tahajin/chow.svg",
  20696. extra: 660 / 640,
  20697. bottom: 0.015
  20698. }
  20699. },
  20700. demiNaga: {
  20701. height: math.unit(6 + 8 / 12, "feet"),
  20702. weight: math.unit(300, "lb"),
  20703. name: "Demi Naga",
  20704. image: {
  20705. source: "./media/characters/tahajin/demi-naga.svg",
  20706. extra: 643 / 615,
  20707. bottom: 0.1
  20708. }
  20709. },
  20710. data: {
  20711. height: math.unit(5, "inches"),
  20712. weight: math.unit(0.1, "lb"),
  20713. name: "Data",
  20714. image: {
  20715. source: "./media/characters/tahajin/data.svg"
  20716. }
  20717. },
  20718. fluu: {
  20719. height: math.unit(5 + 7 / 12, "feet"),
  20720. weight: math.unit(140, "lb"),
  20721. name: "Fluu",
  20722. image: {
  20723. source: "./media/characters/tahajin/fluu.svg",
  20724. extra: 628 / 592,
  20725. bottom: 0.02
  20726. }
  20727. },
  20728. starWarrior: {
  20729. height: math.unit(4 + 5 / 12, "feet"),
  20730. weight: math.unit(50, "lb"),
  20731. name: "Star Warrior",
  20732. image: {
  20733. source: "./media/characters/tahajin/star-warrior.svg"
  20734. }
  20735. },
  20736. },
  20737. [
  20738. {
  20739. name: "Normal",
  20740. height: math.unit(25 + 6 / 12, "feet"),
  20741. default: true
  20742. },
  20743. ]
  20744. ))
  20745. characterMakers.push(() => makeCharacter(
  20746. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20747. {
  20748. front: {
  20749. height: math.unit(8, "feet"),
  20750. weight: math.unit(350, "lb"),
  20751. name: "Front",
  20752. image: {
  20753. source: "./media/characters/gabira/front.svg",
  20754. extra: 608 / 580,
  20755. bottom: 0.03
  20756. }
  20757. },
  20758. back: {
  20759. height: math.unit(8, "feet"),
  20760. weight: math.unit(350, "lb"),
  20761. name: "Back",
  20762. image: {
  20763. source: "./media/characters/gabira/back.svg",
  20764. extra: 608 / 580,
  20765. bottom: 0.03
  20766. }
  20767. },
  20768. },
  20769. [
  20770. {
  20771. name: "Normal",
  20772. height: math.unit(8, "feet"),
  20773. default: true
  20774. },
  20775. ]
  20776. ))
  20777. characterMakers.push(() => makeCharacter(
  20778. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20779. {
  20780. front: {
  20781. height: math.unit(5 + 3 / 12, "feet"),
  20782. weight: math.unit(137, "lb"),
  20783. name: "Front",
  20784. image: {
  20785. source: "./media/characters/sasha-katraine/front.svg",
  20786. bottom: 0.045
  20787. }
  20788. },
  20789. },
  20790. [
  20791. {
  20792. name: "Micro",
  20793. height: math.unit(5, "inches")
  20794. },
  20795. {
  20796. name: "Normal",
  20797. height: math.unit(5 + 3 / 12, "feet"),
  20798. default: true
  20799. },
  20800. ]
  20801. ))
  20802. characterMakers.push(() => makeCharacter(
  20803. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20804. {
  20805. side: {
  20806. height: math.unit(4, "inches"),
  20807. weight: math.unit(200, "grams"),
  20808. name: "Side",
  20809. image: {
  20810. source: "./media/characters/der/side.svg",
  20811. extra: 719 / 400,
  20812. bottom: 30.6 / 749.9187
  20813. }
  20814. },
  20815. },
  20816. [
  20817. {
  20818. name: "Micro",
  20819. height: math.unit(4, "inches"),
  20820. default: true
  20821. },
  20822. ]
  20823. ))
  20824. characterMakers.push(() => makeCharacter(
  20825. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20826. {
  20827. side: {
  20828. height: math.unit(30, "meters"),
  20829. weight: math.unit(700, "tonnes"),
  20830. name: "Side",
  20831. image: {
  20832. source: "./media/characters/fixerdragon/side.svg",
  20833. extra: (1293.0514 - 116.03) / 1106.86,
  20834. bottom: 116.03 / 1293.0514
  20835. }
  20836. },
  20837. },
  20838. [
  20839. {
  20840. name: "Planck",
  20841. height: math.unit(1.6e-35, "meters")
  20842. },
  20843. {
  20844. name: "Micro",
  20845. height: math.unit(0.4, "meters")
  20846. },
  20847. {
  20848. name: "Normal",
  20849. height: math.unit(30, "meters"),
  20850. default: true
  20851. },
  20852. {
  20853. name: "Megamacro",
  20854. height: math.unit(1.2, "megameters")
  20855. },
  20856. {
  20857. name: "Teramacro",
  20858. height: math.unit(130, "terameters")
  20859. },
  20860. {
  20861. name: "Yottamacro",
  20862. height: math.unit(6200, "yottameters")
  20863. },
  20864. ]
  20865. ));
  20866. characterMakers.push(() => makeCharacter(
  20867. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20868. {
  20869. front: {
  20870. height: math.unit(8, "feet"),
  20871. weight: math.unit(250, "lb"),
  20872. name: "Front",
  20873. image: {
  20874. source: "./media/characters/kite/front.svg",
  20875. extra: 2796 / 2659,
  20876. bottom: 0.002
  20877. }
  20878. },
  20879. },
  20880. [
  20881. {
  20882. name: "Normal",
  20883. height: math.unit(8, "feet"),
  20884. default: true
  20885. },
  20886. {
  20887. name: "Macro",
  20888. height: math.unit(360, "feet")
  20889. },
  20890. {
  20891. name: "Megamacro",
  20892. height: math.unit(1500, "feet")
  20893. },
  20894. ]
  20895. ))
  20896. characterMakers.push(() => makeCharacter(
  20897. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20898. {
  20899. front: {
  20900. height: math.unit(5 + 10 / 12, "feet"),
  20901. weight: math.unit(150, "lb"),
  20902. name: "Front",
  20903. image: {
  20904. source: "./media/characters/poojawa-vynar/front.svg",
  20905. extra: (1506.1547 - 55) / 1356.6,
  20906. bottom: 55 / 1506.1547
  20907. }
  20908. },
  20909. frontTailless: {
  20910. height: math.unit(5 + 10 / 12, "feet"),
  20911. weight: math.unit(150, "lb"),
  20912. name: "Front (Tailless)",
  20913. image: {
  20914. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20915. extra: (1506.1547 - 55) / 1356.6,
  20916. bottom: 55 / 1506.1547
  20917. }
  20918. },
  20919. },
  20920. [
  20921. {
  20922. name: "Normal",
  20923. height: math.unit(5 + 10 / 12, "feet"),
  20924. default: true
  20925. },
  20926. ]
  20927. ))
  20928. characterMakers.push(() => makeCharacter(
  20929. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20930. {
  20931. front: {
  20932. height: math.unit(293, "meters"),
  20933. weight: math.unit(70400, "tons"),
  20934. name: "Front",
  20935. image: {
  20936. source: "./media/characters/violette/front.svg",
  20937. extra: 1227 / 1180,
  20938. bottom: 0.005
  20939. }
  20940. },
  20941. back: {
  20942. height: math.unit(293, "meters"),
  20943. weight: math.unit(70400, "tons"),
  20944. name: "Back",
  20945. image: {
  20946. source: "./media/characters/violette/back.svg",
  20947. extra: 1227 / 1180,
  20948. bottom: 0.005
  20949. }
  20950. },
  20951. },
  20952. [
  20953. {
  20954. name: "Macro",
  20955. height: math.unit(293, "meters"),
  20956. default: true
  20957. },
  20958. ]
  20959. ))
  20960. characterMakers.push(() => makeCharacter(
  20961. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20962. {
  20963. front: {
  20964. height: math.unit(1050, "feet"),
  20965. weight: math.unit(200000, "tons"),
  20966. name: "Front",
  20967. image: {
  20968. source: "./media/characters/alessandra/front.svg",
  20969. extra: 960 / 912,
  20970. bottom: 0.06
  20971. }
  20972. },
  20973. },
  20974. [
  20975. {
  20976. name: "Macro",
  20977. height: math.unit(1050, "feet")
  20978. },
  20979. {
  20980. name: "Macro+",
  20981. height: math.unit(900, "meters"),
  20982. default: true
  20983. },
  20984. ]
  20985. ))
  20986. characterMakers.push(() => makeCharacter(
  20987. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20988. {
  20989. front: {
  20990. height: math.unit(5, "feet"),
  20991. weight: math.unit(187, "lb"),
  20992. name: "Front",
  20993. image: {
  20994. source: "./media/characters/person/front.svg",
  20995. extra: 3087 / 2945,
  20996. bottom: 91 / 3181
  20997. }
  20998. },
  20999. },
  21000. [
  21001. {
  21002. name: "Micro",
  21003. height: math.unit(3, "inches")
  21004. },
  21005. {
  21006. name: "Normal",
  21007. height: math.unit(5, "feet"),
  21008. default: true
  21009. },
  21010. {
  21011. name: "Macro",
  21012. height: math.unit(90, "feet")
  21013. },
  21014. {
  21015. name: "Max Size",
  21016. height: math.unit(280, "feet")
  21017. },
  21018. ]
  21019. ))
  21020. characterMakers.push(() => makeCharacter(
  21021. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21022. {
  21023. front: {
  21024. height: math.unit(4.5, "meters"),
  21025. weight: math.unit(3200, "lb"),
  21026. name: "Front",
  21027. image: {
  21028. source: "./media/characters/ty/front.svg",
  21029. extra: 1038 / 960,
  21030. bottom: 31.156 / 1068
  21031. }
  21032. },
  21033. back: {
  21034. height: math.unit(4.5, "meters"),
  21035. weight: math.unit(3200, "lb"),
  21036. name: "Back",
  21037. image: {
  21038. source: "./media/characters/ty/back.svg",
  21039. extra: 1044 / 966,
  21040. bottom: 7.48 / 1049
  21041. }
  21042. },
  21043. },
  21044. [
  21045. {
  21046. name: "Normal",
  21047. height: math.unit(4.5, "meters"),
  21048. default: true
  21049. },
  21050. ]
  21051. ))
  21052. characterMakers.push(() => makeCharacter(
  21053. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21054. {
  21055. front: {
  21056. height: math.unit(5 + 4 / 12, "feet"),
  21057. weight: math.unit(115, "lb"),
  21058. name: "Front",
  21059. image: {
  21060. source: "./media/characters/rocky/front.svg",
  21061. extra: 1012 / 975,
  21062. bottom: 54 / 1066
  21063. }
  21064. },
  21065. },
  21066. [
  21067. {
  21068. name: "Normal",
  21069. height: math.unit(5 + 4 / 12, "feet"),
  21070. default: true
  21071. },
  21072. ]
  21073. ))
  21074. characterMakers.push(() => makeCharacter(
  21075. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21076. {
  21077. upright: {
  21078. height: math.unit(6, "meters"),
  21079. weight: math.unit(4000, "kg"),
  21080. name: "Upright",
  21081. image: {
  21082. source: "./media/characters/ruin/upright.svg",
  21083. extra: 668 / 661,
  21084. bottom: 42 / 799.8396
  21085. }
  21086. },
  21087. },
  21088. [
  21089. {
  21090. name: "Normal",
  21091. height: math.unit(6, "meters"),
  21092. default: true
  21093. },
  21094. ]
  21095. ))
  21096. characterMakers.push(() => makeCharacter(
  21097. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21098. {
  21099. front: {
  21100. height: math.unit(5, "feet"),
  21101. weight: math.unit(106, "lb"),
  21102. name: "Front",
  21103. image: {
  21104. source: "./media/characters/robin/front.svg",
  21105. extra: 862 / 799,
  21106. bottom: 42.4 / 914.8856
  21107. }
  21108. },
  21109. },
  21110. [
  21111. {
  21112. name: "Normal",
  21113. height: math.unit(5, "feet"),
  21114. default: true
  21115. },
  21116. ]
  21117. ))
  21118. characterMakers.push(() => makeCharacter(
  21119. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21120. {
  21121. side: {
  21122. height: math.unit(3, "feet"),
  21123. weight: math.unit(225, "lb"),
  21124. name: "Side",
  21125. image: {
  21126. source: "./media/characters/saian/side.svg",
  21127. extra: 566 / 356,
  21128. bottom: 79.7 / 643
  21129. }
  21130. },
  21131. maw: {
  21132. height: math.unit(2.85, "feet"),
  21133. name: "Maw",
  21134. image: {
  21135. source: "./media/characters/saian/maw.svg"
  21136. }
  21137. },
  21138. },
  21139. [
  21140. {
  21141. name: "Normal",
  21142. height: math.unit(3, "feet"),
  21143. default: true
  21144. },
  21145. ]
  21146. ))
  21147. characterMakers.push(() => makeCharacter(
  21148. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21149. {
  21150. side: {
  21151. height: math.unit(8, "feet"),
  21152. weight: math.unit(300, "lb"),
  21153. name: "Side",
  21154. image: {
  21155. source: "./media/characters/equus-silvermane/side.svg",
  21156. extra: 2176 / 2050,
  21157. bottom: 65.7 / 2245
  21158. }
  21159. },
  21160. front: {
  21161. height: math.unit(8, "feet"),
  21162. weight: math.unit(300, "lb"),
  21163. name: "Front",
  21164. image: {
  21165. source: "./media/characters/equus-silvermane/front.svg",
  21166. extra: 4633 / 4400,
  21167. bottom: 71.3 / 4706.915
  21168. }
  21169. },
  21170. sideStepping: {
  21171. height: math.unit(8, "feet"),
  21172. weight: math.unit(300, "lb"),
  21173. name: "Side (Stepping)",
  21174. image: {
  21175. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21176. extra: 1968 / 1860,
  21177. bottom: 16.4 / 1989
  21178. }
  21179. },
  21180. },
  21181. [
  21182. {
  21183. name: "Normal",
  21184. height: math.unit(8, "feet")
  21185. },
  21186. {
  21187. name: "Minimacro",
  21188. height: math.unit(75, "feet"),
  21189. default: true
  21190. },
  21191. {
  21192. name: "Macro",
  21193. height: math.unit(150, "feet")
  21194. },
  21195. {
  21196. name: "Macro+",
  21197. height: math.unit(1000, "feet")
  21198. },
  21199. {
  21200. name: "Megamacro",
  21201. height: math.unit(1, "mile")
  21202. },
  21203. ]
  21204. ))
  21205. characterMakers.push(() => makeCharacter(
  21206. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21207. {
  21208. side: {
  21209. height: math.unit(20, "feet"),
  21210. weight: math.unit(30000, "kg"),
  21211. name: "Side",
  21212. image: {
  21213. source: "./media/characters/windar/side.svg",
  21214. extra: 1491 / 1248,
  21215. bottom: 82.56 / 1568
  21216. }
  21217. },
  21218. },
  21219. [
  21220. {
  21221. name: "Normal",
  21222. height: math.unit(20, "feet"),
  21223. default: true
  21224. },
  21225. ]
  21226. ))
  21227. characterMakers.push(() => makeCharacter(
  21228. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21229. {
  21230. side: {
  21231. height: math.unit(15.66, "feet"),
  21232. weight: math.unit(150, "lb"),
  21233. name: "Side",
  21234. image: {
  21235. source: "./media/characters/melody/side.svg",
  21236. extra: 1097 / 944,
  21237. bottom: 11.8 / 1109
  21238. }
  21239. },
  21240. sideOutfit: {
  21241. height: math.unit(15.66, "feet"),
  21242. weight: math.unit(150, "lb"),
  21243. name: "Side (Outfit)",
  21244. image: {
  21245. source: "./media/characters/melody/side-outfit.svg",
  21246. extra: 1097 / 944,
  21247. bottom: 11.8 / 1109
  21248. }
  21249. },
  21250. },
  21251. [
  21252. {
  21253. name: "Normal",
  21254. height: math.unit(15.66, "feet"),
  21255. default: true
  21256. },
  21257. ]
  21258. ))
  21259. characterMakers.push(() => makeCharacter(
  21260. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21261. {
  21262. front: {
  21263. height: math.unit(8, "feet"),
  21264. weight: math.unit(325, "lb"),
  21265. name: "Front",
  21266. image: {
  21267. source: "./media/characters/windera/front.svg",
  21268. extra: 3180 / 2845,
  21269. bottom: 178 / 3365
  21270. }
  21271. },
  21272. },
  21273. [
  21274. {
  21275. name: "Normal",
  21276. height: math.unit(8, "feet"),
  21277. default: true
  21278. },
  21279. ]
  21280. ))
  21281. characterMakers.push(() => makeCharacter(
  21282. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21283. {
  21284. front: {
  21285. height: math.unit(28.75, "feet"),
  21286. weight: math.unit(2000, "kg"),
  21287. name: "Front",
  21288. image: {
  21289. source: "./media/characters/sonear/front.svg",
  21290. extra: 1041.1 / 964.9,
  21291. bottom: 53.7 / 1096.6
  21292. }
  21293. },
  21294. },
  21295. [
  21296. {
  21297. name: "Normal",
  21298. height: math.unit(28.75, "feet"),
  21299. default: true
  21300. },
  21301. ]
  21302. ))
  21303. characterMakers.push(() => makeCharacter(
  21304. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21305. {
  21306. side: {
  21307. height: math.unit(25.5, "feet"),
  21308. weight: math.unit(23000, "kg"),
  21309. name: "Side",
  21310. image: {
  21311. source: "./media/characters/kanara/side.svg"
  21312. }
  21313. },
  21314. },
  21315. [
  21316. {
  21317. name: "Normal",
  21318. height: math.unit(25.5, "feet"),
  21319. default: true
  21320. },
  21321. ]
  21322. ))
  21323. characterMakers.push(() => makeCharacter(
  21324. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21325. {
  21326. side: {
  21327. height: math.unit(10, "feet"),
  21328. weight: math.unit(1000, "kg"),
  21329. name: "Side",
  21330. image: {
  21331. source: "./media/characters/ereus/side.svg",
  21332. extra: 1157 / 959,
  21333. bottom: 153 / 1312.5
  21334. }
  21335. },
  21336. },
  21337. [
  21338. {
  21339. name: "Normal",
  21340. height: math.unit(10, "feet"),
  21341. default: true
  21342. },
  21343. ]
  21344. ))
  21345. characterMakers.push(() => makeCharacter(
  21346. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21347. {
  21348. side: {
  21349. height: math.unit(4.5, "feet"),
  21350. weight: math.unit(500, "lb"),
  21351. name: "Side",
  21352. image: {
  21353. source: "./media/characters/e-ter/side.svg",
  21354. extra: 1550 / 1248,
  21355. bottom: 146 / 1694
  21356. }
  21357. },
  21358. },
  21359. [
  21360. {
  21361. name: "Normal",
  21362. height: math.unit(4.5, "feet"),
  21363. default: true
  21364. },
  21365. ]
  21366. ))
  21367. characterMakers.push(() => makeCharacter(
  21368. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21369. {
  21370. side: {
  21371. height: math.unit(9.7, "feet"),
  21372. weight: math.unit(4000, "kg"),
  21373. name: "Side",
  21374. image: {
  21375. source: "./media/characters/yamie/side.svg"
  21376. }
  21377. },
  21378. },
  21379. [
  21380. {
  21381. name: "Normal",
  21382. height: math.unit(9.7, "feet"),
  21383. default: true
  21384. },
  21385. ]
  21386. ))
  21387. characterMakers.push(() => makeCharacter(
  21388. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21389. {
  21390. front: {
  21391. height: math.unit(50, "feet"),
  21392. weight: math.unit(50000, "kg"),
  21393. name: "Front",
  21394. image: {
  21395. source: "./media/characters/anders/front.svg",
  21396. extra: 570 / 539,
  21397. bottom: 14.7 / 586.7
  21398. }
  21399. },
  21400. },
  21401. [
  21402. {
  21403. name: "Large",
  21404. height: math.unit(50, "feet")
  21405. },
  21406. {
  21407. name: "Macro",
  21408. height: math.unit(2000, "feet"),
  21409. default: true
  21410. },
  21411. {
  21412. name: "Megamacro",
  21413. height: math.unit(12, "miles")
  21414. },
  21415. ]
  21416. ))
  21417. characterMakers.push(() => makeCharacter(
  21418. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21419. {
  21420. front: {
  21421. height: math.unit(7 + 2 / 12, "feet"),
  21422. weight: math.unit(300, "lb"),
  21423. name: "Front",
  21424. image: {
  21425. source: "./media/characters/reban/front.svg",
  21426. extra: 516 / 487,
  21427. bottom: 42.82 / 558.356
  21428. }
  21429. },
  21430. dick: {
  21431. height: math.unit(7 / 5, "feet"),
  21432. name: "Dick",
  21433. image: {
  21434. source: "./media/characters/reban/dick.svg"
  21435. }
  21436. },
  21437. },
  21438. [
  21439. {
  21440. name: "Natural Height",
  21441. height: math.unit(7 + 2 / 12, "feet")
  21442. },
  21443. {
  21444. name: "Macro",
  21445. height: math.unit(500, "feet"),
  21446. default: true
  21447. },
  21448. {
  21449. name: "Canon Height",
  21450. height: math.unit(50, "AU")
  21451. },
  21452. ]
  21453. ))
  21454. characterMakers.push(() => makeCharacter(
  21455. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21456. {
  21457. front: {
  21458. height: math.unit(6, "feet"),
  21459. weight: math.unit(150, "lb"),
  21460. name: "Front",
  21461. image: {
  21462. source: "./media/characters/terrance-keayes/front.svg",
  21463. extra: 1.005,
  21464. bottom: 151 / 1615
  21465. }
  21466. },
  21467. side: {
  21468. height: math.unit(6, "feet"),
  21469. weight: math.unit(150, "lb"),
  21470. name: "Side",
  21471. image: {
  21472. source: "./media/characters/terrance-keayes/side.svg",
  21473. extra: 1.005,
  21474. bottom: 129.4 / 1544
  21475. }
  21476. },
  21477. back: {
  21478. height: math.unit(6, "feet"),
  21479. weight: math.unit(150, "lb"),
  21480. name: "Back",
  21481. image: {
  21482. source: "./media/characters/terrance-keayes/back.svg",
  21483. extra: 1.005,
  21484. bottom: 58.4 / 1557.3
  21485. }
  21486. },
  21487. dick: {
  21488. height: math.unit(6 * 0.208, "feet"),
  21489. name: "Dick",
  21490. image: {
  21491. source: "./media/characters/terrance-keayes/dick.svg"
  21492. }
  21493. },
  21494. },
  21495. [
  21496. {
  21497. name: "Canon Height",
  21498. height: math.unit(35, "miles"),
  21499. default: true
  21500. },
  21501. ]
  21502. ))
  21503. characterMakers.push(() => makeCharacter(
  21504. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21505. {
  21506. front: {
  21507. height: math.unit(6, "feet"),
  21508. weight: math.unit(150, "lb"),
  21509. name: "Front",
  21510. image: {
  21511. source: "./media/characters/ofelia/front.svg",
  21512. extra: 546 / 541,
  21513. bottom: 39 / 583
  21514. }
  21515. },
  21516. back: {
  21517. height: math.unit(6, "feet"),
  21518. weight: math.unit(150, "lb"),
  21519. name: "Back",
  21520. image: {
  21521. source: "./media/characters/ofelia/back.svg",
  21522. extra: 564 / 559.5,
  21523. bottom: 8.69 / 573.02
  21524. }
  21525. },
  21526. maw: {
  21527. height: math.unit(1, "feet"),
  21528. name: "Maw",
  21529. image: {
  21530. source: "./media/characters/ofelia/maw.svg"
  21531. }
  21532. },
  21533. foot: {
  21534. height: math.unit(1.949, "feet"),
  21535. name: "Foot",
  21536. image: {
  21537. source: "./media/characters/ofelia/foot.svg"
  21538. }
  21539. },
  21540. },
  21541. [
  21542. {
  21543. name: "Canon Height",
  21544. height: math.unit(2000, "miles"),
  21545. default: true
  21546. },
  21547. ]
  21548. ))
  21549. characterMakers.push(() => makeCharacter(
  21550. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21551. {
  21552. front: {
  21553. height: math.unit(6, "feet"),
  21554. weight: math.unit(150, "lb"),
  21555. name: "Front",
  21556. image: {
  21557. source: "./media/characters/samuel/front.svg",
  21558. extra: 265 / 258,
  21559. bottom: 2 / 266.1566
  21560. }
  21561. },
  21562. },
  21563. [
  21564. {
  21565. name: "Macro",
  21566. height: math.unit(100, "feet"),
  21567. default: true
  21568. },
  21569. {
  21570. name: "Full Size",
  21571. height: math.unit(1000, "miles")
  21572. },
  21573. ]
  21574. ))
  21575. characterMakers.push(() => makeCharacter(
  21576. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21577. {
  21578. front: {
  21579. height: math.unit(6, "feet"),
  21580. weight: math.unit(300, "lb"),
  21581. name: "Front",
  21582. image: {
  21583. source: "./media/characters/beishir-kiel/front.svg",
  21584. extra: 569 / 547,
  21585. bottom: 41.9 / 609
  21586. }
  21587. },
  21588. maw: {
  21589. height: math.unit(6 * 0.202, "feet"),
  21590. name: "Maw",
  21591. image: {
  21592. source: "./media/characters/beishir-kiel/maw.svg"
  21593. }
  21594. },
  21595. },
  21596. [
  21597. {
  21598. name: "Macro",
  21599. height: math.unit(300, "feet"),
  21600. default: true
  21601. },
  21602. ]
  21603. ))
  21604. characterMakers.push(() => makeCharacter(
  21605. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21606. {
  21607. front: {
  21608. height: math.unit(5 + 8 / 12, "feet"),
  21609. weight: math.unit(120, "lb"),
  21610. name: "Front",
  21611. image: {
  21612. source: "./media/characters/logan-grey/front.svg",
  21613. extra: 2539 / 2393,
  21614. bottom: 97.6 / 2636.37
  21615. }
  21616. },
  21617. frontAlt: {
  21618. height: math.unit(5 + 8 / 12, "feet"),
  21619. weight: math.unit(120, "lb"),
  21620. name: "Front (Alt)",
  21621. image: {
  21622. source: "./media/characters/logan-grey/front-alt.svg",
  21623. extra: 958 / 893,
  21624. bottom: 15 / 970.768
  21625. }
  21626. },
  21627. back: {
  21628. height: math.unit(5 + 8 / 12, "feet"),
  21629. weight: math.unit(120, "lb"),
  21630. name: "Back",
  21631. image: {
  21632. source: "./media/characters/logan-grey/back.svg",
  21633. extra: 958 / 893,
  21634. bottom: 2.1881 / 970.9788
  21635. }
  21636. },
  21637. dick: {
  21638. height: math.unit(1.437, "feet"),
  21639. name: "Dick",
  21640. image: {
  21641. source: "./media/characters/logan-grey/dick.svg"
  21642. }
  21643. },
  21644. },
  21645. [
  21646. {
  21647. name: "Normal",
  21648. height: math.unit(5 + 8 / 12, "feet")
  21649. },
  21650. {
  21651. name: "The 500 Foot Femboy",
  21652. height: math.unit(500, "feet"),
  21653. default: true
  21654. },
  21655. {
  21656. name: "Megmacro",
  21657. height: math.unit(20, "miles")
  21658. },
  21659. ]
  21660. ))
  21661. characterMakers.push(() => makeCharacter(
  21662. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21663. {
  21664. front: {
  21665. height: math.unit(8 + 2 / 12, "feet"),
  21666. weight: math.unit(275, "lb"),
  21667. name: "Front",
  21668. image: {
  21669. source: "./media/characters/draganta/front.svg",
  21670. extra: 1177 / 1135,
  21671. bottom: 33.46 / 1212.1
  21672. }
  21673. },
  21674. },
  21675. [
  21676. {
  21677. name: "Normal",
  21678. height: math.unit(8 + 6 / 12, "feet"),
  21679. default: true
  21680. },
  21681. {
  21682. name: "Macro",
  21683. height: math.unit(150, "feet")
  21684. },
  21685. {
  21686. name: "Megamacro",
  21687. height: math.unit(1000, "miles")
  21688. },
  21689. ]
  21690. ))
  21691. characterMakers.push(() => makeCharacter(
  21692. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21693. {
  21694. front: {
  21695. height: math.unit(1.72, "m"),
  21696. weight: math.unit(80, "lb"),
  21697. name: "Front",
  21698. image: {
  21699. source: "./media/characters/voski/front.svg",
  21700. extra: 2076.22 / 2022.4,
  21701. bottom: 102.7 / 2177.3866
  21702. }
  21703. },
  21704. frontNsfw: {
  21705. height: math.unit(1.72, "m"),
  21706. weight: math.unit(80, "lb"),
  21707. name: "Front (NSFW)",
  21708. image: {
  21709. source: "./media/characters/voski/front-nsfw.svg",
  21710. extra: 2076.22 / 2022.4,
  21711. bottom: 102.7 / 2177.3866
  21712. }
  21713. },
  21714. back: {
  21715. height: math.unit(1.72, "m"),
  21716. weight: math.unit(80, "lb"),
  21717. name: "Back",
  21718. image: {
  21719. source: "./media/characters/voski/back.svg",
  21720. extra: 2104 / 2051,
  21721. bottom: 10.45 / 2113.63
  21722. }
  21723. },
  21724. },
  21725. [
  21726. {
  21727. name: "Normal",
  21728. height: math.unit(1.72, "m")
  21729. },
  21730. {
  21731. name: "Macro",
  21732. height: math.unit(55, "m"),
  21733. default: true
  21734. },
  21735. {
  21736. name: "Macro+",
  21737. height: math.unit(300, "m")
  21738. },
  21739. {
  21740. name: "Macro++",
  21741. height: math.unit(700, "m")
  21742. },
  21743. {
  21744. name: "Macro+++",
  21745. height: math.unit(4500, "m")
  21746. },
  21747. {
  21748. name: "Macro++++",
  21749. height: math.unit(45, "km")
  21750. },
  21751. {
  21752. name: "Macro+++++",
  21753. height: math.unit(1220, "km")
  21754. },
  21755. ]
  21756. ))
  21757. characterMakers.push(() => makeCharacter(
  21758. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21759. {
  21760. front: {
  21761. height: math.unit(2.3, "m"),
  21762. weight: math.unit(304, "kg"),
  21763. name: "Front",
  21764. image: {
  21765. source: "./media/characters/icowom-lee/front.svg",
  21766. extra: 985 / 955,
  21767. bottom: 25.4 / 1012
  21768. }
  21769. },
  21770. fronttentacles: {
  21771. height: math.unit(2.3, "m"),
  21772. weight: math.unit(304, "kg"),
  21773. name: "Front-tentacles",
  21774. image: {
  21775. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21776. extra: 985 / 955,
  21777. bottom: 25.4 / 1012
  21778. }
  21779. },
  21780. back: {
  21781. height: math.unit(2.3, "m"),
  21782. weight: math.unit(304, "kg"),
  21783. name: "Back",
  21784. image: {
  21785. source: "./media/characters/icowom-lee/back.svg",
  21786. extra: 975 / 954,
  21787. bottom: 9.5 / 985
  21788. }
  21789. },
  21790. backtentacles: {
  21791. height: math.unit(2.3, "m"),
  21792. weight: math.unit(304, "kg"),
  21793. name: "Back-tentacles",
  21794. image: {
  21795. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21796. extra: 975 / 954,
  21797. bottom: 9.5 / 985
  21798. }
  21799. },
  21800. frontDressed: {
  21801. height: math.unit(2.3, "m"),
  21802. weight: math.unit(304, "kg"),
  21803. name: "Front (Dressed)",
  21804. image: {
  21805. source: "./media/characters/icowom-lee/front-dressed.svg",
  21806. extra: 3076 / 2933,
  21807. bottom: 51.4 / 3125.1889
  21808. }
  21809. },
  21810. rump: {
  21811. height: math.unit(0.776, "meters"),
  21812. name: "Rump",
  21813. image: {
  21814. source: "./media/characters/icowom-lee/rump.svg"
  21815. }
  21816. },
  21817. genitals: {
  21818. height: math.unit(0.78, "meters"),
  21819. name: "Genitals",
  21820. image: {
  21821. source: "./media/characters/icowom-lee/genitals.svg"
  21822. }
  21823. },
  21824. },
  21825. [
  21826. {
  21827. name: "Normal",
  21828. height: math.unit(2.3, "meters"),
  21829. default: true
  21830. },
  21831. {
  21832. name: "Macro",
  21833. height: math.unit(94, "meters"),
  21834. default: true
  21835. },
  21836. ]
  21837. ))
  21838. characterMakers.push(() => makeCharacter(
  21839. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21840. {
  21841. front: {
  21842. height: math.unit(22, "meters"),
  21843. weight: math.unit(21000, "kg"),
  21844. name: "Front",
  21845. image: {
  21846. source: "./media/characters/shock-diamond/front.svg",
  21847. extra: 2204 / 2053,
  21848. bottom: 65 / 2239.47
  21849. }
  21850. },
  21851. frontNude: {
  21852. height: math.unit(22, "meters"),
  21853. weight: math.unit(21000, "kg"),
  21854. name: "Front (Nude)",
  21855. image: {
  21856. source: "./media/characters/shock-diamond/front-nude.svg",
  21857. extra: 2514 / 2285,
  21858. bottom: 13 / 2527.56
  21859. }
  21860. },
  21861. },
  21862. [
  21863. {
  21864. name: "Normal",
  21865. height: math.unit(3, "meters")
  21866. },
  21867. {
  21868. name: "Macro",
  21869. height: math.unit(22, "meters"),
  21870. default: true
  21871. },
  21872. ]
  21873. ))
  21874. characterMakers.push(() => makeCharacter(
  21875. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21876. {
  21877. front: {
  21878. height: math.unit(5 + 4 / 12, "feet"),
  21879. weight: math.unit(120, "lb"),
  21880. name: "Front",
  21881. image: {
  21882. source: "./media/characters/rory/front.svg",
  21883. extra: 589 / 556,
  21884. bottom: 45.7 / 635.76
  21885. }
  21886. },
  21887. frontNude: {
  21888. height: math.unit(5 + 4 / 12, "feet"),
  21889. weight: math.unit(120, "lb"),
  21890. name: "Front (Nude)",
  21891. image: {
  21892. source: "./media/characters/rory/front-nude.svg",
  21893. extra: 589 / 556,
  21894. bottom: 45.7 / 635.76
  21895. }
  21896. },
  21897. side: {
  21898. height: math.unit(5 + 4 / 12, "feet"),
  21899. weight: math.unit(120, "lb"),
  21900. name: "Side",
  21901. image: {
  21902. source: "./media/characters/rory/side.svg",
  21903. extra: 597 / 564,
  21904. bottom: 55 / 653
  21905. }
  21906. },
  21907. back: {
  21908. height: math.unit(5 + 4 / 12, "feet"),
  21909. weight: math.unit(120, "lb"),
  21910. name: "Back",
  21911. image: {
  21912. source: "./media/characters/rory/back.svg",
  21913. extra: 620 / 585,
  21914. bottom: 8.86 / 630.43
  21915. }
  21916. },
  21917. dick: {
  21918. height: math.unit(0.86, "feet"),
  21919. name: "Dick",
  21920. image: {
  21921. source: "./media/characters/rory/dick.svg"
  21922. }
  21923. },
  21924. },
  21925. [
  21926. {
  21927. name: "Normal",
  21928. height: math.unit(5 + 4 / 12, "feet"),
  21929. default: true
  21930. },
  21931. {
  21932. name: "Macro",
  21933. height: math.unit(100, "feet")
  21934. },
  21935. {
  21936. name: "Macro+",
  21937. height: math.unit(140, "feet")
  21938. },
  21939. {
  21940. name: "Macro++",
  21941. height: math.unit(300, "feet")
  21942. },
  21943. ]
  21944. ))
  21945. characterMakers.push(() => makeCharacter(
  21946. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21947. {
  21948. front: {
  21949. height: math.unit(5 + 9 / 12, "feet"),
  21950. weight: math.unit(190, "lb"),
  21951. name: "Front",
  21952. image: {
  21953. source: "./media/characters/sprisk/front.svg",
  21954. extra: 1225 / 1180,
  21955. bottom: 42.7 / 1266.4
  21956. }
  21957. },
  21958. frontNsfw: {
  21959. height: math.unit(5 + 9 / 12, "feet"),
  21960. weight: math.unit(190, "lb"),
  21961. name: "Front (NSFW)",
  21962. image: {
  21963. source: "./media/characters/sprisk/front-nsfw.svg",
  21964. extra: 1225 / 1180,
  21965. bottom: 42.7 / 1266.4
  21966. }
  21967. },
  21968. back: {
  21969. height: math.unit(5 + 9 / 12, "feet"),
  21970. weight: math.unit(190, "lb"),
  21971. name: "Back",
  21972. image: {
  21973. source: "./media/characters/sprisk/back.svg",
  21974. extra: 1247 / 1200,
  21975. bottom: 5.6 / 1253.04
  21976. }
  21977. },
  21978. },
  21979. [
  21980. {
  21981. name: "Tiny",
  21982. height: math.unit(2, "inches")
  21983. },
  21984. {
  21985. name: "Normal",
  21986. height: math.unit(5 + 9 / 12, "feet"),
  21987. default: true
  21988. },
  21989. {
  21990. name: "Mini Macro",
  21991. height: math.unit(18, "feet")
  21992. },
  21993. {
  21994. name: "Macro",
  21995. height: math.unit(100, "feet")
  21996. },
  21997. {
  21998. name: "MACRO",
  21999. height: math.unit(50, "miles")
  22000. },
  22001. {
  22002. name: "M A C R O",
  22003. height: math.unit(300, "miles")
  22004. },
  22005. ]
  22006. ))
  22007. characterMakers.push(() => makeCharacter(
  22008. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22009. {
  22010. side: {
  22011. height: math.unit(15.6, "meters"),
  22012. weight: math.unit(700000, "kg"),
  22013. name: "Side",
  22014. image: {
  22015. source: "./media/characters/bunsen/side.svg",
  22016. extra: 1644 / 358
  22017. }
  22018. },
  22019. foot: {
  22020. height: math.unit(1.611 * 1644 / 358, "meter"),
  22021. name: "Foot",
  22022. image: {
  22023. source: "./media/characters/bunsen/foot.svg"
  22024. }
  22025. },
  22026. },
  22027. [
  22028. {
  22029. name: "Small",
  22030. height: math.unit(10, "feet")
  22031. },
  22032. {
  22033. name: "Normal",
  22034. height: math.unit(15.6, "meters"),
  22035. default: true
  22036. },
  22037. ]
  22038. ))
  22039. characterMakers.push(() => makeCharacter(
  22040. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22041. {
  22042. front: {
  22043. height: math.unit(4 + 11 / 12, "feet"),
  22044. weight: math.unit(140, "lb"),
  22045. name: "Front",
  22046. image: {
  22047. source: "./media/characters/sesh/front.svg",
  22048. extra: 3420 / 3231,
  22049. bottom: 72 / 3949.5
  22050. }
  22051. },
  22052. },
  22053. [
  22054. {
  22055. name: "Normal",
  22056. height: math.unit(4 + 11 / 12, "feet")
  22057. },
  22058. {
  22059. name: "Grown",
  22060. height: math.unit(15, "feet"),
  22061. default: true
  22062. },
  22063. {
  22064. name: "Macro",
  22065. height: math.unit(1500, "feet")
  22066. },
  22067. {
  22068. name: "Megamacro",
  22069. height: math.unit(30, "miles")
  22070. },
  22071. {
  22072. name: "Continental",
  22073. height: math.unit(3000, "miles")
  22074. },
  22075. {
  22076. name: "Gravity Mass",
  22077. height: math.unit(300000, "miles")
  22078. },
  22079. {
  22080. name: "Planet Buster",
  22081. height: math.unit(30000000, "miles")
  22082. },
  22083. {
  22084. name: "Big",
  22085. height: math.unit(3000000000, "miles")
  22086. },
  22087. ]
  22088. ))
  22089. characterMakers.push(() => makeCharacter(
  22090. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22091. {
  22092. front: {
  22093. height: math.unit(9, "feet"),
  22094. weight: math.unit(350, "lb"),
  22095. name: "Front",
  22096. image: {
  22097. source: "./media/characters/pepper/front.svg",
  22098. extra: 1448 / 1312,
  22099. bottom: 9.4 / 1457.88
  22100. }
  22101. },
  22102. back: {
  22103. height: math.unit(9, "feet"),
  22104. weight: math.unit(350, "lb"),
  22105. name: "Back",
  22106. image: {
  22107. source: "./media/characters/pepper/back.svg",
  22108. extra: 1423 / 1300,
  22109. bottom: 4.6 / 1429
  22110. }
  22111. },
  22112. maw: {
  22113. height: math.unit(0.932, "feet"),
  22114. name: "Maw",
  22115. image: {
  22116. source: "./media/characters/pepper/maw.svg"
  22117. }
  22118. },
  22119. },
  22120. [
  22121. {
  22122. name: "Normal",
  22123. height: math.unit(9, "feet"),
  22124. default: true
  22125. },
  22126. ]
  22127. ))
  22128. characterMakers.push(() => makeCharacter(
  22129. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22130. {
  22131. front: {
  22132. height: math.unit(6, "feet"),
  22133. weight: math.unit(150, "lb"),
  22134. name: "Front",
  22135. image: {
  22136. source: "./media/characters/maelstrom/front.svg",
  22137. extra: 2100 / 1883,
  22138. bottom: 94 / 2196.7
  22139. }
  22140. },
  22141. },
  22142. [
  22143. {
  22144. name: "Less Kaiju",
  22145. height: math.unit(200, "feet")
  22146. },
  22147. {
  22148. name: "Kaiju",
  22149. height: math.unit(400, "feet"),
  22150. default: true
  22151. },
  22152. {
  22153. name: "Kaiju-er",
  22154. height: math.unit(600, "feet")
  22155. },
  22156. ]
  22157. ))
  22158. characterMakers.push(() => makeCharacter(
  22159. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22160. {
  22161. front: {
  22162. height: math.unit(6 + 5 / 12, "feet"),
  22163. weight: math.unit(180, "lb"),
  22164. name: "Front",
  22165. image: {
  22166. source: "./media/characters/lexir/front.svg",
  22167. extra: 180 / 172,
  22168. bottom: 12 / 192
  22169. }
  22170. },
  22171. back: {
  22172. height: math.unit(6 + 5 / 12, "feet"),
  22173. weight: math.unit(180, "lb"),
  22174. name: "Back",
  22175. image: {
  22176. source: "./media/characters/lexir/back.svg",
  22177. extra: 183.84 / 175.5,
  22178. bottom: 3.1 / 187
  22179. }
  22180. },
  22181. },
  22182. [
  22183. {
  22184. name: "Very Smal",
  22185. height: math.unit(1, "nm")
  22186. },
  22187. {
  22188. name: "Normal",
  22189. height: math.unit(6 + 5 / 12, "feet"),
  22190. default: true
  22191. },
  22192. {
  22193. name: "Macro",
  22194. height: math.unit(1, "mile")
  22195. },
  22196. {
  22197. name: "Megamacro",
  22198. height: math.unit(50, "miles")
  22199. },
  22200. ]
  22201. ))
  22202. characterMakers.push(() => makeCharacter(
  22203. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22204. {
  22205. front: {
  22206. height: math.unit(1.5, "meters"),
  22207. weight: math.unit(100, "lb"),
  22208. name: "Front",
  22209. image: {
  22210. source: "./media/characters/maksio/front.svg",
  22211. extra: 1549 / 1531,
  22212. bottom: 123.7 / 1674.5429
  22213. }
  22214. },
  22215. back: {
  22216. height: math.unit(1.5, "meters"),
  22217. weight: math.unit(100, "lb"),
  22218. name: "Back",
  22219. image: {
  22220. source: "./media/characters/maksio/back.svg",
  22221. extra: 1541 / 1509,
  22222. bottom: 97 / 1639
  22223. }
  22224. },
  22225. hand: {
  22226. height: math.unit(0.621, "feet"),
  22227. name: "Hand",
  22228. image: {
  22229. source: "./media/characters/maksio/hand.svg"
  22230. }
  22231. },
  22232. foot: {
  22233. height: math.unit(1.611, "feet"),
  22234. name: "Foot",
  22235. image: {
  22236. source: "./media/characters/maksio/foot.svg"
  22237. }
  22238. },
  22239. },
  22240. [
  22241. {
  22242. name: "Shrunken",
  22243. height: math.unit(10, "cm")
  22244. },
  22245. {
  22246. name: "Normal",
  22247. height: math.unit(150, "cm"),
  22248. default: true
  22249. },
  22250. ]
  22251. ))
  22252. characterMakers.push(() => makeCharacter(
  22253. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22254. {
  22255. front: {
  22256. height: math.unit(100, "feet"),
  22257. name: "Front",
  22258. image: {
  22259. source: "./media/characters/erza-bear/front.svg",
  22260. extra: 2449 / 2390,
  22261. bottom: 46 / 2494
  22262. }
  22263. },
  22264. back: {
  22265. height: math.unit(100, "feet"),
  22266. name: "Back",
  22267. image: {
  22268. source: "./media/characters/erza-bear/back.svg",
  22269. extra: 2489 / 2430,
  22270. bottom: 85.4 / 2480
  22271. }
  22272. },
  22273. tail: {
  22274. height: math.unit(42, "feet"),
  22275. name: "Tail",
  22276. image: {
  22277. source: "./media/characters/erza-bear/tail.svg"
  22278. }
  22279. },
  22280. tongue: {
  22281. height: math.unit(8, "feet"),
  22282. name: "Tongue",
  22283. image: {
  22284. source: "./media/characters/erza-bear/tongue.svg"
  22285. }
  22286. },
  22287. dick: {
  22288. height: math.unit(10.5, "feet"),
  22289. name: "Dick",
  22290. image: {
  22291. source: "./media/characters/erza-bear/dick.svg"
  22292. }
  22293. },
  22294. dickVertical: {
  22295. height: math.unit(16.9, "feet"),
  22296. name: "Dick (Vertical)",
  22297. image: {
  22298. source: "./media/characters/erza-bear/dick-vertical.svg"
  22299. }
  22300. },
  22301. },
  22302. [
  22303. {
  22304. name: "Macro",
  22305. height: math.unit(100, "feet"),
  22306. default: true
  22307. },
  22308. ]
  22309. ))
  22310. characterMakers.push(() => makeCharacter(
  22311. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22312. {
  22313. front: {
  22314. height: math.unit(172, "cm"),
  22315. weight: math.unit(73, "kg"),
  22316. name: "Front",
  22317. image: {
  22318. source: "./media/characters/violet-flor/front.svg",
  22319. extra: 1530 / 1442,
  22320. bottom: 61.9 / 1588.8
  22321. }
  22322. },
  22323. back: {
  22324. height: math.unit(180, "cm"),
  22325. weight: math.unit(73, "kg"),
  22326. name: "Back",
  22327. image: {
  22328. source: "./media/characters/violet-flor/back.svg",
  22329. extra: 1692 / 1630,
  22330. bottom: 20 / 1712
  22331. }
  22332. },
  22333. },
  22334. [
  22335. {
  22336. name: "Normal",
  22337. height: math.unit(172, "cm"),
  22338. default: true
  22339. },
  22340. ]
  22341. ))
  22342. characterMakers.push(() => makeCharacter(
  22343. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22344. {
  22345. front: {
  22346. height: math.unit(6, "feet"),
  22347. weight: math.unit(220, "lb"),
  22348. name: "Front",
  22349. image: {
  22350. source: "./media/characters/lynn-rhea/front.svg",
  22351. extra: 310 / 273
  22352. }
  22353. },
  22354. back: {
  22355. height: math.unit(6, "feet"),
  22356. weight: math.unit(220, "lb"),
  22357. name: "Back",
  22358. image: {
  22359. source: "./media/characters/lynn-rhea/back.svg",
  22360. extra: 310 / 273
  22361. }
  22362. },
  22363. dicks: {
  22364. height: math.unit(0.9, "feet"),
  22365. name: "Dicks",
  22366. image: {
  22367. source: "./media/characters/lynn-rhea/dicks.svg"
  22368. }
  22369. },
  22370. slit: {
  22371. height: math.unit(0.4, "feet"),
  22372. name: "Slit",
  22373. image: {
  22374. source: "./media/characters/lynn-rhea/slit.svg"
  22375. }
  22376. },
  22377. },
  22378. [
  22379. {
  22380. name: "Micro",
  22381. height: math.unit(1, "inch")
  22382. },
  22383. {
  22384. name: "Macro",
  22385. height: math.unit(60, "feet"),
  22386. default: true
  22387. },
  22388. {
  22389. name: "Megamacro",
  22390. height: math.unit(2, "miles")
  22391. },
  22392. {
  22393. name: "Gigamacro",
  22394. height: math.unit(3, "earths")
  22395. },
  22396. {
  22397. name: "Galactic",
  22398. height: math.unit(0.8, "galaxies")
  22399. },
  22400. ]
  22401. ))
  22402. characterMakers.push(() => makeCharacter(
  22403. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22404. {
  22405. front: {
  22406. height: math.unit(1600, "feet"),
  22407. weight: math.unit(85758785169, "kg"),
  22408. name: "Front",
  22409. image: {
  22410. source: "./media/characters/valathos/front.svg",
  22411. extra: 1451 / 1339
  22412. }
  22413. },
  22414. },
  22415. [
  22416. {
  22417. name: "Macro",
  22418. height: math.unit(1600, "feet"),
  22419. default: true
  22420. },
  22421. ]
  22422. ))
  22423. characterMakers.push(() => makeCharacter(
  22424. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22425. {
  22426. front: {
  22427. height: math.unit(7 + 5 / 12, "feet"),
  22428. weight: math.unit(300, "lb"),
  22429. name: "Front",
  22430. image: {
  22431. source: "./media/characters/azula/front.svg",
  22432. extra: 3208 / 2880,
  22433. bottom: 80.2 / 3277
  22434. }
  22435. },
  22436. back: {
  22437. height: math.unit(7 + 5 / 12, "feet"),
  22438. weight: math.unit(300, "lb"),
  22439. name: "Back",
  22440. image: {
  22441. source: "./media/characters/azula/back.svg",
  22442. extra: 3169 / 2822,
  22443. bottom: 150.6 / 3321
  22444. }
  22445. },
  22446. },
  22447. [
  22448. {
  22449. name: "Normal",
  22450. height: math.unit(7 + 5 / 12, "feet"),
  22451. default: true
  22452. },
  22453. {
  22454. name: "Big",
  22455. height: math.unit(20, "feet")
  22456. },
  22457. ]
  22458. ))
  22459. characterMakers.push(() => makeCharacter(
  22460. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22461. {
  22462. front: {
  22463. height: math.unit(5 + 1 / 12, "feet"),
  22464. weight: math.unit(110, "lb"),
  22465. name: "Front",
  22466. image: {
  22467. source: "./media/characters/rupert/front.svg",
  22468. extra: 1549 / 1495,
  22469. bottom: 54.2 / 1604.4
  22470. }
  22471. },
  22472. },
  22473. [
  22474. {
  22475. name: "Normal",
  22476. height: math.unit(5 + 1 / 12, "feet"),
  22477. default: true
  22478. },
  22479. ]
  22480. ))
  22481. characterMakers.push(() => makeCharacter(
  22482. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22483. {
  22484. front: {
  22485. height: math.unit(8 + 4 / 12, "feet"),
  22486. weight: math.unit(350, "lb"),
  22487. name: "Front",
  22488. image: {
  22489. source: "./media/characters/sheera-castellar/front.svg",
  22490. extra: 1957 / 1894,
  22491. bottom: 26.97 / 1975.017
  22492. }
  22493. },
  22494. side: {
  22495. height: math.unit(8 + 4 / 12, "feet"),
  22496. weight: math.unit(350, "lb"),
  22497. name: "Side",
  22498. image: {
  22499. source: "./media/characters/sheera-castellar/side.svg",
  22500. extra: 1957 / 1894
  22501. }
  22502. },
  22503. back: {
  22504. height: math.unit(8 + 4 / 12, "feet"),
  22505. weight: math.unit(350, "lb"),
  22506. name: "Back",
  22507. image: {
  22508. source: "./media/characters/sheera-castellar/back.svg",
  22509. extra: 1957 / 1894
  22510. }
  22511. },
  22512. angled: {
  22513. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22514. weight: math.unit(350, "lb"),
  22515. name: "Angled",
  22516. image: {
  22517. source: "./media/characters/sheera-castellar/angled.svg",
  22518. extra: 1807 / 1707,
  22519. bottom: 68 / 1875
  22520. }
  22521. },
  22522. genitals: {
  22523. height: math.unit(2.2, "feet"),
  22524. name: "Genitals",
  22525. image: {
  22526. source: "./media/characters/sheera-castellar/genitals.svg"
  22527. }
  22528. },
  22529. },
  22530. [
  22531. {
  22532. name: "Normal",
  22533. height: math.unit(8 + 4 / 12, "feet")
  22534. },
  22535. {
  22536. name: "Macro",
  22537. height: math.unit(150, "feet"),
  22538. default: true
  22539. },
  22540. {
  22541. name: "Macro+",
  22542. height: math.unit(800, "feet")
  22543. },
  22544. ]
  22545. ))
  22546. characterMakers.push(() => makeCharacter(
  22547. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22548. {
  22549. front: {
  22550. height: math.unit(6, "feet"),
  22551. weight: math.unit(150, "lb"),
  22552. name: "Front",
  22553. image: {
  22554. source: "./media/characters/jaipur/front.svg",
  22555. extra: 3860 / 3731,
  22556. bottom: 287 / 4140
  22557. }
  22558. },
  22559. back: {
  22560. height: math.unit(6, "feet"),
  22561. weight: math.unit(150, "lb"),
  22562. name: "Back",
  22563. image: {
  22564. source: "./media/characters/jaipur/back.svg",
  22565. extra: 4060 / 3930,
  22566. bottom: 151 / 4200
  22567. }
  22568. },
  22569. },
  22570. [
  22571. {
  22572. name: "Normal",
  22573. height: math.unit(1.85, "meters"),
  22574. default: true
  22575. },
  22576. {
  22577. name: "Macro",
  22578. height: math.unit(150, "meters")
  22579. },
  22580. {
  22581. name: "Macro+",
  22582. height: math.unit(0.5, "miles")
  22583. },
  22584. {
  22585. name: "Macro++",
  22586. height: math.unit(2.5, "miles")
  22587. },
  22588. {
  22589. name: "Macro+++",
  22590. height: math.unit(12, "miles")
  22591. },
  22592. {
  22593. name: "Macro++++",
  22594. height: math.unit(120, "miles")
  22595. },
  22596. {
  22597. name: "Macro+++++",
  22598. height: math.unit(1200, "miles")
  22599. },
  22600. ]
  22601. ))
  22602. characterMakers.push(() => makeCharacter(
  22603. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22604. {
  22605. front: {
  22606. height: math.unit(6, "feet"),
  22607. weight: math.unit(150, "lb"),
  22608. name: "Front",
  22609. image: {
  22610. source: "./media/characters/sheila-wolf/front.svg",
  22611. extra: 1931 / 1808,
  22612. bottom: 29.5 / 1960
  22613. }
  22614. },
  22615. dick: {
  22616. height: math.unit(1.464, "feet"),
  22617. name: "Dick",
  22618. image: {
  22619. source: "./media/characters/sheila-wolf/dick.svg"
  22620. }
  22621. },
  22622. muzzle: {
  22623. height: math.unit(0.513, "feet"),
  22624. name: "Muzzle",
  22625. image: {
  22626. source: "./media/characters/sheila-wolf/muzzle.svg"
  22627. }
  22628. },
  22629. },
  22630. [
  22631. {
  22632. name: "Macro",
  22633. height: math.unit(70, "feet"),
  22634. default: true
  22635. },
  22636. ]
  22637. ))
  22638. characterMakers.push(() => makeCharacter(
  22639. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22640. {
  22641. front: {
  22642. height: math.unit(32, "meters"),
  22643. weight: math.unit(300000, "kg"),
  22644. name: "Front",
  22645. image: {
  22646. source: "./media/characters/almor/front.svg",
  22647. extra: 1408 / 1322,
  22648. bottom: 94.6 / 1506.5
  22649. }
  22650. },
  22651. },
  22652. [
  22653. {
  22654. name: "Macro",
  22655. height: math.unit(32, "meters"),
  22656. default: true
  22657. },
  22658. ]
  22659. ))
  22660. characterMakers.push(() => makeCharacter(
  22661. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22662. {
  22663. front: {
  22664. height: math.unit(7, "feet"),
  22665. weight: math.unit(200, "lb"),
  22666. name: "Front",
  22667. image: {
  22668. source: "./media/characters/silver/front.svg",
  22669. extra: 472.1 / 450.5,
  22670. bottom: 26.5 / 499.424
  22671. }
  22672. },
  22673. },
  22674. [
  22675. {
  22676. name: "Normal",
  22677. height: math.unit(7, "feet"),
  22678. default: true
  22679. },
  22680. {
  22681. name: "Macro",
  22682. height: math.unit(800, "feet")
  22683. },
  22684. {
  22685. name: "Megamacro",
  22686. height: math.unit(250, "miles")
  22687. },
  22688. ]
  22689. ))
  22690. characterMakers.push(() => makeCharacter(
  22691. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22692. {
  22693. front: {
  22694. height: math.unit(6, "feet"),
  22695. weight: math.unit(150, "lb"),
  22696. name: "Front",
  22697. image: {
  22698. source: "./media/characters/pliskin/front.svg",
  22699. extra: 1469 / 1359,
  22700. bottom: 70 / 1540
  22701. }
  22702. },
  22703. },
  22704. [
  22705. {
  22706. name: "Micro",
  22707. height: math.unit(3, "inches")
  22708. },
  22709. {
  22710. name: "Normal",
  22711. height: math.unit(5 + 11 / 12, "feet"),
  22712. default: true
  22713. },
  22714. {
  22715. name: "Macro",
  22716. height: math.unit(120, "feet")
  22717. },
  22718. ]
  22719. ))
  22720. characterMakers.push(() => makeCharacter(
  22721. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22722. {
  22723. front: {
  22724. height: math.unit(6, "feet"),
  22725. weight: math.unit(150, "lb"),
  22726. name: "Front",
  22727. image: {
  22728. source: "./media/characters/sammy/front.svg",
  22729. extra: 1193 / 1089,
  22730. bottom: 30.5 / 1226
  22731. }
  22732. },
  22733. },
  22734. [
  22735. {
  22736. name: "Macro",
  22737. height: math.unit(1700, "feet"),
  22738. default: true
  22739. },
  22740. {
  22741. name: "Examacro",
  22742. height: math.unit(2.5e9, "lightyears")
  22743. },
  22744. ]
  22745. ))
  22746. characterMakers.push(() => makeCharacter(
  22747. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22748. {
  22749. front: {
  22750. height: math.unit(21, "meters"),
  22751. weight: math.unit(12, "tonnes"),
  22752. name: "Front",
  22753. image: {
  22754. source: "./media/characters/kuru/front.svg",
  22755. extra: 4301 / 3785,
  22756. bottom: 371.3 / 4691
  22757. }
  22758. },
  22759. },
  22760. [
  22761. {
  22762. name: "Macro",
  22763. height: math.unit(21, "meters"),
  22764. default: true
  22765. },
  22766. ]
  22767. ))
  22768. characterMakers.push(() => makeCharacter(
  22769. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22770. {
  22771. front: {
  22772. height: math.unit(23, "meters"),
  22773. weight: math.unit(12.2, "tonnes"),
  22774. name: "Front",
  22775. image: {
  22776. source: "./media/characters/rakka/front.svg",
  22777. extra: 4670 / 4169,
  22778. bottom: 301 / 4968.7
  22779. }
  22780. },
  22781. },
  22782. [
  22783. {
  22784. name: "Macro",
  22785. height: math.unit(23, "meters"),
  22786. default: true
  22787. },
  22788. ]
  22789. ))
  22790. characterMakers.push(() => makeCharacter(
  22791. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22792. {
  22793. front: {
  22794. height: math.unit(6, "feet"),
  22795. weight: math.unit(150, "lb"),
  22796. name: "Front",
  22797. image: {
  22798. source: "./media/characters/rhys-feline/front.svg",
  22799. extra: 2488 / 2308,
  22800. bottom: 35.67 / 2519.19
  22801. }
  22802. },
  22803. },
  22804. [
  22805. {
  22806. name: "Really Small",
  22807. height: math.unit(1, "nm")
  22808. },
  22809. {
  22810. name: "Micro",
  22811. height: math.unit(4, "inches")
  22812. },
  22813. {
  22814. name: "Normal",
  22815. height: math.unit(4 + 10 / 12, "feet"),
  22816. default: true
  22817. },
  22818. {
  22819. name: "Macro",
  22820. height: math.unit(100, "feet")
  22821. },
  22822. {
  22823. name: "Megamacto",
  22824. height: math.unit(50, "miles")
  22825. },
  22826. ]
  22827. ))
  22828. characterMakers.push(() => makeCharacter(
  22829. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22830. {
  22831. side: {
  22832. height: math.unit(30, "feet"),
  22833. weight: math.unit(35000, "kg"),
  22834. name: "Side",
  22835. image: {
  22836. source: "./media/characters/alydar/side.svg",
  22837. extra: 234 / 222,
  22838. bottom: 6.5 / 241
  22839. }
  22840. },
  22841. front: {
  22842. height: math.unit(30, "feet"),
  22843. weight: math.unit(35000, "kg"),
  22844. name: "Front",
  22845. image: {
  22846. source: "./media/characters/alydar/front.svg",
  22847. extra: 223.37 / 210.2,
  22848. bottom: 22.3 / 246.76
  22849. }
  22850. },
  22851. top: {
  22852. height: math.unit(64.54, "feet"),
  22853. weight: math.unit(35000, "kg"),
  22854. name: "Top",
  22855. image: {
  22856. source: "./media/characters/alydar/top.svg"
  22857. }
  22858. },
  22859. anthro: {
  22860. height: math.unit(30, "feet"),
  22861. weight: math.unit(9000, "kg"),
  22862. name: "Anthro",
  22863. image: {
  22864. source: "./media/characters/alydar/anthro.svg",
  22865. extra: 432 / 421,
  22866. bottom: 7.18 / 440
  22867. }
  22868. },
  22869. maw: {
  22870. height: math.unit(11.693, "feet"),
  22871. name: "Maw",
  22872. image: {
  22873. source: "./media/characters/alydar/maw.svg"
  22874. }
  22875. },
  22876. head: {
  22877. height: math.unit(11.693, "feet"),
  22878. name: "Head",
  22879. image: {
  22880. source: "./media/characters/alydar/head.svg"
  22881. }
  22882. },
  22883. headAlt: {
  22884. height: math.unit(12.861, "feet"),
  22885. name: "Head (Alt)",
  22886. image: {
  22887. source: "./media/characters/alydar/head-alt.svg"
  22888. }
  22889. },
  22890. wing: {
  22891. height: math.unit(20.712, "feet"),
  22892. name: "Wing",
  22893. image: {
  22894. source: "./media/characters/alydar/wing.svg"
  22895. }
  22896. },
  22897. wingFeather: {
  22898. height: math.unit(9.662, "feet"),
  22899. name: "Wing Feather",
  22900. image: {
  22901. source: "./media/characters/alydar/wing-feather.svg"
  22902. }
  22903. },
  22904. countourFeather: {
  22905. height: math.unit(4.154, "feet"),
  22906. name: "Contour Feather",
  22907. image: {
  22908. source: "./media/characters/alydar/contour-feather.svg"
  22909. }
  22910. },
  22911. },
  22912. [
  22913. {
  22914. name: "Diplomatic",
  22915. height: math.unit(13, "feet"),
  22916. default: true
  22917. },
  22918. {
  22919. name: "Small",
  22920. height: math.unit(30, "feet")
  22921. },
  22922. {
  22923. name: "Normal",
  22924. height: math.unit(95, "feet"),
  22925. default: true
  22926. },
  22927. {
  22928. name: "Large",
  22929. height: math.unit(285, "feet")
  22930. },
  22931. {
  22932. name: "Incomprehensible",
  22933. height: math.unit(450, "megameters")
  22934. },
  22935. ]
  22936. ))
  22937. characterMakers.push(() => makeCharacter(
  22938. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22939. {
  22940. side: {
  22941. height: math.unit(11, "feet"),
  22942. weight: math.unit(1750, "kg"),
  22943. name: "Side",
  22944. image: {
  22945. source: "./media/characters/selicia/side.svg",
  22946. extra: 440 / 396,
  22947. bottom: 24.8 / 465.979
  22948. }
  22949. },
  22950. maw: {
  22951. height: math.unit(4.665, "feet"),
  22952. name: "Maw",
  22953. image: {
  22954. source: "./media/characters/selicia/maw.svg"
  22955. }
  22956. },
  22957. },
  22958. [
  22959. {
  22960. name: "Normal",
  22961. height: math.unit(11, "feet"),
  22962. default: true
  22963. },
  22964. ]
  22965. ))
  22966. characterMakers.push(() => makeCharacter(
  22967. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22968. {
  22969. side: {
  22970. height: math.unit(2 + 6 / 12, "feet"),
  22971. weight: math.unit(30, "lb"),
  22972. name: "Side",
  22973. image: {
  22974. source: "./media/characters/layla/side.svg",
  22975. extra: 244 / 188,
  22976. bottom: 18.2 / 262.1
  22977. }
  22978. },
  22979. back: {
  22980. height: math.unit(2 + 6 / 12, "feet"),
  22981. weight: math.unit(30, "lb"),
  22982. name: "Back",
  22983. image: {
  22984. source: "./media/characters/layla/back.svg",
  22985. extra: 308 / 241.5,
  22986. bottom: 8.9 / 316.8
  22987. }
  22988. },
  22989. cumming: {
  22990. height: math.unit(2 + 6 / 12, "feet"),
  22991. weight: math.unit(30, "lb"),
  22992. name: "Cumming",
  22993. image: {
  22994. source: "./media/characters/layla/cumming.svg",
  22995. extra: 342 / 279,
  22996. bottom: 595 / 938
  22997. }
  22998. },
  22999. dickFlaccid: {
  23000. height: math.unit(2.595, "feet"),
  23001. name: "Flaccid Genitals",
  23002. image: {
  23003. source: "./media/characters/layla/dick-flaccid.svg"
  23004. }
  23005. },
  23006. dickErect: {
  23007. height: math.unit(2.359, "feet"),
  23008. name: "Erect Genitals",
  23009. image: {
  23010. source: "./media/characters/layla/dick-erect.svg"
  23011. }
  23012. },
  23013. },
  23014. [
  23015. {
  23016. name: "Micro",
  23017. height: math.unit(1, "inch")
  23018. },
  23019. {
  23020. name: "Small",
  23021. height: math.unit(1, "foot")
  23022. },
  23023. {
  23024. name: "Normal",
  23025. height: math.unit(2 + 6 / 12, "feet"),
  23026. default: true
  23027. },
  23028. {
  23029. name: "Macro",
  23030. height: math.unit(200, "feet")
  23031. },
  23032. {
  23033. name: "Megamacro",
  23034. height: math.unit(1000, "miles")
  23035. },
  23036. {
  23037. name: "Planetary",
  23038. height: math.unit(8000, "miles")
  23039. },
  23040. {
  23041. name: "True Layla",
  23042. height: math.unit(200000 * 7, "multiverses")
  23043. },
  23044. ]
  23045. ))
  23046. characterMakers.push(() => makeCharacter(
  23047. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23048. {
  23049. back: {
  23050. height: math.unit(10.5, "feet"),
  23051. weight: math.unit(800, "lb"),
  23052. name: "Back",
  23053. image: {
  23054. source: "./media/characters/knox/back.svg",
  23055. extra: 1486 / 1089,
  23056. bottom: 107 / 1601.4
  23057. }
  23058. },
  23059. side: {
  23060. height: math.unit(10.5, "feet"),
  23061. weight: math.unit(800, "lb"),
  23062. name: "Side",
  23063. image: {
  23064. source: "./media/characters/knox/side.svg",
  23065. extra: 244 / 218,
  23066. bottom: 14 / 260
  23067. }
  23068. },
  23069. },
  23070. [
  23071. {
  23072. name: "Compact",
  23073. height: math.unit(10.5, "feet"),
  23074. default: true
  23075. },
  23076. {
  23077. name: "Dynamax",
  23078. height: math.unit(210, "feet")
  23079. },
  23080. {
  23081. name: "Full Macro",
  23082. height: math.unit(850, "feet")
  23083. },
  23084. ]
  23085. ))
  23086. characterMakers.push(() => makeCharacter(
  23087. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23088. {
  23089. front: {
  23090. height: math.unit(6, "feet"),
  23091. weight: math.unit(152, "lb"),
  23092. name: "Front",
  23093. image: {
  23094. source: "./media/characters/shin-pikachu/front.svg",
  23095. extra: 1574 / 1480,
  23096. bottom: 53.3 / 1626
  23097. }
  23098. },
  23099. hand: {
  23100. height: math.unit(1.055, "feet"),
  23101. name: "Hand",
  23102. image: {
  23103. source: "./media/characters/shin-pikachu/hand.svg"
  23104. }
  23105. },
  23106. foot: {
  23107. height: math.unit(1.1, "feet"),
  23108. name: "Foot",
  23109. image: {
  23110. source: "./media/characters/shin-pikachu/foot.svg"
  23111. }
  23112. },
  23113. collar: {
  23114. height: math.unit(0.386, "feet"),
  23115. name: "Collar",
  23116. image: {
  23117. source: "./media/characters/shin-pikachu/collar.svg"
  23118. }
  23119. },
  23120. },
  23121. [
  23122. {
  23123. name: "Smallest",
  23124. height: math.unit(0.5, "inches")
  23125. },
  23126. {
  23127. name: "Micro",
  23128. height: math.unit(6, "inches")
  23129. },
  23130. {
  23131. name: "Normal",
  23132. height: math.unit(6, "feet"),
  23133. default: true
  23134. },
  23135. {
  23136. name: "Macro",
  23137. height: math.unit(150, "feet")
  23138. },
  23139. ]
  23140. ))
  23141. characterMakers.push(() => makeCharacter(
  23142. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23143. {
  23144. front: {
  23145. height: math.unit(28, "feet"),
  23146. weight: math.unit(10500, "lb"),
  23147. name: "Front",
  23148. image: {
  23149. source: "./media/characters/kayda/front.svg",
  23150. extra: 1536 / 1428,
  23151. bottom: 68.7 / 1603
  23152. }
  23153. },
  23154. back: {
  23155. height: math.unit(28, "feet"),
  23156. weight: math.unit(10500, "lb"),
  23157. name: "Back",
  23158. image: {
  23159. source: "./media/characters/kayda/back.svg",
  23160. extra: 1557 / 1464,
  23161. bottom: 39.5 / 1597.49
  23162. }
  23163. },
  23164. dick: {
  23165. height: math.unit(3.858, "feet"),
  23166. name: "Dick",
  23167. image: {
  23168. source: "./media/characters/kayda/dick.svg"
  23169. }
  23170. },
  23171. },
  23172. [
  23173. {
  23174. name: "Macro",
  23175. height: math.unit(28, "feet"),
  23176. default: true
  23177. },
  23178. ]
  23179. ))
  23180. characterMakers.push(() => makeCharacter(
  23181. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23182. {
  23183. front: {
  23184. height: math.unit(10 + 11 / 12, "feet"),
  23185. weight: math.unit(1400, "lb"),
  23186. name: "Front",
  23187. image: {
  23188. source: "./media/characters/brian/front.svg",
  23189. extra: 737 / 692,
  23190. bottom: 55.4 / 785
  23191. }
  23192. },
  23193. },
  23194. [
  23195. {
  23196. name: "Normal",
  23197. height: math.unit(10 + 11 / 12, "feet"),
  23198. default: true
  23199. },
  23200. ]
  23201. ))
  23202. characterMakers.push(() => makeCharacter(
  23203. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23204. {
  23205. front: {
  23206. height: math.unit(5 + 8 / 12, "feet"),
  23207. weight: math.unit(140, "lb"),
  23208. name: "Front",
  23209. image: {
  23210. source: "./media/characters/khemri/front.svg",
  23211. extra: 4780 / 4059,
  23212. bottom: 80.1 / 4859.25
  23213. }
  23214. },
  23215. },
  23216. [
  23217. {
  23218. name: "Micro",
  23219. height: math.unit(6, "inches")
  23220. },
  23221. {
  23222. name: "Normal",
  23223. height: math.unit(5 + 8 / 12, "feet"),
  23224. default: true
  23225. },
  23226. ]
  23227. ))
  23228. characterMakers.push(() => makeCharacter(
  23229. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23230. {
  23231. front: {
  23232. height: math.unit(13, "feet"),
  23233. weight: math.unit(1700, "lb"),
  23234. name: "Front",
  23235. image: {
  23236. source: "./media/characters/felix-braveheart/front.svg",
  23237. extra: 1222 / 1157,
  23238. bottom: 53.2 / 1280
  23239. }
  23240. },
  23241. back: {
  23242. height: math.unit(13, "feet"),
  23243. weight: math.unit(1700, "lb"),
  23244. name: "Back",
  23245. image: {
  23246. source: "./media/characters/felix-braveheart/back.svg",
  23247. extra: 1277 / 1203,
  23248. bottom: 50.2 / 1327
  23249. }
  23250. },
  23251. feral: {
  23252. height: math.unit(6, "feet"),
  23253. weight: math.unit(400, "lb"),
  23254. name: "Feral",
  23255. image: {
  23256. source: "./media/characters/felix-braveheart/feral.svg",
  23257. extra: 682 / 625,
  23258. bottom: 6.9 / 688
  23259. }
  23260. },
  23261. },
  23262. [
  23263. {
  23264. name: "Normal",
  23265. height: math.unit(13, "feet"),
  23266. default: true
  23267. },
  23268. ]
  23269. ))
  23270. characterMakers.push(() => makeCharacter(
  23271. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23272. {
  23273. side: {
  23274. height: math.unit(5 + 11 / 12, "feet"),
  23275. weight: math.unit(1400, "lb"),
  23276. name: "Side",
  23277. image: {
  23278. source: "./media/characters/shadow-blade/side.svg",
  23279. extra: 1726 / 1267,
  23280. bottom: 58.4 / 1785
  23281. }
  23282. },
  23283. },
  23284. [
  23285. {
  23286. name: "Normal",
  23287. height: math.unit(5 + 11 / 12, "feet"),
  23288. default: true
  23289. },
  23290. ]
  23291. ))
  23292. characterMakers.push(() => makeCharacter(
  23293. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23294. {
  23295. front: {
  23296. height: math.unit(1 + 6 / 12, "feet"),
  23297. weight: math.unit(25, "lb"),
  23298. name: "Front",
  23299. image: {
  23300. source: "./media/characters/karla-halldor/front.svg",
  23301. extra: 1459 / 1383,
  23302. bottom: 12 / 1472
  23303. }
  23304. },
  23305. },
  23306. [
  23307. {
  23308. name: "Normal",
  23309. height: math.unit(1 + 6 / 12, "feet"),
  23310. default: true
  23311. },
  23312. ]
  23313. ))
  23314. characterMakers.push(() => makeCharacter(
  23315. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23316. {
  23317. front: {
  23318. height: math.unit(6 + 2 / 12, "feet"),
  23319. weight: math.unit(160, "lb"),
  23320. name: "Front",
  23321. image: {
  23322. source: "./media/characters/ariam/front.svg",
  23323. extra: 714 / 617,
  23324. bottom: 23.4 / 737,
  23325. }
  23326. },
  23327. squatting: {
  23328. height: math.unit(4.1, "feet"),
  23329. weight: math.unit(160, "lb"),
  23330. name: "Squatting",
  23331. image: {
  23332. source: "./media/characters/ariam/squatting.svg",
  23333. extra: 2617 / 2112,
  23334. bottom: 61.2 / 2681,
  23335. }
  23336. },
  23337. },
  23338. [
  23339. {
  23340. name: "Normal",
  23341. height: math.unit(6 + 2 / 12, "feet"),
  23342. default: true
  23343. },
  23344. {
  23345. name: "Normal+",
  23346. height: math.unit(4, "meters")
  23347. },
  23348. {
  23349. name: "Macro",
  23350. height: math.unit(50, "meters")
  23351. },
  23352. {
  23353. name: "Macro+",
  23354. height: math.unit(100, "meters")
  23355. },
  23356. {
  23357. name: "Megamacro",
  23358. height: math.unit(20, "km")
  23359. },
  23360. ]
  23361. ))
  23362. characterMakers.push(() => makeCharacter(
  23363. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23364. {
  23365. front: {
  23366. height: math.unit(1.67, "meters"),
  23367. weight: math.unit(140, "lb"),
  23368. name: "Front",
  23369. image: {
  23370. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23371. extra: 438 / 410,
  23372. bottom: 0.75 / 439
  23373. }
  23374. },
  23375. },
  23376. [
  23377. {
  23378. name: "Shrunken",
  23379. height: math.unit(7.6, "cm")
  23380. },
  23381. {
  23382. name: "Human Scale",
  23383. height: math.unit(1.67, "meters")
  23384. },
  23385. {
  23386. name: "Wolxi Scale",
  23387. height: math.unit(36.7, "meters"),
  23388. default: true
  23389. },
  23390. ]
  23391. ))
  23392. characterMakers.push(() => makeCharacter(
  23393. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23394. {
  23395. front: {
  23396. height: math.unit(1.73, "meters"),
  23397. weight: math.unit(240, "lb"),
  23398. name: "Front",
  23399. image: {
  23400. source: "./media/characters/izue-two-mothers/front.svg",
  23401. extra: 469 / 437,
  23402. bottom: 1.24 / 470.6
  23403. }
  23404. },
  23405. },
  23406. [
  23407. {
  23408. name: "Shrunken",
  23409. height: math.unit(7.86, "cm")
  23410. },
  23411. {
  23412. name: "Human Scale",
  23413. height: math.unit(1.73, "meters")
  23414. },
  23415. {
  23416. name: "Wolxi Scale",
  23417. height: math.unit(38, "meters"),
  23418. default: true
  23419. },
  23420. ]
  23421. ))
  23422. characterMakers.push(() => makeCharacter(
  23423. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23424. {
  23425. front: {
  23426. height: math.unit(1.55, "meters"),
  23427. weight: math.unit(120, "lb"),
  23428. name: "Front",
  23429. image: {
  23430. source: "./media/characters/teeku-love-shack/front.svg",
  23431. extra: 387 / 362,
  23432. bottom: 1.51 / 388
  23433. }
  23434. },
  23435. },
  23436. [
  23437. {
  23438. name: "Shrunken",
  23439. height: math.unit(7, "cm")
  23440. },
  23441. {
  23442. name: "Human Scale",
  23443. height: math.unit(1.55, "meters")
  23444. },
  23445. {
  23446. name: "Wolxi Scale",
  23447. height: math.unit(34.1, "meters"),
  23448. default: true
  23449. },
  23450. ]
  23451. ))
  23452. characterMakers.push(() => makeCharacter(
  23453. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23454. {
  23455. front: {
  23456. height: math.unit(1.83, "meters"),
  23457. weight: math.unit(135, "lb"),
  23458. name: "Front",
  23459. image: {
  23460. source: "./media/characters/dejma-the-red/front.svg",
  23461. extra: 480 / 458,
  23462. bottom: 1.8 / 482
  23463. }
  23464. },
  23465. },
  23466. [
  23467. {
  23468. name: "Shrunken",
  23469. height: math.unit(8.3, "cm")
  23470. },
  23471. {
  23472. name: "Human Scale",
  23473. height: math.unit(1.83, "meters")
  23474. },
  23475. {
  23476. name: "Wolxi Scale",
  23477. height: math.unit(40, "meters"),
  23478. default: true
  23479. },
  23480. ]
  23481. ))
  23482. characterMakers.push(() => makeCharacter(
  23483. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23484. {
  23485. front: {
  23486. height: math.unit(1.78, "meters"),
  23487. weight: math.unit(65, "kg"),
  23488. name: "Front",
  23489. image: {
  23490. source: "./media/characters/aki/front.svg",
  23491. extra: 452 / 415
  23492. }
  23493. },
  23494. frontNsfw: {
  23495. height: math.unit(1.78, "meters"),
  23496. weight: math.unit(65, "kg"),
  23497. name: "Front (NSFW)",
  23498. image: {
  23499. source: "./media/characters/aki/front-nsfw.svg",
  23500. extra: 452 / 415
  23501. }
  23502. },
  23503. back: {
  23504. height: math.unit(1.78, "meters"),
  23505. weight: math.unit(65, "kg"),
  23506. name: "Back",
  23507. image: {
  23508. source: "./media/characters/aki/back.svg",
  23509. extra: 452 / 415
  23510. }
  23511. },
  23512. rump: {
  23513. height: math.unit(2.05, "feet"),
  23514. name: "Rump",
  23515. image: {
  23516. source: "./media/characters/aki/rump.svg"
  23517. }
  23518. },
  23519. dick: {
  23520. height: math.unit(0.95, "feet"),
  23521. name: "Dick",
  23522. image: {
  23523. source: "./media/characters/aki/dick.svg"
  23524. }
  23525. },
  23526. },
  23527. [
  23528. {
  23529. name: "Micro",
  23530. height: math.unit(15, "cm")
  23531. },
  23532. {
  23533. name: "Normal",
  23534. height: math.unit(178, "cm"),
  23535. default: true
  23536. },
  23537. {
  23538. name: "Macro",
  23539. height: math.unit(214, "m")
  23540. },
  23541. {
  23542. name: "Macro+",
  23543. height: math.unit(534, "m")
  23544. },
  23545. ]
  23546. ))
  23547. characterMakers.push(() => makeCharacter(
  23548. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23549. {
  23550. front: {
  23551. height: math.unit(5 + 5 / 12, "feet"),
  23552. weight: math.unit(120, "lb"),
  23553. name: "Front",
  23554. image: {
  23555. source: "./media/characters/ari/front.svg",
  23556. extra: 714.5 / 682,
  23557. bottom: 8 / 722.5
  23558. }
  23559. },
  23560. },
  23561. [
  23562. {
  23563. name: "Normal",
  23564. height: math.unit(5 + 5 / 12, "feet")
  23565. },
  23566. {
  23567. name: "Macro",
  23568. height: math.unit(100, "feet"),
  23569. default: true
  23570. },
  23571. {
  23572. name: "Megamacro",
  23573. height: math.unit(100, "miles")
  23574. },
  23575. {
  23576. name: "Gigamacro",
  23577. height: math.unit(80000, "miles")
  23578. },
  23579. ]
  23580. ))
  23581. characterMakers.push(() => makeCharacter(
  23582. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23583. {
  23584. side: {
  23585. height: math.unit(9, "feet"),
  23586. weight: math.unit(400, "kg"),
  23587. name: "Side",
  23588. image: {
  23589. source: "./media/characters/bolt/side.svg",
  23590. extra: 1126 / 896,
  23591. bottom: 60 / 1187.3,
  23592. }
  23593. },
  23594. },
  23595. [
  23596. {
  23597. name: "Micro",
  23598. height: math.unit(5, "inches")
  23599. },
  23600. {
  23601. name: "Normal",
  23602. height: math.unit(9, "feet"),
  23603. default: true
  23604. },
  23605. {
  23606. name: "Macro",
  23607. height: math.unit(700, "feet")
  23608. },
  23609. {
  23610. name: "Max Size",
  23611. height: math.unit(1.52e22, "yottameters")
  23612. },
  23613. ]
  23614. ))
  23615. characterMakers.push(() => makeCharacter(
  23616. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23617. {
  23618. front: {
  23619. height: math.unit(4.53, "meters"),
  23620. weight: math.unit(3, "tons"),
  23621. name: "Front",
  23622. image: {
  23623. source: "./media/characters/draekon-sylviar/front.svg",
  23624. extra: 1228 / 1068,
  23625. bottom: 41 / 1270
  23626. }
  23627. },
  23628. tail: {
  23629. height: math.unit(1.772, "meter"),
  23630. name: "Tail",
  23631. image: {
  23632. source: "./media/characters/draekon-sylviar/tail.svg"
  23633. }
  23634. },
  23635. head: {
  23636. height: math.unit(1.331, "meter"),
  23637. name: "Head",
  23638. image: {
  23639. source: "./media/characters/draekon-sylviar/head.svg"
  23640. }
  23641. },
  23642. hand: {
  23643. height: math.unit(0.564, "meter"),
  23644. name: "Hand",
  23645. image: {
  23646. source: "./media/characters/draekon-sylviar/hand.svg"
  23647. }
  23648. },
  23649. foot: {
  23650. height: math.unit(0.621, "meter"),
  23651. name: "Foot",
  23652. image: {
  23653. source: "./media/characters/draekon-sylviar/foot.svg",
  23654. bottom: 32 / 324
  23655. }
  23656. },
  23657. dick: {
  23658. height: math.unit(61, "cm"),
  23659. name: "Dick",
  23660. image: {
  23661. source: "./media/characters/draekon-sylviar/dick.svg"
  23662. }
  23663. },
  23664. dickseparated: {
  23665. height: math.unit(61, "cm"),
  23666. name: "Dick-separated",
  23667. image: {
  23668. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23669. }
  23670. },
  23671. },
  23672. [
  23673. {
  23674. name: "Small",
  23675. height: math.unit(4.53 / 2, "meters"),
  23676. default: true
  23677. },
  23678. {
  23679. name: "Normal",
  23680. height: math.unit(4.53, "meters"),
  23681. default: true
  23682. },
  23683. {
  23684. name: "Large",
  23685. height: math.unit(4.53 * 2, "meters"),
  23686. },
  23687. ]
  23688. ))
  23689. characterMakers.push(() => makeCharacter(
  23690. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23691. {
  23692. front: {
  23693. height: math.unit(6 + 2 / 12, "feet"),
  23694. weight: math.unit(180, "lb"),
  23695. name: "Front",
  23696. image: {
  23697. source: "./media/characters/brawler/front.svg",
  23698. extra: 3301 / 3027,
  23699. bottom: 138 / 3439
  23700. }
  23701. },
  23702. },
  23703. [
  23704. {
  23705. name: "Normal",
  23706. height: math.unit(6 + 2 / 12, "feet"),
  23707. default: true
  23708. },
  23709. ]
  23710. ))
  23711. characterMakers.push(() => makeCharacter(
  23712. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23713. {
  23714. front: {
  23715. height: math.unit(11, "feet"),
  23716. weight: math.unit(1000, "lb"),
  23717. name: "Front",
  23718. image: {
  23719. source: "./media/characters/alex/front.svg",
  23720. bottom: 44.5 / 620
  23721. }
  23722. },
  23723. },
  23724. [
  23725. {
  23726. name: "Micro",
  23727. height: math.unit(5, "inches")
  23728. },
  23729. {
  23730. name: "Normal",
  23731. height: math.unit(11, "feet"),
  23732. default: true
  23733. },
  23734. {
  23735. name: "Macro",
  23736. height: math.unit(9.5e9, "feet")
  23737. },
  23738. {
  23739. name: "Max Size",
  23740. height: math.unit(1.4e283, "yottameters")
  23741. },
  23742. ]
  23743. ))
  23744. characterMakers.push(() => makeCharacter(
  23745. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23746. {
  23747. female: {
  23748. height: math.unit(29.9, "m"),
  23749. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23750. name: "Female",
  23751. image: {
  23752. source: "./media/characters/zenari/female.svg",
  23753. extra: 3281.6 / 3217,
  23754. bottom: 72.2 / 3353
  23755. }
  23756. },
  23757. male: {
  23758. height: math.unit(27.7, "m"),
  23759. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23760. name: "Male",
  23761. image: {
  23762. source: "./media/characters/zenari/male.svg",
  23763. extra: 3008 / 2991,
  23764. bottom: 54.6 / 3069
  23765. }
  23766. },
  23767. },
  23768. [
  23769. {
  23770. name: "Macro",
  23771. height: math.unit(29.7, "meters"),
  23772. default: true
  23773. },
  23774. ]
  23775. ))
  23776. characterMakers.push(() => makeCharacter(
  23777. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23778. {
  23779. female: {
  23780. height: math.unit(23.8, "m"),
  23781. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23782. name: "Female",
  23783. image: {
  23784. source: "./media/characters/mactarian/female.svg",
  23785. extra: 2662 / 2569,
  23786. bottom: 73 / 2736
  23787. }
  23788. },
  23789. male: {
  23790. height: math.unit(23.8, "m"),
  23791. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23792. name: "Male",
  23793. image: {
  23794. source: "./media/characters/mactarian/male.svg",
  23795. extra: 2673 / 2600,
  23796. bottom: 76 / 2750
  23797. }
  23798. },
  23799. },
  23800. [
  23801. {
  23802. name: "Macro",
  23803. height: math.unit(23.8, "meters"),
  23804. default: true
  23805. },
  23806. ]
  23807. ))
  23808. characterMakers.push(() => makeCharacter(
  23809. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23810. {
  23811. female: {
  23812. height: math.unit(19.3, "m"),
  23813. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23814. name: "Female",
  23815. image: {
  23816. source: "./media/characters/umok/female.svg",
  23817. extra: 2186 / 2078,
  23818. bottom: 87 / 2277
  23819. }
  23820. },
  23821. male: {
  23822. height: math.unit(19.5, "m"),
  23823. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23824. name: "Male",
  23825. image: {
  23826. source: "./media/characters/umok/male.svg",
  23827. extra: 2233 / 2140,
  23828. bottom: 24.4 / 2258
  23829. }
  23830. },
  23831. },
  23832. [
  23833. {
  23834. name: "Macro",
  23835. height: math.unit(19.3, "meters"),
  23836. default: true
  23837. },
  23838. ]
  23839. ))
  23840. characterMakers.push(() => makeCharacter(
  23841. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23842. {
  23843. female: {
  23844. height: math.unit(26.15, "m"),
  23845. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23846. name: "Female",
  23847. image: {
  23848. source: "./media/characters/joraxian/female.svg",
  23849. extra: 2912 / 2824,
  23850. bottom: 36 / 2956
  23851. }
  23852. },
  23853. male: {
  23854. height: math.unit(25.4, "m"),
  23855. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23856. name: "Male",
  23857. image: {
  23858. source: "./media/characters/joraxian/male.svg",
  23859. extra: 2877 / 2721,
  23860. bottom: 82 / 2967
  23861. }
  23862. },
  23863. },
  23864. [
  23865. {
  23866. name: "Macro",
  23867. height: math.unit(26.15, "meters"),
  23868. default: true
  23869. },
  23870. ]
  23871. ))
  23872. characterMakers.push(() => makeCharacter(
  23873. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23874. {
  23875. female: {
  23876. height: math.unit(21.6, "m"),
  23877. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23878. name: "Female",
  23879. image: {
  23880. source: "./media/characters/sthara/female.svg",
  23881. extra: 2516 / 2347,
  23882. bottom: 21.5 / 2537
  23883. }
  23884. },
  23885. male: {
  23886. height: math.unit(24, "m"),
  23887. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23888. name: "Male",
  23889. image: {
  23890. source: "./media/characters/sthara/male.svg",
  23891. extra: 2732 / 2607,
  23892. bottom: 23 / 2732
  23893. }
  23894. },
  23895. },
  23896. [
  23897. {
  23898. name: "Macro",
  23899. height: math.unit(21.6, "meters"),
  23900. default: true
  23901. },
  23902. ]
  23903. ))
  23904. characterMakers.push(() => makeCharacter(
  23905. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23906. {
  23907. front: {
  23908. height: math.unit(6 + 4 / 12, "feet"),
  23909. weight: math.unit(175, "lb"),
  23910. name: "Front",
  23911. image: {
  23912. source: "./media/characters/luka-bryzant/front.svg",
  23913. extra: 311 / 289,
  23914. bottom: 4 / 315
  23915. }
  23916. },
  23917. back: {
  23918. height: math.unit(6 + 4 / 12, "feet"),
  23919. weight: math.unit(175, "lb"),
  23920. name: "Back",
  23921. image: {
  23922. source: "./media/characters/luka-bryzant/back.svg",
  23923. extra: 311 / 289,
  23924. bottom: 3.8 / 313.7
  23925. }
  23926. },
  23927. },
  23928. [
  23929. {
  23930. name: "Micro",
  23931. height: math.unit(10, "inches")
  23932. },
  23933. {
  23934. name: "Normal",
  23935. height: math.unit(6 + 4 / 12, "feet"),
  23936. default: true
  23937. },
  23938. {
  23939. name: "Large",
  23940. height: math.unit(12, "feet")
  23941. },
  23942. ]
  23943. ))
  23944. characterMakers.push(() => makeCharacter(
  23945. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23946. {
  23947. front: {
  23948. height: math.unit(5 + 7 / 12, "feet"),
  23949. weight: math.unit(185, "lb"),
  23950. name: "Front",
  23951. image: {
  23952. source: "./media/characters/aman-aquila/front.svg",
  23953. extra: 1013 / 976,
  23954. bottom: 45.6 / 1057
  23955. }
  23956. },
  23957. side: {
  23958. height: math.unit(5 + 7 / 12, "feet"),
  23959. weight: math.unit(185, "lb"),
  23960. name: "Side",
  23961. image: {
  23962. source: "./media/characters/aman-aquila/side.svg",
  23963. extra: 1054 / 1011,
  23964. bottom: 15 / 1070
  23965. }
  23966. },
  23967. back: {
  23968. height: math.unit(5 + 7 / 12, "feet"),
  23969. weight: math.unit(185, "lb"),
  23970. name: "Back",
  23971. image: {
  23972. source: "./media/characters/aman-aquila/back.svg",
  23973. extra: 1026 / 970,
  23974. bottom: 12 / 1039
  23975. }
  23976. },
  23977. head: {
  23978. height: math.unit(1.211, "feet"),
  23979. name: "Head",
  23980. image: {
  23981. source: "./media/characters/aman-aquila/head.svg",
  23982. }
  23983. },
  23984. },
  23985. [
  23986. {
  23987. name: "Minimicro",
  23988. height: math.unit(0.057, "inches")
  23989. },
  23990. {
  23991. name: "Micro",
  23992. height: math.unit(7, "inches")
  23993. },
  23994. {
  23995. name: "Mini",
  23996. height: math.unit(3 + 7 / 12, "feet")
  23997. },
  23998. {
  23999. name: "Normal",
  24000. height: math.unit(5 + 7 / 12, "feet"),
  24001. default: true
  24002. },
  24003. {
  24004. name: "Macro",
  24005. height: math.unit(157 + 7 / 12, "feet")
  24006. },
  24007. {
  24008. name: "Megamacro",
  24009. height: math.unit(1557 + 7 / 12, "feet")
  24010. },
  24011. {
  24012. name: "Gigamacro",
  24013. height: math.unit(15557 + 7 / 12, "feet")
  24014. },
  24015. ]
  24016. ))
  24017. characterMakers.push(() => makeCharacter(
  24018. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24019. {
  24020. front: {
  24021. height: math.unit(3 + 2 / 12, "inches"),
  24022. weight: math.unit(0.3, "ounces"),
  24023. name: "Front",
  24024. image: {
  24025. source: "./media/characters/hiphae/front.svg",
  24026. extra: 1931 / 1683,
  24027. bottom: 24 / 1955
  24028. }
  24029. },
  24030. },
  24031. [
  24032. {
  24033. name: "Normal",
  24034. height: math.unit(3 + 1 / 2, "inches"),
  24035. default: true
  24036. },
  24037. ]
  24038. ))
  24039. characterMakers.push(() => makeCharacter(
  24040. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24041. {
  24042. front: {
  24043. height: math.unit(5 + 10 / 12, "feet"),
  24044. weight: math.unit(165, "lb"),
  24045. name: "Front",
  24046. image: {
  24047. source: "./media/characters/nicky/front.svg",
  24048. extra: 3144 / 2886,
  24049. bottom: 45.6 / 3192
  24050. }
  24051. },
  24052. back: {
  24053. height: math.unit(5 + 10 / 12, "feet"),
  24054. weight: math.unit(165, "lb"),
  24055. name: "Back",
  24056. image: {
  24057. source: "./media/characters/nicky/back.svg",
  24058. extra: 3055 / 2804,
  24059. bottom: 28.4 / 3087
  24060. }
  24061. },
  24062. frontclothed: {
  24063. height: math.unit(5 + 10 / 12, "feet"),
  24064. weight: math.unit(165, "lb"),
  24065. name: "Front-clothed",
  24066. image: {
  24067. source: "./media/characters/nicky/front-clothed.svg",
  24068. extra: 3184.9 / 2926.9,
  24069. bottom: 86.5 / 3239.9
  24070. }
  24071. },
  24072. foot: {
  24073. height: math.unit(1.16, "feet"),
  24074. name: "Foot",
  24075. image: {
  24076. source: "./media/characters/nicky/foot.svg"
  24077. }
  24078. },
  24079. feet: {
  24080. height: math.unit(1.34, "feet"),
  24081. name: "Feet",
  24082. image: {
  24083. source: "./media/characters/nicky/feet.svg"
  24084. }
  24085. },
  24086. maw: {
  24087. height: math.unit(0.9, "feet"),
  24088. name: "Maw",
  24089. image: {
  24090. source: "./media/characters/nicky/maw.svg"
  24091. }
  24092. },
  24093. },
  24094. [
  24095. {
  24096. name: "Normal",
  24097. height: math.unit(5 + 10 / 12, "feet"),
  24098. default: true
  24099. },
  24100. {
  24101. name: "Macro",
  24102. height: math.unit(60, "feet")
  24103. },
  24104. {
  24105. name: "Megamacro",
  24106. height: math.unit(1, "mile")
  24107. },
  24108. ]
  24109. ))
  24110. characterMakers.push(() => makeCharacter(
  24111. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24112. {
  24113. side: {
  24114. height: math.unit(10, "feet"),
  24115. weight: math.unit(600, "lb"),
  24116. name: "Side",
  24117. image: {
  24118. source: "./media/characters/blair/side.svg",
  24119. bottom: 16.6 / 475,
  24120. extra: 458 / 431
  24121. }
  24122. },
  24123. },
  24124. [
  24125. {
  24126. name: "Micro",
  24127. height: math.unit(8, "inches")
  24128. },
  24129. {
  24130. name: "Normal",
  24131. height: math.unit(10, "feet"),
  24132. default: true
  24133. },
  24134. {
  24135. name: "Macro",
  24136. height: math.unit(180, "feet")
  24137. },
  24138. ]
  24139. ))
  24140. characterMakers.push(() => makeCharacter(
  24141. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24142. {
  24143. front: {
  24144. height: math.unit(5 + 4 / 12, "feet"),
  24145. weight: math.unit(125, "lb"),
  24146. name: "Front",
  24147. image: {
  24148. source: "./media/characters/fisher/front.svg",
  24149. extra: 444 / 390,
  24150. bottom: 2 / 444.8
  24151. }
  24152. },
  24153. },
  24154. [
  24155. {
  24156. name: "Micro",
  24157. height: math.unit(4, "inches")
  24158. },
  24159. {
  24160. name: "Normal",
  24161. height: math.unit(5 + 4 / 12, "feet"),
  24162. default: true
  24163. },
  24164. {
  24165. name: "Macro",
  24166. height: math.unit(100, "feet")
  24167. },
  24168. ]
  24169. ))
  24170. characterMakers.push(() => makeCharacter(
  24171. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24172. {
  24173. front: {
  24174. height: math.unit(6.71, "feet"),
  24175. weight: math.unit(200, "lb"),
  24176. capacity: math.unit(1000000, "people"),
  24177. name: "Front",
  24178. image: {
  24179. source: "./media/characters/gliss/front.svg",
  24180. extra: 2347 / 2231,
  24181. bottom: 113 / 2462
  24182. }
  24183. },
  24184. hammerspaceSize: {
  24185. height: math.unit(6.71 * 717, "feet"),
  24186. weight: math.unit(200, "lb"),
  24187. capacity: math.unit(1000000, "people"),
  24188. name: "Hammerspace Size",
  24189. image: {
  24190. source: "./media/characters/gliss/front.svg",
  24191. extra: 2347 / 2231,
  24192. bottom: 113 / 2462
  24193. }
  24194. },
  24195. },
  24196. [
  24197. {
  24198. name: "Normal",
  24199. height: math.unit(6.71, "feet"),
  24200. default: true
  24201. },
  24202. ]
  24203. ))
  24204. characterMakers.push(() => makeCharacter(
  24205. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24206. {
  24207. side: {
  24208. height: math.unit(1.44, "m"),
  24209. weight: math.unit(80, "kg"),
  24210. name: "Side",
  24211. image: {
  24212. source: "./media/characters/dune-anderson/side.svg",
  24213. bottom: 49 / 1426
  24214. }
  24215. },
  24216. },
  24217. [
  24218. {
  24219. name: "Wolf-sized",
  24220. height: math.unit(1.44, "meters")
  24221. },
  24222. {
  24223. name: "Normal",
  24224. height: math.unit(5.05, "meters"),
  24225. default: true
  24226. },
  24227. {
  24228. name: "Big",
  24229. height: math.unit(14.4, "meters")
  24230. },
  24231. {
  24232. name: "Huge",
  24233. height: math.unit(144, "meters")
  24234. },
  24235. ]
  24236. ))
  24237. characterMakers.push(() => makeCharacter(
  24238. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24239. {
  24240. front: {
  24241. height: math.unit(7, "feet"),
  24242. weight: math.unit(425, "lb"),
  24243. name: "Front",
  24244. image: {
  24245. source: "./media/characters/hind/front.svg",
  24246. extra: 2091 / 1860,
  24247. bottom: 129 / 2220
  24248. }
  24249. },
  24250. back: {
  24251. height: math.unit(7, "feet"),
  24252. weight: math.unit(425, "lb"),
  24253. name: "Back",
  24254. image: {
  24255. source: "./media/characters/hind/back.svg",
  24256. extra: 2091 / 1860,
  24257. bottom: 24.6 / 2309
  24258. }
  24259. },
  24260. tail: {
  24261. height: math.unit(2.8, "feet"),
  24262. name: "Tail",
  24263. image: {
  24264. source: "./media/characters/hind/tail.svg"
  24265. }
  24266. },
  24267. head: {
  24268. height: math.unit(2.55, "feet"),
  24269. name: "Head",
  24270. image: {
  24271. source: "./media/characters/hind/head.svg"
  24272. }
  24273. },
  24274. },
  24275. [
  24276. {
  24277. name: "XS",
  24278. height: math.unit(0.7, "feet")
  24279. },
  24280. {
  24281. name: "Normal",
  24282. height: math.unit(7, "feet"),
  24283. default: true
  24284. },
  24285. {
  24286. name: "XL",
  24287. height: math.unit(70, "feet")
  24288. },
  24289. ]
  24290. ))
  24291. characterMakers.push(() => makeCharacter(
  24292. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24293. {
  24294. front: {
  24295. height: math.unit(6, "feet"),
  24296. weight: math.unit(150, "lb"),
  24297. name: "Front",
  24298. image: {
  24299. source: "./media/characters/dylan-skaven/front.svg",
  24300. extra: 2318 / 2063,
  24301. bottom: 93.4 / 2410
  24302. }
  24303. },
  24304. },
  24305. [
  24306. {
  24307. name: "Nano",
  24308. height: math.unit(1, "mm")
  24309. },
  24310. {
  24311. name: "Micro",
  24312. height: math.unit(1, "cm")
  24313. },
  24314. {
  24315. name: "Normal",
  24316. height: math.unit(2.1, "meters"),
  24317. default: true
  24318. },
  24319. ]
  24320. ))
  24321. characterMakers.push(() => makeCharacter(
  24322. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24323. {
  24324. front: {
  24325. height: math.unit(7 + 5 / 12, "feet"),
  24326. weight: math.unit(357, "lb"),
  24327. name: "Front",
  24328. image: {
  24329. source: "./media/characters/solex-draconov/front.svg",
  24330. extra: 1993 / 1865,
  24331. bottom: 117 / 2111
  24332. }
  24333. },
  24334. },
  24335. [
  24336. {
  24337. name: "Natural Height",
  24338. height: math.unit(7 + 5 / 12, "feet"),
  24339. default: true
  24340. },
  24341. {
  24342. name: "Macro",
  24343. height: math.unit(350, "feet")
  24344. },
  24345. {
  24346. name: "Macro+",
  24347. height: math.unit(1000, "feet")
  24348. },
  24349. {
  24350. name: "Megamacro",
  24351. height: math.unit(20, "km")
  24352. },
  24353. {
  24354. name: "Megamacro+",
  24355. height: math.unit(1000, "km")
  24356. },
  24357. {
  24358. name: "Gigamacro",
  24359. height: math.unit(2.5, "Gm")
  24360. },
  24361. {
  24362. name: "Teramacro",
  24363. height: math.unit(15, "Tm")
  24364. },
  24365. {
  24366. name: "Galactic",
  24367. height: math.unit(30, "Zm")
  24368. },
  24369. {
  24370. name: "Universal",
  24371. height: math.unit(21000, "Ym")
  24372. },
  24373. {
  24374. name: "Omniversal",
  24375. height: math.unit(9.861e50, "Ym")
  24376. },
  24377. {
  24378. name: "Existential",
  24379. height: math.unit(1e300, "meters")
  24380. },
  24381. ]
  24382. ))
  24383. characterMakers.push(() => makeCharacter(
  24384. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24385. {
  24386. side: {
  24387. height: math.unit(25, "feet"),
  24388. weight: math.unit(90000, "lb"),
  24389. name: "Side",
  24390. image: {
  24391. source: "./media/characters/mandarax/side.svg",
  24392. extra: 614 / 332,
  24393. bottom: 55 / 630
  24394. }
  24395. },
  24396. head: {
  24397. height: math.unit(11.4, "feet"),
  24398. name: "Head",
  24399. image: {
  24400. source: "./media/characters/mandarax/head.svg"
  24401. }
  24402. },
  24403. belly: {
  24404. height: math.unit(33, "feet"),
  24405. name: "Belly",
  24406. capacity: math.unit(500, "people"),
  24407. image: {
  24408. source: "./media/characters/mandarax/belly.svg"
  24409. }
  24410. },
  24411. dick: {
  24412. height: math.unit(8.46, "feet"),
  24413. name: "Dick",
  24414. image: {
  24415. source: "./media/characters/mandarax/dick.svg"
  24416. }
  24417. },
  24418. top: {
  24419. height: math.unit(28, "meters"),
  24420. name: "Top",
  24421. image: {
  24422. source: "./media/characters/mandarax/top.svg"
  24423. }
  24424. },
  24425. },
  24426. [
  24427. {
  24428. name: "Normal",
  24429. height: math.unit(25, "feet"),
  24430. default: true
  24431. },
  24432. ]
  24433. ))
  24434. characterMakers.push(() => makeCharacter(
  24435. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24436. {
  24437. front: {
  24438. height: math.unit(5, "feet"),
  24439. weight: math.unit(90, "lb"),
  24440. name: "Front",
  24441. image: {
  24442. source: "./media/characters/pixil/front.svg",
  24443. extra: 2000 / 1618,
  24444. bottom: 12.3 / 2011
  24445. }
  24446. },
  24447. },
  24448. [
  24449. {
  24450. name: "Normal",
  24451. height: math.unit(5, "feet"),
  24452. default: true
  24453. },
  24454. {
  24455. name: "Megamacro",
  24456. height: math.unit(10, "miles"),
  24457. },
  24458. ]
  24459. ))
  24460. characterMakers.push(() => makeCharacter(
  24461. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24462. {
  24463. front: {
  24464. height: math.unit(7 + 2 / 12, "feet"),
  24465. weight: math.unit(200, "lb"),
  24466. name: "Front",
  24467. image: {
  24468. source: "./media/characters/angel/front.svg",
  24469. extra: 1830 / 1737,
  24470. bottom: 22.6 / 1854,
  24471. }
  24472. },
  24473. },
  24474. [
  24475. {
  24476. name: "Normal",
  24477. height: math.unit(7 + 2 / 12, "feet"),
  24478. default: true
  24479. },
  24480. {
  24481. name: "Macro",
  24482. height: math.unit(1000, "feet")
  24483. },
  24484. {
  24485. name: "Megamacro",
  24486. height: math.unit(2, "miles")
  24487. },
  24488. {
  24489. name: "Gigamacro",
  24490. height: math.unit(20, "earths")
  24491. },
  24492. ]
  24493. ))
  24494. characterMakers.push(() => makeCharacter(
  24495. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24496. {
  24497. front: {
  24498. height: math.unit(5, "feet"),
  24499. weight: math.unit(180, "lb"),
  24500. name: "Front",
  24501. image: {
  24502. source: "./media/characters/mekana/front.svg",
  24503. extra: 1671 / 1605,
  24504. bottom: 3.5 / 1691
  24505. }
  24506. },
  24507. side: {
  24508. height: math.unit(5, "feet"),
  24509. weight: math.unit(180, "lb"),
  24510. name: "Side",
  24511. image: {
  24512. source: "./media/characters/mekana/side.svg",
  24513. extra: 1671 / 1605,
  24514. bottom: 3.5 / 1691
  24515. }
  24516. },
  24517. back: {
  24518. height: math.unit(5, "feet"),
  24519. weight: math.unit(180, "lb"),
  24520. name: "Back",
  24521. image: {
  24522. source: "./media/characters/mekana/back.svg",
  24523. extra: 1671 / 1605,
  24524. bottom: 3.5 / 1691
  24525. }
  24526. },
  24527. },
  24528. [
  24529. {
  24530. name: "Normal",
  24531. height: math.unit(5, "feet"),
  24532. default: true
  24533. },
  24534. ]
  24535. ))
  24536. characterMakers.push(() => makeCharacter(
  24537. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24538. {
  24539. front: {
  24540. height: math.unit(4 + 6 / 12, "feet"),
  24541. weight: math.unit(80, "lb"),
  24542. name: "Front",
  24543. image: {
  24544. source: "./media/characters/pixie/front.svg",
  24545. extra: 1924 / 1825,
  24546. bottom: 22.4 / 1946
  24547. }
  24548. },
  24549. },
  24550. [
  24551. {
  24552. name: "Normal",
  24553. height: math.unit(4 + 6 / 12, "feet"),
  24554. default: true
  24555. },
  24556. {
  24557. name: "Macro",
  24558. height: math.unit(40, "feet")
  24559. },
  24560. ]
  24561. ))
  24562. characterMakers.push(() => makeCharacter(
  24563. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24564. {
  24565. front: {
  24566. height: math.unit(2.1, "meters"),
  24567. weight: math.unit(200, "lb"),
  24568. name: "Front",
  24569. image: {
  24570. source: "./media/characters/the-lascivious/front.svg",
  24571. extra: 1 / 0.893,
  24572. bottom: 3.5 / 573.7
  24573. }
  24574. },
  24575. },
  24576. [
  24577. {
  24578. name: "Human Scale",
  24579. height: math.unit(2.1, "meters")
  24580. },
  24581. {
  24582. name: "Wolxi Scale",
  24583. height: math.unit(46.2, "m"),
  24584. default: true
  24585. },
  24586. {
  24587. name: "Boinker of Buildings",
  24588. height: math.unit(10, "km")
  24589. },
  24590. {
  24591. name: "Shagger of Skyscrapers",
  24592. height: math.unit(40, "km")
  24593. },
  24594. {
  24595. name: "Banger of Boroughs",
  24596. height: math.unit(4000, "km")
  24597. },
  24598. {
  24599. name: "Screwer of States",
  24600. height: math.unit(100000, "km")
  24601. },
  24602. {
  24603. name: "Pounder of Planets",
  24604. height: math.unit(2000000, "km")
  24605. },
  24606. ]
  24607. ))
  24608. characterMakers.push(() => makeCharacter(
  24609. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24610. {
  24611. front: {
  24612. height: math.unit(6, "feet"),
  24613. weight: math.unit(150, "lb"),
  24614. name: "Front",
  24615. image: {
  24616. source: "./media/characters/aj/front.svg",
  24617. extra: 2039 / 1562,
  24618. bottom: 40 / 2079
  24619. }
  24620. },
  24621. },
  24622. [
  24623. {
  24624. name: "Normal",
  24625. height: math.unit(11 + 6 / 12, "feet"),
  24626. default: true
  24627. },
  24628. {
  24629. name: "Megamacro",
  24630. height: math.unit(60, "megameters")
  24631. },
  24632. ]
  24633. ))
  24634. characterMakers.push(() => makeCharacter(
  24635. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24636. {
  24637. side: {
  24638. height: math.unit(31 + 8 / 12, "feet"),
  24639. weight: math.unit(75000, "kg"),
  24640. name: "Side",
  24641. image: {
  24642. source: "./media/characters/koros/side.svg",
  24643. extra: 1442 / 1297,
  24644. bottom: 122.7 / 1562
  24645. }
  24646. },
  24647. dicksKingsCrown: {
  24648. height: math.unit(6, "feet"),
  24649. name: "Dicks (King's Crown)",
  24650. image: {
  24651. source: "./media/characters/koros/dicks-kings-crown.svg"
  24652. }
  24653. },
  24654. dicksTailSet: {
  24655. height: math.unit(3, "feet"),
  24656. name: "Dicks (Tail Set)",
  24657. image: {
  24658. source: "./media/characters/koros/dicks-tail-set.svg"
  24659. }
  24660. },
  24661. dickCumming: {
  24662. height: math.unit(7.98, "feet"),
  24663. name: "Dick (Cumming)",
  24664. image: {
  24665. source: "./media/characters/koros/dick-cumming.svg"
  24666. }
  24667. },
  24668. dicksBack: {
  24669. height: math.unit(5.9, "feet"),
  24670. name: "Dicks (Back)",
  24671. image: {
  24672. source: "./media/characters/koros/dicks-back.svg"
  24673. }
  24674. },
  24675. dicksFront: {
  24676. height: math.unit(3.72, "feet"),
  24677. name: "Dicks (Front)",
  24678. image: {
  24679. source: "./media/characters/koros/dicks-front.svg"
  24680. }
  24681. },
  24682. dicksPeeking: {
  24683. height: math.unit(3.0, "feet"),
  24684. name: "Dicks (Peeking)",
  24685. image: {
  24686. source: "./media/characters/koros/dicks-peeking.svg"
  24687. }
  24688. },
  24689. eye: {
  24690. height: math.unit(1.7, "feet"),
  24691. name: "Eye",
  24692. image: {
  24693. source: "./media/characters/koros/eye.svg"
  24694. }
  24695. },
  24696. headFront: {
  24697. height: math.unit(11.69, "feet"),
  24698. name: "Head (Front)",
  24699. image: {
  24700. source: "./media/characters/koros/head-front.svg"
  24701. }
  24702. },
  24703. headSide: {
  24704. height: math.unit(14, "feet"),
  24705. name: "Head (Side)",
  24706. image: {
  24707. source: "./media/characters/koros/head-side.svg"
  24708. }
  24709. },
  24710. leg: {
  24711. height: math.unit(17, "feet"),
  24712. name: "Leg",
  24713. image: {
  24714. source: "./media/characters/koros/leg.svg"
  24715. }
  24716. },
  24717. mawSide: {
  24718. height: math.unit(12.8, "feet"),
  24719. name: "Maw (Side)",
  24720. image: {
  24721. source: "./media/characters/koros/maw-side.svg"
  24722. }
  24723. },
  24724. mawSpitting: {
  24725. height: math.unit(17, "feet"),
  24726. name: "Maw (Spitting)",
  24727. image: {
  24728. source: "./media/characters/koros/maw-spitting.svg"
  24729. }
  24730. },
  24731. slit: {
  24732. height: math.unit(2.8, "feet"),
  24733. name: "Slit",
  24734. image: {
  24735. source: "./media/characters/koros/slit.svg"
  24736. }
  24737. },
  24738. stomach: {
  24739. height: math.unit(6.8, "feet"),
  24740. capacity: math.unit(20, "people"),
  24741. name: "Stomach",
  24742. image: {
  24743. source: "./media/characters/koros/stomach.svg"
  24744. }
  24745. },
  24746. wingspanBottom: {
  24747. height: math.unit(114, "feet"),
  24748. name: "Wingspan (Bottom)",
  24749. image: {
  24750. source: "./media/characters/koros/wingspan-bottom.svg"
  24751. }
  24752. },
  24753. wingspanTop: {
  24754. height: math.unit(104, "feet"),
  24755. name: "Wingspan (Top)",
  24756. image: {
  24757. source: "./media/characters/koros/wingspan-top.svg"
  24758. }
  24759. },
  24760. },
  24761. [
  24762. {
  24763. name: "Normal",
  24764. height: math.unit(31 + 8 / 12, "feet"),
  24765. default: true
  24766. },
  24767. ]
  24768. ))
  24769. characterMakers.push(() => makeCharacter(
  24770. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24771. {
  24772. front: {
  24773. height: math.unit(18 + 5 / 12, "feet"),
  24774. weight: math.unit(3750, "kg"),
  24775. name: "Front",
  24776. image: {
  24777. source: "./media/characters/vexx/front.svg",
  24778. extra: 426 / 396,
  24779. bottom: 31.5 / 458
  24780. }
  24781. },
  24782. maw: {
  24783. height: math.unit(6, "feet"),
  24784. name: "Maw",
  24785. image: {
  24786. source: "./media/characters/vexx/maw.svg"
  24787. }
  24788. },
  24789. },
  24790. [
  24791. {
  24792. name: "Normal",
  24793. height: math.unit(18 + 5 / 12, "feet"),
  24794. default: true
  24795. },
  24796. ]
  24797. ))
  24798. characterMakers.push(() => makeCharacter(
  24799. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24800. {
  24801. front: {
  24802. height: math.unit(17 + 6 / 12, "feet"),
  24803. weight: math.unit(150, "lb"),
  24804. name: "Front",
  24805. image: {
  24806. source: "./media/characters/baadra/front.svg",
  24807. extra: 3137 / 2890,
  24808. bottom: 168.4 / 3305
  24809. }
  24810. },
  24811. back: {
  24812. height: math.unit(17 + 6 / 12, "feet"),
  24813. weight: math.unit(150, "lb"),
  24814. name: "Back",
  24815. image: {
  24816. source: "./media/characters/baadra/back.svg",
  24817. extra: 3142 / 2890,
  24818. bottom: 220 / 3371
  24819. }
  24820. },
  24821. head: {
  24822. height: math.unit(5.45, "feet"),
  24823. name: "Head",
  24824. image: {
  24825. source: "./media/characters/baadra/head.svg"
  24826. }
  24827. },
  24828. headAngry: {
  24829. height: math.unit(4.95, "feet"),
  24830. name: "Head (Angry)",
  24831. image: {
  24832. source: "./media/characters/baadra/head-angry.svg"
  24833. }
  24834. },
  24835. headOpen: {
  24836. height: math.unit(6, "feet"),
  24837. name: "Head (Open)",
  24838. image: {
  24839. source: "./media/characters/baadra/head-open.svg"
  24840. }
  24841. },
  24842. },
  24843. [
  24844. {
  24845. name: "Normal",
  24846. height: math.unit(17 + 6 / 12, "feet"),
  24847. default: true
  24848. },
  24849. ]
  24850. ))
  24851. characterMakers.push(() => makeCharacter(
  24852. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24853. {
  24854. front: {
  24855. height: math.unit(7 + 3 / 12, "feet"),
  24856. weight: math.unit(180, "lb"),
  24857. name: "Front",
  24858. image: {
  24859. source: "./media/characters/juri/front.svg",
  24860. extra: 1401 / 1237,
  24861. bottom: 18.5 / 1418
  24862. }
  24863. },
  24864. side: {
  24865. height: math.unit(7 + 3 / 12, "feet"),
  24866. weight: math.unit(180, "lb"),
  24867. name: "Side",
  24868. image: {
  24869. source: "./media/characters/juri/side.svg",
  24870. extra: 1424 / 1242,
  24871. bottom: 18.5 / 1447
  24872. }
  24873. },
  24874. sitting: {
  24875. height: math.unit(6, "feet"),
  24876. weight: math.unit(180, "lb"),
  24877. name: "Sitting",
  24878. image: {
  24879. source: "./media/characters/juri/sitting.svg",
  24880. extra: 1270 / 1143,
  24881. bottom: 100 / 1343
  24882. }
  24883. },
  24884. back: {
  24885. height: math.unit(7 + 3 / 12, "feet"),
  24886. weight: math.unit(180, "lb"),
  24887. name: "Back",
  24888. image: {
  24889. source: "./media/characters/juri/back.svg",
  24890. extra: 1377 / 1240,
  24891. bottom: 23.7 / 1405
  24892. }
  24893. },
  24894. maw: {
  24895. height: math.unit(2.8, "feet"),
  24896. name: "Maw",
  24897. image: {
  24898. source: "./media/characters/juri/maw.svg"
  24899. }
  24900. },
  24901. stomach: {
  24902. height: math.unit(0.89, "feet"),
  24903. capacity: math.unit(4, "liters"),
  24904. name: "Stomach",
  24905. image: {
  24906. source: "./media/characters/juri/stomach.svg"
  24907. }
  24908. },
  24909. },
  24910. [
  24911. {
  24912. name: "Normal",
  24913. height: math.unit(7 + 3 / 12, "feet"),
  24914. default: true
  24915. },
  24916. ]
  24917. ))
  24918. characterMakers.push(() => makeCharacter(
  24919. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  24920. {
  24921. fox: {
  24922. height: math.unit(5 + 6 / 12, "feet"),
  24923. weight: math.unit(140, "lb"),
  24924. name: "Fox",
  24925. image: {
  24926. source: "./media/characters/maxene-sita/fox.svg",
  24927. extra: 146 / 138,
  24928. bottom: 2.1 / 148.19
  24929. }
  24930. },
  24931. foxLaying: {
  24932. height: math.unit(1.70, "feet"),
  24933. weight: math.unit(140, "lb"),
  24934. name: "Fox (Laying)",
  24935. image: {
  24936. source: "./media/characters/maxene-sita/fox-laying.svg",
  24937. extra: 910 / 572,
  24938. bottom: 71 / 981
  24939. }
  24940. },
  24941. kitsune: {
  24942. height: math.unit(10, "feet"),
  24943. weight: math.unit(800, "lb"),
  24944. name: "Kitsune",
  24945. image: {
  24946. source: "./media/characters/maxene-sita/kitsune.svg",
  24947. extra: 185 / 176,
  24948. bottom: 4.7 / 189.9
  24949. }
  24950. },
  24951. hellhound: {
  24952. height: math.unit(10, "feet"),
  24953. weight: math.unit(700, "lb"),
  24954. name: "Hellhound",
  24955. image: {
  24956. source: "./media/characters/maxene-sita/hellhound.svg",
  24957. extra: 1600 / 1545,
  24958. bottom: 81 / 1681
  24959. }
  24960. },
  24961. },
  24962. [
  24963. {
  24964. name: "Normal",
  24965. height: math.unit(5 + 6 / 12, "feet"),
  24966. default: true
  24967. },
  24968. ]
  24969. ))
  24970. characterMakers.push(() => makeCharacter(
  24971. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24972. {
  24973. front: {
  24974. height: math.unit(3 + 4 / 12, "feet"),
  24975. weight: math.unit(70, "lb"),
  24976. name: "Front",
  24977. image: {
  24978. source: "./media/characters/maia/front.svg",
  24979. extra: 227 / 219.5,
  24980. bottom: 40 / 267
  24981. }
  24982. },
  24983. back: {
  24984. height: math.unit(3 + 4 / 12, "feet"),
  24985. weight: math.unit(70, "lb"),
  24986. name: "Back",
  24987. image: {
  24988. source: "./media/characters/maia/back.svg",
  24989. extra: 237 / 225
  24990. }
  24991. },
  24992. },
  24993. [
  24994. {
  24995. name: "Normal",
  24996. height: math.unit(3 + 4 / 12, "feet"),
  24997. default: true
  24998. },
  24999. ]
  25000. ))
  25001. characterMakers.push(() => makeCharacter(
  25002. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25003. {
  25004. front: {
  25005. height: math.unit(5 + 10 / 12, "feet"),
  25006. weight: math.unit(197, "lb"),
  25007. name: "Front",
  25008. image: {
  25009. source: "./media/characters/jabaro/front.svg",
  25010. extra: 225 / 216,
  25011. bottom: 5.06 / 230
  25012. }
  25013. },
  25014. back: {
  25015. height: math.unit(5 + 10 / 12, "feet"),
  25016. weight: math.unit(197, "lb"),
  25017. name: "Back",
  25018. image: {
  25019. source: "./media/characters/jabaro/back.svg",
  25020. extra: 225 / 219,
  25021. bottom: 1.9 / 227
  25022. }
  25023. },
  25024. },
  25025. [
  25026. {
  25027. name: "Normal",
  25028. height: math.unit(5 + 10 / 12, "feet"),
  25029. default: true
  25030. },
  25031. ]
  25032. ))
  25033. characterMakers.push(() => makeCharacter(
  25034. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25035. {
  25036. front: {
  25037. height: math.unit(5 + 8 / 12, "feet"),
  25038. weight: math.unit(139, "lb"),
  25039. name: "Front",
  25040. image: {
  25041. source: "./media/characters/risa/front.svg",
  25042. extra: 270 / 260,
  25043. bottom: 11.2 / 282
  25044. }
  25045. },
  25046. back: {
  25047. height: math.unit(5 + 8 / 12, "feet"),
  25048. weight: math.unit(139, "lb"),
  25049. name: "Back",
  25050. image: {
  25051. source: "./media/characters/risa/back.svg",
  25052. extra: 264 / 255,
  25053. bottom: 4 / 268
  25054. }
  25055. },
  25056. },
  25057. [
  25058. {
  25059. name: "Normal",
  25060. height: math.unit(5 + 8 / 12, "feet"),
  25061. default: true
  25062. },
  25063. ]
  25064. ))
  25065. characterMakers.push(() => makeCharacter(
  25066. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25067. {
  25068. front: {
  25069. height: math.unit(2 + 11 / 12, "feet"),
  25070. weight: math.unit(30, "lb"),
  25071. name: "Front",
  25072. image: {
  25073. source: "./media/characters/weatley/front.svg",
  25074. bottom: 10.7 / 414,
  25075. extra: 403.5 / 362
  25076. }
  25077. },
  25078. back: {
  25079. height: math.unit(2 + 11 / 12, "feet"),
  25080. weight: math.unit(30, "lb"),
  25081. name: "Back",
  25082. image: {
  25083. source: "./media/characters/weatley/back.svg",
  25084. bottom: 10.7 / 414,
  25085. extra: 403.5 / 362
  25086. }
  25087. },
  25088. },
  25089. [
  25090. {
  25091. name: "Normal",
  25092. height: math.unit(2 + 11 / 12, "feet"),
  25093. default: true
  25094. },
  25095. ]
  25096. ))
  25097. characterMakers.push(() => makeCharacter(
  25098. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25099. {
  25100. front: {
  25101. height: math.unit(5 + 2 / 12, "feet"),
  25102. weight: math.unit(50, "kg"),
  25103. name: "Front",
  25104. image: {
  25105. source: "./media/characters/mercury-crescent/front.svg",
  25106. extra: 1088 / 1033,
  25107. bottom: 18.9 / 1109
  25108. }
  25109. },
  25110. },
  25111. [
  25112. {
  25113. name: "Normal",
  25114. height: math.unit(5 + 2 / 12, "feet"),
  25115. default: true
  25116. },
  25117. ]
  25118. ))
  25119. characterMakers.push(() => makeCharacter(
  25120. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25121. {
  25122. front: {
  25123. height: math.unit(2, "feet"),
  25124. weight: math.unit(15, "kg"),
  25125. name: "Front",
  25126. image: {
  25127. source: "./media/characters/diamond-jones/front.svg",
  25128. bottom: 16 / 568
  25129. }
  25130. },
  25131. },
  25132. [
  25133. {
  25134. name: "Normal",
  25135. height: math.unit(2, "feet"),
  25136. default: true
  25137. },
  25138. ]
  25139. ))
  25140. characterMakers.push(() => makeCharacter(
  25141. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25142. {
  25143. front: {
  25144. height: math.unit(3, "feet"),
  25145. weight: math.unit(30, "kg"),
  25146. name: "Front",
  25147. image: {
  25148. source: "./media/characters/sweet-bit/front.svg",
  25149. extra: 675 / 567,
  25150. bottom: 27.7 / 703
  25151. }
  25152. },
  25153. },
  25154. [
  25155. {
  25156. name: "Normal",
  25157. height: math.unit(3, "feet"),
  25158. default: true
  25159. },
  25160. ]
  25161. ))
  25162. characterMakers.push(() => makeCharacter(
  25163. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25164. {
  25165. side: {
  25166. height: math.unit(9.178, "feet"),
  25167. weight: math.unit(500, "lb"),
  25168. name: "Side",
  25169. image: {
  25170. source: "./media/characters/umbrazen/side.svg",
  25171. extra: 1730 / 1473,
  25172. bottom: 34.6 / 1765
  25173. }
  25174. },
  25175. },
  25176. [
  25177. {
  25178. name: "Normal",
  25179. height: math.unit(9.178, "feet"),
  25180. default: true
  25181. },
  25182. ]
  25183. ))
  25184. characterMakers.push(() => makeCharacter(
  25185. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25186. {
  25187. front: {
  25188. height: math.unit(10, "feet"),
  25189. weight: math.unit(750, "lb"),
  25190. name: "Front",
  25191. image: {
  25192. source: "./media/characters/arlist/front.svg",
  25193. extra: 961 / 778,
  25194. bottom: 6.2 / 986
  25195. }
  25196. },
  25197. },
  25198. [
  25199. {
  25200. name: "Normal",
  25201. height: math.unit(10, "feet"),
  25202. default: true
  25203. },
  25204. ]
  25205. ))
  25206. characterMakers.push(() => makeCharacter(
  25207. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25208. {
  25209. front: {
  25210. height: math.unit(5 + 1 / 12, "feet"),
  25211. weight: math.unit(110, "lb"),
  25212. name: "Front",
  25213. image: {
  25214. source: "./media/characters/aradel/front.svg",
  25215. extra: 324 / 303,
  25216. bottom: 3.6 / 329.4
  25217. }
  25218. },
  25219. },
  25220. [
  25221. {
  25222. name: "Normal",
  25223. height: math.unit(5 + 1 / 12, "feet"),
  25224. default: true
  25225. },
  25226. ]
  25227. ))
  25228. characterMakers.push(() => makeCharacter(
  25229. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25230. {
  25231. front: {
  25232. height: math.unit(3 + 8 / 12, "feet"),
  25233. weight: math.unit(50, "lb"),
  25234. name: "Front",
  25235. image: {
  25236. source: "./media/characters/serryn/front.svg",
  25237. extra: 1792 / 1656,
  25238. bottom: 43.5 / 1840
  25239. }
  25240. },
  25241. },
  25242. [
  25243. {
  25244. name: "Normal",
  25245. height: math.unit(3 + 8 / 12, "feet"),
  25246. default: true
  25247. },
  25248. ]
  25249. ))
  25250. characterMakers.push(() => makeCharacter(
  25251. { name: "Xavier Thyme" },
  25252. {
  25253. front: {
  25254. height: math.unit(7 + 10 / 12, "feet"),
  25255. weight: math.unit(255, "lb"),
  25256. name: "Front",
  25257. image: {
  25258. source: "./media/characters/xavier-thyme/front.svg",
  25259. extra: 3733 / 3642,
  25260. bottom: 131 / 3869
  25261. }
  25262. },
  25263. frontRaven: {
  25264. height: math.unit(7 + 10 / 12, "feet"),
  25265. weight: math.unit(255, "lb"),
  25266. name: "Front (Raven)",
  25267. image: {
  25268. source: "./media/characters/xavier-thyme/front-raven.svg",
  25269. extra: 4385 / 3642,
  25270. bottom: 131 / 4517
  25271. }
  25272. },
  25273. },
  25274. [
  25275. {
  25276. name: "Normal",
  25277. height: math.unit(7 + 10 / 12, "feet"),
  25278. default: true
  25279. },
  25280. ]
  25281. ))
  25282. characterMakers.push(() => makeCharacter(
  25283. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25284. {
  25285. front: {
  25286. height: math.unit(1.6, "m"),
  25287. weight: math.unit(50, "kg"),
  25288. name: "Front",
  25289. image: {
  25290. source: "./media/characters/kiki/front.svg",
  25291. extra: 4682 / 3610,
  25292. bottom: 115 / 4777
  25293. }
  25294. },
  25295. },
  25296. [
  25297. {
  25298. name: "Normal",
  25299. height: math.unit(1.6, "meters"),
  25300. default: true
  25301. },
  25302. ]
  25303. ))
  25304. characterMakers.push(() => makeCharacter(
  25305. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25306. {
  25307. front: {
  25308. height: math.unit(50, "m"),
  25309. weight: math.unit(500, "tonnes"),
  25310. name: "Front",
  25311. image: {
  25312. source: "./media/characters/ryoko/front.svg",
  25313. extra: 4632 / 3926,
  25314. bottom: 193 / 4823
  25315. }
  25316. },
  25317. },
  25318. [
  25319. {
  25320. name: "Normal",
  25321. height: math.unit(50, "meters"),
  25322. default: true
  25323. },
  25324. ]
  25325. ))
  25326. characterMakers.push(() => makeCharacter(
  25327. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25328. {
  25329. front: {
  25330. height: math.unit(30, "m"),
  25331. weight: math.unit(22, "tonnes"),
  25332. name: "Front",
  25333. image: {
  25334. source: "./media/characters/elio/front.svg",
  25335. extra: 4582 / 3720,
  25336. bottom: 236 / 4828
  25337. }
  25338. },
  25339. },
  25340. [
  25341. {
  25342. name: "Normal",
  25343. height: math.unit(30, "meters"),
  25344. default: true
  25345. },
  25346. ]
  25347. ))
  25348. characterMakers.push(() => makeCharacter(
  25349. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25350. {
  25351. front: {
  25352. height: math.unit(6 + 3 / 12, "feet"),
  25353. weight: math.unit(120, "lb"),
  25354. name: "Front",
  25355. image: {
  25356. source: "./media/characters/azura/front.svg",
  25357. extra: 1149 / 1135,
  25358. bottom: 45 / 1194
  25359. }
  25360. },
  25361. frontClothed: {
  25362. height: math.unit(6 + 3 / 12, "feet"),
  25363. weight: math.unit(120, "lb"),
  25364. name: "Front (Clothed)",
  25365. image: {
  25366. source: "./media/characters/azura/front-clothed.svg",
  25367. extra: 1149 / 1135,
  25368. bottom: 45 / 1194
  25369. }
  25370. },
  25371. },
  25372. [
  25373. {
  25374. name: "Normal",
  25375. height: math.unit(6 + 3 / 12, "feet"),
  25376. default: true
  25377. },
  25378. {
  25379. name: "Macro",
  25380. height: math.unit(20 + 6 / 12, "feet")
  25381. },
  25382. {
  25383. name: "Megamacro",
  25384. height: math.unit(12, "miles")
  25385. },
  25386. {
  25387. name: "Gigamacro",
  25388. height: math.unit(10000, "miles")
  25389. },
  25390. {
  25391. name: "Teramacro",
  25392. height: math.unit(900000, "miles")
  25393. },
  25394. ]
  25395. ))
  25396. characterMakers.push(() => makeCharacter(
  25397. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25398. {
  25399. front: {
  25400. height: math.unit(12, "feet"),
  25401. weight: math.unit(1, "ton"),
  25402. capacity: math.unit(660000, "gallons"),
  25403. name: "Front",
  25404. image: {
  25405. source: "./media/characters/zeus/front.svg",
  25406. extra: 5005 / 4717,
  25407. bottom: 363 / 5388
  25408. }
  25409. },
  25410. },
  25411. [
  25412. {
  25413. name: "Normal",
  25414. height: math.unit(12, "feet")
  25415. },
  25416. {
  25417. name: "Preferred Size",
  25418. height: math.unit(0.5, "miles"),
  25419. default: true
  25420. },
  25421. {
  25422. name: "Giga Horse",
  25423. height: math.unit(300, "miles")
  25424. },
  25425. {
  25426. name: "Riding Planets",
  25427. height: math.unit(30, "megameters")
  25428. },
  25429. {
  25430. name: "Cosmic Giant",
  25431. height: math.unit(3, "zettameters")
  25432. },
  25433. {
  25434. name: "Breeding God",
  25435. height: math.unit(9.92e22, "yottameters")
  25436. },
  25437. ]
  25438. ))
  25439. characterMakers.push(() => makeCharacter(
  25440. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25441. {
  25442. side: {
  25443. height: math.unit(9, "feet"),
  25444. weight: math.unit(1500, "kg"),
  25445. name: "Side",
  25446. image: {
  25447. source: "./media/characters/fang/side.svg",
  25448. extra: 924 / 866,
  25449. bottom: 47.5 / 972.3
  25450. }
  25451. },
  25452. },
  25453. [
  25454. {
  25455. name: "Normal",
  25456. height: math.unit(9, "feet"),
  25457. default: true
  25458. },
  25459. {
  25460. name: "Macro",
  25461. height: math.unit(75 + 6 / 12, "feet")
  25462. },
  25463. {
  25464. name: "Teramacro",
  25465. height: math.unit(50000, "miles")
  25466. },
  25467. ]
  25468. ))
  25469. characterMakers.push(() => makeCharacter(
  25470. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25471. {
  25472. front: {
  25473. height: math.unit(10, "feet"),
  25474. weight: math.unit(2, "tons"),
  25475. name: "Front",
  25476. image: {
  25477. source: "./media/characters/rekhit/front.svg",
  25478. extra: 2796 / 2590,
  25479. bottom: 225 / 3022
  25480. }
  25481. },
  25482. },
  25483. [
  25484. {
  25485. name: "Normal",
  25486. height: math.unit(10, "feet"),
  25487. default: true
  25488. },
  25489. {
  25490. name: "Macro",
  25491. height: math.unit(500, "feet")
  25492. },
  25493. ]
  25494. ))
  25495. characterMakers.push(() => makeCharacter(
  25496. { name: "Dahlia Verrick" },
  25497. {
  25498. front: {
  25499. height: math.unit(7 + 6.451 / 12, "feet"),
  25500. weight: math.unit(310, "lb"),
  25501. name: "Front",
  25502. image: {
  25503. source: "./media/characters/dahlia-verrick/front.svg",
  25504. extra: 1488 / 1365,
  25505. bottom: 6.2 / 1495
  25506. }
  25507. },
  25508. back: {
  25509. height: math.unit(7 + 6.451 / 12, "feet"),
  25510. weight: math.unit(310, "lb"),
  25511. name: "Back",
  25512. image: {
  25513. source: "./media/characters/dahlia-verrick/back.svg",
  25514. extra: 1472 / 1351,
  25515. bottom: 5.28 / 1477
  25516. }
  25517. },
  25518. frontBusiness: {
  25519. height: math.unit(7 + 6.451 / 12, "feet"),
  25520. weight: math.unit(200, "lb"),
  25521. name: "Front (Business)",
  25522. image: {
  25523. source: "./media/characters/dahlia-verrick/front-business.svg",
  25524. extra: 1478 / 1381,
  25525. bottom: 5.5 / 1484
  25526. }
  25527. },
  25528. frontCasual: {
  25529. height: math.unit(7 + 6.451 / 12, "feet"),
  25530. weight: math.unit(200, "lb"),
  25531. name: "Front (Casual)",
  25532. image: {
  25533. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25534. extra: 1478 / 1381,
  25535. bottom: 5.5 / 1484
  25536. }
  25537. },
  25538. },
  25539. [
  25540. {
  25541. name: "Travel-Sized",
  25542. height: math.unit(7.45, "inches")
  25543. },
  25544. {
  25545. name: "Normal",
  25546. height: math.unit(7 + 6.451 / 12, "feet"),
  25547. default: true
  25548. },
  25549. {
  25550. name: "Hitting the Town",
  25551. height: math.unit(37 + 8 / 12, "feet")
  25552. },
  25553. {
  25554. name: "Stomp in the Suburbs",
  25555. height: math.unit(964 + 9.728 / 12, "feet")
  25556. },
  25557. {
  25558. name: "Sit on the City",
  25559. height: math.unit(61747 + 10.592 / 12, "feet")
  25560. },
  25561. {
  25562. name: "Glomp the Globe",
  25563. height: math.unit(252919327 + 4.832 / 12, "feet")
  25564. },
  25565. ]
  25566. ))
  25567. characterMakers.push(() => makeCharacter(
  25568. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25569. {
  25570. front: {
  25571. height: math.unit(6 + 4 / 12, "feet"),
  25572. weight: math.unit(320, "lb"),
  25573. name: "Front",
  25574. image: {
  25575. source: "./media/characters/balina-mahigan/front.svg",
  25576. extra: 447 / 428,
  25577. bottom: 18 / 466
  25578. }
  25579. },
  25580. back: {
  25581. height: math.unit(6 + 4 / 12, "feet"),
  25582. weight: math.unit(320, "lb"),
  25583. name: "Back",
  25584. image: {
  25585. source: "./media/characters/balina-mahigan/back.svg",
  25586. extra: 445 / 428,
  25587. bottom: 4.07 / 448
  25588. }
  25589. },
  25590. arm: {
  25591. height: math.unit(1.88, "feet"),
  25592. name: "Arm",
  25593. image: {
  25594. source: "./media/characters/balina-mahigan/arm.svg"
  25595. }
  25596. },
  25597. backPort: {
  25598. height: math.unit(0.685, "feet"),
  25599. name: "Back Port",
  25600. image: {
  25601. source: "./media/characters/balina-mahigan/back-port.svg"
  25602. }
  25603. },
  25604. hoofpaw: {
  25605. height: math.unit(1.41, "feet"),
  25606. name: "Hoofpaw",
  25607. image: {
  25608. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25609. }
  25610. },
  25611. leftHandBack: {
  25612. height: math.unit(0.938, "feet"),
  25613. name: "Left Hand (Back)",
  25614. image: {
  25615. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25616. }
  25617. },
  25618. leftHandFront: {
  25619. height: math.unit(0.938, "feet"),
  25620. name: "Left Hand (Front)",
  25621. image: {
  25622. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25623. }
  25624. },
  25625. rightHandBack: {
  25626. height: math.unit(0.95, "feet"),
  25627. name: "Right Hand (Back)",
  25628. image: {
  25629. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25630. }
  25631. },
  25632. rightHandFront: {
  25633. height: math.unit(0.95, "feet"),
  25634. name: "Right Hand (Front)",
  25635. image: {
  25636. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25637. }
  25638. },
  25639. },
  25640. [
  25641. {
  25642. name: "Normal",
  25643. height: math.unit(6 + 4 / 12, "feet"),
  25644. default: true
  25645. },
  25646. ]
  25647. ))
  25648. characterMakers.push(() => makeCharacter(
  25649. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25650. {
  25651. front: {
  25652. height: math.unit(6, "feet"),
  25653. weight: math.unit(320, "lb"),
  25654. name: "Front",
  25655. image: {
  25656. source: "./media/characters/balina-mejeri/front.svg",
  25657. extra: 517 / 488,
  25658. bottom: 44.2 / 561
  25659. }
  25660. },
  25661. },
  25662. [
  25663. {
  25664. name: "Normal",
  25665. height: math.unit(6 + 4 / 12, "feet")
  25666. },
  25667. {
  25668. name: "Business",
  25669. height: math.unit(155, "feet"),
  25670. default: true
  25671. },
  25672. ]
  25673. ))
  25674. characterMakers.push(() => makeCharacter(
  25675. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25676. {
  25677. kneeling: {
  25678. height: math.unit(6 + 4 / 12, "feet"),
  25679. weight: math.unit(300 * 20, "lb"),
  25680. name: "Kneeling",
  25681. image: {
  25682. source: "./media/characters/balbarian/kneeling.svg",
  25683. extra: 922 / 862,
  25684. bottom: 42.4 / 965
  25685. }
  25686. },
  25687. },
  25688. [
  25689. {
  25690. name: "Normal",
  25691. height: math.unit(6 + 4 / 12, "feet")
  25692. },
  25693. {
  25694. name: "Treasured",
  25695. height: math.unit(18 + 9 / 12, "feet"),
  25696. default: true
  25697. },
  25698. {
  25699. name: "Macro",
  25700. height: math.unit(900, "feet")
  25701. },
  25702. ]
  25703. ))
  25704. characterMakers.push(() => makeCharacter(
  25705. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25706. {
  25707. front: {
  25708. height: math.unit(6 + 4 / 12, "feet"),
  25709. weight: math.unit(325, "lb"),
  25710. name: "Front",
  25711. image: {
  25712. source: "./media/characters/balina-amarini/front.svg",
  25713. extra: 415 / 403,
  25714. bottom: 19 / 433.4
  25715. }
  25716. },
  25717. back: {
  25718. height: math.unit(6 + 4 / 12, "feet"),
  25719. weight: math.unit(325, "lb"),
  25720. name: "Back",
  25721. image: {
  25722. source: "./media/characters/balina-amarini/back.svg",
  25723. extra: 415 / 403,
  25724. bottom: 13.5 / 432
  25725. }
  25726. },
  25727. overdrive: {
  25728. height: math.unit(6 + 4 / 12, "feet"),
  25729. weight: math.unit(400, "lb"),
  25730. name: "Overdrive",
  25731. image: {
  25732. source: "./media/characters/balina-amarini/overdrive.svg",
  25733. extra: 269 / 259,
  25734. bottom: 12 / 282
  25735. }
  25736. },
  25737. },
  25738. [
  25739. {
  25740. name: "Boom",
  25741. height: math.unit(9 + 10 / 12, "feet"),
  25742. default: true
  25743. },
  25744. {
  25745. name: "Macro",
  25746. height: math.unit(280, "feet")
  25747. },
  25748. ]
  25749. ))
  25750. characterMakers.push(() => makeCharacter(
  25751. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25752. {
  25753. goddess: {
  25754. height: math.unit(600, "feet"),
  25755. weight: math.unit(2000000, "tons"),
  25756. name: "Goddess",
  25757. image: {
  25758. source: "./media/characters/lady-kubwa/goddess.svg",
  25759. extra: 1240.5 / 1223,
  25760. bottom: 22 / 1263
  25761. }
  25762. },
  25763. goddesser: {
  25764. height: math.unit(900, "feet"),
  25765. weight: math.unit(20000000, "lb"),
  25766. name: "Goddess-er",
  25767. image: {
  25768. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25769. extra: 899 / 888,
  25770. bottom: 12.6 / 912
  25771. }
  25772. },
  25773. },
  25774. [
  25775. {
  25776. name: "Macro",
  25777. height: math.unit(600, "feet"),
  25778. default: true
  25779. },
  25780. {
  25781. name: "Megamacro",
  25782. height: math.unit(250, "miles")
  25783. },
  25784. ]
  25785. ))
  25786. characterMakers.push(() => makeCharacter(
  25787. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25788. {
  25789. front: {
  25790. height: math.unit(7 + 7 / 12, "feet"),
  25791. weight: math.unit(250, "lb"),
  25792. name: "Front",
  25793. image: {
  25794. source: "./media/characters/tala-grovehorn/front.svg",
  25795. extra: 2636 / 2525,
  25796. bottom: 147 / 2781
  25797. }
  25798. },
  25799. back: {
  25800. height: math.unit(7 + 7 / 12, "feet"),
  25801. weight: math.unit(250, "lb"),
  25802. name: "Back",
  25803. image: {
  25804. source: "./media/characters/tala-grovehorn/back.svg",
  25805. extra: 2635 / 2539,
  25806. bottom: 100 / 2732.8
  25807. }
  25808. },
  25809. mouth: {
  25810. height: math.unit(1.15, "feet"),
  25811. name: "Mouth",
  25812. image: {
  25813. source: "./media/characters/tala-grovehorn/mouth.svg"
  25814. }
  25815. },
  25816. dick: {
  25817. height: math.unit(2.36, "feet"),
  25818. name: "Dick",
  25819. image: {
  25820. source: "./media/characters/tala-grovehorn/dick.svg"
  25821. }
  25822. },
  25823. slit: {
  25824. height: math.unit(0.61, "feet"),
  25825. name: "Slit",
  25826. image: {
  25827. source: "./media/characters/tala-grovehorn/slit.svg"
  25828. }
  25829. },
  25830. },
  25831. [
  25832. ]
  25833. ))
  25834. characterMakers.push(() => makeCharacter(
  25835. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25836. {
  25837. front: {
  25838. height: math.unit(7 + 7 / 12, "feet"),
  25839. weight: math.unit(225, "lb"),
  25840. name: "Front",
  25841. image: {
  25842. source: "./media/characters/epona/front.svg",
  25843. extra: 2445 / 2290,
  25844. bottom: 251 / 2696
  25845. }
  25846. },
  25847. back: {
  25848. height: math.unit(7 + 7 / 12, "feet"),
  25849. weight: math.unit(225, "lb"),
  25850. name: "Back",
  25851. image: {
  25852. source: "./media/characters/epona/back.svg",
  25853. extra: 2546 / 2408,
  25854. bottom: 44 / 2589
  25855. }
  25856. },
  25857. genitals: {
  25858. height: math.unit(1.5, "feet"),
  25859. name: "Genitals",
  25860. image: {
  25861. source: "./media/characters/epona/genitals.svg"
  25862. }
  25863. },
  25864. },
  25865. [
  25866. {
  25867. name: "Normal",
  25868. height: math.unit(7 + 7 / 12, "feet"),
  25869. default: true
  25870. },
  25871. ]
  25872. ))
  25873. characterMakers.push(() => makeCharacter(
  25874. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25875. {
  25876. front: {
  25877. height: math.unit(7, "feet"),
  25878. weight: math.unit(518, "lb"),
  25879. name: "Front",
  25880. image: {
  25881. source: "./media/characters/avia-bloodbourn/front.svg",
  25882. extra: 1466 / 1350,
  25883. bottom: 65 / 1527
  25884. }
  25885. },
  25886. },
  25887. [
  25888. ]
  25889. ))
  25890. characterMakers.push(() => makeCharacter(
  25891. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25892. {
  25893. front: {
  25894. height: math.unit(9.35, "feet"),
  25895. weight: math.unit(600, "lb"),
  25896. name: "Front",
  25897. image: {
  25898. source: "./media/characters/amera/front.svg",
  25899. extra: 891 / 818,
  25900. bottom: 30 / 922.7
  25901. }
  25902. },
  25903. back: {
  25904. height: math.unit(9.35, "feet"),
  25905. weight: math.unit(600, "lb"),
  25906. name: "Back",
  25907. image: {
  25908. source: "./media/characters/amera/back.svg",
  25909. extra: 876 / 824,
  25910. bottom: 6.8 / 884
  25911. }
  25912. },
  25913. dick: {
  25914. height: math.unit(2.14, "feet"),
  25915. name: "Dick",
  25916. image: {
  25917. source: "./media/characters/amera/dick.svg"
  25918. }
  25919. },
  25920. },
  25921. [
  25922. {
  25923. name: "Normal",
  25924. height: math.unit(9.35, "feet"),
  25925. default: true
  25926. },
  25927. ]
  25928. ))
  25929. characterMakers.push(() => makeCharacter(
  25930. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25931. {
  25932. kneeling: {
  25933. height: math.unit(3 + 4 / 12, "feet"),
  25934. weight: math.unit(90, "lb"),
  25935. name: "Kneeling",
  25936. image: {
  25937. source: "./media/characters/rosewen/kneeling.svg",
  25938. extra: 1835 / 1571,
  25939. bottom: 27.7 / 1862
  25940. }
  25941. },
  25942. },
  25943. [
  25944. {
  25945. name: "Normal",
  25946. height: math.unit(3 + 4 / 12, "feet"),
  25947. default: true
  25948. },
  25949. ]
  25950. ))
  25951. characterMakers.push(() => makeCharacter(
  25952. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25953. {
  25954. front: {
  25955. height: math.unit(5 + 10 / 12, "feet"),
  25956. weight: math.unit(200, "lb"),
  25957. name: "Front",
  25958. image: {
  25959. source: "./media/characters/sabah/front.svg",
  25960. extra: 849 / 763,
  25961. bottom: 33.9 / 881
  25962. }
  25963. },
  25964. },
  25965. [
  25966. {
  25967. name: "Normal",
  25968. height: math.unit(5 + 10 / 12, "feet"),
  25969. default: true
  25970. },
  25971. ]
  25972. ))
  25973. characterMakers.push(() => makeCharacter(
  25974. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25975. {
  25976. front: {
  25977. height: math.unit(3 + 5 / 12, "feet"),
  25978. weight: math.unit(40, "kg"),
  25979. name: "Front",
  25980. image: {
  25981. source: "./media/characters/purple-flame/front.svg",
  25982. extra: 1577 / 1412,
  25983. bottom: 97 / 1694
  25984. }
  25985. },
  25986. frontDressed: {
  25987. height: math.unit(3 + 5 / 12, "feet"),
  25988. weight: math.unit(40, "kg"),
  25989. name: "Front (Dressed)",
  25990. image: {
  25991. source: "./media/characters/purple-flame/front-dressed.svg",
  25992. extra: 1577 / 1412,
  25993. bottom: 97 / 1694
  25994. }
  25995. },
  25996. headphones: {
  25997. height: math.unit(0.85, "feet"),
  25998. name: "Headphones",
  25999. image: {
  26000. source: "./media/characters/purple-flame/headphones.svg"
  26001. }
  26002. },
  26003. },
  26004. [
  26005. {
  26006. name: "Really Small",
  26007. height: math.unit(5, "cm")
  26008. },
  26009. {
  26010. name: "Micro",
  26011. height: math.unit(1 + 5 / 12, "feet")
  26012. },
  26013. {
  26014. name: "Normal",
  26015. height: math.unit(3 + 5 / 12, "feet"),
  26016. default: true
  26017. },
  26018. {
  26019. name: "Minimacro",
  26020. height: math.unit(125, "feet")
  26021. },
  26022. {
  26023. name: "Macro",
  26024. height: math.unit(0.5, "miles")
  26025. },
  26026. {
  26027. name: "Megamacro",
  26028. height: math.unit(50, "miles")
  26029. },
  26030. {
  26031. name: "Gigantic",
  26032. height: math.unit(750, "miles")
  26033. },
  26034. {
  26035. name: "Planetary",
  26036. height: math.unit(15000, "miles")
  26037. },
  26038. ]
  26039. ))
  26040. characterMakers.push(() => makeCharacter(
  26041. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26042. {
  26043. front: {
  26044. height: math.unit(14, "feet"),
  26045. weight: math.unit(959, "lb"),
  26046. name: "Front",
  26047. image: {
  26048. source: "./media/characters/arsenal/front.svg",
  26049. extra: 2357 / 2157,
  26050. bottom: 93 / 2458
  26051. }
  26052. },
  26053. },
  26054. [
  26055. {
  26056. name: "Normal",
  26057. height: math.unit(14, "feet"),
  26058. default: true
  26059. },
  26060. ]
  26061. ))
  26062. characterMakers.push(() => makeCharacter(
  26063. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26064. {
  26065. front: {
  26066. height: math.unit(6, "feet"),
  26067. weight: math.unit(150, "lb"),
  26068. name: "Front",
  26069. image: {
  26070. source: "./media/characters/adira/front.svg",
  26071. extra: 1078 / 1029,
  26072. bottom: 87 / 1166
  26073. }
  26074. },
  26075. },
  26076. [
  26077. {
  26078. name: "Micro",
  26079. height: math.unit(4, "inches"),
  26080. default: true
  26081. },
  26082. {
  26083. name: "Macro",
  26084. height: math.unit(50, "feet")
  26085. },
  26086. ]
  26087. ))
  26088. characterMakers.push(() => makeCharacter(
  26089. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26090. {
  26091. front: {
  26092. height: math.unit(16, "feet"),
  26093. weight: math.unit(1000, "lb"),
  26094. name: "Front",
  26095. image: {
  26096. source: "./media/characters/grim/front.svg",
  26097. extra: 622 / 614,
  26098. bottom: 18.1 / 642
  26099. }
  26100. },
  26101. back: {
  26102. height: math.unit(16, "feet"),
  26103. weight: math.unit(1000, "lb"),
  26104. name: "Back",
  26105. image: {
  26106. source: "./media/characters/grim/back.svg",
  26107. extra: 610.6 / 602,
  26108. bottom: 40.8 / 652
  26109. }
  26110. },
  26111. hunched: {
  26112. height: math.unit(9.75, "feet"),
  26113. weight: math.unit(1000, "lb"),
  26114. name: "Hunched",
  26115. image: {
  26116. source: "./media/characters/grim/hunched.svg",
  26117. extra: 304 / 297,
  26118. bottom: 35.4 / 394
  26119. }
  26120. },
  26121. },
  26122. [
  26123. {
  26124. name: "Normal",
  26125. height: math.unit(16, "feet"),
  26126. default: true
  26127. },
  26128. ]
  26129. ))
  26130. characterMakers.push(() => makeCharacter(
  26131. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26132. {
  26133. front: {
  26134. height: math.unit(2.3, "meters"),
  26135. weight: math.unit(300, "lb"),
  26136. name: "Front",
  26137. image: {
  26138. source: "./media/characters/sinja/front-sfw.svg",
  26139. extra: 1393 / 1294,
  26140. bottom: 70 / 1463
  26141. }
  26142. },
  26143. frontNsfw: {
  26144. height: math.unit(2.3, "meters"),
  26145. weight: math.unit(300, "lb"),
  26146. name: "Front (NSFW)",
  26147. image: {
  26148. source: "./media/characters/sinja/front-nsfw.svg",
  26149. extra: 1393 / 1294,
  26150. bottom: 70 / 1463
  26151. }
  26152. },
  26153. back: {
  26154. height: math.unit(2.3, "meters"),
  26155. weight: math.unit(300, "lb"),
  26156. name: "Back",
  26157. image: {
  26158. source: "./media/characters/sinja/back.svg",
  26159. extra: 1393 / 1294,
  26160. bottom: 70 / 1463
  26161. }
  26162. },
  26163. head: {
  26164. height: math.unit(1.771, "feet"),
  26165. name: "Head",
  26166. image: {
  26167. source: "./media/characters/sinja/head.svg"
  26168. }
  26169. },
  26170. slit: {
  26171. height: math.unit(0.8, "feet"),
  26172. name: "Slit",
  26173. image: {
  26174. source: "./media/characters/sinja/slit.svg"
  26175. }
  26176. },
  26177. },
  26178. [
  26179. {
  26180. name: "Normal",
  26181. height: math.unit(2.3, "meters")
  26182. },
  26183. {
  26184. name: "Macro",
  26185. height: math.unit(91, "meters"),
  26186. default: true
  26187. },
  26188. {
  26189. name: "Megamacro",
  26190. height: math.unit(91440, "meters")
  26191. },
  26192. {
  26193. name: "Gigamacro",
  26194. height: math.unit(60960000, "meters")
  26195. },
  26196. {
  26197. name: "Teramacro",
  26198. height: math.unit(9144000000, "meters")
  26199. },
  26200. ]
  26201. ))
  26202. characterMakers.push(() => makeCharacter(
  26203. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26204. {
  26205. front: {
  26206. height: math.unit(1.7, "meters"),
  26207. weight: math.unit(130, "lb"),
  26208. name: "Front",
  26209. image: {
  26210. source: "./media/characters/kyu/front.svg",
  26211. extra: 415 / 395,
  26212. bottom: 5 / 420
  26213. }
  26214. },
  26215. head: {
  26216. height: math.unit(1.75, "feet"),
  26217. name: "Head",
  26218. image: {
  26219. source: "./media/characters/kyu/head.svg"
  26220. }
  26221. },
  26222. foot: {
  26223. height: math.unit(0.81, "feet"),
  26224. name: "Foot",
  26225. image: {
  26226. source: "./media/characters/kyu/foot.svg"
  26227. }
  26228. },
  26229. },
  26230. [
  26231. {
  26232. name: "Normal",
  26233. height: math.unit(1.7, "meters")
  26234. },
  26235. {
  26236. name: "Macro",
  26237. height: math.unit(131, "feet"),
  26238. default: true
  26239. },
  26240. {
  26241. name: "Megamacro",
  26242. height: math.unit(91440, "meters")
  26243. },
  26244. {
  26245. name: "Gigamacro",
  26246. height: math.unit(60960000, "meters")
  26247. },
  26248. {
  26249. name: "Teramacro",
  26250. height: math.unit(9144000000, "meters")
  26251. },
  26252. ]
  26253. ))
  26254. characterMakers.push(() => makeCharacter(
  26255. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26256. {
  26257. front: {
  26258. height: math.unit(7 + 1 / 12, "feet"),
  26259. weight: math.unit(250, "lb"),
  26260. name: "Front",
  26261. image: {
  26262. source: "./media/characters/joey/front.svg",
  26263. extra: 1791 / 1537,
  26264. bottom: 28 / 1816
  26265. }
  26266. },
  26267. },
  26268. [
  26269. {
  26270. name: "Micro",
  26271. height: math.unit(3, "inches")
  26272. },
  26273. {
  26274. name: "Normal",
  26275. height: math.unit(7 + 1 / 12, "feet"),
  26276. default: true
  26277. },
  26278. ]
  26279. ))
  26280. characterMakers.push(() => makeCharacter(
  26281. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26282. {
  26283. front: {
  26284. height: math.unit(165, "cm"),
  26285. weight: math.unit(140, "lb"),
  26286. name: "Front",
  26287. image: {
  26288. source: "./media/characters/sam-evans/front.svg",
  26289. extra: 3417 / 3230,
  26290. bottom: 41.3 / 3417
  26291. }
  26292. },
  26293. frontSixTails: {
  26294. height: math.unit(165, "cm"),
  26295. weight: math.unit(140, "lb"),
  26296. name: "Front-six-tails",
  26297. image: {
  26298. source: "./media/characters/sam-evans/front-six-tails.svg",
  26299. extra: 3417 / 3230,
  26300. bottom: 41.3 / 3417
  26301. }
  26302. },
  26303. back: {
  26304. height: math.unit(165, "cm"),
  26305. weight: math.unit(140, "lb"),
  26306. name: "Back",
  26307. image: {
  26308. source: "./media/characters/sam-evans/back.svg",
  26309. extra: 3227 / 3032,
  26310. bottom: 6.8 / 3234
  26311. }
  26312. },
  26313. face: {
  26314. height: math.unit(0.68, "feet"),
  26315. name: "Face",
  26316. image: {
  26317. source: "./media/characters/sam-evans/face.svg"
  26318. }
  26319. },
  26320. },
  26321. [
  26322. {
  26323. name: "Normal",
  26324. height: math.unit(165, "cm"),
  26325. default: true
  26326. },
  26327. {
  26328. name: "Macro",
  26329. height: math.unit(100, "meters")
  26330. },
  26331. {
  26332. name: "Macro+",
  26333. height: math.unit(800, "meters")
  26334. },
  26335. {
  26336. name: "Macro++",
  26337. height: math.unit(3, "km")
  26338. },
  26339. {
  26340. name: "Macro+++",
  26341. height: math.unit(30, "km")
  26342. },
  26343. ]
  26344. ))
  26345. characterMakers.push(() => makeCharacter(
  26346. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26347. {
  26348. front: {
  26349. height: math.unit(10, "feet"),
  26350. weight: math.unit(750, "lb"),
  26351. name: "Front",
  26352. image: {
  26353. source: "./media/characters/juliet-a/front.svg",
  26354. extra: 1766 / 1720,
  26355. bottom: 43 / 1809
  26356. }
  26357. },
  26358. back: {
  26359. height: math.unit(10, "feet"),
  26360. weight: math.unit(750, "lb"),
  26361. name: "Back",
  26362. image: {
  26363. source: "./media/characters/juliet-a/back.svg",
  26364. extra: 1781 / 1734,
  26365. bottom: 35 / 1810,
  26366. }
  26367. },
  26368. },
  26369. [
  26370. {
  26371. name: "Normal",
  26372. height: math.unit(10, "feet"),
  26373. default: true
  26374. },
  26375. {
  26376. name: "Dragon Form",
  26377. height: math.unit(250, "feet")
  26378. },
  26379. {
  26380. name: "Macro",
  26381. height: math.unit(1000, "feet")
  26382. },
  26383. {
  26384. name: "Megamacro",
  26385. height: math.unit(10000, "feet")
  26386. }
  26387. ]
  26388. ))
  26389. characterMakers.push(() => makeCharacter(
  26390. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26391. {
  26392. regular: {
  26393. height: math.unit(7 + 3 / 12, "feet"),
  26394. weight: math.unit(260, "lb"),
  26395. name: "Regular",
  26396. image: {
  26397. source: "./media/characters/wild/regular.svg",
  26398. extra: 97.45 / 92,
  26399. bottom: 6.8 / 104.3
  26400. }
  26401. },
  26402. biggums: {
  26403. height: math.unit(8 + 6 / 12, "feet"),
  26404. weight: math.unit(425, "lb"),
  26405. name: "Biggums",
  26406. image: {
  26407. source: "./media/characters/wild/biggums.svg",
  26408. extra: 97.45 / 92,
  26409. bottom: 7.5 / 132.34
  26410. }
  26411. },
  26412. mawRegular: {
  26413. height: math.unit(1.24, "feet"),
  26414. name: "Maw (Regular)",
  26415. image: {
  26416. source: "./media/characters/wild/maw.svg"
  26417. }
  26418. },
  26419. mawBiggums: {
  26420. height: math.unit(1.47, "feet"),
  26421. name: "Maw (Biggums)",
  26422. image: {
  26423. source: "./media/characters/wild/maw.svg"
  26424. }
  26425. },
  26426. },
  26427. [
  26428. {
  26429. name: "Normal",
  26430. height: math.unit(7 + 3 / 12, "feet"),
  26431. default: true
  26432. },
  26433. ]
  26434. ))
  26435. characterMakers.push(() => makeCharacter(
  26436. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26437. {
  26438. front: {
  26439. height: math.unit(2.5, "meters"),
  26440. weight: math.unit(200, "kg"),
  26441. name: "Front",
  26442. image: {
  26443. source: "./media/characters/vidar/front.svg",
  26444. extra: 2994 / 2795,
  26445. bottom: 56 / 3061
  26446. }
  26447. },
  26448. back: {
  26449. height: math.unit(2.5, "meters"),
  26450. weight: math.unit(200, "kg"),
  26451. name: "Back",
  26452. image: {
  26453. source: "./media/characters/vidar/back.svg",
  26454. extra: 3131 / 2928,
  26455. bottom: 13.5 / 3141.5
  26456. }
  26457. },
  26458. feral: {
  26459. height: math.unit(2.5, "meters"),
  26460. weight: math.unit(2000, "kg"),
  26461. name: "Feral",
  26462. image: {
  26463. source: "./media/characters/vidar/feral.svg",
  26464. extra: 2790 / 1765,
  26465. bottom: 6 / 2796
  26466. }
  26467. },
  26468. },
  26469. [
  26470. {
  26471. name: "Normal",
  26472. height: math.unit(2.5, "meters"),
  26473. default: true
  26474. },
  26475. {
  26476. name: "Macro",
  26477. height: math.unit(100, "meters")
  26478. },
  26479. ]
  26480. ))
  26481. characterMakers.push(() => makeCharacter(
  26482. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26483. {
  26484. front: {
  26485. height: math.unit(5 + 9 / 12, "feet"),
  26486. weight: math.unit(120, "lb"),
  26487. name: "Front",
  26488. image: {
  26489. source: "./media/characters/ash/front.svg",
  26490. extra: 2189 / 1961,
  26491. bottom: 5.2 / 2194
  26492. }
  26493. },
  26494. },
  26495. [
  26496. {
  26497. name: "Normal",
  26498. height: math.unit(5 + 9 / 12, "feet"),
  26499. default: true
  26500. },
  26501. ]
  26502. ))
  26503. characterMakers.push(() => makeCharacter(
  26504. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26505. {
  26506. front: {
  26507. height: math.unit(9, "feet"),
  26508. weight: math.unit(10000, "lb"),
  26509. name: "Front",
  26510. image: {
  26511. source: "./media/characters/gygabite/front.svg",
  26512. bottom: 31.7 / 537.8,
  26513. extra: 505 / 370
  26514. }
  26515. },
  26516. },
  26517. [
  26518. {
  26519. name: "Normal",
  26520. height: math.unit(9, "feet"),
  26521. default: true
  26522. },
  26523. ]
  26524. ))
  26525. characterMakers.push(() => makeCharacter(
  26526. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26527. {
  26528. front: {
  26529. height: math.unit(12, "feet"),
  26530. weight: math.unit(35000, "lb"),
  26531. name: "Front",
  26532. image: {
  26533. source: "./media/characters/p0tat0/front.svg",
  26534. extra: 1065 / 921,
  26535. bottom: 55.7 / 1121.25
  26536. }
  26537. },
  26538. },
  26539. [
  26540. {
  26541. name: "Normal",
  26542. height: math.unit(12, "feet"),
  26543. default: true
  26544. },
  26545. ]
  26546. ))
  26547. characterMakers.push(() => makeCharacter(
  26548. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26549. {
  26550. side: {
  26551. height: math.unit(6.5, "feet"),
  26552. weight: math.unit(800, "lb"),
  26553. name: "Side",
  26554. image: {
  26555. source: "./media/characters/dusk/side.svg",
  26556. extra: 615 / 373,
  26557. bottom: 53 / 664
  26558. }
  26559. },
  26560. sitting: {
  26561. height: math.unit(7, "feet"),
  26562. weight: math.unit(800, "lb"),
  26563. name: "Sitting",
  26564. image: {
  26565. source: "./media/characters/dusk/sitting.svg",
  26566. extra: 753 / 425,
  26567. bottom: 33 / 774
  26568. }
  26569. },
  26570. head: {
  26571. height: math.unit(6.1, "feet"),
  26572. name: "Head",
  26573. image: {
  26574. source: "./media/characters/dusk/head.svg"
  26575. }
  26576. },
  26577. },
  26578. [
  26579. {
  26580. name: "Normal",
  26581. height: math.unit(7, "feet"),
  26582. default: true
  26583. },
  26584. ]
  26585. ))
  26586. characterMakers.push(() => makeCharacter(
  26587. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26588. {
  26589. front: {
  26590. height: math.unit(15, "feet"),
  26591. weight: math.unit(7000, "lb"),
  26592. name: "Front",
  26593. image: {
  26594. source: "./media/characters/jay-direwolf/front.svg",
  26595. extra: 1810 / 1732,
  26596. bottom: 66 / 1892
  26597. }
  26598. },
  26599. },
  26600. [
  26601. {
  26602. name: "Normal",
  26603. height: math.unit(15, "feet"),
  26604. default: true
  26605. },
  26606. ]
  26607. ))
  26608. characterMakers.push(() => makeCharacter(
  26609. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26610. {
  26611. front: {
  26612. height: math.unit(4 + 9 / 12, "feet"),
  26613. weight: math.unit(130, "lb"),
  26614. name: "Front",
  26615. image: {
  26616. source: "./media/characters/anchovie/front.svg",
  26617. extra: 382 / 350,
  26618. bottom: 25 / 409
  26619. }
  26620. },
  26621. back: {
  26622. height: math.unit(4 + 9 / 12, "feet"),
  26623. weight: math.unit(130, "lb"),
  26624. name: "Back",
  26625. image: {
  26626. source: "./media/characters/anchovie/back.svg",
  26627. extra: 385 / 352,
  26628. bottom: 16.6 / 402
  26629. }
  26630. },
  26631. frontDressed: {
  26632. height: math.unit(4 + 9 / 12, "feet"),
  26633. weight: math.unit(130, "lb"),
  26634. name: "Front (Dressed)",
  26635. image: {
  26636. source: "./media/characters/anchovie/front-dressed.svg",
  26637. extra: 382 / 350,
  26638. bottom: 25 / 409
  26639. }
  26640. },
  26641. backDressed: {
  26642. height: math.unit(4 + 9 / 12, "feet"),
  26643. weight: math.unit(130, "lb"),
  26644. name: "Back (Dressed)",
  26645. image: {
  26646. source: "./media/characters/anchovie/back-dressed.svg",
  26647. extra: 385 / 352,
  26648. bottom: 16.6 / 402
  26649. }
  26650. },
  26651. },
  26652. [
  26653. {
  26654. name: "Micro",
  26655. height: math.unit(6.4, "inches")
  26656. },
  26657. {
  26658. name: "Normal",
  26659. height: math.unit(4 + 9 / 12, "feet"),
  26660. default: true
  26661. },
  26662. ]
  26663. ))
  26664. characterMakers.push(() => makeCharacter(
  26665. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26666. {
  26667. front: {
  26668. height: math.unit(2, "meters"),
  26669. weight: math.unit(180, "lb"),
  26670. name: "Front",
  26671. image: {
  26672. source: "./media/characters/acidrenamon/front.svg",
  26673. extra: 987 / 890,
  26674. bottom: 22.8 / 1009
  26675. }
  26676. },
  26677. back: {
  26678. height: math.unit(2, "meters"),
  26679. weight: math.unit(180, "lb"),
  26680. name: "Back",
  26681. image: {
  26682. source: "./media/characters/acidrenamon/back.svg",
  26683. extra: 983 / 891,
  26684. bottom: 8.4 / 992
  26685. }
  26686. },
  26687. head: {
  26688. height: math.unit(1.92, "feet"),
  26689. name: "Head",
  26690. image: {
  26691. source: "./media/characters/acidrenamon/head.svg"
  26692. }
  26693. },
  26694. rump: {
  26695. height: math.unit(1.72, "feet"),
  26696. name: "Rump",
  26697. image: {
  26698. source: "./media/characters/acidrenamon/rump.svg"
  26699. }
  26700. },
  26701. tail: {
  26702. height: math.unit(4.2, "feet"),
  26703. name: "Tail",
  26704. image: {
  26705. source: "./media/characters/acidrenamon/tail.svg"
  26706. }
  26707. },
  26708. },
  26709. [
  26710. {
  26711. name: "Normal",
  26712. height: math.unit(2, "meters"),
  26713. default: true
  26714. },
  26715. {
  26716. name: "Minimacro",
  26717. height: math.unit(7, "meters")
  26718. },
  26719. {
  26720. name: "Macro",
  26721. height: math.unit(200, "meters")
  26722. },
  26723. {
  26724. name: "Gigamacro",
  26725. height: math.unit(0.2, "earths")
  26726. },
  26727. ]
  26728. ))
  26729. characterMakers.push(() => makeCharacter(
  26730. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26731. {
  26732. front: {
  26733. height: math.unit(6, "feet"),
  26734. weight: math.unit(150, "lb"),
  26735. name: "Front",
  26736. image: {
  26737. source: "./media/characters/kenzie-lee/front.svg",
  26738. extra: 1525 / 1465,
  26739. bottom: 45 / 1570
  26740. }
  26741. },
  26742. side: {
  26743. height: math.unit(6, "feet"),
  26744. weight: math.unit(150, "lb"),
  26745. name: "Side",
  26746. image: {
  26747. source: "./media/characters/kenzie-lee/side.svg",
  26748. extra: 5505 / 5383,
  26749. bottom: 60 / 5573
  26750. }
  26751. },
  26752. },
  26753. [
  26754. {
  26755. name: "Normal",
  26756. height: math.unit(152, "feet"),
  26757. default: true
  26758. },
  26759. {
  26760. name: "Megamacro",
  26761. height: math.unit(7, "miles")
  26762. },
  26763. {
  26764. name: "Gigamacro",
  26765. height: math.unit(8000, "miles")
  26766. },
  26767. ]
  26768. ))
  26769. characterMakers.push(() => makeCharacter(
  26770. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26771. {
  26772. side: {
  26773. height: math.unit(6, "feet"),
  26774. weight: math.unit(150, "lb"),
  26775. name: "Side",
  26776. image: {
  26777. source: "./media/characters/withers/side.svg",
  26778. extra: 1830 / 1728,
  26779. bottom: 96 / 1927
  26780. }
  26781. },
  26782. front: {
  26783. height: math.unit(6, "feet"),
  26784. weight: math.unit(150, "lb"),
  26785. name: "Front",
  26786. image: {
  26787. source: "./media/characters/withers/front.svg",
  26788. extra: 1514 / 1438,
  26789. bottom: 118 / 1632
  26790. }
  26791. },
  26792. },
  26793. [
  26794. {
  26795. name: "Macro",
  26796. height: math.unit(168, "feet"),
  26797. default: true
  26798. },
  26799. {
  26800. name: "Megamacro",
  26801. height: math.unit(15, "miles")
  26802. }
  26803. ]
  26804. ))
  26805. characterMakers.push(() => makeCharacter(
  26806. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26807. {
  26808. front: {
  26809. height: math.unit(6 + 7 / 12, "feet"),
  26810. weight: math.unit(250, "lb"),
  26811. name: "Front",
  26812. image: {
  26813. source: "./media/characters/nemoskii/front.svg",
  26814. extra: 2270 / 1734,
  26815. bottom: 86 / 2354
  26816. }
  26817. },
  26818. back: {
  26819. height: math.unit(6 + 7 / 12, "feet"),
  26820. weight: math.unit(250, "lb"),
  26821. name: "Back",
  26822. image: {
  26823. source: "./media/characters/nemoskii/back.svg",
  26824. extra: 1845 / 1788,
  26825. bottom: 10.5 / 1852
  26826. }
  26827. },
  26828. head: {
  26829. height: math.unit(1.31, "feet"),
  26830. name: "Head",
  26831. image: {
  26832. source: "./media/characters/nemoskii/head.svg"
  26833. }
  26834. },
  26835. },
  26836. [
  26837. {
  26838. name: "Normal",
  26839. height: math.unit(6 + 7 / 12, "feet"),
  26840. default: true
  26841. },
  26842. ]
  26843. ))
  26844. characterMakers.push(() => makeCharacter(
  26845. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26846. {
  26847. front: {
  26848. height: math.unit(1, "mile"),
  26849. weight: math.unit(265261.9, "lb"),
  26850. name: "Front",
  26851. image: {
  26852. source: "./media/characters/shui/front.svg",
  26853. extra: 1633 / 1564,
  26854. bottom: 91.5 / 1726
  26855. }
  26856. },
  26857. },
  26858. [
  26859. {
  26860. name: "Macro",
  26861. height: math.unit(1, "mile"),
  26862. default: true
  26863. },
  26864. ]
  26865. ))
  26866. characterMakers.push(() => makeCharacter(
  26867. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26868. {
  26869. front: {
  26870. height: math.unit(12 + 6 / 12, "feet"),
  26871. weight: math.unit(1342, "lb"),
  26872. name: "Front",
  26873. image: {
  26874. source: "./media/characters/arokh-takakura/front.svg",
  26875. extra: 1089 / 1043,
  26876. bottom: 77.4 / 1176.7
  26877. }
  26878. },
  26879. back: {
  26880. height: math.unit(12 + 6 / 12, "feet"),
  26881. weight: math.unit(1342, "lb"),
  26882. name: "Back",
  26883. image: {
  26884. source: "./media/characters/arokh-takakura/back.svg",
  26885. extra: 1046 / 1019,
  26886. bottom: 102 / 1150
  26887. }
  26888. },
  26889. },
  26890. [
  26891. {
  26892. name: "Big",
  26893. height: math.unit(12 + 6 / 12, "feet"),
  26894. default: true
  26895. },
  26896. ]
  26897. ))
  26898. characterMakers.push(() => makeCharacter(
  26899. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  26900. {
  26901. front: {
  26902. height: math.unit(5 + 6 / 12, "feet"),
  26903. weight: math.unit(150, "lb"),
  26904. name: "Front",
  26905. image: {
  26906. source: "./media/characters/theo/front.svg",
  26907. extra: 1184 / 1131,
  26908. bottom: 7.4 / 1191
  26909. }
  26910. },
  26911. },
  26912. [
  26913. {
  26914. name: "Micro",
  26915. height: math.unit(5, "inches")
  26916. },
  26917. {
  26918. name: "Normal",
  26919. height: math.unit(5 + 6 / 12, "feet"),
  26920. default: true
  26921. },
  26922. ]
  26923. ))
  26924. characterMakers.push(() => makeCharacter(
  26925. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  26926. {
  26927. front: {
  26928. height: math.unit(5 + 9 / 12, "feet"),
  26929. weight: math.unit(130, "lb"),
  26930. name: "Front",
  26931. image: {
  26932. source: "./media/characters/cecelia-swift/front.svg",
  26933. extra: 502 / 484,
  26934. bottom: 23 / 523
  26935. }
  26936. },
  26937. back: {
  26938. height: math.unit(5 + 9 / 12, "feet"),
  26939. weight: math.unit(130, "lb"),
  26940. name: "Back",
  26941. image: {
  26942. source: "./media/characters/cecelia-swift/back.svg",
  26943. extra: 499 / 485,
  26944. bottom: 12 / 511
  26945. }
  26946. },
  26947. head: {
  26948. height: math.unit(0.90, "feet"),
  26949. name: "Head",
  26950. image: {
  26951. source: "./media/characters/cecelia-swift/head.svg"
  26952. }
  26953. },
  26954. rump: {
  26955. height: math.unit(1.75, "feet"),
  26956. name: "Rump",
  26957. image: {
  26958. source: "./media/characters/cecelia-swift/rump.svg"
  26959. }
  26960. },
  26961. },
  26962. [
  26963. {
  26964. name: "Normal",
  26965. height: math.unit(5 + 9 / 12, "feet"),
  26966. default: true
  26967. },
  26968. {
  26969. name: "Big",
  26970. height: math.unit(50, "feet")
  26971. },
  26972. {
  26973. name: "Macro",
  26974. height: math.unit(100, "feet")
  26975. },
  26976. {
  26977. name: "Macro+",
  26978. height: math.unit(500, "feet")
  26979. },
  26980. {
  26981. name: "Macro++",
  26982. height: math.unit(1000, "feet")
  26983. },
  26984. ]
  26985. ))
  26986. characterMakers.push(() => makeCharacter(
  26987. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  26988. {
  26989. front: {
  26990. height: math.unit(6, "feet"),
  26991. weight: math.unit(150, "lb"),
  26992. name: "Front",
  26993. image: {
  26994. source: "./media/characters/kaunan/front.svg",
  26995. extra: 2890 / 2523,
  26996. bottom: 49 / 2939
  26997. }
  26998. },
  26999. },
  27000. [
  27001. {
  27002. name: "Macro",
  27003. height: math.unit(150, "feet"),
  27004. default: true
  27005. },
  27006. ]
  27007. ))
  27008. characterMakers.push(() => makeCharacter(
  27009. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27010. {
  27011. front: {
  27012. height: math.unit(175, "cm"),
  27013. weight: math.unit(60, "kg"),
  27014. name: "Front",
  27015. image: {
  27016. source: "./media/characters/fei/front.svg",
  27017. extra: 2581 / 2400,
  27018. bottom: 82.2 / 2663
  27019. }
  27020. },
  27021. },
  27022. [
  27023. {
  27024. name: "Mortal",
  27025. height: math.unit(175, "cm")
  27026. },
  27027. {
  27028. name: "Normal",
  27029. height: math.unit(3500, "m"),
  27030. default: true
  27031. },
  27032. {
  27033. name: "Stroll",
  27034. height: math.unit(17.5, "km")
  27035. },
  27036. {
  27037. name: "Showoff",
  27038. height: math.unit(175, "km")
  27039. },
  27040. ]
  27041. ))
  27042. characterMakers.push(() => makeCharacter(
  27043. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27044. {
  27045. front: {
  27046. height: math.unit(7, "feet"),
  27047. weight: math.unit(1000, "kg"),
  27048. name: "Front",
  27049. image: {
  27050. source: "./media/characters/edrax/front.svg",
  27051. extra: 2838 / 2550,
  27052. bottom: 130 / 2968
  27053. }
  27054. },
  27055. },
  27056. [
  27057. {
  27058. name: "Small",
  27059. height: math.unit(7, "feet")
  27060. },
  27061. {
  27062. name: "Normal",
  27063. height: math.unit(1500, "meters")
  27064. },
  27065. {
  27066. name: "Mega",
  27067. height: math.unit(12000000, "km"),
  27068. default: true
  27069. },
  27070. {
  27071. name: "Megamacro",
  27072. height: math.unit(10600000, "lightyears")
  27073. },
  27074. {
  27075. name: "Hypermacro",
  27076. height: math.unit(256, "yottameters")
  27077. },
  27078. ]
  27079. ))
  27080. characterMakers.push(() => makeCharacter(
  27081. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27082. {
  27083. front: {
  27084. height: math.unit(10, "feet"),
  27085. weight: math.unit(750, "lb"),
  27086. name: "Front",
  27087. image: {
  27088. source: "./media/characters/clove/front.svg",
  27089. extra: 2031 / 1860,
  27090. bottom: 47.8 / 2080
  27091. }
  27092. },
  27093. back: {
  27094. height: math.unit(10, "feet"),
  27095. weight: math.unit(750, "lb"),
  27096. name: "Back",
  27097. image: {
  27098. source: "./media/characters/clove/back.svg",
  27099. extra: 2025 / 1859,
  27100. bottom: 46 / 2071
  27101. }
  27102. },
  27103. },
  27104. [
  27105. {
  27106. name: "Normal",
  27107. height: math.unit(10, "feet"),
  27108. default: true
  27109. },
  27110. ]
  27111. ))
  27112. characterMakers.push(() => makeCharacter(
  27113. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27114. {
  27115. front: {
  27116. height: math.unit(4, "feet"),
  27117. weight: math.unit(50, "lb"),
  27118. name: "Front",
  27119. image: {
  27120. source: "./media/characters/alex-rabbit/front.svg",
  27121. extra: 507 / 458,
  27122. bottom: 18.5 / 527
  27123. }
  27124. },
  27125. back: {
  27126. height: math.unit(4, "feet"),
  27127. weight: math.unit(50, "lb"),
  27128. name: "Back",
  27129. image: {
  27130. source: "./media/characters/alex-rabbit/back.svg",
  27131. extra: 502 / 460,
  27132. bottom: 18.9 / 521
  27133. }
  27134. },
  27135. },
  27136. [
  27137. {
  27138. name: "Normal",
  27139. height: math.unit(4, "feet"),
  27140. default: true
  27141. },
  27142. ]
  27143. ))
  27144. characterMakers.push(() => makeCharacter(
  27145. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27146. {
  27147. front: {
  27148. height: math.unit(1 + 3 / 12, "feet"),
  27149. weight: math.unit(80, "lb"),
  27150. name: "Front",
  27151. image: {
  27152. source: "./media/characters/zander-rose/front.svg",
  27153. extra: 916 / 797,
  27154. bottom: 17 / 933
  27155. }
  27156. },
  27157. back: {
  27158. height: math.unit(1 + 3 / 12, "feet"),
  27159. weight: math.unit(80, "lb"),
  27160. name: "Back",
  27161. image: {
  27162. source: "./media/characters/zander-rose/back.svg",
  27163. extra: 903 / 779,
  27164. bottom: 31 / 934
  27165. }
  27166. },
  27167. },
  27168. [
  27169. {
  27170. name: "Normal",
  27171. height: math.unit(1 + 3 / 12, "feet"),
  27172. default: true
  27173. },
  27174. ]
  27175. ))
  27176. characterMakers.push(() => makeCharacter(
  27177. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27178. {
  27179. anthro: {
  27180. height: math.unit(6, "feet"),
  27181. weight: math.unit(150, "lb"),
  27182. name: "Anthro",
  27183. image: {
  27184. source: "./media/characters/razz/anthro.svg",
  27185. extra: 1437 / 1343,
  27186. bottom: 48 / 1485
  27187. }
  27188. },
  27189. feral: {
  27190. height: math.unit(6, "feet"),
  27191. weight: math.unit(150, "lb"),
  27192. name: "Feral",
  27193. image: {
  27194. source: "./media/characters/razz/feral.svg",
  27195. extra: 2569 / 1385,
  27196. bottom: 95 / 2664
  27197. }
  27198. },
  27199. },
  27200. [
  27201. {
  27202. name: "Normal",
  27203. height: math.unit(6, "feet"),
  27204. default: true
  27205. },
  27206. ]
  27207. ))
  27208. characterMakers.push(() => makeCharacter(
  27209. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27210. {
  27211. front: {
  27212. height: math.unit(9 + 4 / 12, "feet"),
  27213. weight: math.unit(500, "lb"),
  27214. name: "Front",
  27215. image: {
  27216. source: "./media/characters/morrigan/front.svg",
  27217. extra: 2707 / 2579,
  27218. bottom: 156 / 2863
  27219. }
  27220. },
  27221. },
  27222. [
  27223. {
  27224. name: "Normal",
  27225. height: math.unit(9 + 4 / 12, "feet"),
  27226. default: true
  27227. },
  27228. ]
  27229. ))
  27230. characterMakers.push(() => makeCharacter(
  27231. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27232. {
  27233. front: {
  27234. height: math.unit(5, "stories"),
  27235. weight: math.unit(4000, "lb"),
  27236. name: "Front",
  27237. image: {
  27238. source: "./media/characters/jenene/front.svg",
  27239. extra: 1780 / 1710,
  27240. bottom: 57 / 1837
  27241. }
  27242. },
  27243. },
  27244. [
  27245. {
  27246. name: "Normal",
  27247. height: math.unit(5, "stories"),
  27248. default: true
  27249. },
  27250. ]
  27251. ))
  27252. characterMakers.push(() => makeCharacter(
  27253. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27254. {
  27255. front: {
  27256. height: math.unit(6, "feet"),
  27257. weight: math.unit(150, "lb"),
  27258. name: "Front",
  27259. image: {
  27260. source: "./media/characters/vix-archaser/front.svg",
  27261. extra: 2767 / 2562,
  27262. bottom: 36 / 2803
  27263. }
  27264. },
  27265. },
  27266. [
  27267. {
  27268. name: "Micro",
  27269. height: math.unit(1, "foot")
  27270. },
  27271. {
  27272. name: "Normal",
  27273. height: math.unit(6 + 5 / 12, "feet")
  27274. },
  27275. {
  27276. name: "Minimacro",
  27277. height: math.unit(500, "feet")
  27278. },
  27279. {
  27280. name: "Macro",
  27281. height: math.unit(4, "miles")
  27282. },
  27283. {
  27284. name: "Megamacro",
  27285. height: math.unit(250, "miles"),
  27286. default: true
  27287. },
  27288. {
  27289. name: "Gigamacro",
  27290. height: math.unit(1, "universe")
  27291. },
  27292. {
  27293. name: "Endgame",
  27294. height: math.unit(100, "multiverses")
  27295. }
  27296. ]
  27297. ))
  27298. characterMakers.push(() => makeCharacter(
  27299. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27300. {
  27301. taurSfw: {
  27302. height: math.unit(10, "meters"),
  27303. weight: math.unit(17500, "kg"),
  27304. name: "Taur",
  27305. image: {
  27306. source: "./media/characters/faey/taur-sfw.svg",
  27307. extra: 1200 / 968,
  27308. bottom: 41 / 1241
  27309. }
  27310. },
  27311. chestmaw: {
  27312. height: math.unit(2.01, "meters"),
  27313. name: "Chestmaw",
  27314. image: {
  27315. source: "./media/characters/faey/chestmaw.svg"
  27316. }
  27317. },
  27318. foot: {
  27319. height: math.unit(2.43, "meters"),
  27320. name: "Foot",
  27321. image: {
  27322. source: "./media/characters/faey/foot.svg"
  27323. }
  27324. },
  27325. jaws: {
  27326. height: math.unit(1.66, "meters"),
  27327. name: "Jaws",
  27328. image: {
  27329. source: "./media/characters/faey/jaws.svg"
  27330. }
  27331. },
  27332. tongues: {
  27333. height: math.unit(2.01, "meters"),
  27334. name: "Tongues",
  27335. image: {
  27336. source: "./media/characters/faey/tongues.svg"
  27337. }
  27338. },
  27339. },
  27340. [
  27341. {
  27342. name: "Small",
  27343. height: math.unit(10, "meters"),
  27344. default: true
  27345. },
  27346. {
  27347. name: "Big",
  27348. height: math.unit(500000, "km")
  27349. },
  27350. ]
  27351. ))
  27352. characterMakers.push(() => makeCharacter(
  27353. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27354. {
  27355. front: {
  27356. height: math.unit(7, "feet"),
  27357. weight: math.unit(275, "lb"),
  27358. name: "Front",
  27359. image: {
  27360. source: "./media/characters/roku/front.svg",
  27361. extra: 903 / 878,
  27362. bottom: 37 / 940
  27363. }
  27364. },
  27365. },
  27366. [
  27367. {
  27368. name: "Normal",
  27369. height: math.unit(7, "feet"),
  27370. default: true
  27371. },
  27372. {
  27373. name: "Macro",
  27374. height: math.unit(500, "feet")
  27375. },
  27376. {
  27377. name: "Megamacro",
  27378. height: math.unit(200, "miles")
  27379. },
  27380. ]
  27381. ))
  27382. characterMakers.push(() => makeCharacter(
  27383. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27384. {
  27385. front: {
  27386. height: math.unit(6 + 2 / 12, "feet"),
  27387. weight: math.unit(150, "lb"),
  27388. name: "Front",
  27389. image: {
  27390. source: "./media/characters/lira/front.svg",
  27391. extra: 1727 / 1605,
  27392. bottom: 26 / 1753
  27393. }
  27394. },
  27395. back: {
  27396. height: math.unit(6 + 2 / 12, "feet"),
  27397. weight: math.unit(150, "lb"),
  27398. name: "Back",
  27399. image: {
  27400. source: "./media/characters/lira/back.svg",
  27401. extra: 1713 / 159,
  27402. bottom: 20 / 1733
  27403. }
  27404. },
  27405. hand: {
  27406. height: math.unit(0.75, "feet"),
  27407. name: "Hand",
  27408. image: {
  27409. source: "./media/characters/lira/hand.svg"
  27410. }
  27411. },
  27412. maw: {
  27413. height: math.unit(0.65, "feet"),
  27414. name: "Maw",
  27415. image: {
  27416. source: "./media/characters/lira/maw.svg"
  27417. }
  27418. },
  27419. pawDigi: {
  27420. height: math.unit(1.6, "feet"),
  27421. name: "Paw Digi",
  27422. image: {
  27423. source: "./media/characters/lira/paw-digi.svg"
  27424. }
  27425. },
  27426. pawPlanti: {
  27427. height: math.unit(1.4, "feet"),
  27428. name: "Paw Planti",
  27429. image: {
  27430. source: "./media/characters/lira/paw-planti.svg"
  27431. }
  27432. },
  27433. },
  27434. [
  27435. {
  27436. name: "Normal",
  27437. height: math.unit(6 + 2 / 12, "feet"),
  27438. default: true
  27439. },
  27440. {
  27441. name: "Macro",
  27442. height: math.unit(100, "feet")
  27443. },
  27444. {
  27445. name: "Macro²",
  27446. height: math.unit(1600, "feet")
  27447. },
  27448. {
  27449. name: "Planetary",
  27450. height: math.unit(20, "earths")
  27451. },
  27452. ]
  27453. ))
  27454. characterMakers.push(() => makeCharacter(
  27455. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27456. {
  27457. front: {
  27458. height: math.unit(6, "feet"),
  27459. weight: math.unit(150, "lb"),
  27460. name: "Front",
  27461. image: {
  27462. source: "./media/characters/hadjet/front.svg",
  27463. extra: 1480 / 1346,
  27464. bottom: 26 / 1506
  27465. }
  27466. },
  27467. frontNsfw: {
  27468. height: math.unit(6, "feet"),
  27469. weight: math.unit(150, "lb"),
  27470. name: "Front (NSFW)",
  27471. image: {
  27472. source: "./media/characters/hadjet/front-nsfw.svg",
  27473. extra: 1440 / 1358,
  27474. bottom: 52 / 1492
  27475. }
  27476. },
  27477. },
  27478. [
  27479. {
  27480. name: "Macro",
  27481. height: math.unit(10, "stories"),
  27482. default: true
  27483. },
  27484. {
  27485. name: "Megamacro",
  27486. height: math.unit(1.5, "miles")
  27487. },
  27488. {
  27489. name: "Megamacro+",
  27490. height: math.unit(5, "miles")
  27491. },
  27492. ]
  27493. ))
  27494. characterMakers.push(() => makeCharacter(
  27495. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27496. {
  27497. side: {
  27498. height: math.unit(106, "feet"),
  27499. weight: math.unit(500, "tonnes"),
  27500. name: "Side",
  27501. image: {
  27502. source: "./media/characters/kodran/side.svg",
  27503. extra: 553 / 480,
  27504. bottom: 33 / 586
  27505. }
  27506. },
  27507. front: {
  27508. height: math.unit(132, "feet"),
  27509. weight: math.unit(500, "tonnes"),
  27510. name: "Front",
  27511. image: {
  27512. source: "./media/characters/kodran/front.svg",
  27513. extra: 667 / 643,
  27514. bottom: 42 / 709
  27515. }
  27516. },
  27517. flying: {
  27518. height: math.unit(350, "feet"),
  27519. weight: math.unit(500, "tonnes"),
  27520. name: "Flying",
  27521. image: {
  27522. source: "./media/characters/kodran/flying.svg"
  27523. }
  27524. },
  27525. foot: {
  27526. height: math.unit(33, "feet"),
  27527. name: "Foot",
  27528. image: {
  27529. source: "./media/characters/kodran/foot.svg"
  27530. }
  27531. },
  27532. footFront: {
  27533. height: math.unit(19, "feet"),
  27534. name: "Foot (Front)",
  27535. image: {
  27536. source: "./media/characters/kodran/foot-front.svg",
  27537. extra: 261 / 261,
  27538. bottom: 91 / 352
  27539. }
  27540. },
  27541. headFront: {
  27542. height: math.unit(53, "feet"),
  27543. name: "Head (Front)",
  27544. image: {
  27545. source: "./media/characters/kodran/head-front.svg"
  27546. }
  27547. },
  27548. headSide: {
  27549. height: math.unit(65, "feet"),
  27550. name: "Head (Side)",
  27551. image: {
  27552. source: "./media/characters/kodran/head-side.svg"
  27553. }
  27554. },
  27555. throat: {
  27556. height: math.unit(79, "feet"),
  27557. name: "Throat",
  27558. image: {
  27559. source: "./media/characters/kodran/throat.svg"
  27560. }
  27561. },
  27562. },
  27563. [
  27564. {
  27565. name: "Large",
  27566. height: math.unit(106, "feet"),
  27567. default: true
  27568. },
  27569. ]
  27570. ))
  27571. characterMakers.push(() => makeCharacter(
  27572. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27573. {
  27574. side: {
  27575. height: math.unit(11, "feet"),
  27576. weight: math.unit(150, "lb"),
  27577. name: "Side",
  27578. image: {
  27579. source: "./media/characters/pyxaron/side.svg",
  27580. extra: 305 / 195,
  27581. bottom: 17 / 322
  27582. }
  27583. },
  27584. },
  27585. [
  27586. {
  27587. name: "Normal",
  27588. height: math.unit(11, "feet"),
  27589. default: true
  27590. },
  27591. ]
  27592. ))
  27593. characterMakers.push(() => makeCharacter(
  27594. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27595. {
  27596. front: {
  27597. height: math.unit(6, "feet"),
  27598. weight: math.unit(150, "lb"),
  27599. name: "Front",
  27600. image: {
  27601. source: "./media/characters/meep/front.svg",
  27602. extra: 88 / 80,
  27603. bottom: 6 / 94
  27604. }
  27605. },
  27606. },
  27607. [
  27608. {
  27609. name: "Fun Sized",
  27610. height: math.unit(2, "inches"),
  27611. default: true
  27612. },
  27613. {
  27614. name: "Friend Sized",
  27615. height: math.unit(8, "inches")
  27616. },
  27617. ]
  27618. ))
  27619. characterMakers.push(() => makeCharacter(
  27620. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27621. {
  27622. front: {
  27623. height: math.unit(15, "feet"),
  27624. weight: math.unit(2500, "lb"),
  27625. name: "Front",
  27626. image: {
  27627. source: "./media/characters/holly-rabbit/front.svg",
  27628. extra: 1433 / 1233,
  27629. bottom: 125 / 1558
  27630. }
  27631. },
  27632. dick: {
  27633. height: math.unit(4.6, "feet"),
  27634. name: "Dick",
  27635. image: {
  27636. source: "./media/characters/holly-rabbit/dick.svg"
  27637. }
  27638. },
  27639. },
  27640. [
  27641. {
  27642. name: "Normal",
  27643. height: math.unit(15, "feet"),
  27644. default: true
  27645. },
  27646. {
  27647. name: "Macro",
  27648. height: math.unit(250, "feet")
  27649. },
  27650. {
  27651. name: "Macro+",
  27652. height: math.unit(2500, "feet")
  27653. },
  27654. ]
  27655. ))
  27656. characterMakers.push(() => makeCharacter(
  27657. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27658. {
  27659. front: {
  27660. height: math.unit(3.02, "meters"),
  27661. weight: math.unit(500, "kg"),
  27662. name: "Front",
  27663. image: {
  27664. source: "./media/characters/drena/front.svg",
  27665. extra: 282 / 243,
  27666. bottom: 8 / 290
  27667. }
  27668. },
  27669. side: {
  27670. height: math.unit(3.02, "meters"),
  27671. weight: math.unit(500, "kg"),
  27672. name: "Side",
  27673. image: {
  27674. source: "./media/characters/drena/side.svg",
  27675. extra: 280 / 245,
  27676. bottom: 10 / 290
  27677. }
  27678. },
  27679. back: {
  27680. height: math.unit(3.02, "meters"),
  27681. weight: math.unit(500, "kg"),
  27682. name: "Back",
  27683. image: {
  27684. source: "./media/characters/drena/back.svg",
  27685. extra: 278 / 243,
  27686. bottom: 2 / 280
  27687. }
  27688. },
  27689. foot: {
  27690. height: math.unit(0.75, "meters"),
  27691. name: "Foot",
  27692. image: {
  27693. source: "./media/characters/drena/foot.svg"
  27694. }
  27695. },
  27696. maw: {
  27697. height: math.unit(0.82, "meters"),
  27698. name: "Maw",
  27699. image: {
  27700. source: "./media/characters/drena/maw.svg"
  27701. }
  27702. },
  27703. rump: {
  27704. height: math.unit(0.93, "meters"),
  27705. name: "Rump",
  27706. image: {
  27707. source: "./media/characters/drena/rump.svg"
  27708. }
  27709. },
  27710. },
  27711. [
  27712. {
  27713. name: "Normal",
  27714. height: math.unit(3.02, "meters"),
  27715. default: true
  27716. },
  27717. ]
  27718. ))
  27719. characterMakers.push(() => makeCharacter(
  27720. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27721. {
  27722. front: {
  27723. height: math.unit(6 + 4 / 12, "feet"),
  27724. weight: math.unit(250, "lb"),
  27725. name: "Front",
  27726. image: {
  27727. source: "./media/characters/remmyzilla/front.svg",
  27728. extra: 4033 / 3588,
  27729. bottom: 123 / 4156
  27730. }
  27731. },
  27732. back: {
  27733. height: math.unit(6 + 4 / 12, "feet"),
  27734. weight: math.unit(250, "lb"),
  27735. name: "Back",
  27736. image: {
  27737. source: "./media/characters/remmyzilla/back.svg",
  27738. extra: 2687 / 2555,
  27739. bottom: 48 / 2735
  27740. }
  27741. },
  27742. frontFancy: {
  27743. height: math.unit(6 + 4 / 12, "feet"),
  27744. weight: math.unit(250, "lb"),
  27745. name: "Front (Fancy)",
  27746. image: {
  27747. source: "./media/characters/remmyzilla/front-fancy.svg",
  27748. extra: 4119 / 3419,
  27749. bottom: 237 / 4356
  27750. }
  27751. },
  27752. paw: {
  27753. height: math.unit(1.73, "feet"),
  27754. name: "Paw",
  27755. image: {
  27756. source: "./media/characters/remmyzilla/paw.svg"
  27757. }
  27758. },
  27759. maw: {
  27760. height: math.unit(1.73, "feet"),
  27761. name: "Maw",
  27762. image: {
  27763. source: "./media/characters/remmyzilla/maw.svg"
  27764. }
  27765. },
  27766. },
  27767. [
  27768. {
  27769. name: "Normal",
  27770. height: math.unit(6 + 4 / 12, "feet")
  27771. },
  27772. {
  27773. name: "Minimacro",
  27774. height: math.unit(12 + 8 / 12, "feet")
  27775. },
  27776. {
  27777. name: "Normal",
  27778. height: math.unit(640, "feet"),
  27779. default: true
  27780. },
  27781. {
  27782. name: "Megamacro",
  27783. height: math.unit(6400, "feet")
  27784. },
  27785. {
  27786. name: "Gigamacro",
  27787. height: math.unit(64000, "miles")
  27788. },
  27789. ]
  27790. ))
  27791. characterMakers.push(() => makeCharacter(
  27792. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27793. {
  27794. front: {
  27795. height: math.unit(2.5, "meters"),
  27796. weight: math.unit(300, "lb"),
  27797. name: "Front",
  27798. image: {
  27799. source: "./media/characters/lawrence/front.svg",
  27800. extra: 357 / 335,
  27801. bottom: 30 / 387
  27802. }
  27803. },
  27804. back: {
  27805. height: math.unit(2.5, "meters"),
  27806. weight: math.unit(300, "lb"),
  27807. name: "Back",
  27808. image: {
  27809. source: "./media/characters/lawrence/back.svg",
  27810. extra: 357 / 338,
  27811. bottom: 16 / 373
  27812. }
  27813. },
  27814. head: {
  27815. height: math.unit(0.9, "meter"),
  27816. name: "Head",
  27817. image: {
  27818. source: "./media/characters/lawrence/head.svg"
  27819. }
  27820. },
  27821. maw: {
  27822. height: math.unit(0.7, "meter"),
  27823. name: "Maw",
  27824. image: {
  27825. source: "./media/characters/lawrence/maw.svg"
  27826. }
  27827. },
  27828. footBottom: {
  27829. height: math.unit(0.5, "meter"),
  27830. name: "Foot (Bottom)",
  27831. image: {
  27832. source: "./media/characters/lawrence/foot-bottom.svg"
  27833. }
  27834. },
  27835. footTop: {
  27836. height: math.unit(0.5, "meter"),
  27837. name: "Foot (Top)",
  27838. image: {
  27839. source: "./media/characters/lawrence/foot-top.svg"
  27840. }
  27841. },
  27842. },
  27843. [
  27844. {
  27845. name: "Normal",
  27846. height: math.unit(2.5, "meters"),
  27847. default: true
  27848. },
  27849. {
  27850. name: "Macro",
  27851. height: math.unit(95, "meters")
  27852. },
  27853. {
  27854. name: "Megamacro",
  27855. height: math.unit(150, "km")
  27856. },
  27857. ]
  27858. ))
  27859. characterMakers.push(() => makeCharacter(
  27860. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  27861. {
  27862. front: {
  27863. height: math.unit(4.2, "meters"),
  27864. name: "Front",
  27865. image: {
  27866. source: "./media/characters/sydney/front.svg",
  27867. extra: 1323 / 1277,
  27868. bottom: 111 / 1434
  27869. }
  27870. },
  27871. },
  27872. [
  27873. {
  27874. name: "Normal",
  27875. height: math.unit(4.2, "meters"),
  27876. default: true
  27877. },
  27878. ]
  27879. ))
  27880. characterMakers.push(() => makeCharacter(
  27881. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  27882. {
  27883. back: {
  27884. height: math.unit(201, "feet"),
  27885. name: "Back",
  27886. image: {
  27887. source: "./media/characters/jessica/back.svg",
  27888. extra: 273 / 259,
  27889. bottom: 7 / 280
  27890. }
  27891. },
  27892. },
  27893. [
  27894. {
  27895. name: "Normal",
  27896. height: math.unit(201, "feet"),
  27897. default: true
  27898. },
  27899. {
  27900. name: "Megamacro",
  27901. height: math.unit(8, "miles")
  27902. },
  27903. ]
  27904. ))
  27905. characterMakers.push(() => makeCharacter(
  27906. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  27907. {
  27908. side: {
  27909. height: math.unit(320, "cm"),
  27910. name: "Side",
  27911. image: {
  27912. source: "./media/characters/victoria/side.svg",
  27913. extra: 778 / 346,
  27914. bottom: 56 / 834
  27915. }
  27916. },
  27917. maw: {
  27918. height: math.unit(5.9, "feet"),
  27919. name: "Maw",
  27920. image: {
  27921. source: "./media/characters/victoria/maw.svg"
  27922. }
  27923. },
  27924. },
  27925. [
  27926. {
  27927. name: "Normal",
  27928. height: math.unit(320, "cm"),
  27929. default: true
  27930. },
  27931. ]
  27932. ))
  27933. characterMakers.push(() => makeCharacter(
  27934. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  27935. {
  27936. front: {
  27937. height: math.unit(5 + 6 / 12, "feet"),
  27938. name: "Front",
  27939. image: {
  27940. source: "./media/characters/cat/front.svg",
  27941. extra: 1374 / 1257,
  27942. bottom: 59 / 1433
  27943. }
  27944. },
  27945. back: {
  27946. height: math.unit(5 + 6 / 12, "feet"),
  27947. name: "Back",
  27948. image: {
  27949. source: "./media/characters/cat/back.svg",
  27950. extra: 1337 / 1226,
  27951. bottom: 34 / 1371
  27952. }
  27953. },
  27954. taur: {
  27955. height: math.unit(7, "feet"),
  27956. name: "Taur",
  27957. image: {
  27958. source: "./media/characters/cat/taur.svg",
  27959. extra: 1345 / 1231,
  27960. bottom: 66 / 1411
  27961. }
  27962. },
  27963. lucario: {
  27964. height: math.unit(4, "feet"),
  27965. name: "Lucario",
  27966. image: {
  27967. source: "./media/characters/cat/lucario.svg",
  27968. extra: 1470 / 1318,
  27969. bottom: 65 / 1535
  27970. }
  27971. },
  27972. megaLucario: {
  27973. height: math.unit(4, "feet"),
  27974. name: "Mega Lucario",
  27975. image: {
  27976. source: "./media/characters/cat/mega-lucario.svg",
  27977. extra: 1515 / 1319,
  27978. bottom: 63 / 1578
  27979. }
  27980. },
  27981. nickit: {
  27982. height: math.unit(2, "feet"),
  27983. name: "Nickit",
  27984. image: {
  27985. source: "./media/characters/cat/nickit.svg",
  27986. extra: 1980 / 1585,
  27987. bottom: 102 / 2082
  27988. }
  27989. },
  27990. lopunnyFront: {
  27991. height: math.unit(5, "feet"),
  27992. name: "Lopunny (Front)",
  27993. image: {
  27994. source: "./media/characters/cat/lopunny-front.svg",
  27995. extra: 1782 / 1469,
  27996. bottom: 38 / 1820
  27997. }
  27998. },
  27999. lopunnyBack: {
  28000. height: math.unit(5, "feet"),
  28001. name: "Lopunny (Back)",
  28002. image: {
  28003. source: "./media/characters/cat/lopunny-back.svg",
  28004. extra: 1660 / 1490,
  28005. bottom: 25 / 1685
  28006. }
  28007. },
  28008. },
  28009. [
  28010. {
  28011. name: "Really small",
  28012. height: math.unit(1, "nm")
  28013. },
  28014. {
  28015. name: "Micro",
  28016. height: math.unit(5, "inches")
  28017. },
  28018. {
  28019. name: "Normal",
  28020. height: math.unit(5 + 6 / 12, "feet"),
  28021. default: true
  28022. },
  28023. {
  28024. name: "Macro",
  28025. height: math.unit(50, "feet")
  28026. },
  28027. {
  28028. name: "Macro+",
  28029. height: math.unit(150, "feet")
  28030. },
  28031. {
  28032. name: "Megamacro",
  28033. height: math.unit(100, "miles")
  28034. },
  28035. ]
  28036. ))
  28037. characterMakers.push(() => makeCharacter(
  28038. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28039. {
  28040. front: {
  28041. height: math.unit(63.4, "meters"),
  28042. weight: math.unit(3.28349e+6, "kilograms"),
  28043. name: "Front",
  28044. image: {
  28045. source: "./media/characters/kirina-violet/front.svg",
  28046. extra: 2812 / 2725,
  28047. bottom: 0 / 2812
  28048. }
  28049. },
  28050. back: {
  28051. height: math.unit(63.4, "meters"),
  28052. weight: math.unit(3.28349e+6, "kilograms"),
  28053. name: "Back",
  28054. image: {
  28055. source: "./media/characters/kirina-violet/back.svg",
  28056. extra: 2812 / 2725,
  28057. bottom: 0 / 2812
  28058. }
  28059. },
  28060. mouth: {
  28061. height: math.unit(4.35, "meters"),
  28062. name: "Mouth",
  28063. image: {
  28064. source: "./media/characters/kirina-violet/mouth.svg"
  28065. }
  28066. },
  28067. paw: {
  28068. height: math.unit(5.6, "meters"),
  28069. name: "Paw",
  28070. image: {
  28071. source: "./media/characters/kirina-violet/paw.svg"
  28072. }
  28073. },
  28074. tail: {
  28075. height: math.unit(18, "meters"),
  28076. name: "Tail",
  28077. image: {
  28078. source: "./media/characters/kirina-violet/tail.svg"
  28079. }
  28080. },
  28081. },
  28082. [
  28083. {
  28084. name: "Macro",
  28085. height: math.unit(63.4, "meters"),
  28086. default: true
  28087. },
  28088. ]
  28089. ))
  28090. characterMakers.push(() => makeCharacter(
  28091. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28092. {
  28093. front: {
  28094. height: math.unit(60, "feet"),
  28095. name: "Front",
  28096. image: {
  28097. source: "./media/characters/cat-gigachu/front.svg",
  28098. extra: 1024 / 780,
  28099. bottom: 23 / 1047
  28100. }
  28101. },
  28102. back: {
  28103. height: math.unit(60, "feet"),
  28104. name: "Back",
  28105. image: {
  28106. source: "./media/characters/cat-gigachu/back.svg",
  28107. extra: 1024 / 780,
  28108. bottom: 23 / 1047
  28109. }
  28110. },
  28111. },
  28112. [
  28113. {
  28114. name: "Dynamax",
  28115. height: math.unit(60, "feet"),
  28116. default: true
  28117. },
  28118. ]
  28119. ))
  28120. characterMakers.push(() => makeCharacter(
  28121. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28122. {
  28123. front: {
  28124. height: math.unit(6, "feet"),
  28125. weight: math.unit(150, "lb"),
  28126. name: "Front",
  28127. image: {
  28128. source: "./media/characters/sfaiyan/front.svg",
  28129. extra: 999 / 978,
  28130. bottom: 5 / 1004
  28131. }
  28132. },
  28133. },
  28134. [
  28135. {
  28136. name: "Normal",
  28137. height: math.unit(1.82, "meters")
  28138. },
  28139. {
  28140. name: "Giant",
  28141. height: math.unit(2.27, "km"),
  28142. default: true
  28143. },
  28144. ]
  28145. ))
  28146. characterMakers.push(() => makeCharacter(
  28147. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28148. {
  28149. front: {
  28150. height: math.unit(179, "cm"),
  28151. weight: math.unit(100, "kg"),
  28152. name: "Front",
  28153. image: {
  28154. source: "./media/characters/raunehkeli/front.svg",
  28155. extra: 1934 / 1926,
  28156. bottom: 0 / 1934
  28157. }
  28158. },
  28159. },
  28160. [
  28161. {
  28162. name: "Normal",
  28163. height: math.unit(179, "cm")
  28164. },
  28165. {
  28166. name: "Maximum",
  28167. height: math.unit(575, "meters"),
  28168. default: true
  28169. },
  28170. ]
  28171. ))
  28172. characterMakers.push(() => makeCharacter(
  28173. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28174. {
  28175. front: {
  28176. height: math.unit(6, "feet"),
  28177. weight: math.unit(150, "lb"),
  28178. name: "Front",
  28179. image: {
  28180. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28181. extra: 2625 / 2518,
  28182. bottom: 60 / 2685
  28183. }
  28184. },
  28185. },
  28186. [
  28187. {
  28188. name: "Normal",
  28189. height: math.unit(6 + 2 / 12, "feet"),
  28190. default: true
  28191. },
  28192. {
  28193. name: "Macro",
  28194. height: math.unit(1180, "feet")
  28195. },
  28196. ]
  28197. ))
  28198. characterMakers.push(() => makeCharacter(
  28199. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28200. {
  28201. front: {
  28202. height: math.unit(5 + 6 / 12, "feet"),
  28203. weight: math.unit(108, "lb"),
  28204. name: "Front",
  28205. image: {
  28206. source: "./media/characters/lilith-zott/front.svg",
  28207. extra: 2510 / 2238,
  28208. bottom: 100 / 2610
  28209. }
  28210. },
  28211. frontDressed: {
  28212. height: math.unit(5 + 6 / 12, "feet"),
  28213. weight: math.unit(108, "lb"),
  28214. name: "Front (Dressed)",
  28215. image: {
  28216. source: "./media/characters/lilith-zott/front-dressed.svg",
  28217. extra: 2510 / 2238,
  28218. bottom: 100 / 2610
  28219. }
  28220. },
  28221. },
  28222. [
  28223. {
  28224. name: "Normal",
  28225. height: math.unit(5 + 6 / 12, "feet")
  28226. },
  28227. {
  28228. name: "Macro",
  28229. height: math.unit(200, "feet"),
  28230. default: true
  28231. },
  28232. {
  28233. name: "Macro+",
  28234. height: math.unit(1030, "feet")
  28235. },
  28236. ]
  28237. ))
  28238. characterMakers.push(() => makeCharacter(
  28239. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28240. {
  28241. front: {
  28242. height: math.unit(6, "feet"),
  28243. weight: math.unit(150, "lb"),
  28244. name: "Front",
  28245. image: {
  28246. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28247. extra: 2567 / 2435,
  28248. bottom: 39 / 2606
  28249. }
  28250. },
  28251. frontSuper: {
  28252. height: math.unit(6, "feet"),
  28253. name: "Front (Super)",
  28254. image: {
  28255. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28256. extra: 2567 / 2435,
  28257. bottom: 39 / 2606
  28258. }
  28259. },
  28260. },
  28261. [
  28262. {
  28263. name: "Normal",
  28264. height: math.unit(5 + 10 / 12, "feet")
  28265. },
  28266. {
  28267. name: "Macro",
  28268. height: math.unit(220, "feet"),
  28269. default: true
  28270. },
  28271. {
  28272. name: "Macro+",
  28273. height: math.unit(1100, "feet")
  28274. },
  28275. ]
  28276. ))
  28277. characterMakers.push(() => makeCharacter(
  28278. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28279. {
  28280. front: {
  28281. height: math.unit(100, "miles"),
  28282. name: "Front",
  28283. image: {
  28284. source: "./media/characters/sona/front.svg",
  28285. extra: 2433 / 2201,
  28286. bottom: 53 / 2486
  28287. }
  28288. },
  28289. foot: {
  28290. height: math.unit(16.1, "miles"),
  28291. name: "Foot",
  28292. image: {
  28293. source: "./media/characters/sona/foot.svg"
  28294. }
  28295. },
  28296. },
  28297. [
  28298. {
  28299. name: "Macro",
  28300. height: math.unit(100, "miles"),
  28301. default: true
  28302. },
  28303. ]
  28304. ))
  28305. characterMakers.push(() => makeCharacter(
  28306. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28307. {
  28308. front: {
  28309. height: math.unit(6, "feet"),
  28310. weight: math.unit(150, "lb"),
  28311. name: "Front",
  28312. image: {
  28313. source: "./media/characters/bailey/front.svg",
  28314. extra: 1778 / 1724,
  28315. bottom: 30 / 1808
  28316. }
  28317. },
  28318. },
  28319. [
  28320. {
  28321. name: "Micro",
  28322. height: math.unit(4, "inches")
  28323. },
  28324. {
  28325. name: "Normal",
  28326. height: math.unit(5 + 5 / 12, "feet"),
  28327. default: true
  28328. },
  28329. {
  28330. name: "Macro",
  28331. height: math.unit(250, "feet")
  28332. },
  28333. {
  28334. name: "Megamacro",
  28335. height: math.unit(100, "miles")
  28336. },
  28337. ]
  28338. ))
  28339. characterMakers.push(() => makeCharacter(
  28340. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28341. {
  28342. front: {
  28343. height: math.unit(5 + 2 / 12, "feet"),
  28344. weight: math.unit(120, "lb"),
  28345. name: "Front",
  28346. image: {
  28347. source: "./media/characters/snaps/front.svg",
  28348. extra: 2370 / 2177,
  28349. bottom: 48 / 2418
  28350. }
  28351. },
  28352. back: {
  28353. height: math.unit(5 + 2 / 12, "feet"),
  28354. weight: math.unit(120, "lb"),
  28355. name: "Back",
  28356. image: {
  28357. source: "./media/characters/snaps/back.svg",
  28358. extra: 2408 / 2258,
  28359. bottom: 15 / 2423
  28360. }
  28361. },
  28362. },
  28363. [
  28364. {
  28365. name: "Micro",
  28366. height: math.unit(9, "inches")
  28367. },
  28368. {
  28369. name: "Normal",
  28370. height: math.unit(5 + 2 / 12, "feet"),
  28371. default: true
  28372. },
  28373. {
  28374. name: "Mini Macro",
  28375. height: math.unit(10, "feet")
  28376. },
  28377. ]
  28378. ))
  28379. characterMakers.push(() => makeCharacter(
  28380. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28381. {
  28382. front: {
  28383. height: math.unit(1.8, "meters"),
  28384. weight: math.unit(85, "kg"),
  28385. name: "Front",
  28386. image: {
  28387. source: "./media/characters/azteck/front.svg",
  28388. extra: 2815 / 2625,
  28389. bottom: 89 / 2904
  28390. }
  28391. },
  28392. back: {
  28393. height: math.unit(1.8, "meters"),
  28394. weight: math.unit(85, "kg"),
  28395. name: "Back",
  28396. image: {
  28397. source: "./media/characters/azteck/back.svg",
  28398. extra: 2856 / 2648,
  28399. bottom: 85 / 2941
  28400. }
  28401. },
  28402. frontDressed: {
  28403. height: math.unit(1.8, "meters"),
  28404. weight: math.unit(85, "kg"),
  28405. name: "Front (Dressed)",
  28406. image: {
  28407. source: "./media/characters/azteck/front-dressed.svg",
  28408. extra: 2147 / 2003,
  28409. bottom: 68 / 2215
  28410. }
  28411. },
  28412. head: {
  28413. height: math.unit(0.47, "meters"),
  28414. weight: math.unit(85, "kg"),
  28415. name: "Head",
  28416. image: {
  28417. source: "./media/characters/azteck/head.svg"
  28418. }
  28419. },
  28420. },
  28421. [
  28422. {
  28423. name: "Bite sized",
  28424. height: math.unit(16, "cm")
  28425. },
  28426. {
  28427. name: "Normal",
  28428. height: math.unit(1.8, "meters"),
  28429. default: true
  28430. },
  28431. ]
  28432. ))
  28433. characterMakers.push(() => makeCharacter(
  28434. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28435. {
  28436. front: {
  28437. height: math.unit(6, "feet"),
  28438. weight: math.unit(150, "lb"),
  28439. name: "Front",
  28440. image: {
  28441. source: "./media/characters/pidge/front.svg",
  28442. extra: 620 / 588,
  28443. bottom: 9 / 629
  28444. }
  28445. },
  28446. back: {
  28447. height: math.unit(6, "feet"),
  28448. weight: math.unit(150, "lb"),
  28449. name: "Back",
  28450. image: {
  28451. source: "./media/characters/pidge/back.svg",
  28452. extra: 620 / 588,
  28453. bottom: 9 / 629
  28454. }
  28455. },
  28456. },
  28457. [
  28458. {
  28459. name: "Macro",
  28460. height: math.unit(1, "mile"),
  28461. default: true
  28462. },
  28463. ]
  28464. ))
  28465. characterMakers.push(() => makeCharacter(
  28466. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28467. {
  28468. front: {
  28469. height: math.unit(6, "feet"),
  28470. weight: math.unit(150, "lb"),
  28471. name: "Front",
  28472. image: {
  28473. source: "./media/characters/en/front.svg",
  28474. extra: 1697 / 1563,
  28475. bottom: 103 / 1800
  28476. }
  28477. },
  28478. back: {
  28479. height: math.unit(6, "feet"),
  28480. weight: math.unit(150, "lb"),
  28481. name: "Back",
  28482. image: {
  28483. source: "./media/characters/en/back.svg",
  28484. extra: 1700 / 1570,
  28485. bottom: 51 / 1751
  28486. }
  28487. },
  28488. frontDressed: {
  28489. height: math.unit(6, "feet"),
  28490. weight: math.unit(150, "lb"),
  28491. name: "Front (Dressed)",
  28492. image: {
  28493. source: "./media/characters/en/front-dressed.svg",
  28494. extra: 1697 / 1563,
  28495. bottom: 103 / 1800
  28496. }
  28497. },
  28498. backDressed: {
  28499. height: math.unit(6, "feet"),
  28500. weight: math.unit(150, "lb"),
  28501. name: "Back (Dressed)",
  28502. image: {
  28503. source: "./media/characters/en/back-dressed.svg",
  28504. extra: 1700 / 1570,
  28505. bottom: 51 / 1751
  28506. }
  28507. },
  28508. },
  28509. [
  28510. {
  28511. name: "Macro",
  28512. height: math.unit(210, "feet"),
  28513. default: true
  28514. },
  28515. ]
  28516. ))
  28517. characterMakers.push(() => makeCharacter(
  28518. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28519. {
  28520. front: {
  28521. height: math.unit(6, "feet"),
  28522. weight: math.unit(150, "lb"),
  28523. name: "Front",
  28524. image: {
  28525. source: "./media/characters/haze-orris/front.svg",
  28526. extra: 3975 / 3525,
  28527. bottom: 137 / 4112
  28528. }
  28529. },
  28530. },
  28531. [
  28532. {
  28533. name: "Micro",
  28534. height: math.unit(150, "mm"),
  28535. default: true
  28536. },
  28537. ]
  28538. ))
  28539. characterMakers.push(() => makeCharacter(
  28540. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28541. {
  28542. front: {
  28543. height: math.unit(6, "feet"),
  28544. weight: math.unit(150, "lb"),
  28545. name: "Front",
  28546. image: {
  28547. source: "./media/characters/casselene-yaro/front.svg",
  28548. extra: 4721 / 4541,
  28549. bottom: 82 / 4803
  28550. }
  28551. },
  28552. back: {
  28553. height: math.unit(6, "feet"),
  28554. weight: math.unit(150, "lb"),
  28555. name: "Back",
  28556. image: {
  28557. source: "./media/characters/casselene-yaro/back.svg",
  28558. extra: 4569 / 4377,
  28559. bottom: 69 / 4638
  28560. }
  28561. },
  28562. frontDressed: {
  28563. height: math.unit(6, "feet"),
  28564. weight: math.unit(150, "lb"),
  28565. name: "Front-dressed",
  28566. image: {
  28567. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28568. extra: 4721 / 4541,
  28569. bottom: 82 / 4803
  28570. }
  28571. },
  28572. },
  28573. [
  28574. {
  28575. name: "Macro",
  28576. height: math.unit(190, "feet"),
  28577. default: true
  28578. },
  28579. ]
  28580. ))
  28581. characterMakers.push(() => makeCharacter(
  28582. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28583. {
  28584. front: {
  28585. height: math.unit(6, "feet"),
  28586. weight: math.unit(150, "lb"),
  28587. name: "Front",
  28588. image: {
  28589. source: "./media/characters/myra-rue-delore/front.svg",
  28590. extra: 1340 / 1308,
  28591. bottom: 67 / 1407
  28592. }
  28593. },
  28594. back: {
  28595. height: math.unit(6, "feet"),
  28596. weight: math.unit(150, "lb"),
  28597. name: "Back",
  28598. image: {
  28599. source: "./media/characters/myra-rue-delore/back.svg",
  28600. extra: 1341 / 1310,
  28601. bottom: 40 / 1381
  28602. }
  28603. },
  28604. frontDressed: {
  28605. height: math.unit(6, "feet"),
  28606. weight: math.unit(150, "lb"),
  28607. name: "Front (Dressed)",
  28608. image: {
  28609. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28610. extra: 1340 / 1308,
  28611. bottom: 67 / 1407
  28612. }
  28613. },
  28614. },
  28615. [
  28616. {
  28617. name: "Macro",
  28618. height: math.unit(150, "feet"),
  28619. default: true
  28620. },
  28621. ]
  28622. ))
  28623. characterMakers.push(() => makeCharacter(
  28624. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28625. {
  28626. front: {
  28627. height: math.unit(10, "feet"),
  28628. weight: math.unit(15015, "lb"),
  28629. name: "Front",
  28630. image: {
  28631. source: "./media/characters/fem!plat/front.svg",
  28632. extra: 2799 / 2604,
  28633. bottom: 149 / 2948
  28634. }
  28635. },
  28636. },
  28637. [
  28638. {
  28639. name: "Normal",
  28640. height: math.unit(10, "feet"),
  28641. default: true
  28642. },
  28643. {
  28644. name: "Macro",
  28645. height: math.unit(100, "feet")
  28646. },
  28647. {
  28648. name: "Megamacro",
  28649. height: math.unit(1000, "feet")
  28650. },
  28651. ]
  28652. ))
  28653. characterMakers.push(() => makeCharacter(
  28654. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28655. {
  28656. front: {
  28657. height: math.unit(15 + 5 / 12, "feet"),
  28658. weight: math.unit(4600, "lb"),
  28659. name: "Front",
  28660. image: {
  28661. source: "./media/characters/neapolitan-ananassa/front.svg",
  28662. extra: 2903 / 2736,
  28663. bottom: 0 / 2903
  28664. }
  28665. },
  28666. side: {
  28667. height: math.unit(15 + 5 / 12, "feet"),
  28668. weight: math.unit(4600, "lb"),
  28669. name: "Side",
  28670. image: {
  28671. source: "./media/characters/neapolitan-ananassa/side.svg",
  28672. extra: 2925 / 2719,
  28673. bottom: 0 / 2925
  28674. }
  28675. },
  28676. back: {
  28677. height: math.unit(15 + 5 / 12, "feet"),
  28678. weight: math.unit(4600, "lb"),
  28679. name: "Back",
  28680. image: {
  28681. source: "./media/characters/neapolitan-ananassa/back.svg",
  28682. extra: 2903 / 2736,
  28683. bottom: 0 / 2903
  28684. }
  28685. },
  28686. },
  28687. [
  28688. {
  28689. name: "Normal",
  28690. height: math.unit(15 + 5 / 12, "feet"),
  28691. default: true
  28692. },
  28693. {
  28694. name: "Post-Millenium",
  28695. height: math.unit(35 + 5 / 12, "feet")
  28696. },
  28697. {
  28698. name: "Post-Era",
  28699. height: math.unit(450 + 5 / 12, "feet")
  28700. },
  28701. ]
  28702. ))
  28703. characterMakers.push(() => makeCharacter(
  28704. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28705. {
  28706. front: {
  28707. height: math.unit(300, "meters"),
  28708. weight: math.unit(125000, "tonnes"),
  28709. name: "Front",
  28710. image: {
  28711. source: "./media/characters/pazuzu/front.svg",
  28712. extra: 877 / 794,
  28713. bottom: 47 / 924
  28714. }
  28715. },
  28716. },
  28717. [
  28718. {
  28719. name: "Macro",
  28720. height: math.unit(300, "meters"),
  28721. default: true
  28722. },
  28723. ]
  28724. ))
  28725. characterMakers.push(() => makeCharacter(
  28726. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28727. {
  28728. side: {
  28729. height: math.unit(10 + 7 / 12, "feet"),
  28730. weight: math.unit(2.5, "tons"),
  28731. name: "Side",
  28732. image: {
  28733. source: "./media/characters/aasha/side.svg",
  28734. extra: 1345 / 1245,
  28735. bottom: 111 / 1456
  28736. }
  28737. },
  28738. back: {
  28739. height: math.unit(10 + 7 / 12, "feet"),
  28740. weight: math.unit(2.5, "tons"),
  28741. name: "Back",
  28742. image: {
  28743. source: "./media/characters/aasha/back.svg",
  28744. extra: 1133 / 1057,
  28745. bottom: 257 / 1390
  28746. }
  28747. },
  28748. },
  28749. [
  28750. {
  28751. name: "Normal",
  28752. height: math.unit(10 + 7 / 12, "feet"),
  28753. default: true
  28754. },
  28755. ]
  28756. ))
  28757. characterMakers.push(() => makeCharacter(
  28758. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28759. {
  28760. front: {
  28761. height: math.unit(6 + 3 / 12, "feet"),
  28762. name: "Front",
  28763. image: {
  28764. source: "./media/characters/nevan/front.svg",
  28765. extra: 704 / 704,
  28766. bottom: 28 / 732
  28767. }
  28768. },
  28769. back: {
  28770. height: math.unit(6 + 3 / 12, "feet"),
  28771. name: "Back",
  28772. image: {
  28773. source: "./media/characters/nevan/back.svg",
  28774. extra: 714 / 714,
  28775. bottom: 21 / 735
  28776. }
  28777. },
  28778. frontFlaccid: {
  28779. height: math.unit(6 + 3 / 12, "feet"),
  28780. name: "Front (Flaccid)",
  28781. image: {
  28782. source: "./media/characters/nevan/front-flaccid.svg",
  28783. extra: 704 / 704,
  28784. bottom: 28 / 732
  28785. }
  28786. },
  28787. frontErect: {
  28788. height: math.unit(6 + 3 / 12, "feet"),
  28789. name: "Front (Erect)",
  28790. image: {
  28791. source: "./media/characters/nevan/front-erect.svg",
  28792. extra: 704 / 704,
  28793. bottom: 28 / 732
  28794. }
  28795. },
  28796. backFlaccid: {
  28797. height: math.unit(6 + 3 / 12, "feet"),
  28798. name: "Back (Flaccid)",
  28799. image: {
  28800. source: "./media/characters/nevan/back-flaccid.svg",
  28801. extra: 714 / 714,
  28802. bottom: 21 / 735
  28803. }
  28804. },
  28805. },
  28806. [
  28807. {
  28808. name: "Normal",
  28809. height: math.unit(6 + 3 / 12, "feet"),
  28810. default: true
  28811. },
  28812. ]
  28813. ))
  28814. characterMakers.push(() => makeCharacter(
  28815. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  28816. {
  28817. front: {
  28818. height: math.unit(4, "feet"),
  28819. name: "Front",
  28820. image: {
  28821. source: "./media/characters/arhan/front.svg",
  28822. extra: 3368 / 3133,
  28823. bottom: 0 / 3368
  28824. }
  28825. },
  28826. side: {
  28827. height: math.unit(4, "feet"),
  28828. name: "Side",
  28829. image: {
  28830. source: "./media/characters/arhan/side.svg",
  28831. extra: 3347 / 3105,
  28832. bottom: 0 / 3347
  28833. }
  28834. },
  28835. tongue: {
  28836. height: math.unit(1.42, "feet"),
  28837. name: "Tongue",
  28838. image: {
  28839. source: "./media/characters/arhan/tongue.svg"
  28840. }
  28841. },
  28842. head: {
  28843. height: math.unit(0.85, "feet"),
  28844. name: "Head",
  28845. image: {
  28846. source: "./media/characters/arhan/head.svg"
  28847. }
  28848. },
  28849. },
  28850. [
  28851. {
  28852. name: "Normal",
  28853. height: math.unit(4, "feet"),
  28854. default: true
  28855. },
  28856. ]
  28857. ))
  28858. characterMakers.push(() => makeCharacter(
  28859. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  28860. {
  28861. front: {
  28862. height: math.unit(5 + 7.5 / 12, "feet"),
  28863. weight: math.unit(120, "lb"),
  28864. name: "Front",
  28865. image: {
  28866. source: "./media/characters/digi-duncan/front.svg",
  28867. extra: 330 / 326,
  28868. bottom: 16 / 346
  28869. }
  28870. },
  28871. side: {
  28872. height: math.unit(5 + 7.5 / 12, "feet"),
  28873. weight: math.unit(120, "lb"),
  28874. name: "Side",
  28875. image: {
  28876. source: "./media/characters/digi-duncan/side.svg",
  28877. extra: 341 / 337,
  28878. bottom: 1 / 342
  28879. }
  28880. },
  28881. back: {
  28882. height: math.unit(5 + 7.5 / 12, "feet"),
  28883. weight: math.unit(120, "lb"),
  28884. name: "Back",
  28885. image: {
  28886. source: "./media/characters/digi-duncan/back.svg",
  28887. extra: 330 / 326,
  28888. bottom: 12 / 342
  28889. }
  28890. },
  28891. },
  28892. [
  28893. {
  28894. name: "Speck",
  28895. height: math.unit(0.25, "mm")
  28896. },
  28897. {
  28898. name: "Micro",
  28899. height: math.unit(5, "mm")
  28900. },
  28901. {
  28902. name: "Tiny",
  28903. height: math.unit(0.5, "inches"),
  28904. default: true
  28905. },
  28906. {
  28907. name: "Human",
  28908. height: math.unit(5 + 7.5 / 12, "feet")
  28909. },
  28910. {
  28911. name: "Minigiant",
  28912. height: math.unit(8 + 5.25, "feet")
  28913. },
  28914. {
  28915. name: "Giant",
  28916. height: math.unit(2000, "feet")
  28917. },
  28918. {
  28919. name: "Mega",
  28920. height: math.unit(371.1, "miles")
  28921. },
  28922. ]
  28923. ))
  28924. characterMakers.push(() => makeCharacter(
  28925. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  28926. {
  28927. front: {
  28928. height: math.unit(2, "meters"),
  28929. weight: math.unit(350, "kg"),
  28930. name: "Front",
  28931. image: {
  28932. source: "./media/characters/jagaz-soulbreaker/front.svg",
  28933. extra: 898 / 838,
  28934. bottom: 9 / 907
  28935. }
  28936. },
  28937. },
  28938. [
  28939. {
  28940. name: "Micro",
  28941. height: math.unit(8, "meters")
  28942. },
  28943. {
  28944. name: "Normal",
  28945. height: math.unit(50, "meters"),
  28946. default: true
  28947. },
  28948. {
  28949. name: "Macro",
  28950. height: math.unit(500, "meters")
  28951. },
  28952. ]
  28953. ))
  28954. characterMakers.push(() => makeCharacter(
  28955. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  28956. {
  28957. front: {
  28958. height: math.unit(6 + 6 / 12, "feet"),
  28959. name: "Front",
  28960. image: {
  28961. source: "./media/characters/khardesh/front.svg",
  28962. extra: 888 / 797,
  28963. bottom: 25 / 913
  28964. }
  28965. },
  28966. },
  28967. [
  28968. {
  28969. name: "Normal",
  28970. height: math.unit(6 + 6 / 12, "feet"),
  28971. default: true
  28972. },
  28973. {
  28974. name: "Normal+",
  28975. height: math.unit(4, "meters")
  28976. },
  28977. {
  28978. name: "Macro",
  28979. height: math.unit(50, "meters")
  28980. },
  28981. {
  28982. name: "Macro+",
  28983. height: math.unit(100, "meters")
  28984. },
  28985. {
  28986. name: "Megamacro",
  28987. height: math.unit(20, "km")
  28988. },
  28989. ]
  28990. ))
  28991. characterMakers.push(() => makeCharacter(
  28992. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  28993. {
  28994. front: {
  28995. height: math.unit(6, "feet"),
  28996. weight: math.unit(150, "lb"),
  28997. name: "Front",
  28998. image: {
  28999. source: "./media/characters/kosho/front.svg",
  29000. extra: 1847 / 1847,
  29001. bottom: 86 / 1933
  29002. }
  29003. },
  29004. },
  29005. [
  29006. {
  29007. name: "Second-stage micro",
  29008. height: math.unit(0.5, "inches")
  29009. },
  29010. {
  29011. name: "First-stage micro",
  29012. height: math.unit(6, "inches")
  29013. },
  29014. {
  29015. name: "Normal",
  29016. height: math.unit(6, "feet"),
  29017. default: true
  29018. },
  29019. {
  29020. name: "First-stage macro",
  29021. height: math.unit(72, "feet")
  29022. },
  29023. {
  29024. name: "Second-stage macro",
  29025. height: math.unit(864, "feet")
  29026. },
  29027. ]
  29028. ))
  29029. characterMakers.push(() => makeCharacter(
  29030. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29031. {
  29032. normal: {
  29033. height: math.unit(4 + 6 / 12, "feet"),
  29034. name: "Normal",
  29035. image: {
  29036. source: "./media/characters/hydra/normal.svg",
  29037. extra: 2833 / 2634,
  29038. bottom: 68 / 2901
  29039. }
  29040. },
  29041. smol: {
  29042. height: math.unit(0.705, "inches"),
  29043. name: "Smol",
  29044. image: {
  29045. source: "./media/characters/hydra/smol.svg",
  29046. extra: 2715 / 2540,
  29047. bottom: 0 / 2715
  29048. }
  29049. },
  29050. },
  29051. [
  29052. {
  29053. name: "Normal",
  29054. height: math.unit(4 + 6 / 12, "feet"),
  29055. default: true
  29056. }
  29057. ]
  29058. ))
  29059. characterMakers.push(() => makeCharacter(
  29060. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29061. {
  29062. front: {
  29063. height: math.unit(0.6, "cm"),
  29064. name: "Front",
  29065. image: {
  29066. source: "./media/characters/daz/front.svg",
  29067. extra: 1682 / 1164,
  29068. bottom: 42 / 1724
  29069. }
  29070. },
  29071. },
  29072. [
  29073. {
  29074. name: "Normal",
  29075. height: math.unit(0.6, "cm"),
  29076. default: true
  29077. },
  29078. ]
  29079. ))
  29080. characterMakers.push(() => makeCharacter(
  29081. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29082. {
  29083. front: {
  29084. height: math.unit(6, "feet"),
  29085. weight: math.unit(235, "lb"),
  29086. name: "Front",
  29087. image: {
  29088. source: "./media/characters/theo-pangolin/front.svg",
  29089. extra: 1996 / 1969,
  29090. bottom: 115 / 2111
  29091. }
  29092. },
  29093. back: {
  29094. height: math.unit(6, "feet"),
  29095. weight: math.unit(235, "lb"),
  29096. name: "Back",
  29097. image: {
  29098. source: "./media/characters/theo-pangolin/back.svg",
  29099. extra: 1979 / 1979,
  29100. bottom: 40 / 2019
  29101. }
  29102. },
  29103. feral: {
  29104. height: math.unit(2, "feet"),
  29105. weight: math.unit(30, "lb"),
  29106. name: "Feral",
  29107. image: {
  29108. source: "./media/characters/theo-pangolin/feral.svg",
  29109. extra: 803 / 791,
  29110. bottom: 181 / 984
  29111. }
  29112. },
  29113. footFive: {
  29114. height: math.unit(1.43, "feet"),
  29115. name: "Foot (Five Toes)",
  29116. image: {
  29117. source: "./media/characters/theo-pangolin/foot-five.svg"
  29118. }
  29119. },
  29120. footFour: {
  29121. height: math.unit(1.43, "feet"),
  29122. name: "Foot (Four Toes)",
  29123. image: {
  29124. source: "./media/characters/theo-pangolin/foot-four.svg"
  29125. }
  29126. },
  29127. handFour: {
  29128. height: math.unit(0.81, "feet"),
  29129. name: "Hand (Four Fingers)",
  29130. image: {
  29131. source: "./media/characters/theo-pangolin/hand-four.svg"
  29132. }
  29133. },
  29134. handThree: {
  29135. height: math.unit(0.81, "feet"),
  29136. name: "Hand (Three Fingers)",
  29137. image: {
  29138. source: "./media/characters/theo-pangolin/hand-three.svg"
  29139. }
  29140. },
  29141. headFront: {
  29142. height: math.unit(1.37, "feet"),
  29143. name: "Head (Front)",
  29144. image: {
  29145. source: "./media/characters/theo-pangolin/head-front.svg"
  29146. }
  29147. },
  29148. headSide: {
  29149. height: math.unit(1.43, "feet"),
  29150. name: "Head (Side)",
  29151. image: {
  29152. source: "./media/characters/theo-pangolin/head-side.svg"
  29153. }
  29154. },
  29155. tongue: {
  29156. height: math.unit(2.29, "feet"),
  29157. name: "Tongue",
  29158. image: {
  29159. source: "./media/characters/theo-pangolin/tongue.svg"
  29160. }
  29161. },
  29162. },
  29163. [
  29164. {
  29165. name: "Normal",
  29166. height: math.unit(6, "feet")
  29167. },
  29168. {
  29169. name: "Macro",
  29170. height: math.unit(400, "feet"),
  29171. default: true
  29172. },
  29173. ]
  29174. ))
  29175. characterMakers.push(() => makeCharacter(
  29176. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29177. {
  29178. front: {
  29179. height: math.unit(6, "inches"),
  29180. weight: math.unit(0.036, "kg"),
  29181. name: "Front",
  29182. image: {
  29183. source: "./media/characters/renée/front.svg",
  29184. extra: 900 / 886,
  29185. bottom: 8 / 908
  29186. }
  29187. },
  29188. },
  29189. [
  29190. {
  29191. name: "Nano",
  29192. height: math.unit(1, "nm")
  29193. },
  29194. {
  29195. name: "Micro",
  29196. height: math.unit(1, "mm")
  29197. },
  29198. {
  29199. name: "Normal",
  29200. height: math.unit(6, "inches")
  29201. },
  29202. {
  29203. name: "Macro",
  29204. height: math.unit(2000, "feet"),
  29205. default: true
  29206. },
  29207. {
  29208. name: "Megamacro",
  29209. height: math.unit(2, "km")
  29210. },
  29211. {
  29212. name: "Gigamacro",
  29213. height: math.unit(2000, "km")
  29214. },
  29215. {
  29216. name: "Teramacro",
  29217. height: math.unit(250000, "km")
  29218. },
  29219. ]
  29220. ))
  29221. characterMakers.push(() => makeCharacter(
  29222. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29223. {
  29224. front: {
  29225. height: math.unit(4, "meters"),
  29226. weight: math.unit(150, "kg"),
  29227. name: "Front",
  29228. image: {
  29229. source: "./media/characters/caledvwlch/front.svg",
  29230. extra: 1760 / 1551,
  29231. bottom: 28 / 1788
  29232. }
  29233. },
  29234. side: {
  29235. height: math.unit(4, "meters"),
  29236. weight: math.unit(150, "kg"),
  29237. name: "Side",
  29238. image: {
  29239. source: "./media/characters/caledvwlch/side.svg",
  29240. extra: 1605 / 1536,
  29241. bottom: 31 / 1636
  29242. }
  29243. },
  29244. back: {
  29245. height: math.unit(4, "meters"),
  29246. weight: math.unit(150, "kg"),
  29247. name: "Back",
  29248. image: {
  29249. source: "./media/characters/caledvwlch/back.svg",
  29250. extra: 1635 / 1565,
  29251. bottom: 27 / 1662
  29252. }
  29253. },
  29254. },
  29255. [
  29256. {
  29257. name: "\"Incognito\"",
  29258. height: math.unit(4, "meters")
  29259. },
  29260. {
  29261. name: "Small rampage",
  29262. height: math.unit(600, "meters")
  29263. },
  29264. {
  29265. name: "Mega",
  29266. height: math.unit(30, "km")
  29267. },
  29268. {
  29269. name: "Home-size",
  29270. height: math.unit(50, "km"),
  29271. default: true
  29272. },
  29273. {
  29274. name: "Giga",
  29275. height: math.unit(300, "km")
  29276. },
  29277. {
  29278. name: "Lounging",
  29279. height: math.unit(11000, "km")
  29280. },
  29281. {
  29282. name: "Planet snacking",
  29283. height: math.unit(2000000, "km")
  29284. },
  29285. ]
  29286. ))
  29287. characterMakers.push(() => makeCharacter(
  29288. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29289. {
  29290. front: {
  29291. height: math.unit(6, "feet"),
  29292. weight: math.unit(215, "lb"),
  29293. name: "Front",
  29294. image: {
  29295. source: "./media/characters/sapphire-svell/front.svg",
  29296. extra: 495 / 455,
  29297. bottom: 20 / 515
  29298. }
  29299. },
  29300. back: {
  29301. height: math.unit(6, "feet"),
  29302. weight: math.unit(216, "lb"),
  29303. name: "Back",
  29304. image: {
  29305. source: "./media/characters/sapphire-svell/back.svg",
  29306. extra: 497 / 477,
  29307. bottom: 7 / 504
  29308. }
  29309. },
  29310. maw: {
  29311. height: math.unit(1.57, "feet"),
  29312. name: "Maw",
  29313. image: {
  29314. source: "./media/characters/sapphire-svell/maw.svg"
  29315. }
  29316. },
  29317. foot: {
  29318. height: math.unit(1.07, "feet"),
  29319. name: "Foot",
  29320. image: {
  29321. source: "./media/characters/sapphire-svell/foot.svg"
  29322. }
  29323. },
  29324. toering: {
  29325. height: math.unit(1.7, "inch"),
  29326. name: "Toering",
  29327. image: {
  29328. source: "./media/characters/sapphire-svell/toering.svg"
  29329. }
  29330. },
  29331. },
  29332. [
  29333. {
  29334. name: "Normal",
  29335. height: math.unit(300, "feet"),
  29336. default: true
  29337. },
  29338. {
  29339. name: "Augmented",
  29340. height: math.unit(1250, "feet")
  29341. },
  29342. {
  29343. name: "Unleashed",
  29344. height: math.unit(3000, "feet")
  29345. },
  29346. ]
  29347. ))
  29348. characterMakers.push(() => makeCharacter(
  29349. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29350. {
  29351. side: {
  29352. height: math.unit(2 + 3 / 12, "feet"),
  29353. weight: math.unit(110, "lb"),
  29354. name: "Side",
  29355. image: {
  29356. source: "./media/characters/glitch-flux/side.svg",
  29357. extra: 997 / 805,
  29358. bottom: 20 / 1017
  29359. }
  29360. },
  29361. },
  29362. [
  29363. {
  29364. name: "Normal",
  29365. height: math.unit(2 + 3 / 12, "feet"),
  29366. default: true
  29367. },
  29368. ]
  29369. ))
  29370. characterMakers.push(() => makeCharacter(
  29371. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29372. {
  29373. front: {
  29374. height: math.unit(4, "meters"),
  29375. name: "Front",
  29376. image: {
  29377. source: "./media/characters/mid/front.svg",
  29378. extra: 507 / 476,
  29379. bottom: 17 / 524
  29380. }
  29381. },
  29382. back: {
  29383. height: math.unit(4, "meters"),
  29384. name: "Back",
  29385. image: {
  29386. source: "./media/characters/mid/back.svg",
  29387. extra: 519 / 487,
  29388. bottom: 7 / 526
  29389. }
  29390. },
  29391. stuck: {
  29392. height: math.unit(2.2, "meters"),
  29393. name: "Stuck",
  29394. image: {
  29395. source: "./media/characters/mid/stuck.svg",
  29396. extra: 1951 / 1869,
  29397. bottom: 88 / 2039
  29398. }
  29399. }
  29400. },
  29401. [
  29402. {
  29403. name: "Normal",
  29404. height: math.unit(4, "meters"),
  29405. default: true
  29406. },
  29407. {
  29408. name: "Big",
  29409. height: math.unit(10, "meters")
  29410. },
  29411. {
  29412. name: "Macro",
  29413. height: math.unit(800, "meters")
  29414. },
  29415. {
  29416. name: "Megamacro",
  29417. height: math.unit(100, "km")
  29418. },
  29419. {
  29420. name: "Overgrown",
  29421. height: math.unit(1, "parsec")
  29422. },
  29423. ]
  29424. ))
  29425. characterMakers.push(() => makeCharacter(
  29426. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29427. {
  29428. front: {
  29429. height: math.unit(2.5, "meters"),
  29430. weight: math.unit(225, "kg"),
  29431. name: "Front",
  29432. image: {
  29433. source: "./media/characters/iris/front.svg",
  29434. extra: 3348 / 3251,
  29435. bottom: 205 / 3553
  29436. }
  29437. },
  29438. maw: {
  29439. height: math.unit(0.56, "meter"),
  29440. name: "Maw",
  29441. image: {
  29442. source: "./media/characters/iris/maw.svg"
  29443. }
  29444. },
  29445. },
  29446. [
  29447. {
  29448. name: "Mewter cat",
  29449. height: math.unit(1.2, "meters")
  29450. },
  29451. {
  29452. name: "Minimacro",
  29453. height: math.unit(2.5, "meters"),
  29454. default: true
  29455. },
  29456. {
  29457. name: "Macro",
  29458. height: math.unit(180, "meters")
  29459. },
  29460. {
  29461. name: "Megamacro",
  29462. height: math.unit(2746, "meters")
  29463. },
  29464. ]
  29465. ))
  29466. characterMakers.push(() => makeCharacter(
  29467. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29468. {
  29469. front: {
  29470. height: math.unit(6, "feet"),
  29471. weight: math.unit(135, "lb"),
  29472. name: "Front",
  29473. image: {
  29474. source: "./media/characters/axel/front.svg",
  29475. extra: 908 / 908,
  29476. bottom: 58 / 966
  29477. }
  29478. },
  29479. side: {
  29480. height: math.unit(6, "feet"),
  29481. weight: math.unit(135, "lb"),
  29482. name: "Side",
  29483. image: {
  29484. source: "./media/characters/axel/side.svg",
  29485. extra: 958 / 958,
  29486. bottom: 11 / 969
  29487. }
  29488. },
  29489. back: {
  29490. height: math.unit(6, "feet"),
  29491. weight: math.unit(135, "lb"),
  29492. name: "Back",
  29493. image: {
  29494. source: "./media/characters/axel/back.svg",
  29495. extra: 887 / 887,
  29496. bottom: 34 / 921
  29497. }
  29498. },
  29499. head: {
  29500. height: math.unit(1.07, "feet"),
  29501. name: "Head",
  29502. image: {
  29503. source: "./media/characters/axel/head.svg"
  29504. }
  29505. },
  29506. beak: {
  29507. height: math.unit(1.4, "feet"),
  29508. name: "Beak",
  29509. image: {
  29510. source: "./media/characters/axel/beak.svg"
  29511. }
  29512. },
  29513. beakSide: {
  29514. height: math.unit(1.4, "feet"),
  29515. name: "Beak Side",
  29516. image: {
  29517. source: "./media/characters/axel/beak-side.svg"
  29518. }
  29519. },
  29520. sheath: {
  29521. height: math.unit(0.5, "feet"),
  29522. name: "Sheath",
  29523. image: {
  29524. source: "./media/characters/axel/sheath.svg"
  29525. }
  29526. },
  29527. dick: {
  29528. height: math.unit(0.98, "feet"),
  29529. name: "Dick",
  29530. image: {
  29531. source: "./media/characters/axel/dick.svg"
  29532. }
  29533. },
  29534. },
  29535. [
  29536. {
  29537. name: "Macro",
  29538. height: math.unit(68, "meters"),
  29539. default: true
  29540. },
  29541. ]
  29542. ))
  29543. characterMakers.push(() => makeCharacter(
  29544. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29545. {
  29546. front: {
  29547. height: math.unit(3.5, "meters"),
  29548. weight: math.unit(1200, "kg"),
  29549. name: "Front",
  29550. image: {
  29551. source: "./media/characters/joanna/front.svg",
  29552. extra: 1596 / 1488,
  29553. bottom: 29 / 1625
  29554. }
  29555. },
  29556. back: {
  29557. height: math.unit(3.5, "meters"),
  29558. weight: math.unit(1200, "kg"),
  29559. name: "Back",
  29560. image: {
  29561. source: "./media/characters/joanna/back.svg",
  29562. extra: 1594 / 1495,
  29563. bottom: 26 / 1620
  29564. }
  29565. },
  29566. frontShorts: {
  29567. height: math.unit(3.5, "meters"),
  29568. weight: math.unit(1200, "kg"),
  29569. name: "Front (Shorts)",
  29570. image: {
  29571. source: "./media/characters/joanna/front-shorts.svg",
  29572. extra: 1596 / 1488,
  29573. bottom: 29 / 1625
  29574. }
  29575. },
  29576. frontBiker: {
  29577. height: math.unit(3.5, "meters"),
  29578. weight: math.unit(1200, "kg"),
  29579. name: "Front (Biker)",
  29580. image: {
  29581. source: "./media/characters/joanna/front-biker.svg",
  29582. extra: 1596 / 1488,
  29583. bottom: 29 / 1625
  29584. }
  29585. },
  29586. backBiker: {
  29587. height: math.unit(3.5, "meters"),
  29588. weight: math.unit(1200, "kg"),
  29589. name: "Back (Biker)",
  29590. image: {
  29591. source: "./media/characters/joanna/back-biker.svg",
  29592. extra: 1594 / 1495,
  29593. bottom: 88 / 1682
  29594. }
  29595. },
  29596. bikeLeft: {
  29597. height: math.unit(2.4, "meters"),
  29598. weight: math.unit(1600, "kg"),
  29599. name: "Bike (Left)",
  29600. image: {
  29601. source: "./media/characters/joanna/bike-left.svg",
  29602. extra: 720 / 720,
  29603. bottom: 8 / 728
  29604. }
  29605. },
  29606. bikeRight: {
  29607. height: math.unit(2.4, "meters"),
  29608. weight: math.unit(1600, "kg"),
  29609. name: "Bike (Right)",
  29610. image: {
  29611. source: "./media/characters/joanna/bike-right.svg",
  29612. extra: 720 / 720,
  29613. bottom: 8 / 728
  29614. }
  29615. },
  29616. },
  29617. [
  29618. {
  29619. name: "Incognito",
  29620. height: math.unit(3.5, "meters")
  29621. },
  29622. {
  29623. name: "Casual Big",
  29624. height: math.unit(200, "meters")
  29625. },
  29626. {
  29627. name: "Macro",
  29628. height: math.unit(600, "meters")
  29629. },
  29630. {
  29631. name: "Original",
  29632. height: math.unit(20, "km"),
  29633. default: true
  29634. },
  29635. {
  29636. name: "Giga",
  29637. height: math.unit(400, "km")
  29638. },
  29639. {
  29640. name: "Lounging",
  29641. height: math.unit(1500, "km")
  29642. },
  29643. {
  29644. name: "Planetary",
  29645. height: math.unit(200000, "km")
  29646. },
  29647. ]
  29648. ))
  29649. characterMakers.push(() => makeCharacter(
  29650. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29651. {
  29652. front: {
  29653. height: math.unit(6, "feet"),
  29654. weight: math.unit(150, "lb"),
  29655. name: "Front",
  29656. image: {
  29657. source: "./media/characters/hugo-sigil/front.svg",
  29658. extra: 522 / 500,
  29659. bottom: 2 / 524
  29660. }
  29661. },
  29662. back: {
  29663. height: math.unit(6, "feet"),
  29664. weight: math.unit(150, "lb"),
  29665. name: "Back",
  29666. image: {
  29667. source: "./media/characters/hugo-sigil/back.svg",
  29668. extra: 519 / 495,
  29669. bottom: 5 / 524
  29670. }
  29671. },
  29672. maw: {
  29673. height: math.unit(1.4, "feet"),
  29674. weight: math.unit(150, "lb"),
  29675. name: "Maw",
  29676. image: {
  29677. source: "./media/characters/hugo-sigil/maw.svg"
  29678. }
  29679. },
  29680. feet: {
  29681. height: math.unit(1.56, "feet"),
  29682. weight: math.unit(150, "lb"),
  29683. name: "Feet",
  29684. image: {
  29685. source: "./media/characters/hugo-sigil/feet.svg",
  29686. extra: 177 / 177,
  29687. bottom: 12 / 189
  29688. }
  29689. },
  29690. },
  29691. [
  29692. {
  29693. name: "Normal",
  29694. height: math.unit(6, "feet")
  29695. },
  29696. {
  29697. name: "Macro",
  29698. height: math.unit(200, "feet"),
  29699. default: true
  29700. },
  29701. ]
  29702. ))
  29703. characterMakers.push(() => makeCharacter(
  29704. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29705. {
  29706. front: {
  29707. height: math.unit(6, "feet"),
  29708. weight: math.unit(150, "lb"),
  29709. name: "Front",
  29710. image: {
  29711. source: "./media/characters/peri/front.svg",
  29712. extra: 2354 / 2233,
  29713. bottom: 49 / 2403
  29714. }
  29715. },
  29716. },
  29717. [
  29718. {
  29719. name: "Really Small",
  29720. height: math.unit(1, "nm")
  29721. },
  29722. {
  29723. name: "Micro",
  29724. height: math.unit(4, "inches")
  29725. },
  29726. {
  29727. name: "Normal",
  29728. height: math.unit(7, "inches"),
  29729. default: true
  29730. },
  29731. {
  29732. name: "Macro",
  29733. height: math.unit(400, "feet")
  29734. },
  29735. {
  29736. name: "Megamacro",
  29737. height: math.unit(100, "miles")
  29738. },
  29739. ]
  29740. ))
  29741. characterMakers.push(() => makeCharacter(
  29742. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29743. {
  29744. frontSlim: {
  29745. height: math.unit(7, "feet"),
  29746. name: "Front (Slim)",
  29747. image: {
  29748. source: "./media/characters/issilora/front-slim.svg",
  29749. extra: 529 / 449,
  29750. bottom: 53 / 582
  29751. }
  29752. },
  29753. sideSlim: {
  29754. height: math.unit(7, "feet"),
  29755. name: "Side (Slim)",
  29756. image: {
  29757. source: "./media/characters/issilora/side-slim.svg",
  29758. extra: 570 / 480,
  29759. bottom: 30 / 600
  29760. }
  29761. },
  29762. backSlim: {
  29763. height: math.unit(7, "feet"),
  29764. name: "Back (Slim)",
  29765. image: {
  29766. source: "./media/characters/issilora/back-slim.svg",
  29767. extra: 537 / 455,
  29768. bottom: 46 / 583
  29769. }
  29770. },
  29771. frontBuff: {
  29772. height: math.unit(7, "feet"),
  29773. name: "Front (Buff)",
  29774. image: {
  29775. source: "./media/characters/issilora/front-buff.svg",
  29776. extra: 2310 / 2035,
  29777. bottom: 335 / 2645
  29778. }
  29779. },
  29780. head: {
  29781. height: math.unit(1.94, "feet"),
  29782. name: "Head",
  29783. image: {
  29784. source: "./media/characters/issilora/head.svg"
  29785. }
  29786. },
  29787. },
  29788. [
  29789. {
  29790. name: "Minimum",
  29791. height: math.unit(7, "feet")
  29792. },
  29793. {
  29794. name: "Comfortable",
  29795. height: math.unit(17, "feet")
  29796. },
  29797. {
  29798. name: "Fun Size",
  29799. height: math.unit(47, "feet")
  29800. },
  29801. {
  29802. name: "Natural Macro",
  29803. height: math.unit(137, "feet"),
  29804. default: true
  29805. },
  29806. {
  29807. name: "Maximum Kaiju",
  29808. height: math.unit(397, "feet")
  29809. },
  29810. ]
  29811. ))
  29812. characterMakers.push(() => makeCharacter(
  29813. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  29814. {
  29815. front: {
  29816. height: math.unit(50 + 9/12, "feet"),
  29817. weight: math.unit(32.8, "tons"),
  29818. name: "Front",
  29819. image: {
  29820. source: "./media/characters/irb'iiritaahn/front.svg",
  29821. extra: 1878/1826,
  29822. bottom: 326/2204
  29823. }
  29824. },
  29825. back: {
  29826. height: math.unit(50 + 9/12, "feet"),
  29827. weight: math.unit(32.8, "tons"),
  29828. name: "Back",
  29829. image: {
  29830. source: "./media/characters/irb'iiritaahn/back.svg",
  29831. extra: 2052/2018,
  29832. bottom: 152/2204
  29833. }
  29834. },
  29835. head: {
  29836. height: math.unit(12.86, "feet"),
  29837. name: "Head",
  29838. image: {
  29839. source: "./media/characters/irb'iiritaahn/head.svg"
  29840. }
  29841. },
  29842. maw: {
  29843. height: math.unit(9.66, "feet"),
  29844. name: "Maw",
  29845. image: {
  29846. source: "./media/characters/irb'iiritaahn/maw.svg"
  29847. }
  29848. },
  29849. frontDick: {
  29850. height: math.unit(8.78461, "feet"),
  29851. name: "Front Dick",
  29852. image: {
  29853. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  29854. }
  29855. },
  29856. rearDick: {
  29857. height: math.unit(8.78461, "feet"),
  29858. name: "Rear Dick",
  29859. image: {
  29860. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  29861. }
  29862. },
  29863. rearDickUnfolded: {
  29864. height: math.unit(8.78, "feet"),
  29865. name: "Rear Dick (Unfolded)",
  29866. image: {
  29867. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  29868. }
  29869. },
  29870. wings: {
  29871. height: math.unit(43, "feet"),
  29872. name: "Wings",
  29873. image: {
  29874. source: "./media/characters/irb'iiritaahn/wings.svg"
  29875. }
  29876. },
  29877. },
  29878. [
  29879. {
  29880. name: "Macro",
  29881. height: math.unit(50 + 9/12, "feet"),
  29882. default: true
  29883. },
  29884. ]
  29885. ))
  29886. characterMakers.push(() => makeCharacter(
  29887. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  29888. {
  29889. front: {
  29890. height: math.unit(205, "cm"),
  29891. weight: math.unit(102, "kg"),
  29892. name: "Front",
  29893. image: {
  29894. source: "./media/characters/irbisgreif/front.svg",
  29895. extra: 785/706,
  29896. bottom: 13/798
  29897. }
  29898. },
  29899. back: {
  29900. height: math.unit(205, "cm"),
  29901. weight: math.unit(102, "kg"),
  29902. name: "Back",
  29903. image: {
  29904. source: "./media/characters/irbisgreif/back.svg",
  29905. extra: 713/701,
  29906. bottom: 26/739
  29907. }
  29908. },
  29909. frontDressed: {
  29910. height: math.unit(216, "cm"),
  29911. weight: math.unit(102, "kg"),
  29912. name: "Front-dressed",
  29913. image: {
  29914. source: "./media/characters/irbisgreif/front-dressed.svg",
  29915. extra: 902/776,
  29916. bottom: 14/916
  29917. }
  29918. },
  29919. sideDressed: {
  29920. height: math.unit(195, "cm"),
  29921. weight: math.unit(102, "kg"),
  29922. name: "Side-dressed",
  29923. image: {
  29924. source: "./media/characters/irbisgreif/side-dressed.svg",
  29925. extra: 788/688,
  29926. bottom: 21/809
  29927. }
  29928. },
  29929. backDressed: {
  29930. height: math.unit(216, "cm"),
  29931. weight: math.unit(102, "kg"),
  29932. name: "Back-dressed",
  29933. image: {
  29934. source: "./media/characters/irbisgreif/back-dressed.svg",
  29935. extra: 901/783,
  29936. bottom: 10/911
  29937. }
  29938. },
  29939. dick: {
  29940. height: math.unit(0.49, "feet"),
  29941. name: "Dick",
  29942. image: {
  29943. source: "./media/characters/irbisgreif/dick.svg"
  29944. }
  29945. },
  29946. wingTop: {
  29947. height: math.unit(1.93 , "feet"),
  29948. name: "Wing-top",
  29949. image: {
  29950. source: "./media/characters/irbisgreif/wing-top.svg"
  29951. }
  29952. },
  29953. wingBottom: {
  29954. height: math.unit(1.93 , "feet"),
  29955. name: "Wing-bottom",
  29956. image: {
  29957. source: "./media/characters/irbisgreif/wing-bottom.svg"
  29958. }
  29959. },
  29960. },
  29961. [
  29962. {
  29963. name: "Normal",
  29964. height: math.unit(216, "cm"),
  29965. default: true
  29966. },
  29967. ]
  29968. ))
  29969. characterMakers.push(() => makeCharacter(
  29970. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  29971. {
  29972. front: {
  29973. height: math.unit(6, "feet"),
  29974. weight: math.unit(150, "lb"),
  29975. name: "Front",
  29976. image: {
  29977. source: "./media/characters/pride/front.svg",
  29978. extra: 1299/1230,
  29979. bottom: 18/1317
  29980. }
  29981. },
  29982. },
  29983. [
  29984. {
  29985. name: "Normal",
  29986. height: math.unit(7, "feet")
  29987. },
  29988. {
  29989. name: "Mini-macro",
  29990. height: math.unit(11, "feet")
  29991. },
  29992. {
  29993. name: "Macro",
  29994. height: math.unit(15, "meters"),
  29995. default: true
  29996. },
  29997. {
  29998. name: "Macro+",
  29999. height: math.unit(40, "meters")
  30000. },
  30001. ]
  30002. ))
  30003. characterMakers.push(() => makeCharacter(
  30004. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30005. {
  30006. front: {
  30007. height: math.unit(4 + 2 / 12, "feet"),
  30008. weight: math.unit(95, "lb"),
  30009. name: "Front",
  30010. image: {
  30011. source: "./media/characters/vaelophis-nyx/front.svg",
  30012. extra: 2532/2330,
  30013. bottom: 0/2532
  30014. }
  30015. },
  30016. back: {
  30017. height: math.unit(4 + 2 / 12, "feet"),
  30018. weight: math.unit(95, "lb"),
  30019. name: "Back",
  30020. image: {
  30021. source: "./media/characters/vaelophis-nyx/back.svg",
  30022. extra: 2484/2361,
  30023. bottom: 0/2484
  30024. }
  30025. },
  30026. feralSide: {
  30027. height: math.unit(2 + 1/12, "feet"),
  30028. weight: math.unit(20, "lb"),
  30029. name: "Feral (Side)",
  30030. image: {
  30031. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30032. extra: 1721/1581,
  30033. bottom: 70/1791
  30034. }
  30035. },
  30036. feralLazing: {
  30037. height: math.unit(1.08, "feet"),
  30038. weight: math.unit(20, "lb"),
  30039. name: "Feral (Lazing)",
  30040. image: {
  30041. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30042. extra: 822/822,
  30043. bottom: 248/1070
  30044. }
  30045. },
  30046. ear: {
  30047. height: math.unit(0.416, "feet"),
  30048. name: "Ear",
  30049. image: {
  30050. source: "./media/characters/vaelophis-nyx/ear.svg"
  30051. }
  30052. },
  30053. eye: {
  30054. height: math.unit(0.0748, "feet"),
  30055. name: "Eye",
  30056. image: {
  30057. source: "./media/characters/vaelophis-nyx/eye.svg"
  30058. }
  30059. },
  30060. mouth: {
  30061. height: math.unit(0.378, "feet"),
  30062. name: "Mouth",
  30063. image: {
  30064. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30065. }
  30066. },
  30067. spade: {
  30068. height: math.unit(0.55, "feet"),
  30069. name: "Spade",
  30070. image: {
  30071. source: "./media/characters/vaelophis-nyx/spade.svg"
  30072. }
  30073. },
  30074. },
  30075. [
  30076. {
  30077. name: "Normal",
  30078. height: math.unit(4 + 2/12, "feet"),
  30079. default: true
  30080. },
  30081. ]
  30082. ))
  30083. characterMakers.push(() => makeCharacter(
  30084. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30085. {
  30086. front: {
  30087. height: math.unit(7, "feet"),
  30088. weight: math.unit(231, "lb"),
  30089. name: "Front",
  30090. image: {
  30091. source: "./media/characters/flux/front.svg",
  30092. extra: 919/871,
  30093. bottom: 0/919
  30094. }
  30095. },
  30096. back: {
  30097. height: math.unit(7, "feet"),
  30098. weight: math.unit(231, "lb"),
  30099. name: "Back",
  30100. image: {
  30101. source: "./media/characters/flux/back.svg",
  30102. extra: 1040/992,
  30103. bottom: 0/1040
  30104. }
  30105. },
  30106. frontDressed: {
  30107. height: math.unit(7, "feet"),
  30108. weight: math.unit(231, "lb"),
  30109. name: "Front (Dressed)",
  30110. image: {
  30111. source: "./media/characters/flux/front-dressed.svg",
  30112. extra: 919/871,
  30113. bottom: 0/919
  30114. }
  30115. },
  30116. feralSide: {
  30117. height: math.unit(5, "feet"),
  30118. weight: math.unit(150, "lb"),
  30119. name: "Feral (Side)",
  30120. image: {
  30121. source: "./media/characters/flux/feral-side.svg",
  30122. extra: 598/528,
  30123. bottom: 28/626
  30124. }
  30125. },
  30126. head: {
  30127. height: math.unit(1.585, "feet"),
  30128. name: "Head",
  30129. image: {
  30130. source: "./media/characters/flux/head.svg"
  30131. }
  30132. },
  30133. headSide: {
  30134. height: math.unit(1.74, "feet"),
  30135. name: "Head (Side)",
  30136. image: {
  30137. source: "./media/characters/flux/head-side.svg"
  30138. }
  30139. },
  30140. headSideFire: {
  30141. height: math.unit(1.76, "feet"),
  30142. name: "Head (Side, Fire)",
  30143. image: {
  30144. source: "./media/characters/flux/head-side-fire.svg"
  30145. }
  30146. },
  30147. },
  30148. [
  30149. {
  30150. name: "Normal",
  30151. height: math.unit(7, "feet"),
  30152. default: true
  30153. },
  30154. ]
  30155. ))
  30156. characterMakers.push(() => makeCharacter(
  30157. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30158. {
  30159. front: {
  30160. height: math.unit(9, "feet"),
  30161. weight: math.unit(1012, "lb"),
  30162. name: "Front",
  30163. image: {
  30164. source: "./media/characters/ulfra-lupae/front.svg",
  30165. extra: 1083/1011,
  30166. bottom: 67/1150
  30167. }
  30168. },
  30169. },
  30170. [
  30171. {
  30172. name: "Micro",
  30173. height: math.unit(6, "inches")
  30174. },
  30175. {
  30176. name: "Socializing",
  30177. height: math.unit(6 + 5/12, "feet")
  30178. },
  30179. {
  30180. name: "Normal",
  30181. height: math.unit(9, "feet"),
  30182. default: true
  30183. },
  30184. {
  30185. name: "Macro",
  30186. height: math.unit(150, "feet")
  30187. },
  30188. ]
  30189. ))
  30190. characterMakers.push(() => makeCharacter(
  30191. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30192. {
  30193. front: {
  30194. height: math.unit(5 + 2/12, "feet"),
  30195. weight: math.unit(120, "lb"),
  30196. name: "Front",
  30197. image: {
  30198. source: "./media/characters/timber/front.svg",
  30199. extra: 2814/2705,
  30200. bottom: 181/2995
  30201. }
  30202. },
  30203. },
  30204. [
  30205. {
  30206. name: "Normal",
  30207. height: math.unit(5 + 2/12, "feet"),
  30208. default: true
  30209. },
  30210. ]
  30211. ))
  30212. characterMakers.push(() => makeCharacter(
  30213. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30214. {
  30215. front: {
  30216. height: math.unit(5 + 7/12, "feet"),
  30217. weight: math.unit(220, "lb"),
  30218. name: "Front",
  30219. image: {
  30220. source: "./media/characters/nicki/front.svg",
  30221. extra: 453/419,
  30222. bottom: 7/460
  30223. }
  30224. },
  30225. frontAlt: {
  30226. height: math.unit(5 + 7/12, "feet"),
  30227. weight: math.unit(220, "lb"),
  30228. name: "Front-alt",
  30229. image: {
  30230. source: "./media/characters/nicki/front-alt.svg",
  30231. extra: 435/411,
  30232. bottom: 12/447
  30233. }
  30234. },
  30235. back: {
  30236. height: math.unit(5 + 7/12, "feet"),
  30237. weight: math.unit(220, "lb"),
  30238. name: "Back",
  30239. image: {
  30240. source: "./media/characters/nicki/back.svg",
  30241. extra: 440/413,
  30242. bottom: 19/459
  30243. }
  30244. },
  30245. taur: {
  30246. height: math.unit(7 + 6/12, "feet"),
  30247. weight: math.unit(700, "lb"),
  30248. name: "Taur",
  30249. image: {
  30250. source: "./media/characters/nicki/taur.svg",
  30251. extra: 975/773,
  30252. bottom: 0/975
  30253. }
  30254. },
  30255. frontNsfw: {
  30256. height: math.unit(5 + 7/12, "feet"),
  30257. weight: math.unit(220, "lb"),
  30258. name: "Front (NSFW)",
  30259. image: {
  30260. source: "./media/characters/nicki/front-nsfw.svg",
  30261. extra: 453/419,
  30262. bottom: 7/460
  30263. }
  30264. },
  30265. frontNsfwAlt: {
  30266. height: math.unit(5 + 7/12, "feet"),
  30267. weight: math.unit(220, "lb"),
  30268. name: "Front (Alt, NSFW)",
  30269. image: {
  30270. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30271. extra: 435/411,
  30272. bottom: 12/447
  30273. }
  30274. },
  30275. backNsfw: {
  30276. height: math.unit(5 + 7/12, "feet"),
  30277. weight: math.unit(220, "lb"),
  30278. name: "Back (NSFW)",
  30279. image: {
  30280. source: "./media/characters/nicki/back-nsfw.svg",
  30281. extra: 440/413,
  30282. bottom: 19/459
  30283. }
  30284. },
  30285. head: {
  30286. height: math.unit(2.1, "feet"),
  30287. name: "Head",
  30288. image: {
  30289. source: "./media/characters/nicki/head.svg"
  30290. }
  30291. },
  30292. paw: {
  30293. height: math.unit(1.88, "feet"),
  30294. name: "Paw",
  30295. image: {
  30296. source: "./media/characters/nicki/paw.svg"
  30297. }
  30298. },
  30299. },
  30300. [
  30301. {
  30302. name: "Normal",
  30303. height: math.unit(5 + 7/12, "feet"),
  30304. default: true
  30305. },
  30306. ]
  30307. ))
  30308. characterMakers.push(() => makeCharacter(
  30309. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30310. {
  30311. front: {
  30312. height: math.unit(7 + 10/12, "feet"),
  30313. weight: math.unit(3.5, "tons"),
  30314. name: "Front",
  30315. image: {
  30316. source: "./media/characters/lee/front.svg",
  30317. extra: 1773/1615,
  30318. bottom: 86/1859
  30319. }
  30320. },
  30321. hand: {
  30322. height: math.unit(1.78, "feet"),
  30323. name: "Hand",
  30324. image: {
  30325. source: "./media/characters/lee/hand.svg"
  30326. }
  30327. },
  30328. maw: {
  30329. height: math.unit(1.18, "feet"),
  30330. name: "Maw",
  30331. image: {
  30332. source: "./media/characters/lee/maw.svg"
  30333. }
  30334. },
  30335. },
  30336. [
  30337. {
  30338. name: "Normal",
  30339. height: math.unit(7 + 10/12, "feet"),
  30340. default: true
  30341. },
  30342. ]
  30343. ))
  30344. characterMakers.push(() => makeCharacter(
  30345. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30346. {
  30347. front: {
  30348. height: math.unit(9, "feet"),
  30349. name: "Front",
  30350. image: {
  30351. source: "./media/characters/guti/front.svg",
  30352. extra: 4551/4355,
  30353. bottom: 123/4674
  30354. }
  30355. },
  30356. tongue: {
  30357. height: math.unit(1, "feet"),
  30358. name: "Tongue",
  30359. image: {
  30360. source: "./media/characters/guti/tongue.svg"
  30361. }
  30362. },
  30363. paw: {
  30364. height: math.unit(1.18, "feet"),
  30365. name: "Paw",
  30366. image: {
  30367. source: "./media/characters/guti/paw.svg"
  30368. }
  30369. },
  30370. },
  30371. [
  30372. {
  30373. name: "Normal",
  30374. height: math.unit(9, "feet"),
  30375. default: true
  30376. },
  30377. ]
  30378. ))
  30379. characterMakers.push(() => makeCharacter(
  30380. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30381. {
  30382. side: {
  30383. height: math.unit(5, "meters"),
  30384. name: "Side",
  30385. image: {
  30386. source: "./media/characters/vesper/side.svg",
  30387. extra: 1605/1518,
  30388. bottom: 0/1605
  30389. }
  30390. },
  30391. },
  30392. [
  30393. {
  30394. name: "Small",
  30395. height: math.unit(5, "meters")
  30396. },
  30397. {
  30398. name: "Sage",
  30399. height: math.unit(100, "meters"),
  30400. default: true
  30401. },
  30402. {
  30403. name: "Fun Size",
  30404. height: math.unit(600, "meters")
  30405. },
  30406. {
  30407. name: "Goddess",
  30408. height: math.unit(20000, "km")
  30409. },
  30410. {
  30411. name: "Maximum",
  30412. height: math.unit(5, "galaxies")
  30413. },
  30414. ]
  30415. ))
  30416. characterMakers.push(() => makeCharacter(
  30417. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30418. {
  30419. front: {
  30420. height: math.unit(6 + 3/12, "feet"),
  30421. weight: math.unit(190, "lb"),
  30422. name: "Front",
  30423. image: {
  30424. source: "./media/characters/gawain/front.svg",
  30425. extra: 2222/2139,
  30426. bottom: 90/2312
  30427. }
  30428. },
  30429. back: {
  30430. height: math.unit(6 + 3/12, "feet"),
  30431. weight: math.unit(190, "lb"),
  30432. name: "Back",
  30433. image: {
  30434. source: "./media/characters/gawain/back.svg",
  30435. extra: 2199/2111,
  30436. bottom: 73/2272
  30437. }
  30438. },
  30439. },
  30440. [
  30441. {
  30442. name: "Normal",
  30443. height: math.unit(6 + 3/12, "feet"),
  30444. default: true
  30445. },
  30446. ]
  30447. ))
  30448. characterMakers.push(() => makeCharacter(
  30449. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30450. {
  30451. side: {
  30452. height: math.unit(3.5, "meters"),
  30453. weight: math.unit(16000, "lb"),
  30454. name: "Side",
  30455. image: {
  30456. source: "./media/characters/dascalti/side.svg",
  30457. extra: 392/273,
  30458. bottom: 47/439
  30459. }
  30460. },
  30461. breath: {
  30462. height: math.unit(7.4, "feet"),
  30463. name: "Breath",
  30464. image: {
  30465. source: "./media/characters/dascalti/breath.svg"
  30466. }
  30467. },
  30468. fed: {
  30469. height: math.unit(3.6, "meters"),
  30470. weight: math.unit(16000, "lb"),
  30471. name: "Fed",
  30472. image: {
  30473. source: "./media/characters/dascalti/fed.svg",
  30474. extra: 1419/820,
  30475. bottom: 95/1514
  30476. }
  30477. },
  30478. },
  30479. [
  30480. {
  30481. name: "Normal",
  30482. height: math.unit(3.5, "meters"),
  30483. default: true
  30484. },
  30485. ]
  30486. ))
  30487. characterMakers.push(() => makeCharacter(
  30488. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30489. {
  30490. front: {
  30491. height: math.unit(3 + 5/12, "feet"),
  30492. name: "Front",
  30493. image: {
  30494. source: "./media/characters/mauve/front.svg",
  30495. extra: 1126/1033,
  30496. bottom: 65/1191
  30497. }
  30498. },
  30499. side: {
  30500. height: math.unit(3 + 5/12, "feet"),
  30501. name: "Side",
  30502. image: {
  30503. source: "./media/characters/mauve/side.svg",
  30504. extra: 1089/1001,
  30505. bottom: 29/1118
  30506. }
  30507. },
  30508. back: {
  30509. height: math.unit(3 + 5/12, "feet"),
  30510. name: "Back",
  30511. image: {
  30512. source: "./media/characters/mauve/back.svg",
  30513. extra: 1173/1053,
  30514. bottom: 109/1282
  30515. }
  30516. },
  30517. },
  30518. [
  30519. {
  30520. name: "Normal",
  30521. height: math.unit(3 + 5/12, "feet"),
  30522. default: true
  30523. },
  30524. ]
  30525. ))
  30526. characterMakers.push(() => makeCharacter(
  30527. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30528. {
  30529. front: {
  30530. height: math.unit(6 + 3/12, "feet"),
  30531. weight: math.unit(430, "lb"),
  30532. name: "Front",
  30533. image: {
  30534. source: "./media/characters/carlos/front.svg",
  30535. extra: 1964/1913,
  30536. bottom: 70/2034
  30537. }
  30538. },
  30539. },
  30540. [
  30541. {
  30542. name: "Normal",
  30543. height: math.unit(6 + 3/12, "feet"),
  30544. default: true
  30545. },
  30546. ]
  30547. ))
  30548. characterMakers.push(() => makeCharacter(
  30549. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30550. {
  30551. back: {
  30552. height: math.unit(5 + 10/12, "feet"),
  30553. weight: math.unit(200, "lb"),
  30554. name: "Back",
  30555. image: {
  30556. source: "./media/characters/jax/back.svg",
  30557. extra: 764/739,
  30558. bottom: 25/789
  30559. }
  30560. },
  30561. },
  30562. [
  30563. {
  30564. name: "Normal",
  30565. height: math.unit(5 + 10/12, "feet"),
  30566. default: true
  30567. },
  30568. ]
  30569. ))
  30570. characterMakers.push(() => makeCharacter(
  30571. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30572. {
  30573. front: {
  30574. height: math.unit(8, "feet"),
  30575. weight: math.unit(250, "lb"),
  30576. name: "Front",
  30577. image: {
  30578. source: "./media/characters/eikthynir/front.svg",
  30579. extra: 1332/1166,
  30580. bottom: 82/1414
  30581. }
  30582. },
  30583. back: {
  30584. height: math.unit(8, "feet"),
  30585. weight: math.unit(250, "lb"),
  30586. name: "Back",
  30587. image: {
  30588. source: "./media/characters/eikthynir/back.svg",
  30589. extra: 1342/1190,
  30590. bottom: 19/1361
  30591. }
  30592. },
  30593. dick: {
  30594. height: math.unit(2.35, "feet"),
  30595. name: "Dick",
  30596. image: {
  30597. source: "./media/characters/eikthynir/dick.svg"
  30598. }
  30599. },
  30600. },
  30601. [
  30602. {
  30603. name: "Normal",
  30604. height: math.unit(8, "feet"),
  30605. default: true
  30606. },
  30607. ]
  30608. ))
  30609. characterMakers.push(() => makeCharacter(
  30610. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30611. {
  30612. front: {
  30613. height: math.unit(99, "meters"),
  30614. weight: math.unit(13000, "tons"),
  30615. name: "Front",
  30616. image: {
  30617. source: "./media/characters/zlmos/front.svg",
  30618. extra: 2202/1992,
  30619. bottom: 315/2517
  30620. }
  30621. },
  30622. },
  30623. [
  30624. {
  30625. name: "Macro",
  30626. height: math.unit(99, "meters"),
  30627. default: true
  30628. },
  30629. ]
  30630. ))
  30631. characterMakers.push(() => makeCharacter(
  30632. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30633. {
  30634. front: {
  30635. height: math.unit(6 + 5/12, "feet"),
  30636. name: "Front",
  30637. image: {
  30638. source: "./media/characters/purri/front.svg",
  30639. extra: 1698/1610,
  30640. bottom: 32/1730
  30641. }
  30642. },
  30643. frontAlt: {
  30644. height: math.unit(6 + 5/12, "feet"),
  30645. name: "Front (Alt)",
  30646. image: {
  30647. source: "./media/characters/purri/front-alt.svg",
  30648. extra: 450/420,
  30649. bottom: 26/476
  30650. }
  30651. },
  30652. boots: {
  30653. height: math.unit(5.5, "feet"),
  30654. name: "Boots",
  30655. image: {
  30656. source: "./media/characters/purri/boots.svg",
  30657. extra: 905/853,
  30658. bottom: 18/923
  30659. }
  30660. },
  30661. lying: {
  30662. height: math.unit(2, "feet"),
  30663. name: "Lying",
  30664. image: {
  30665. source: "./media/characters/purri/lying.svg",
  30666. extra: 940/843,
  30667. bottom: 146/1086
  30668. }
  30669. },
  30670. devious: {
  30671. height: math.unit(1.77, "feet"),
  30672. name: "Devious",
  30673. image: {
  30674. source: "./media/characters/purri/devious.svg",
  30675. extra: 1440/1155,
  30676. bottom: 147/1587
  30677. }
  30678. },
  30679. bean: {
  30680. height: math.unit(1.94, "feet"),
  30681. name: "Bean",
  30682. image: {
  30683. source: "./media/characters/purri/bean.svg"
  30684. }
  30685. },
  30686. },
  30687. [
  30688. {
  30689. name: "Micro",
  30690. height: math.unit(1, "mm")
  30691. },
  30692. {
  30693. name: "Normal",
  30694. height: math.unit(6 + 5/12, "feet"),
  30695. default: true
  30696. },
  30697. {
  30698. name: "Macro :3c",
  30699. height: math.unit(2, "miles")
  30700. },
  30701. ]
  30702. ))
  30703. characterMakers.push(() => makeCharacter(
  30704. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30705. {
  30706. front: {
  30707. height: math.unit(6 + 2/12, "feet"),
  30708. weight: math.unit(250, "lb"),
  30709. name: "Front",
  30710. image: {
  30711. source: "./media/characters/moonlight/front.svg",
  30712. extra: 1044/908,
  30713. bottom: 56/1100
  30714. }
  30715. },
  30716. paw: {
  30717. height: math.unit(1, "feet"),
  30718. name: "Paw",
  30719. image: {
  30720. source: "./media/characters/moonlight/paw.svg"
  30721. }
  30722. },
  30723. paws: {
  30724. height: math.unit(0.98, "feet"),
  30725. name: "Paws",
  30726. image: {
  30727. source: "./media/characters/moonlight/paws.svg",
  30728. extra: 939/939,
  30729. bottom: 50/989
  30730. }
  30731. },
  30732. mouth: {
  30733. height: math.unit(0.48, "feet"),
  30734. name: "Mouth",
  30735. image: {
  30736. source: "./media/characters/moonlight/mouth.svg"
  30737. }
  30738. },
  30739. },
  30740. [
  30741. {
  30742. name: "Normal",
  30743. height: math.unit(6 + 2/12, "feet"),
  30744. default: true
  30745. },
  30746. {
  30747. name: "Macro",
  30748. height: math.unit(300, "feet")
  30749. },
  30750. {
  30751. name: "Macro+",
  30752. height: math.unit(1, "mile")
  30753. },
  30754. {
  30755. name: "Mt. Moon",
  30756. height: math.unit(5, "miles")
  30757. },
  30758. {
  30759. name: "Megamacro",
  30760. height: math.unit(15, "miles")
  30761. },
  30762. ]
  30763. ))
  30764. characterMakers.push(() => makeCharacter(
  30765. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  30766. {
  30767. back: {
  30768. height: math.unit(6, "feet"),
  30769. weight: math.unit(150, "lb"),
  30770. name: "Back",
  30771. image: {
  30772. source: "./media/characters/sylen/back.svg",
  30773. extra: 1335/1273,
  30774. bottom: 107/1442
  30775. }
  30776. },
  30777. },
  30778. [
  30779. {
  30780. name: "Normal",
  30781. height: math.unit(5 + 5/12, "feet")
  30782. },
  30783. {
  30784. name: "Megamacro",
  30785. height: math.unit(3, "miles"),
  30786. default: true
  30787. },
  30788. ]
  30789. ))
  30790. characterMakers.push(() => makeCharacter(
  30791. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  30792. {
  30793. front: {
  30794. height: math.unit(6, "feet"),
  30795. weight: math.unit(190, "lb"),
  30796. name: "Front",
  30797. image: {
  30798. source: "./media/characters/huttser/front.svg",
  30799. extra: 1152/1058,
  30800. bottom: 23/1175
  30801. }
  30802. },
  30803. side: {
  30804. height: math.unit(6, "feet"),
  30805. weight: math.unit(190, "lb"),
  30806. name: "Side",
  30807. image: {
  30808. source: "./media/characters/huttser/side.svg",
  30809. extra: 1174/1065,
  30810. bottom: 18/1192
  30811. }
  30812. },
  30813. back: {
  30814. height: math.unit(6, "feet"),
  30815. weight: math.unit(190, "lb"),
  30816. name: "Back",
  30817. image: {
  30818. source: "./media/characters/huttser/back.svg",
  30819. extra: 1158/1056,
  30820. bottom: 12/1170
  30821. }
  30822. },
  30823. },
  30824. [
  30825. ]
  30826. ))
  30827. characterMakers.push(() => makeCharacter(
  30828. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  30829. {
  30830. side: {
  30831. height: math.unit(12 + 9/12, "feet"),
  30832. weight: math.unit(15000, "lb"),
  30833. name: "Side",
  30834. image: {
  30835. source: "./media/characters/faan/side.svg",
  30836. extra: 2747/2697,
  30837. bottom: 0/2747
  30838. }
  30839. },
  30840. front: {
  30841. height: math.unit(12 + 9/12, "feet"),
  30842. weight: math.unit(15000, "lb"),
  30843. name: "Front",
  30844. image: {
  30845. source: "./media/characters/faan/front.svg",
  30846. extra: 607/571,
  30847. bottom: 24/631
  30848. }
  30849. },
  30850. head: {
  30851. height: math.unit(2.85, "feet"),
  30852. name: "Head",
  30853. image: {
  30854. source: "./media/characters/faan/head.svg"
  30855. }
  30856. },
  30857. headAlt: {
  30858. height: math.unit(3.13, "feet"),
  30859. name: "Head-alt",
  30860. image: {
  30861. source: "./media/characters/faan/head-alt.svg"
  30862. }
  30863. },
  30864. },
  30865. [
  30866. {
  30867. name: "Normal",
  30868. height: math.unit(12 + 9/12, "feet"),
  30869. default: true
  30870. },
  30871. ]
  30872. ))
  30873. characterMakers.push(() => makeCharacter(
  30874. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  30875. {
  30876. front: {
  30877. height: math.unit(6, "feet"),
  30878. weight: math.unit(300, "lb"),
  30879. name: "Front",
  30880. image: {
  30881. source: "./media/characters/tanio/front.svg",
  30882. extra: 711/673,
  30883. bottom: 25/736
  30884. }
  30885. },
  30886. },
  30887. [
  30888. {
  30889. name: "Normal",
  30890. height: math.unit(6, "feet"),
  30891. default: true
  30892. },
  30893. ]
  30894. ))
  30895. characterMakers.push(() => makeCharacter(
  30896. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  30897. {
  30898. front: {
  30899. height: math.unit(3, "inches"),
  30900. name: "Front",
  30901. image: {
  30902. source: "./media/characters/noboru/front.svg",
  30903. extra: 1039/932,
  30904. bottom: 18/1057
  30905. }
  30906. },
  30907. },
  30908. [
  30909. {
  30910. name: "Micro",
  30911. height: math.unit(3, "inches"),
  30912. default: true
  30913. },
  30914. ]
  30915. ))
  30916. characterMakers.push(() => makeCharacter(
  30917. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  30918. {
  30919. front: {
  30920. height: math.unit(1.85, "meters"),
  30921. weight: math.unit(80, "kg"),
  30922. name: "Front",
  30923. image: {
  30924. source: "./media/characters/daniel-barrett/front.svg",
  30925. extra: 355/337,
  30926. bottom: 9/364
  30927. }
  30928. },
  30929. },
  30930. [
  30931. {
  30932. name: "Pico",
  30933. height: math.unit(0.0433, "mm")
  30934. },
  30935. {
  30936. name: "Nano",
  30937. height: math.unit(1.5, "mm")
  30938. },
  30939. {
  30940. name: "Micro",
  30941. height: math.unit(5.3, "cm"),
  30942. default: true
  30943. },
  30944. {
  30945. name: "Normal",
  30946. height: math.unit(1.85, "meters")
  30947. },
  30948. {
  30949. name: "Macro",
  30950. height: math.unit(64.7, "meters")
  30951. },
  30952. {
  30953. name: "Megamacro",
  30954. height: math.unit(2.26, "km")
  30955. },
  30956. {
  30957. name: "Gigamacro",
  30958. height: math.unit(79, "km")
  30959. },
  30960. {
  30961. name: "Teramacro",
  30962. height: math.unit(2765, "km")
  30963. },
  30964. {
  30965. name: "Petamacro",
  30966. height: math.unit(96678, "km")
  30967. },
  30968. ]
  30969. ))
  30970. characterMakers.push(() => makeCharacter(
  30971. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  30972. {
  30973. front: {
  30974. height: math.unit(30, "meters"),
  30975. weight: math.unit(400, "tons"),
  30976. name: "Front",
  30977. image: {
  30978. source: "./media/characters/zeel/front.svg",
  30979. extra: 2599/2599,
  30980. bottom: 226/2825
  30981. }
  30982. },
  30983. },
  30984. [
  30985. {
  30986. name: "Macro",
  30987. height: math.unit(30, "meters"),
  30988. default: true
  30989. },
  30990. ]
  30991. ))
  30992. characterMakers.push(() => makeCharacter(
  30993. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  30994. {
  30995. front: {
  30996. height: math.unit(6 + 7/12, "feet"),
  30997. weight: math.unit(210, "lb"),
  30998. name: "Front",
  30999. image: {
  31000. source: "./media/characters/tarn/front.svg",
  31001. extra: 3517/3220,
  31002. bottom: 91/3608
  31003. }
  31004. },
  31005. back: {
  31006. height: math.unit(6 + 7/12, "feet"),
  31007. weight: math.unit(210, "lb"),
  31008. name: "Back",
  31009. image: {
  31010. source: "./media/characters/tarn/back.svg",
  31011. extra: 3566/3241,
  31012. bottom: 34/3600
  31013. }
  31014. },
  31015. dick: {
  31016. height: math.unit(1.65, "feet"),
  31017. name: "Dick",
  31018. image: {
  31019. source: "./media/characters/tarn/dick.svg"
  31020. }
  31021. },
  31022. paw: {
  31023. height: math.unit(1.80, "feet"),
  31024. name: "Paw",
  31025. image: {
  31026. source: "./media/characters/tarn/paw.svg"
  31027. }
  31028. },
  31029. tongue: {
  31030. height: math.unit(0.97, "feet"),
  31031. name: "Tongue",
  31032. image: {
  31033. source: "./media/characters/tarn/tongue.svg"
  31034. }
  31035. },
  31036. },
  31037. [
  31038. {
  31039. name: "Micro",
  31040. height: math.unit(4, "inches")
  31041. },
  31042. {
  31043. name: "Normal",
  31044. height: math.unit(6 + 7/12, "feet"),
  31045. default: true
  31046. },
  31047. {
  31048. name: "Macro",
  31049. height: math.unit(300, "feet")
  31050. },
  31051. ]
  31052. ))
  31053. characterMakers.push(() => makeCharacter(
  31054. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31055. {
  31056. front: {
  31057. height: math.unit(5 + 7/12, "feet"),
  31058. weight: math.unit(80, "kg"),
  31059. name: "Front",
  31060. image: {
  31061. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31062. extra: 3023/2865,
  31063. bottom: 33/3056
  31064. }
  31065. },
  31066. back: {
  31067. height: math.unit(5 + 7/12, "feet"),
  31068. weight: math.unit(80, "kg"),
  31069. name: "Back",
  31070. image: {
  31071. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31072. extra: 3020/2886,
  31073. bottom: 30/3050
  31074. }
  31075. },
  31076. dick: {
  31077. height: math.unit(0.98, "feet"),
  31078. name: "Dick",
  31079. image: {
  31080. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31081. }
  31082. },
  31083. anatomy: {
  31084. height: math.unit(2.86, "feet"),
  31085. name: "Anatomy",
  31086. image: {
  31087. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31088. }
  31089. },
  31090. },
  31091. [
  31092. {
  31093. name: "Really Small",
  31094. height: math.unit(2, "inches")
  31095. },
  31096. {
  31097. name: "Micro",
  31098. height: math.unit(5.583, "inches")
  31099. },
  31100. {
  31101. name: "Normal",
  31102. height: math.unit(5 + 7/12, "feet"),
  31103. default: true
  31104. },
  31105. {
  31106. name: "Macro",
  31107. height: math.unit(67, "feet")
  31108. },
  31109. {
  31110. name: "Megamacro",
  31111. height: math.unit(134, "feet")
  31112. },
  31113. ]
  31114. ))
  31115. characterMakers.push(() => makeCharacter(
  31116. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31117. {
  31118. front: {
  31119. height: math.unit(9, "feet"),
  31120. weight: math.unit(120, "lb"),
  31121. name: "Front",
  31122. image: {
  31123. source: "./media/characters/sally/front.svg",
  31124. extra: 1506/1349,
  31125. bottom: 66/1572
  31126. }
  31127. },
  31128. },
  31129. [
  31130. {
  31131. name: "Normal",
  31132. height: math.unit(9, "feet"),
  31133. default: true
  31134. },
  31135. ]
  31136. ))
  31137. characterMakers.push(() => makeCharacter(
  31138. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31139. {
  31140. front: {
  31141. height: math.unit(8, "feet"),
  31142. weight: math.unit(900, "lb"),
  31143. name: "Front",
  31144. image: {
  31145. source: "./media/characters/owen/front.svg",
  31146. extra: 1761/1657,
  31147. bottom: 74/1835
  31148. }
  31149. },
  31150. side: {
  31151. height: math.unit(8, "feet"),
  31152. weight: math.unit(900, "lb"),
  31153. name: "Side",
  31154. image: {
  31155. source: "./media/characters/owen/side.svg",
  31156. extra: 1797/1734,
  31157. bottom: 30/1827
  31158. }
  31159. },
  31160. back: {
  31161. height: math.unit(8, "feet"),
  31162. weight: math.unit(900, "lb"),
  31163. name: "Back",
  31164. image: {
  31165. source: "./media/characters/owen/back.svg",
  31166. extra: 1796/1706,
  31167. bottom: 59/1855
  31168. }
  31169. },
  31170. maw: {
  31171. height: math.unit(1.76, "feet"),
  31172. name: "Maw",
  31173. image: {
  31174. source: "./media/characters/owen/maw.svg"
  31175. }
  31176. },
  31177. },
  31178. [
  31179. {
  31180. name: "Normal",
  31181. height: math.unit(8, "feet"),
  31182. default: true
  31183. },
  31184. ]
  31185. ))
  31186. characterMakers.push(() => makeCharacter(
  31187. { name: "Ryth", species: ["gremlin"], tags: ["anthro"] },
  31188. {
  31189. front: {
  31190. height: math.unit(4, "feet"),
  31191. weight: math.unit(400, "lb"),
  31192. name: "Front",
  31193. image: {
  31194. source: "./media/characters/ryth/front.svg",
  31195. extra: 876/691,
  31196. bottom: 25/901
  31197. }
  31198. },
  31199. },
  31200. [
  31201. {
  31202. name: "Normal",
  31203. height: math.unit(4, "feet"),
  31204. default: true
  31205. },
  31206. ]
  31207. ))
  31208. characterMakers.push(() => makeCharacter(
  31209. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31210. {
  31211. front: {
  31212. height: math.unit(7, "feet"),
  31213. weight: math.unit(180, "lb"),
  31214. name: "Front",
  31215. image: {
  31216. source: "./media/characters/necrolance/front.svg",
  31217. extra: 1062/947,
  31218. bottom: 41/1103
  31219. }
  31220. },
  31221. back: {
  31222. height: math.unit(7, "feet"),
  31223. weight: math.unit(180, "lb"),
  31224. name: "Back",
  31225. image: {
  31226. source: "./media/characters/necrolance/back.svg",
  31227. extra: 1045/984,
  31228. bottom: 14/1059
  31229. }
  31230. },
  31231. wing: {
  31232. height: math.unit(2.67, "feet"),
  31233. name: "Wing",
  31234. image: {
  31235. source: "./media/characters/necrolance/wing.svg"
  31236. }
  31237. },
  31238. },
  31239. [
  31240. {
  31241. name: "Normal",
  31242. height: math.unit(7, "feet"),
  31243. default: true
  31244. },
  31245. ]
  31246. ))
  31247. characterMakers.push(() => makeCharacter(
  31248. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31249. {
  31250. front: {
  31251. height: math.unit(76, "meters"),
  31252. weight: math.unit(30000, "tons"),
  31253. name: "Front",
  31254. image: {
  31255. source: "./media/characters/tyler/front.svg",
  31256. extra: 1640/1640,
  31257. bottom: 114/1754
  31258. }
  31259. },
  31260. },
  31261. [
  31262. {
  31263. name: "Macro",
  31264. height: math.unit(76, "meters"),
  31265. default: true
  31266. },
  31267. ]
  31268. ))
  31269. characterMakers.push(() => makeCharacter(
  31270. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31271. {
  31272. front: {
  31273. height: math.unit(4 + 11/12, "feet"),
  31274. weight: math.unit(132, "lb"),
  31275. name: "Front",
  31276. image: {
  31277. source: "./media/characters/icey/front.svg",
  31278. extra: 2750/2550,
  31279. bottom: 33/2783
  31280. }
  31281. },
  31282. back: {
  31283. height: math.unit(4 + 11/12, "feet"),
  31284. weight: math.unit(132, "lb"),
  31285. name: "Back",
  31286. image: {
  31287. source: "./media/characters/icey/back.svg",
  31288. extra: 2624/2481,
  31289. bottom: 35/2659
  31290. }
  31291. },
  31292. },
  31293. [
  31294. {
  31295. name: "Normal",
  31296. height: math.unit(4 + 11/12, "feet"),
  31297. default: true
  31298. },
  31299. ]
  31300. ))
  31301. characterMakers.push(() => makeCharacter(
  31302. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31303. {
  31304. front: {
  31305. height: math.unit(100, "feet"),
  31306. weight: math.unit(0, "lb"),
  31307. name: "Front",
  31308. image: {
  31309. source: "./media/characters/smile/front.svg",
  31310. extra: 2983/2912,
  31311. bottom: 162/3145
  31312. }
  31313. },
  31314. back: {
  31315. height: math.unit(100, "feet"),
  31316. weight: math.unit(0, "lb"),
  31317. name: "Back",
  31318. image: {
  31319. source: "./media/characters/smile/back.svg",
  31320. extra: 3143/3031,
  31321. bottom: 91/3234
  31322. }
  31323. },
  31324. head: {
  31325. height: math.unit(26.3, "feet"),
  31326. weight: math.unit(0, "lb"),
  31327. name: "Head",
  31328. image: {
  31329. source: "./media/characters/smile/head.svg"
  31330. }
  31331. },
  31332. collar: {
  31333. height: math.unit(5.3, "feet"),
  31334. weight: math.unit(0, "lb"),
  31335. name: "Collar",
  31336. image: {
  31337. source: "./media/characters/smile/collar.svg"
  31338. }
  31339. },
  31340. },
  31341. [
  31342. {
  31343. name: "Macro",
  31344. height: math.unit(100, "feet"),
  31345. default: true
  31346. },
  31347. ]
  31348. ))
  31349. //characters
  31350. function makeCharacters() {
  31351. const results = [];
  31352. characterMakers.forEach(character => {
  31353. results.push(character());
  31354. });
  31355. return results;
  31356. }