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

24903 行
617 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.capacity) {
  29. views[key].attributes.capacity = {
  30. name: "Capacity",
  31. power: 3,
  32. type: "volume",
  33. base: value.capacity
  34. }
  35. }
  36. });
  37. return createEntityMaker(info, views, defaultSizes);
  38. }
  39. const speciesData = {
  40. animal: {
  41. name: "Animal"
  42. },
  43. dog: {
  44. name: "Dog",
  45. parents: [
  46. "canine"
  47. ]
  48. },
  49. canine: {
  50. name: "Canine",
  51. parents: [
  52. "mammal"
  53. ]
  54. },
  55. crux: {
  56. name: "Crux",
  57. parents: [
  58. "mammal"
  59. ]
  60. },
  61. mammal: {
  62. name: "Mammal",
  63. parents: [
  64. "animal"
  65. ]
  66. },
  67. "rough-collie": {
  68. name: "Rough Collie",
  69. parents: [
  70. "dog"
  71. ]
  72. },
  73. dragon: {
  74. name: "Dragon",
  75. parents: [
  76. "reptile"
  77. ]
  78. },
  79. reptile: {
  80. name: "Reptile",
  81. parents: [
  82. "animal"
  83. ]
  84. },
  85. woodpecker: {
  86. name: "Woodpecker",
  87. parents: [
  88. "avian"
  89. ]
  90. },
  91. avian: {
  92. name: "Avian",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. kitsune: {
  98. name: "Kitsune",
  99. parents: [
  100. "fox"
  101. ]
  102. },
  103. fox: {
  104. name: "Fox",
  105. parents: [
  106. "mammal"
  107. ]
  108. },
  109. pokemon: {
  110. name: "Pokemon"
  111. },
  112. tiger: {
  113. name: "Tiger",
  114. parents: [
  115. "cat"
  116. ]
  117. },
  118. cat: {
  119. name: "Cat",
  120. parents: [
  121. "mammal"
  122. ]
  123. },
  124. "blue-jay": {
  125. name: "Blue Jay",
  126. parents: [
  127. "avian"
  128. ]
  129. },
  130. wolf: {
  131. name: "Wolf",
  132. parents: [
  133. "mammal"
  134. ]
  135. },
  136. coyote: {
  137. name: "Coyote",
  138. parents: [
  139. "mammal"
  140. ]
  141. },
  142. raccoon: {
  143. name: "Raccoon",
  144. parents: [
  145. "mammal"
  146. ]
  147. },
  148. weasel: {
  149. name: "Weasel",
  150. parents: [
  151. "mammal"
  152. ]
  153. },
  154. "red-panda": {
  155. name: "Red Panda",
  156. parents: [
  157. "mammal"
  158. ]
  159. },
  160. dolphin: {
  161. name: "Dolphin",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. "african-wild-dog": {
  167. name: "African Wild Dog",
  168. parents: [
  169. "canine"
  170. ]
  171. },
  172. "hyena": {
  173. name: "Hyena",
  174. parents: [
  175. "canine"
  176. ]
  177. },
  178. "carbuncle": {
  179. name: "Carbuncle",
  180. parents: [
  181. "animal"
  182. ]
  183. },
  184. bat: {
  185. name: "Bat",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. "leaf-nosed-bat": {
  191. name: "Leaf-Nosed Bat",
  192. parents: [
  193. "bat"
  194. ]
  195. },
  196. "fish": {
  197. name: "Fish",
  198. parents: [
  199. "animal"
  200. ]
  201. },
  202. "ram": {
  203. name: "Ram",
  204. parents: [
  205. "mammal"
  206. ]
  207. },
  208. "demon": {
  209. name: "Demon"
  210. },
  211. "cougar": {
  212. name: "Cougar",
  213. parents: [
  214. "cat"
  215. ]
  216. },
  217. "goat": {
  218. name: "Goat",
  219. parents: [
  220. "mammal"
  221. ]
  222. },
  223. "lion": {
  224. name: "Lion",
  225. parents: [
  226. "cat"
  227. ]
  228. },
  229. "harpy-eager": {
  230. name: "Harpy Eagle",
  231. parents: [
  232. "avian"
  233. ]
  234. },
  235. "deer": {
  236. name: "Deer",
  237. parents: [
  238. "mammal"
  239. ]
  240. },
  241. "phoenix": {
  242. name: "Phoenix",
  243. parents: [
  244. "avian"
  245. ]
  246. },
  247. "aeromorph": {
  248. name: "Aeromorph",
  249. parents: [
  250. "machine"
  251. ]
  252. },
  253. "machine": {
  254. name: "Machine",
  255. },
  256. "android": {
  257. name: "Android",
  258. parents: [
  259. "machine"
  260. ]
  261. },
  262. "jackal": {
  263. name: "Jackal",
  264. parents: [
  265. "canine"
  266. ]
  267. },
  268. "corvid": {
  269. name: "Corvid",
  270. parents: [
  271. "avian"
  272. ]
  273. },
  274. "pharaoh-hound": {
  275. name: "Pharaoh Hound",
  276. parents: [
  277. "dog"
  278. ]
  279. },
  280. "skunk": {
  281. name: "Skunk",
  282. parents: [
  283. "mammal"
  284. ]
  285. },
  286. "shark": {
  287. name: "Shark",
  288. parents: [
  289. "fish"
  290. ]
  291. },
  292. "black-panther": {
  293. name: "Black Panther",
  294. parents: [
  295. "cat"
  296. ]
  297. },
  298. "umbra": {
  299. name: "Umbra",
  300. parents: [
  301. "animal"
  302. ]
  303. },
  304. "raven": {
  305. name: "Raven",
  306. parents: [
  307. "corvid"
  308. ]
  309. },
  310. "snow-leopard": {
  311. name: "Snow Leopard",
  312. parents: [
  313. "cat"
  314. ]
  315. },
  316. "barbary-lion": {
  317. name: "Barbary Lion",
  318. parents: [
  319. "lion"
  320. ]
  321. },
  322. "dra'gal": {
  323. name: "Dra'Gal",
  324. parents: [
  325. "mammal"
  326. ]
  327. },
  328. "german-shepherd": {
  329. name: "German Shepherd",
  330. parents: [
  331. "dog"
  332. ]
  333. },
  334. "bayleef": {
  335. name: "Bayleef",
  336. parents: [
  337. "pokemon"
  338. ]
  339. },
  340. "mouse": {
  341. name: "Mouse",
  342. parents: [
  343. "rodent"
  344. ]
  345. },
  346. "rat": {
  347. name: "Rat",
  348. parents: [
  349. "mammal"
  350. ]
  351. },
  352. "hoshiko-beast": {
  353. name: "Hoshiko Beast",
  354. parents: ["animal"]
  355. },
  356. "snow-jugani": {
  357. name: "Snow Jugani",
  358. parents: ["cat"]
  359. },
  360. "patamon": {
  361. name: "Patamon",
  362. parents: ["digimon"]
  363. },
  364. "digimon": {
  365. name: "Digimon",
  366. },
  367. "jugani": {
  368. name: "Jugani",
  369. parents: ["cat"]
  370. },
  371. "luxray": {
  372. name: "Luxray",
  373. parents: ["pokemon"]
  374. },
  375. "mech": {
  376. name: "Mech",
  377. parents: ["machine"]
  378. },
  379. "zoid": {
  380. name: "Zoid",
  381. parents: ["mech"]
  382. },
  383. "monster": {
  384. name: "Monster",
  385. parents: ["animal"]
  386. },
  387. "foo-dog": {
  388. name: "Foo Dog",
  389. parents: ["mammal"]
  390. },
  391. "elephant": {
  392. name: "Elephant",
  393. parents: ["mammal"]
  394. },
  395. "eagle": {
  396. name: "Eagle",
  397. parents: ["avian"]
  398. },
  399. "cow": {
  400. name: "Cow",
  401. parents: ["mammal"]
  402. },
  403. "crocodile": {
  404. name: "Crocodile",
  405. parents: ["reptile"]
  406. },
  407. "borzoi": {
  408. name: "Borzoi",
  409. parents: ["dog"]
  410. },
  411. "snake": {
  412. name: "Snake",
  413. parents: ["reptile"]
  414. },
  415. "horned-bush-viper": {
  416. name: "Horned Bush Viper",
  417. parents: ["snake"]
  418. },
  419. "cobra": {
  420. name: "Cobra",
  421. parents: ["snake"]
  422. },
  423. "harpy-eagle": {
  424. name: "Harpy Eagle",
  425. parents: ["eagle"]
  426. },
  427. "raptor": {
  428. name: "Raptor",
  429. parents: ["dinosaur"]
  430. },
  431. "dinosaur": {
  432. name: "Dinosaur",
  433. parents: ["reptile"]
  434. },
  435. "veilhound": {
  436. name: "Veilhound",
  437. parents: ["hellhound", "demon"]
  438. },
  439. "hellhound": {
  440. name: "Hellhound",
  441. parents: ["canine"]
  442. },
  443. "insect": {
  444. name: "Insect",
  445. parents: ["animal"]
  446. },
  447. "beetle": {
  448. name: "Beetle",
  449. parents: ["insect"]
  450. },
  451. "moth": {
  452. name: "Moth",
  453. parents: ["insect"]
  454. },
  455. "eastern-dragon": {
  456. name: "Eastern Dragon",
  457. parents: ["dragon"]
  458. },
  459. "jaguar": {
  460. name: "Jaguar",
  461. parents: ["cat"]
  462. },
  463. "horse": {
  464. name: "Horse",
  465. parents: ["mammal"]
  466. },
  467. "sergal": {
  468. name: "Sergal",
  469. parents: ["mammal"]
  470. },
  471. "gryphon": {
  472. name: "Gryphon",
  473. parents: ["lion", "eagle"]
  474. },
  475. "robot": {
  476. name: "Robot",
  477. parents: ["machine"]
  478. },
  479. "medihound": {
  480. name: "Medihound",
  481. parents: ["robot", "dog"]
  482. },
  483. "sylveon": {
  484. name: "Sylveon",
  485. parents: ["pokemon"]
  486. },
  487. "catgirl": {
  488. name: "Catgirl",
  489. parents: ["mammal"]
  490. },
  491. "cowgirl": {
  492. name: "Cowgirl",
  493. parents: ["mammal"]
  494. },
  495. "pony": {
  496. name: "Pony",
  497. parents: ["horse"]
  498. },
  499. "rabbit": {
  500. name: "Rabbit",
  501. parents: ["mammal"]
  502. },
  503. "fennec-fox": {
  504. name: "Fennec Fox",
  505. parents: ["fox"]
  506. },
  507. "azodian": {
  508. name: "Azodian",
  509. parents: ["mouse"]
  510. },
  511. "shiba-inu": {
  512. name: "Shiba Inu",
  513. parents: ["dog"]
  514. },
  515. "changeling": {
  516. name: "Changeling",
  517. parents: ["insect"]
  518. },
  519. "cheetah": {
  520. name: "Cheetah",
  521. parents: ["cat"]
  522. },
  523. "golden-jackal": {
  524. name: "Golden Jackal",
  525. parents: ["jackal"]
  526. },
  527. "manectric": {
  528. name: "Manectric",
  529. parents: ["pokemon"]
  530. },
  531. "rat": {
  532. name: "Rat",
  533. parents: ["rodent"]
  534. },
  535. "rodent": {
  536. name: "Rodent",
  537. parents: ["mammal"]
  538. },
  539. "octocoon": {
  540. name: "Octocoon",
  541. parents: ["raccoon", "octopus"]
  542. },
  543. "octopus": {
  544. name: "Octopus",
  545. parents: ["fish"]
  546. },
  547. "werewolf": {
  548. name: "Werewolf",
  549. parents: ["wolf"]
  550. },
  551. "meerkat": {
  552. name: "Meerkat",
  553. parents: ["mammal"]
  554. },
  555. "human": {
  556. name: "Human",
  557. parents: ["mammal"]
  558. },
  559. "geth": {
  560. name: "Geth",
  561. parents: ["android"]
  562. },
  563. "husky": {
  564. name: "Husky",
  565. parents: ["dog"]
  566. },
  567. "long-eared-bat": {
  568. name: "Long Eared Bat",
  569. parents: ["bat"]
  570. },
  571. "lizard": {
  572. name: "Lizard",
  573. parents: ["reptile"]
  574. },
  575. "salamander": {
  576. name: "Salamander",
  577. parents: ["lizard"]
  578. },
  579. "chameleon": {
  580. name: "Chameleon",
  581. parents: ["lizard"]
  582. },
  583. "gecko": {
  584. name: "Gecko",
  585. parents: ["lizard"]
  586. },
  587. "kobold": {
  588. name: "Kobold",
  589. parents: ["reptile"]
  590. },
  591. "charizard": {
  592. name: "Charizard",
  593. parents: ["pokemon"]
  594. },
  595. "lugia": {
  596. name: "Lugia",
  597. parents: ["pokemon"]
  598. },
  599. "cerberus": {
  600. name: "Cerberus",
  601. parents: ["dog"]
  602. },
  603. "tyrantrum": {
  604. name: "Tyrantrum",
  605. parents: ["pokemon"]
  606. },
  607. "lemur": {
  608. name: "Lemur",
  609. parents: ["mammal"]
  610. },
  611. "kelpie": {
  612. name: "Kelpie",
  613. parents: ["horse", "monster"]
  614. },
  615. "labrador": {
  616. name: "Labrador",
  617. parents: ["dog"]
  618. },
  619. "sylveon": {
  620. name: "Sylveon",
  621. parents: ["eeveelution"]
  622. },
  623. "eeveelution": {
  624. name: "Eeveelution",
  625. parents: ["pokemon"]
  626. },
  627. "polar-bear": {
  628. name: "Polar Bear",
  629. parents: ["bear"]
  630. },
  631. "bear": {
  632. name: "Bear",
  633. parents: ["mammal"]
  634. },
  635. "absol": {
  636. name: "Absol",
  637. parents: ["pokemon"]
  638. },
  639. "wolver": {
  640. name: "Wolver",
  641. parents: ["mammal"]
  642. },
  643. "rottweiler": {
  644. name: "Rottweiler",
  645. parents: ["dog"]
  646. },
  647. "zebra": {
  648. name: "Zebra",
  649. parents: ["horse"]
  650. },
  651. "yoshi": {
  652. name: "Yoshi",
  653. parents: ["lizard"]
  654. },
  655. "lynx": {
  656. name: "Lynx",
  657. parents: ["cat"]
  658. },
  659. "unknown": {
  660. name: "Unknown",
  661. parents: []
  662. },
  663. "thylacine": {
  664. name: "Thylacine",
  665. parents: ["mammal"]
  666. },
  667. "gabumon": {
  668. name: "Gabumon",
  669. parents: ["digimon"]
  670. },
  671. "border-collie": {
  672. name: "Border Collie",
  673. parents: ["dog"]
  674. },
  675. "imp": {
  676. name: "Imp",
  677. parents: ["demon"]
  678. },
  679. "kangaroo": {
  680. name: "Kangaroo",
  681. parents: ["mammal"]
  682. },
  683. "renamon": {
  684. name: "Renamon",
  685. parents: ["digimon"]
  686. },
  687. "candy-orca-dragon": {
  688. name: "Candy Orca Dragon",
  689. parents: ["fish", "dragon"]
  690. },
  691. "sabertooth-tiger": {
  692. name: "Sabertooth Tiger",
  693. parents: ["cat"]
  694. },
  695. "espurr": {
  696. name: "Espurr",
  697. parents: ["pokemon"]
  698. },
  699. "otter": {
  700. name: "Otter",
  701. parents: ["mammal"]
  702. },
  703. "elemental": {
  704. name: "Elemental",
  705. parents: ["mammal"]
  706. },
  707. "mew": {
  708. name: "Mew",
  709. parents: ["pokemon"]
  710. },
  711. "goodra": {
  712. name: "Goodra",
  713. parents: ["pokemon"]
  714. },
  715. "fairy": {
  716. name: "Fairy",
  717. parents: ["magical"]
  718. },
  719. "typhlosion": {
  720. name: "Typhlosion",
  721. parents: ["pokemon"]
  722. },
  723. "magical": {
  724. name: "Magical",
  725. parents: []
  726. },
  727. "xenomorph": {
  728. name: "Xenomorph",
  729. parents: ["monster", "alien"]
  730. },
  731. "charr": {
  732. name: "Charr",
  733. parents: ["cat"]
  734. },
  735. "siberian-husky": {
  736. name: "Siberian Husky",
  737. parents: ["husky"]
  738. },
  739. "alligator": {
  740. name: "Alligator",
  741. parents: ["reptile"]
  742. },
  743. "bernese-mountain-dog": {
  744. name: "Bernese Mountain Dog",
  745. parents: ["dog"]
  746. },
  747. "reshiram": {
  748. name: "Reshiram",
  749. parents: ["pokemon"]
  750. },
  751. "grizzly-bear": {
  752. name: "Grizzly Bear",
  753. parents: ["bear"]
  754. },
  755. "water-monitor": {
  756. name: "Water Monitor",
  757. parents: ["lizard"]
  758. },
  759. "banchofossa": {
  760. name: "Banchofossa",
  761. parents: ["mammal"]
  762. },
  763. "kirin": {
  764. name: "Kirin",
  765. parents: ["monster"]
  766. },
  767. "quilava": {
  768. name: "Quilava",
  769. parents: ["pokemon"]
  770. },
  771. "seviper": {
  772. name: "Seviper",
  773. parents: ["pokemon"]
  774. },
  775. "flying-fox": {
  776. name: "Flying Fox",
  777. parents: ["bat"]
  778. },
  779. "keynain": {
  780. name: "Keynain",
  781. parents: ["avian"]
  782. },
  783. "lucario": {
  784. name: "Lucario",
  785. parents: ["pokemon"]
  786. },
  787. "siamese-cat": {
  788. name: "Siamese Cat",
  789. parents: ["cat"]
  790. },
  791. "spider": {
  792. name: "Spider",
  793. parents: ["insect"]
  794. },
  795. "samurott": {
  796. name: "Samurott",
  797. parents: ["pokemon"]
  798. },
  799. "megalodon": {
  800. name: "Megalodon",
  801. parents: ["shark"]
  802. },
  803. "unicorn": {
  804. name: "Unicorn",
  805. parents: ["horse"]
  806. },
  807. "greninja": {
  808. name: "Greninja",
  809. parents: ["pokemon"]
  810. },
  811. "water-dragon": {
  812. name: "Water Dragon",
  813. parents: ["dragon"]
  814. },
  815. "cross-fox": {
  816. name: "Cross Fox",
  817. parents: ["fox"]
  818. },
  819. "synth": {
  820. name: "Synth",
  821. parents: ["machine"]
  822. },
  823. "construct": {
  824. name: "Construct",
  825. parents: ["machine"]
  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. }
  1248. //species
  1249. function getSpeciesInfo(speciesList) {
  1250. let result = new Set();
  1251. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1252. result.add(entry)
  1253. });
  1254. return Array.from(result);
  1255. };
  1256. function getSpeciesInfoHelper(species) {
  1257. if (!speciesData[species]) {
  1258. console.warn(species + " doesn't exist");
  1259. return [];
  1260. }
  1261. if (speciesData[species].parents) {
  1262. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1263. } else {
  1264. return [species];
  1265. }
  1266. }
  1267. characterMakers.push(() => makeCharacter(
  1268. {
  1269. name: "Fen",
  1270. species: ["crux"],
  1271. description: {
  1272. title: "Bio",
  1273. text: "Very furry. Sheds on everything."
  1274. },
  1275. tags: [
  1276. "anthro",
  1277. "goo"
  1278. ]
  1279. },
  1280. {
  1281. back: {
  1282. height: math.unit(2.2428, "meter"),
  1283. weight: math.unit(124.738, "kg"),
  1284. name: "Back",
  1285. image: {
  1286. source: "./media/characters/fen/back.svg",
  1287. extra: 1025 / 935,
  1288. bottom: 0.01
  1289. },
  1290. info: {
  1291. description: {
  1292. mode: "append",
  1293. text: "\n\nHe is not currently looking at you."
  1294. }
  1295. }
  1296. },
  1297. full: {
  1298. height: math.unit(1.34, "meter"),
  1299. weight: math.unit(225, "kg"),
  1300. name: "Full",
  1301. image: {
  1302. source: "./media/characters/fen/full.svg"
  1303. },
  1304. info: {
  1305. description: {
  1306. mode: "append",
  1307. text: "\n\nMunch."
  1308. }
  1309. }
  1310. },
  1311. kneeling: {
  1312. height: math.unit(5.4, "feet"),
  1313. weight: math.unit(124.738, "kg"),
  1314. name: "Kneeling",
  1315. image: {
  1316. source: "./media/characters/fen/kneeling.svg",
  1317. extra: 563 / 507
  1318. }
  1319. },
  1320. goo: {
  1321. height: math.unit(2.8, "feet"),
  1322. weight: math.unit(125, "kg"),
  1323. capacity: math.unit(1, "people"),
  1324. name: "Goo",
  1325. image: {
  1326. source: "./media/characters/fen/goo.svg",
  1327. bottom: 116 / 613
  1328. }
  1329. },
  1330. lounging: {
  1331. height: math.unit(6.5, "feet"),
  1332. weight: math.unit(125, "kg"),
  1333. name: "Lounging",
  1334. image: {
  1335. source: "./media/characters/fen/lounging.svg"
  1336. }
  1337. },
  1338. },
  1339. [
  1340. {
  1341. name: "Normal",
  1342. height: math.unit(2.2428, "meter")
  1343. },
  1344. {
  1345. name: "Big",
  1346. height: math.unit(12, "feet")
  1347. },
  1348. {
  1349. name: "Minimacro",
  1350. height: math.unit(40, "feet"),
  1351. default: true,
  1352. info: {
  1353. description: {
  1354. mode: "append",
  1355. text: "\n\nTOO DAMN BIG"
  1356. }
  1357. }
  1358. },
  1359. {
  1360. name: "Macro",
  1361. height: math.unit(100, "feet"),
  1362. info: {
  1363. description: {
  1364. mode: "append",
  1365. text: "\n\nTOO DAMN BIG"
  1366. }
  1367. }
  1368. },
  1369. {
  1370. name: "Macro+",
  1371. height: math.unit(300, "feet")
  1372. },
  1373. {
  1374. name: "Megamacro",
  1375. height: math.unit(2, "miles")
  1376. }
  1377. ]
  1378. ))
  1379. characterMakers.push(() => makeCharacter(
  1380. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1381. {
  1382. front: {
  1383. height: math.unit(183, "cm"),
  1384. weight: math.unit(80, "kg"),
  1385. name: "Front",
  1386. image: {
  1387. source: "./media/characters/sofia-fluttertail/front.svg",
  1388. bottom: 0.01,
  1389. extra: 2154 / 2081
  1390. }
  1391. },
  1392. frontAlt: {
  1393. height: math.unit(183, "cm"),
  1394. weight: math.unit(80, "kg"),
  1395. name: "Front (alt)",
  1396. image: {
  1397. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1398. }
  1399. },
  1400. back: {
  1401. height: math.unit(183, "cm"),
  1402. weight: math.unit(80, "kg"),
  1403. name: "Back",
  1404. image: {
  1405. source: "./media/characters/sofia-fluttertail/back.svg"
  1406. }
  1407. },
  1408. kneeling: {
  1409. height: math.unit(125, "cm"),
  1410. weight: math.unit(80, "kg"),
  1411. name: "Kneeling",
  1412. image: {
  1413. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1414. extra: 1033 / 977,
  1415. bottom: 23.7 / 1057
  1416. }
  1417. },
  1418. maw: {
  1419. height: math.unit(183 / 5, "cm"),
  1420. name: "Maw",
  1421. image: {
  1422. source: "./media/characters/sofia-fluttertail/maw.svg"
  1423. }
  1424. },
  1425. mawcloseup: {
  1426. height: math.unit(183 / 5 * 0.41, "cm"),
  1427. name: "Maw (Closeup)",
  1428. image: {
  1429. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1430. }
  1431. },
  1432. },
  1433. [
  1434. {
  1435. name: "Normal",
  1436. height: math.unit(1.83, "meter")
  1437. },
  1438. {
  1439. name: "Size Thief",
  1440. height: math.unit(18, "feet")
  1441. },
  1442. {
  1443. name: "50 Foot Collie",
  1444. height: math.unit(50, "feet")
  1445. },
  1446. {
  1447. name: "Macro",
  1448. height: math.unit(96, "feet"),
  1449. default: true
  1450. },
  1451. {
  1452. name: "Megamerger",
  1453. height: math.unit(650, "feet")
  1454. },
  1455. ]
  1456. ))
  1457. characterMakers.push(() => makeCharacter(
  1458. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1459. {
  1460. front: {
  1461. height: math.unit(7, "feet"),
  1462. weight: math.unit(100, "kg"),
  1463. name: "Front",
  1464. image: {
  1465. source: "./media/characters/march/front.svg",
  1466. extra: 1,
  1467. bottom: 0.015
  1468. }
  1469. },
  1470. foot: {
  1471. height: math.unit(0.9, "feet"),
  1472. name: "Foot",
  1473. image: {
  1474. source: "./media/characters/march/foot.svg"
  1475. }
  1476. },
  1477. },
  1478. [
  1479. {
  1480. name: "Normal",
  1481. height: math.unit(7.9, "feet")
  1482. },
  1483. {
  1484. name: "Macro",
  1485. height: math.unit(220, "meters")
  1486. },
  1487. {
  1488. name: "Megamacro",
  1489. height: math.unit(2.98, "km"),
  1490. default: true
  1491. },
  1492. {
  1493. name: "Gigamacro",
  1494. height: math.unit(15963, "km")
  1495. },
  1496. {
  1497. name: "Teramacro",
  1498. height: math.unit(2980000000, "km")
  1499. },
  1500. {
  1501. name: "Examacro",
  1502. height: math.unit(250, "parsecs")
  1503. },
  1504. ]
  1505. ))
  1506. characterMakers.push(() => makeCharacter(
  1507. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1508. {
  1509. front: {
  1510. height: math.unit(6, "feet"),
  1511. weight: math.unit(60, "kg"),
  1512. name: "Front",
  1513. image: {
  1514. source: "./media/characters/noir/front.svg",
  1515. extra: 1,
  1516. bottom: 0.032
  1517. }
  1518. },
  1519. },
  1520. [
  1521. {
  1522. name: "Normal",
  1523. height: math.unit(6.6, "feet")
  1524. },
  1525. {
  1526. name: "Macro",
  1527. height: math.unit(500, "feet")
  1528. },
  1529. {
  1530. name: "Megamacro",
  1531. height: math.unit(2.5, "km"),
  1532. default: true
  1533. },
  1534. {
  1535. name: "Gigamacro",
  1536. height: math.unit(22500, "km")
  1537. },
  1538. {
  1539. name: "Teramacro",
  1540. height: math.unit(2500000000, "km")
  1541. },
  1542. {
  1543. name: "Examacro",
  1544. height: math.unit(200, "parsecs")
  1545. },
  1546. ]
  1547. ))
  1548. characterMakers.push(() => makeCharacter(
  1549. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1550. {
  1551. front: {
  1552. height: math.unit(7, "feet"),
  1553. weight: math.unit(100, "kg"),
  1554. name: "Front",
  1555. image: {
  1556. source: "./media/characters/okuri/front.svg",
  1557. extra: 1,
  1558. bottom: 0.037
  1559. }
  1560. },
  1561. back: {
  1562. height: math.unit(7, "feet"),
  1563. weight: math.unit(100, "kg"),
  1564. name: "Back",
  1565. image: {
  1566. source: "./media/characters/okuri/back.svg",
  1567. extra: 1,
  1568. bottom: 0.007
  1569. }
  1570. },
  1571. },
  1572. [
  1573. {
  1574. name: "Megamacro",
  1575. height: math.unit(100, "miles"),
  1576. default: true
  1577. },
  1578. ]
  1579. ))
  1580. characterMakers.push(() => makeCharacter(
  1581. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1582. {
  1583. front: {
  1584. height: math.unit(7, "feet"),
  1585. weight: math.unit(100, "kg"),
  1586. name: "Front",
  1587. image: {
  1588. source: "./media/characters/manny/front.svg",
  1589. extra: 1,
  1590. bottom: 0.06
  1591. }
  1592. },
  1593. back: {
  1594. height: math.unit(7, "feet"),
  1595. weight: math.unit(100, "kg"),
  1596. name: "Back",
  1597. image: {
  1598. source: "./media/characters/manny/back.svg",
  1599. extra: 1,
  1600. bottom: 0.014
  1601. }
  1602. },
  1603. },
  1604. [
  1605. {
  1606. name: "Normal",
  1607. height: math.unit(7, "feet"),
  1608. },
  1609. {
  1610. name: "Macro",
  1611. height: math.unit(78, "feet"),
  1612. default: true
  1613. },
  1614. {
  1615. name: "Macro+",
  1616. height: math.unit(300, "meters")
  1617. },
  1618. {
  1619. name: "Macro++",
  1620. height: math.unit(2400, "meters")
  1621. },
  1622. {
  1623. name: "Megamacro",
  1624. height: math.unit(5167, "meters")
  1625. },
  1626. {
  1627. name: "Gigamacro",
  1628. height: math.unit(41769, "miles")
  1629. },
  1630. ]
  1631. ))
  1632. characterMakers.push(() => makeCharacter(
  1633. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1634. {
  1635. front: {
  1636. height: math.unit(7, "feet"),
  1637. weight: math.unit(100, "kg"),
  1638. name: "Front",
  1639. image: {
  1640. source: "./media/characters/adake/front-1.svg"
  1641. }
  1642. },
  1643. frontAlt: {
  1644. height: math.unit(7, "feet"),
  1645. weight: math.unit(100, "kg"),
  1646. name: "Front (Alt)",
  1647. image: {
  1648. source: "./media/characters/adake/front-2.svg",
  1649. extra: 1,
  1650. bottom: 0.01
  1651. }
  1652. },
  1653. back: {
  1654. height: math.unit(7, "feet"),
  1655. weight: math.unit(100, "kg"),
  1656. name: "Back",
  1657. image: {
  1658. source: "./media/characters/adake/back.svg",
  1659. }
  1660. },
  1661. kneel: {
  1662. height: math.unit(5.385, "feet"),
  1663. weight: math.unit(100, "kg"),
  1664. name: "Kneeling",
  1665. image: {
  1666. source: "./media/characters/adake/kneel.svg",
  1667. bottom: 0.052
  1668. }
  1669. },
  1670. },
  1671. [
  1672. {
  1673. name: "Normal",
  1674. height: math.unit(7, "feet"),
  1675. },
  1676. {
  1677. name: "Macro",
  1678. height: math.unit(78, "feet"),
  1679. default: true
  1680. },
  1681. {
  1682. name: "Macro+",
  1683. height: math.unit(300, "meters")
  1684. },
  1685. {
  1686. name: "Macro++",
  1687. height: math.unit(2400, "meters")
  1688. },
  1689. {
  1690. name: "Megamacro",
  1691. height: math.unit(5167, "meters")
  1692. },
  1693. {
  1694. name: "Gigamacro",
  1695. height: math.unit(41769, "miles")
  1696. },
  1697. ]
  1698. ))
  1699. characterMakers.push(() => makeCharacter(
  1700. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1701. {
  1702. front: {
  1703. height: math.unit(1.65, "meters"),
  1704. weight: math.unit(50, "kg"),
  1705. name: "Front",
  1706. image: {
  1707. source: "./media/characters/elijah/front.svg",
  1708. extra: 858 / 830,
  1709. bottom: 95.5 / 953.8559
  1710. }
  1711. },
  1712. back: {
  1713. height: math.unit(1.65, "meters"),
  1714. weight: math.unit(50, "kg"),
  1715. name: "Back",
  1716. image: {
  1717. source: "./media/characters/elijah/back.svg",
  1718. extra: 895 / 850,
  1719. bottom: 5.3 / 897.956
  1720. }
  1721. },
  1722. frontNsfw: {
  1723. height: math.unit(1.65, "meters"),
  1724. weight: math.unit(50, "kg"),
  1725. name: "Front (NSFW)",
  1726. image: {
  1727. source: "./media/characters/elijah/front-nsfw.svg",
  1728. extra: 858 / 830,
  1729. bottom: 95.5 / 953.8559
  1730. }
  1731. },
  1732. backNsfw: {
  1733. height: math.unit(1.65, "meters"),
  1734. weight: math.unit(50, "kg"),
  1735. name: "Back (NSFW)",
  1736. image: {
  1737. source: "./media/characters/elijah/back-nsfw.svg",
  1738. extra: 895 / 850,
  1739. bottom: 5.3 / 897.956
  1740. }
  1741. },
  1742. dick: {
  1743. height: math.unit(1, "feet"),
  1744. name: "Dick",
  1745. image: {
  1746. source: "./media/characters/elijah/dick.svg"
  1747. }
  1748. },
  1749. beakOpen: {
  1750. height: math.unit(1.25, "feet"),
  1751. name: "Beak (Open)",
  1752. image: {
  1753. source: "./media/characters/elijah/beak-open.svg"
  1754. }
  1755. },
  1756. beakShut: {
  1757. height: math.unit(1.25, "feet"),
  1758. name: "Beak (Shut)",
  1759. image: {
  1760. source: "./media/characters/elijah/beak-shut.svg"
  1761. }
  1762. },
  1763. footFlexing: {
  1764. height: math.unit(1.61, "feet"),
  1765. name: "Foot (Flexing)",
  1766. image: {
  1767. source: "./media/characters/elijah/foot-flexing.svg"
  1768. }
  1769. },
  1770. footStepping: {
  1771. height: math.unit(1.44, "feet"),
  1772. name: "Foot (Stepping)",
  1773. image: {
  1774. source: "./media/characters/elijah/foot-stepping.svg"
  1775. }
  1776. },
  1777. plantigradeLeg: {
  1778. height: math.unit(2.34, "feet"),
  1779. name: "Plantigrade Leg",
  1780. image: {
  1781. source: "./media/characters/elijah/plantigrade-leg.svg"
  1782. }
  1783. },
  1784. plantigradeFootLeft: {
  1785. height: math.unit(0.9, "feet"),
  1786. name: "Plantigrade Foot (Left)",
  1787. image: {
  1788. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1789. }
  1790. },
  1791. plantigradeFootRight: {
  1792. height: math.unit(0.9, "feet"),
  1793. name: "Plantigrade Foot (Right)",
  1794. image: {
  1795. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1796. }
  1797. },
  1798. },
  1799. [
  1800. {
  1801. name: "Normal",
  1802. height: math.unit(1.65, "meters")
  1803. },
  1804. {
  1805. name: "Macro",
  1806. height: math.unit(55, "meters"),
  1807. default: true
  1808. },
  1809. {
  1810. name: "Macro+",
  1811. height: math.unit(105, "meters")
  1812. },
  1813. ]
  1814. ))
  1815. characterMakers.push(() => makeCharacter(
  1816. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1817. {
  1818. front: {
  1819. height: math.unit(11, "feet"),
  1820. weight: math.unit(80, "kg"),
  1821. name: "Front",
  1822. image: {
  1823. source: "./media/characters/rai/front.svg",
  1824. extra: 1,
  1825. bottom: 0.03
  1826. }
  1827. },
  1828. side: {
  1829. height: math.unit(11, "feet"),
  1830. weight: math.unit(80, "kg"),
  1831. name: "Side",
  1832. image: {
  1833. source: "./media/characters/rai/side.svg"
  1834. }
  1835. },
  1836. back: {
  1837. height: math.unit(11, "feet"),
  1838. weight: math.unit(80, "lb"),
  1839. name: "Back",
  1840. image: {
  1841. source: "./media/characters/rai/back.svg",
  1842. extra: 1,
  1843. bottom: 0.01
  1844. }
  1845. },
  1846. feral: {
  1847. height: math.unit(11, "feet"),
  1848. weight: math.unit(800, "lb"),
  1849. name: "Feral",
  1850. image: {
  1851. source: "./media/characters/rai/feral.svg",
  1852. extra: 1050 / 659,
  1853. bottom: 0.07
  1854. }
  1855. },
  1856. dragon: {
  1857. height: math.unit(23, "feet"),
  1858. weight: math.unit(50000, "lb"),
  1859. name: "Dragon",
  1860. image: {
  1861. source: "./media/characters/rai/dragon.svg",
  1862. extra: 2498 / 2030,
  1863. bottom: 85.2 / 2584
  1864. }
  1865. },
  1866. maw: {
  1867. height: math.unit(6 / 3.81416, "feet"),
  1868. name: "Maw",
  1869. image: {
  1870. source: "./media/characters/rai/maw.svg"
  1871. }
  1872. },
  1873. },
  1874. [
  1875. {
  1876. name: "Normal",
  1877. height: math.unit(11, "feet")
  1878. },
  1879. {
  1880. name: "Macro",
  1881. height: math.unit(302, "feet"),
  1882. default: true
  1883. },
  1884. ]
  1885. ))
  1886. characterMakers.push(() => makeCharacter(
  1887. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  1888. {
  1889. frontDressed: {
  1890. height: math.unit(216, "feet"),
  1891. weight: math.unit(7000000, "lb"),
  1892. name: "Front (Dressed)",
  1893. image: {
  1894. source: "./media/characters/jazzy/front-dressed.svg",
  1895. extra: 2738 / 2651,
  1896. bottom: 41.8 / 2786
  1897. }
  1898. },
  1899. backDressed: {
  1900. height: math.unit(216, "feet"),
  1901. weight: math.unit(7000000, "lb"),
  1902. name: "Back (Dressed)",
  1903. image: {
  1904. source: "./media/characters/jazzy/back-dressed.svg",
  1905. extra: 2775 / 2673,
  1906. bottom: 36.8 / 2817
  1907. }
  1908. },
  1909. front: {
  1910. height: math.unit(216, "feet"),
  1911. weight: math.unit(7000000, "lb"),
  1912. name: "Front",
  1913. image: {
  1914. source: "./media/characters/jazzy/front.svg",
  1915. extra: 2738 / 2651,
  1916. bottom: 41.8 / 2786
  1917. }
  1918. },
  1919. back: {
  1920. height: math.unit(216, "feet"),
  1921. weight: math.unit(7000000, "lb"),
  1922. name: "Back",
  1923. image: {
  1924. source: "./media/characters/jazzy/back.svg",
  1925. extra: 2775 / 2673,
  1926. bottom: 36.8 / 2817
  1927. }
  1928. },
  1929. maw: {
  1930. height: math.unit(20, "feet"),
  1931. name: "Maw",
  1932. image: {
  1933. source: "./media/characters/jazzy/maw.svg"
  1934. }
  1935. },
  1936. paws: {
  1937. height: math.unit(27.5, "feet"),
  1938. name: "Paws",
  1939. image: {
  1940. source: "./media/characters/jazzy/paws.svg"
  1941. }
  1942. },
  1943. eye: {
  1944. height: math.unit(4.4, "feet"),
  1945. name: "Eye",
  1946. image: {
  1947. source: "./media/characters/jazzy/eye.svg"
  1948. }
  1949. },
  1950. droneOffense: {
  1951. height: math.unit(9.5, "inches"),
  1952. name: "Drone (Offense)",
  1953. image: {
  1954. source: "./media/characters/jazzy/drone-offense.svg"
  1955. }
  1956. },
  1957. droneRecon: {
  1958. height: math.unit(9.5, "inches"),
  1959. name: "Drone (Recon)",
  1960. image: {
  1961. source: "./media/characters/jazzy/drone-recon.svg"
  1962. }
  1963. },
  1964. droneDefense: {
  1965. height: math.unit(9.5, "inches"),
  1966. name: "Drone (Defense)",
  1967. image: {
  1968. source: "./media/characters/jazzy/drone-defense.svg"
  1969. }
  1970. },
  1971. },
  1972. [
  1973. {
  1974. name: "Macro",
  1975. height: math.unit(216, "feet"),
  1976. default: true
  1977. },
  1978. ]
  1979. ))
  1980. characterMakers.push(() => makeCharacter(
  1981. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  1982. {
  1983. front: {
  1984. height: math.unit(7, "feet"),
  1985. weight: math.unit(80, "kg"),
  1986. name: "Front",
  1987. image: {
  1988. source: "./media/characters/flamm/front.svg",
  1989. extra: 1794 / 1677,
  1990. bottom: 31.7 / 1828.5
  1991. }
  1992. },
  1993. },
  1994. [
  1995. {
  1996. name: "Normal",
  1997. height: math.unit(9.5, "feet")
  1998. },
  1999. {
  2000. name: "Macro",
  2001. height: math.unit(200, "feet"),
  2002. default: true
  2003. },
  2004. ]
  2005. ))
  2006. characterMakers.push(() => makeCharacter(
  2007. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2008. {
  2009. front: {
  2010. height: math.unit(7, "feet"),
  2011. weight: math.unit(80, "kg"),
  2012. name: "Front",
  2013. image: {
  2014. source: "./media/characters/zephiro/front.svg",
  2015. extra: 2309 / 2162,
  2016. bottom: 0.069
  2017. }
  2018. },
  2019. side: {
  2020. height: math.unit(7, "feet"),
  2021. weight: math.unit(80, "kg"),
  2022. name: "Side",
  2023. image: {
  2024. source: "./media/characters/zephiro/side.svg",
  2025. extra: 2403 / 2279,
  2026. bottom: 0.015
  2027. }
  2028. },
  2029. back: {
  2030. height: math.unit(7, "feet"),
  2031. weight: math.unit(80, "kg"),
  2032. name: "Back",
  2033. image: {
  2034. source: "./media/characters/zephiro/back.svg",
  2035. extra: 2373 / 2244,
  2036. bottom: 0.013
  2037. }
  2038. },
  2039. },
  2040. [
  2041. {
  2042. name: "Micro",
  2043. height: math.unit(3, "inches")
  2044. },
  2045. {
  2046. name: "Normal",
  2047. height: math.unit(5 + 3 / 12, "feet"),
  2048. default: true
  2049. },
  2050. {
  2051. name: "Macro",
  2052. height: math.unit(118, "feet")
  2053. },
  2054. ]
  2055. ))
  2056. characterMakers.push(() => makeCharacter(
  2057. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2058. {
  2059. front: {
  2060. height: math.unit(5, "feet"),
  2061. weight: math.unit(90, "kg"),
  2062. name: "Front",
  2063. image: {
  2064. source: "./media/characters/fory/front.svg",
  2065. extra: 2862 / 2674,
  2066. bottom: 180 / 3043.8
  2067. }
  2068. },
  2069. back: {
  2070. height: math.unit(5, "feet"),
  2071. weight: math.unit(90, "kg"),
  2072. name: "Back",
  2073. image: {
  2074. source: "./media/characters/fory/back.svg",
  2075. extra: 2962 / 2791,
  2076. bottom: 106 / 3071.8
  2077. }
  2078. },
  2079. foot: {
  2080. height: math.unit(2.14, "feet"),
  2081. name: "Foot",
  2082. image: {
  2083. source: "./media/characters/fory/foot.svg"
  2084. }
  2085. },
  2086. },
  2087. [
  2088. {
  2089. name: "Normal",
  2090. height: math.unit(5, "feet")
  2091. },
  2092. {
  2093. name: "Macro",
  2094. height: math.unit(50, "feet"),
  2095. default: true
  2096. },
  2097. {
  2098. name: "Megamacro",
  2099. height: math.unit(10, "miles")
  2100. },
  2101. {
  2102. name: "Gigamacro",
  2103. height: math.unit(5, "earths")
  2104. },
  2105. ]
  2106. ))
  2107. characterMakers.push(() => makeCharacter(
  2108. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2109. {
  2110. front: {
  2111. height: math.unit(7, "feet"),
  2112. weight: math.unit(90, "kg"),
  2113. name: "Front",
  2114. image: {
  2115. source: "./media/characters/kurrikage/front.svg",
  2116. extra: 1,
  2117. bottom: 0.035
  2118. }
  2119. },
  2120. back: {
  2121. height: math.unit(7, "feet"),
  2122. weight: math.unit(90, "lb"),
  2123. name: "Back",
  2124. image: {
  2125. source: "./media/characters/kurrikage/back.svg"
  2126. }
  2127. },
  2128. paw: {
  2129. height: math.unit(1.5, "feet"),
  2130. name: "Paw",
  2131. image: {
  2132. source: "./media/characters/kurrikage/paw.svg"
  2133. }
  2134. },
  2135. staff: {
  2136. height: math.unit(6.7, "feet"),
  2137. name: "Staff",
  2138. image: {
  2139. source: "./media/characters/kurrikage/staff.svg"
  2140. }
  2141. },
  2142. peek: {
  2143. height: math.unit(1.05, "feet"),
  2144. name: "Peeking",
  2145. image: {
  2146. source: "./media/characters/kurrikage/peek.svg",
  2147. bottom: 0.08
  2148. }
  2149. },
  2150. },
  2151. [
  2152. {
  2153. name: "Normal",
  2154. height: math.unit(12, "feet"),
  2155. default: true
  2156. },
  2157. {
  2158. name: "Big",
  2159. height: math.unit(20, "feet")
  2160. },
  2161. {
  2162. name: "Macro",
  2163. height: math.unit(500, "feet")
  2164. },
  2165. {
  2166. name: "Megamacro",
  2167. height: math.unit(20, "miles")
  2168. },
  2169. ]
  2170. ))
  2171. characterMakers.push(() => makeCharacter(
  2172. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2173. {
  2174. front: {
  2175. height: math.unit(6, "feet"),
  2176. weight: math.unit(75, "kg"),
  2177. name: "Front",
  2178. image: {
  2179. source: "./media/characters/shingo/front.svg",
  2180. extra: 3511 / 3338,
  2181. bottom: 0.005
  2182. }
  2183. },
  2184. },
  2185. [
  2186. {
  2187. name: "Micro",
  2188. height: math.unit(4, "inches")
  2189. },
  2190. {
  2191. name: "Normal",
  2192. height: math.unit(6, "feet"),
  2193. default: true
  2194. },
  2195. {
  2196. name: "Macro",
  2197. height: math.unit(108, "feet")
  2198. }
  2199. ]
  2200. ))
  2201. characterMakers.push(() => makeCharacter(
  2202. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2203. {
  2204. side: {
  2205. height: math.unit(6, "feet"),
  2206. weight: math.unit(75, "kg"),
  2207. name: "Side",
  2208. image: {
  2209. source: "./media/characters/aigey/side.svg"
  2210. }
  2211. },
  2212. },
  2213. [
  2214. {
  2215. name: "Macro",
  2216. height: math.unit(200, "feet"),
  2217. default: true
  2218. },
  2219. {
  2220. name: "Megamacro",
  2221. height: math.unit(100, "miles")
  2222. },
  2223. ]
  2224. )
  2225. )
  2226. characterMakers.push(() => makeCharacter(
  2227. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2228. {
  2229. front: {
  2230. height: math.unit(5 + 5 / 12, "feet"),
  2231. weight: math.unit(75, "kg"),
  2232. name: "Front",
  2233. image: {
  2234. source: "./media/characters/natasha/front.svg",
  2235. extra: 859 / 824,
  2236. bottom: 23 / 879.6
  2237. }
  2238. },
  2239. frontNsfw: {
  2240. height: math.unit(5 + 5 / 12, "feet"),
  2241. weight: math.unit(75, "kg"),
  2242. name: "Front (NSFW)",
  2243. image: {
  2244. source: "./media/characters/natasha/front-nsfw.svg",
  2245. extra: 859 / 824,
  2246. bottom: 23 / 879.6
  2247. }
  2248. },
  2249. frontErect: {
  2250. height: math.unit(5 + 5 / 12, "feet"),
  2251. weight: math.unit(75, "kg"),
  2252. name: "Front (Erect)",
  2253. image: {
  2254. source: "./media/characters/natasha/front-erect.svg",
  2255. extra: 859 / 824,
  2256. bottom: 23 / 879.6
  2257. }
  2258. },
  2259. back: {
  2260. height: math.unit(5 + 5 / 12, "feet"),
  2261. weight: math.unit(75, "kg"),
  2262. name: "Back",
  2263. image: {
  2264. source: "./media/characters/natasha/back.svg",
  2265. extra: 887.9 / 852.6,
  2266. bottom: 9.7 / 896.4
  2267. }
  2268. },
  2269. backAlt: {
  2270. height: math.unit(5 + 5 / 12, "feet"),
  2271. weight: math.unit(75, "kg"),
  2272. name: "Back (Alt)",
  2273. image: {
  2274. source: "./media/characters/natasha/back-alt.svg",
  2275. extra: 1236.7 / 1192,
  2276. bottom: 22.3 / 1258.2
  2277. }
  2278. },
  2279. dick: {
  2280. height: math.unit(1.772, "feet"),
  2281. name: "Dick",
  2282. image: {
  2283. source: "./media/characters/natasha/dick.svg"
  2284. }
  2285. },
  2286. },
  2287. [
  2288. {
  2289. name: "Normal",
  2290. height: math.unit(5 + 5 / 12, "feet")
  2291. },
  2292. {
  2293. name: "Large",
  2294. height: math.unit(12, "feet")
  2295. },
  2296. {
  2297. name: "Macro",
  2298. height: math.unit(100, "feet"),
  2299. default: true
  2300. },
  2301. {
  2302. name: "Macro+",
  2303. height: math.unit(260, "feet")
  2304. },
  2305. {
  2306. name: "Macro++",
  2307. height: math.unit(1, "mile")
  2308. },
  2309. ]
  2310. ))
  2311. characterMakers.push(() => makeCharacter(
  2312. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2313. {
  2314. front: {
  2315. height: math.unit(6, "feet"),
  2316. weight: math.unit(75, "kg"),
  2317. name: "Front",
  2318. image: {
  2319. source: "./media/characters/malik/front.svg"
  2320. }
  2321. },
  2322. side: {
  2323. height: math.unit(6, "feet"),
  2324. weight: math.unit(75, "kg"),
  2325. name: "Side",
  2326. image: {
  2327. source: "./media/characters/malik/side.svg",
  2328. extra: 1.1539
  2329. }
  2330. },
  2331. back: {
  2332. height: math.unit(6, "feet"),
  2333. weight: math.unit(75, "kg"),
  2334. name: "Back",
  2335. image: {
  2336. source: "./media/characters/malik/back.svg"
  2337. }
  2338. },
  2339. },
  2340. [
  2341. {
  2342. name: "Macro",
  2343. height: math.unit(156, "feet"),
  2344. default: true
  2345. },
  2346. {
  2347. name: "Macro+",
  2348. height: math.unit(1188, "feet")
  2349. },
  2350. ]
  2351. ))
  2352. characterMakers.push(() => makeCharacter(
  2353. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2354. {
  2355. front: {
  2356. height: math.unit(6, "feet"),
  2357. weight: math.unit(75, "kg"),
  2358. name: "Front",
  2359. image: {
  2360. source: "./media/characters/sefer/front.svg",
  2361. extra: 848 / 659,
  2362. bottom: 28.3 / 876.442
  2363. }
  2364. },
  2365. back: {
  2366. height: math.unit(6, "feet"),
  2367. weight: math.unit(75, "kg"),
  2368. name: "Back",
  2369. image: {
  2370. source: "./media/characters/sefer/back.svg",
  2371. extra: 864 / 695,
  2372. bottom: 10 / 871
  2373. }
  2374. },
  2375. frontDressed: {
  2376. height: math.unit(6, "feet"),
  2377. weight: math.unit(75, "kg"),
  2378. name: "Front (Dressed)",
  2379. image: {
  2380. source: "./media/characters/sefer/front-dressed.svg",
  2381. extra: 839 / 653,
  2382. bottom: 37.6 / 878
  2383. }
  2384. },
  2385. },
  2386. [
  2387. {
  2388. name: "Normal",
  2389. height: math.unit(6, "feet"),
  2390. default: true
  2391. },
  2392. ]
  2393. ))
  2394. characterMakers.push(() => makeCharacter(
  2395. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2396. {
  2397. body: {
  2398. height: math.unit(2.2428, "meter"),
  2399. weight: math.unit(124.738, "kg"),
  2400. name: "Body",
  2401. image: {
  2402. extra: 1225 / 1050,
  2403. source: "./media/characters/north/front.svg"
  2404. }
  2405. }
  2406. },
  2407. [
  2408. {
  2409. name: "Micro",
  2410. height: math.unit(4, "inches")
  2411. },
  2412. {
  2413. name: "Macro",
  2414. height: math.unit(63, "meters")
  2415. },
  2416. {
  2417. name: "Megamacro",
  2418. height: math.unit(101, "miles"),
  2419. default: true
  2420. }
  2421. ]
  2422. ))
  2423. characterMakers.push(() => makeCharacter(
  2424. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2425. {
  2426. angled: {
  2427. height: math.unit(4, "meter"),
  2428. weight: math.unit(150, "kg"),
  2429. name: "Angled",
  2430. image: {
  2431. source: "./media/characters/talan/angled-sfw.svg",
  2432. bottom: 29 / 3734
  2433. }
  2434. },
  2435. angledNsfw: {
  2436. height: math.unit(4, "meter"),
  2437. weight: math.unit(150, "kg"),
  2438. name: "Angled (NSFW)",
  2439. image: {
  2440. source: "./media/characters/talan/angled-nsfw.svg",
  2441. bottom: 29 / 3734
  2442. }
  2443. },
  2444. frontNsfw: {
  2445. height: math.unit(4, "meter"),
  2446. weight: math.unit(150, "kg"),
  2447. name: "Front (NSFW)",
  2448. image: {
  2449. source: "./media/characters/talan/front-nsfw.svg",
  2450. bottom: 29 / 3734
  2451. }
  2452. },
  2453. sideNsfw: {
  2454. height: math.unit(4, "meter"),
  2455. weight: math.unit(150, "kg"),
  2456. name: "Side (NSFW)",
  2457. image: {
  2458. source: "./media/characters/talan/side-nsfw.svg",
  2459. bottom: 29 / 3734
  2460. }
  2461. },
  2462. back: {
  2463. height: math.unit(4, "meter"),
  2464. weight: math.unit(150, "kg"),
  2465. name: "Back",
  2466. image: {
  2467. source: "./media/characters/talan/back.svg"
  2468. }
  2469. },
  2470. dickBottom: {
  2471. height: math.unit(0.621, "meter"),
  2472. name: "Dick (Bottom)",
  2473. image: {
  2474. source: "./media/characters/talan/dick-bottom.svg"
  2475. }
  2476. },
  2477. dickTop: {
  2478. height: math.unit(0.621, "meter"),
  2479. name: "Dick (Top)",
  2480. image: {
  2481. source: "./media/characters/talan/dick-top.svg"
  2482. }
  2483. },
  2484. dickSide: {
  2485. height: math.unit(0.305, "meter"),
  2486. name: "Dick (Side)",
  2487. image: {
  2488. source: "./media/characters/talan/dick-side.svg"
  2489. }
  2490. },
  2491. dickFront: {
  2492. height: math.unit(0.305, "meter"),
  2493. name: "Dick (Front)",
  2494. image: {
  2495. source: "./media/characters/talan/dick-front.svg"
  2496. }
  2497. },
  2498. },
  2499. [
  2500. {
  2501. name: "Normal",
  2502. height: math.unit(4, "meters")
  2503. },
  2504. {
  2505. name: "Macro",
  2506. height: math.unit(100, "meters")
  2507. },
  2508. {
  2509. name: "Megamacro",
  2510. height: math.unit(2, "miles"),
  2511. default: true
  2512. },
  2513. {
  2514. name: "Gigamacro",
  2515. height: math.unit(5000, "miles")
  2516. },
  2517. {
  2518. name: "Teramacro",
  2519. height: math.unit(100, "parsecs")
  2520. }
  2521. ]
  2522. ))
  2523. characterMakers.push(() => makeCharacter(
  2524. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2525. {
  2526. front: {
  2527. height: math.unit(2, "meter"),
  2528. weight: math.unit(90, "kg"),
  2529. name: "Front",
  2530. image: {
  2531. source: "./media/characters/gael'rathus/front.svg"
  2532. }
  2533. },
  2534. frontAlt: {
  2535. height: math.unit(2, "meter"),
  2536. weight: math.unit(90, "kg"),
  2537. name: "Front (alt)",
  2538. image: {
  2539. source: "./media/characters/gael'rathus/front-alt.svg"
  2540. }
  2541. },
  2542. frontAlt2: {
  2543. height: math.unit(2, "meter"),
  2544. weight: math.unit(90, "kg"),
  2545. name: "Front (alt 2)",
  2546. image: {
  2547. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2548. }
  2549. }
  2550. },
  2551. [
  2552. {
  2553. name: "Normal",
  2554. height: math.unit(9, "feet"),
  2555. default: true
  2556. },
  2557. {
  2558. name: "Large",
  2559. height: math.unit(25, "feet")
  2560. },
  2561. {
  2562. name: "Macro",
  2563. height: math.unit(0.25, "miles")
  2564. },
  2565. {
  2566. name: "Megamacro",
  2567. height: math.unit(10, "miles")
  2568. }
  2569. ]
  2570. ))
  2571. characterMakers.push(() => makeCharacter(
  2572. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2573. {
  2574. side: {
  2575. height: math.unit(2, "meter"),
  2576. weight: math.unit(140, "kg"),
  2577. name: "Side",
  2578. image: {
  2579. source: "./media/characters/sosha/side.svg",
  2580. bottom: 0.042
  2581. }
  2582. },
  2583. },
  2584. [
  2585. {
  2586. name: "Normal",
  2587. height: math.unit(12, "feet"),
  2588. default: true
  2589. }
  2590. ]
  2591. ))
  2592. characterMakers.push(() => makeCharacter(
  2593. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2594. {
  2595. side: {
  2596. height: math.unit(5 + 5 / 12, "feet"),
  2597. weight: math.unit(170, "kg"),
  2598. name: "Side",
  2599. image: {
  2600. source: "./media/characters/runnola/side.svg",
  2601. extra: 741 / 448,
  2602. bottom: 0.05
  2603. }
  2604. },
  2605. },
  2606. [
  2607. {
  2608. name: "Small",
  2609. height: math.unit(3, "feet")
  2610. },
  2611. {
  2612. name: "Normal",
  2613. height: math.unit(5 + 5 / 12, "feet"),
  2614. default: true
  2615. },
  2616. {
  2617. name: "Big",
  2618. height: math.unit(10, "feet")
  2619. },
  2620. ]
  2621. ))
  2622. characterMakers.push(() => makeCharacter(
  2623. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2624. {
  2625. front: {
  2626. height: math.unit(2, "meter"),
  2627. weight: math.unit(50, "kg"),
  2628. name: "Front",
  2629. image: {
  2630. source: "./media/characters/kurribird/front.svg",
  2631. bottom: 0.015
  2632. }
  2633. },
  2634. frontAlt: {
  2635. height: math.unit(1.5, "meter"),
  2636. weight: math.unit(50, "kg"),
  2637. name: "Front (Alt)",
  2638. image: {
  2639. source: "./media/characters/kurribird/front-alt.svg",
  2640. extra: 1.45
  2641. }
  2642. },
  2643. },
  2644. [
  2645. {
  2646. name: "Normal",
  2647. height: math.unit(7, "feet")
  2648. },
  2649. {
  2650. name: "Big",
  2651. height: math.unit(12, "feet"),
  2652. default: true
  2653. },
  2654. {
  2655. name: "Macro",
  2656. height: math.unit(1500, "feet")
  2657. },
  2658. {
  2659. name: "Megamacro",
  2660. height: math.unit(2, "miles")
  2661. }
  2662. ]
  2663. ))
  2664. characterMakers.push(() => makeCharacter(
  2665. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2666. {
  2667. front: {
  2668. height: math.unit(2, "meter"),
  2669. weight: math.unit(80, "kg"),
  2670. name: "Front",
  2671. image: {
  2672. source: "./media/characters/elbial/front.svg",
  2673. extra: 1643 / 1556,
  2674. bottom: 60.2 / 1696
  2675. }
  2676. },
  2677. side: {
  2678. height: math.unit(2, "meter"),
  2679. weight: math.unit(80, "kg"),
  2680. name: "Side",
  2681. image: {
  2682. source: "./media/characters/elbial/side.svg",
  2683. extra: 1630 / 1565,
  2684. bottom: 71.5 / 1697
  2685. }
  2686. },
  2687. back: {
  2688. height: math.unit(2, "meter"),
  2689. weight: math.unit(80, "kg"),
  2690. name: "Back",
  2691. image: {
  2692. source: "./media/characters/elbial/back.svg",
  2693. extra: 1668 / 1595,
  2694. bottom: 5.6 / 1672
  2695. }
  2696. },
  2697. frontDressed: {
  2698. height: math.unit(2, "meter"),
  2699. weight: math.unit(80, "kg"),
  2700. name: "Front (Dressed)",
  2701. image: {
  2702. source: "./media/characters/elbial/front-dressed.svg",
  2703. extra: 1653 / 1584,
  2704. bottom: 57 / 1708
  2705. }
  2706. },
  2707. genitals: {
  2708. height: math.unit(2 / 3.367, "meter"),
  2709. name: "Genitals",
  2710. image: {
  2711. source: "./media/characters/elbial/genitals.svg"
  2712. }
  2713. },
  2714. },
  2715. [
  2716. {
  2717. name: "Large",
  2718. height: math.unit(100, "feet")
  2719. },
  2720. {
  2721. name: "Macro",
  2722. height: math.unit(500, "feet"),
  2723. default: true
  2724. },
  2725. {
  2726. name: "Megamacro",
  2727. height: math.unit(10, "miles")
  2728. },
  2729. {
  2730. name: "Gigamacro",
  2731. height: math.unit(25000, "miles")
  2732. },
  2733. {
  2734. name: "Full-Size",
  2735. height: math.unit(8000000, "gigaparsecs")
  2736. }
  2737. ]
  2738. ))
  2739. characterMakers.push(() => makeCharacter(
  2740. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2741. {
  2742. front: {
  2743. height: math.unit(2, "meter"),
  2744. weight: math.unit(60, "kg"),
  2745. name: "Front",
  2746. image: {
  2747. source: "./media/characters/noah/front.svg"
  2748. }
  2749. },
  2750. talons: {
  2751. height: math.unit(0.315, "meter"),
  2752. name: "Talons",
  2753. image: {
  2754. source: "./media/characters/noah/talons.svg"
  2755. }
  2756. }
  2757. },
  2758. [
  2759. {
  2760. name: "Large",
  2761. height: math.unit(50, "feet")
  2762. },
  2763. {
  2764. name: "Macro",
  2765. height: math.unit(750, "feet"),
  2766. default: true
  2767. },
  2768. {
  2769. name: "Megamacro",
  2770. height: math.unit(50, "miles")
  2771. },
  2772. {
  2773. name: "Gigamacro",
  2774. height: math.unit(100000, "miles")
  2775. },
  2776. {
  2777. name: "Full-Size",
  2778. height: math.unit(3000000000, "miles")
  2779. }
  2780. ]
  2781. ))
  2782. characterMakers.push(() => makeCharacter(
  2783. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2784. {
  2785. front: {
  2786. height: math.unit(2, "meter"),
  2787. weight: math.unit(80, "kg"),
  2788. name: "Front",
  2789. image: {
  2790. source: "./media/characters/natalya/front.svg"
  2791. }
  2792. },
  2793. back: {
  2794. height: math.unit(2, "meter"),
  2795. weight: math.unit(80, "kg"),
  2796. name: "Back",
  2797. image: {
  2798. source: "./media/characters/natalya/back.svg"
  2799. }
  2800. }
  2801. },
  2802. [
  2803. {
  2804. name: "Normal",
  2805. height: math.unit(150, "feet"),
  2806. default: true
  2807. },
  2808. {
  2809. name: "Megamacro",
  2810. height: math.unit(5, "miles")
  2811. },
  2812. {
  2813. name: "Full-Size",
  2814. height: math.unit(600, "kiloparsecs")
  2815. }
  2816. ]
  2817. ))
  2818. characterMakers.push(() => makeCharacter(
  2819. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2820. {
  2821. front: {
  2822. height: math.unit(2, "meter"),
  2823. weight: math.unit(50, "kg"),
  2824. name: "Front",
  2825. image: {
  2826. source: "./media/characters/erestrebah/front.svg",
  2827. extra: 208 / 193,
  2828. bottom: 0.055
  2829. }
  2830. },
  2831. back: {
  2832. height: math.unit(2, "meter"),
  2833. weight: math.unit(50, "kg"),
  2834. name: "Back",
  2835. image: {
  2836. source: "./media/characters/erestrebah/back.svg",
  2837. extra: 1.3
  2838. }
  2839. }
  2840. },
  2841. [
  2842. {
  2843. name: "Normal",
  2844. height: math.unit(10, "feet")
  2845. },
  2846. {
  2847. name: "Large",
  2848. height: math.unit(50, "feet"),
  2849. default: true
  2850. },
  2851. {
  2852. name: "Macro",
  2853. height: math.unit(300, "feet")
  2854. },
  2855. {
  2856. name: "Macro+",
  2857. height: math.unit(750, "feet")
  2858. },
  2859. {
  2860. name: "Megamacro",
  2861. height: math.unit(3, "miles")
  2862. }
  2863. ]
  2864. ))
  2865. characterMakers.push(() => makeCharacter(
  2866. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2867. {
  2868. front: {
  2869. height: math.unit(2, "meter"),
  2870. weight: math.unit(80, "kg"),
  2871. name: "Front",
  2872. image: {
  2873. source: "./media/characters/jennifer/front.svg",
  2874. bottom: 0.11,
  2875. extra: 1.16
  2876. }
  2877. },
  2878. frontAlt: {
  2879. height: math.unit(2, "meter"),
  2880. weight: math.unit(80, "kg"),
  2881. name: "Front (Alt)",
  2882. image: {
  2883. source: "./media/characters/jennifer/front-alt.svg"
  2884. }
  2885. }
  2886. },
  2887. [
  2888. {
  2889. name: "Canon Height",
  2890. height: math.unit(120, "feet"),
  2891. default: true
  2892. },
  2893. {
  2894. name: "Macro+",
  2895. height: math.unit(300, "feet")
  2896. },
  2897. {
  2898. name: "Megamacro",
  2899. height: math.unit(20000, "feet")
  2900. }
  2901. ]
  2902. ))
  2903. characterMakers.push(() => makeCharacter(
  2904. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  2905. {
  2906. front: {
  2907. height: math.unit(2, "meter"),
  2908. weight: math.unit(50, "kg"),
  2909. name: "Front",
  2910. image: {
  2911. source: "./media/characters/kalista/front.svg",
  2912. extra: 1947 / 1700,
  2913. bottom: 76.6 / 1412.98
  2914. }
  2915. },
  2916. back: {
  2917. height: math.unit(2, "meter"),
  2918. weight: math.unit(50, "kg"),
  2919. name: "Back",
  2920. image: {
  2921. source: "./media/characters/kalista/back.svg",
  2922. extra: 1366 / 1156,
  2923. bottom: 33.9 / 1362.78
  2924. }
  2925. }
  2926. },
  2927. [
  2928. {
  2929. name: "Uncomfortably Small",
  2930. height: math.unit(10, "feet")
  2931. },
  2932. {
  2933. name: "Small",
  2934. height: math.unit(30, "feet")
  2935. },
  2936. {
  2937. name: "Macro",
  2938. height: math.unit(100, "feet"),
  2939. default: true
  2940. },
  2941. {
  2942. name: "Macro+",
  2943. height: math.unit(2000, "feet")
  2944. },
  2945. {
  2946. name: "True Form",
  2947. height: math.unit(8924, "miles")
  2948. }
  2949. ]
  2950. ))
  2951. characterMakers.push(() => makeCharacter(
  2952. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  2953. {
  2954. front: {
  2955. height: math.unit(2, "meter"),
  2956. weight: math.unit(120, "kg"),
  2957. name: "Front",
  2958. image: {
  2959. source: "./media/characters/ggv/front.svg"
  2960. }
  2961. },
  2962. side: {
  2963. height: math.unit(2, "meter"),
  2964. weight: math.unit(120, "kg"),
  2965. name: "Side",
  2966. image: {
  2967. source: "./media/characters/ggv/side.svg"
  2968. }
  2969. }
  2970. },
  2971. [
  2972. {
  2973. name: "Extremely Puny",
  2974. height: math.unit(9 + 5 / 12, "feet")
  2975. },
  2976. {
  2977. name: "Horribly Small",
  2978. height: math.unit(47.7, "miles"),
  2979. default: true
  2980. },
  2981. {
  2982. name: "Reasonably Sized",
  2983. height: math.unit(25000, "parsecs")
  2984. },
  2985. {
  2986. name: "Slightly Uncompressed",
  2987. height: math.unit(7.77e31, "parsecs")
  2988. },
  2989. {
  2990. name: "Omniversal",
  2991. height: math.unit(1e300, "meters")
  2992. },
  2993. ]
  2994. ))
  2995. characterMakers.push(() => makeCharacter(
  2996. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  2997. {
  2998. front: {
  2999. height: math.unit(2, "meter"),
  3000. weight: math.unit(75, "lb"),
  3001. name: "Front",
  3002. image: {
  3003. source: "./media/characters/napalm/front.svg"
  3004. }
  3005. },
  3006. back: {
  3007. height: math.unit(2, "meter"),
  3008. weight: math.unit(75, "lb"),
  3009. name: "Back",
  3010. image: {
  3011. source: "./media/characters/napalm/back.svg"
  3012. }
  3013. }
  3014. },
  3015. [
  3016. {
  3017. name: "Standard",
  3018. height: math.unit(55, "feet"),
  3019. default: true
  3020. }
  3021. ]
  3022. ))
  3023. characterMakers.push(() => makeCharacter(
  3024. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3025. {
  3026. front: {
  3027. height: math.unit(7 + 5 / 6, "feet"),
  3028. weight: math.unit(325, "lb"),
  3029. name: "Front",
  3030. image: {
  3031. source: "./media/characters/asana/front.svg",
  3032. extra: 1128 / 1068
  3033. }
  3034. },
  3035. back: {
  3036. height: math.unit(7 + 5 / 6, "feet"),
  3037. weight: math.unit(325, "lb"),
  3038. name: "Back",
  3039. image: {
  3040. source: "./media/characters/asana/back.svg",
  3041. extra: 1128 / 1068
  3042. }
  3043. },
  3044. },
  3045. [
  3046. {
  3047. name: "Standard",
  3048. height: math.unit(7 + 5 / 6, "feet"),
  3049. default: true
  3050. },
  3051. {
  3052. name: "Large",
  3053. height: math.unit(10, "meters")
  3054. },
  3055. {
  3056. name: "Macro",
  3057. height: math.unit(2500, "meters")
  3058. },
  3059. {
  3060. name: "Megamacro",
  3061. height: math.unit(5e6, "meters")
  3062. },
  3063. {
  3064. name: "Examacro",
  3065. height: math.unit(5e12, "lightyears")
  3066. },
  3067. {
  3068. name: "Max Size",
  3069. height: math.unit(1e31, "lightyears")
  3070. }
  3071. ]
  3072. ))
  3073. characterMakers.push(() => makeCharacter(
  3074. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3075. {
  3076. front: {
  3077. height: math.unit(2, "meter"),
  3078. weight: math.unit(60, "kg"),
  3079. name: "Front",
  3080. image: {
  3081. source: "./media/characters/ebony/front.svg",
  3082. bottom: 0.03,
  3083. extra: 1045 / 810 + 0.03
  3084. }
  3085. },
  3086. side: {
  3087. height: math.unit(2, "meter"),
  3088. weight: math.unit(60, "kg"),
  3089. name: "Side",
  3090. image: {
  3091. source: "./media/characters/ebony/side.svg",
  3092. bottom: 0.03,
  3093. extra: 1045 / 810 + 0.03
  3094. }
  3095. },
  3096. back: {
  3097. height: math.unit(2, "meter"),
  3098. weight: math.unit(60, "kg"),
  3099. name: "Back",
  3100. image: {
  3101. source: "./media/characters/ebony/back.svg",
  3102. bottom: 0.01,
  3103. extra: 1045 / 810 + 0.01
  3104. }
  3105. },
  3106. },
  3107. [
  3108. // TODO check why I did this lol
  3109. {
  3110. name: "Standard",
  3111. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3112. default: true
  3113. },
  3114. {
  3115. name: "Macro",
  3116. height: math.unit(200, "feet")
  3117. },
  3118. {
  3119. name: "Gigamacro",
  3120. height: math.unit(13000, "km")
  3121. }
  3122. ]
  3123. ))
  3124. characterMakers.push(() => makeCharacter(
  3125. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3126. {
  3127. front: {
  3128. height: math.unit(6, "feet"),
  3129. weight: math.unit(175, "lb"),
  3130. name: "Front",
  3131. image: {
  3132. source: "./media/characters/mountain/front.svg"
  3133. }
  3134. },
  3135. back: {
  3136. height: math.unit(6, "feet"),
  3137. weight: math.unit(175, "lb"),
  3138. name: "Back",
  3139. image: {
  3140. source: "./media/characters/mountain/back.svg"
  3141. }
  3142. },
  3143. },
  3144. [
  3145. {
  3146. name: "Large",
  3147. height: math.unit(20, "meters")
  3148. },
  3149. {
  3150. name: "Macro",
  3151. height: math.unit(300, "meters")
  3152. },
  3153. {
  3154. name: "Gigamacro",
  3155. height: math.unit(10000, "km"),
  3156. default: true
  3157. },
  3158. {
  3159. name: "Examacro",
  3160. height: math.unit(10e9, "lightyears")
  3161. }
  3162. ]
  3163. ))
  3164. characterMakers.push(() => makeCharacter(
  3165. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3166. {
  3167. front: {
  3168. height: math.unit(8, "feet"),
  3169. weight: math.unit(500, "lb"),
  3170. name: "Front",
  3171. image: {
  3172. source: "./media/characters/rick/front.svg"
  3173. }
  3174. }
  3175. },
  3176. [
  3177. {
  3178. name: "Normal",
  3179. height: math.unit(8, "feet"),
  3180. default: true
  3181. },
  3182. {
  3183. name: "Macro",
  3184. height: math.unit(5, "km")
  3185. }
  3186. ]
  3187. ))
  3188. characterMakers.push(() => makeCharacter(
  3189. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3190. {
  3191. front: {
  3192. height: math.unit(8, "feet"),
  3193. weight: math.unit(120, "lb"),
  3194. name: "Front",
  3195. image: {
  3196. source: "./media/characters/ona/front.svg"
  3197. }
  3198. },
  3199. frontAlt: {
  3200. height: math.unit(8, "feet"),
  3201. weight: math.unit(120, "lb"),
  3202. name: "Front (Alt)",
  3203. image: {
  3204. source: "./media/characters/ona/front-alt.svg"
  3205. }
  3206. },
  3207. back: {
  3208. height: math.unit(8, "feet"),
  3209. weight: math.unit(120, "lb"),
  3210. name: "Back",
  3211. image: {
  3212. source: "./media/characters/ona/back.svg"
  3213. }
  3214. },
  3215. foot: {
  3216. height: math.unit(1.1, "feet"),
  3217. name: "Foot",
  3218. image: {
  3219. source: "./media/characters/ona/foot.svg"
  3220. }
  3221. }
  3222. },
  3223. [
  3224. {
  3225. name: "Megamacro",
  3226. height: math.unit(70, "km"),
  3227. default: true
  3228. },
  3229. {
  3230. name: "Gigamacro",
  3231. height: math.unit(681818, "miles")
  3232. },
  3233. {
  3234. name: "Examacro",
  3235. height: math.unit(3800000, "lightyears")
  3236. },
  3237. ]
  3238. ))
  3239. characterMakers.push(() => makeCharacter(
  3240. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3241. {
  3242. front: {
  3243. height: math.unit(12, "feet"),
  3244. weight: math.unit(3000, "lb"),
  3245. name: "Front",
  3246. image: {
  3247. source: "./media/characters/mech/front.svg",
  3248. bottom: 0.025,
  3249. }
  3250. },
  3251. back: {
  3252. height: math.unit(12, "feet"),
  3253. weight: math.unit(3000, "lb"),
  3254. name: "Back",
  3255. image: {
  3256. source: "./media/characters/mech/back.svg",
  3257. bottom: 0.03,
  3258. }
  3259. }
  3260. },
  3261. [
  3262. {
  3263. name: "Normal",
  3264. height: math.unit(12, "feet")
  3265. },
  3266. {
  3267. name: "Macro",
  3268. height: math.unit(300, "feet"),
  3269. default: true
  3270. },
  3271. {
  3272. name: "Macro+",
  3273. height: math.unit(1500, "feet")
  3274. },
  3275. ]
  3276. ))
  3277. characterMakers.push(() => makeCharacter(
  3278. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3279. {
  3280. front: {
  3281. height: math.unit(1.3, "meter"),
  3282. weight: math.unit(30, "kg"),
  3283. name: "Front",
  3284. image: {
  3285. source: "./media/characters/gregory/front.svg",
  3286. }
  3287. }
  3288. },
  3289. [
  3290. {
  3291. name: "Normal",
  3292. height: math.unit(1.3, "meter"),
  3293. default: true
  3294. },
  3295. {
  3296. name: "Macro",
  3297. height: math.unit(20, "meter")
  3298. }
  3299. ]
  3300. ))
  3301. characterMakers.push(() => makeCharacter(
  3302. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3303. {
  3304. front: {
  3305. height: math.unit(2.8, "meter"),
  3306. weight: math.unit(200, "kg"),
  3307. name: "Front",
  3308. image: {
  3309. source: "./media/characters/elory/front.svg",
  3310. }
  3311. }
  3312. },
  3313. [
  3314. {
  3315. name: "Normal",
  3316. height: math.unit(2.8, "meter"),
  3317. default: true
  3318. },
  3319. {
  3320. name: "Macro",
  3321. height: math.unit(38, "meter")
  3322. }
  3323. ]
  3324. ))
  3325. characterMakers.push(() => makeCharacter(
  3326. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3327. {
  3328. front: {
  3329. height: math.unit(470, "feet"),
  3330. weight: math.unit(924, "tons"),
  3331. name: "Front",
  3332. image: {
  3333. source: "./media/characters/angelpatamon/front.svg",
  3334. }
  3335. }
  3336. },
  3337. [
  3338. {
  3339. name: "Normal",
  3340. height: math.unit(470, "feet"),
  3341. default: true
  3342. },
  3343. {
  3344. name: "Deity Size I",
  3345. height: math.unit(28651.2, "km")
  3346. },
  3347. {
  3348. name: "Deity Size II",
  3349. height: math.unit(171907.2, "km")
  3350. }
  3351. ]
  3352. ))
  3353. characterMakers.push(() => makeCharacter(
  3354. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3355. {
  3356. side: {
  3357. height: math.unit(7.2, "meter"),
  3358. weight: math.unit(8.2, "tons"),
  3359. name: "Side",
  3360. image: {
  3361. source: "./media/characters/cryae/side.svg",
  3362. extra: 3500 / 1500
  3363. }
  3364. }
  3365. },
  3366. [
  3367. {
  3368. name: "Normal",
  3369. height: math.unit(7.2, "meter"),
  3370. default: true
  3371. }
  3372. ]
  3373. ))
  3374. characterMakers.push(() => makeCharacter(
  3375. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3376. {
  3377. front: {
  3378. height: math.unit(6, "feet"),
  3379. weight: math.unit(175, "lb"),
  3380. name: "Front",
  3381. image: {
  3382. source: "./media/characters/xera/front.svg",
  3383. extra: 2300 / 2061
  3384. }
  3385. },
  3386. side: {
  3387. height: math.unit(6, "feet"),
  3388. weight: math.unit(175, "lb"),
  3389. name: "Side",
  3390. image: {
  3391. source: "./media/characters/xera/side.svg",
  3392. extra: 2300 / 2061
  3393. }
  3394. },
  3395. back: {
  3396. height: math.unit(6, "feet"),
  3397. weight: math.unit(175, "lb"),
  3398. name: "Back",
  3399. image: {
  3400. source: "./media/characters/xera/back.svg"
  3401. }
  3402. },
  3403. },
  3404. [
  3405. {
  3406. name: "Small",
  3407. height: math.unit(10, "feet")
  3408. },
  3409. {
  3410. name: "Macro",
  3411. height: math.unit(500, "meters"),
  3412. default: true
  3413. },
  3414. {
  3415. name: "Macro+",
  3416. height: math.unit(10, "km")
  3417. },
  3418. {
  3419. name: "Gigamacro",
  3420. height: math.unit(25000, "km")
  3421. },
  3422. {
  3423. name: "Teramacro",
  3424. height: math.unit(3e6, "km")
  3425. }
  3426. ]
  3427. ))
  3428. characterMakers.push(() => makeCharacter(
  3429. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3430. {
  3431. front: {
  3432. height: math.unit(6, "feet"),
  3433. weight: math.unit(175, "lb"),
  3434. name: "Front",
  3435. image: {
  3436. source: "./media/characters/nebula/front.svg",
  3437. extra: 2600 / 2450
  3438. }
  3439. }
  3440. },
  3441. [
  3442. {
  3443. name: "Small",
  3444. height: math.unit(4.5, "meters")
  3445. },
  3446. {
  3447. name: "Macro",
  3448. height: math.unit(1500, "meters"),
  3449. default: true
  3450. },
  3451. {
  3452. name: "Megamacro",
  3453. height: math.unit(150, "km")
  3454. },
  3455. {
  3456. name: "Gigamacro",
  3457. height: math.unit(27000, "km")
  3458. }
  3459. ]
  3460. ))
  3461. characterMakers.push(() => makeCharacter(
  3462. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3463. {
  3464. front: {
  3465. height: math.unit(6, "feet"),
  3466. weight: math.unit(225, "lb"),
  3467. name: "Front",
  3468. image: {
  3469. source: "./media/characters/abysgar/front.svg"
  3470. }
  3471. }
  3472. },
  3473. [
  3474. {
  3475. name: "Small",
  3476. height: math.unit(4.5, "meters")
  3477. },
  3478. {
  3479. name: "Macro",
  3480. height: math.unit(1250, "meters"),
  3481. default: true
  3482. },
  3483. {
  3484. name: "Megamacro",
  3485. height: math.unit(125, "km")
  3486. },
  3487. {
  3488. name: "Gigamacro",
  3489. height: math.unit(26000, "km")
  3490. }
  3491. ]
  3492. ))
  3493. characterMakers.push(() => makeCharacter(
  3494. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3495. {
  3496. front: {
  3497. height: math.unit(6, "feet"),
  3498. weight: math.unit(180, "lb"),
  3499. name: "Front",
  3500. image: {
  3501. source: "./media/characters/yakuz/front.svg"
  3502. }
  3503. }
  3504. },
  3505. [
  3506. {
  3507. name: "Small",
  3508. height: math.unit(5, "meters")
  3509. },
  3510. {
  3511. name: "Macro",
  3512. height: math.unit(1500, "meters"),
  3513. default: true
  3514. },
  3515. {
  3516. name: "Megamacro",
  3517. height: math.unit(200, "km")
  3518. },
  3519. {
  3520. name: "Gigamacro",
  3521. height: math.unit(100000, "km")
  3522. }
  3523. ]
  3524. ))
  3525. characterMakers.push(() => makeCharacter(
  3526. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3527. {
  3528. front: {
  3529. height: math.unit(6, "feet"),
  3530. weight: math.unit(175, "lb"),
  3531. name: "Front",
  3532. image: {
  3533. source: "./media/characters/mirova/front.svg"
  3534. }
  3535. }
  3536. },
  3537. [
  3538. {
  3539. name: "Small",
  3540. height: math.unit(5, "meters")
  3541. },
  3542. {
  3543. name: "Macro",
  3544. height: math.unit(900, "meters"),
  3545. default: true
  3546. },
  3547. {
  3548. name: "Megamacro",
  3549. height: math.unit(135, "km")
  3550. },
  3551. {
  3552. name: "Gigamacro",
  3553. height: math.unit(20000, "km")
  3554. }
  3555. ]
  3556. ))
  3557. characterMakers.push(() => makeCharacter(
  3558. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3559. {
  3560. side: {
  3561. height: math.unit(28.35, "feet"),
  3562. weight: math.unit(99.75, "tons"),
  3563. name: "Side",
  3564. image: {
  3565. source: "./media/characters/asana-mech/side.svg"
  3566. }
  3567. }
  3568. },
  3569. [
  3570. {
  3571. name: "Normal",
  3572. height: math.unit(28.35, "feet"),
  3573. default: true
  3574. },
  3575. {
  3576. name: "Macro",
  3577. height: math.unit(2500, "feet")
  3578. },
  3579. {
  3580. name: "Megamacro",
  3581. height: math.unit(25, "miles")
  3582. },
  3583. {
  3584. name: "Examacro",
  3585. height: math.unit(6e8, "lightyears")
  3586. },
  3587. ]
  3588. ))
  3589. characterMakers.push(() => makeCharacter(
  3590. { name: "Ashtrek", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3591. {
  3592. front: {
  3593. height: math.unit(2, "meters"),
  3594. weight: math.unit(70, "kg"),
  3595. name: "Front",
  3596. image: {
  3597. source: "./media/characters/ashtrek/front.svg",
  3598. extra: 560 / 524,
  3599. bottom: 0.01
  3600. }
  3601. },
  3602. frontArmor: {
  3603. height: math.unit(2, "meters"),
  3604. weight: math.unit(76, "kg"),
  3605. name: "Front (Armor)",
  3606. image: {
  3607. source: "./media/characters/ashtrek/front-armor.svg",
  3608. extra: 561 / 527,
  3609. bottom: 0.01
  3610. }
  3611. },
  3612. side: {
  3613. height: math.unit(2, "meters"),
  3614. weight: math.unit(70, "kg"),
  3615. name: "Side",
  3616. image: {
  3617. source: "./media/characters/ashtrek/side.svg",
  3618. extra: 1717 / 1609,
  3619. bottom: 0.005
  3620. }
  3621. },
  3622. back: {
  3623. height: math.unit(2, "meters"),
  3624. weight: math.unit(70, "kg"),
  3625. name: "Back",
  3626. image: {
  3627. source: "./media/characters/ashtrek/back.svg",
  3628. extra: 1570 / 1501
  3629. }
  3630. },
  3631. },
  3632. [
  3633. {
  3634. name: "DEFCON 5",
  3635. height: math.unit(5, "meters")
  3636. },
  3637. {
  3638. name: "DEFCON 4",
  3639. height: math.unit(500, "meters"),
  3640. default: true
  3641. },
  3642. {
  3643. name: "DEFCON 3",
  3644. height: math.unit(5, "km")
  3645. },
  3646. {
  3647. name: "DEFCON 2",
  3648. height: math.unit(500, "km")
  3649. },
  3650. {
  3651. name: "DEFCON 1",
  3652. height: math.unit(500000, "km")
  3653. },
  3654. {
  3655. name: "DEFCON 0",
  3656. height: math.unit(3, "gigaparsecs")
  3657. },
  3658. ]
  3659. ))
  3660. characterMakers.push(() => makeCharacter(
  3661. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3662. {
  3663. front: {
  3664. height: math.unit(2, "meters"),
  3665. weight: math.unit(76, "kg"),
  3666. name: "Front",
  3667. image: {
  3668. source: "./media/characters/gale/front.svg"
  3669. }
  3670. },
  3671. frontAlt1: {
  3672. height: math.unit(2, "meters"),
  3673. weight: math.unit(76, "kg"),
  3674. name: "Front (Alt 1)",
  3675. image: {
  3676. source: "./media/characters/gale/front-alt-1.svg"
  3677. }
  3678. },
  3679. frontAlt2: {
  3680. height: math.unit(2, "meters"),
  3681. weight: math.unit(76, "kg"),
  3682. name: "Front (Alt 2)",
  3683. image: {
  3684. source: "./media/characters/gale/front-alt-2.svg"
  3685. }
  3686. },
  3687. },
  3688. [
  3689. {
  3690. name: "Normal",
  3691. height: math.unit(7, "feet")
  3692. },
  3693. {
  3694. name: "Macro",
  3695. height: math.unit(150, "feet"),
  3696. default: true
  3697. },
  3698. {
  3699. name: "Macro+",
  3700. height: math.unit(300, "feet")
  3701. },
  3702. ]
  3703. ))
  3704. characterMakers.push(() => makeCharacter(
  3705. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3706. {
  3707. front: {
  3708. height: math.unit(2, "meters"),
  3709. weight: math.unit(76, "kg"),
  3710. name: "Front",
  3711. image: {
  3712. source: "./media/characters/draylen/front.svg"
  3713. }
  3714. }
  3715. },
  3716. [
  3717. {
  3718. name: "Macro",
  3719. height: math.unit(150, "feet"),
  3720. default: true
  3721. }
  3722. ]
  3723. ))
  3724. characterMakers.push(() => makeCharacter(
  3725. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3726. {
  3727. front: {
  3728. height: math.unit(7 + 9 / 12, "feet"),
  3729. weight: math.unit(379, "lbs"),
  3730. name: "Front",
  3731. image: {
  3732. source: "./media/characters/chez/front.svg"
  3733. }
  3734. },
  3735. side: {
  3736. height: math.unit(7 + 9 / 12, "feet"),
  3737. weight: math.unit(379, "lbs"),
  3738. name: "Side",
  3739. image: {
  3740. source: "./media/characters/chez/side.svg"
  3741. }
  3742. }
  3743. },
  3744. [
  3745. {
  3746. name: "Normal",
  3747. height: math.unit(7 + 9 / 12, "feet"),
  3748. default: true
  3749. },
  3750. {
  3751. name: "God King",
  3752. height: math.unit(9750000, "meters")
  3753. }
  3754. ]
  3755. ))
  3756. characterMakers.push(() => makeCharacter(
  3757. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  3758. {
  3759. front: {
  3760. height: math.unit(6, "feet"),
  3761. weight: math.unit(275, "lbs"),
  3762. name: "Front",
  3763. image: {
  3764. source: "./media/characters/kaylum/front.svg",
  3765. bottom: 0.01,
  3766. extra: 1166 / 1031
  3767. }
  3768. },
  3769. frontWingless: {
  3770. height: math.unit(6, "feet"),
  3771. weight: math.unit(275, "lbs"),
  3772. name: "Front (Wingless)",
  3773. image: {
  3774. source: "./media/characters/kaylum/front-wingless.svg",
  3775. bottom: 0.01,
  3776. extra: 1117 / 1031
  3777. }
  3778. }
  3779. },
  3780. [
  3781. {
  3782. name: "Normal",
  3783. height: math.unit(3.05, "meters")
  3784. },
  3785. {
  3786. name: "Master",
  3787. height: math.unit(5.5, "meters")
  3788. },
  3789. {
  3790. name: "Rampage",
  3791. height: math.unit(19, "meters")
  3792. },
  3793. {
  3794. name: "Macro Lite",
  3795. height: math.unit(37, "meters")
  3796. },
  3797. {
  3798. name: "Hyper Predator",
  3799. height: math.unit(61, "meters")
  3800. },
  3801. {
  3802. name: "Macro",
  3803. height: math.unit(138, "meters"),
  3804. default: true
  3805. }
  3806. ]
  3807. ))
  3808. characterMakers.push(() => makeCharacter(
  3809. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  3810. {
  3811. front: {
  3812. height: math.unit(6, "feet"),
  3813. weight: math.unit(150, "lbs"),
  3814. name: "Front",
  3815. image: {
  3816. source: "./media/characters/geta/front.svg"
  3817. }
  3818. }
  3819. },
  3820. [
  3821. {
  3822. name: "Micro",
  3823. height: math.unit(3, "inches"),
  3824. default: true
  3825. },
  3826. {
  3827. name: "Normal",
  3828. height: math.unit(5 + 5 / 12, "feet")
  3829. }
  3830. ]
  3831. ))
  3832. characterMakers.push(() => makeCharacter(
  3833. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  3834. {
  3835. front: {
  3836. height: math.unit(6, "feet"),
  3837. weight: math.unit(300, "lbs"),
  3838. name: "Front",
  3839. image: {
  3840. source: "./media/characters/tyrnn/front.svg"
  3841. }
  3842. }
  3843. },
  3844. [
  3845. {
  3846. name: "Main Height",
  3847. height: math.unit(355, "feet"),
  3848. default: true
  3849. },
  3850. {
  3851. name: "Fave. Height",
  3852. height: math.unit(2400, "feet")
  3853. }
  3854. ]
  3855. ))
  3856. characterMakers.push(() => makeCharacter(
  3857. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  3858. {
  3859. front: {
  3860. height: math.unit(6, "feet"),
  3861. weight: math.unit(300, "lbs"),
  3862. name: "Front",
  3863. image: {
  3864. source: "./media/characters/appledectomy/front.svg"
  3865. }
  3866. }
  3867. },
  3868. [
  3869. {
  3870. name: "Macro",
  3871. height: math.unit(2500, "feet")
  3872. },
  3873. {
  3874. name: "Megamacro",
  3875. height: math.unit(50, "miles"),
  3876. default: true
  3877. },
  3878. {
  3879. name: "Gigamacro",
  3880. height: math.unit(5000, "miles")
  3881. },
  3882. {
  3883. name: "Teramacro",
  3884. height: math.unit(250000, "miles")
  3885. },
  3886. ]
  3887. ))
  3888. characterMakers.push(() => makeCharacter(
  3889. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  3890. {
  3891. front: {
  3892. height: math.unit(6, "feet"),
  3893. weight: math.unit(200, "lbs"),
  3894. name: "Front",
  3895. image: {
  3896. source: "./media/characters/vulpes/front.svg",
  3897. extra: 573 / 543,
  3898. bottom: 0.033
  3899. }
  3900. },
  3901. side: {
  3902. height: math.unit(6, "feet"),
  3903. weight: math.unit(200, "lbs"),
  3904. name: "Side",
  3905. image: {
  3906. source: "./media/characters/vulpes/side.svg",
  3907. extra: 573 / 543,
  3908. bottom: 0.01
  3909. }
  3910. },
  3911. back: {
  3912. height: math.unit(6, "feet"),
  3913. weight: math.unit(200, "lbs"),
  3914. name: "Back",
  3915. image: {
  3916. source: "./media/characters/vulpes/back.svg",
  3917. extra: 573 / 543,
  3918. }
  3919. },
  3920. feet: {
  3921. height: math.unit(1.276, "feet"),
  3922. name: "Feet",
  3923. image: {
  3924. source: "./media/characters/vulpes/feet.svg"
  3925. }
  3926. },
  3927. maw: {
  3928. height: math.unit(1.18, "feet"),
  3929. name: "Maw",
  3930. image: {
  3931. source: "./media/characters/vulpes/maw.svg"
  3932. }
  3933. },
  3934. },
  3935. [
  3936. {
  3937. name: "Micro",
  3938. height: math.unit(2, "inches")
  3939. },
  3940. {
  3941. name: "Normal",
  3942. height: math.unit(6.3, "feet")
  3943. },
  3944. {
  3945. name: "Macro",
  3946. height: math.unit(850, "feet")
  3947. },
  3948. {
  3949. name: "Megamacro",
  3950. height: math.unit(7500, "feet"),
  3951. default: true
  3952. },
  3953. {
  3954. name: "Gigamacro",
  3955. height: math.unit(570000, "miles")
  3956. }
  3957. ]
  3958. ))
  3959. characterMakers.push(() => makeCharacter(
  3960. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  3961. {
  3962. front: {
  3963. height: math.unit(6, "feet"),
  3964. weight: math.unit(210, "lbs"),
  3965. name: "Front",
  3966. image: {
  3967. source: "./media/characters/rain-fallen/front.svg"
  3968. }
  3969. },
  3970. side: {
  3971. height: math.unit(6, "feet"),
  3972. weight: math.unit(210, "lbs"),
  3973. name: "Side",
  3974. image: {
  3975. source: "./media/characters/rain-fallen/side.svg"
  3976. }
  3977. },
  3978. back: {
  3979. height: math.unit(6, "feet"),
  3980. weight: math.unit(210, "lbs"),
  3981. name: "Back",
  3982. image: {
  3983. source: "./media/characters/rain-fallen/back.svg"
  3984. }
  3985. },
  3986. feral: {
  3987. height: math.unit(9, "feet"),
  3988. weight: math.unit(700, "lbs"),
  3989. name: "Feral",
  3990. image: {
  3991. source: "./media/characters/rain-fallen/feral.svg"
  3992. }
  3993. },
  3994. },
  3995. [
  3996. {
  3997. name: "Normal",
  3998. height: math.unit(5, "meter")
  3999. },
  4000. {
  4001. name: "Macro",
  4002. height: math.unit(150, "meter"),
  4003. default: true
  4004. },
  4005. {
  4006. name: "Megamacro",
  4007. height: math.unit(278e6, "meter")
  4008. },
  4009. {
  4010. name: "Gigamacro",
  4011. height: math.unit(2e9, "meter")
  4012. },
  4013. {
  4014. name: "Teramacro",
  4015. height: math.unit(8e12, "meter")
  4016. },
  4017. {
  4018. name: "Devourer",
  4019. height: math.unit(14, "zettameters")
  4020. },
  4021. {
  4022. name: "Scarlet King",
  4023. height: math.unit(18, "yottameters")
  4024. },
  4025. {
  4026. name: "Void",
  4027. height: math.unit(6.66e66, "yottameters")
  4028. }
  4029. ]
  4030. ))
  4031. characterMakers.push(() => makeCharacter(
  4032. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4033. {
  4034. standing: {
  4035. height: math.unit(6, "feet"),
  4036. weight: math.unit(180, "lbs"),
  4037. name: "Standing",
  4038. image: {
  4039. source: "./media/characters/zaakira/standing.svg"
  4040. }
  4041. },
  4042. laying: {
  4043. height: math.unit(3, "feet"),
  4044. weight: math.unit(180, "lbs"),
  4045. name: "Laying",
  4046. image: {
  4047. source: "./media/characters/zaakira/laying.svg"
  4048. }
  4049. },
  4050. },
  4051. [
  4052. {
  4053. name: "Normal",
  4054. height: math.unit(12, "feet")
  4055. },
  4056. {
  4057. name: "Macro",
  4058. height: math.unit(279, "feet"),
  4059. default: true
  4060. }
  4061. ]
  4062. ))
  4063. characterMakers.push(() => makeCharacter(
  4064. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4065. {
  4066. front: {
  4067. height: math.unit(6, "feet"),
  4068. weight: math.unit(250, "lbs"),
  4069. name: "Front",
  4070. image: {
  4071. source: "./media/characters/sigvald/front.svg",
  4072. extra: 1000 / 850
  4073. }
  4074. },
  4075. back: {
  4076. height: math.unit(6, "feet"),
  4077. weight: math.unit(250, "lbs"),
  4078. name: "Back",
  4079. image: {
  4080. source: "./media/characters/sigvald/back.svg"
  4081. }
  4082. },
  4083. },
  4084. [
  4085. {
  4086. name: "Normal",
  4087. height: math.unit(8, "feet")
  4088. },
  4089. {
  4090. name: "Large",
  4091. height: math.unit(12, "feet")
  4092. },
  4093. {
  4094. name: "Larger",
  4095. height: math.unit(20, "feet")
  4096. },
  4097. {
  4098. name: "Macro",
  4099. height: math.unit(150, "feet")
  4100. },
  4101. {
  4102. name: "Macro+",
  4103. height: math.unit(200, "feet"),
  4104. default: true
  4105. },
  4106. ]
  4107. ))
  4108. characterMakers.push(() => makeCharacter(
  4109. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4110. {
  4111. side: {
  4112. height: math.unit(12, "feet"),
  4113. weight: math.unit(2000, "kg"),
  4114. name: "Side",
  4115. image: {
  4116. source: "./media/characters/scott/side.svg",
  4117. extra: 754 / 724,
  4118. bottom: 0.069
  4119. }
  4120. },
  4121. upright: {
  4122. height: math.unit(12, "feet"),
  4123. weight: math.unit(2000, "kg"),
  4124. name: "Upright",
  4125. image: {
  4126. source: "./media/characters/scott/upright.svg",
  4127. extra: 3881 / 3722,
  4128. bottom: 0.05
  4129. }
  4130. },
  4131. },
  4132. [
  4133. {
  4134. name: "Normal",
  4135. height: math.unit(12, "feet"),
  4136. default: true
  4137. },
  4138. ]
  4139. ))
  4140. characterMakers.push(() => makeCharacter(
  4141. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4142. {
  4143. side: {
  4144. height: math.unit(8, "meters"),
  4145. weight: math.unit(84755, "lbs"),
  4146. name: "Side",
  4147. image: {
  4148. source: "./media/characters/tobias/side.svg",
  4149. extra: 1474 / 1096,
  4150. bottom: 38.9 / 1513.1235
  4151. }
  4152. },
  4153. },
  4154. [
  4155. {
  4156. name: "Normal",
  4157. height: math.unit(8, "meters"),
  4158. default: true
  4159. },
  4160. ]
  4161. ))
  4162. characterMakers.push(() => makeCharacter(
  4163. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4164. {
  4165. front: {
  4166. height: math.unit(5.5, "feet"),
  4167. weight: math.unit(400, "lbs"),
  4168. name: "Front",
  4169. image: {
  4170. source: "./media/characters/kieran/front.svg",
  4171. extra: 2694 / 2364,
  4172. bottom: 217 / 2908
  4173. }
  4174. },
  4175. side: {
  4176. height: math.unit(5.5, "feet"),
  4177. weight: math.unit(400, "lbs"),
  4178. name: "Side",
  4179. image: {
  4180. source: "./media/characters/kieran/side.svg",
  4181. extra: 875 / 777,
  4182. bottom: 84.6 / 959
  4183. }
  4184. },
  4185. },
  4186. [
  4187. {
  4188. name: "Normal",
  4189. height: math.unit(5.5, "feet"),
  4190. default: true
  4191. },
  4192. ]
  4193. ))
  4194. characterMakers.push(() => makeCharacter(
  4195. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4196. {
  4197. side: {
  4198. height: math.unit(2, "meters"),
  4199. weight: math.unit(70, "kg"),
  4200. name: "Side",
  4201. image: {
  4202. source: "./media/characters/sanya/side.svg",
  4203. bottom: 0.02,
  4204. extra: 1.02
  4205. }
  4206. },
  4207. },
  4208. [
  4209. {
  4210. name: "Small",
  4211. height: math.unit(2, "meters")
  4212. },
  4213. {
  4214. name: "Normal",
  4215. height: math.unit(3, "meters")
  4216. },
  4217. {
  4218. name: "Macro",
  4219. height: math.unit(16, "meters"),
  4220. default: true
  4221. },
  4222. ]
  4223. ))
  4224. characterMakers.push(() => makeCharacter(
  4225. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4226. {
  4227. side: {
  4228. height: math.unit(2, "meters"),
  4229. weight: math.unit(120, "kg"),
  4230. name: "Front",
  4231. image: {
  4232. source: "./media/characters/miranda/front.svg",
  4233. extra: 10.6 / 10
  4234. }
  4235. },
  4236. },
  4237. [
  4238. {
  4239. name: "Normal",
  4240. height: math.unit(10, "feet"),
  4241. default: true
  4242. }
  4243. ]
  4244. ))
  4245. characterMakers.push(() => makeCharacter(
  4246. { name: "James", species: ["deer"], tags: ["anthro"] },
  4247. {
  4248. side: {
  4249. height: math.unit(2, "meters"),
  4250. weight: math.unit(100, "kg"),
  4251. name: "Front",
  4252. image: {
  4253. source: "./media/characters/james/front.svg",
  4254. extra: 10 / 8.5
  4255. }
  4256. },
  4257. },
  4258. [
  4259. {
  4260. name: "Normal",
  4261. height: math.unit(8.5, "feet"),
  4262. default: true
  4263. }
  4264. ]
  4265. ))
  4266. characterMakers.push(() => makeCharacter(
  4267. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4268. {
  4269. side: {
  4270. height: math.unit(9.5, "feet"),
  4271. weight: math.unit(2500, "lbs"),
  4272. name: "Side",
  4273. image: {
  4274. source: "./media/characters/heather/side.svg"
  4275. }
  4276. },
  4277. },
  4278. [
  4279. {
  4280. name: "Normal",
  4281. height: math.unit(9.5, "feet"),
  4282. default: true
  4283. }
  4284. ]
  4285. ))
  4286. characterMakers.push(() => makeCharacter(
  4287. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4288. {
  4289. side: {
  4290. height: math.unit(6.5, "feet"),
  4291. weight: math.unit(400, "lbs"),
  4292. name: "Side",
  4293. image: {
  4294. source: "./media/characters/lukas/side.svg",
  4295. extra: 7.25 / 6.5
  4296. }
  4297. },
  4298. },
  4299. [
  4300. {
  4301. name: "Normal",
  4302. height: math.unit(6.5, "feet"),
  4303. default: true
  4304. }
  4305. ]
  4306. ))
  4307. characterMakers.push(() => makeCharacter(
  4308. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4309. {
  4310. side: {
  4311. height: math.unit(5, "feet"),
  4312. weight: math.unit(3000, "lbs"),
  4313. name: "Side",
  4314. image: {
  4315. source: "./media/characters/louise/side.svg"
  4316. }
  4317. },
  4318. },
  4319. [
  4320. {
  4321. name: "Normal",
  4322. height: math.unit(5, "feet"),
  4323. default: true
  4324. }
  4325. ]
  4326. ))
  4327. characterMakers.push(() => makeCharacter(
  4328. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4329. {
  4330. side: {
  4331. height: math.unit(6, "feet"),
  4332. weight: math.unit(150, "lbs"),
  4333. name: "Side",
  4334. image: {
  4335. source: "./media/characters/ramona/side.svg"
  4336. }
  4337. },
  4338. },
  4339. [
  4340. {
  4341. name: "Normal",
  4342. height: math.unit(5.3, "meters"),
  4343. default: true
  4344. },
  4345. {
  4346. name: "Macro",
  4347. height: math.unit(20, "stories")
  4348. },
  4349. {
  4350. name: "Macro+",
  4351. height: math.unit(50, "stories")
  4352. },
  4353. ]
  4354. ))
  4355. characterMakers.push(() => makeCharacter(
  4356. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4357. {
  4358. standing: {
  4359. height: math.unit(5.75, "feet"),
  4360. weight: math.unit(160, "lbs"),
  4361. name: "Standing",
  4362. image: {
  4363. source: "./media/characters/deerpuff/standing.svg",
  4364. extra: 682 / 624
  4365. }
  4366. },
  4367. sitting: {
  4368. height: math.unit(5.75 / 1.79, "feet"),
  4369. weight: math.unit(160, "lbs"),
  4370. name: "Sitting",
  4371. image: {
  4372. source: "./media/characters/deerpuff/sitting.svg",
  4373. bottom: 44 / 400,
  4374. extra: 1
  4375. }
  4376. },
  4377. taurLaying: {
  4378. height: math.unit(6, "feet"),
  4379. weight: math.unit(400, "lbs"),
  4380. name: "Taur (Laying)",
  4381. image: {
  4382. source: "./media/characters/deerpuff/taur-laying.svg"
  4383. }
  4384. },
  4385. },
  4386. [
  4387. {
  4388. name: "Puffball",
  4389. height: math.unit(6, "inches")
  4390. },
  4391. {
  4392. name: "Normalpuff",
  4393. height: math.unit(5.75, "feet")
  4394. },
  4395. {
  4396. name: "Macropuff",
  4397. height: math.unit(1500, "feet"),
  4398. default: true
  4399. },
  4400. {
  4401. name: "Megapuff",
  4402. height: math.unit(500, "miles")
  4403. },
  4404. {
  4405. name: "Gigapuff",
  4406. height: math.unit(250000, "miles")
  4407. },
  4408. {
  4409. name: "Omegapuff",
  4410. height: math.unit(1000, "lightyears")
  4411. },
  4412. ]
  4413. ))
  4414. characterMakers.push(() => makeCharacter(
  4415. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4416. {
  4417. stomping: {
  4418. height: math.unit(6, "feet"),
  4419. weight: math.unit(170, "lbs"),
  4420. name: "Stomping",
  4421. image: {
  4422. source: "./media/characters/vivian/stomping.svg"
  4423. }
  4424. },
  4425. sitting: {
  4426. height: math.unit(6 / 1.75, "feet"),
  4427. weight: math.unit(170, "lbs"),
  4428. name: "Sitting",
  4429. image: {
  4430. source: "./media/characters/vivian/sitting.svg",
  4431. bottom: 1 / 6.4,
  4432. extra: 1,
  4433. }
  4434. },
  4435. },
  4436. [
  4437. {
  4438. name: "Normal",
  4439. height: math.unit(7, "feet"),
  4440. default: true
  4441. },
  4442. {
  4443. name: "Macro",
  4444. height: math.unit(10, "stories")
  4445. },
  4446. {
  4447. name: "Macro+",
  4448. height: math.unit(30, "stories")
  4449. },
  4450. {
  4451. name: "Megamacro",
  4452. height: math.unit(10, "miles")
  4453. },
  4454. {
  4455. name: "Megamacro+",
  4456. height: math.unit(2750000, "meters")
  4457. },
  4458. ]
  4459. ))
  4460. characterMakers.push(() => makeCharacter(
  4461. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4462. {
  4463. front: {
  4464. height: math.unit(6, "feet"),
  4465. weight: math.unit(160, "lbs"),
  4466. name: "Front",
  4467. image: {
  4468. source: "./media/characters/prince/front.svg",
  4469. extra: 3400 / 3000
  4470. }
  4471. },
  4472. jumping: {
  4473. height: math.unit(6, "feet"),
  4474. weight: math.unit(160, "lbs"),
  4475. name: "Jumping",
  4476. image: {
  4477. source: "./media/characters/prince/jump.svg",
  4478. extra: 2555 / 2134
  4479. }
  4480. },
  4481. },
  4482. [
  4483. {
  4484. name: "Normal",
  4485. height: math.unit(7.75, "feet"),
  4486. default: true
  4487. },
  4488. {
  4489. name: "Not cute",
  4490. height: math.unit(17, "feet")
  4491. },
  4492. {
  4493. name: "I said NOT",
  4494. height: math.unit(91, "feet")
  4495. },
  4496. {
  4497. name: "Please stop",
  4498. height: math.unit(560, "feet")
  4499. },
  4500. {
  4501. name: "What have you done",
  4502. height: math.unit(2200, "feet")
  4503. },
  4504. {
  4505. name: "Deer God",
  4506. height: math.unit(3.6, "miles")
  4507. },
  4508. ]
  4509. ))
  4510. characterMakers.push(() => makeCharacter(
  4511. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4512. {
  4513. standing: {
  4514. height: math.unit(6, "feet"),
  4515. weight: math.unit(300, "lbs"),
  4516. name: "Standing",
  4517. image: {
  4518. source: "./media/characters/psymon/standing.svg",
  4519. extra: 1888 / 1810,
  4520. bottom: 0.05
  4521. }
  4522. },
  4523. slithering: {
  4524. height: math.unit(6, "feet"),
  4525. weight: math.unit(300, "lbs"),
  4526. name: "Slithering",
  4527. image: {
  4528. source: "./media/characters/psymon/slithering.svg",
  4529. extra: 1330 / 1224
  4530. }
  4531. },
  4532. slitheringAlt: {
  4533. height: math.unit(6, "feet"),
  4534. weight: math.unit(300, "lbs"),
  4535. name: "Slithering (Alt)",
  4536. image: {
  4537. source: "./media/characters/psymon/slithering-alt.svg",
  4538. extra: 1330 / 1224
  4539. }
  4540. },
  4541. },
  4542. [
  4543. {
  4544. name: "Normal",
  4545. height: math.unit(11.25, "feet"),
  4546. default: true
  4547. },
  4548. {
  4549. name: "Large",
  4550. height: math.unit(27, "feet")
  4551. },
  4552. {
  4553. name: "Giant",
  4554. height: math.unit(87, "feet")
  4555. },
  4556. {
  4557. name: "Macro",
  4558. height: math.unit(365, "feet")
  4559. },
  4560. {
  4561. name: "Megamacro",
  4562. height: math.unit(3, "miles")
  4563. },
  4564. {
  4565. name: "World Serpent",
  4566. height: math.unit(8000, "miles")
  4567. },
  4568. ]
  4569. ))
  4570. characterMakers.push(() => makeCharacter(
  4571. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4572. {
  4573. front: {
  4574. height: math.unit(6, "feet"),
  4575. weight: math.unit(180, "lbs"),
  4576. name: "Front",
  4577. image: {
  4578. source: "./media/characters/daimos/front.svg",
  4579. extra: 4160 / 3897,
  4580. bottom: 0.021
  4581. }
  4582. }
  4583. },
  4584. [
  4585. {
  4586. name: "Normal",
  4587. height: math.unit(8, "feet"),
  4588. default: true
  4589. },
  4590. {
  4591. name: "Big Dog",
  4592. height: math.unit(22, "feet")
  4593. },
  4594. {
  4595. name: "Macro",
  4596. height: math.unit(127, "feet")
  4597. },
  4598. {
  4599. name: "Megamacro",
  4600. height: math.unit(3600, "feet")
  4601. },
  4602. ]
  4603. ))
  4604. characterMakers.push(() => makeCharacter(
  4605. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4606. {
  4607. side: {
  4608. height: math.unit(6, "feet"),
  4609. weight: math.unit(180, "lbs"),
  4610. name: "Side",
  4611. image: {
  4612. source: "./media/characters/blake/side.svg",
  4613. extra: 1212 / 1120,
  4614. bottom: 0.05
  4615. }
  4616. },
  4617. crouched: {
  4618. height: math.unit(6 * 0.57, "feet"),
  4619. weight: math.unit(180, "lbs"),
  4620. name: "Crouched",
  4621. image: {
  4622. source: "./media/characters/blake/crouched.svg",
  4623. extra: 840 / 587,
  4624. bottom: 0.04
  4625. }
  4626. },
  4627. bent: {
  4628. height: math.unit(6 * 0.75, "feet"),
  4629. weight: math.unit(180, "lbs"),
  4630. name: "Bent",
  4631. image: {
  4632. source: "./media/characters/blake/bent.svg",
  4633. extra: 592 / 544,
  4634. bottom: 0.035
  4635. }
  4636. },
  4637. },
  4638. [
  4639. {
  4640. name: "Normal",
  4641. height: math.unit(8 + 1 / 6, "feet"),
  4642. default: true
  4643. },
  4644. {
  4645. name: "Big Backside",
  4646. height: math.unit(37, "feet")
  4647. },
  4648. {
  4649. name: "Subway Shredder",
  4650. height: math.unit(72, "feet")
  4651. },
  4652. {
  4653. name: "City Carver",
  4654. height: math.unit(1675, "feet")
  4655. },
  4656. {
  4657. name: "Tectonic Tweaker",
  4658. height: math.unit(2300, "miles")
  4659. },
  4660. ]
  4661. ))
  4662. characterMakers.push(() => makeCharacter(
  4663. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4664. {
  4665. front: {
  4666. height: math.unit(6, "feet"),
  4667. weight: math.unit(180, "lbs"),
  4668. name: "Front",
  4669. image: {
  4670. source: "./media/characters/guisetto/front.svg",
  4671. extra: 856 / 817,
  4672. bottom: 0.06
  4673. }
  4674. },
  4675. airborne: {
  4676. height: math.unit(6, "feet"),
  4677. weight: math.unit(180, "lbs"),
  4678. name: "Airborne",
  4679. image: {
  4680. source: "./media/characters/guisetto/airborne.svg",
  4681. extra: 584 / 525
  4682. }
  4683. },
  4684. },
  4685. [
  4686. {
  4687. name: "Normal",
  4688. height: math.unit(10 + 11 / 12, "feet"),
  4689. default: true
  4690. },
  4691. {
  4692. name: "Large",
  4693. height: math.unit(35, "feet")
  4694. },
  4695. {
  4696. name: "Macro",
  4697. height: math.unit(475, "feet")
  4698. },
  4699. ]
  4700. ))
  4701. characterMakers.push(() => makeCharacter(
  4702. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  4703. {
  4704. front: {
  4705. height: math.unit(6, "feet"),
  4706. weight: math.unit(180, "lbs"),
  4707. name: "Front",
  4708. image: {
  4709. source: "./media/characters/luxor/front.svg",
  4710. extra: 2940 / 2152
  4711. }
  4712. },
  4713. back: {
  4714. height: math.unit(6, "feet"),
  4715. weight: math.unit(180, "lbs"),
  4716. name: "Back",
  4717. image: {
  4718. source: "./media/characters/luxor/back.svg",
  4719. extra: 1083 / 960
  4720. }
  4721. },
  4722. },
  4723. [
  4724. {
  4725. name: "Normal",
  4726. height: math.unit(5 + 5 / 6, "feet"),
  4727. default: true
  4728. },
  4729. {
  4730. name: "Lamp",
  4731. height: math.unit(50, "feet")
  4732. },
  4733. {
  4734. name: "Lämp",
  4735. height: math.unit(300, "feet")
  4736. },
  4737. {
  4738. name: "The sun is a lamp",
  4739. height: math.unit(250000, "miles")
  4740. },
  4741. ]
  4742. ))
  4743. characterMakers.push(() => makeCharacter(
  4744. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  4745. {
  4746. front: {
  4747. height: math.unit(6, "feet"),
  4748. weight: math.unit(50, "lbs"),
  4749. name: "Front",
  4750. image: {
  4751. source: "./media/characters/huoyan/front.svg"
  4752. }
  4753. },
  4754. side: {
  4755. height: math.unit(6, "feet"),
  4756. weight: math.unit(180, "lbs"),
  4757. name: "Side",
  4758. image: {
  4759. source: "./media/characters/huoyan/side.svg"
  4760. }
  4761. },
  4762. },
  4763. [
  4764. {
  4765. name: "Chef",
  4766. height: math.unit(9, "feet")
  4767. },
  4768. {
  4769. name: "Normal",
  4770. height: math.unit(65, "feet"),
  4771. default: true
  4772. },
  4773. {
  4774. name: "Macro",
  4775. height: math.unit(780, "feet")
  4776. },
  4777. {
  4778. name: "Flaming Mountain",
  4779. height: math.unit(4.8, "miles")
  4780. },
  4781. {
  4782. name: "Celestial",
  4783. height: math.unit(765000, "miles")
  4784. },
  4785. ]
  4786. ))
  4787. characterMakers.push(() => makeCharacter(
  4788. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  4789. {
  4790. front: {
  4791. height: math.unit(5 + 3 / 4, "feet"),
  4792. weight: math.unit(120, "lbs"),
  4793. name: "Front",
  4794. image: {
  4795. source: "./media/characters/tails/front.svg"
  4796. }
  4797. }
  4798. },
  4799. [
  4800. {
  4801. name: "Normal",
  4802. height: math.unit(5 + 3 / 4, "feet"),
  4803. default: true
  4804. }
  4805. ]
  4806. ))
  4807. characterMakers.push(() => makeCharacter(
  4808. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  4809. {
  4810. front: {
  4811. height: math.unit(4, "feet"),
  4812. weight: math.unit(50, "lbs"),
  4813. name: "Front",
  4814. image: {
  4815. source: "./media/characters/rainy/front.svg"
  4816. }
  4817. }
  4818. },
  4819. [
  4820. {
  4821. name: "Macro",
  4822. height: math.unit(800, "feet"),
  4823. default: true
  4824. }
  4825. ]
  4826. ))
  4827. characterMakers.push(() => makeCharacter(
  4828. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  4829. {
  4830. front: {
  4831. height: math.unit(6, "feet"),
  4832. weight: math.unit(150, "lbs"),
  4833. name: "Front",
  4834. image: {
  4835. source: "./media/characters/rainier/front.svg"
  4836. }
  4837. }
  4838. },
  4839. [
  4840. {
  4841. name: "Micro",
  4842. height: math.unit(2, "mm"),
  4843. default: true
  4844. }
  4845. ]
  4846. ))
  4847. characterMakers.push(() => makeCharacter(
  4848. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  4849. {
  4850. front: {
  4851. height: math.unit(6, "feet"),
  4852. weight: math.unit(180, "lbs"),
  4853. name: "Front",
  4854. image: {
  4855. source: "./media/characters/andy/front.svg"
  4856. }
  4857. }
  4858. },
  4859. [
  4860. {
  4861. name: "Normal",
  4862. height: math.unit(8, "feet"),
  4863. default: true
  4864. },
  4865. {
  4866. name: "Macro",
  4867. height: math.unit(1000, "feet")
  4868. },
  4869. {
  4870. name: "Megamacro",
  4871. height: math.unit(5, "miles")
  4872. },
  4873. {
  4874. name: "Gigamacro",
  4875. height: math.unit(5000, "miles")
  4876. },
  4877. ]
  4878. ))
  4879. characterMakers.push(() => makeCharacter(
  4880. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  4881. {
  4882. front: {
  4883. height: math.unit(6, "feet"),
  4884. weight: math.unit(210, "lbs"),
  4885. name: "Front",
  4886. image: {
  4887. source: "./media/characters/cimmaron/front-sfw.svg",
  4888. extra: 701 / 676,
  4889. bottom: 0.046
  4890. }
  4891. },
  4892. back: {
  4893. height: math.unit(6, "feet"),
  4894. weight: math.unit(210, "lbs"),
  4895. name: "Back",
  4896. image: {
  4897. source: "./media/characters/cimmaron/back-sfw.svg",
  4898. extra: 701 / 676,
  4899. bottom: 0.046
  4900. }
  4901. },
  4902. frontNsfw: {
  4903. height: math.unit(6, "feet"),
  4904. weight: math.unit(210, "lbs"),
  4905. name: "Front (NSFW)",
  4906. image: {
  4907. source: "./media/characters/cimmaron/front-nsfw.svg",
  4908. extra: 701 / 676,
  4909. bottom: 0.046
  4910. }
  4911. },
  4912. backNsfw: {
  4913. height: math.unit(6, "feet"),
  4914. weight: math.unit(210, "lbs"),
  4915. name: "Back (NSFW)",
  4916. image: {
  4917. source: "./media/characters/cimmaron/back-nsfw.svg",
  4918. extra: 701 / 676,
  4919. bottom: 0.046
  4920. }
  4921. },
  4922. dick: {
  4923. height: math.unit(1.714, "feet"),
  4924. name: "Dick",
  4925. image: {
  4926. source: "./media/characters/cimmaron/dick.svg"
  4927. }
  4928. },
  4929. },
  4930. [
  4931. {
  4932. name: "Normal",
  4933. height: math.unit(6, "feet"),
  4934. default: true
  4935. },
  4936. {
  4937. name: "Macro Mayor",
  4938. height: math.unit(350, "meters")
  4939. },
  4940. ]
  4941. ))
  4942. characterMakers.push(() => makeCharacter(
  4943. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  4944. {
  4945. front: {
  4946. height: math.unit(6, "feet"),
  4947. weight: math.unit(200, "lbs"),
  4948. name: "Front",
  4949. image: {
  4950. source: "./media/characters/akari/front.svg",
  4951. extra: 962 / 901,
  4952. bottom: 0.04
  4953. }
  4954. }
  4955. },
  4956. [
  4957. {
  4958. name: "Micro",
  4959. height: math.unit(5, "inches"),
  4960. default: true
  4961. },
  4962. {
  4963. name: "Normal",
  4964. height: math.unit(7, "feet")
  4965. },
  4966. ]
  4967. ))
  4968. characterMakers.push(() => makeCharacter(
  4969. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  4970. {
  4971. front: {
  4972. height: math.unit(6, "feet"),
  4973. weight: math.unit(140, "lbs"),
  4974. name: "Front",
  4975. image: {
  4976. source: "./media/characters/cynosura/front.svg",
  4977. extra: 896 / 847
  4978. }
  4979. },
  4980. back: {
  4981. height: math.unit(6, "feet"),
  4982. weight: math.unit(140, "lbs"),
  4983. name: "Back",
  4984. image: {
  4985. source: "./media/characters/cynosura/back.svg",
  4986. extra: 1365 / 1250
  4987. }
  4988. },
  4989. },
  4990. [
  4991. {
  4992. name: "Micro",
  4993. height: math.unit(4, "inches")
  4994. },
  4995. {
  4996. name: "Normal",
  4997. height: math.unit(5.75, "feet"),
  4998. default: true
  4999. },
  5000. {
  5001. name: "Tall",
  5002. height: math.unit(10, "feet")
  5003. },
  5004. {
  5005. name: "Big",
  5006. height: math.unit(20, "feet")
  5007. },
  5008. {
  5009. name: "Macro",
  5010. height: math.unit(50, "feet")
  5011. },
  5012. ]
  5013. ))
  5014. characterMakers.push(() => makeCharacter(
  5015. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5016. {
  5017. front: {
  5018. height: math.unit(6, "feet"),
  5019. weight: math.unit(170, "lbs"),
  5020. name: "Front",
  5021. image: {
  5022. source: "./media/characters/gin/front.svg",
  5023. extra: 1.053,
  5024. bottom: 0.025
  5025. }
  5026. },
  5027. foot: {
  5028. height: math.unit(6 / 4.25, "feet"),
  5029. name: "Foot",
  5030. image: {
  5031. source: "./media/characters/gin/foot.svg"
  5032. }
  5033. },
  5034. sole: {
  5035. height: math.unit(6 / 4.40, "feet"),
  5036. name: "Sole",
  5037. image: {
  5038. source: "./media/characters/gin/sole.svg"
  5039. }
  5040. },
  5041. },
  5042. [
  5043. {
  5044. name: "Normal",
  5045. height: math.unit(13 + 2 / 12, "feet")
  5046. },
  5047. {
  5048. name: "Macro",
  5049. height: math.unit(1500, "feet")
  5050. },
  5051. {
  5052. name: "Megamacro",
  5053. height: math.unit(200, "miles"),
  5054. default: true
  5055. },
  5056. {
  5057. name: "Gigamacro",
  5058. height: math.unit(500, "megameters")
  5059. },
  5060. {
  5061. name: "Teramacro",
  5062. height: math.unit(15, "lightyears")
  5063. }
  5064. ]
  5065. ))
  5066. characterMakers.push(() => makeCharacter(
  5067. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5068. {
  5069. front: {
  5070. height: math.unit(6 + 1 / 6, "feet"),
  5071. weight: math.unit(178, "lbs"),
  5072. name: "Front",
  5073. image: {
  5074. source: "./media/characters/guy/front.svg"
  5075. }
  5076. }
  5077. },
  5078. [
  5079. {
  5080. name: "Normal",
  5081. height: math.unit(6 + 1 / 6, "feet"),
  5082. default: true
  5083. },
  5084. {
  5085. name: "Large",
  5086. height: math.unit(25 + 7 / 12, "feet")
  5087. },
  5088. {
  5089. name: "Macro",
  5090. height: math.unit(60 + 9 / 12, "feet")
  5091. },
  5092. {
  5093. name: "Macro+",
  5094. height: math.unit(246, "feet")
  5095. },
  5096. {
  5097. name: "Macro++",
  5098. height: math.unit(878, "feet")
  5099. }
  5100. ]
  5101. ))
  5102. characterMakers.push(() => makeCharacter(
  5103. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5104. {
  5105. front: {
  5106. height: math.unit(9, "feet"),
  5107. weight: math.unit(800, "lbs"),
  5108. name: "Front",
  5109. image: {
  5110. source: "./media/characters/tiberius/front.svg",
  5111. extra: 2295 / 2071
  5112. }
  5113. },
  5114. back: {
  5115. height: math.unit(9, "feet"),
  5116. weight: math.unit(800, "lbs"),
  5117. name: "Back",
  5118. image: {
  5119. source: "./media/characters/tiberius/back.svg",
  5120. extra: 2373 / 2160
  5121. }
  5122. },
  5123. },
  5124. [
  5125. {
  5126. name: "Normal",
  5127. height: math.unit(9, "feet"),
  5128. default: true
  5129. }
  5130. ]
  5131. ))
  5132. characterMakers.push(() => makeCharacter(
  5133. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5134. {
  5135. front: {
  5136. height: math.unit(6, "feet"),
  5137. weight: math.unit(600, "lbs"),
  5138. name: "Front",
  5139. image: {
  5140. source: "./media/characters/surgo/front.svg",
  5141. extra: 3591 / 2227
  5142. }
  5143. },
  5144. back: {
  5145. height: math.unit(6, "feet"),
  5146. weight: math.unit(600, "lbs"),
  5147. name: "Back",
  5148. image: {
  5149. source: "./media/characters/surgo/back.svg",
  5150. extra: 3557 / 2228
  5151. }
  5152. },
  5153. laying: {
  5154. height: math.unit(6 * 0.85, "feet"),
  5155. weight: math.unit(600, "lbs"),
  5156. name: "Laying",
  5157. image: {
  5158. source: "./media/characters/surgo/laying.svg"
  5159. }
  5160. },
  5161. },
  5162. [
  5163. {
  5164. name: "Normal",
  5165. height: math.unit(6, "feet"),
  5166. default: true
  5167. }
  5168. ]
  5169. ))
  5170. characterMakers.push(() => makeCharacter(
  5171. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5172. {
  5173. side: {
  5174. height: math.unit(6, "feet"),
  5175. weight: math.unit(150, "lbs"),
  5176. name: "Side",
  5177. image: {
  5178. source: "./media/characters/cibus/side.svg",
  5179. extra: 800 / 400
  5180. }
  5181. },
  5182. },
  5183. [
  5184. {
  5185. name: "Normal",
  5186. height: math.unit(6, "feet"),
  5187. default: true
  5188. }
  5189. ]
  5190. ))
  5191. characterMakers.push(() => makeCharacter(
  5192. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5193. {
  5194. front: {
  5195. height: math.unit(6, "feet"),
  5196. weight: math.unit(240, "lbs"),
  5197. name: "Front",
  5198. image: {
  5199. source: "./media/characters/nibbles/front.svg"
  5200. }
  5201. },
  5202. side: {
  5203. height: math.unit(6, "feet"),
  5204. weight: math.unit(240, "lbs"),
  5205. name: "Side",
  5206. image: {
  5207. source: "./media/characters/nibbles/side.svg"
  5208. }
  5209. },
  5210. },
  5211. [
  5212. {
  5213. name: "Normal",
  5214. height: math.unit(9, "feet"),
  5215. default: true
  5216. }
  5217. ]
  5218. ))
  5219. characterMakers.push(() => makeCharacter(
  5220. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5221. {
  5222. side: {
  5223. height: math.unit(5 + 1 / 6, "feet"),
  5224. weight: math.unit(130, "lbs"),
  5225. name: "Side",
  5226. image: {
  5227. source: "./media/characters/rikky/side.svg"
  5228. }
  5229. },
  5230. },
  5231. [
  5232. {
  5233. name: "Normal",
  5234. height: math.unit(5 + 1 / 6, "feet")
  5235. },
  5236. {
  5237. name: "Macro",
  5238. height: math.unit(152, "feet"),
  5239. default: true
  5240. },
  5241. {
  5242. name: "Megamacro",
  5243. height: math.unit(7, "miles")
  5244. }
  5245. ]
  5246. ))
  5247. characterMakers.push(() => makeCharacter(
  5248. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5249. {
  5250. side: {
  5251. height: math.unit(370, "cm"),
  5252. weight: math.unit(350, "lbs"),
  5253. name: "Side",
  5254. image: {
  5255. source: "./media/characters/malfressa/side.svg"
  5256. }
  5257. },
  5258. walking: {
  5259. height: math.unit(370, "cm"),
  5260. weight: math.unit(350, "lbs"),
  5261. name: "Walking",
  5262. image: {
  5263. source: "./media/characters/malfressa/walking.svg"
  5264. }
  5265. },
  5266. feral: {
  5267. height: math.unit(2500, "cm"),
  5268. weight: math.unit(100000, "lbs"),
  5269. name: "Feral",
  5270. image: {
  5271. source: "./media/characters/malfressa/feral.svg",
  5272. extra: 2108 / 837,
  5273. bottom: 0.02
  5274. }
  5275. },
  5276. },
  5277. [
  5278. {
  5279. name: "Normal",
  5280. height: math.unit(370, "cm")
  5281. },
  5282. {
  5283. name: "Macro",
  5284. height: math.unit(300, "meters"),
  5285. default: true
  5286. }
  5287. ]
  5288. ))
  5289. characterMakers.push(() => makeCharacter(
  5290. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5291. {
  5292. front: {
  5293. height: math.unit(6, "feet"),
  5294. weight: math.unit(60, "kg"),
  5295. name: "Front",
  5296. image: {
  5297. source: "./media/characters/jaro/front.svg"
  5298. }
  5299. },
  5300. back: {
  5301. height: math.unit(6, "feet"),
  5302. weight: math.unit(60, "kg"),
  5303. name: "Back",
  5304. image: {
  5305. source: "./media/characters/jaro/back.svg"
  5306. }
  5307. },
  5308. },
  5309. [
  5310. {
  5311. name: "Micro",
  5312. height: math.unit(7, "inches")
  5313. },
  5314. {
  5315. name: "Normal",
  5316. height: math.unit(5.5, "feet"),
  5317. default: true
  5318. },
  5319. {
  5320. name: "Minimacro",
  5321. height: math.unit(20, "feet")
  5322. },
  5323. {
  5324. name: "Macro",
  5325. height: math.unit(200, "meters")
  5326. }
  5327. ]
  5328. ))
  5329. characterMakers.push(() => makeCharacter(
  5330. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5331. {
  5332. front: {
  5333. height: math.unit(6, "feet"),
  5334. weight: math.unit(195, "lb"),
  5335. name: "Front",
  5336. image: {
  5337. source: "./media/characters/rogue/front.svg"
  5338. }
  5339. },
  5340. },
  5341. [
  5342. {
  5343. name: "Macro",
  5344. height: math.unit(90, "feet"),
  5345. default: true
  5346. },
  5347. ]
  5348. ))
  5349. characterMakers.push(() => makeCharacter(
  5350. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5351. {
  5352. front: {
  5353. height: math.unit(5 + 8 / 12, "feet"),
  5354. weight: math.unit(140, "lb"),
  5355. name: "Front",
  5356. image: {
  5357. source: "./media/characters/piper/front.svg",
  5358. extra: 3928 / 3681
  5359. }
  5360. },
  5361. },
  5362. [
  5363. {
  5364. name: "Micro",
  5365. height: math.unit(2, "inches")
  5366. },
  5367. {
  5368. name: "Normal",
  5369. height: math.unit(5 + 8 / 12, "feet")
  5370. },
  5371. {
  5372. name: "Macro",
  5373. height: math.unit(250, "feet"),
  5374. default: true
  5375. },
  5376. {
  5377. name: "Megamacro",
  5378. height: math.unit(7, "miles")
  5379. },
  5380. ]
  5381. ))
  5382. characterMakers.push(() => makeCharacter(
  5383. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5384. {
  5385. front: {
  5386. height: math.unit(6, "feet"),
  5387. weight: math.unit(220, "lb"),
  5388. name: "Front",
  5389. image: {
  5390. source: "./media/characters/gemini/front.svg"
  5391. }
  5392. },
  5393. back: {
  5394. height: math.unit(6, "feet"),
  5395. weight: math.unit(220, "lb"),
  5396. name: "Back",
  5397. image: {
  5398. source: "./media/characters/gemini/back.svg"
  5399. }
  5400. },
  5401. kneeling: {
  5402. height: math.unit(6 / 1.5, "feet"),
  5403. weight: math.unit(220, "lb"),
  5404. name: "Kneeling",
  5405. image: {
  5406. source: "./media/characters/gemini/kneeling.svg",
  5407. bottom: 0.02
  5408. }
  5409. },
  5410. },
  5411. [
  5412. {
  5413. name: "Macro",
  5414. height: math.unit(300, "meters"),
  5415. default: true
  5416. },
  5417. {
  5418. name: "Megamacro",
  5419. height: math.unit(6900, "meters")
  5420. },
  5421. ]
  5422. ))
  5423. characterMakers.push(() => makeCharacter(
  5424. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5425. {
  5426. anthro: {
  5427. height: math.unit(2.35, "meters"),
  5428. weight: math.unit(73, "kg"),
  5429. name: "Anthro",
  5430. image: {
  5431. source: "./media/characters/alicia/anthro.svg",
  5432. extra: 2571 / 2385,
  5433. bottom: 75 / 2648
  5434. }
  5435. },
  5436. paw: {
  5437. height: math.unit(1.32, "feet"),
  5438. name: "Paw",
  5439. image: {
  5440. source: "./media/characters/alicia/paw.svg"
  5441. }
  5442. },
  5443. feral: {
  5444. height: math.unit(1.69, "meters"),
  5445. weight: math.unit(73, "kg"),
  5446. name: "Feral",
  5447. image: {
  5448. source: "./media/characters/alicia/feral.svg",
  5449. extra: 2123 / 1715,
  5450. bottom: 222 / 2349
  5451. }
  5452. },
  5453. },
  5454. [
  5455. {
  5456. name: "Normal",
  5457. height: math.unit(2.35, "meters")
  5458. },
  5459. {
  5460. name: "Macro",
  5461. height: math.unit(60, "meters"),
  5462. default: true
  5463. },
  5464. {
  5465. name: "Megamacro",
  5466. height: math.unit(10000, "kilometers")
  5467. },
  5468. ]
  5469. ))
  5470. characterMakers.push(() => makeCharacter(
  5471. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5472. {
  5473. front: {
  5474. height: math.unit(7, "feet"),
  5475. weight: math.unit(250, "lbs"),
  5476. name: "Front",
  5477. image: {
  5478. source: "./media/characters/archy/front.svg"
  5479. }
  5480. }
  5481. },
  5482. [
  5483. {
  5484. name: "Micro",
  5485. height: math.unit(1, "inch")
  5486. },
  5487. {
  5488. name: "Shorty",
  5489. height: math.unit(5, "feet")
  5490. },
  5491. {
  5492. name: "Normal",
  5493. height: math.unit(7, "feet")
  5494. },
  5495. {
  5496. name: "Macro",
  5497. height: math.unit(600, "meters"),
  5498. default: true
  5499. },
  5500. {
  5501. name: "Megamacro",
  5502. height: math.unit(1, "mile")
  5503. },
  5504. ]
  5505. ))
  5506. characterMakers.push(() => makeCharacter(
  5507. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5508. {
  5509. front: {
  5510. height: math.unit(1.65, "meters"),
  5511. weight: math.unit(74, "kg"),
  5512. name: "Front",
  5513. image: {
  5514. source: "./media/characters/berri/front.svg",
  5515. extra: 857 / 837,
  5516. bottom: 18 / 877
  5517. }
  5518. },
  5519. bum: {
  5520. height: math.unit(1.46, "feet"),
  5521. name: "Bum",
  5522. image: {
  5523. source: "./media/characters/berri/bum.svg"
  5524. }
  5525. },
  5526. mouth: {
  5527. height: math.unit(0.44, "feet"),
  5528. name: "Mouth",
  5529. image: {
  5530. source: "./media/characters/berri/mouth.svg"
  5531. }
  5532. },
  5533. paw: {
  5534. height: math.unit(0.826, "feet"),
  5535. name: "Paw",
  5536. image: {
  5537. source: "./media/characters/berri/paw.svg"
  5538. }
  5539. },
  5540. },
  5541. [
  5542. {
  5543. name: "Normal",
  5544. height: math.unit(1.65, "meters")
  5545. },
  5546. {
  5547. name: "Macro",
  5548. height: math.unit(60, "m"),
  5549. default: true
  5550. },
  5551. {
  5552. name: "Megamacro",
  5553. height: math.unit(9.213, "km")
  5554. },
  5555. {
  5556. name: "Planet Eater",
  5557. height: math.unit(489, "megameters")
  5558. },
  5559. {
  5560. name: "Teramacro",
  5561. height: math.unit(2471635000000, "meters")
  5562. },
  5563. {
  5564. name: "Examacro",
  5565. height: math.unit(8.0624e+26, "meters")
  5566. }
  5567. ]
  5568. ))
  5569. characterMakers.push(() => makeCharacter(
  5570. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5571. {
  5572. front: {
  5573. height: math.unit(1.72, "meters"),
  5574. weight: math.unit(68, "kg"),
  5575. name: "Front",
  5576. image: {
  5577. source: "./media/characters/lexi/front.svg"
  5578. }
  5579. }
  5580. },
  5581. [
  5582. {
  5583. name: "Very Smol",
  5584. height: math.unit(10, "mm")
  5585. },
  5586. {
  5587. name: "Micro",
  5588. height: math.unit(6.8, "cm"),
  5589. default: true
  5590. },
  5591. {
  5592. name: "Normal",
  5593. height: math.unit(1.72, "m")
  5594. }
  5595. ]
  5596. ))
  5597. characterMakers.push(() => makeCharacter(
  5598. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5599. {
  5600. front: {
  5601. height: math.unit(1.69, "meters"),
  5602. weight: math.unit(68, "kg"),
  5603. name: "Front",
  5604. image: {
  5605. source: "./media/characters/martin/front.svg",
  5606. extra: 596 / 581
  5607. }
  5608. }
  5609. },
  5610. [
  5611. {
  5612. name: "Micro",
  5613. height: math.unit(6.85, "cm"),
  5614. default: true
  5615. },
  5616. {
  5617. name: "Normal",
  5618. height: math.unit(1.69, "m")
  5619. }
  5620. ]
  5621. ))
  5622. characterMakers.push(() => makeCharacter(
  5623. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5624. {
  5625. front: {
  5626. height: math.unit(1.69, "meters"),
  5627. weight: math.unit(68, "kg"),
  5628. name: "Front",
  5629. image: {
  5630. source: "./media/characters/juno/front.svg"
  5631. }
  5632. }
  5633. },
  5634. [
  5635. {
  5636. name: "Micro",
  5637. height: math.unit(7, "cm")
  5638. },
  5639. {
  5640. name: "Normal",
  5641. height: math.unit(1.89, "m")
  5642. },
  5643. {
  5644. name: "Macro",
  5645. height: math.unit(353, "meters"),
  5646. default: true
  5647. }
  5648. ]
  5649. ))
  5650. characterMakers.push(() => makeCharacter(
  5651. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5652. {
  5653. front: {
  5654. height: math.unit(1.93, "meters"),
  5655. weight: math.unit(83, "kg"),
  5656. name: "Front",
  5657. image: {
  5658. source: "./media/characters/samantha/front.svg"
  5659. }
  5660. },
  5661. frontClothed: {
  5662. height: math.unit(1.93, "meters"),
  5663. weight: math.unit(83, "kg"),
  5664. name: "Front (Clothed)",
  5665. image: {
  5666. source: "./media/characters/samantha/front-clothed.svg"
  5667. }
  5668. },
  5669. back: {
  5670. height: math.unit(1.93, "meters"),
  5671. weight: math.unit(83, "kg"),
  5672. name: "Back",
  5673. image: {
  5674. source: "./media/characters/samantha/back.svg"
  5675. }
  5676. },
  5677. },
  5678. [
  5679. {
  5680. name: "Normal",
  5681. height: math.unit(1.93, "m")
  5682. },
  5683. {
  5684. name: "Macro",
  5685. height: math.unit(74, "meters"),
  5686. default: true
  5687. },
  5688. {
  5689. name: "Macro+",
  5690. height: math.unit(223, "meters"),
  5691. },
  5692. {
  5693. name: "Megamacro",
  5694. height: math.unit(8381, "meters"),
  5695. },
  5696. {
  5697. name: "Megamacro+",
  5698. height: math.unit(12000, "kilometers")
  5699. },
  5700. ]
  5701. ))
  5702. characterMakers.push(() => makeCharacter(
  5703. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  5704. {
  5705. front: {
  5706. height: math.unit(1.92, "meters"),
  5707. weight: math.unit(80, "kg"),
  5708. name: "Front",
  5709. image: {
  5710. source: "./media/characters/dr-clay/front.svg"
  5711. }
  5712. },
  5713. frontClothed: {
  5714. height: math.unit(1.92, "meters"),
  5715. weight: math.unit(80, "kg"),
  5716. name: "Front (Clothed)",
  5717. image: {
  5718. source: "./media/characters/dr-clay/front-clothed.svg"
  5719. }
  5720. }
  5721. },
  5722. [
  5723. {
  5724. name: "Normal",
  5725. height: math.unit(1.92, "m")
  5726. },
  5727. {
  5728. name: "Macro",
  5729. height: math.unit(214, "meters"),
  5730. default: true
  5731. },
  5732. {
  5733. name: "Macro+",
  5734. height: math.unit(12.237, "meters"),
  5735. },
  5736. {
  5737. name: "Megamacro",
  5738. height: math.unit(557, "megameters"),
  5739. },
  5740. {
  5741. name: "Unimaginable",
  5742. height: math.unit(120e9, "lightyears")
  5743. },
  5744. ]
  5745. ))
  5746. characterMakers.push(() => makeCharacter(
  5747. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  5748. {
  5749. front: {
  5750. height: math.unit(2, "meters"),
  5751. weight: math.unit(80, "kg"),
  5752. name: "Front",
  5753. image: {
  5754. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  5755. }
  5756. }
  5757. },
  5758. [
  5759. {
  5760. name: "Teramacro",
  5761. height: math.unit(500000, "lightyears"),
  5762. default: true
  5763. },
  5764. ]
  5765. ))
  5766. characterMakers.push(() => makeCharacter(
  5767. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  5768. {
  5769. front: {
  5770. height: math.unit(2, "meters"),
  5771. weight: math.unit(150, "kg"),
  5772. name: "Front",
  5773. image: {
  5774. source: "./media/characters/vemus/front.svg",
  5775. extra: 2384 / 2084,
  5776. bottom: 0.0123
  5777. }
  5778. }
  5779. },
  5780. [
  5781. {
  5782. name: "Normal",
  5783. height: math.unit(3.75, "meters"),
  5784. default: true
  5785. },
  5786. {
  5787. name: "Big",
  5788. height: math.unit(8, "meters")
  5789. },
  5790. {
  5791. name: "Macro",
  5792. height: math.unit(100, "meters")
  5793. },
  5794. {
  5795. name: "Macro+",
  5796. height: math.unit(1500, "meters")
  5797. },
  5798. {
  5799. name: "Stellar",
  5800. height: math.unit(14e8, "meters")
  5801. },
  5802. ]
  5803. ))
  5804. characterMakers.push(() => makeCharacter(
  5805. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  5806. {
  5807. front: {
  5808. height: math.unit(2, "meters"),
  5809. weight: math.unit(70, "kg"),
  5810. name: "Front",
  5811. image: {
  5812. source: "./media/characters/beherit/front.svg",
  5813. extra: 1408 / 1242
  5814. }
  5815. }
  5816. },
  5817. [
  5818. {
  5819. name: "Normal",
  5820. height: math.unit(6, "feet")
  5821. },
  5822. {
  5823. name: "Lorg",
  5824. height: math.unit(25, "feet"),
  5825. default: true
  5826. },
  5827. {
  5828. name: "Lorger",
  5829. height: math.unit(75, "feet")
  5830. },
  5831. {
  5832. name: "Macro",
  5833. height: math.unit(200, "meters")
  5834. },
  5835. ]
  5836. ))
  5837. characterMakers.push(() => makeCharacter(
  5838. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  5839. {
  5840. front: {
  5841. height: math.unit(2, "meters"),
  5842. weight: math.unit(150, "kg"),
  5843. name: "Front",
  5844. image: {
  5845. source: "./media/characters/everett/front.svg",
  5846. extra: 2038 / 1737,
  5847. bottom: 0.03
  5848. }
  5849. },
  5850. paw: {
  5851. height: math.unit(2 / 3.6, "meters"),
  5852. name: "Paw",
  5853. image: {
  5854. source: "./media/characters/everett/paw.svg"
  5855. }
  5856. },
  5857. },
  5858. [
  5859. {
  5860. name: "Normal",
  5861. height: math.unit(15, "feet"),
  5862. default: true
  5863. },
  5864. {
  5865. name: "Lorg",
  5866. height: math.unit(70, "feet"),
  5867. default: true
  5868. },
  5869. {
  5870. name: "Lorger",
  5871. height: math.unit(250, "feet")
  5872. },
  5873. {
  5874. name: "Macro",
  5875. height: math.unit(500, "meters")
  5876. },
  5877. ]
  5878. ))
  5879. characterMakers.push(() => makeCharacter(
  5880. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  5881. {
  5882. front: {
  5883. height: math.unit(2, "meters"),
  5884. weight: math.unit(86, "kg"),
  5885. name: "Front",
  5886. image: {
  5887. source: "./media/characters/rose-lion/front.svg"
  5888. }
  5889. },
  5890. bent: {
  5891. height: math.unit(2 / 1.4288, "meters"),
  5892. weight: math.unit(86, "kg"),
  5893. name: "Bent",
  5894. image: {
  5895. source: "./media/characters/rose-lion/bent.svg"
  5896. }
  5897. }
  5898. },
  5899. [
  5900. {
  5901. name: "Mini-Micro",
  5902. height: math.unit(1, "cm")
  5903. },
  5904. {
  5905. name: "Micro",
  5906. height: math.unit(3.5, "inches"),
  5907. default: true
  5908. },
  5909. {
  5910. name: "Normal",
  5911. height: math.unit(6 + 1 / 6, "feet")
  5912. },
  5913. {
  5914. name: "Mini-Macro",
  5915. height: math.unit(9 + 10 / 12, "feet")
  5916. },
  5917. ]
  5918. ))
  5919. characterMakers.push(() => makeCharacter(
  5920. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  5921. {
  5922. front: {
  5923. height: math.unit(2, "meters"),
  5924. weight: math.unit(350, "lbs"),
  5925. name: "Front",
  5926. image: {
  5927. source: "./media/characters/regal/front.svg"
  5928. }
  5929. },
  5930. back: {
  5931. height: math.unit(2, "meters"),
  5932. weight: math.unit(350, "lbs"),
  5933. name: "Back",
  5934. image: {
  5935. source: "./media/characters/regal/back.svg"
  5936. }
  5937. },
  5938. },
  5939. [
  5940. {
  5941. name: "Macro",
  5942. height: math.unit(350, "feet"),
  5943. default: true
  5944. }
  5945. ]
  5946. ))
  5947. characterMakers.push(() => makeCharacter(
  5948. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  5949. {
  5950. front: {
  5951. height: math.unit(4 + 11 / 12, "feet"),
  5952. weight: math.unit(100, "lbs"),
  5953. name: "Front",
  5954. image: {
  5955. source: "./media/characters/opal/front.svg"
  5956. }
  5957. },
  5958. frontAlt: {
  5959. height: math.unit(4 + 11 / 12, "feet"),
  5960. weight: math.unit(100, "lbs"),
  5961. name: "Front (Alt)",
  5962. image: {
  5963. source: "./media/characters/opal/front-alt.svg"
  5964. }
  5965. },
  5966. },
  5967. [
  5968. {
  5969. name: "Small",
  5970. height: math.unit(4 + 11 / 12, "feet")
  5971. },
  5972. {
  5973. name: "Normal",
  5974. height: math.unit(20, "feet"),
  5975. default: true
  5976. },
  5977. {
  5978. name: "Macro",
  5979. height: math.unit(120, "feet")
  5980. },
  5981. {
  5982. name: "Megamacro",
  5983. height: math.unit(80, "miles")
  5984. },
  5985. {
  5986. name: "True Size",
  5987. height: math.unit(100000, "lightyears")
  5988. },
  5989. ]
  5990. ))
  5991. characterMakers.push(() => makeCharacter(
  5992. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  5993. {
  5994. front: {
  5995. height: math.unit(6, "feet"),
  5996. weight: math.unit(200, "lbs"),
  5997. name: "Front",
  5998. image: {
  5999. source: "./media/characters/vector-wuff/front.svg"
  6000. }
  6001. }
  6002. },
  6003. [
  6004. {
  6005. name: "Normal",
  6006. height: math.unit(2.8, "meters")
  6007. },
  6008. {
  6009. name: "Macro",
  6010. height: math.unit(450, "meters"),
  6011. default: true
  6012. },
  6013. {
  6014. name: "Megamacro",
  6015. height: math.unit(15, "kilometers")
  6016. }
  6017. ]
  6018. ))
  6019. characterMakers.push(() => makeCharacter(
  6020. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6021. {
  6022. front: {
  6023. height: math.unit(6, "feet"),
  6024. weight: math.unit(256, "lbs"),
  6025. name: "Front",
  6026. image: {
  6027. source: "./media/characters/dannik/front.svg"
  6028. }
  6029. }
  6030. },
  6031. [
  6032. {
  6033. name: "Macro",
  6034. height: math.unit(69.57, "meters"),
  6035. default: true
  6036. },
  6037. ]
  6038. ))
  6039. characterMakers.push(() => makeCharacter(
  6040. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6041. {
  6042. front: {
  6043. height: math.unit(6, "feet"),
  6044. weight: math.unit(120, "lbs"),
  6045. name: "Front",
  6046. image: {
  6047. source: "./media/characters/azura-saharah/front.svg"
  6048. }
  6049. },
  6050. back: {
  6051. height: math.unit(6, "feet"),
  6052. weight: math.unit(120, "lbs"),
  6053. name: "Back",
  6054. image: {
  6055. source: "./media/characters/azura-saharah/back.svg"
  6056. }
  6057. },
  6058. },
  6059. [
  6060. {
  6061. name: "Macro",
  6062. height: math.unit(100, "feet"),
  6063. default: true
  6064. },
  6065. ]
  6066. ))
  6067. characterMakers.push(() => makeCharacter(
  6068. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6069. {
  6070. side: {
  6071. height: math.unit(5 + 4 / 12, "feet"),
  6072. weight: math.unit(163, "lbs"),
  6073. name: "Side",
  6074. image: {
  6075. source: "./media/characters/kennedy/side.svg"
  6076. }
  6077. }
  6078. },
  6079. [
  6080. {
  6081. name: "Standard Doggo",
  6082. height: math.unit(5 + 4 / 12, "feet")
  6083. },
  6084. {
  6085. name: "Big Doggo",
  6086. height: math.unit(25 + 3 / 12, "feet"),
  6087. default: true
  6088. },
  6089. ]
  6090. ))
  6091. characterMakers.push(() => makeCharacter(
  6092. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6093. {
  6094. front: {
  6095. height: math.unit(6, "feet"),
  6096. weight: math.unit(90, "lbs"),
  6097. name: "Front",
  6098. image: {
  6099. source: "./media/characters/odi-lunar/front.svg"
  6100. }
  6101. }
  6102. },
  6103. [
  6104. {
  6105. name: "Micro",
  6106. height: math.unit(3, "inches"),
  6107. default: true
  6108. },
  6109. {
  6110. name: "Normal",
  6111. height: math.unit(5.5, "feet")
  6112. }
  6113. ]
  6114. ))
  6115. characterMakers.push(() => makeCharacter(
  6116. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6117. {
  6118. back: {
  6119. height: math.unit(6, "feet"),
  6120. weight: math.unit(220, "lbs"),
  6121. name: "Back",
  6122. image: {
  6123. source: "./media/characters/mandake/back.svg"
  6124. }
  6125. }
  6126. },
  6127. [
  6128. {
  6129. name: "Normal",
  6130. height: math.unit(7, "feet"),
  6131. default: true
  6132. },
  6133. {
  6134. name: "Macro",
  6135. height: math.unit(78, "feet")
  6136. },
  6137. {
  6138. name: "Macro+",
  6139. height: math.unit(300, "meters")
  6140. },
  6141. {
  6142. name: "Macro++",
  6143. height: math.unit(2400, "feet")
  6144. },
  6145. {
  6146. name: "Megamacro",
  6147. height: math.unit(5167, "meters")
  6148. },
  6149. {
  6150. name: "Gigamacro",
  6151. height: math.unit(41769, "miles")
  6152. },
  6153. ]
  6154. ))
  6155. characterMakers.push(() => makeCharacter(
  6156. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6157. {
  6158. front: {
  6159. height: math.unit(6, "feet"),
  6160. weight: math.unit(120, "lbs"),
  6161. name: "Front",
  6162. image: {
  6163. source: "./media/characters/yozey/front.svg"
  6164. }
  6165. },
  6166. frontAlt: {
  6167. height: math.unit(6, "feet"),
  6168. weight: math.unit(120, "lbs"),
  6169. name: "Front (Alt)",
  6170. image: {
  6171. source: "./media/characters/yozey/front-alt.svg"
  6172. }
  6173. },
  6174. side: {
  6175. height: math.unit(6, "feet"),
  6176. weight: math.unit(120, "lbs"),
  6177. name: "Side",
  6178. image: {
  6179. source: "./media/characters/yozey/side.svg"
  6180. }
  6181. },
  6182. },
  6183. [
  6184. {
  6185. name: "Micro",
  6186. height: math.unit(3, "inches"),
  6187. default: true
  6188. },
  6189. {
  6190. name: "Normal",
  6191. height: math.unit(6, "feet")
  6192. }
  6193. ]
  6194. ))
  6195. characterMakers.push(() => makeCharacter(
  6196. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6197. {
  6198. front: {
  6199. height: math.unit(6, "feet"),
  6200. weight: math.unit(103, "lbs"),
  6201. name: "Front",
  6202. image: {
  6203. source: "./media/characters/valeska-voss/front.svg"
  6204. }
  6205. }
  6206. },
  6207. [
  6208. {
  6209. name: "Mini-Sized Sub",
  6210. height: math.unit(3.1, "inches")
  6211. },
  6212. {
  6213. name: "Mid-Sized Sub",
  6214. height: math.unit(6.2, "inches")
  6215. },
  6216. {
  6217. name: "Full-Sized Sub",
  6218. height: math.unit(9.3, "inches")
  6219. },
  6220. {
  6221. name: "Normal",
  6222. height: math.unit(5 + 2 / 12, "foot"),
  6223. default: true
  6224. },
  6225. ]
  6226. ))
  6227. characterMakers.push(() => makeCharacter(
  6228. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6229. {
  6230. front: {
  6231. height: math.unit(6, "feet"),
  6232. weight: math.unit(160, "lbs"),
  6233. name: "Front",
  6234. image: {
  6235. source: "./media/characters/gene-zeta/front.svg",
  6236. bottom: 0.03,
  6237. extra: 1
  6238. }
  6239. }
  6240. },
  6241. [
  6242. {
  6243. name: "Normal",
  6244. height: math.unit(6.25, "foot"),
  6245. default: true
  6246. },
  6247. ]
  6248. ))
  6249. characterMakers.push(() => makeCharacter(
  6250. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6251. {
  6252. front: {
  6253. height: math.unit(6, "feet"),
  6254. weight: math.unit(350, "lbs"),
  6255. name: "Front",
  6256. image: {
  6257. source: "./media/characters/razinox/front.svg",
  6258. extra: 1686 / 1548,
  6259. bottom: 28.2 / 1868
  6260. }
  6261. },
  6262. back: {
  6263. height: math.unit(6, "feet"),
  6264. weight: math.unit(350, "lbs"),
  6265. name: "Back",
  6266. image: {
  6267. source: "./media/characters/razinox/back.svg",
  6268. extra: 1660 / 1590,
  6269. bottom: 15 / 1665
  6270. }
  6271. },
  6272. },
  6273. [
  6274. {
  6275. name: "Normal",
  6276. height: math.unit(10 + 8 / 12, "foot")
  6277. },
  6278. {
  6279. name: "Minimacro",
  6280. height: math.unit(15, "foot")
  6281. },
  6282. {
  6283. name: "Macro",
  6284. height: math.unit(60, "foot"),
  6285. default: true
  6286. },
  6287. {
  6288. name: "Megamacro",
  6289. height: math.unit(5, "miles")
  6290. },
  6291. {
  6292. name: "Gigamacro",
  6293. height: math.unit(6000, "miles")
  6294. },
  6295. ]
  6296. ))
  6297. characterMakers.push(() => makeCharacter(
  6298. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6299. {
  6300. front: {
  6301. height: math.unit(6, "feet"),
  6302. weight: math.unit(150, "lbs"),
  6303. name: "Front",
  6304. image: {
  6305. source: "./media/characters/cobalt/front.svg"
  6306. }
  6307. }
  6308. },
  6309. [
  6310. {
  6311. name: "Normal",
  6312. height: math.unit(8 + 1 / 12, "foot")
  6313. },
  6314. {
  6315. name: "Macro",
  6316. height: math.unit(111, "foot"),
  6317. default: true
  6318. },
  6319. {
  6320. name: "Supracosmic",
  6321. height: math.unit(1e42, "feet")
  6322. },
  6323. ]
  6324. ))
  6325. characterMakers.push(() => makeCharacter(
  6326. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6327. {
  6328. front: {
  6329. height: math.unit(6, "feet"),
  6330. weight: math.unit(140, "lbs"),
  6331. name: "Front",
  6332. image: {
  6333. source: "./media/characters/amanda/front.svg"
  6334. }
  6335. }
  6336. },
  6337. [
  6338. {
  6339. name: "Micro",
  6340. height: math.unit(5, "inches"),
  6341. default: true
  6342. },
  6343. ]
  6344. ))
  6345. characterMakers.push(() => makeCharacter(
  6346. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6347. {
  6348. front: {
  6349. height: math.unit(5.59, "feet"),
  6350. weight: math.unit(250, "lbs"),
  6351. name: "Front",
  6352. image: {
  6353. source: "./media/characters/teal/front.svg"
  6354. }
  6355. },
  6356. frontAlt: {
  6357. height: math.unit(6, "feet"),
  6358. weight: math.unit(250, "lbs"),
  6359. name: "Front (Alt)",
  6360. image: {
  6361. source: "./media/characters/teal/front-alt.svg",
  6362. bottom: 0.04,
  6363. extra: 1
  6364. }
  6365. },
  6366. },
  6367. [
  6368. {
  6369. name: "Normal",
  6370. height: math.unit(12, "feet"),
  6371. default: true
  6372. },
  6373. {
  6374. name: "Macro",
  6375. height: math.unit(300, "feet")
  6376. },
  6377. ]
  6378. ))
  6379. characterMakers.push(() => makeCharacter(
  6380. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6381. {
  6382. frontCat: {
  6383. height: math.unit(6, "feet"),
  6384. weight: math.unit(180, "lbs"),
  6385. name: "Front (Cat)",
  6386. image: {
  6387. source: "./media/characters/ravin-amulet/front-cat.svg"
  6388. }
  6389. },
  6390. frontCatAlt: {
  6391. height: math.unit(6, "feet"),
  6392. weight: math.unit(180, "lbs"),
  6393. name: "Front (Alt, Cat)",
  6394. image: {
  6395. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6396. }
  6397. },
  6398. frontWerewolf: {
  6399. height: math.unit(6 * 1.2, "feet"),
  6400. weight: math.unit(225, "lbs"),
  6401. name: "Front (Werewolf)",
  6402. image: {
  6403. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6404. }
  6405. },
  6406. backWerewolf: {
  6407. height: math.unit(6 * 1.2, "feet"),
  6408. weight: math.unit(225, "lbs"),
  6409. name: "Back (Werewolf)",
  6410. image: {
  6411. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6412. }
  6413. },
  6414. },
  6415. [
  6416. {
  6417. name: "Nano",
  6418. height: math.unit(1, "micrometer")
  6419. },
  6420. {
  6421. name: "Micro",
  6422. height: math.unit(1, "inch")
  6423. },
  6424. {
  6425. name: "Normal",
  6426. height: math.unit(6, "feet"),
  6427. default: true
  6428. },
  6429. {
  6430. name: "Macro",
  6431. height: math.unit(60, "feet")
  6432. }
  6433. ]
  6434. ))
  6435. characterMakers.push(() => makeCharacter(
  6436. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6437. {
  6438. front: {
  6439. height: math.unit(6, "feet"),
  6440. weight: math.unit(165, "lbs"),
  6441. name: "Front",
  6442. image: {
  6443. source: "./media/characters/fluoresce/front.svg"
  6444. }
  6445. }
  6446. },
  6447. [
  6448. {
  6449. name: "Micro",
  6450. height: math.unit(6, "cm")
  6451. },
  6452. {
  6453. name: "Normal",
  6454. height: math.unit(5 + 7 / 12, "feet"),
  6455. default: true
  6456. },
  6457. {
  6458. name: "Macro",
  6459. height: math.unit(56, "feet")
  6460. },
  6461. {
  6462. name: "Megamacro",
  6463. height: math.unit(1.9, "miles")
  6464. },
  6465. ]
  6466. ))
  6467. characterMakers.push(() => makeCharacter(
  6468. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6469. {
  6470. front: {
  6471. height: math.unit(9 + 6 / 12, "feet"),
  6472. weight: math.unit(523, "lbs"),
  6473. name: "Side",
  6474. image: {
  6475. source: "./media/characters/aurora/side.svg"
  6476. }
  6477. }
  6478. },
  6479. [
  6480. {
  6481. name: "Normal",
  6482. height: math.unit(9 + 6 / 12, "feet")
  6483. },
  6484. {
  6485. name: "Macro",
  6486. height: math.unit(96, "feet"),
  6487. default: true
  6488. },
  6489. {
  6490. name: "Macro+",
  6491. height: math.unit(243, "feet")
  6492. },
  6493. ]
  6494. ))
  6495. characterMakers.push(() => makeCharacter(
  6496. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6497. {
  6498. front: {
  6499. height: math.unit(194, "cm"),
  6500. weight: math.unit(90, "kg"),
  6501. name: "Front",
  6502. image: {
  6503. source: "./media/characters/ranek/front.svg"
  6504. }
  6505. },
  6506. side: {
  6507. height: math.unit(194, "cm"),
  6508. weight: math.unit(90, "kg"),
  6509. name: "Side",
  6510. image: {
  6511. source: "./media/characters/ranek/side.svg"
  6512. }
  6513. },
  6514. back: {
  6515. height: math.unit(194, "cm"),
  6516. weight: math.unit(90, "kg"),
  6517. name: "Back",
  6518. image: {
  6519. source: "./media/characters/ranek/back.svg"
  6520. }
  6521. },
  6522. feral: {
  6523. height: math.unit(30, "cm"),
  6524. weight: math.unit(1.6, "lbs"),
  6525. name: "Feral",
  6526. image: {
  6527. source: "./media/characters/ranek/feral.svg"
  6528. }
  6529. },
  6530. },
  6531. [
  6532. {
  6533. name: "Normal",
  6534. height: math.unit(194, "cm"),
  6535. default: true
  6536. },
  6537. {
  6538. name: "Macro",
  6539. height: math.unit(100, "meters")
  6540. },
  6541. ]
  6542. ))
  6543. characterMakers.push(() => makeCharacter(
  6544. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6545. {
  6546. front: {
  6547. height: math.unit(5 + 6 / 12, "feet"),
  6548. weight: math.unit(153, "lbs"),
  6549. name: "Front",
  6550. image: {
  6551. source: "./media/characters/andrew-cooper/front.svg"
  6552. }
  6553. },
  6554. },
  6555. [
  6556. {
  6557. name: "Nano",
  6558. height: math.unit(1, "mm")
  6559. },
  6560. {
  6561. name: "Micro",
  6562. height: math.unit(2, "inches")
  6563. },
  6564. {
  6565. name: "Normal",
  6566. height: math.unit(5 + 6 / 12, "feet"),
  6567. default: true
  6568. }
  6569. ]
  6570. ))
  6571. characterMakers.push(() => makeCharacter(
  6572. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6573. {
  6574. front: {
  6575. height: math.unit(6, "feet"),
  6576. weight: math.unit(180, "lbs"),
  6577. name: "Front",
  6578. image: {
  6579. source: "./media/characters/akane-sato/front.svg",
  6580. extra: 1219 / 1140
  6581. }
  6582. },
  6583. back: {
  6584. height: math.unit(6, "feet"),
  6585. weight: math.unit(180, "lbs"),
  6586. name: "Back",
  6587. image: {
  6588. source: "./media/characters/akane-sato/back.svg",
  6589. extra: 1219 / 1170
  6590. }
  6591. },
  6592. },
  6593. [
  6594. {
  6595. name: "Normal",
  6596. height: math.unit(2.5, "meters")
  6597. },
  6598. {
  6599. name: "Macro",
  6600. height: math.unit(250, "meters"),
  6601. default: true
  6602. },
  6603. {
  6604. name: "Megamacro",
  6605. height: math.unit(25, "km")
  6606. },
  6607. ]
  6608. ))
  6609. characterMakers.push(() => makeCharacter(
  6610. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6611. {
  6612. front: {
  6613. height: math.unit(6, "feet"),
  6614. weight: math.unit(65, "kg"),
  6615. name: "Front",
  6616. image: {
  6617. source: "./media/characters/rook/front.svg",
  6618. extra: 960 / 950
  6619. }
  6620. }
  6621. },
  6622. [
  6623. {
  6624. name: "Normal",
  6625. height: math.unit(8.8, "feet")
  6626. },
  6627. {
  6628. name: "Macro",
  6629. height: math.unit(88, "feet"),
  6630. default: true
  6631. },
  6632. {
  6633. name: "Megamacro",
  6634. height: math.unit(8, "miles")
  6635. },
  6636. ]
  6637. ))
  6638. characterMakers.push(() => makeCharacter(
  6639. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6640. {
  6641. front: {
  6642. height: math.unit(12 + 2 / 12, "feet"),
  6643. weight: math.unit(808, "lbs"),
  6644. name: "Front",
  6645. image: {
  6646. source: "./media/characters/prodigy/front.svg"
  6647. }
  6648. }
  6649. },
  6650. [
  6651. {
  6652. name: "Normal",
  6653. height: math.unit(12 + 2 / 12, "feet"),
  6654. default: true
  6655. },
  6656. {
  6657. name: "Macro",
  6658. height: math.unit(143, "feet")
  6659. },
  6660. {
  6661. name: "Macro+",
  6662. height: math.unit(400, "feet")
  6663. },
  6664. ]
  6665. ))
  6666. characterMakers.push(() => makeCharacter(
  6667. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6668. {
  6669. front: {
  6670. height: math.unit(6, "feet"),
  6671. weight: math.unit(225, "lbs"),
  6672. name: "Front",
  6673. image: {
  6674. source: "./media/characters/daniel/front.svg"
  6675. }
  6676. },
  6677. leaning: {
  6678. height: math.unit(6, "feet"),
  6679. weight: math.unit(225, "lbs"),
  6680. name: "Leaning",
  6681. image: {
  6682. source: "./media/characters/daniel/leaning.svg"
  6683. }
  6684. },
  6685. },
  6686. [
  6687. {
  6688. name: "Macro",
  6689. height: math.unit(1000, "feet"),
  6690. default: true
  6691. },
  6692. ]
  6693. ))
  6694. characterMakers.push(() => makeCharacter(
  6695. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  6696. {
  6697. front: {
  6698. height: math.unit(6, "feet"),
  6699. weight: math.unit(88, "lbs"),
  6700. name: "Front",
  6701. image: {
  6702. source: "./media/characters/chiros/front.svg",
  6703. extra: 306 / 226
  6704. }
  6705. },
  6706. side: {
  6707. height: math.unit(6, "feet"),
  6708. weight: math.unit(88, "lbs"),
  6709. name: "Side",
  6710. image: {
  6711. source: "./media/characters/chiros/side.svg",
  6712. extra: 306 / 226
  6713. }
  6714. },
  6715. },
  6716. [
  6717. {
  6718. name: "Normal",
  6719. height: math.unit(6, "cm"),
  6720. default: true
  6721. },
  6722. ]
  6723. ))
  6724. characterMakers.push(() => makeCharacter(
  6725. { name: "Selka", species: ["snake"], tags: ["naga"] },
  6726. {
  6727. front: {
  6728. height: math.unit(6, "feet"),
  6729. weight: math.unit(100, "lbs"),
  6730. name: "Front",
  6731. image: {
  6732. source: "./media/characters/selka/front.svg",
  6733. extra: 947 / 887
  6734. }
  6735. }
  6736. },
  6737. [
  6738. {
  6739. name: "Normal",
  6740. height: math.unit(5, "cm"),
  6741. default: true
  6742. },
  6743. ]
  6744. ))
  6745. characterMakers.push(() => makeCharacter(
  6746. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  6747. {
  6748. front: {
  6749. height: math.unit(8 + 3 / 12, "feet"),
  6750. weight: math.unit(424, "lbs"),
  6751. name: "Front",
  6752. image: {
  6753. source: "./media/characters/verin/front.svg",
  6754. extra: 1845 / 1550
  6755. }
  6756. },
  6757. frontArmored: {
  6758. height: math.unit(8 + 3 / 12, "feet"),
  6759. weight: math.unit(424, "lbs"),
  6760. name: "Front (Armored)",
  6761. image: {
  6762. source: "./media/characters/verin/front-armor.svg",
  6763. extra: 1845 / 1550,
  6764. bottom: 0.01
  6765. }
  6766. },
  6767. back: {
  6768. height: math.unit(8 + 3 / 12, "feet"),
  6769. weight: math.unit(424, "lbs"),
  6770. name: "Back",
  6771. image: {
  6772. source: "./media/characters/verin/back.svg",
  6773. bottom: 0.1,
  6774. extra: 1
  6775. }
  6776. },
  6777. foot: {
  6778. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  6779. name: "Foot",
  6780. image: {
  6781. source: "./media/characters/verin/foot.svg"
  6782. }
  6783. },
  6784. },
  6785. [
  6786. {
  6787. name: "Normal",
  6788. height: math.unit(8 + 3 / 12, "feet")
  6789. },
  6790. {
  6791. name: "Minimacro",
  6792. height: math.unit(21, "feet"),
  6793. default: true
  6794. },
  6795. {
  6796. name: "Macro",
  6797. height: math.unit(626, "feet")
  6798. },
  6799. ]
  6800. ))
  6801. characterMakers.push(() => makeCharacter(
  6802. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  6803. {
  6804. front: {
  6805. height: math.unit(2.718, "meters"),
  6806. weight: math.unit(150, "lbs"),
  6807. name: "Front",
  6808. image: {
  6809. source: "./media/characters/sovrim-terraquian/front.svg"
  6810. }
  6811. },
  6812. back: {
  6813. height: math.unit(2.718, "meters"),
  6814. weight: math.unit(150, "lbs"),
  6815. name: "Back",
  6816. image: {
  6817. source: "./media/characters/sovrim-terraquian/back.svg"
  6818. }
  6819. }
  6820. },
  6821. [
  6822. {
  6823. name: "Micro",
  6824. height: math.unit(2, "inches")
  6825. },
  6826. {
  6827. name: "Small",
  6828. height: math.unit(1, "meter")
  6829. },
  6830. {
  6831. name: "Normal",
  6832. height: math.unit(Math.E, "meters"),
  6833. default: true
  6834. },
  6835. {
  6836. name: "Macro",
  6837. height: math.unit(20, "meters")
  6838. },
  6839. {
  6840. name: "Macro+",
  6841. height: math.unit(400, "meters")
  6842. },
  6843. ]
  6844. ))
  6845. characterMakers.push(() => makeCharacter(
  6846. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  6847. {
  6848. front: {
  6849. height: math.unit(7, "feet"),
  6850. weight: math.unit(489, "lbs"),
  6851. name: "Front",
  6852. image: {
  6853. source: "./media/characters/reece-silvermane/front.svg",
  6854. bottom: 0.02,
  6855. extra: 1
  6856. }
  6857. },
  6858. },
  6859. [
  6860. {
  6861. name: "Macro",
  6862. height: math.unit(1.5, "miles"),
  6863. default: true
  6864. },
  6865. ]
  6866. ))
  6867. characterMakers.push(() => makeCharacter(
  6868. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  6869. {
  6870. front: {
  6871. height: math.unit(6, "feet"),
  6872. weight: math.unit(78, "kg"),
  6873. name: "Front",
  6874. image: {
  6875. source: "./media/characters/kane/front.svg",
  6876. extra: 978 / 899
  6877. }
  6878. },
  6879. },
  6880. [
  6881. {
  6882. name: "Normal",
  6883. height: math.unit(2.1, "m"),
  6884. },
  6885. {
  6886. name: "Macro",
  6887. height: math.unit(1, "km"),
  6888. default: true
  6889. },
  6890. ]
  6891. ))
  6892. characterMakers.push(() => makeCharacter(
  6893. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  6894. {
  6895. front: {
  6896. height: math.unit(6, "feet"),
  6897. weight: math.unit(200, "kg"),
  6898. name: "Front",
  6899. image: {
  6900. source: "./media/characters/tegon/front.svg",
  6901. bottom: 0.01,
  6902. extra: 1
  6903. }
  6904. },
  6905. },
  6906. [
  6907. {
  6908. name: "Micro",
  6909. height: math.unit(1, "inch")
  6910. },
  6911. {
  6912. name: "Normal",
  6913. height: math.unit(6 + 3 / 12, "feet"),
  6914. default: true
  6915. },
  6916. {
  6917. name: "Macro",
  6918. height: math.unit(300, "feet")
  6919. },
  6920. {
  6921. name: "Megamacro",
  6922. height: math.unit(69, "miles")
  6923. },
  6924. ]
  6925. ))
  6926. characterMakers.push(() => makeCharacter(
  6927. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  6928. {
  6929. side: {
  6930. height: math.unit(6, "feet"),
  6931. weight: math.unit(2304, "lbs"),
  6932. name: "Side",
  6933. image: {
  6934. source: "./media/characters/arcturax/side.svg",
  6935. extra: 790 / 376,
  6936. bottom: 0.01
  6937. }
  6938. },
  6939. },
  6940. [
  6941. {
  6942. name: "Micro",
  6943. height: math.unit(2, "inch")
  6944. },
  6945. {
  6946. name: "Normal",
  6947. height: math.unit(6, "feet")
  6948. },
  6949. {
  6950. name: "Macro",
  6951. height: math.unit(39, "feet"),
  6952. default: true
  6953. },
  6954. {
  6955. name: "Megamacro",
  6956. height: math.unit(7, "miles")
  6957. },
  6958. ]
  6959. ))
  6960. characterMakers.push(() => makeCharacter(
  6961. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  6962. {
  6963. front: {
  6964. height: math.unit(6, "feet"),
  6965. weight: math.unit(50, "lbs"),
  6966. name: "Front",
  6967. image: {
  6968. source: "./media/characters/sentri/front.svg",
  6969. extra: 1750 / 1570,
  6970. bottom: 0.025
  6971. }
  6972. },
  6973. frontAlt: {
  6974. height: math.unit(6, "feet"),
  6975. weight: math.unit(50, "lbs"),
  6976. name: "Front (Alt)",
  6977. image: {
  6978. source: "./media/characters/sentri/front-alt.svg",
  6979. extra: 1750 / 1570,
  6980. bottom: 0.025
  6981. }
  6982. },
  6983. },
  6984. [
  6985. {
  6986. name: "Normal",
  6987. height: math.unit(15, "feet"),
  6988. default: true
  6989. },
  6990. {
  6991. name: "Macro",
  6992. height: math.unit(2500, "feet")
  6993. }
  6994. ]
  6995. ))
  6996. characterMakers.push(() => makeCharacter(
  6997. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  6998. {
  6999. front: {
  7000. height: math.unit(5 + 8 / 12, "feet"),
  7001. weight: math.unit(130, "lbs"),
  7002. name: "Front",
  7003. image: {
  7004. source: "./media/characters/corvin/front.svg",
  7005. extra: 1803 / 1629
  7006. }
  7007. },
  7008. frontShirt: {
  7009. height: math.unit(5 + 8 / 12, "feet"),
  7010. weight: math.unit(130, "lbs"),
  7011. name: "Front (Shirt)",
  7012. image: {
  7013. source: "./media/characters/corvin/front-shirt.svg",
  7014. extra: 1803 / 1629
  7015. }
  7016. },
  7017. frontPoncho: {
  7018. height: math.unit(5 + 8 / 12, "feet"),
  7019. weight: math.unit(130, "lbs"),
  7020. name: "Front (Poncho)",
  7021. image: {
  7022. source: "./media/characters/corvin/front-poncho.svg",
  7023. extra: 1803 / 1629
  7024. }
  7025. },
  7026. side: {
  7027. height: math.unit(5 + 8 / 12, "feet"),
  7028. weight: math.unit(130, "lbs"),
  7029. name: "Side",
  7030. image: {
  7031. source: "./media/characters/corvin/side.svg",
  7032. extra: 1012 / 945
  7033. }
  7034. },
  7035. back: {
  7036. height: math.unit(5 + 8 / 12, "feet"),
  7037. weight: math.unit(130, "lbs"),
  7038. name: "Back",
  7039. image: {
  7040. source: "./media/characters/corvin/back.svg",
  7041. extra: 1803 / 1629
  7042. }
  7043. },
  7044. },
  7045. [
  7046. {
  7047. name: "Micro",
  7048. height: math.unit(3, "inches")
  7049. },
  7050. {
  7051. name: "Normal",
  7052. height: math.unit(5 + 8 / 12, "feet")
  7053. },
  7054. {
  7055. name: "Macro",
  7056. height: math.unit(300, "feet"),
  7057. default: true
  7058. },
  7059. {
  7060. name: "Megamacro",
  7061. height: math.unit(500, "miles")
  7062. }
  7063. ]
  7064. ))
  7065. characterMakers.push(() => makeCharacter(
  7066. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7067. {
  7068. front: {
  7069. height: math.unit(6, "feet"),
  7070. weight: math.unit(135, "lbs"),
  7071. name: "Front",
  7072. image: {
  7073. source: "./media/characters/q/front.svg",
  7074. extra: 854 / 752,
  7075. bottom: 0.005
  7076. }
  7077. },
  7078. back: {
  7079. height: math.unit(6, "feet"),
  7080. weight: math.unit(130, "lbs"),
  7081. name: "Back",
  7082. image: {
  7083. source: "./media/characters/q/back.svg",
  7084. extra: 854 / 752
  7085. }
  7086. },
  7087. },
  7088. [
  7089. {
  7090. name: "Macro",
  7091. height: math.unit(90, "feet"),
  7092. default: true
  7093. },
  7094. {
  7095. name: "Extra Macro",
  7096. height: math.unit(300, "feet"),
  7097. },
  7098. {
  7099. name: "BIG WALF",
  7100. height: math.unit(750, "feet"),
  7101. },
  7102. ]
  7103. ))
  7104. characterMakers.push(() => makeCharacter(
  7105. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7106. {
  7107. front: {
  7108. height: math.unit(6, "feet"),
  7109. weight: math.unit(150, "lbs"),
  7110. name: "Front",
  7111. image: {
  7112. source: "./media/characters/carley/front.svg",
  7113. extra: 3927 / 3540,
  7114. bottom: 0.03
  7115. }
  7116. }
  7117. },
  7118. [
  7119. {
  7120. name: "Normal",
  7121. height: math.unit(6 + 3 / 12, "feet")
  7122. },
  7123. {
  7124. name: "Macro",
  7125. height: math.unit(185, "feet"),
  7126. default: true
  7127. },
  7128. {
  7129. name: "Megamacro",
  7130. height: math.unit(8, "miles"),
  7131. },
  7132. ]
  7133. ))
  7134. characterMakers.push(() => makeCharacter(
  7135. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7136. {
  7137. front: {
  7138. height: math.unit(3, "feet"),
  7139. weight: math.unit(28, "lbs"),
  7140. name: "Front",
  7141. image: {
  7142. source: "./media/characters/citrine/front.svg"
  7143. }
  7144. }
  7145. },
  7146. [
  7147. {
  7148. name: "Normal",
  7149. height: math.unit(3, "feet"),
  7150. default: true
  7151. }
  7152. ]
  7153. ))
  7154. characterMakers.push(() => makeCharacter(
  7155. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7156. {
  7157. front: {
  7158. height: math.unit(14, "feet"),
  7159. weight: math.unit(1450, "kg"),
  7160. capacity: math.unit(15, "people"),
  7161. name: "Front",
  7162. image: {
  7163. source: "./media/characters/aura-starwind/front.svg",
  7164. extra: 1455 / 1335
  7165. }
  7166. },
  7167. side: {
  7168. height: math.unit(14, "feet"),
  7169. weight: math.unit(1450, "kg"),
  7170. capacity: math.unit(15, "people"),
  7171. name: "Side",
  7172. image: {
  7173. source: "./media/characters/aura-starwind/side.svg",
  7174. extra: 1654 / 1497
  7175. }
  7176. },
  7177. taur: {
  7178. height: math.unit(18, "feet"),
  7179. weight: math.unit(5500, "kg"),
  7180. capacity: math.unit(50, "people"),
  7181. name: "Taur",
  7182. image: {
  7183. source: "./media/characters/aura-starwind/taur.svg",
  7184. extra: 1760 / 1650
  7185. }
  7186. },
  7187. feral: {
  7188. height: math.unit(46, "feet"),
  7189. weight: math.unit(25000, "kg"),
  7190. capacity: math.unit(120, "people"),
  7191. name: "Feral",
  7192. image: {
  7193. source: "./media/characters/aura-starwind/feral.svg"
  7194. }
  7195. },
  7196. },
  7197. [
  7198. {
  7199. name: "Normal",
  7200. height: math.unit(14, "feet"),
  7201. default: true
  7202. },
  7203. {
  7204. name: "Macro",
  7205. height: math.unit(50, "meters")
  7206. },
  7207. {
  7208. name: "Megamacro",
  7209. height: math.unit(5000, "meters")
  7210. },
  7211. {
  7212. name: "Gigamacro",
  7213. height: math.unit(100000, "kilometers")
  7214. },
  7215. ]
  7216. ))
  7217. characterMakers.push(() => makeCharacter(
  7218. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7219. {
  7220. front: {
  7221. height: math.unit(2 + 7 / 12, "feet"),
  7222. weight: math.unit(32, "lbs"),
  7223. name: "Front",
  7224. image: {
  7225. source: "./media/characters/rivet/front.svg",
  7226. extra: 1716 / 1658,
  7227. bottom: 0.03
  7228. }
  7229. },
  7230. foot: {
  7231. height: math.unit(0.551, "feet"),
  7232. name: "Rivet's Foot",
  7233. image: {
  7234. source: "./media/characters/rivet/foot.svg"
  7235. },
  7236. rename: true
  7237. }
  7238. },
  7239. [
  7240. {
  7241. name: "Micro",
  7242. height: math.unit(1.5, "inches"),
  7243. },
  7244. {
  7245. name: "Normal",
  7246. height: math.unit(2 + 7 / 12, "feet"),
  7247. default: true
  7248. },
  7249. {
  7250. name: "Macro",
  7251. height: math.unit(85, "feet")
  7252. },
  7253. {
  7254. name: "Megamacro",
  7255. height: math.unit(2.2, "km")
  7256. }
  7257. ]
  7258. ))
  7259. characterMakers.push(() => makeCharacter(
  7260. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7261. {
  7262. front: {
  7263. height: math.unit(5 + 9 / 12, "feet"),
  7264. weight: math.unit(150, "lbs"),
  7265. name: "Front",
  7266. image: {
  7267. source: "./media/characters/coffee/front.svg",
  7268. extra: 3666 / 3032,
  7269. bottom: 0.04
  7270. }
  7271. },
  7272. foot: {
  7273. height: math.unit(1.29, "feet"),
  7274. name: "Foot",
  7275. image: {
  7276. source: "./media/characters/coffee/foot.svg"
  7277. }
  7278. },
  7279. },
  7280. [
  7281. {
  7282. name: "Micro",
  7283. height: math.unit(2, "inches"),
  7284. },
  7285. {
  7286. name: "Normal",
  7287. height: math.unit(5 + 9 / 12, "feet"),
  7288. default: true
  7289. },
  7290. {
  7291. name: "Macro",
  7292. height: math.unit(800, "feet")
  7293. },
  7294. {
  7295. name: "Megamacro",
  7296. height: math.unit(25, "miles")
  7297. }
  7298. ]
  7299. ))
  7300. characterMakers.push(() => makeCharacter(
  7301. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7302. {
  7303. front: {
  7304. height: math.unit(6, "feet"),
  7305. weight: math.unit(200, "lbs"),
  7306. name: "Front",
  7307. image: {
  7308. source: "./media/characters/chari-gal/front.svg",
  7309. extra: 1568 / 1385,
  7310. bottom: 0.047
  7311. }
  7312. },
  7313. gigantamax: {
  7314. height: math.unit(6 * 16, "feet"),
  7315. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7316. name: "Gigantamax",
  7317. image: {
  7318. source: "./media/characters/chari-gal/gigantamax.svg",
  7319. extra: 1124 / 888,
  7320. bottom: 0.03
  7321. }
  7322. },
  7323. },
  7324. [
  7325. {
  7326. name: "Normal",
  7327. height: math.unit(5 + 7 / 12, "feet")
  7328. },
  7329. {
  7330. name: "Macro",
  7331. height: math.unit(200, "feet"),
  7332. default: true
  7333. }
  7334. ]
  7335. ))
  7336. characterMakers.push(() => makeCharacter(
  7337. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7338. {
  7339. front: {
  7340. height: math.unit(6, "feet"),
  7341. weight: math.unit(150, "lbs"),
  7342. name: "Front",
  7343. image: {
  7344. source: "./media/characters/nova/front.svg",
  7345. extra: 5000 / 4722,
  7346. bottom: 0.02
  7347. }
  7348. }
  7349. },
  7350. [
  7351. {
  7352. name: "Micro-",
  7353. height: math.unit(0.8, "inches")
  7354. },
  7355. {
  7356. name: "Micro",
  7357. height: math.unit(2, "inches"),
  7358. default: true
  7359. },
  7360. ]
  7361. ))
  7362. characterMakers.push(() => makeCharacter(
  7363. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7364. {
  7365. front: {
  7366. height: math.unit(3 + 1 / 12, "feet"),
  7367. weight: math.unit(21.7, "lbs"),
  7368. name: "Front",
  7369. image: {
  7370. source: "./media/characters/argent/front.svg",
  7371. extra: 1471 / 1331,
  7372. bottom: 100.8 / 1575.5
  7373. }
  7374. }
  7375. },
  7376. [
  7377. {
  7378. name: "Micro",
  7379. height: math.unit(2, "inches")
  7380. },
  7381. {
  7382. name: "Normal",
  7383. height: math.unit(3 + 1 / 12, "feet"),
  7384. default: true
  7385. },
  7386. {
  7387. name: "Macro",
  7388. height: math.unit(120, "feet")
  7389. },
  7390. ]
  7391. ))
  7392. characterMakers.push(() => makeCharacter(
  7393. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7394. {
  7395. lamp: {
  7396. height: math.unit(7 * 1559 / 989, "feet"),
  7397. name: "Magic Lamp",
  7398. image: {
  7399. source: "./media/characters/mira-al-cul/lamp.svg",
  7400. extra: 1617 / 1559
  7401. }
  7402. },
  7403. front: {
  7404. height: math.unit(7, "feet"),
  7405. name: "Front",
  7406. image: {
  7407. source: "./media/characters/mira-al-cul/front.svg",
  7408. extra: 1044 / 990
  7409. }
  7410. },
  7411. },
  7412. [
  7413. {
  7414. name: "Heavily Restricted",
  7415. height: math.unit(7 * 1559 / 989, "feet")
  7416. },
  7417. {
  7418. name: "Freshly Freed",
  7419. height: math.unit(50 * 1559 / 989, "feet")
  7420. },
  7421. {
  7422. name: "World Encompassing",
  7423. height: math.unit(10000 * 1559 / 989, "miles")
  7424. },
  7425. {
  7426. name: "Galactic",
  7427. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7428. },
  7429. {
  7430. name: "Palmed Universe",
  7431. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7432. default: true
  7433. },
  7434. {
  7435. name: "Multiversal Matriarch",
  7436. height: math.unit(8.87e10, "yottameters")
  7437. },
  7438. {
  7439. name: "Void Mother",
  7440. height: math.unit(3.14e110, "yottaparsecs")
  7441. },
  7442. ]
  7443. ))
  7444. characterMakers.push(() => makeCharacter(
  7445. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7446. {
  7447. front: {
  7448. height: math.unit(17 + 1 / 12, "feet"),
  7449. weight: math.unit(476.2 * 5, "lbs"),
  7450. name: "Front",
  7451. image: {
  7452. source: "./media/characters/kuro-shi-uchū/front.svg",
  7453. extra: 2329 / 1835,
  7454. bottom: 0.02
  7455. }
  7456. },
  7457. },
  7458. [
  7459. {
  7460. name: "Micro",
  7461. height: math.unit(2, "inches")
  7462. },
  7463. {
  7464. name: "Normal",
  7465. height: math.unit(12, "meters")
  7466. },
  7467. {
  7468. name: "Planetary",
  7469. height: math.unit(0.00929, "AU"),
  7470. default: true
  7471. },
  7472. {
  7473. name: "Universal",
  7474. height: math.unit(20, "gigaparsecs")
  7475. },
  7476. ]
  7477. ))
  7478. characterMakers.push(() => makeCharacter(
  7479. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7480. {
  7481. front: {
  7482. height: math.unit(5 + 2 / 12, "feet"),
  7483. weight: math.unit(120, "lbs"),
  7484. name: "Front",
  7485. image: {
  7486. source: "./media/characters/katherine/front.svg",
  7487. extra: 2075 / 1969
  7488. }
  7489. },
  7490. dress: {
  7491. height: math.unit(5 + 2 / 12, "feet"),
  7492. weight: math.unit(120, "lbs"),
  7493. name: "Dress",
  7494. image: {
  7495. source: "./media/characters/katherine/dress.svg",
  7496. extra: 2258 / 2064
  7497. }
  7498. },
  7499. },
  7500. [
  7501. {
  7502. name: "Micro",
  7503. height: math.unit(1, "inches"),
  7504. default: true
  7505. },
  7506. {
  7507. name: "Normal",
  7508. height: math.unit(5 + 2 / 12, "feet")
  7509. },
  7510. {
  7511. name: "Macro",
  7512. height: math.unit(100, "meters")
  7513. },
  7514. {
  7515. name: "Megamacro",
  7516. height: math.unit(80, "miles")
  7517. },
  7518. ]
  7519. ))
  7520. characterMakers.push(() => makeCharacter(
  7521. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7522. {
  7523. front: {
  7524. height: math.unit(7 + 8 / 12, "feet"),
  7525. weight: math.unit(250, "lbs"),
  7526. name: "Front",
  7527. image: {
  7528. source: "./media/characters/yevis/front.svg",
  7529. extra: 1938 / 1755
  7530. }
  7531. }
  7532. },
  7533. [
  7534. {
  7535. name: "Mortal",
  7536. height: math.unit(7 + 8 / 12, "feet")
  7537. },
  7538. {
  7539. name: "Battle",
  7540. height: math.unit(25 + 11 / 12, "feet")
  7541. },
  7542. {
  7543. name: "Wrath",
  7544. height: math.unit(1654 + 11 / 12, "feet")
  7545. },
  7546. {
  7547. name: "Planet Destroyer",
  7548. height: math.unit(12000, "miles")
  7549. },
  7550. {
  7551. name: "Galaxy Conqueror",
  7552. height: math.unit(1.45, "zettameters"),
  7553. default: true
  7554. },
  7555. {
  7556. name: "Universal War",
  7557. height: math.unit(184, "gigaparsecs")
  7558. },
  7559. {
  7560. name: "Eternity War",
  7561. height: math.unit(1.98e55, "yottaparsecs")
  7562. },
  7563. ]
  7564. ))
  7565. characterMakers.push(() => makeCharacter(
  7566. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7567. {
  7568. front: {
  7569. height: math.unit(5 + 8 / 12, "feet"),
  7570. weight: math.unit(63, "kg"),
  7571. name: "Front",
  7572. image: {
  7573. source: "./media/characters/xavier/front.svg",
  7574. extra: 944 / 883
  7575. }
  7576. },
  7577. frontStretch: {
  7578. height: math.unit(5 + 8 / 12, "feet"),
  7579. weight: math.unit(63, "kg"),
  7580. name: "Stretching",
  7581. image: {
  7582. source: "./media/characters/xavier/front-stretch.svg",
  7583. extra: 962 / 820
  7584. }
  7585. },
  7586. },
  7587. [
  7588. {
  7589. name: "Normal",
  7590. height: math.unit(5 + 8 / 12, "feet")
  7591. },
  7592. {
  7593. name: "Macro",
  7594. height: math.unit(100, "meters"),
  7595. default: true
  7596. },
  7597. {
  7598. name: "McLargeHuge",
  7599. height: math.unit(10, "miles")
  7600. },
  7601. ]
  7602. ))
  7603. characterMakers.push(() => makeCharacter(
  7604. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7605. {
  7606. front: {
  7607. height: math.unit(5 + 5 / 12, "feet"),
  7608. weight: math.unit(150, "lb"),
  7609. name: "Front",
  7610. image: {
  7611. source: "./media/characters/joshii/front.svg"
  7612. }
  7613. },
  7614. foot: {
  7615. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7616. name: "Foot",
  7617. image: {
  7618. source: "./media/characters/joshii/foot.svg"
  7619. }
  7620. },
  7621. },
  7622. [
  7623. {
  7624. name: "Micro",
  7625. height: math.unit(2, "inches")
  7626. },
  7627. {
  7628. name: "Normal",
  7629. height: math.unit(5 + 5 / 12, "feet"),
  7630. default: true
  7631. },
  7632. {
  7633. name: "Macro",
  7634. height: math.unit(785, "feet")
  7635. },
  7636. {
  7637. name: "Megamacro",
  7638. height: math.unit(24.5, "miles")
  7639. },
  7640. ]
  7641. ))
  7642. characterMakers.push(() => makeCharacter(
  7643. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  7644. {
  7645. front: {
  7646. height: math.unit(6, "feet"),
  7647. weight: math.unit(150, "lb"),
  7648. name: "Front",
  7649. image: {
  7650. source: "./media/characters/goddess-elizabeth/front.svg",
  7651. extra: 1800 / 1525,
  7652. bottom: 0.005
  7653. }
  7654. },
  7655. foot: {
  7656. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7657. name: "Foot",
  7658. image: {
  7659. source: "./media/characters/goddess-elizabeth/foot.svg"
  7660. }
  7661. },
  7662. mouth: {
  7663. height: math.unit(6, "feet"),
  7664. name: "Mouth",
  7665. image: {
  7666. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7667. }
  7668. },
  7669. },
  7670. [
  7671. {
  7672. name: "Micro",
  7673. height: math.unit(12, "feet")
  7674. },
  7675. {
  7676. name: "Normal",
  7677. height: math.unit(80, "miles"),
  7678. default: true
  7679. },
  7680. {
  7681. name: "Macro",
  7682. height: math.unit(15000, "parsecs")
  7683. },
  7684. ]
  7685. ))
  7686. characterMakers.push(() => makeCharacter(
  7687. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  7688. {
  7689. front: {
  7690. height: math.unit(5 + 9 / 12, "feet"),
  7691. weight: math.unit(144, "lb"),
  7692. name: "Front",
  7693. image: {
  7694. source: "./media/characters/kara/front.svg"
  7695. }
  7696. },
  7697. feet: {
  7698. height: math.unit(6 / 6.765, "feet"),
  7699. name: "Kara's Feet",
  7700. rename: true,
  7701. image: {
  7702. source: "./media/characters/kara/feet.svg"
  7703. }
  7704. },
  7705. },
  7706. [
  7707. {
  7708. name: "Normal",
  7709. height: math.unit(5 + 9 / 12, "feet")
  7710. },
  7711. {
  7712. name: "Macro",
  7713. height: math.unit(174, "feet"),
  7714. default: true
  7715. },
  7716. ]
  7717. ))
  7718. characterMakers.push(() => makeCharacter(
  7719. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  7720. {
  7721. front: {
  7722. height: math.unit(18, "feet"),
  7723. weight: math.unit(4050, "lb"),
  7724. name: "Front",
  7725. image: {
  7726. source: "./media/characters/tyrone/front.svg",
  7727. extra: 2520 / 2402,
  7728. bottom: 0.025
  7729. }
  7730. },
  7731. },
  7732. [
  7733. {
  7734. name: "Normal",
  7735. height: math.unit(18, "feet"),
  7736. default: true
  7737. },
  7738. {
  7739. name: "Macro",
  7740. height: math.unit(300, "feet")
  7741. },
  7742. ]
  7743. ))
  7744. characterMakers.push(() => makeCharacter(
  7745. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  7746. {
  7747. front: {
  7748. height: math.unit(7 + 8 / 12, "feet"),
  7749. weight: math.unit(120, "lb"),
  7750. name: "Front",
  7751. image: {
  7752. source: "./media/characters/danny/front.svg",
  7753. extra: 1490 / 1350
  7754. }
  7755. },
  7756. back: {
  7757. height: math.unit(7 + 8 / 12, "feet"),
  7758. weight: math.unit(120, "lb"),
  7759. name: "Back",
  7760. image: {
  7761. source: "./media/characters/danny/back.svg",
  7762. extra: 1490 / 1350
  7763. }
  7764. },
  7765. },
  7766. [
  7767. {
  7768. name: "Normal",
  7769. height: math.unit(7 + 8 / 12, "feet"),
  7770. default: true
  7771. },
  7772. ]
  7773. ))
  7774. characterMakers.push(() => makeCharacter(
  7775. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  7776. {
  7777. front: {
  7778. height: math.unit(3.5, "inches"),
  7779. weight: math.unit(19, "grams"),
  7780. name: "Front",
  7781. image: {
  7782. source: "./media/characters/mallow/front.svg",
  7783. extra: 471 / 431
  7784. }
  7785. },
  7786. back: {
  7787. height: math.unit(3.5, "inches"),
  7788. weight: math.unit(19, "grams"),
  7789. name: "Back",
  7790. image: {
  7791. source: "./media/characters/mallow/back.svg",
  7792. extra: 471 / 431
  7793. }
  7794. },
  7795. },
  7796. [
  7797. {
  7798. name: "Normal",
  7799. height: math.unit(3.5, "inches"),
  7800. default: true
  7801. },
  7802. ]
  7803. ))
  7804. characterMakers.push(() => makeCharacter(
  7805. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  7806. {
  7807. front: {
  7808. height: math.unit(9, "feet"),
  7809. weight: math.unit(230, "kg"),
  7810. name: "Front",
  7811. image: {
  7812. source: "./media/characters/starry-aqua/front.svg"
  7813. }
  7814. },
  7815. back: {
  7816. height: math.unit(9, "feet"),
  7817. weight: math.unit(230, "kg"),
  7818. name: "Back",
  7819. image: {
  7820. source: "./media/characters/starry-aqua/back.svg"
  7821. }
  7822. },
  7823. hand: {
  7824. height: math.unit(9 * 0.1168, "feet"),
  7825. name: "Hand",
  7826. image: {
  7827. source: "./media/characters/starry-aqua/hand.svg"
  7828. }
  7829. },
  7830. foot: {
  7831. height: math.unit(9 * 0.18, "feet"),
  7832. name: "Foot",
  7833. image: {
  7834. source: "./media/characters/starry-aqua/foot.svg"
  7835. }
  7836. }
  7837. },
  7838. [
  7839. {
  7840. name: "Micro",
  7841. height: math.unit(3, "inches")
  7842. },
  7843. {
  7844. name: "Normal",
  7845. height: math.unit(9, "feet")
  7846. },
  7847. {
  7848. name: "Macro",
  7849. height: math.unit(300, "feet"),
  7850. default: true
  7851. },
  7852. {
  7853. name: "Megamacro",
  7854. height: math.unit(3200, "feet")
  7855. }
  7856. ]
  7857. ))
  7858. characterMakers.push(() => makeCharacter(
  7859. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  7860. {
  7861. front: {
  7862. height: math.unit(6, "feet"),
  7863. weight: math.unit(230, "lb"),
  7864. name: "Front",
  7865. image: {
  7866. source: "./media/characters/luka/front.svg",
  7867. extra: 1,
  7868. bottom: 0.025
  7869. }
  7870. },
  7871. },
  7872. [
  7873. {
  7874. name: "Normal",
  7875. height: math.unit(12 + 8 / 12, "feet"),
  7876. default: true
  7877. },
  7878. {
  7879. name: "Minimacro",
  7880. height: math.unit(20, "feet")
  7881. },
  7882. {
  7883. name: "Macro",
  7884. height: math.unit(250, "feet")
  7885. },
  7886. {
  7887. name: "Megamacro",
  7888. height: math.unit(5, "miles")
  7889. },
  7890. {
  7891. name: "Gigamacro",
  7892. height: math.unit(8000, "miles")
  7893. },
  7894. ]
  7895. ))
  7896. characterMakers.push(() => makeCharacter(
  7897. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  7898. {
  7899. front: {
  7900. height: math.unit(6, "feet"),
  7901. weight: math.unit(150, "lb"),
  7902. name: "Front",
  7903. image: {
  7904. source: "./media/characters/natalie-nightring/front.svg",
  7905. extra: 1,
  7906. bottom: 0.06
  7907. }
  7908. },
  7909. },
  7910. [
  7911. {
  7912. name: "Uh Oh",
  7913. height: math.unit(0.1, "mm")
  7914. },
  7915. {
  7916. name: "Small",
  7917. height: math.unit(3, "inches")
  7918. },
  7919. {
  7920. name: "Human Scale",
  7921. height: math.unit(6, "feet")
  7922. },
  7923. {
  7924. name: "Librarian",
  7925. height: math.unit(50, "feet"),
  7926. default: true
  7927. },
  7928. {
  7929. name: "Immense",
  7930. height: math.unit(200, "miles")
  7931. },
  7932. ]
  7933. ))
  7934. characterMakers.push(() => makeCharacter(
  7935. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  7936. {
  7937. front: {
  7938. height: math.unit(6, "feet"),
  7939. weight: math.unit(180, "lbs"),
  7940. name: "Front",
  7941. image: {
  7942. source: "./media/characters/danni-rosie/front.svg",
  7943. extra: 1260 / 1128,
  7944. bottom: 0.022
  7945. }
  7946. },
  7947. },
  7948. [
  7949. {
  7950. name: "Micro",
  7951. height: math.unit(2, "inches"),
  7952. default: true
  7953. },
  7954. ]
  7955. ))
  7956. characterMakers.push(() => makeCharacter(
  7957. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  7958. {
  7959. front: {
  7960. height: math.unit(5 + 9 / 12, "feet"),
  7961. weight: math.unit(220, "lb"),
  7962. name: "Front",
  7963. image: {
  7964. source: "./media/characters/samantha-kruse/front.svg",
  7965. extra: (985 / 935),
  7966. bottom: 0.03
  7967. }
  7968. },
  7969. frontUndressed: {
  7970. height: math.unit(5 + 9 / 12, "feet"),
  7971. weight: math.unit(220, "lb"),
  7972. name: "Front (Undressed)",
  7973. image: {
  7974. source: "./media/characters/samantha-kruse/front-undressed.svg",
  7975. extra: (973 / 923),
  7976. bottom: 0.025
  7977. }
  7978. },
  7979. fat: {
  7980. height: math.unit(5 + 9 / 12, "feet"),
  7981. weight: math.unit(900, "lb"),
  7982. name: "Front (Fat)",
  7983. image: {
  7984. source: "./media/characters/samantha-kruse/fat.svg",
  7985. extra: 2688 / 2561
  7986. }
  7987. },
  7988. },
  7989. [
  7990. {
  7991. name: "Normal",
  7992. height: math.unit(5 + 9 / 12, "feet"),
  7993. default: true
  7994. }
  7995. ]
  7996. ))
  7997. characterMakers.push(() => makeCharacter(
  7998. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  7999. {
  8000. back: {
  8001. height: math.unit(5 + 4 / 12, "feet"),
  8002. weight: math.unit(4963, "lb"),
  8003. name: "Back",
  8004. image: {
  8005. source: "./media/characters/amelia-rosie/back.svg",
  8006. extra: 1113 / 963,
  8007. bottom: 0.01
  8008. }
  8009. },
  8010. },
  8011. [
  8012. {
  8013. name: "Level 0",
  8014. height: math.unit(5 + 4 / 12, "feet")
  8015. },
  8016. {
  8017. name: "Level 1",
  8018. height: math.unit(164597, "feet"),
  8019. default: true
  8020. },
  8021. {
  8022. name: "Level 2",
  8023. height: math.unit(956243, "miles")
  8024. },
  8025. {
  8026. name: "Level 3",
  8027. height: math.unit(29421709423, "miles")
  8028. },
  8029. {
  8030. name: "Level 4",
  8031. height: math.unit(154, "lightyears")
  8032. },
  8033. {
  8034. name: "Level 5",
  8035. height: math.unit(4738272, "lightyears")
  8036. },
  8037. {
  8038. name: "Level 6",
  8039. height: math.unit(145787152896, "lightyears")
  8040. },
  8041. ]
  8042. ))
  8043. characterMakers.push(() => makeCharacter(
  8044. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8045. {
  8046. front: {
  8047. height: math.unit(5 + 11 / 12, "feet"),
  8048. weight: math.unit(65, "kg"),
  8049. name: "Front",
  8050. image: {
  8051. source: "./media/characters/rook-kitara/front.svg",
  8052. extra: 1347 / 1274,
  8053. bottom: 0.005
  8054. }
  8055. },
  8056. },
  8057. [
  8058. {
  8059. name: "Totally Unfair",
  8060. height: math.unit(1.8, "mm")
  8061. },
  8062. {
  8063. name: "Lap Rookie",
  8064. height: math.unit(1.4, "feet")
  8065. },
  8066. {
  8067. name: "Normal",
  8068. height: math.unit(5 + 11 / 12, "feet"),
  8069. default: true
  8070. },
  8071. {
  8072. name: "How Did This Happen",
  8073. height: math.unit(80, "miles")
  8074. }
  8075. ]
  8076. ))
  8077. characterMakers.push(() => makeCharacter(
  8078. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8079. {
  8080. front: {
  8081. height: math.unit(7, "feet"),
  8082. weight: math.unit(300, "lb"),
  8083. name: "Front",
  8084. image: {
  8085. source: "./media/characters/pisces/front.svg",
  8086. extra: 2255 / 2115,
  8087. bottom: 0.03
  8088. }
  8089. },
  8090. back: {
  8091. height: math.unit(7, "feet"),
  8092. weight: math.unit(300, "lb"),
  8093. name: "Back",
  8094. image: {
  8095. source: "./media/characters/pisces/back.svg",
  8096. extra: 2146 / 2055,
  8097. bottom: 0.04
  8098. }
  8099. },
  8100. },
  8101. [
  8102. {
  8103. name: "Normal",
  8104. height: math.unit(7, "feet"),
  8105. default: true
  8106. },
  8107. {
  8108. name: "Swimming Pool",
  8109. height: math.unit(12.2, "meters")
  8110. },
  8111. {
  8112. name: "Olympic Swimming Pool",
  8113. height: math.unit(56.3, "meters")
  8114. },
  8115. {
  8116. name: "Lake Superior",
  8117. height: math.unit(93900, "meters")
  8118. },
  8119. {
  8120. name: "Mediterranean Sea",
  8121. height: math.unit(644457, "meters")
  8122. },
  8123. {
  8124. name: "World's Oceans",
  8125. height: math.unit(4567491, "meters")
  8126. },
  8127. ]
  8128. ))
  8129. characterMakers.push(() => makeCharacter(
  8130. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8131. {
  8132. front: {
  8133. height: math.unit(2.3, "meters"),
  8134. weight: math.unit(120, "kg"),
  8135. name: "Front",
  8136. image: {
  8137. source: "./media/characters/zelas/front.svg"
  8138. }
  8139. },
  8140. side: {
  8141. height: math.unit(2.3, "meters"),
  8142. weight: math.unit(120, "kg"),
  8143. name: "Side",
  8144. image: {
  8145. source: "./media/characters/zelas/side.svg"
  8146. }
  8147. },
  8148. back: {
  8149. height: math.unit(2.3, "meters"),
  8150. weight: math.unit(120, "kg"),
  8151. name: "Back",
  8152. image: {
  8153. source: "./media/characters/zelas/back.svg"
  8154. }
  8155. },
  8156. foot: {
  8157. height: math.unit(1.116, "feet"),
  8158. name: "Foot",
  8159. image: {
  8160. source: "./media/characters/zelas/foot.svg"
  8161. }
  8162. },
  8163. },
  8164. [
  8165. {
  8166. name: "Normal",
  8167. height: math.unit(2.3, "meters")
  8168. },
  8169. {
  8170. name: "Macro",
  8171. height: math.unit(30, "meters"),
  8172. default: true
  8173. },
  8174. ]
  8175. ))
  8176. characterMakers.push(() => makeCharacter(
  8177. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8178. {
  8179. front: {
  8180. height: math.unit(1, "inch"),
  8181. weight: math.unit(0.21, "grams"),
  8182. name: "Front",
  8183. image: {
  8184. source: "./media/characters/talbot/front.svg",
  8185. extra: 594 / 544
  8186. }
  8187. },
  8188. },
  8189. [
  8190. {
  8191. name: "Micro",
  8192. height: math.unit(1, "inch"),
  8193. default: true
  8194. },
  8195. ]
  8196. ))
  8197. characterMakers.push(() => makeCharacter(
  8198. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8199. {
  8200. front: {
  8201. height: math.unit(3 + 3 / 12, "feet"),
  8202. weight: math.unit(51.8, "lb"),
  8203. name: "Front",
  8204. image: {
  8205. source: "./media/characters/fliss/front.svg",
  8206. extra: 840 / 640
  8207. }
  8208. },
  8209. },
  8210. [
  8211. {
  8212. name: "Teeny Tiny",
  8213. height: math.unit(1, "mm")
  8214. },
  8215. {
  8216. name: "Small",
  8217. height: math.unit(1, "inch"),
  8218. default: true
  8219. },
  8220. {
  8221. name: "Standard Sylveon",
  8222. height: math.unit(3 + 3 / 12, "feet")
  8223. },
  8224. {
  8225. name: "Large Nuisance",
  8226. height: math.unit(33, "feet")
  8227. },
  8228. {
  8229. name: "City Filler",
  8230. height: math.unit(3000, "feet")
  8231. },
  8232. {
  8233. name: "New Horizon",
  8234. height: math.unit(6000, "miles")
  8235. },
  8236. ]
  8237. ))
  8238. characterMakers.push(() => makeCharacter(
  8239. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8240. {
  8241. front: {
  8242. height: math.unit(5, "cm"),
  8243. weight: math.unit(1.94, "g"),
  8244. name: "Front",
  8245. image: {
  8246. source: "./media/characters/fleta/front.svg",
  8247. extra: 835 / 803
  8248. }
  8249. },
  8250. back: {
  8251. height: math.unit(5, "cm"),
  8252. weight: math.unit(1.94, "g"),
  8253. name: "Back",
  8254. image: {
  8255. source: "./media/characters/fleta/back.svg",
  8256. extra: 835 / 803
  8257. }
  8258. },
  8259. },
  8260. [
  8261. {
  8262. name: "Micro",
  8263. height: math.unit(5, "cm"),
  8264. default: true
  8265. },
  8266. ]
  8267. ))
  8268. characterMakers.push(() => makeCharacter(
  8269. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8270. {
  8271. front: {
  8272. height: math.unit(6, "feet"),
  8273. weight: math.unit(225, "lb"),
  8274. name: "Front",
  8275. image: {
  8276. source: "./media/characters/dominic/front.svg",
  8277. extra: 1770 / 1620,
  8278. bottom: 0.025
  8279. }
  8280. },
  8281. back: {
  8282. height: math.unit(6, "feet"),
  8283. weight: math.unit(225, "lb"),
  8284. name: "Back",
  8285. image: {
  8286. source: "./media/characters/dominic/back.svg",
  8287. extra: 1745 / 1620,
  8288. bottom: 0.065
  8289. }
  8290. },
  8291. },
  8292. [
  8293. {
  8294. name: "Nano",
  8295. height: math.unit(0.1, "mm")
  8296. },
  8297. {
  8298. name: "Micro-",
  8299. height: math.unit(1, "mm")
  8300. },
  8301. {
  8302. name: "Micro",
  8303. height: math.unit(4, "inches")
  8304. },
  8305. {
  8306. name: "Normal",
  8307. height: math.unit(6 + 4 / 12, "feet"),
  8308. default: true
  8309. },
  8310. {
  8311. name: "Macro",
  8312. height: math.unit(115, "feet")
  8313. },
  8314. {
  8315. name: "Macro+",
  8316. height: math.unit(955, "feet")
  8317. },
  8318. {
  8319. name: "Megamacro",
  8320. height: math.unit(8990, "feet")
  8321. },
  8322. {
  8323. name: "Gigmacro",
  8324. height: math.unit(9310, "miles")
  8325. },
  8326. {
  8327. name: "Teramacro",
  8328. height: math.unit(1567005010, "miles")
  8329. },
  8330. {
  8331. name: "Examacro",
  8332. height: math.unit(1425, "parsecs")
  8333. },
  8334. ]
  8335. ))
  8336. characterMakers.push(() => makeCharacter(
  8337. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8338. {
  8339. front: {
  8340. height: math.unit(400, "feet"),
  8341. weight: math.unit(44444444, "lb"),
  8342. name: "Front",
  8343. image: {
  8344. source: "./media/characters/major-colonel/front.svg"
  8345. }
  8346. },
  8347. back: {
  8348. height: math.unit(400, "feet"),
  8349. weight: math.unit(44444444, "lb"),
  8350. name: "Back",
  8351. image: {
  8352. source: "./media/characters/major-colonel/back.svg"
  8353. }
  8354. },
  8355. },
  8356. [
  8357. {
  8358. name: "Macro",
  8359. height: math.unit(400, "feet"),
  8360. default: true
  8361. },
  8362. ]
  8363. ))
  8364. characterMakers.push(() => makeCharacter(
  8365. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8366. {
  8367. catFront: {
  8368. height: math.unit(6, "feet"),
  8369. weight: math.unit(120, "lb"),
  8370. name: "Front (Cat Side)",
  8371. image: {
  8372. source: "./media/characters/axel-lycan/cat-front.svg",
  8373. extra: 430 / 402,
  8374. bottom: 43 / 472.35
  8375. }
  8376. },
  8377. catBack: {
  8378. height: math.unit(6, "feet"),
  8379. weight: math.unit(120, "lb"),
  8380. name: "Back (Cat Side)",
  8381. image: {
  8382. source: "./media/characters/axel-lycan/cat-back.svg",
  8383. extra: 447 / 419,
  8384. bottom: 23.3 / 469
  8385. }
  8386. },
  8387. wolfFront: {
  8388. height: math.unit(6, "feet"),
  8389. weight: math.unit(120, "lb"),
  8390. name: "Front (Wolf Side)",
  8391. image: {
  8392. source: "./media/characters/axel-lycan/wolf-front.svg",
  8393. extra: 485 / 456,
  8394. bottom: 19 / 504
  8395. }
  8396. },
  8397. wolfBack: {
  8398. height: math.unit(6, "feet"),
  8399. weight: math.unit(120, "lb"),
  8400. name: "Back (Wolf Side)",
  8401. image: {
  8402. source: "./media/characters/axel-lycan/wolf-back.svg",
  8403. extra: 475 / 438,
  8404. bottom: 39.2 / 514
  8405. }
  8406. },
  8407. },
  8408. [
  8409. {
  8410. name: "Macro",
  8411. height: math.unit(1, "km"),
  8412. default: true
  8413. },
  8414. ]
  8415. ))
  8416. characterMakers.push(() => makeCharacter(
  8417. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8418. {
  8419. front: {
  8420. height: math.unit(5 + 9 / 12, "feet"),
  8421. weight: math.unit(175, "lb"),
  8422. name: "Front",
  8423. image: {
  8424. source: "./media/characters/vanrel-hyena/front.svg",
  8425. extra: 1086 / 1010,
  8426. bottom: 0.04
  8427. }
  8428. },
  8429. },
  8430. [
  8431. {
  8432. name: "Normal",
  8433. height: math.unit(5 + 9 / 12, "feet"),
  8434. default: true
  8435. },
  8436. ]
  8437. ))
  8438. characterMakers.push(() => makeCharacter(
  8439. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8440. {
  8441. front: {
  8442. height: math.unit(6, "feet"),
  8443. weight: math.unit(103, "lb"),
  8444. name: "Front",
  8445. image: {
  8446. source: "./media/characters/abbott-absol/front.svg",
  8447. extra: 2010 / 1842
  8448. }
  8449. },
  8450. },
  8451. [
  8452. {
  8453. name: "Megamicro",
  8454. height: math.unit(0.1, "mm")
  8455. },
  8456. {
  8457. name: "Micro",
  8458. height: math.unit(1, "inch")
  8459. },
  8460. {
  8461. name: "Normal",
  8462. height: math.unit(6, "feet"),
  8463. default: true
  8464. },
  8465. ]
  8466. ))
  8467. characterMakers.push(() => makeCharacter(
  8468. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8469. {
  8470. front: {
  8471. height: math.unit(6, "feet"),
  8472. weight: math.unit(264, "lb"),
  8473. name: "Front",
  8474. image: {
  8475. source: "./media/characters/hector/front.svg",
  8476. extra: 2280 / 2130,
  8477. bottom: 0.07
  8478. }
  8479. },
  8480. },
  8481. [
  8482. {
  8483. name: "Normal",
  8484. height: math.unit(12.25, "foot"),
  8485. default: true
  8486. },
  8487. {
  8488. name: "Macro",
  8489. height: math.unit(160, "feet")
  8490. },
  8491. ]
  8492. ))
  8493. characterMakers.push(() => makeCharacter(
  8494. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8495. {
  8496. front: {
  8497. height: math.unit(6, "feet"),
  8498. weight: math.unit(150, "lb"),
  8499. name: "Front",
  8500. image: {
  8501. source: "./media/characters/sal/front.svg",
  8502. extra: 1846 / 1699,
  8503. bottom: 0.04
  8504. }
  8505. },
  8506. },
  8507. [
  8508. {
  8509. name: "Megamacro",
  8510. height: math.unit(10, "miles"),
  8511. default: true
  8512. },
  8513. ]
  8514. ))
  8515. characterMakers.push(() => makeCharacter(
  8516. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8517. {
  8518. front: {
  8519. height: math.unit(3, "meters"),
  8520. weight: math.unit(450, "kg"),
  8521. name: "front",
  8522. image: {
  8523. source: "./media/characters/ranger/front.svg",
  8524. extra: 2401 / 2243,
  8525. bottom: 0.05
  8526. }
  8527. },
  8528. },
  8529. [
  8530. {
  8531. name: "Normal",
  8532. height: math.unit(3, "meters"),
  8533. default: true
  8534. },
  8535. ]
  8536. ))
  8537. characterMakers.push(() => makeCharacter(
  8538. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8539. {
  8540. front: {
  8541. height: math.unit(14, "feet"),
  8542. weight: math.unit(800, "kg"),
  8543. name: "Front",
  8544. image: {
  8545. source: "./media/characters/theresa/front.svg",
  8546. extra: 3575 / 3346,
  8547. bottom: 0.03
  8548. }
  8549. },
  8550. },
  8551. [
  8552. {
  8553. name: "Normal",
  8554. height: math.unit(14, "feet"),
  8555. default: true
  8556. },
  8557. ]
  8558. ))
  8559. characterMakers.push(() => makeCharacter(
  8560. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8561. {
  8562. front: {
  8563. height: math.unit(6, "feet"),
  8564. weight: math.unit(3, "kg"),
  8565. name: "Front",
  8566. image: {
  8567. source: "./media/characters/ine/front.svg",
  8568. extra: 678 / 539,
  8569. bottom: 0.023
  8570. }
  8571. },
  8572. },
  8573. [
  8574. {
  8575. name: "Normal",
  8576. height: math.unit(2.265, "feet"),
  8577. default: true
  8578. },
  8579. ]
  8580. ))
  8581. characterMakers.push(() => makeCharacter(
  8582. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8583. {
  8584. front: {
  8585. height: math.unit(5, "feet"),
  8586. weight: math.unit(30, "kg"),
  8587. name: "Front",
  8588. image: {
  8589. source: "./media/characters/vial/front.svg",
  8590. extra: 1365 / 1277,
  8591. bottom: 0.04
  8592. }
  8593. },
  8594. },
  8595. [
  8596. {
  8597. name: "Normal",
  8598. height: math.unit(5, "feet"),
  8599. default: true
  8600. },
  8601. ]
  8602. ))
  8603. characterMakers.push(() => makeCharacter(
  8604. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8605. {
  8606. side: {
  8607. height: math.unit(3.4, "meters"),
  8608. weight: math.unit(1000, "lb"),
  8609. name: "Side",
  8610. image: {
  8611. source: "./media/characters/rovoska/side.svg",
  8612. extra: 4403 / 1515
  8613. }
  8614. },
  8615. },
  8616. [
  8617. {
  8618. name: "Normal",
  8619. height: math.unit(3.4, "meters"),
  8620. default: true
  8621. },
  8622. ]
  8623. ))
  8624. characterMakers.push(() => makeCharacter(
  8625. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8626. {
  8627. front: {
  8628. height: math.unit(8, "feet"),
  8629. weight: math.unit(315, "lb"),
  8630. name: "Front",
  8631. image: {
  8632. source: "./media/characters/gunner-rotthbauer/front.svg"
  8633. }
  8634. },
  8635. back: {
  8636. height: math.unit(8, "feet"),
  8637. weight: math.unit(315, "lb"),
  8638. name: "Back",
  8639. image: {
  8640. source: "./media/characters/gunner-rotthbauer/back.svg"
  8641. }
  8642. },
  8643. },
  8644. [
  8645. {
  8646. name: "Micro",
  8647. height: math.unit(3.5, "inches")
  8648. },
  8649. {
  8650. name: "Normal",
  8651. height: math.unit(8, "feet"),
  8652. default: true
  8653. },
  8654. {
  8655. name: "Macro",
  8656. height: math.unit(250, "feet")
  8657. },
  8658. {
  8659. name: "Megamacro",
  8660. height: math.unit(1, "AU")
  8661. },
  8662. ]
  8663. ))
  8664. characterMakers.push(() => makeCharacter(
  8665. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8666. {
  8667. front: {
  8668. height: math.unit(5 + 5 / 12, "feet"),
  8669. weight: math.unit(140, "lb"),
  8670. name: "Front",
  8671. image: {
  8672. source: "./media/characters/allatia/front.svg",
  8673. extra: 1227 / 1180,
  8674. bottom: 0.027
  8675. }
  8676. },
  8677. },
  8678. [
  8679. {
  8680. name: "Normal",
  8681. height: math.unit(5 + 5 / 12, "feet")
  8682. },
  8683. {
  8684. name: "Macro",
  8685. height: math.unit(250, "feet"),
  8686. default: true
  8687. },
  8688. {
  8689. name: "Megamacro",
  8690. height: math.unit(8, "miles")
  8691. }
  8692. ]
  8693. ))
  8694. characterMakers.push(() => makeCharacter(
  8695. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  8696. {
  8697. front: {
  8698. height: math.unit(6, "feet"),
  8699. weight: math.unit(120, "lb"),
  8700. name: "Front",
  8701. image: {
  8702. source: "./media/characters/tene/front.svg",
  8703. extra: 1728 / 1578,
  8704. bottom: 0.022
  8705. }
  8706. },
  8707. stomping: {
  8708. height: math.unit(2.025, "meters"),
  8709. weight: math.unit(120, "lb"),
  8710. name: "Stomping",
  8711. image: {
  8712. source: "./media/characters/tene/stomping.svg",
  8713. extra: 938 / 873,
  8714. bottom: 0.01
  8715. }
  8716. },
  8717. sitting: {
  8718. height: math.unit(1, "meter"),
  8719. weight: math.unit(120, "lb"),
  8720. name: "Sitting",
  8721. image: {
  8722. source: "./media/characters/tene/sitting.svg",
  8723. extra: 437 / 415,
  8724. bottom: 0.1
  8725. }
  8726. },
  8727. feral: {
  8728. height: math.unit(3.9, "feet"),
  8729. weight: math.unit(250, "lb"),
  8730. name: "Feral",
  8731. image: {
  8732. source: "./media/characters/tene/feral.svg",
  8733. extra: 717 / 458,
  8734. bottom: 0.179
  8735. }
  8736. },
  8737. },
  8738. [
  8739. {
  8740. name: "Normal",
  8741. height: math.unit(6, "feet")
  8742. },
  8743. {
  8744. name: "Macro",
  8745. height: math.unit(300, "feet"),
  8746. default: true
  8747. },
  8748. {
  8749. name: "Megamacro",
  8750. height: math.unit(5, "miles")
  8751. },
  8752. ]
  8753. ))
  8754. characterMakers.push(() => makeCharacter(
  8755. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  8756. {
  8757. side: {
  8758. height: math.unit(6, "feet"),
  8759. name: "Side",
  8760. image: {
  8761. source: "./media/characters/evander/side.svg",
  8762. extra: 877 / 477
  8763. }
  8764. },
  8765. },
  8766. [
  8767. {
  8768. name: "Normal",
  8769. height: math.unit(0.83, "meters"),
  8770. default: true
  8771. },
  8772. ]
  8773. ))
  8774. characterMakers.push(() => makeCharacter(
  8775. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  8776. {
  8777. front: {
  8778. height: math.unit(12, "feet"),
  8779. weight: math.unit(1000, "lb"),
  8780. name: "Front",
  8781. image: {
  8782. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  8783. extra: 1762 / 1611
  8784. }
  8785. },
  8786. back: {
  8787. height: math.unit(12, "feet"),
  8788. weight: math.unit(1000, "lb"),
  8789. name: "Back",
  8790. image: {
  8791. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  8792. extra: 1762 / 1611
  8793. }
  8794. },
  8795. },
  8796. [
  8797. {
  8798. name: "Normal",
  8799. height: math.unit(12, "feet"),
  8800. default: true
  8801. },
  8802. {
  8803. name: "Kaiju",
  8804. height: math.unit(150, "feet")
  8805. },
  8806. ]
  8807. ))
  8808. characterMakers.push(() => makeCharacter(
  8809. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  8810. {
  8811. front: {
  8812. height: math.unit(6, "feet"),
  8813. weight: math.unit(150, "lb"),
  8814. name: "Front",
  8815. image: {
  8816. source: "./media/characters/zero-alurus/front.svg"
  8817. }
  8818. },
  8819. back: {
  8820. height: math.unit(6, "feet"),
  8821. weight: math.unit(150, "lb"),
  8822. name: "Back",
  8823. image: {
  8824. source: "./media/characters/zero-alurus/back.svg"
  8825. }
  8826. },
  8827. },
  8828. [
  8829. {
  8830. name: "Normal",
  8831. height: math.unit(5 + 10 / 12, "feet")
  8832. },
  8833. {
  8834. name: "Macro",
  8835. height: math.unit(60, "feet"),
  8836. default: true
  8837. },
  8838. {
  8839. name: "Macro+",
  8840. height: math.unit(450, "feet")
  8841. },
  8842. ]
  8843. ))
  8844. characterMakers.push(() => makeCharacter(
  8845. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  8846. {
  8847. front: {
  8848. height: math.unit(6, "feet"),
  8849. weight: math.unit(200, "lb"),
  8850. name: "Front",
  8851. image: {
  8852. source: "./media/characters/mega-shi/front.svg",
  8853. extra: 1279 / 1250,
  8854. bottom: 0.02
  8855. }
  8856. },
  8857. back: {
  8858. height: math.unit(6, "feet"),
  8859. weight: math.unit(200, "lb"),
  8860. name: "Back",
  8861. image: {
  8862. source: "./media/characters/mega-shi/back.svg",
  8863. extra: 1279 / 1250,
  8864. bottom: 0.02
  8865. }
  8866. },
  8867. },
  8868. [
  8869. {
  8870. name: "Micro",
  8871. height: math.unit(16 + 6 / 12, "feet")
  8872. },
  8873. {
  8874. name: "Third Dimension",
  8875. height: math.unit(40, "meters")
  8876. },
  8877. {
  8878. name: "Normal",
  8879. height: math.unit(660, "feet"),
  8880. default: true
  8881. },
  8882. {
  8883. name: "Megamacro",
  8884. height: math.unit(10, "miles")
  8885. },
  8886. {
  8887. name: "Planetary Launch",
  8888. height: math.unit(500, "miles")
  8889. },
  8890. {
  8891. name: "Interstellar",
  8892. height: math.unit(1e9, "miles")
  8893. },
  8894. {
  8895. name: "Leaving the Universe",
  8896. height: math.unit(1, "gigaparsec")
  8897. },
  8898. {
  8899. name: "Travelling Universes",
  8900. height: math.unit(30e15, "parsecs")
  8901. },
  8902. ]
  8903. ))
  8904. characterMakers.push(() => makeCharacter(
  8905. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  8906. {
  8907. front: {
  8908. height: math.unit(6, "feet"),
  8909. weight: math.unit(150, "lb"),
  8910. name: "Front",
  8911. image: {
  8912. source: "./media/characters/odyssey/front.svg",
  8913. extra: 1782 / 1582,
  8914. bottom: 0.01
  8915. }
  8916. },
  8917. side: {
  8918. height: math.unit(5.7, "feet"),
  8919. weight: math.unit(140, "lb"),
  8920. name: "Side",
  8921. image: {
  8922. source: "./media/characters/odyssey/side.svg",
  8923. extra: 6462 / 5700
  8924. }
  8925. },
  8926. },
  8927. [
  8928. {
  8929. name: "Normal",
  8930. height: math.unit(5 + 4 / 12, "feet")
  8931. },
  8932. {
  8933. name: "Macro",
  8934. height: math.unit(1, "km")
  8935. },
  8936. {
  8937. name: "Megamacro",
  8938. height: math.unit(3000, "km")
  8939. },
  8940. {
  8941. name: "Gigamacro",
  8942. height: math.unit(1, "AU"),
  8943. default: true
  8944. },
  8945. {
  8946. name: "Omniversal",
  8947. height: math.unit(100e14, "lightyears")
  8948. },
  8949. ]
  8950. ))
  8951. characterMakers.push(() => makeCharacter(
  8952. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  8953. {
  8954. front: {
  8955. height: math.unit(6, "feet"),
  8956. weight: math.unit(300, "lb"),
  8957. name: "Front",
  8958. image: {
  8959. source: "./media/characters/mekuto/front.svg",
  8960. extra: 921 / 832,
  8961. bottom: 0.03
  8962. }
  8963. },
  8964. hand: {
  8965. height: math.unit(6 / 10.24, "feet"),
  8966. name: "Hand",
  8967. image: {
  8968. source: "./media/characters/mekuto/hand.svg"
  8969. }
  8970. },
  8971. foot: {
  8972. height: math.unit(6 / 5.05, "feet"),
  8973. name: "Foot",
  8974. image: {
  8975. source: "./media/characters/mekuto/foot.svg"
  8976. }
  8977. },
  8978. },
  8979. [
  8980. {
  8981. name: "Minimicro",
  8982. height: math.unit(0.2, "inches")
  8983. },
  8984. {
  8985. name: "Micro",
  8986. height: math.unit(1.5, "inches")
  8987. },
  8988. {
  8989. name: "Normal",
  8990. height: math.unit(5 + 11 / 12, "feet"),
  8991. default: true
  8992. },
  8993. {
  8994. name: "Minimacro",
  8995. height: math.unit(17 + 9 / 12, "feet")
  8996. },
  8997. {
  8998. name: "Macro",
  8999. height: math.unit(177.5, "feet")
  9000. },
  9001. {
  9002. name: "Megamacro",
  9003. height: math.unit(152, "miles")
  9004. },
  9005. ]
  9006. ))
  9007. characterMakers.push(() => makeCharacter(
  9008. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9009. {
  9010. front: {
  9011. height: math.unit(6.5, "inches"),
  9012. weight: math.unit(13, "oz"),
  9013. name: "Front",
  9014. image: {
  9015. source: "./media/characters/dafydd-tomos/front.svg",
  9016. extra: 2990 / 2603,
  9017. bottom: 0.03
  9018. }
  9019. },
  9020. },
  9021. [
  9022. {
  9023. name: "Micro",
  9024. height: math.unit(6.5, "inches"),
  9025. default: true
  9026. },
  9027. ]
  9028. ))
  9029. characterMakers.push(() => makeCharacter(
  9030. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9031. {
  9032. front: {
  9033. height: math.unit(6, "feet"),
  9034. weight: math.unit(150, "lb"),
  9035. name: "Front",
  9036. image: {
  9037. source: "./media/characters/splinter/front.svg",
  9038. extra: 2990 / 2882,
  9039. bottom: 0.04
  9040. }
  9041. },
  9042. back: {
  9043. height: math.unit(6, "feet"),
  9044. weight: math.unit(150, "lb"),
  9045. name: "Back",
  9046. image: {
  9047. source: "./media/characters/splinter/back.svg",
  9048. extra: 2990 / 2882,
  9049. bottom: 0.04
  9050. }
  9051. },
  9052. },
  9053. [
  9054. {
  9055. name: "Normal",
  9056. height: math.unit(6, "feet")
  9057. },
  9058. {
  9059. name: "Macro",
  9060. height: math.unit(230, "meters"),
  9061. default: true
  9062. },
  9063. ]
  9064. ))
  9065. characterMakers.push(() => makeCharacter(
  9066. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9067. {
  9068. front: {
  9069. height: math.unit(4 + 10 / 12, "feet"),
  9070. weight: math.unit(480, "lb"),
  9071. name: "Front",
  9072. image: {
  9073. source: "./media/characters/snow-gabumon/front.svg",
  9074. extra: 1140 / 963,
  9075. bottom: 0.058
  9076. }
  9077. },
  9078. back: {
  9079. height: math.unit(4 + 10 / 12, "feet"),
  9080. weight: math.unit(480, "lb"),
  9081. name: "Back",
  9082. image: {
  9083. source: "./media/characters/snow-gabumon/back.svg",
  9084. extra: 1115 / 962,
  9085. bottom: 0.041
  9086. }
  9087. },
  9088. frontUndresed: {
  9089. height: math.unit(4 + 10 / 12, "feet"),
  9090. weight: math.unit(480, "lb"),
  9091. name: "Front (Undressed)",
  9092. image: {
  9093. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9094. extra: 1061 / 960,
  9095. bottom: 0.045
  9096. }
  9097. },
  9098. },
  9099. [
  9100. {
  9101. name: "Micro",
  9102. height: math.unit(1, "inch")
  9103. },
  9104. {
  9105. name: "Normal",
  9106. height: math.unit(4 + 10 / 12, "feet"),
  9107. default: true
  9108. },
  9109. {
  9110. name: "Macro",
  9111. height: math.unit(200, "feet")
  9112. },
  9113. {
  9114. name: "Megamacro",
  9115. height: math.unit(120, "miles")
  9116. },
  9117. {
  9118. name: "Gigamacro",
  9119. height: math.unit(9800, "miles")
  9120. },
  9121. ]
  9122. ))
  9123. characterMakers.push(() => makeCharacter(
  9124. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9125. {
  9126. front: {
  9127. height: math.unit(1.7, "meters"),
  9128. weight: math.unit(140, "lb"),
  9129. name: "Front",
  9130. image: {
  9131. source: "./media/characters/moody/front.svg",
  9132. extra: 3226 / 3007,
  9133. bottom: 0.087
  9134. }
  9135. },
  9136. },
  9137. [
  9138. {
  9139. name: "Micro",
  9140. height: math.unit(1, "mm")
  9141. },
  9142. {
  9143. name: "Normal",
  9144. height: math.unit(1.7, "meters"),
  9145. default: true
  9146. },
  9147. {
  9148. name: "Macro",
  9149. height: math.unit(80, "meters")
  9150. },
  9151. {
  9152. name: "Macro+",
  9153. height: math.unit(500, "meters")
  9154. },
  9155. ]
  9156. ))
  9157. characterMakers.push(() => makeCharacter(
  9158. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9159. {
  9160. front: {
  9161. height: math.unit(6, "feet"),
  9162. weight: math.unit(150, "lb"),
  9163. name: "Front",
  9164. image: {
  9165. source: "./media/characters/zyas/front.svg",
  9166. extra: 1180 / 1120,
  9167. bottom: 0.045
  9168. }
  9169. },
  9170. },
  9171. [
  9172. {
  9173. name: "Normal",
  9174. height: math.unit(10, "feet"),
  9175. default: true
  9176. },
  9177. {
  9178. name: "Macro",
  9179. height: math.unit(500, "feet")
  9180. },
  9181. {
  9182. name: "Megamacro",
  9183. height: math.unit(5, "miles")
  9184. },
  9185. {
  9186. name: "Teramacro",
  9187. height: math.unit(150000, "miles")
  9188. },
  9189. ]
  9190. ))
  9191. characterMakers.push(() => makeCharacter(
  9192. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9193. {
  9194. front: {
  9195. height: math.unit(6, "feet"),
  9196. weight: math.unit(150, "lb"),
  9197. name: "Front",
  9198. image: {
  9199. source: "./media/characters/cuon/front.svg",
  9200. extra: 1390 / 1320,
  9201. bottom: 0.008
  9202. }
  9203. },
  9204. },
  9205. [
  9206. {
  9207. name: "Micro",
  9208. height: math.unit(3, "inches")
  9209. },
  9210. {
  9211. name: "Normal",
  9212. height: math.unit(18 + 9 / 12, "feet"),
  9213. default: true
  9214. },
  9215. {
  9216. name: "Macro",
  9217. height: math.unit(360, "feet")
  9218. },
  9219. {
  9220. name: "Megamacro",
  9221. height: math.unit(360, "miles")
  9222. },
  9223. ]
  9224. ))
  9225. characterMakers.push(() => makeCharacter(
  9226. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9227. {
  9228. front: {
  9229. height: math.unit(2.4, "meters"),
  9230. weight: math.unit(70, "kg"),
  9231. name: "Front",
  9232. image: {
  9233. source: "./media/characters/nyanuxk/front.svg",
  9234. extra: 1172 / 1084,
  9235. bottom: 0.065
  9236. }
  9237. },
  9238. side: {
  9239. height: math.unit(2.4, "meters"),
  9240. weight: math.unit(70, "kg"),
  9241. name: "Side",
  9242. image: {
  9243. source: "./media/characters/nyanuxk/side.svg",
  9244. extra: 1190 / 1132,
  9245. bottom: 0.007
  9246. }
  9247. },
  9248. back: {
  9249. height: math.unit(2.4, "meters"),
  9250. weight: math.unit(70, "kg"),
  9251. name: "Back",
  9252. image: {
  9253. source: "./media/characters/nyanuxk/back.svg",
  9254. extra: 1200 / 1141,
  9255. bottom: 0.015
  9256. }
  9257. },
  9258. foot: {
  9259. height: math.unit(0.52, "meters"),
  9260. name: "Foot",
  9261. image: {
  9262. source: "./media/characters/nyanuxk/foot.svg"
  9263. }
  9264. },
  9265. },
  9266. [
  9267. {
  9268. name: "Micro",
  9269. height: math.unit(2, "cm")
  9270. },
  9271. {
  9272. name: "Normal",
  9273. height: math.unit(2.4, "meters"),
  9274. default: true
  9275. },
  9276. {
  9277. name: "Smaller Macro",
  9278. height: math.unit(120, "meters")
  9279. },
  9280. {
  9281. name: "Bigger Macro",
  9282. height: math.unit(1.2, "km")
  9283. },
  9284. {
  9285. name: "Megamacro",
  9286. height: math.unit(15, "kilometers")
  9287. },
  9288. {
  9289. name: "Gigamacro",
  9290. height: math.unit(2000, "km")
  9291. },
  9292. {
  9293. name: "Teramacro",
  9294. height: math.unit(500000, "km")
  9295. },
  9296. ]
  9297. ))
  9298. characterMakers.push(() => makeCharacter(
  9299. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9300. {
  9301. side: {
  9302. height: math.unit(6, "feet"),
  9303. name: "Side",
  9304. image: {
  9305. source: "./media/characters/ailbhe/side.svg",
  9306. extra: 757 / 464,
  9307. bottom: 0.041
  9308. }
  9309. },
  9310. },
  9311. [
  9312. {
  9313. name: "Normal",
  9314. height: math.unit(1.07, "meters"),
  9315. default: true
  9316. },
  9317. ]
  9318. ))
  9319. characterMakers.push(() => makeCharacter(
  9320. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9321. {
  9322. front: {
  9323. height: math.unit(6, "feet"),
  9324. weight: math.unit(120, "kg"),
  9325. name: "Front",
  9326. image: {
  9327. source: "./media/characters/zevulfius/front.svg",
  9328. extra: 965 / 903
  9329. }
  9330. },
  9331. side: {
  9332. height: math.unit(6, "feet"),
  9333. weight: math.unit(120, "kg"),
  9334. name: "Side",
  9335. image: {
  9336. source: "./media/characters/zevulfius/side.svg",
  9337. extra: 939 / 900
  9338. }
  9339. },
  9340. back: {
  9341. height: math.unit(6, "feet"),
  9342. weight: math.unit(120, "kg"),
  9343. name: "Back",
  9344. image: {
  9345. source: "./media/characters/zevulfius/back.svg",
  9346. extra: 918 / 854,
  9347. bottom: 0.005
  9348. }
  9349. },
  9350. foot: {
  9351. height: math.unit(6 / 3.72, "feet"),
  9352. name: "Foot",
  9353. image: {
  9354. source: "./media/characters/zevulfius/foot.svg"
  9355. }
  9356. },
  9357. },
  9358. [
  9359. {
  9360. name: "Macro",
  9361. height: math.unit(750, "meters")
  9362. },
  9363. {
  9364. name: "Megamacro",
  9365. height: math.unit(20, "km"),
  9366. default: true
  9367. },
  9368. {
  9369. name: "Gigamacro",
  9370. height: math.unit(2000, "km")
  9371. },
  9372. {
  9373. name: "Teramacro",
  9374. height: math.unit(250000, "km")
  9375. },
  9376. ]
  9377. ))
  9378. characterMakers.push(() => makeCharacter(
  9379. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9380. {
  9381. front: {
  9382. height: math.unit(100, "feet"),
  9383. weight: math.unit(350, "kg"),
  9384. name: "Front",
  9385. image: {
  9386. source: "./media/characters/rikes/front.svg",
  9387. extra: 1565 / 1483,
  9388. bottom: 0.017
  9389. }
  9390. },
  9391. },
  9392. [
  9393. {
  9394. name: "Macro",
  9395. height: math.unit(100, "feet"),
  9396. default: true
  9397. },
  9398. ]
  9399. ))
  9400. characterMakers.push(() => makeCharacter(
  9401. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9402. {
  9403. anthro: {
  9404. height: math.unit(8, "feet"),
  9405. weight: math.unit(120, "kg"),
  9406. name: "Anthro",
  9407. image: {
  9408. source: "./media/characters/adam-silver-mane/anthro.svg",
  9409. extra: 5743 / 5339,
  9410. bottom: 0.07
  9411. }
  9412. },
  9413. taur: {
  9414. height: math.unit(16, "feet"),
  9415. weight: math.unit(1500, "kg"),
  9416. name: "Taur",
  9417. image: {
  9418. source: "./media/characters/adam-silver-mane/taur.svg",
  9419. extra: 1713 / 1571,
  9420. bottom: 0.01
  9421. }
  9422. },
  9423. },
  9424. [
  9425. {
  9426. name: "Normal",
  9427. height: math.unit(8, "feet")
  9428. },
  9429. {
  9430. name: "Minimacro",
  9431. height: math.unit(80, "feet")
  9432. },
  9433. {
  9434. name: "Macro",
  9435. height: math.unit(800, "feet"),
  9436. default: true
  9437. },
  9438. {
  9439. name: "Megamacro",
  9440. height: math.unit(8000, "feet")
  9441. },
  9442. {
  9443. name: "Gigamacro",
  9444. height: math.unit(800, "miles")
  9445. },
  9446. {
  9447. name: "Teramacro",
  9448. height: math.unit(80000, "miles")
  9449. },
  9450. {
  9451. name: "Celestial",
  9452. height: math.unit(8e6, "miles")
  9453. },
  9454. {
  9455. name: "Star Dragon",
  9456. height: math.unit(800000, "parsecs")
  9457. },
  9458. {
  9459. name: "Godly",
  9460. height: math.unit(800, "teraparsecs")
  9461. },
  9462. ]
  9463. ))
  9464. characterMakers.push(() => makeCharacter(
  9465. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9466. {
  9467. front: {
  9468. height: math.unit(6, "feet"),
  9469. weight: math.unit(150, "lb"),
  9470. name: "Front",
  9471. image: {
  9472. source: "./media/characters/ky'owin/front.svg",
  9473. extra: 3888 / 3068,
  9474. bottom: 0.015
  9475. }
  9476. },
  9477. },
  9478. [
  9479. {
  9480. name: "Normal",
  9481. height: math.unit(6 + 8 / 12, "feet")
  9482. },
  9483. {
  9484. name: "Large",
  9485. height: math.unit(68, "feet")
  9486. },
  9487. {
  9488. name: "Macro",
  9489. height: math.unit(132, "feet")
  9490. },
  9491. {
  9492. name: "Macro+",
  9493. height: math.unit(340, "feet")
  9494. },
  9495. {
  9496. name: "Macro++",
  9497. height: math.unit(680, "feet"),
  9498. default: true
  9499. },
  9500. {
  9501. name: "Megamacro",
  9502. height: math.unit(1, "mile")
  9503. },
  9504. {
  9505. name: "Megamacro+",
  9506. height: math.unit(10, "miles")
  9507. },
  9508. ]
  9509. ))
  9510. characterMakers.push(() => makeCharacter(
  9511. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9512. {
  9513. front: {
  9514. height: math.unit(4, "feet"),
  9515. weight: math.unit(50, "lb"),
  9516. name: "Front",
  9517. image: {
  9518. source: "./media/characters/mal/front.svg",
  9519. extra: 785 / 724,
  9520. bottom: 0.07
  9521. }
  9522. },
  9523. },
  9524. [
  9525. {
  9526. name: "Micro",
  9527. height: math.unit(4, "inches")
  9528. },
  9529. {
  9530. name: "Normal",
  9531. height: math.unit(4, "feet"),
  9532. default: true
  9533. },
  9534. {
  9535. name: "Macro",
  9536. height: math.unit(200, "feet")
  9537. },
  9538. ]
  9539. ))
  9540. characterMakers.push(() => makeCharacter(
  9541. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9542. {
  9543. front: {
  9544. height: math.unit(6, "feet"),
  9545. weight: math.unit(150, "lb"),
  9546. name: "Front",
  9547. image: {
  9548. source: "./media/characters/jordan-deware/front.svg",
  9549. extra: 1191 / 1012
  9550. }
  9551. },
  9552. },
  9553. [
  9554. {
  9555. name: "Nano",
  9556. height: math.unit(0.01, "mm")
  9557. },
  9558. {
  9559. name: "Minimicro",
  9560. height: math.unit(1, "mm")
  9561. },
  9562. {
  9563. name: "Micro",
  9564. height: math.unit(0.5, "inches")
  9565. },
  9566. {
  9567. name: "Normal",
  9568. height: math.unit(4, "feet"),
  9569. default: true
  9570. },
  9571. {
  9572. name: "Minimacro",
  9573. height: math.unit(40, "meters")
  9574. },
  9575. {
  9576. name: "Small Macro",
  9577. height: math.unit(400, "meters")
  9578. },
  9579. {
  9580. name: "Macro",
  9581. height: math.unit(4, "miles")
  9582. },
  9583. {
  9584. name: "Megamacro",
  9585. height: math.unit(40, "miles")
  9586. },
  9587. {
  9588. name: "Megamacro+",
  9589. height: math.unit(400, "miles")
  9590. },
  9591. {
  9592. name: "Gigamacro",
  9593. height: math.unit(400000, "miles")
  9594. },
  9595. ]
  9596. ))
  9597. characterMakers.push(() => makeCharacter(
  9598. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9599. {
  9600. side: {
  9601. height: math.unit(6, "feet"),
  9602. weight: math.unit(150, "lb"),
  9603. name: "Side",
  9604. image: {
  9605. source: "./media/characters/kimiko/side.svg",
  9606. extra: 600 / 358
  9607. }
  9608. },
  9609. },
  9610. [
  9611. {
  9612. name: "Normal",
  9613. height: math.unit(15, "feet"),
  9614. default: true
  9615. },
  9616. {
  9617. name: "Macro",
  9618. height: math.unit(220, "feet")
  9619. },
  9620. {
  9621. name: "Macro+",
  9622. height: math.unit(1450, "feet")
  9623. },
  9624. {
  9625. name: "Megamacro",
  9626. height: math.unit(11500, "feet")
  9627. },
  9628. {
  9629. name: "Gigamacro",
  9630. height: math.unit(9500, "miles")
  9631. },
  9632. {
  9633. name: "Teramacro",
  9634. height: math.unit(2208005005, "miles")
  9635. },
  9636. {
  9637. name: "Examacro",
  9638. height: math.unit(2750, "parsecs")
  9639. },
  9640. {
  9641. name: "Zettamacro",
  9642. height: math.unit(101500, "parsecs")
  9643. },
  9644. ]
  9645. ))
  9646. characterMakers.push(() => makeCharacter(
  9647. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9648. {
  9649. front: {
  9650. height: math.unit(6, "feet"),
  9651. weight: math.unit(70, "kg"),
  9652. name: "Front",
  9653. image: {
  9654. source: "./media/characters/andrew-sleepy/front.svg"
  9655. }
  9656. },
  9657. side: {
  9658. height: math.unit(6, "feet"),
  9659. weight: math.unit(70, "kg"),
  9660. name: "Side",
  9661. image: {
  9662. source: "./media/characters/andrew-sleepy/side.svg"
  9663. }
  9664. },
  9665. },
  9666. [
  9667. {
  9668. name: "Micro",
  9669. height: math.unit(1, "mm"),
  9670. default: true
  9671. },
  9672. ]
  9673. ))
  9674. characterMakers.push(() => makeCharacter(
  9675. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  9676. {
  9677. front: {
  9678. height: math.unit(6, "feet"),
  9679. weight: math.unit(150, "lb"),
  9680. name: "Front",
  9681. image: {
  9682. source: "./media/characters/judio/front.svg",
  9683. extra: 1258 / 1110
  9684. }
  9685. },
  9686. },
  9687. [
  9688. {
  9689. name: "Normal",
  9690. height: math.unit(5 + 6 / 12, "feet")
  9691. },
  9692. {
  9693. name: "Macro",
  9694. height: math.unit(1000, "feet"),
  9695. default: true
  9696. },
  9697. {
  9698. name: "Megamacro",
  9699. height: math.unit(10, "miles")
  9700. },
  9701. ]
  9702. ))
  9703. characterMakers.push(() => makeCharacter(
  9704. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  9705. {
  9706. front: {
  9707. height: math.unit(6, "feet"),
  9708. weight: math.unit(68, "kg"),
  9709. name: "Front",
  9710. image: {
  9711. source: "./media/characters/nomaxice/front.svg",
  9712. extra: 1498 / 1073,
  9713. bottom: 0.075
  9714. }
  9715. },
  9716. foot: {
  9717. height: math.unit(1.1, "feet"),
  9718. name: "Foot",
  9719. image: {
  9720. source: "./media/characters/nomaxice/foot.svg"
  9721. }
  9722. },
  9723. },
  9724. [
  9725. {
  9726. name: "Micro",
  9727. height: math.unit(8, "cm")
  9728. },
  9729. {
  9730. name: "Norm",
  9731. height: math.unit(1.82, "m")
  9732. },
  9733. {
  9734. name: "Norm+",
  9735. height: math.unit(8.8, "feet")
  9736. },
  9737. {
  9738. name: "Big",
  9739. height: math.unit(8, "meters"),
  9740. default: true
  9741. },
  9742. {
  9743. name: "Macro",
  9744. height: math.unit(18, "meters")
  9745. },
  9746. {
  9747. name: "Macro+",
  9748. height: math.unit(88, "meters")
  9749. },
  9750. ]
  9751. ))
  9752. characterMakers.push(() => makeCharacter(
  9753. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  9754. {
  9755. front: {
  9756. height: math.unit(12, "feet"),
  9757. weight: math.unit(1.5, "tons"),
  9758. name: "Front",
  9759. image: {
  9760. source: "./media/characters/dydros/front.svg",
  9761. extra: 863 / 800,
  9762. bottom: 0.015
  9763. }
  9764. },
  9765. back: {
  9766. height: math.unit(12, "feet"),
  9767. weight: math.unit(1.5, "tons"),
  9768. name: "Back",
  9769. image: {
  9770. source: "./media/characters/dydros/back.svg",
  9771. extra: 900 / 843,
  9772. bottom: 0.005
  9773. }
  9774. },
  9775. },
  9776. [
  9777. {
  9778. name: "Normal",
  9779. height: math.unit(12, "feet"),
  9780. default: true
  9781. },
  9782. ]
  9783. ))
  9784. characterMakers.push(() => makeCharacter(
  9785. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  9786. {
  9787. front: {
  9788. height: math.unit(6, "feet"),
  9789. weight: math.unit(100, "kg"),
  9790. name: "Front",
  9791. image: {
  9792. source: "./media/characters/riggi/front.svg",
  9793. extra: 5787 / 5303
  9794. }
  9795. },
  9796. hyper: {
  9797. height: math.unit(6 * 5 / 3, "feet"),
  9798. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  9799. name: "Hyper",
  9800. image: {
  9801. source: "./media/characters/riggi/hyper.svg",
  9802. extra: 3595 / 3485
  9803. }
  9804. },
  9805. },
  9806. [
  9807. {
  9808. name: "Small Macro",
  9809. height: math.unit(50, "feet")
  9810. },
  9811. {
  9812. name: "Default",
  9813. height: math.unit(200, "feet"),
  9814. default: true
  9815. },
  9816. {
  9817. name: "Loom",
  9818. height: math.unit(10000, "feet")
  9819. },
  9820. {
  9821. name: "Cruising Altitude",
  9822. height: math.unit(30000, "feet")
  9823. },
  9824. {
  9825. name: "Megamacro",
  9826. height: math.unit(100, "miles")
  9827. },
  9828. {
  9829. name: "Continent Sized",
  9830. height: math.unit(2800, "miles")
  9831. },
  9832. {
  9833. name: "Earth Sized",
  9834. height: math.unit(8000, "miles")
  9835. },
  9836. ]
  9837. ))
  9838. characterMakers.push(() => makeCharacter(
  9839. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  9840. {
  9841. front: {
  9842. height: math.unit(6, "feet"),
  9843. weight: math.unit(250, "lb"),
  9844. name: "Front",
  9845. image: {
  9846. source: "./media/characters/alexi/front.svg",
  9847. extra: 3483 / 3291,
  9848. bottom: 0.04
  9849. }
  9850. },
  9851. back: {
  9852. height: math.unit(6, "feet"),
  9853. weight: math.unit(250, "lb"),
  9854. name: "Back",
  9855. image: {
  9856. source: "./media/characters/alexi/back.svg",
  9857. extra: 3533 / 3356,
  9858. bottom: 0.021
  9859. }
  9860. },
  9861. frontTransforming: {
  9862. height: math.unit(8.58, "feet"),
  9863. weight: math.unit(1300, "lb"),
  9864. name: "Transforming",
  9865. image: {
  9866. source: "./media/characters/alexi/front-transforming.svg",
  9867. extra: 437 / 409,
  9868. bottom: 19 / 458.66
  9869. }
  9870. },
  9871. frontTransformed: {
  9872. height: math.unit(12.5, "feet"),
  9873. weight: math.unit(4000, "lb"),
  9874. name: "Transformed",
  9875. image: {
  9876. source: "./media/characters/alexi/front-transformed.svg",
  9877. extra: 639 / 614,
  9878. bottom: 30.55 / 671
  9879. }
  9880. },
  9881. },
  9882. [
  9883. {
  9884. name: "Normal",
  9885. height: math.unit(3, "meters"),
  9886. default: true
  9887. },
  9888. {
  9889. name: "Minimacro",
  9890. height: math.unit(30, "meters")
  9891. },
  9892. {
  9893. name: "Macro",
  9894. height: math.unit(500, "meters")
  9895. },
  9896. {
  9897. name: "Megamacro",
  9898. height: math.unit(9000, "km")
  9899. },
  9900. {
  9901. name: "Teramacro",
  9902. height: math.unit(384000, "km")
  9903. },
  9904. ]
  9905. ))
  9906. characterMakers.push(() => makeCharacter(
  9907. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  9908. {
  9909. front: {
  9910. height: math.unit(6, "feet"),
  9911. weight: math.unit(150, "lb"),
  9912. name: "Front",
  9913. image: {
  9914. source: "./media/characters/kayroo/front.svg",
  9915. extra: 1153 / 1038,
  9916. bottom: 0.06
  9917. }
  9918. },
  9919. foot: {
  9920. height: math.unit(6, "feet"),
  9921. weight: math.unit(150, "lb"),
  9922. name: "Foot",
  9923. image: {
  9924. source: "./media/characters/kayroo/foot.svg"
  9925. }
  9926. },
  9927. },
  9928. [
  9929. {
  9930. name: "Normal",
  9931. height: math.unit(8, "feet"),
  9932. default: true
  9933. },
  9934. {
  9935. name: "Minimacro",
  9936. height: math.unit(250, "feet")
  9937. },
  9938. {
  9939. name: "Macro",
  9940. height: math.unit(2800, "feet")
  9941. },
  9942. {
  9943. name: "Megamacro",
  9944. height: math.unit(5200, "feet")
  9945. },
  9946. {
  9947. name: "Gigamacro",
  9948. height: math.unit(27000, "feet")
  9949. },
  9950. {
  9951. name: "Omega",
  9952. height: math.unit(45000, "feet")
  9953. },
  9954. ]
  9955. ))
  9956. characterMakers.push(() => makeCharacter(
  9957. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  9958. {
  9959. front: {
  9960. height: math.unit(18, "feet"),
  9961. weight: math.unit(5800, "lb"),
  9962. name: "Front",
  9963. image: {
  9964. source: "./media/characters/rhys/front.svg",
  9965. extra: 3386 / 3090,
  9966. bottom: 0.07
  9967. }
  9968. },
  9969. },
  9970. [
  9971. {
  9972. name: "Normal",
  9973. height: math.unit(18, "feet"),
  9974. default: true
  9975. },
  9976. {
  9977. name: "Working Size",
  9978. height: math.unit(200, "feet")
  9979. },
  9980. {
  9981. name: "Demolition Size",
  9982. height: math.unit(2000, "feet")
  9983. },
  9984. {
  9985. name: "Maximum Licensed Size",
  9986. height: math.unit(5, "miles")
  9987. },
  9988. {
  9989. name: "Maximum Observed Size",
  9990. height: math.unit(10, "yottameters")
  9991. },
  9992. ]
  9993. ))
  9994. characterMakers.push(() => makeCharacter(
  9995. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  9996. {
  9997. front: {
  9998. height: math.unit(6, "feet"),
  9999. weight: math.unit(250, "lb"),
  10000. name: "Front",
  10001. image: {
  10002. source: "./media/characters/toto/front.svg",
  10003. extra: 527 / 479,
  10004. bottom: 0.05
  10005. }
  10006. },
  10007. },
  10008. [
  10009. {
  10010. name: "Micro",
  10011. height: math.unit(3, "feet")
  10012. },
  10013. {
  10014. name: "Normal",
  10015. height: math.unit(10, "feet")
  10016. },
  10017. {
  10018. name: "Macro",
  10019. height: math.unit(150, "feet"),
  10020. default: true
  10021. },
  10022. {
  10023. name: "Megamacro",
  10024. height: math.unit(1200, "feet")
  10025. },
  10026. ]
  10027. ))
  10028. characterMakers.push(() => makeCharacter(
  10029. { name: "King", species: ["lion"], tags: ["anthro"] },
  10030. {
  10031. back: {
  10032. height: math.unit(6, "feet"),
  10033. weight: math.unit(150, "lb"),
  10034. name: "Back",
  10035. image: {
  10036. source: "./media/characters/king/back.svg"
  10037. }
  10038. },
  10039. },
  10040. [
  10041. {
  10042. name: "Micro",
  10043. height: math.unit(2, "inches")
  10044. },
  10045. {
  10046. name: "Normal",
  10047. height: math.unit(8, "feet")
  10048. },
  10049. {
  10050. name: "Macro",
  10051. height: math.unit(200, "feet"),
  10052. default: true
  10053. },
  10054. {
  10055. name: "Megamacro",
  10056. height: math.unit(50, "miles")
  10057. },
  10058. ]
  10059. ))
  10060. characterMakers.push(() => makeCharacter(
  10061. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10062. {
  10063. anthro: {
  10064. height: math.unit(6 + 5 / 12, "feet"),
  10065. weight: math.unit(280, "lb"),
  10066. name: "Anthro",
  10067. image: {
  10068. source: "./media/characters/cordite/anthro.svg",
  10069. extra: 1986 / 1905,
  10070. bottom: 0.025
  10071. }
  10072. },
  10073. feral: {
  10074. height: math.unit(2, "feet"),
  10075. weight: math.unit(90, "lb"),
  10076. name: "Feral",
  10077. image: {
  10078. source: "./media/characters/cordite/feral.svg",
  10079. extra: 1260 / 755,
  10080. bottom: 0.05
  10081. }
  10082. },
  10083. },
  10084. [
  10085. {
  10086. name: "Normal",
  10087. height: math.unit(6 + 5 / 12, "feet"),
  10088. default: true
  10089. },
  10090. ]
  10091. ))
  10092. characterMakers.push(() => makeCharacter(
  10093. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10094. {
  10095. front: {
  10096. height: math.unit(6, "feet"),
  10097. weight: math.unit(150, "lb"),
  10098. name: "Front",
  10099. image: {
  10100. source: "./media/characters/pianostrong/front.svg",
  10101. extra: 6577 / 6254,
  10102. bottom: 0.02
  10103. }
  10104. },
  10105. side: {
  10106. height: math.unit(6, "feet"),
  10107. weight: math.unit(150, "lb"),
  10108. name: "Side",
  10109. image: {
  10110. source: "./media/characters/pianostrong/side.svg",
  10111. extra: 6106 / 5730
  10112. }
  10113. },
  10114. back: {
  10115. height: math.unit(6, "feet"),
  10116. weight: math.unit(150, "lb"),
  10117. name: "Back",
  10118. image: {
  10119. source: "./media/characters/pianostrong/back.svg",
  10120. extra: 6085 / 5733,
  10121. bottom: 0.01
  10122. }
  10123. },
  10124. },
  10125. [
  10126. {
  10127. name: "Macro",
  10128. height: math.unit(100, "feet")
  10129. },
  10130. {
  10131. name: "Macro+",
  10132. height: math.unit(300, "feet"),
  10133. default: true
  10134. },
  10135. {
  10136. name: "Macro++",
  10137. height: math.unit(1000, "feet")
  10138. },
  10139. ]
  10140. ))
  10141. characterMakers.push(() => makeCharacter(
  10142. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10143. {
  10144. front: {
  10145. height: math.unit(6, "feet"),
  10146. weight: math.unit(150, "lb"),
  10147. name: "Front",
  10148. image: {
  10149. source: "./media/characters/kona/front.svg",
  10150. extra: 2960 / 2629,
  10151. bottom: 0.005
  10152. }
  10153. },
  10154. },
  10155. [
  10156. {
  10157. name: "Normal",
  10158. height: math.unit(11 + 8 / 12, "feet")
  10159. },
  10160. {
  10161. name: "Macro",
  10162. height: math.unit(850, "feet"),
  10163. default: true
  10164. },
  10165. {
  10166. name: "Macro+",
  10167. height: math.unit(1.5, "km"),
  10168. default: true
  10169. },
  10170. {
  10171. name: "Megamacro",
  10172. height: math.unit(80, "miles")
  10173. },
  10174. {
  10175. name: "Gigamacro",
  10176. height: math.unit(3500, "miles")
  10177. },
  10178. ]
  10179. ))
  10180. characterMakers.push(() => makeCharacter(
  10181. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10182. {
  10183. side: {
  10184. height: math.unit(1.9, "meters"),
  10185. weight: math.unit(326, "kg"),
  10186. name: "Side",
  10187. image: {
  10188. source: "./media/characters/levi/side.svg",
  10189. extra: 1704 / 1334,
  10190. bottom: 0.02
  10191. }
  10192. },
  10193. },
  10194. [
  10195. {
  10196. name: "Normal",
  10197. height: math.unit(1.9, "meters"),
  10198. default: true
  10199. },
  10200. {
  10201. name: "Macro",
  10202. height: math.unit(20, "meters")
  10203. },
  10204. {
  10205. name: "Macro+",
  10206. height: math.unit(200, "meters")
  10207. },
  10208. {
  10209. name: "Megamacro",
  10210. height: math.unit(2, "km")
  10211. },
  10212. {
  10213. name: "Megamacro+",
  10214. height: math.unit(20, "km")
  10215. },
  10216. {
  10217. name: "Gigamacro",
  10218. height: math.unit(2500, "km")
  10219. },
  10220. {
  10221. name: "Gigamacro+",
  10222. height: math.unit(120000, "km")
  10223. },
  10224. {
  10225. name: "Teramacro",
  10226. height: math.unit(7.77e6, "km")
  10227. },
  10228. ]
  10229. ))
  10230. characterMakers.push(() => makeCharacter(
  10231. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10232. {
  10233. front: {
  10234. height: math.unit(6 + 4 / 12, "feet"),
  10235. weight: math.unit(188, "lb"),
  10236. name: "Front",
  10237. image: {
  10238. source: "./media/characters/bmc/front.svg",
  10239. extra: 1067 / 1022,
  10240. bottom: 0.047
  10241. }
  10242. },
  10243. },
  10244. [
  10245. {
  10246. name: "Human-sized",
  10247. height: math.unit(6 + 4 / 12, "feet")
  10248. },
  10249. {
  10250. name: "Small",
  10251. height: math.unit(250, "feet")
  10252. },
  10253. {
  10254. name: "Normal",
  10255. height: math.unit(1250, "feet"),
  10256. default: true
  10257. },
  10258. {
  10259. name: "Good Day",
  10260. height: math.unit(88, "miles")
  10261. },
  10262. {
  10263. name: "Largest Measured Size",
  10264. height: math.unit(11.2e6, "lightyears")
  10265. },
  10266. ]
  10267. ))
  10268. characterMakers.push(() => makeCharacter(
  10269. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10270. {
  10271. front: {
  10272. height: math.unit(20, "feet"),
  10273. weight: math.unit(2016, "kg"),
  10274. name: "Front",
  10275. image: {
  10276. source: "./media/characters/sven-the-kaiju/front.svg",
  10277. extra: 1479 / 1449,
  10278. bottom: 0.05
  10279. }
  10280. },
  10281. },
  10282. [
  10283. {
  10284. name: "Fairy",
  10285. height: math.unit(6, "inches")
  10286. },
  10287. {
  10288. name: "Normal",
  10289. height: math.unit(20, "feet"),
  10290. default: true
  10291. },
  10292. {
  10293. name: "Rampage",
  10294. height: math.unit(200, "feet")
  10295. },
  10296. {
  10297. name: "Archfey Forest Guardian",
  10298. height: math.unit(1, "mile")
  10299. },
  10300. ]
  10301. ))
  10302. characterMakers.push(() => makeCharacter(
  10303. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10304. {
  10305. front: {
  10306. height: math.unit(4, "meters"),
  10307. weight: math.unit(2, "tons"),
  10308. name: "Front",
  10309. image: {
  10310. source: "./media/characters/marik/front.svg",
  10311. extra: 1057 / 1003,
  10312. bottom: 0.08
  10313. }
  10314. },
  10315. },
  10316. [
  10317. {
  10318. name: "Normal",
  10319. height: math.unit(4, "meters"),
  10320. default: true
  10321. },
  10322. {
  10323. name: "Macro",
  10324. height: math.unit(20, "meters")
  10325. },
  10326. {
  10327. name: "Megamacro",
  10328. height: math.unit(50, "km")
  10329. },
  10330. {
  10331. name: "Gigamacro",
  10332. height: math.unit(100, "km")
  10333. },
  10334. {
  10335. name: "Alpha Macro",
  10336. height: math.unit(7.88e7, "yottameters")
  10337. },
  10338. ]
  10339. ))
  10340. characterMakers.push(() => makeCharacter(
  10341. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10342. {
  10343. front: {
  10344. height: math.unit(6, "feet"),
  10345. weight: math.unit(110, "lb"),
  10346. name: "Front",
  10347. image: {
  10348. source: "./media/characters/mel/front.svg",
  10349. extra: 736 / 617,
  10350. bottom: 0.017
  10351. }
  10352. },
  10353. },
  10354. [
  10355. {
  10356. name: "Pico",
  10357. height: math.unit(3, "pm")
  10358. },
  10359. {
  10360. name: "Nano",
  10361. height: math.unit(3, "nm")
  10362. },
  10363. {
  10364. name: "Micro",
  10365. height: math.unit(0.3, "mm"),
  10366. default: true
  10367. },
  10368. {
  10369. name: "Micro+",
  10370. height: math.unit(3, "mm")
  10371. },
  10372. {
  10373. name: "Normal",
  10374. height: math.unit(5 + 10.5 / 12, "feet")
  10375. },
  10376. ]
  10377. ))
  10378. characterMakers.push(() => makeCharacter(
  10379. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10380. {
  10381. kaiju: {
  10382. height: math.unit(1.75, "meters"),
  10383. weight: math.unit(55, "kg"),
  10384. name: "Kaiju",
  10385. image: {
  10386. source: "./media/characters/lykonous/kaiju.svg",
  10387. extra: 1055 / 946,
  10388. bottom: 0.135
  10389. }
  10390. },
  10391. },
  10392. [
  10393. {
  10394. name: "Normal",
  10395. height: math.unit(2.5, "meters"),
  10396. default: true
  10397. },
  10398. {
  10399. name: "Kaiju Dragon",
  10400. height: math.unit(60, "meters")
  10401. },
  10402. {
  10403. name: "Mega Kaiju",
  10404. height: math.unit(120, "km")
  10405. },
  10406. {
  10407. name: "Giga Kaiju",
  10408. height: math.unit(200, "megameters")
  10409. },
  10410. {
  10411. name: "Terra Kaiju",
  10412. height: math.unit(400, "gigameters")
  10413. },
  10414. {
  10415. name: "Kaiju Dragon God",
  10416. height: math.unit(13000, "exaparsecs")
  10417. },
  10418. ]
  10419. ))
  10420. characterMakers.push(() => makeCharacter(
  10421. { name: "Blü", species: ["dragon"], 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/blü/front.svg",
  10429. extra: 1883 / 1564,
  10430. bottom: 0.031
  10431. }
  10432. },
  10433. },
  10434. [
  10435. {
  10436. name: "Normal",
  10437. height: math.unit(13, "feet"),
  10438. default: true
  10439. },
  10440. {
  10441. name: "Big Boi",
  10442. height: math.unit(150, "meters")
  10443. },
  10444. {
  10445. name: "Mini Stomper",
  10446. height: math.unit(300, "meters")
  10447. },
  10448. {
  10449. name: "Macro",
  10450. height: math.unit(1000, "meters")
  10451. },
  10452. {
  10453. name: "Megamacro",
  10454. height: math.unit(11000, "meters")
  10455. },
  10456. {
  10457. name: "Gigamacro",
  10458. height: math.unit(11000, "km")
  10459. },
  10460. {
  10461. name: "Teramacro",
  10462. height: math.unit(420000, "km")
  10463. },
  10464. {
  10465. name: "Examacro",
  10466. height: math.unit(120, "parsecs")
  10467. },
  10468. {
  10469. name: "God Tho",
  10470. height: math.unit(98000000000, "parsecs")
  10471. },
  10472. ]
  10473. ))
  10474. characterMakers.push(() => makeCharacter(
  10475. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10476. {
  10477. taurFront: {
  10478. height: math.unit(6, "feet"),
  10479. weight: math.unit(200, "lb"),
  10480. name: "Taur (Front)",
  10481. image: {
  10482. source: "./media/characters/scales/taur-front.svg",
  10483. extra: 1,
  10484. bottom: 0.05
  10485. }
  10486. },
  10487. taurBack: {
  10488. height: math.unit(6, "feet"),
  10489. weight: math.unit(200, "lb"),
  10490. name: "Taur (Back)",
  10491. image: {
  10492. source: "./media/characters/scales/taur-back.svg",
  10493. extra: 1,
  10494. bottom: 0.08
  10495. }
  10496. },
  10497. anthro: {
  10498. height: math.unit(6 * 7 / 12, "feet"),
  10499. weight: math.unit(100, "lb"),
  10500. name: "Anthro",
  10501. image: {
  10502. source: "./media/characters/scales/anthro.svg",
  10503. extra: 1,
  10504. bottom: 0.06
  10505. }
  10506. },
  10507. },
  10508. [
  10509. {
  10510. name: "Normal",
  10511. height: math.unit(12, "feet"),
  10512. default: true
  10513. },
  10514. ]
  10515. ))
  10516. characterMakers.push(() => makeCharacter(
  10517. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10518. {
  10519. front: {
  10520. height: math.unit(6, "feet"),
  10521. weight: math.unit(150, "lb"),
  10522. name: "Front",
  10523. image: {
  10524. source: "./media/characters/koragos/front.svg",
  10525. extra: 841 / 794,
  10526. bottom: 0.035
  10527. }
  10528. },
  10529. back: {
  10530. height: math.unit(6, "feet"),
  10531. weight: math.unit(150, "lb"),
  10532. name: "Back",
  10533. image: {
  10534. source: "./media/characters/koragos/back.svg",
  10535. extra: 841 / 810,
  10536. bottom: 0.022
  10537. }
  10538. },
  10539. },
  10540. [
  10541. {
  10542. name: "Normal",
  10543. height: math.unit(6 + 11 / 12, "feet"),
  10544. default: true
  10545. },
  10546. {
  10547. name: "Macro",
  10548. height: math.unit(490, "feet")
  10549. },
  10550. {
  10551. name: "Megamacro",
  10552. height: math.unit(10, "miles")
  10553. },
  10554. {
  10555. name: "Gigamacro",
  10556. height: math.unit(50, "miles")
  10557. },
  10558. ]
  10559. ))
  10560. characterMakers.push(() => makeCharacter(
  10561. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10562. {
  10563. front: {
  10564. height: math.unit(6, "feet"),
  10565. weight: math.unit(250, "lb"),
  10566. name: "Front",
  10567. image: {
  10568. source: "./media/characters/xylrem/front.svg",
  10569. extra: 3323 / 3050,
  10570. bottom: 0.065
  10571. }
  10572. },
  10573. },
  10574. [
  10575. {
  10576. name: "Micro",
  10577. height: math.unit(4, "feet")
  10578. },
  10579. {
  10580. name: "Normal",
  10581. height: math.unit(16, "feet"),
  10582. default: true
  10583. },
  10584. {
  10585. name: "Macro",
  10586. height: math.unit(2720, "feet")
  10587. },
  10588. {
  10589. name: "Megamacro",
  10590. height: math.unit(25000, "miles")
  10591. },
  10592. ]
  10593. ))
  10594. characterMakers.push(() => makeCharacter(
  10595. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10596. {
  10597. front: {
  10598. height: math.unit(8, "feet"),
  10599. weight: math.unit(250, "kg"),
  10600. name: "Front",
  10601. image: {
  10602. source: "./media/characters/ikideru/front.svg",
  10603. extra: 930 / 870,
  10604. bottom: 0.087
  10605. }
  10606. },
  10607. back: {
  10608. height: math.unit(8, "feet"),
  10609. weight: math.unit(250, "kg"),
  10610. name: "Back",
  10611. image: {
  10612. source: "./media/characters/ikideru/back.svg",
  10613. extra: 919 / 852,
  10614. bottom: 0.055
  10615. }
  10616. },
  10617. },
  10618. [
  10619. {
  10620. name: "Rare",
  10621. height: math.unit(8, "feet"),
  10622. default: true
  10623. },
  10624. {
  10625. name: "Playful Loom",
  10626. height: math.unit(80, "feet")
  10627. },
  10628. {
  10629. name: "City Leaner",
  10630. height: math.unit(230, "feet")
  10631. },
  10632. {
  10633. name: "Megamacro",
  10634. height: math.unit(2500, "feet")
  10635. },
  10636. {
  10637. name: "Gigamacro",
  10638. height: math.unit(26400, "feet")
  10639. },
  10640. {
  10641. name: "Tectonic Shifter",
  10642. height: math.unit(1.7, "megameters")
  10643. },
  10644. {
  10645. name: "Planet Carer",
  10646. height: math.unit(21, "megameters")
  10647. },
  10648. {
  10649. name: "God",
  10650. height: math.unit(11157.22, "parsecs")
  10651. },
  10652. ]
  10653. ))
  10654. characterMakers.push(() => makeCharacter(
  10655. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10656. {
  10657. front: {
  10658. height: math.unit(6, "feet"),
  10659. weight: math.unit(120, "lb"),
  10660. name: "Front",
  10661. image: {
  10662. source: "./media/characters/neo/front.svg"
  10663. }
  10664. },
  10665. },
  10666. [
  10667. {
  10668. name: "Micro",
  10669. height: math.unit(2, "inches"),
  10670. default: true
  10671. },
  10672. {
  10673. name: "Human Size",
  10674. height: math.unit(5 + 8 / 12, "feet")
  10675. },
  10676. ]
  10677. ))
  10678. characterMakers.push(() => makeCharacter(
  10679. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  10680. {
  10681. front: {
  10682. height: math.unit(13 + 10 / 12, "feet"),
  10683. weight: math.unit(5320, "lb"),
  10684. name: "Front",
  10685. image: {
  10686. source: "./media/characters/chauncey-chantz/front.svg",
  10687. extra: 1587 / 1435,
  10688. bottom: 0.02
  10689. }
  10690. },
  10691. },
  10692. [
  10693. {
  10694. name: "Normal",
  10695. height: math.unit(13 + 10 / 12, "feet"),
  10696. default: true
  10697. },
  10698. {
  10699. name: "Macro",
  10700. height: math.unit(45, "feet")
  10701. },
  10702. {
  10703. name: "Megamacro",
  10704. height: math.unit(250, "miles")
  10705. },
  10706. {
  10707. name: "Planetary",
  10708. height: math.unit(10000, "miles")
  10709. },
  10710. {
  10711. name: "Galactic",
  10712. height: math.unit(40000, "parsecs")
  10713. },
  10714. {
  10715. name: "Universal",
  10716. height: math.unit(1, "yottameter")
  10717. },
  10718. ]
  10719. ))
  10720. characterMakers.push(() => makeCharacter(
  10721. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  10722. {
  10723. front: {
  10724. height: math.unit(6, "feet"),
  10725. weight: math.unit(150, "lb"),
  10726. name: "Front",
  10727. image: {
  10728. source: "./media/characters/epifox/front.svg",
  10729. extra: 1,
  10730. bottom: 0.075
  10731. }
  10732. },
  10733. },
  10734. [
  10735. {
  10736. name: "Micro",
  10737. height: math.unit(6, "inches")
  10738. },
  10739. {
  10740. name: "Normal",
  10741. height: math.unit(12, "feet"),
  10742. default: true
  10743. },
  10744. {
  10745. name: "Macro",
  10746. height: math.unit(3810, "feet")
  10747. },
  10748. {
  10749. name: "Megamacro",
  10750. height: math.unit(500, "miles")
  10751. },
  10752. ]
  10753. ))
  10754. characterMakers.push(() => makeCharacter(
  10755. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  10756. {
  10757. front: {
  10758. height: math.unit(1.8796, "m"),
  10759. weight: math.unit(230, "lb"),
  10760. name: "Front",
  10761. image: {
  10762. source: "./media/characters/colin-t/front.svg",
  10763. extra: 1272 / 1193,
  10764. bottom: 0.07
  10765. }
  10766. },
  10767. },
  10768. [
  10769. {
  10770. name: "Micro",
  10771. height: math.unit(0.571, "meters")
  10772. },
  10773. {
  10774. name: "Normal",
  10775. height: math.unit(1.8796, "meters"),
  10776. default: true
  10777. },
  10778. {
  10779. name: "Tall",
  10780. height: math.unit(4, "meters")
  10781. },
  10782. {
  10783. name: "Macro",
  10784. height: math.unit(67.241, "meters")
  10785. },
  10786. {
  10787. name: "Megamacro",
  10788. height: math.unit(371.856, "meters")
  10789. },
  10790. {
  10791. name: "Planetary",
  10792. height: math.unit(12631.5689, "km")
  10793. },
  10794. ]
  10795. ))
  10796. characterMakers.push(() => makeCharacter(
  10797. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  10798. {
  10799. front: {
  10800. height: math.unit(1.85, "meters"),
  10801. weight: math.unit(80, "kg"),
  10802. name: "Front",
  10803. image: {
  10804. source: "./media/characters/matvei/front.svg",
  10805. extra: 614 / 594,
  10806. bottom: 0.01
  10807. }
  10808. },
  10809. },
  10810. [
  10811. {
  10812. name: "Normal",
  10813. height: math.unit(1.85, "meters"),
  10814. default: true
  10815. },
  10816. ]
  10817. ))
  10818. characterMakers.push(() => makeCharacter(
  10819. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  10820. {
  10821. front: {
  10822. height: math.unit(5 + 9 / 12, "feet"),
  10823. weight: math.unit(70, "lb"),
  10824. name: "Front",
  10825. image: {
  10826. source: "./media/characters/quincy/front.svg",
  10827. extra: 3041 / 2751
  10828. }
  10829. },
  10830. back: {
  10831. height: math.unit(5 + 9 / 12, "feet"),
  10832. weight: math.unit(70, "lb"),
  10833. name: "Back",
  10834. image: {
  10835. source: "./media/characters/quincy/back.svg",
  10836. extra: 3041 / 2751
  10837. }
  10838. },
  10839. flying: {
  10840. height: math.unit(5 + 4 / 12, "feet"),
  10841. weight: math.unit(70, "lb"),
  10842. name: "Flying",
  10843. image: {
  10844. source: "./media/characters/quincy/flying.svg",
  10845. extra: 1044 / 930
  10846. }
  10847. },
  10848. },
  10849. [
  10850. {
  10851. name: "Micro",
  10852. height: math.unit(3, "cm")
  10853. },
  10854. {
  10855. name: "Normal",
  10856. height: math.unit(5 + 9 / 12, "feet")
  10857. },
  10858. {
  10859. name: "Macro",
  10860. height: math.unit(200, "meters"),
  10861. default: true
  10862. },
  10863. {
  10864. name: "Megamacro",
  10865. height: math.unit(1000, "meters")
  10866. },
  10867. ]
  10868. ))
  10869. characterMakers.push(() => makeCharacter(
  10870. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  10871. {
  10872. front: {
  10873. height: math.unit(4 + 7 / 12, "feet"),
  10874. weight: math.unit(150, "lb"),
  10875. name: "Front",
  10876. image: {
  10877. source: "./media/characters/vanrel/front.svg",
  10878. extra: 1,
  10879. bottom: 0.02
  10880. }
  10881. },
  10882. elemental: {
  10883. height: math.unit(3, "feet"),
  10884. weight: math.unit(150, "lb"),
  10885. name: "Elemental",
  10886. image: {
  10887. source: "./media/characters/vanrel/elemental.svg",
  10888. extra: 192.3 / 162.8,
  10889. bottom: 1.79 / 194.17
  10890. }
  10891. },
  10892. side: {
  10893. height: math.unit(4 + 7 / 12, "feet"),
  10894. weight: math.unit(150, "lb"),
  10895. name: "Side",
  10896. image: {
  10897. source: "./media/characters/vanrel/side.svg",
  10898. extra: 1,
  10899. bottom: 0.025
  10900. }
  10901. },
  10902. tome: {
  10903. height: math.unit(1.35, "feet"),
  10904. weight: math.unit(10, "lb"),
  10905. name: "Vanrel's Tome",
  10906. rename: true,
  10907. image: {
  10908. source: "./media/characters/vanrel/tome.svg"
  10909. }
  10910. },
  10911. beans: {
  10912. height: math.unit(0.89, "feet"),
  10913. name: "Beans",
  10914. image: {
  10915. source: "./media/characters/vanrel/beans.svg"
  10916. }
  10917. },
  10918. },
  10919. [
  10920. {
  10921. name: "Normal",
  10922. height: math.unit(4 + 7 / 12, "feet"),
  10923. default: true
  10924. },
  10925. ]
  10926. ))
  10927. characterMakers.push(() => makeCharacter(
  10928. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  10929. {
  10930. front: {
  10931. height: math.unit(7 + 5 / 12, "feet"),
  10932. weight: math.unit(150, "lb"),
  10933. name: "Front",
  10934. image: {
  10935. source: "./media/characters/kuiper-vanrel/front.svg",
  10936. extra: 1118 / 1068,
  10937. bottom: 0.09
  10938. }
  10939. },
  10940. foot: {
  10941. height: math.unit(0.55, "meters"),
  10942. name: "Foot",
  10943. image: {
  10944. source: "./media/characters/kuiper-vanrel/foot.svg",
  10945. }
  10946. },
  10947. battle: {
  10948. height: math.unit(6.824, "feet"),
  10949. weight: math.unit(150, "lb"),
  10950. name: "Battle",
  10951. image: {
  10952. source: "./media/characters/kuiper-vanrel/battle.svg",
  10953. extra: 1466 / 1327,
  10954. bottom: 29 / 1492.5
  10955. }
  10956. },
  10957. },
  10958. [
  10959. {
  10960. name: "Normal",
  10961. height: math.unit(7 + 5 / 12, "feet"),
  10962. default: true
  10963. },
  10964. ]
  10965. ))
  10966. characterMakers.push(() => makeCharacter(
  10967. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  10968. {
  10969. front: {
  10970. height: math.unit(8 + 5 / 12, "feet"),
  10971. weight: math.unit(150, "lb"),
  10972. name: "Front",
  10973. image: {
  10974. source: "./media/characters/keset-vanrel/front.svg",
  10975. extra: 1150 / 1084,
  10976. bottom: 0.05
  10977. }
  10978. },
  10979. hand: {
  10980. height: math.unit(0.6, "meters"),
  10981. name: "Hand",
  10982. image: {
  10983. source: "./media/characters/keset-vanrel/hand.svg"
  10984. }
  10985. },
  10986. foot: {
  10987. height: math.unit(0.94978, "meters"),
  10988. name: "Foot",
  10989. image: {
  10990. source: "./media/characters/keset-vanrel/foot.svg"
  10991. }
  10992. },
  10993. battle: {
  10994. height: math.unit(7.408, "feet"),
  10995. weight: math.unit(150, "lb"),
  10996. name: "Battle",
  10997. image: {
  10998. source: "./media/characters/keset-vanrel/battle.svg",
  10999. extra: 1890 / 1386,
  11000. bottom: 73.28 / 1970
  11001. }
  11002. },
  11003. },
  11004. [
  11005. {
  11006. name: "Normal",
  11007. height: math.unit(8 + 5 / 12, "feet"),
  11008. default: true
  11009. },
  11010. ]
  11011. ))
  11012. characterMakers.push(() => makeCharacter(
  11013. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11014. {
  11015. front: {
  11016. height: math.unit(6, "feet"),
  11017. weight: math.unit(150, "lb"),
  11018. name: "Front",
  11019. image: {
  11020. source: "./media/characters/neos/front.svg",
  11021. extra: 1696 / 992,
  11022. bottom: 0.14
  11023. }
  11024. },
  11025. },
  11026. [
  11027. {
  11028. name: "Normal",
  11029. height: math.unit(54, "cm"),
  11030. default: true
  11031. },
  11032. {
  11033. name: "Macro",
  11034. height: math.unit(100, "m")
  11035. },
  11036. {
  11037. name: "Megamacro",
  11038. height: math.unit(10, "km")
  11039. },
  11040. {
  11041. name: "Megamacro+",
  11042. height: math.unit(100, "km")
  11043. },
  11044. {
  11045. name: "Gigamacro",
  11046. height: math.unit(100, "Mm")
  11047. },
  11048. {
  11049. name: "Teramacro",
  11050. height: math.unit(100, "Gm")
  11051. },
  11052. {
  11053. name: "Examacro",
  11054. height: math.unit(100, "Em")
  11055. },
  11056. {
  11057. name: "Godly",
  11058. height: math.unit(10000, "Ym")
  11059. },
  11060. {
  11061. name: "Beyond Godly",
  11062. height: math.unit(10000000, "Ym")
  11063. },
  11064. ]
  11065. ))
  11066. characterMakers.push(() => makeCharacter(
  11067. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11068. {
  11069. feminine: {
  11070. height: math.unit(5, "feet"),
  11071. weight: math.unit(100, "lb"),
  11072. name: "Feminine",
  11073. image: {
  11074. source: "./media/characters/sammy-mouse/feminine.svg",
  11075. extra: 2526 / 2425,
  11076. bottom: 0.123
  11077. }
  11078. },
  11079. masculine: {
  11080. height: math.unit(5, "feet"),
  11081. weight: math.unit(100, "lb"),
  11082. name: "Masculine",
  11083. image: {
  11084. source: "./media/characters/sammy-mouse/masculine.svg",
  11085. extra: 2526 / 2425,
  11086. bottom: 0.123
  11087. }
  11088. },
  11089. },
  11090. [
  11091. {
  11092. name: "Micro",
  11093. height: math.unit(5, "inches")
  11094. },
  11095. {
  11096. name: "Normal",
  11097. height: math.unit(5, "feet"),
  11098. default: true
  11099. },
  11100. {
  11101. name: "Macro",
  11102. height: math.unit(60, "feet")
  11103. },
  11104. ]
  11105. ))
  11106. characterMakers.push(() => makeCharacter(
  11107. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11108. {
  11109. front: {
  11110. height: math.unit(4, "feet"),
  11111. weight: math.unit(50, "lb"),
  11112. name: "Front",
  11113. image: {
  11114. source: "./media/characters/kole/front.svg",
  11115. extra: 1423 / 1303,
  11116. bottom: 0.025
  11117. }
  11118. },
  11119. back: {
  11120. height: math.unit(4, "feet"),
  11121. weight: math.unit(50, "lb"),
  11122. name: "Back",
  11123. image: {
  11124. source: "./media/characters/kole/back.svg",
  11125. extra: 1426 / 1280,
  11126. bottom: 0.02
  11127. }
  11128. },
  11129. },
  11130. [
  11131. {
  11132. name: "Normal",
  11133. height: math.unit(4, "feet"),
  11134. default: true
  11135. },
  11136. ]
  11137. ))
  11138. characterMakers.push(() => makeCharacter(
  11139. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11140. {
  11141. front: {
  11142. height: math.unit(2 + 6 / 12, "feet"),
  11143. weight: math.unit(20, "lb"),
  11144. name: "Front",
  11145. image: {
  11146. source: "./media/characters/rufran/front.svg",
  11147. extra: 2041 / 1839,
  11148. bottom: 0.055
  11149. }
  11150. },
  11151. back: {
  11152. height: math.unit(2 + 6 / 12, "feet"),
  11153. weight: math.unit(20, "lb"),
  11154. name: "Back",
  11155. image: {
  11156. source: "./media/characters/rufran/back.svg",
  11157. extra: 2054 / 1839,
  11158. bottom: 0.01
  11159. }
  11160. },
  11161. hand: {
  11162. height: math.unit(0.2166, "meters"),
  11163. name: "Hand",
  11164. image: {
  11165. source: "./media/characters/rufran/hand.svg"
  11166. }
  11167. },
  11168. foot: {
  11169. height: math.unit(0.185, "meters"),
  11170. name: "Foot",
  11171. image: {
  11172. source: "./media/characters/rufran/foot.svg"
  11173. }
  11174. },
  11175. },
  11176. [
  11177. {
  11178. name: "Micro",
  11179. height: math.unit(1, "inch")
  11180. },
  11181. {
  11182. name: "Normal",
  11183. height: math.unit(2 + 6 / 12, "feet"),
  11184. default: true
  11185. },
  11186. {
  11187. name: "Big",
  11188. height: math.unit(60, "feet")
  11189. },
  11190. {
  11191. name: "Macro",
  11192. height: math.unit(325, "feet")
  11193. },
  11194. ]
  11195. ))
  11196. characterMakers.push(() => makeCharacter(
  11197. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11198. {
  11199. front: {
  11200. height: math.unit(0.3, "meters"),
  11201. weight: math.unit(3.5, "kg"),
  11202. name: "Front",
  11203. image: {
  11204. source: "./media/characters/chip/front.svg",
  11205. extra: 748 / 674
  11206. }
  11207. },
  11208. },
  11209. [
  11210. {
  11211. name: "Micro",
  11212. height: math.unit(1, "inch"),
  11213. default: true
  11214. },
  11215. ]
  11216. ))
  11217. characterMakers.push(() => makeCharacter(
  11218. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11219. {
  11220. side: {
  11221. height: math.unit(2.3, "meters"),
  11222. weight: math.unit(3500, "lb"),
  11223. name: "Side",
  11224. image: {
  11225. source: "./media/characters/torvid/side.svg",
  11226. extra: 1972 / 722,
  11227. bottom: 0.035
  11228. }
  11229. },
  11230. },
  11231. [
  11232. {
  11233. name: "Normal",
  11234. height: math.unit(2.3, "meters"),
  11235. default: true
  11236. },
  11237. ]
  11238. ))
  11239. characterMakers.push(() => makeCharacter(
  11240. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11241. {
  11242. front: {
  11243. height: math.unit(2, "meters"),
  11244. weight: math.unit(150.5, "kg"),
  11245. name: "Front",
  11246. image: {
  11247. source: "./media/characters/susan/front.svg",
  11248. extra: 693 / 635,
  11249. bottom: 0.05
  11250. }
  11251. },
  11252. },
  11253. [
  11254. {
  11255. name: "Megamacro",
  11256. height: math.unit(505, "miles"),
  11257. default: true
  11258. },
  11259. ]
  11260. ))
  11261. characterMakers.push(() => makeCharacter(
  11262. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11263. {
  11264. front: {
  11265. height: math.unit(6, "feet"),
  11266. weight: math.unit(150, "lb"),
  11267. name: "Front",
  11268. image: {
  11269. source: "./media/characters/raindrops/front.svg",
  11270. extra: 2655 / 2461,
  11271. bottom: 0.02
  11272. }
  11273. },
  11274. back: {
  11275. height: math.unit(6, "feet"),
  11276. weight: math.unit(150, "lb"),
  11277. name: "Back",
  11278. image: {
  11279. source: "./media/characters/raindrops/back.svg",
  11280. extra: 2574 / 2400,
  11281. bottom: 0.03
  11282. }
  11283. },
  11284. },
  11285. [
  11286. {
  11287. name: "Micro",
  11288. height: math.unit(6, "inches")
  11289. },
  11290. {
  11291. name: "Normal",
  11292. height: math.unit(6 + 2 / 12, "feet")
  11293. },
  11294. {
  11295. name: "Macro",
  11296. height: math.unit(131, "feet"),
  11297. default: true
  11298. },
  11299. {
  11300. name: "Megamacro",
  11301. height: math.unit(15, "miles")
  11302. },
  11303. {
  11304. name: "Gigamacro",
  11305. height: math.unit(4000, "miles")
  11306. },
  11307. {
  11308. name: "Teramacro",
  11309. height: math.unit(315000, "miles")
  11310. },
  11311. ]
  11312. ))
  11313. characterMakers.push(() => makeCharacter(
  11314. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11315. {
  11316. front: {
  11317. height: math.unit(2.794, "meters"),
  11318. weight: math.unit(325, "kg"),
  11319. name: "Front",
  11320. image: {
  11321. source: "./media/characters/tezwa/front.svg",
  11322. extra: 2083 / 1906,
  11323. bottom: 0.031
  11324. }
  11325. },
  11326. foot: {
  11327. height: math.unit(0.687, "meters"),
  11328. name: "Foot",
  11329. image: {
  11330. source: "./media/characters/tezwa/foot.svg"
  11331. }
  11332. },
  11333. },
  11334. [
  11335. {
  11336. name: "Normal",
  11337. height: math.unit(9 + 2 / 12, "feet"),
  11338. default: true
  11339. },
  11340. ]
  11341. ))
  11342. characterMakers.push(() => makeCharacter(
  11343. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11344. {
  11345. front: {
  11346. height: math.unit(58, "feet"),
  11347. weight: math.unit(89000, "lb"),
  11348. name: "Front",
  11349. image: {
  11350. source: "./media/characters/typhus/front.svg",
  11351. extra: 816 / 800,
  11352. bottom: 0.065
  11353. }
  11354. },
  11355. },
  11356. [
  11357. {
  11358. name: "Macro",
  11359. height: math.unit(58, "feet"),
  11360. default: true
  11361. },
  11362. ]
  11363. ))
  11364. characterMakers.push(() => makeCharacter(
  11365. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11366. {
  11367. front: {
  11368. height: math.unit(12, "feet"),
  11369. weight: math.unit(6, "tonnes"),
  11370. name: "Front",
  11371. image: {
  11372. source: "./media/characters/lyra-von-wulf/front.svg",
  11373. extra: 1,
  11374. bottom: 0.10
  11375. }
  11376. },
  11377. frontMecha: {
  11378. height: math.unit(12, "feet"),
  11379. weight: math.unit(12, "tonnes"),
  11380. name: "Front (Mecha)",
  11381. image: {
  11382. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11383. extra: 1,
  11384. bottom: 0.042
  11385. }
  11386. },
  11387. maw: {
  11388. height: math.unit(2.2, "feet"),
  11389. name: "Maw",
  11390. image: {
  11391. source: "./media/characters/lyra-von-wulf/maw.svg"
  11392. }
  11393. },
  11394. },
  11395. [
  11396. {
  11397. name: "Normal",
  11398. height: math.unit(12, "feet"),
  11399. default: true
  11400. },
  11401. {
  11402. name: "Classic",
  11403. height: math.unit(50, "feet")
  11404. },
  11405. {
  11406. name: "Macro",
  11407. height: math.unit(500, "feet")
  11408. },
  11409. {
  11410. name: "Megamacro",
  11411. height: math.unit(1, "mile")
  11412. },
  11413. {
  11414. name: "Gigamacro",
  11415. height: math.unit(400, "miles")
  11416. },
  11417. {
  11418. name: "Teramacro",
  11419. height: math.unit(22000, "miles")
  11420. },
  11421. {
  11422. name: "Solarmacro",
  11423. height: math.unit(8600000, "miles")
  11424. },
  11425. {
  11426. name: "Galactic",
  11427. height: math.unit(1057000, "lightyears")
  11428. },
  11429. ]
  11430. ))
  11431. characterMakers.push(() => makeCharacter(
  11432. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11433. {
  11434. front: {
  11435. height: math.unit(6 + 10 / 12, "feet"),
  11436. weight: math.unit(150, "lb"),
  11437. name: "Front",
  11438. image: {
  11439. source: "./media/characters/dixon/front.svg",
  11440. extra: 3361 / 3209,
  11441. bottom: 0.01
  11442. }
  11443. },
  11444. },
  11445. [
  11446. {
  11447. name: "Normal",
  11448. height: math.unit(6 + 10 / 12, "feet"),
  11449. default: true
  11450. },
  11451. {
  11452. name: "Big",
  11453. height: math.unit(12, "meters")
  11454. },
  11455. {
  11456. name: "Macro",
  11457. height: math.unit(500, "meters")
  11458. },
  11459. {
  11460. name: "Megamacro",
  11461. height: math.unit(2, "km")
  11462. },
  11463. ]
  11464. ))
  11465. characterMakers.push(() => makeCharacter(
  11466. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11467. {
  11468. front: {
  11469. height: math.unit(185, "cm"),
  11470. weight: math.unit(68, "kg"),
  11471. name: "Front",
  11472. image: {
  11473. source: "./media/characters/kauko/front.svg",
  11474. extra: 1455 / 1421,
  11475. bottom: 0.03
  11476. }
  11477. },
  11478. back: {
  11479. height: math.unit(185, "cm"),
  11480. weight: math.unit(68, "kg"),
  11481. name: "Back",
  11482. image: {
  11483. source: "./media/characters/kauko/back.svg",
  11484. extra: 1455 / 1421,
  11485. bottom: 0.004
  11486. }
  11487. },
  11488. },
  11489. [
  11490. {
  11491. name: "Normal",
  11492. height: math.unit(185, "cm"),
  11493. default: true
  11494. },
  11495. ]
  11496. ))
  11497. characterMakers.push(() => makeCharacter(
  11498. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11499. {
  11500. front: {
  11501. height: math.unit(6, "feet"),
  11502. weight: math.unit(150, "kg"),
  11503. name: "Front",
  11504. image: {
  11505. source: "./media/characters/varg/front.svg",
  11506. extra: 1108 / 1018,
  11507. bottom: 0.0375
  11508. }
  11509. },
  11510. },
  11511. [
  11512. {
  11513. name: "Normal",
  11514. height: math.unit(5, "meters")
  11515. },
  11516. {
  11517. name: "Macro",
  11518. height: math.unit(200, "meters")
  11519. },
  11520. {
  11521. name: "Megamacro",
  11522. height: math.unit(20, "kilometers")
  11523. },
  11524. {
  11525. name: "True Size",
  11526. height: math.unit(211, "km"),
  11527. default: true
  11528. },
  11529. {
  11530. name: "Gigamacro",
  11531. height: math.unit(1000, "km")
  11532. },
  11533. {
  11534. name: "Gigamacro+",
  11535. height: math.unit(8000, "km")
  11536. },
  11537. {
  11538. name: "Teramacro",
  11539. height: math.unit(1000000, "km")
  11540. },
  11541. ]
  11542. ))
  11543. characterMakers.push(() => makeCharacter(
  11544. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11545. {
  11546. front: {
  11547. height: math.unit(7 + 7 / 12, "feet"),
  11548. weight: math.unit(267, "lb"),
  11549. name: "Front",
  11550. image: {
  11551. source: "./media/characters/dayza/front.svg",
  11552. extra: 1262 / 1200,
  11553. bottom: 0.035
  11554. }
  11555. },
  11556. side: {
  11557. height: math.unit(7 + 7 / 12, "feet"),
  11558. weight: math.unit(267, "lb"),
  11559. name: "Side",
  11560. image: {
  11561. source: "./media/characters/dayza/side.svg",
  11562. extra: 1295 / 1245,
  11563. bottom: 0.05
  11564. }
  11565. },
  11566. back: {
  11567. height: math.unit(7 + 7 / 12, "feet"),
  11568. weight: math.unit(267, "lb"),
  11569. name: "Back",
  11570. image: {
  11571. source: "./media/characters/dayza/back.svg",
  11572. extra: 1241 / 1170
  11573. }
  11574. },
  11575. },
  11576. [
  11577. {
  11578. name: "Normal",
  11579. height: math.unit(7 + 7 / 12, "feet"),
  11580. default: true
  11581. },
  11582. {
  11583. name: "Macro",
  11584. height: math.unit(155, "feet")
  11585. },
  11586. ]
  11587. ))
  11588. characterMakers.push(() => makeCharacter(
  11589. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11590. {
  11591. front: {
  11592. height: math.unit(6 + 5 / 12, "feet"),
  11593. weight: math.unit(160, "lb"),
  11594. name: "Front",
  11595. image: {
  11596. source: "./media/characters/xanthos/front.svg",
  11597. extra: 1,
  11598. bottom: 0.04
  11599. }
  11600. },
  11601. back: {
  11602. height: math.unit(6 + 5 / 12, "feet"),
  11603. weight: math.unit(160, "lb"),
  11604. name: "Back",
  11605. image: {
  11606. source: "./media/characters/xanthos/back.svg",
  11607. extra: 1,
  11608. bottom: 0.03
  11609. }
  11610. },
  11611. hand: {
  11612. height: math.unit(0.928, "feet"),
  11613. name: "Hand",
  11614. image: {
  11615. source: "./media/characters/xanthos/hand.svg"
  11616. }
  11617. },
  11618. foot: {
  11619. height: math.unit(1.286, "feet"),
  11620. name: "Foot",
  11621. image: {
  11622. source: "./media/characters/xanthos/foot.svg"
  11623. }
  11624. },
  11625. },
  11626. [
  11627. {
  11628. name: "Normal",
  11629. height: math.unit(6 + 5 / 12, "feet"),
  11630. default: true
  11631. },
  11632. {
  11633. name: "Normal+",
  11634. height: math.unit(6, "meters")
  11635. },
  11636. {
  11637. name: "Macro",
  11638. height: math.unit(40, "feet")
  11639. },
  11640. {
  11641. name: "Macro+",
  11642. height: math.unit(200, "meters")
  11643. },
  11644. {
  11645. name: "Megamacro",
  11646. height: math.unit(20, "km")
  11647. },
  11648. {
  11649. name: "Megamacro+",
  11650. height: math.unit(100, "km")
  11651. },
  11652. ]
  11653. ))
  11654. characterMakers.push(() => makeCharacter(
  11655. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11656. {
  11657. front: {
  11658. height: math.unit(6 + 3 / 12, "feet"),
  11659. weight: math.unit(215, "lb"),
  11660. name: "Front",
  11661. image: {
  11662. source: "./media/characters/grynn/front.svg",
  11663. extra: 4627 / 4209,
  11664. bottom: 0.047
  11665. }
  11666. },
  11667. },
  11668. [
  11669. {
  11670. name: "Micro",
  11671. height: math.unit(6, "inches")
  11672. },
  11673. {
  11674. name: "Normal",
  11675. height: math.unit(6 + 3 / 12, "feet"),
  11676. default: true
  11677. },
  11678. {
  11679. name: "Big",
  11680. height: math.unit(104, "feet")
  11681. },
  11682. {
  11683. name: "Macro",
  11684. height: math.unit(944, "feet")
  11685. },
  11686. {
  11687. name: "Macro+",
  11688. height: math.unit(9480, "feet")
  11689. },
  11690. {
  11691. name: "Megamacro",
  11692. height: math.unit(78752, "feet")
  11693. },
  11694. {
  11695. name: "Megamacro+",
  11696. height: math.unit(630128, "feet")
  11697. },
  11698. {
  11699. name: "Megamacro++",
  11700. height: math.unit(3150695, "feet")
  11701. },
  11702. ]
  11703. ))
  11704. characterMakers.push(() => makeCharacter(
  11705. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  11706. {
  11707. front: {
  11708. height: math.unit(7 + 5 / 12, "feet"),
  11709. weight: math.unit(450, "lb"),
  11710. name: "Front",
  11711. image: {
  11712. source: "./media/characters/mocha-aura/front.svg",
  11713. extra: 1907 / 1817,
  11714. bottom: 0.04
  11715. }
  11716. },
  11717. back: {
  11718. height: math.unit(7 + 5 / 12, "feet"),
  11719. weight: math.unit(450, "lb"),
  11720. name: "Back",
  11721. image: {
  11722. source: "./media/characters/mocha-aura/back.svg",
  11723. extra: 1900 / 1825,
  11724. bottom: 0.045
  11725. }
  11726. },
  11727. },
  11728. [
  11729. {
  11730. name: "Nano",
  11731. height: math.unit(1, "nm")
  11732. },
  11733. {
  11734. name: "Megamicro",
  11735. height: math.unit(1, "mm")
  11736. },
  11737. {
  11738. name: "Micro",
  11739. height: math.unit(3, "inches")
  11740. },
  11741. {
  11742. name: "Normal",
  11743. height: math.unit(7 + 5 / 12, "feet"),
  11744. default: true
  11745. },
  11746. {
  11747. name: "Macro",
  11748. height: math.unit(30, "feet")
  11749. },
  11750. {
  11751. name: "Megamacro",
  11752. height: math.unit(3500, "feet")
  11753. },
  11754. {
  11755. name: "Teramacro",
  11756. height: math.unit(500000, "miles")
  11757. },
  11758. {
  11759. name: "Petamacro",
  11760. height: math.unit(50000000000000000, "parsecs")
  11761. },
  11762. ]
  11763. ))
  11764. characterMakers.push(() => makeCharacter(
  11765. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  11766. {
  11767. front: {
  11768. height: math.unit(6, "feet"),
  11769. weight: math.unit(150, "lb"),
  11770. name: "Front",
  11771. image: {
  11772. source: "./media/characters/ilisha-devya/front.svg",
  11773. extra: 1,
  11774. bottom: 0.175
  11775. }
  11776. },
  11777. back: {
  11778. height: math.unit(6, "feet"),
  11779. weight: math.unit(150, "lb"),
  11780. name: "Back",
  11781. image: {
  11782. source: "./media/characters/ilisha-devya/back.svg",
  11783. extra: 1,
  11784. bottom: 0.015
  11785. }
  11786. },
  11787. },
  11788. [
  11789. {
  11790. name: "Macro",
  11791. height: math.unit(500, "feet"),
  11792. default: true
  11793. },
  11794. {
  11795. name: "Megamacro",
  11796. height: math.unit(10, "miles")
  11797. },
  11798. {
  11799. name: "Gigamacro",
  11800. height: math.unit(100000, "miles")
  11801. },
  11802. {
  11803. name: "Examacro",
  11804. height: math.unit(1e9, "lightyears")
  11805. },
  11806. {
  11807. name: "Omniversal",
  11808. height: math.unit(1e33, "lightyears")
  11809. },
  11810. {
  11811. name: "Beyond Infinite",
  11812. height: math.unit(1e100, "lightyears")
  11813. },
  11814. ]
  11815. ))
  11816. characterMakers.push(() => makeCharacter(
  11817. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  11818. {
  11819. Side: {
  11820. height: math.unit(6, "feet"),
  11821. weight: math.unit(150, "lb"),
  11822. name: "Side",
  11823. image: {
  11824. source: "./media/characters/mira/side.svg",
  11825. extra: 900 / 799,
  11826. bottom: 0.02
  11827. }
  11828. },
  11829. },
  11830. [
  11831. {
  11832. name: "Human Size",
  11833. height: math.unit(6, "feet")
  11834. },
  11835. {
  11836. name: "Macro",
  11837. height: math.unit(100, "feet"),
  11838. default: true
  11839. },
  11840. {
  11841. name: "Megamacro",
  11842. height: math.unit(10, "miles")
  11843. },
  11844. {
  11845. name: "Gigamacro",
  11846. height: math.unit(25000, "miles")
  11847. },
  11848. {
  11849. name: "Teramacro",
  11850. height: math.unit(300, "AU")
  11851. },
  11852. {
  11853. name: "Full Size",
  11854. height: math.unit(4.5e10, "lightyears")
  11855. },
  11856. ]
  11857. ))
  11858. characterMakers.push(() => makeCharacter(
  11859. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  11860. {
  11861. front: {
  11862. height: math.unit(6, "feet"),
  11863. weight: math.unit(150, "lb"),
  11864. name: "Front",
  11865. image: {
  11866. source: "./media/characters/holly/front.svg",
  11867. extra: 639 / 606
  11868. }
  11869. },
  11870. back: {
  11871. height: math.unit(6, "feet"),
  11872. weight: math.unit(150, "lb"),
  11873. name: "Back",
  11874. image: {
  11875. source: "./media/characters/holly/back.svg",
  11876. extra: 623 / 598
  11877. }
  11878. },
  11879. frontWorking: {
  11880. height: math.unit(6, "feet"),
  11881. weight: math.unit(150, "lb"),
  11882. name: "Front (Working)",
  11883. image: {
  11884. source: "./media/characters/holly/front-working.svg",
  11885. extra: 607 / 577,
  11886. bottom: 0.048
  11887. }
  11888. },
  11889. },
  11890. [
  11891. {
  11892. name: "Normal",
  11893. height: math.unit(12 + 3 / 12, "feet"),
  11894. default: true
  11895. },
  11896. ]
  11897. ))
  11898. characterMakers.push(() => makeCharacter(
  11899. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  11900. {
  11901. front: {
  11902. height: math.unit(6, "feet"),
  11903. weight: math.unit(150, "lb"),
  11904. name: "Front",
  11905. image: {
  11906. source: "./media/characters/porter/front.svg",
  11907. extra: 1,
  11908. bottom: 0.01
  11909. }
  11910. },
  11911. frontRobes: {
  11912. height: math.unit(6, "feet"),
  11913. weight: math.unit(150, "lb"),
  11914. name: "Front (Robes)",
  11915. image: {
  11916. source: "./media/characters/porter/front-robes.svg",
  11917. extra: 1.01,
  11918. bottom: 0.01
  11919. }
  11920. },
  11921. },
  11922. [
  11923. {
  11924. name: "Normal",
  11925. height: math.unit(11 + 9 / 12, "feet"),
  11926. default: true
  11927. },
  11928. ]
  11929. ))
  11930. characterMakers.push(() => makeCharacter(
  11931. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  11932. {
  11933. legendary: {
  11934. height: math.unit(6, "feet"),
  11935. weight: math.unit(150, "lb"),
  11936. name: "Legendary",
  11937. image: {
  11938. source: "./media/characters/lucy/legendary.svg",
  11939. extra: 1355 / 1100,
  11940. bottom: 0.045
  11941. }
  11942. },
  11943. },
  11944. [
  11945. {
  11946. name: "Legendary",
  11947. height: math.unit(86882 * 2, "miles"),
  11948. default: true
  11949. },
  11950. ]
  11951. ))
  11952. characterMakers.push(() => makeCharacter(
  11953. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  11954. {
  11955. front: {
  11956. height: math.unit(6, "feet"),
  11957. weight: math.unit(150, "lb"),
  11958. name: "Front",
  11959. image: {
  11960. source: "./media/characters/drusilla/front.svg",
  11961. extra: 678 / 635,
  11962. bottom: 0.03
  11963. }
  11964. },
  11965. back: {
  11966. height: math.unit(6, "feet"),
  11967. weight: math.unit(150, "lb"),
  11968. name: "Back",
  11969. image: {
  11970. source: "./media/characters/drusilla/back.svg",
  11971. extra: 678 / 635,
  11972. bottom: 0.005
  11973. }
  11974. },
  11975. },
  11976. [
  11977. {
  11978. name: "Macro",
  11979. height: math.unit(100, "feet")
  11980. },
  11981. {
  11982. name: "Canon Height",
  11983. height: math.unit(2000, "feet"),
  11984. default: true
  11985. },
  11986. ]
  11987. ))
  11988. characterMakers.push(() => makeCharacter(
  11989. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  11990. {
  11991. front: {
  11992. height: math.unit(6, "feet"),
  11993. weight: math.unit(180, "lb"),
  11994. name: "Front",
  11995. image: {
  11996. source: "./media/characters/renard-thatch/front.svg",
  11997. extra: 2411 / 2275,
  11998. bottom: 0.01
  11999. }
  12000. },
  12001. frontPosing: {
  12002. height: math.unit(6, "feet"),
  12003. weight: math.unit(180, "lb"),
  12004. name: "Front (Posing)",
  12005. image: {
  12006. source: "./media/characters/renard-thatch/front-posing.svg",
  12007. extra: 2381 / 2261,
  12008. bottom: 0.01
  12009. }
  12010. },
  12011. back: {
  12012. height: math.unit(6, "feet"),
  12013. weight: math.unit(180, "lb"),
  12014. name: "Back",
  12015. image: {
  12016. source: "./media/characters/renard-thatch/back.svg",
  12017. extra: 2428 / 2288
  12018. }
  12019. },
  12020. },
  12021. [
  12022. {
  12023. name: "Micro",
  12024. height: math.unit(3, "inches")
  12025. },
  12026. {
  12027. name: "Default",
  12028. height: math.unit(6, "feet"),
  12029. default: true
  12030. },
  12031. {
  12032. name: "Macro",
  12033. height: math.unit(75, "feet")
  12034. },
  12035. ]
  12036. ))
  12037. characterMakers.push(() => makeCharacter(
  12038. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12039. {
  12040. front: {
  12041. height: math.unit(1450, "feet"),
  12042. weight: math.unit(1.21e6, "tons"),
  12043. name: "Front",
  12044. image: {
  12045. source: "./media/characters/sekvra/front.svg",
  12046. extra: 1,
  12047. bottom: 0.03
  12048. }
  12049. },
  12050. frontClothed: {
  12051. height: math.unit(1450, "feet"),
  12052. weight: math.unit(1.21e6, "tons"),
  12053. name: "Front (Clothed)",
  12054. image: {
  12055. source: "./media/characters/sekvra/front-clothed.svg",
  12056. extra: 1,
  12057. bottom: 0.03
  12058. }
  12059. },
  12060. side: {
  12061. height: math.unit(1450, "feet"),
  12062. weight: math.unit(1.21e6, "tons"),
  12063. name: "Side",
  12064. image: {
  12065. source: "./media/characters/sekvra/side.svg",
  12066. extra: 1,
  12067. bottom: 0.025
  12068. }
  12069. },
  12070. back: {
  12071. height: math.unit(1450, "feet"),
  12072. weight: math.unit(1.21e6, "tons"),
  12073. name: "Back",
  12074. image: {
  12075. source: "./media/characters/sekvra/back.svg",
  12076. extra: 1,
  12077. bottom: 0.005
  12078. }
  12079. },
  12080. },
  12081. [
  12082. {
  12083. name: "Macro",
  12084. height: math.unit(1450, "feet"),
  12085. default: true
  12086. },
  12087. {
  12088. name: "Megamacro",
  12089. height: math.unit(15000, "feet")
  12090. },
  12091. ]
  12092. ))
  12093. characterMakers.push(() => makeCharacter(
  12094. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12095. {
  12096. front: {
  12097. height: math.unit(6, "feet"),
  12098. weight: math.unit(150, "lb"),
  12099. name: "Front",
  12100. image: {
  12101. source: "./media/characters/carmine/front.svg",
  12102. extra: 1,
  12103. bottom: 0.035
  12104. }
  12105. },
  12106. frontArmor: {
  12107. height: math.unit(6, "feet"),
  12108. weight: math.unit(150, "lb"),
  12109. name: "Front (Armor)",
  12110. image: {
  12111. source: "./media/characters/carmine/front-armor.svg",
  12112. extra: 1,
  12113. bottom: 0.035
  12114. }
  12115. },
  12116. },
  12117. [
  12118. {
  12119. name: "Large",
  12120. height: math.unit(1, "mile")
  12121. },
  12122. {
  12123. name: "Huge",
  12124. height: math.unit(40, "miles"),
  12125. default: true
  12126. },
  12127. {
  12128. name: "Colossal",
  12129. height: math.unit(2500, "miles")
  12130. },
  12131. ]
  12132. ))
  12133. characterMakers.push(() => makeCharacter(
  12134. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12135. {
  12136. front: {
  12137. height: math.unit(6, "feet"),
  12138. weight: math.unit(150, "lb"),
  12139. name: "Front",
  12140. image: {
  12141. source: "./media/characters/elyssia/front.svg",
  12142. extra: 2201 / 2035,
  12143. bottom: 0.05
  12144. }
  12145. },
  12146. frontClothed: {
  12147. height: math.unit(6, "feet"),
  12148. weight: math.unit(150, "lb"),
  12149. name: "Front (Clothed)",
  12150. image: {
  12151. source: "./media/characters/elyssia/front-clothed.svg",
  12152. extra: 2201 / 2035,
  12153. bottom: 0.05
  12154. }
  12155. },
  12156. back: {
  12157. height: math.unit(6, "feet"),
  12158. weight: math.unit(150, "lb"),
  12159. name: "Back",
  12160. image: {
  12161. source: "./media/characters/elyssia/back.svg",
  12162. extra: 2201 / 2035,
  12163. bottom: 0.013
  12164. }
  12165. },
  12166. },
  12167. [
  12168. {
  12169. name: "Smaller",
  12170. height: math.unit(150, "feet")
  12171. },
  12172. {
  12173. name: "Standard",
  12174. height: math.unit(1400, "feet"),
  12175. default: true
  12176. },
  12177. {
  12178. name: "Distracted",
  12179. height: math.unit(15000, "feet")
  12180. },
  12181. ]
  12182. ))
  12183. characterMakers.push(() => makeCharacter(
  12184. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12185. {
  12186. front: {
  12187. height: math.unit(7 + 4 / 12, "feet"),
  12188. weight: math.unit(500, "lb"),
  12189. name: "Front",
  12190. image: {
  12191. source: "./media/characters/geno-maxwell/front.svg",
  12192. extra: 2207 / 2040,
  12193. bottom: 0.015
  12194. }
  12195. },
  12196. },
  12197. [
  12198. {
  12199. name: "Micro",
  12200. height: math.unit(3, "inches")
  12201. },
  12202. {
  12203. name: "Normal",
  12204. height: math.unit(7 + 4 / 12, "feet"),
  12205. default: true
  12206. },
  12207. {
  12208. name: "Macro",
  12209. height: math.unit(220, "feet")
  12210. },
  12211. {
  12212. name: "Megamacro",
  12213. height: math.unit(11, "miles")
  12214. },
  12215. ]
  12216. ))
  12217. characterMakers.push(() => makeCharacter(
  12218. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12219. {
  12220. front: {
  12221. height: math.unit(7 + 4 / 12, "feet"),
  12222. weight: math.unit(500, "lb"),
  12223. name: "Front",
  12224. image: {
  12225. source: "./media/characters/regena-maxwell/front.svg",
  12226. extra: 3115 / 2770,
  12227. bottom: 0.02
  12228. }
  12229. },
  12230. },
  12231. [
  12232. {
  12233. name: "Normal",
  12234. height: math.unit(7 + 4 / 12, "feet"),
  12235. default: true
  12236. },
  12237. {
  12238. name: "Macro",
  12239. height: math.unit(220, "feet")
  12240. },
  12241. {
  12242. name: "Megamacro",
  12243. height: math.unit(11, "miles")
  12244. },
  12245. ]
  12246. ))
  12247. characterMakers.push(() => makeCharacter(
  12248. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12249. {
  12250. front: {
  12251. height: math.unit(6, "feet"),
  12252. weight: math.unit(150, "lb"),
  12253. name: "Front",
  12254. image: {
  12255. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12256. extra: 860 / 690,
  12257. bottom: 0.03
  12258. }
  12259. },
  12260. },
  12261. [
  12262. {
  12263. name: "Normal",
  12264. height: math.unit(1.7, "meters"),
  12265. default: true
  12266. },
  12267. ]
  12268. ))
  12269. characterMakers.push(() => makeCharacter(
  12270. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12271. {
  12272. front: {
  12273. height: math.unit(6, "feet"),
  12274. weight: math.unit(150, "lb"),
  12275. name: "Front",
  12276. image: {
  12277. source: "./media/characters/quilly/front.svg",
  12278. extra: 890 / 776
  12279. }
  12280. },
  12281. },
  12282. [
  12283. {
  12284. name: "Gigamacro",
  12285. height: math.unit(404090, "miles"),
  12286. default: true
  12287. },
  12288. ]
  12289. ))
  12290. characterMakers.push(() => makeCharacter(
  12291. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12292. {
  12293. front: {
  12294. height: math.unit(7 + 8 / 12, "feet"),
  12295. weight: math.unit(350, "lb"),
  12296. name: "Front",
  12297. image: {
  12298. source: "./media/characters/tempest/front.svg",
  12299. extra: 1175 / 1086,
  12300. bottom: 0.02
  12301. }
  12302. },
  12303. },
  12304. [
  12305. {
  12306. name: "Normal",
  12307. height: math.unit(7 + 8 / 12, "feet"),
  12308. default: true
  12309. },
  12310. ]
  12311. ))
  12312. characterMakers.push(() => makeCharacter(
  12313. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12314. {
  12315. side: {
  12316. height: math.unit(4 + 5 / 12, "feet"),
  12317. weight: math.unit(80, "lb"),
  12318. name: "Side",
  12319. image: {
  12320. source: "./media/characters/rodger/side.svg",
  12321. extra: 1235 / 1118
  12322. }
  12323. },
  12324. },
  12325. [
  12326. {
  12327. name: "Micro",
  12328. height: math.unit(1, "inch")
  12329. },
  12330. {
  12331. name: "Normal",
  12332. height: math.unit(4 + 5 / 12, "feet"),
  12333. default: true
  12334. },
  12335. {
  12336. name: "Macro",
  12337. height: math.unit(120, "feet")
  12338. },
  12339. ]
  12340. ))
  12341. characterMakers.push(() => makeCharacter(
  12342. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12343. {
  12344. front: {
  12345. height: math.unit(6, "feet"),
  12346. weight: math.unit(150, "lb"),
  12347. name: "Front",
  12348. image: {
  12349. source: "./media/characters/danyel/front.svg",
  12350. extra: 1185 / 1123,
  12351. bottom: 0.05
  12352. }
  12353. },
  12354. },
  12355. [
  12356. {
  12357. name: "Shrunken",
  12358. height: math.unit(0.5, "mm")
  12359. },
  12360. {
  12361. name: "Micro",
  12362. height: math.unit(1, "mm"),
  12363. default: true
  12364. },
  12365. {
  12366. name: "Upsized",
  12367. height: math.unit(5 + 5 / 12, "feet")
  12368. },
  12369. ]
  12370. ))
  12371. characterMakers.push(() => makeCharacter(
  12372. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12373. {
  12374. front: {
  12375. height: math.unit(5 + 6 / 12, "feet"),
  12376. weight: math.unit(200, "lb"),
  12377. name: "Front",
  12378. image: {
  12379. source: "./media/characters/vivian-bijoux/front.svg",
  12380. extra: 1,
  12381. bottom: 0.072
  12382. }
  12383. },
  12384. },
  12385. [
  12386. {
  12387. name: "Normal",
  12388. height: math.unit(5 + 6 / 12, "feet"),
  12389. default: true
  12390. },
  12391. {
  12392. name: "Bad Dream",
  12393. height: math.unit(500, "feet")
  12394. },
  12395. {
  12396. name: "Nightmare",
  12397. height: math.unit(500, "miles")
  12398. },
  12399. ]
  12400. ))
  12401. characterMakers.push(() => makeCharacter(
  12402. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12403. {
  12404. front: {
  12405. height: math.unit(6 + 1 / 12, "feet"),
  12406. weight: math.unit(260, "lb"),
  12407. name: "Front",
  12408. image: {
  12409. source: "./media/characters/zeta/front.svg",
  12410. extra: 1968 / 1889,
  12411. bottom: 0.06
  12412. }
  12413. },
  12414. back: {
  12415. height: math.unit(6 + 1 / 12, "feet"),
  12416. weight: math.unit(260, "lb"),
  12417. name: "Back",
  12418. image: {
  12419. source: "./media/characters/zeta/back.svg",
  12420. extra: 1944 / 1858,
  12421. bottom: 0.03
  12422. }
  12423. },
  12424. hand: {
  12425. height: math.unit(1.112, "feet"),
  12426. name: "Hand",
  12427. image: {
  12428. source: "./media/characters/zeta/hand.svg"
  12429. }
  12430. },
  12431. foot: {
  12432. height: math.unit(1.48, "feet"),
  12433. name: "Foot",
  12434. image: {
  12435. source: "./media/characters/zeta/foot.svg"
  12436. }
  12437. },
  12438. },
  12439. [
  12440. {
  12441. name: "Micro",
  12442. height: math.unit(6, "inches")
  12443. },
  12444. {
  12445. name: "Normal",
  12446. height: math.unit(6 + 1 / 12, "feet"),
  12447. default: true
  12448. },
  12449. {
  12450. name: "Macro",
  12451. height: math.unit(20, "feet")
  12452. },
  12453. ]
  12454. ))
  12455. characterMakers.push(() => makeCharacter(
  12456. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12457. {
  12458. front: {
  12459. height: math.unit(6, "feet"),
  12460. weight: math.unit(150, "lb"),
  12461. name: "Front",
  12462. image: {
  12463. source: "./media/characters/jamie-larsen/front.svg",
  12464. extra: 962 / 933,
  12465. bottom: 0.02
  12466. }
  12467. },
  12468. back: {
  12469. height: math.unit(6, "feet"),
  12470. weight: math.unit(150, "lb"),
  12471. name: "Back",
  12472. image: {
  12473. source: "./media/characters/jamie-larsen/back.svg",
  12474. extra: 997 / 946
  12475. }
  12476. },
  12477. },
  12478. [
  12479. {
  12480. name: "Macro",
  12481. height: math.unit(28 + 7 / 12, "feet"),
  12482. default: true
  12483. },
  12484. {
  12485. name: "Macro+",
  12486. height: math.unit(180, "feet")
  12487. },
  12488. {
  12489. name: "Megamacro",
  12490. height: math.unit(10, "miles")
  12491. },
  12492. {
  12493. name: "Gigamacro",
  12494. height: math.unit(200000, "miles")
  12495. },
  12496. ]
  12497. ))
  12498. characterMakers.push(() => makeCharacter(
  12499. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12500. {
  12501. front: {
  12502. height: math.unit(6, "feet"),
  12503. weight: math.unit(120, "lb"),
  12504. name: "Front",
  12505. image: {
  12506. source: "./media/characters/vance/front.svg",
  12507. extra: 1980 / 1890,
  12508. bottom: 0.09
  12509. }
  12510. },
  12511. back: {
  12512. height: math.unit(6, "feet"),
  12513. weight: math.unit(120, "lb"),
  12514. name: "Back",
  12515. image: {
  12516. source: "./media/characters/vance/back.svg",
  12517. extra: 2081 / 1994,
  12518. bottom: 0.014
  12519. }
  12520. },
  12521. hand: {
  12522. height: math.unit(0.88, "feet"),
  12523. name: "Hand",
  12524. image: {
  12525. source: "./media/characters/vance/hand.svg"
  12526. }
  12527. },
  12528. foot: {
  12529. height: math.unit(0.64, "feet"),
  12530. name: "Foot",
  12531. image: {
  12532. source: "./media/characters/vance/foot.svg"
  12533. }
  12534. },
  12535. },
  12536. [
  12537. {
  12538. name: "Small",
  12539. height: math.unit(90, "feet"),
  12540. default: true
  12541. },
  12542. {
  12543. name: "Macro",
  12544. height: math.unit(100, "meters")
  12545. },
  12546. {
  12547. name: "Megamacro",
  12548. height: math.unit(15, "miles")
  12549. },
  12550. ]
  12551. ))
  12552. characterMakers.push(() => makeCharacter(
  12553. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12554. {
  12555. front: {
  12556. height: math.unit(6, "feet"),
  12557. weight: math.unit(180, "lb"),
  12558. name: "Front",
  12559. image: {
  12560. source: "./media/characters/xochitl/front.svg",
  12561. extra: 2297 / 2261,
  12562. bottom: 0.065
  12563. }
  12564. },
  12565. back: {
  12566. height: math.unit(6, "feet"),
  12567. weight: math.unit(180, "lb"),
  12568. name: "Back",
  12569. image: {
  12570. source: "./media/characters/xochitl/back.svg",
  12571. extra: 2386 / 2354,
  12572. bottom: 0.01
  12573. }
  12574. },
  12575. foot: {
  12576. height: math.unit(6 / 5 * 1.15, "feet"),
  12577. weight: math.unit(150, "lb"),
  12578. name: "Foot",
  12579. image: {
  12580. source: "./media/characters/xochitl/foot.svg"
  12581. }
  12582. },
  12583. },
  12584. [
  12585. {
  12586. name: "Macro",
  12587. height: math.unit(80, "feet")
  12588. },
  12589. {
  12590. name: "Macro+",
  12591. height: math.unit(400, "feet"),
  12592. default: true
  12593. },
  12594. {
  12595. name: "Gigamacro",
  12596. height: math.unit(80000, "miles")
  12597. },
  12598. {
  12599. name: "Gigamacro+",
  12600. height: math.unit(400000, "miles")
  12601. },
  12602. {
  12603. name: "Teramacro",
  12604. height: math.unit(300, "AU")
  12605. },
  12606. ]
  12607. ))
  12608. characterMakers.push(() => makeCharacter(
  12609. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12610. {
  12611. front: {
  12612. height: math.unit(6, "feet"),
  12613. weight: math.unit(150, "lb"),
  12614. name: "Front",
  12615. image: {
  12616. source: "./media/characters/vincent/front.svg",
  12617. extra: 1130 / 1080,
  12618. bottom: 0.055
  12619. }
  12620. },
  12621. beak: {
  12622. height: math.unit(6 * 0.1, "feet"),
  12623. name: "Beak",
  12624. image: {
  12625. source: "./media/characters/vincent/beak.svg"
  12626. }
  12627. },
  12628. hand: {
  12629. height: math.unit(6 * 0.85, "feet"),
  12630. weight: math.unit(150, "lb"),
  12631. name: "Hand",
  12632. image: {
  12633. source: "./media/characters/vincent/hand.svg"
  12634. }
  12635. },
  12636. foot: {
  12637. height: math.unit(6 * 0.19, "feet"),
  12638. weight: math.unit(150, "lb"),
  12639. name: "Foot",
  12640. image: {
  12641. source: "./media/characters/vincent/foot.svg"
  12642. }
  12643. },
  12644. },
  12645. [
  12646. {
  12647. name: "Base",
  12648. height: math.unit(6 + 5 / 12, "feet"),
  12649. default: true
  12650. },
  12651. {
  12652. name: "Macro",
  12653. height: math.unit(300, "feet")
  12654. },
  12655. {
  12656. name: "Megamacro",
  12657. height: math.unit(2, "miles")
  12658. },
  12659. {
  12660. name: "Gigamacro",
  12661. height: math.unit(1000, "miles")
  12662. },
  12663. ]
  12664. ))
  12665. characterMakers.push(() => makeCharacter(
  12666. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  12667. {
  12668. front: {
  12669. height: math.unit(6 + 2 / 12, "feet"),
  12670. weight: math.unit(265, "lb"),
  12671. name: "Front",
  12672. image: {
  12673. source: "./media/characters/jay/front.svg",
  12674. extra: 1510 / 1430,
  12675. bottom: 0.042
  12676. }
  12677. },
  12678. back: {
  12679. height: math.unit(6 + 2 / 12, "feet"),
  12680. weight: math.unit(265, "lb"),
  12681. name: "Back",
  12682. image: {
  12683. source: "./media/characters/jay/back.svg",
  12684. extra: 1510 / 1430,
  12685. bottom: 0.025
  12686. }
  12687. },
  12688. clothed: {
  12689. height: math.unit(6 + 2 / 12, "feet"),
  12690. weight: math.unit(265, "lb"),
  12691. name: "Front (Clothed)",
  12692. image: {
  12693. source: "./media/characters/jay/clothed.svg",
  12694. extra: 744 / 699,
  12695. bottom: 0.043
  12696. }
  12697. },
  12698. head: {
  12699. height: math.unit(1.772, "feet"),
  12700. name: "Head",
  12701. image: {
  12702. source: "./media/characters/jay/head.svg"
  12703. }
  12704. },
  12705. sizeRay: {
  12706. height: math.unit(1.331, "feet"),
  12707. name: "Size Ray",
  12708. image: {
  12709. source: "./media/characters/jay/size-ray.svg"
  12710. }
  12711. },
  12712. },
  12713. [
  12714. {
  12715. name: "Micro",
  12716. height: math.unit(1, "inch")
  12717. },
  12718. {
  12719. name: "Normal",
  12720. height: math.unit(6 + 2 / 12, "feet"),
  12721. default: true
  12722. },
  12723. {
  12724. name: "Macro",
  12725. height: math.unit(1, "mile")
  12726. },
  12727. {
  12728. name: "Megamacro",
  12729. height: math.unit(100, "miles")
  12730. },
  12731. ]
  12732. ))
  12733. characterMakers.push(() => makeCharacter(
  12734. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  12735. {
  12736. front: {
  12737. height: math.unit(2, "meters"),
  12738. weight: math.unit(500, "kg"),
  12739. name: "Front",
  12740. image: {
  12741. source: "./media/characters/coatl/front.svg",
  12742. extra: 3948 / 3500,
  12743. bottom: 0.082
  12744. }
  12745. },
  12746. },
  12747. [
  12748. {
  12749. name: "Normal",
  12750. height: math.unit(4, "meters")
  12751. },
  12752. {
  12753. name: "Macro",
  12754. height: math.unit(100, "meters"),
  12755. default: true
  12756. },
  12757. {
  12758. name: "Macro+",
  12759. height: math.unit(300, "meters")
  12760. },
  12761. {
  12762. name: "Megamacro",
  12763. height: math.unit(3, "gigameters")
  12764. },
  12765. {
  12766. name: "Megamacro+",
  12767. height: math.unit(300, "terameters")
  12768. },
  12769. {
  12770. name: "Megamacro++",
  12771. height: math.unit(3, "lightyears")
  12772. },
  12773. ]
  12774. ))
  12775. characterMakers.push(() => makeCharacter(
  12776. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  12777. {
  12778. front: {
  12779. height: math.unit(6, "feet"),
  12780. weight: math.unit(50, "kg"),
  12781. name: "front",
  12782. image: {
  12783. source: "./media/characters/shiroryu/front.svg",
  12784. extra: 1990 / 1935
  12785. }
  12786. },
  12787. },
  12788. [
  12789. {
  12790. name: "Mortal Mingling",
  12791. height: math.unit(3, "meters")
  12792. },
  12793. {
  12794. name: "Kaiju-ish",
  12795. height: math.unit(250, "meters")
  12796. },
  12797. {
  12798. name: "Somewhat Godly",
  12799. height: math.unit(400, "km"),
  12800. default: true
  12801. },
  12802. {
  12803. name: "Planetary",
  12804. height: math.unit(300, "megameters")
  12805. },
  12806. {
  12807. name: "Galaxy-dwarfing",
  12808. height: math.unit(450, "kiloparsecs")
  12809. },
  12810. {
  12811. name: "Universe Eater",
  12812. height: math.unit(150, "gigaparsecs")
  12813. },
  12814. {
  12815. name: "Almost Immeasurable",
  12816. height: math.unit(1.3e266, "yottaparsecs")
  12817. },
  12818. ]
  12819. ))
  12820. characterMakers.push(() => makeCharacter(
  12821. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  12822. {
  12823. front: {
  12824. height: math.unit(6, "feet"),
  12825. weight: math.unit(150, "lb"),
  12826. name: "Front",
  12827. image: {
  12828. source: "./media/characters/umeko/front.svg",
  12829. extra: 1,
  12830. bottom: 0.019
  12831. }
  12832. },
  12833. frontArmored: {
  12834. height: math.unit(6, "feet"),
  12835. weight: math.unit(150, "lb"),
  12836. name: "Front (Armored)",
  12837. image: {
  12838. source: "./media/characters/umeko/front-armored.svg",
  12839. extra: 1,
  12840. bottom: 0.021
  12841. }
  12842. },
  12843. },
  12844. [
  12845. {
  12846. name: "Macro",
  12847. height: math.unit(220, "feet"),
  12848. default: true
  12849. },
  12850. {
  12851. name: "Guardian Dragon",
  12852. height: math.unit(50, "miles")
  12853. },
  12854. {
  12855. name: "Cosmic",
  12856. height: math.unit(800000, "miles")
  12857. },
  12858. ]
  12859. ))
  12860. characterMakers.push(() => makeCharacter(
  12861. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  12862. {
  12863. front: {
  12864. height: math.unit(6, "feet"),
  12865. weight: math.unit(150, "lb"),
  12866. name: "Front",
  12867. image: {
  12868. source: "./media/characters/cassidy/front.svg",
  12869. extra: 1,
  12870. bottom: 0.043
  12871. }
  12872. },
  12873. },
  12874. [
  12875. {
  12876. name: "Canon Height",
  12877. height: math.unit(120, "feet"),
  12878. default: true
  12879. },
  12880. {
  12881. name: "Macro+",
  12882. height: math.unit(400, "feet")
  12883. },
  12884. {
  12885. name: "Macro++",
  12886. height: math.unit(4000, "feet")
  12887. },
  12888. {
  12889. name: "Megamacro",
  12890. height: math.unit(3, "miles")
  12891. },
  12892. ]
  12893. ))
  12894. characterMakers.push(() => makeCharacter(
  12895. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  12896. {
  12897. front: {
  12898. height: math.unit(6, "feet"),
  12899. weight: math.unit(150, "lb"),
  12900. name: "Front",
  12901. image: {
  12902. source: "./media/characters/isaac/front.svg",
  12903. extra: 896 / 815,
  12904. bottom: 0.11
  12905. }
  12906. },
  12907. },
  12908. [
  12909. {
  12910. name: "Human Size",
  12911. height: math.unit(8, "feet"),
  12912. default: true
  12913. },
  12914. {
  12915. name: "Macro",
  12916. height: math.unit(400, "feet")
  12917. },
  12918. {
  12919. name: "Megamacro",
  12920. height: math.unit(50, "miles")
  12921. },
  12922. {
  12923. name: "Canon Height",
  12924. height: math.unit(200, "AU")
  12925. },
  12926. ]
  12927. ))
  12928. characterMakers.push(() => makeCharacter(
  12929. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  12930. {
  12931. front: {
  12932. height: math.unit(6, "feet"),
  12933. weight: math.unit(72, "kg"),
  12934. name: "Front",
  12935. image: {
  12936. source: "./media/characters/sleekit/front.svg",
  12937. extra: 4693 / 4487,
  12938. bottom: 0.012
  12939. }
  12940. },
  12941. },
  12942. [
  12943. {
  12944. name: "Minimum Height",
  12945. height: math.unit(10, "meters")
  12946. },
  12947. {
  12948. name: "Smaller",
  12949. height: math.unit(25, "meters")
  12950. },
  12951. {
  12952. name: "Larger",
  12953. height: math.unit(38, "meters"),
  12954. default: true
  12955. },
  12956. {
  12957. name: "Maximum height",
  12958. height: math.unit(100, "meters")
  12959. },
  12960. ]
  12961. ))
  12962. characterMakers.push(() => makeCharacter(
  12963. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  12964. {
  12965. front: {
  12966. height: math.unit(6, "feet"),
  12967. weight: math.unit(150, "lb"),
  12968. name: "Front",
  12969. image: {
  12970. source: "./media/characters/nillia/front.svg",
  12971. extra: 2195 / 2037,
  12972. bottom: 0.005
  12973. }
  12974. },
  12975. back: {
  12976. height: math.unit(6, "feet"),
  12977. weight: math.unit(150, "lb"),
  12978. name: "Back",
  12979. image: {
  12980. source: "./media/characters/nillia/back.svg",
  12981. extra: 2195 / 2037,
  12982. bottom: 0.005
  12983. }
  12984. },
  12985. },
  12986. [
  12987. {
  12988. name: "Canon Height",
  12989. height: math.unit(489, "feet"),
  12990. default: true
  12991. }
  12992. ]
  12993. ))
  12994. characterMakers.push(() => makeCharacter(
  12995. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  12996. {
  12997. front: {
  12998. height: math.unit(6, "feet"),
  12999. weight: math.unit(150, "lb"),
  13000. name: "Front",
  13001. image: {
  13002. source: "./media/characters/mesmyriza/front.svg",
  13003. extra: 2067 / 1784,
  13004. bottom: 0.035
  13005. }
  13006. },
  13007. foot: {
  13008. height: math.unit(6 / (250 / 35), "feet"),
  13009. name: "Foot",
  13010. image: {
  13011. source: "./media/characters/mesmyriza/foot.svg"
  13012. }
  13013. },
  13014. },
  13015. [
  13016. {
  13017. name: "Macro",
  13018. height: math.unit(457, "meters"),
  13019. default: true
  13020. },
  13021. {
  13022. name: "Megamacro",
  13023. height: math.unit(8, "megameters")
  13024. },
  13025. ]
  13026. ))
  13027. characterMakers.push(() => makeCharacter(
  13028. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13029. {
  13030. front: {
  13031. height: math.unit(6, "feet"),
  13032. weight: math.unit(250, "lb"),
  13033. name: "Front",
  13034. image: {
  13035. source: "./media/characters/saudade/front.svg",
  13036. extra: 1172 / 1139,
  13037. bottom: 0.035
  13038. }
  13039. },
  13040. },
  13041. [
  13042. {
  13043. name: "Micro",
  13044. height: math.unit(3, "inches")
  13045. },
  13046. {
  13047. name: "Normal",
  13048. height: math.unit(6, "feet"),
  13049. default: true
  13050. },
  13051. {
  13052. name: "Macro",
  13053. height: math.unit(50, "feet")
  13054. },
  13055. {
  13056. name: "Megamacro",
  13057. height: math.unit(2800, "feet")
  13058. },
  13059. ]
  13060. ))
  13061. characterMakers.push(() => makeCharacter(
  13062. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13063. {
  13064. front: {
  13065. height: math.unit(5 + 4 / 12, "feet"),
  13066. weight: math.unit(100, "lb"),
  13067. name: "Front",
  13068. image: {
  13069. source: "./media/characters/keireer/front.svg",
  13070. extra: 716 / 666,
  13071. bottom: 0.05
  13072. }
  13073. },
  13074. },
  13075. [
  13076. {
  13077. name: "Normal",
  13078. height: math.unit(5 + 4 / 12, "feet"),
  13079. default: true
  13080. },
  13081. ]
  13082. ))
  13083. characterMakers.push(() => makeCharacter(
  13084. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13085. {
  13086. front: {
  13087. height: math.unit(6, "feet"),
  13088. weight: math.unit(90, "kg"),
  13089. name: "Front",
  13090. image: {
  13091. source: "./media/characters/mirja/front.svg",
  13092. extra: 1789 / 1683,
  13093. bottom: 0.05
  13094. }
  13095. },
  13096. frontDressed: {
  13097. height: math.unit(6, "feet"),
  13098. weight: math.unit(90, "lb"),
  13099. name: "Front (Dressed)",
  13100. image: {
  13101. source: "./media/characters/mirja/front-dressed.svg",
  13102. extra: 1789 / 1683,
  13103. bottom: 0.05
  13104. }
  13105. },
  13106. back: {
  13107. height: math.unit(6, "feet"),
  13108. weight: math.unit(90, "lb"),
  13109. name: "Back",
  13110. image: {
  13111. source: "./media/characters/mirja/back.svg",
  13112. extra: 953 / 917,
  13113. bottom: 0.017
  13114. }
  13115. },
  13116. },
  13117. [
  13118. {
  13119. name: "\"Incognito\"",
  13120. height: math.unit(3, "meters")
  13121. },
  13122. {
  13123. name: "Strolling Size",
  13124. height: math.unit(15, "km")
  13125. },
  13126. {
  13127. name: "Larger Strolling Size",
  13128. height: math.unit(400, "km")
  13129. },
  13130. {
  13131. name: "Preferred Size",
  13132. height: math.unit(5000, "km")
  13133. },
  13134. {
  13135. name: "True Size",
  13136. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13137. default: true
  13138. },
  13139. ]
  13140. ))
  13141. characterMakers.push(() => makeCharacter(
  13142. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13143. {
  13144. front: {
  13145. height: math.unit(15, "feet"),
  13146. weight: math.unit(880, "kg"),
  13147. name: "Front",
  13148. image: {
  13149. source: "./media/characters/nightraver/front.svg",
  13150. extra: 2444 / 2160,
  13151. bottom: 0.027
  13152. }
  13153. },
  13154. back: {
  13155. height: math.unit(15, "feet"),
  13156. weight: math.unit(880, "kg"),
  13157. name: "Back",
  13158. image: {
  13159. source: "./media/characters/nightraver/back.svg",
  13160. extra: 2309 / 2180,
  13161. bottom: 0.005
  13162. }
  13163. },
  13164. sole: {
  13165. height: math.unit(2.878, "feet"),
  13166. name: "Sole",
  13167. image: {
  13168. source: "./media/characters/nightraver/sole.svg"
  13169. }
  13170. },
  13171. foot: {
  13172. height: math.unit(2.285, "feet"),
  13173. name: "Foot",
  13174. image: {
  13175. source: "./media/characters/nightraver/foot.svg"
  13176. }
  13177. },
  13178. maw: {
  13179. height: math.unit(2.67, "feet"),
  13180. name: "Maw",
  13181. image: {
  13182. source: "./media/characters/nightraver/maw.svg"
  13183. }
  13184. },
  13185. },
  13186. [
  13187. {
  13188. name: "Micro",
  13189. height: math.unit(1, "cm")
  13190. },
  13191. {
  13192. name: "Normal",
  13193. height: math.unit(15, "feet"),
  13194. default: true
  13195. },
  13196. {
  13197. name: "Macro",
  13198. height: math.unit(300, "feet")
  13199. },
  13200. {
  13201. name: "Megamacro",
  13202. height: math.unit(300, "miles")
  13203. },
  13204. {
  13205. name: "Gigamacro",
  13206. height: math.unit(10000, "miles")
  13207. },
  13208. ]
  13209. ))
  13210. characterMakers.push(() => makeCharacter(
  13211. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13212. {
  13213. side: {
  13214. height: math.unit(2, "inches"),
  13215. weight: math.unit(5, "grams"),
  13216. name: "Side",
  13217. image: {
  13218. source: "./media/characters/arc/side.svg"
  13219. }
  13220. },
  13221. },
  13222. [
  13223. {
  13224. name: "Micro",
  13225. height: math.unit(2, "inches"),
  13226. default: true
  13227. },
  13228. ]
  13229. ))
  13230. characterMakers.push(() => makeCharacter(
  13231. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13232. {
  13233. front: {
  13234. height: math.unit(1.1938, "meters"),
  13235. weight: math.unit(54, "kg"),
  13236. name: "Front",
  13237. image: {
  13238. source: "./media/characters/nebula-shahar/front.svg",
  13239. extra: 1642 / 1436,
  13240. bottom: 0.06
  13241. }
  13242. },
  13243. },
  13244. [
  13245. {
  13246. name: "Megamicro",
  13247. height: math.unit(0.3, "mm")
  13248. },
  13249. {
  13250. name: "Micro",
  13251. height: math.unit(3, "cm")
  13252. },
  13253. {
  13254. name: "Normal",
  13255. height: math.unit(138, "cm"),
  13256. default: true
  13257. },
  13258. {
  13259. name: "Macro",
  13260. height: math.unit(30, "m")
  13261. },
  13262. ]
  13263. ))
  13264. characterMakers.push(() => makeCharacter(
  13265. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13266. {
  13267. front: {
  13268. height: math.unit(5.24, "feet"),
  13269. weight: math.unit(150, "lb"),
  13270. name: "Front",
  13271. image: {
  13272. source: "./media/characters/shayla/front.svg",
  13273. extra: 1512 / 1414,
  13274. bottom: 0.01
  13275. }
  13276. },
  13277. back: {
  13278. height: math.unit(5.24, "feet"),
  13279. weight: math.unit(150, "lb"),
  13280. name: "Back",
  13281. image: {
  13282. source: "./media/characters/shayla/back.svg",
  13283. extra: 1512 / 1414
  13284. }
  13285. },
  13286. hand: {
  13287. height: math.unit(0.7781496062992126, "feet"),
  13288. name: "Hand",
  13289. image: {
  13290. source: "./media/characters/shayla/hand.svg"
  13291. }
  13292. },
  13293. foot: {
  13294. height: math.unit(1.4206036745406823, "feet"),
  13295. name: "Foot",
  13296. image: {
  13297. source: "./media/characters/shayla/foot.svg"
  13298. }
  13299. },
  13300. },
  13301. [
  13302. {
  13303. name: "Micro",
  13304. height: math.unit(0.32, "feet")
  13305. },
  13306. {
  13307. name: "Normal",
  13308. height: math.unit(5.24, "feet"),
  13309. default: true
  13310. },
  13311. {
  13312. name: "Macro",
  13313. height: math.unit(492.12, "feet")
  13314. },
  13315. {
  13316. name: "Megamacro",
  13317. height: math.unit(186.41, "miles")
  13318. },
  13319. ]
  13320. ))
  13321. characterMakers.push(() => makeCharacter(
  13322. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13323. {
  13324. front: {
  13325. height: math.unit(2.2, "m"),
  13326. weight: math.unit(120, "kg"),
  13327. name: "Front",
  13328. image: {
  13329. source: "./media/characters/pia-jr/front.svg",
  13330. extra: 1000 / 970,
  13331. bottom: 0.035
  13332. }
  13333. },
  13334. hand: {
  13335. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13336. name: "Hand",
  13337. image: {
  13338. source: "./media/characters/pia-jr/hand.svg"
  13339. }
  13340. },
  13341. paw: {
  13342. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13343. name: "Paw",
  13344. image: {
  13345. source: "./media/characters/pia-jr/paw.svg"
  13346. }
  13347. },
  13348. },
  13349. [
  13350. {
  13351. name: "Micro",
  13352. height: math.unit(1.2, "cm")
  13353. },
  13354. {
  13355. name: "Normal",
  13356. height: math.unit(2.2, "m"),
  13357. default: true
  13358. },
  13359. {
  13360. name: "Macro",
  13361. height: math.unit(180, "m")
  13362. },
  13363. {
  13364. name: "Megamacro",
  13365. height: math.unit(420, "km")
  13366. },
  13367. ]
  13368. ))
  13369. characterMakers.push(() => makeCharacter(
  13370. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13371. {
  13372. front: {
  13373. height: math.unit(2, "m"),
  13374. weight: math.unit(115, "kg"),
  13375. name: "Front",
  13376. image: {
  13377. source: "./media/characters/pia-sr/front.svg",
  13378. extra: 760 / 730,
  13379. bottom: 0.015
  13380. }
  13381. },
  13382. back: {
  13383. height: math.unit(2, "m"),
  13384. weight: math.unit(115, "kg"),
  13385. name: "Back",
  13386. image: {
  13387. source: "./media/characters/pia-sr/back.svg",
  13388. extra: 760 / 730,
  13389. bottom: 0.01
  13390. }
  13391. },
  13392. hand: {
  13393. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13394. name: "Hand",
  13395. image: {
  13396. source: "./media/characters/pia-sr/hand.svg"
  13397. }
  13398. },
  13399. foot: {
  13400. height: math.unit(1.83, "feet"),
  13401. name: "Foot",
  13402. image: {
  13403. source: "./media/characters/pia-sr/foot.svg"
  13404. }
  13405. },
  13406. },
  13407. [
  13408. {
  13409. name: "Micro",
  13410. height: math.unit(88, "mm")
  13411. },
  13412. {
  13413. name: "Normal",
  13414. height: math.unit(2, "m"),
  13415. default: true
  13416. },
  13417. {
  13418. name: "Macro",
  13419. height: math.unit(200, "m")
  13420. },
  13421. {
  13422. name: "Megamacro",
  13423. height: math.unit(420, "km")
  13424. },
  13425. ]
  13426. ))
  13427. characterMakers.push(() => makeCharacter(
  13428. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13429. {
  13430. front: {
  13431. height: math.unit(8 + 2 / 12, "feet"),
  13432. weight: math.unit(300, "lb"),
  13433. name: "Front",
  13434. image: {
  13435. source: "./media/characters/kibibyte/front.svg",
  13436. extra: 2221 / 2098,
  13437. bottom: 0.04
  13438. }
  13439. },
  13440. },
  13441. [
  13442. {
  13443. name: "Normal",
  13444. height: math.unit(8 + 2 / 12, "feet"),
  13445. default: true
  13446. },
  13447. {
  13448. name: "Socialable Macro",
  13449. height: math.unit(50, "feet")
  13450. },
  13451. {
  13452. name: "Macro",
  13453. height: math.unit(300, "feet")
  13454. },
  13455. {
  13456. name: "Megamacro",
  13457. height: math.unit(500, "miles")
  13458. },
  13459. ]
  13460. ))
  13461. characterMakers.push(() => makeCharacter(
  13462. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13463. {
  13464. front: {
  13465. height: math.unit(6, "feet"),
  13466. weight: math.unit(150, "lb"),
  13467. name: "Front",
  13468. image: {
  13469. source: "./media/characters/felix/front.svg",
  13470. extra: 762 / 722,
  13471. bottom: 0.02
  13472. }
  13473. },
  13474. frontClothed: {
  13475. height: math.unit(6, "feet"),
  13476. weight: math.unit(150, "lb"),
  13477. name: "Front (Clothed)",
  13478. image: {
  13479. source: "./media/characters/felix/front-clothed.svg",
  13480. extra: 762 / 722,
  13481. bottom: 0.02
  13482. }
  13483. },
  13484. },
  13485. [
  13486. {
  13487. name: "Normal",
  13488. height: math.unit(6 + 8 / 12, "feet"),
  13489. default: true
  13490. },
  13491. {
  13492. name: "Macro",
  13493. height: math.unit(2600, "feet")
  13494. },
  13495. {
  13496. name: "Megamacro",
  13497. height: math.unit(450, "miles")
  13498. },
  13499. ]
  13500. ))
  13501. characterMakers.push(() => makeCharacter(
  13502. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13503. {
  13504. front: {
  13505. height: math.unit(6 + 1 / 12, "feet"),
  13506. weight: math.unit(250, "lb"),
  13507. name: "Front",
  13508. image: {
  13509. source: "./media/characters/tobo/front.svg",
  13510. extra: 608 / 586,
  13511. bottom: 0.023
  13512. }
  13513. },
  13514. back: {
  13515. height: math.unit(6 + 1 / 12, "feet"),
  13516. weight: math.unit(250, "lb"),
  13517. name: "Back",
  13518. image: {
  13519. source: "./media/characters/tobo/back.svg",
  13520. extra: 608 / 586
  13521. }
  13522. },
  13523. },
  13524. [
  13525. {
  13526. name: "Nano",
  13527. height: math.unit(2, "nm")
  13528. },
  13529. {
  13530. name: "Megamicro",
  13531. height: math.unit(0.1, "mm")
  13532. },
  13533. {
  13534. name: "Micro",
  13535. height: math.unit(1, "inch"),
  13536. default: true
  13537. },
  13538. {
  13539. name: "Human-sized",
  13540. height: math.unit(6 + 1 / 12, "feet")
  13541. },
  13542. {
  13543. name: "Macro",
  13544. height: math.unit(250, "feet")
  13545. },
  13546. {
  13547. name: "Megamacro",
  13548. height: math.unit(75, "miles")
  13549. },
  13550. {
  13551. name: "Texas-sized",
  13552. height: math.unit(750, "miles")
  13553. },
  13554. {
  13555. name: "Teramacro",
  13556. height: math.unit(50000, "miles")
  13557. },
  13558. ]
  13559. ))
  13560. characterMakers.push(() => makeCharacter(
  13561. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13562. {
  13563. front: {
  13564. height: math.unit(6, "feet"),
  13565. weight: math.unit(269, "lb"),
  13566. name: "Front",
  13567. image: {
  13568. source: "./media/characters/danny-kapowsky/front.svg",
  13569. extra: 766 / 736,
  13570. bottom: 0.044
  13571. }
  13572. },
  13573. back: {
  13574. height: math.unit(6, "feet"),
  13575. weight: math.unit(269, "lb"),
  13576. name: "Back",
  13577. image: {
  13578. source: "./media/characters/danny-kapowsky/back.svg",
  13579. extra: 797 / 760,
  13580. bottom: 0.025
  13581. }
  13582. },
  13583. },
  13584. [
  13585. {
  13586. name: "Macro",
  13587. height: math.unit(150, "feet"),
  13588. default: true
  13589. },
  13590. {
  13591. name: "Macro+",
  13592. height: math.unit(200, "feet")
  13593. },
  13594. {
  13595. name: "Macro++",
  13596. height: math.unit(300, "feet")
  13597. },
  13598. {
  13599. name: "Macro+++",
  13600. height: math.unit(400, "feet")
  13601. },
  13602. ]
  13603. ))
  13604. characterMakers.push(() => makeCharacter(
  13605. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13606. {
  13607. side: {
  13608. height: math.unit(6, "feet"),
  13609. weight: math.unit(170, "lb"),
  13610. name: "Side",
  13611. image: {
  13612. source: "./media/characters/finn/side.svg",
  13613. extra: 1953 / 1807,
  13614. bottom: 0.057
  13615. }
  13616. },
  13617. },
  13618. [
  13619. {
  13620. name: "Megamacro",
  13621. height: math.unit(14445, "feet"),
  13622. default: true
  13623. },
  13624. ]
  13625. ))
  13626. characterMakers.push(() => makeCharacter(
  13627. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13628. {
  13629. front: {
  13630. height: math.unit(5 + 6 / 12, "feet"),
  13631. weight: math.unit(125, "lb"),
  13632. name: "Front",
  13633. image: {
  13634. source: "./media/characters/roy/front.svg",
  13635. extra: 1,
  13636. bottom: 0.11
  13637. }
  13638. },
  13639. },
  13640. [
  13641. {
  13642. name: "Micro",
  13643. height: math.unit(3, "inches"),
  13644. default: true
  13645. },
  13646. {
  13647. name: "Normal",
  13648. height: math.unit(5 + 6 / 12, "feet")
  13649. },
  13650. {
  13651. name: "Lesser Macro",
  13652. height: math.unit(60, "feet")
  13653. },
  13654. {
  13655. name: "Greater Macro",
  13656. height: math.unit(120, "feet")
  13657. },
  13658. ]
  13659. ))
  13660. characterMakers.push(() => makeCharacter(
  13661. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  13662. {
  13663. front: {
  13664. height: math.unit(6, "feet"),
  13665. weight: math.unit(100, "lb"),
  13666. name: "Front",
  13667. image: {
  13668. source: "./media/characters/aevsivs/front.svg",
  13669. extra: 1,
  13670. bottom: 0.03
  13671. }
  13672. },
  13673. back: {
  13674. height: math.unit(6, "feet"),
  13675. weight: math.unit(100, "lb"),
  13676. name: "Back",
  13677. image: {
  13678. source: "./media/characters/aevsivs/back.svg"
  13679. }
  13680. },
  13681. },
  13682. [
  13683. {
  13684. name: "Micro",
  13685. height: math.unit(2, "inches"),
  13686. default: true
  13687. },
  13688. {
  13689. name: "Normal",
  13690. height: math.unit(5, "feet")
  13691. },
  13692. ]
  13693. ))
  13694. characterMakers.push(() => makeCharacter(
  13695. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  13696. {
  13697. front: {
  13698. height: math.unit(5 + 7 / 12, "feet"),
  13699. weight: math.unit(159, "lb"),
  13700. name: "Front",
  13701. image: {
  13702. source: "./media/characters/hildegard/front.svg",
  13703. extra: 312 / 286,
  13704. bottom: 0.005
  13705. }
  13706. },
  13707. },
  13708. [
  13709. {
  13710. name: "Normal",
  13711. height: math.unit(5 + 7 / 12, "feet"),
  13712. default: true
  13713. },
  13714. ]
  13715. ))
  13716. characterMakers.push(() => makeCharacter(
  13717. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  13718. {
  13719. bernard: {
  13720. height: math.unit(2 + 7 / 12, "feet"),
  13721. weight: math.unit(66, "lb"),
  13722. name: "Bernard",
  13723. rename: true,
  13724. image: {
  13725. source: "./media/characters/bernard-wilder/bernard.svg",
  13726. extra: 192 / 128,
  13727. bottom: 0.05
  13728. }
  13729. },
  13730. wilder: {
  13731. height: math.unit(5 + 8 / 12, "feet"),
  13732. weight: math.unit(143, "lb"),
  13733. name: "Wilder",
  13734. rename: true,
  13735. image: {
  13736. source: "./media/characters/bernard-wilder/wilder.svg",
  13737. extra: 361 / 312,
  13738. bottom: 0.02
  13739. }
  13740. },
  13741. },
  13742. [
  13743. {
  13744. name: "Normal",
  13745. height: math.unit(2 + 7 / 12, "feet"),
  13746. default: true
  13747. },
  13748. ]
  13749. ))
  13750. characterMakers.push(() => makeCharacter(
  13751. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  13752. {
  13753. anthro: {
  13754. height: math.unit(6 + 1 / 12, "feet"),
  13755. weight: math.unit(155, "lb"),
  13756. name: "Anthro",
  13757. image: {
  13758. source: "./media/characters/hearth/anthro.svg",
  13759. extra: 260 / 250,
  13760. bottom: 0.02
  13761. }
  13762. },
  13763. feral: {
  13764. height: math.unit(3.78, "feet"),
  13765. weight: math.unit(35, "kg"),
  13766. name: "Feral",
  13767. image: {
  13768. source: "./media/characters/hearth/feral.svg",
  13769. extra: 153 / 135,
  13770. bottom: 0.03
  13771. }
  13772. },
  13773. },
  13774. [
  13775. {
  13776. name: "Normal",
  13777. height: math.unit(6 + 1 / 12, "feet"),
  13778. default: true
  13779. },
  13780. ]
  13781. ))
  13782. characterMakers.push(() => makeCharacter(
  13783. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  13784. {
  13785. front: {
  13786. height: math.unit(6, "feet"),
  13787. weight: math.unit(182, "lb"),
  13788. name: "Front",
  13789. image: {
  13790. source: "./media/characters/ingrid/front.svg",
  13791. extra: 294 / 268,
  13792. bottom: 0.027
  13793. }
  13794. },
  13795. },
  13796. [
  13797. {
  13798. name: "Normal",
  13799. height: math.unit(6, "feet"),
  13800. default: true
  13801. },
  13802. ]
  13803. ))
  13804. characterMakers.push(() => makeCharacter(
  13805. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  13806. {
  13807. eevee: {
  13808. height: math.unit(2 + 10 / 12, "feet"),
  13809. weight: math.unit(86, "lb"),
  13810. name: "Malgam",
  13811. image: {
  13812. source: "./media/characters/malgam/eevee.svg",
  13813. extra: 218 / 180,
  13814. bottom: 0.2
  13815. }
  13816. },
  13817. sylveon: {
  13818. height: math.unit(4, "feet"),
  13819. weight: math.unit(101, "lb"),
  13820. name: "Future Malgam",
  13821. rename: true,
  13822. image: {
  13823. source: "./media/characters/malgam/sylveon.svg",
  13824. extra: 371 / 325,
  13825. bottom: 0.015
  13826. }
  13827. },
  13828. gigantamax: {
  13829. height: math.unit(50, "feet"),
  13830. name: "Gigantamax Malgam",
  13831. rename: true,
  13832. image: {
  13833. source: "./media/characters/malgam/gigantamax.svg"
  13834. }
  13835. },
  13836. },
  13837. [
  13838. {
  13839. name: "Normal",
  13840. height: math.unit(2 + 10 / 12, "feet"),
  13841. default: true
  13842. },
  13843. ]
  13844. ))
  13845. characterMakers.push(() => makeCharacter(
  13846. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  13847. {
  13848. front: {
  13849. height: math.unit(5 + 11 / 12, "feet"),
  13850. weight: math.unit(188, "lb"),
  13851. name: "Front",
  13852. image: {
  13853. source: "./media/characters/fleur/front.svg",
  13854. extra: 309 / 283,
  13855. bottom: 0.007
  13856. }
  13857. },
  13858. },
  13859. [
  13860. {
  13861. name: "Normal",
  13862. height: math.unit(5 + 11 / 12, "feet"),
  13863. default: true
  13864. },
  13865. ]
  13866. ))
  13867. characterMakers.push(() => makeCharacter(
  13868. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  13869. {
  13870. front: {
  13871. height: math.unit(5 + 4 / 12, "feet"),
  13872. weight: math.unit(122, "lb"),
  13873. name: "Front",
  13874. image: {
  13875. source: "./media/characters/jude/front.svg",
  13876. extra: 288 / 273,
  13877. bottom: 0.03
  13878. }
  13879. },
  13880. },
  13881. [
  13882. {
  13883. name: "Normal",
  13884. height: math.unit(5 + 4 / 12, "feet"),
  13885. default: true
  13886. },
  13887. ]
  13888. ))
  13889. characterMakers.push(() => makeCharacter(
  13890. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  13891. {
  13892. front: {
  13893. height: math.unit(5 + 11 / 12, "feet"),
  13894. weight: math.unit(190, "lb"),
  13895. name: "Front",
  13896. image: {
  13897. source: "./media/characters/seara/front.svg",
  13898. extra: 1,
  13899. bottom: 0.05
  13900. }
  13901. },
  13902. },
  13903. [
  13904. {
  13905. name: "Normal",
  13906. height: math.unit(5 + 11 / 12, "feet"),
  13907. default: true
  13908. },
  13909. ]
  13910. ))
  13911. characterMakers.push(() => makeCharacter(
  13912. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  13913. {
  13914. front: {
  13915. height: math.unit(16 + 5 / 12, "feet"),
  13916. weight: math.unit(524, "lb"),
  13917. name: "Front",
  13918. image: {
  13919. source: "./media/characters/caspian/front.svg",
  13920. extra: 1,
  13921. bottom: 0.04
  13922. }
  13923. },
  13924. },
  13925. [
  13926. {
  13927. name: "Normal",
  13928. height: math.unit(16 + 5 / 12, "feet"),
  13929. default: true
  13930. },
  13931. ]
  13932. ))
  13933. characterMakers.push(() => makeCharacter(
  13934. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  13935. {
  13936. front: {
  13937. height: math.unit(5 + 7 / 12, "feet"),
  13938. weight: math.unit(170, "lb"),
  13939. name: "Front",
  13940. image: {
  13941. source: "./media/characters/mika/front.svg",
  13942. extra: 1,
  13943. bottom: 0.016
  13944. }
  13945. },
  13946. },
  13947. [
  13948. {
  13949. name: "Normal",
  13950. height: math.unit(5 + 7 / 12, "feet"),
  13951. default: true
  13952. },
  13953. ]
  13954. ))
  13955. characterMakers.push(() => makeCharacter(
  13956. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  13957. {
  13958. front: {
  13959. height: math.unit(6 + 2 / 12, "feet"),
  13960. weight: math.unit(268, "lb"),
  13961. name: "Front",
  13962. image: {
  13963. source: "./media/characters/sol/front.svg",
  13964. extra: 247 / 231,
  13965. bottom: 0.05
  13966. }
  13967. },
  13968. },
  13969. [
  13970. {
  13971. name: "Normal",
  13972. height: math.unit(6 + 2 / 12, "feet"),
  13973. default: true
  13974. },
  13975. ]
  13976. ))
  13977. characterMakers.push(() => makeCharacter(
  13978. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  13979. {
  13980. buizel: {
  13981. height: math.unit(2 + 5 / 12, "feet"),
  13982. weight: math.unit(87, "lb"),
  13983. name: "Buizel",
  13984. image: {
  13985. source: "./media/characters/umiko/buizel.svg",
  13986. extra: 172 / 157,
  13987. bottom: 0.01
  13988. }
  13989. },
  13990. floatzel: {
  13991. height: math.unit(5 + 9 / 12, "feet"),
  13992. weight: math.unit(250, "lb"),
  13993. name: "Floatzel",
  13994. image: {
  13995. source: "./media/characters/umiko/floatzel.svg",
  13996. extra: 262 / 248
  13997. }
  13998. },
  13999. },
  14000. [
  14001. {
  14002. name: "Normal",
  14003. height: math.unit(2 + 5 / 12, "feet"),
  14004. default: true
  14005. },
  14006. ]
  14007. ))
  14008. characterMakers.push(() => makeCharacter(
  14009. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14010. {
  14011. front: {
  14012. height: math.unit(6 + 2 / 12, "feet"),
  14013. weight: math.unit(146, "lb"),
  14014. name: "Front",
  14015. image: {
  14016. source: "./media/characters/iliac/front.svg",
  14017. extra: 389 / 365,
  14018. bottom: 0.035
  14019. }
  14020. },
  14021. },
  14022. [
  14023. {
  14024. name: "Normal",
  14025. height: math.unit(6 + 2 / 12, "feet"),
  14026. default: true
  14027. },
  14028. ]
  14029. ))
  14030. characterMakers.push(() => makeCharacter(
  14031. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14032. {
  14033. front: {
  14034. height: math.unit(6, "feet"),
  14035. weight: math.unit(170, "lb"),
  14036. name: "Front",
  14037. image: {
  14038. source: "./media/characters/topaz/front.svg",
  14039. extra: 317 / 303,
  14040. bottom: 0.055
  14041. }
  14042. },
  14043. },
  14044. [
  14045. {
  14046. name: "Normal",
  14047. height: math.unit(6, "feet"),
  14048. default: true
  14049. },
  14050. ]
  14051. ))
  14052. characterMakers.push(() => makeCharacter(
  14053. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14054. {
  14055. front: {
  14056. height: math.unit(5 + 11 / 12, "feet"),
  14057. weight: math.unit(144, "lb"),
  14058. name: "Front",
  14059. image: {
  14060. source: "./media/characters/gabriel/front.svg",
  14061. extra: 285 / 262,
  14062. bottom: 0.004
  14063. }
  14064. },
  14065. },
  14066. [
  14067. {
  14068. name: "Normal",
  14069. height: math.unit(5 + 11 / 12, "feet"),
  14070. default: true
  14071. },
  14072. ]
  14073. ))
  14074. characterMakers.push(() => makeCharacter(
  14075. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14076. {
  14077. side: {
  14078. height: math.unit(6 + 5 / 12, "feet"),
  14079. weight: math.unit(300, "lb"),
  14080. name: "Side",
  14081. image: {
  14082. source: "./media/characters/tempest-suicune/side.svg",
  14083. extra: 195 / 154,
  14084. bottom: 0.04
  14085. }
  14086. },
  14087. },
  14088. [
  14089. {
  14090. name: "Normal",
  14091. height: math.unit(6 + 5 / 12, "feet"),
  14092. default: true
  14093. },
  14094. ]
  14095. ))
  14096. characterMakers.push(() => makeCharacter(
  14097. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14098. {
  14099. front: {
  14100. height: math.unit(7 + 2 / 12, "feet"),
  14101. weight: math.unit(322, "lb"),
  14102. name: "Front",
  14103. image: {
  14104. source: "./media/characters/vulcan/front.svg",
  14105. extra: 154 / 147,
  14106. bottom: 0.04
  14107. }
  14108. },
  14109. },
  14110. [
  14111. {
  14112. name: "Normal",
  14113. height: math.unit(7 + 2 / 12, "feet"),
  14114. default: true
  14115. },
  14116. ]
  14117. ))
  14118. characterMakers.push(() => makeCharacter(
  14119. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14120. {
  14121. front: {
  14122. height: math.unit(5 + 10 / 12, "feet"),
  14123. weight: math.unit(264, "lb"),
  14124. name: "Front",
  14125. image: {
  14126. source: "./media/characters/gault/front.svg",
  14127. extra: 161 / 140,
  14128. bottom: 0.028
  14129. }
  14130. },
  14131. },
  14132. [
  14133. {
  14134. name: "Normal",
  14135. height: math.unit(5 + 10 / 12, "feet"),
  14136. default: true
  14137. },
  14138. ]
  14139. ))
  14140. characterMakers.push(() => makeCharacter(
  14141. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14142. {
  14143. front: {
  14144. height: math.unit(6, "feet"),
  14145. weight: math.unit(150, "lb"),
  14146. name: "Front",
  14147. image: {
  14148. source: "./media/characters/shard/front.svg",
  14149. extra: 273 / 238,
  14150. bottom: 0.02
  14151. }
  14152. },
  14153. },
  14154. [
  14155. {
  14156. name: "Normal",
  14157. height: math.unit(3 + 6 / 12, "feet"),
  14158. default: true
  14159. },
  14160. ]
  14161. ))
  14162. characterMakers.push(() => makeCharacter(
  14163. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14164. {
  14165. front: {
  14166. height: math.unit(5 + 11 / 12, "feet"),
  14167. weight: math.unit(146, "lb"),
  14168. name: "Front",
  14169. image: {
  14170. source: "./media/characters/ashe/front.svg",
  14171. extra: 400 / 373,
  14172. bottom: 0.01
  14173. }
  14174. },
  14175. },
  14176. [
  14177. {
  14178. name: "Normal",
  14179. height: math.unit(5 + 11 / 12, "feet"),
  14180. default: true
  14181. },
  14182. ]
  14183. ))
  14184. characterMakers.push(() => makeCharacter(
  14185. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14186. {
  14187. front: {
  14188. height: math.unit(5 + 5 / 12, "feet"),
  14189. weight: math.unit(135, "lb"),
  14190. name: "Front",
  14191. image: {
  14192. source: "./media/characters/beatrix/front.svg",
  14193. extra: 392 / 379,
  14194. bottom: 0.01
  14195. }
  14196. },
  14197. },
  14198. [
  14199. {
  14200. name: "Normal",
  14201. height: math.unit(6, "feet"),
  14202. default: true
  14203. },
  14204. ]
  14205. ))
  14206. characterMakers.push(() => makeCharacter(
  14207. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14208. {
  14209. front: {
  14210. height: math.unit(6, "feet"),
  14211. weight: math.unit(150, "lb"),
  14212. name: "Front",
  14213. image: {
  14214. source: "./media/characters/ignatius/front.svg",
  14215. extra: 245 / 222,
  14216. bottom: 0.01
  14217. }
  14218. },
  14219. },
  14220. [
  14221. {
  14222. name: "Normal",
  14223. height: math.unit(5 + 5 / 12, "feet"),
  14224. default: true
  14225. },
  14226. ]
  14227. ))
  14228. characterMakers.push(() => makeCharacter(
  14229. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14230. {
  14231. front: {
  14232. height: math.unit(6 + 2 / 12, "feet"),
  14233. weight: math.unit(138, "lb"),
  14234. name: "Front",
  14235. image: {
  14236. source: "./media/characters/mei-li/front.svg",
  14237. extra: 237 / 229,
  14238. bottom: 0.03
  14239. }
  14240. },
  14241. },
  14242. [
  14243. {
  14244. name: "Normal",
  14245. height: math.unit(6 + 2 / 12, "feet"),
  14246. default: true
  14247. },
  14248. ]
  14249. ))
  14250. characterMakers.push(() => makeCharacter(
  14251. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14252. {
  14253. front: {
  14254. height: math.unit(2 + 4 / 12, "feet"),
  14255. weight: math.unit(62, "lb"),
  14256. name: "Front",
  14257. image: {
  14258. source: "./media/characters/puru/front.svg",
  14259. extra: 206 / 149,
  14260. bottom: 0.06
  14261. }
  14262. },
  14263. },
  14264. [
  14265. {
  14266. name: "Normal",
  14267. height: math.unit(2 + 4 / 12, "feet"),
  14268. default: true
  14269. },
  14270. ]
  14271. ))
  14272. characterMakers.push(() => makeCharacter(
  14273. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14274. {
  14275. taur: {
  14276. height: math.unit(11, "feet"),
  14277. weight: math.unit(500, "lb"),
  14278. name: "Taur",
  14279. image: {
  14280. source: "./media/characters/kee/taur.svg",
  14281. extra: 1,
  14282. bottom: 0.04
  14283. }
  14284. },
  14285. },
  14286. [
  14287. {
  14288. name: "Normal",
  14289. height: math.unit(11, "feet"),
  14290. default: true
  14291. },
  14292. ]
  14293. ))
  14294. characterMakers.push(() => makeCharacter(
  14295. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14296. {
  14297. anthro: {
  14298. height: math.unit(7, "feet"),
  14299. weight: math.unit(190, "lb"),
  14300. name: "Anthro",
  14301. image: {
  14302. source: "./media/characters/cobalt-dracha/anthro.svg",
  14303. extra: 231 / 225,
  14304. bottom: 0.04
  14305. }
  14306. },
  14307. feral: {
  14308. height: math.unit(9 + 7 / 12, "feet"),
  14309. weight: math.unit(294, "lb"),
  14310. name: "Feral",
  14311. image: {
  14312. source: "./media/characters/cobalt-dracha/feral.svg",
  14313. extra: 692 / 633,
  14314. bottom: 0.05
  14315. }
  14316. },
  14317. },
  14318. [
  14319. {
  14320. name: "Normal",
  14321. height: math.unit(7, "feet"),
  14322. default: true
  14323. },
  14324. ]
  14325. ))
  14326. characterMakers.push(() => makeCharacter(
  14327. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14328. {
  14329. fallen: {
  14330. height: math.unit(11 + 8 / 12, "feet"),
  14331. weight: math.unit(485, "lb"),
  14332. name: "Java (Fallen)",
  14333. rename: true,
  14334. image: {
  14335. source: "./media/characters/java/fallen.svg",
  14336. extra: 226 / 208,
  14337. bottom: 0.005
  14338. }
  14339. },
  14340. godkin: {
  14341. height: math.unit(10 + 6 / 12, "feet"),
  14342. weight: math.unit(328, "lb"),
  14343. name: "Java (Godkin)",
  14344. rename: true,
  14345. image: {
  14346. source: "./media/characters/java/godkin.svg",
  14347. extra: 270 / 262,
  14348. bottom: 0.02
  14349. }
  14350. },
  14351. },
  14352. [
  14353. {
  14354. name: "Normal",
  14355. height: math.unit(11 + 8 / 12, "feet"),
  14356. default: true
  14357. },
  14358. ]
  14359. ))
  14360. characterMakers.push(() => makeCharacter(
  14361. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14362. {
  14363. front: {
  14364. height: math.unit(7 + 8 / 12, "feet"),
  14365. weight: math.unit(320, "lb"),
  14366. name: "Front",
  14367. image: {
  14368. source: "./media/characters/skoll/front.svg",
  14369. extra: 232 / 220,
  14370. bottom: 0.02
  14371. }
  14372. },
  14373. },
  14374. [
  14375. {
  14376. name: "Normal",
  14377. height: math.unit(7 + 8 / 12, "feet"),
  14378. default: true
  14379. },
  14380. ]
  14381. ))
  14382. characterMakers.push(() => makeCharacter(
  14383. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14384. {
  14385. front: {
  14386. height: math.unit(5 + 9 / 12, "feet"),
  14387. weight: math.unit(170, "lb"),
  14388. name: "Front",
  14389. image: {
  14390. source: "./media/characters/purna/front.svg",
  14391. extra: 239 / 229,
  14392. bottom: 0.01
  14393. }
  14394. },
  14395. },
  14396. [
  14397. {
  14398. name: "Normal",
  14399. height: math.unit(5 + 9 / 12, "feet"),
  14400. default: true
  14401. },
  14402. ]
  14403. ))
  14404. characterMakers.push(() => makeCharacter(
  14405. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14406. {
  14407. front: {
  14408. height: math.unit(5 + 9 / 12, "feet"),
  14409. weight: math.unit(142, "lb"),
  14410. name: "Front",
  14411. image: {
  14412. source: "./media/characters/kuva/front.svg",
  14413. extra: 281 / 271,
  14414. bottom: 0.006
  14415. }
  14416. },
  14417. },
  14418. [
  14419. {
  14420. name: "Normal",
  14421. height: math.unit(5 + 9 / 12, "feet"),
  14422. default: true
  14423. },
  14424. ]
  14425. ))
  14426. characterMakers.push(() => makeCharacter(
  14427. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14428. {
  14429. anthro: {
  14430. height: math.unit(9 + 2 / 12, "feet"),
  14431. weight: math.unit(270, "lb"),
  14432. name: "Anthro",
  14433. image: {
  14434. source: "./media/characters/embra/anthro.svg",
  14435. extra: 200 / 187,
  14436. bottom: 0.02
  14437. }
  14438. },
  14439. feral: {
  14440. height: math.unit(18 + 8 / 12, "feet"),
  14441. weight: math.unit(576, "lb"),
  14442. name: "Feral",
  14443. image: {
  14444. source: "./media/characters/embra/feral.svg",
  14445. extra: 152 / 137,
  14446. bottom: 0.037
  14447. }
  14448. },
  14449. },
  14450. [
  14451. {
  14452. name: "Normal",
  14453. height: math.unit(9 + 2 / 12, "feet"),
  14454. default: true
  14455. },
  14456. ]
  14457. ))
  14458. characterMakers.push(() => makeCharacter(
  14459. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14460. {
  14461. anthro: {
  14462. height: math.unit(10 + 9 / 12, "feet"),
  14463. weight: math.unit(224, "lb"),
  14464. name: "Anthro",
  14465. image: {
  14466. source: "./media/characters/grottos/anthro.svg",
  14467. extra: 350 / 332,
  14468. bottom: 0.045
  14469. }
  14470. },
  14471. feral: {
  14472. height: math.unit(20 + 7 / 12, "feet"),
  14473. weight: math.unit(629, "lb"),
  14474. name: "Feral",
  14475. image: {
  14476. source: "./media/characters/grottos/feral.svg",
  14477. extra: 207 / 190,
  14478. bottom: 0.05
  14479. }
  14480. },
  14481. },
  14482. [
  14483. {
  14484. name: "Normal",
  14485. height: math.unit(10 + 9 / 12, "feet"),
  14486. default: true
  14487. },
  14488. ]
  14489. ))
  14490. characterMakers.push(() => makeCharacter(
  14491. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14492. {
  14493. anthro: {
  14494. height: math.unit(9 + 6 / 12, "feet"),
  14495. weight: math.unit(298, "lb"),
  14496. name: "Anthro",
  14497. image: {
  14498. source: "./media/characters/frifna/anthro.svg",
  14499. extra: 282 / 269,
  14500. bottom: 0.015
  14501. }
  14502. },
  14503. feral: {
  14504. height: math.unit(16 + 2 / 12, "feet"),
  14505. weight: math.unit(624, "lb"),
  14506. name: "Feral",
  14507. image: {
  14508. source: "./media/characters/frifna/feral.svg"
  14509. }
  14510. },
  14511. },
  14512. [
  14513. {
  14514. name: "Normal",
  14515. height: math.unit(9 + 6 / 12, "feet"),
  14516. default: true
  14517. },
  14518. ]
  14519. ))
  14520. characterMakers.push(() => makeCharacter(
  14521. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14522. {
  14523. front: {
  14524. height: math.unit(6 + 2 / 12, "feet"),
  14525. weight: math.unit(168, "lb"),
  14526. name: "Front",
  14527. image: {
  14528. source: "./media/characters/elise/front.svg",
  14529. extra: 276 / 271
  14530. }
  14531. },
  14532. },
  14533. [
  14534. {
  14535. name: "Normal",
  14536. height: math.unit(6 + 2 / 12, "feet"),
  14537. default: true
  14538. },
  14539. ]
  14540. ))
  14541. characterMakers.push(() => makeCharacter(
  14542. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14543. {
  14544. front: {
  14545. height: math.unit(5 + 10 / 12, "feet"),
  14546. weight: math.unit(210, "lb"),
  14547. name: "Front",
  14548. image: {
  14549. source: "./media/characters/glade/front.svg",
  14550. extra: 258 / 247,
  14551. bottom: 0.008
  14552. }
  14553. },
  14554. },
  14555. [
  14556. {
  14557. name: "Normal",
  14558. height: math.unit(5 + 10 / 12, "feet"),
  14559. default: true
  14560. },
  14561. ]
  14562. ))
  14563. characterMakers.push(() => makeCharacter(
  14564. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14565. {
  14566. front: {
  14567. height: math.unit(5 + 10 / 12, "feet"),
  14568. weight: math.unit(129, "lb"),
  14569. name: "Front",
  14570. image: {
  14571. source: "./media/characters/rina/front.svg",
  14572. extra: 266 / 255,
  14573. bottom: 0.005
  14574. }
  14575. },
  14576. },
  14577. [
  14578. {
  14579. name: "Normal",
  14580. height: math.unit(5 + 10 / 12, "feet"),
  14581. default: true
  14582. },
  14583. ]
  14584. ))
  14585. characterMakers.push(() => makeCharacter(
  14586. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14587. {
  14588. front: {
  14589. height: math.unit(6 + 1 / 12, "feet"),
  14590. weight: math.unit(192, "lb"),
  14591. name: "Front",
  14592. image: {
  14593. source: "./media/characters/veronica/front.svg",
  14594. extra: 319 / 309,
  14595. bottom: 0.005
  14596. }
  14597. },
  14598. },
  14599. [
  14600. {
  14601. name: "Normal",
  14602. height: math.unit(6 + 1 / 12, "feet"),
  14603. default: true
  14604. },
  14605. ]
  14606. ))
  14607. characterMakers.push(() => makeCharacter(
  14608. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14609. {
  14610. front: {
  14611. height: math.unit(9 + 3 / 12, "feet"),
  14612. weight: math.unit(1100, "lb"),
  14613. name: "Front",
  14614. image: {
  14615. source: "./media/characters/braxton/front.svg",
  14616. extra: 1057 / 984,
  14617. bottom: 0.05
  14618. }
  14619. },
  14620. },
  14621. [
  14622. {
  14623. name: "Normal",
  14624. height: math.unit(9 + 3 / 12, "feet")
  14625. },
  14626. {
  14627. name: "Giant",
  14628. height: math.unit(300, "feet"),
  14629. default: true
  14630. },
  14631. {
  14632. name: "Macro",
  14633. height: math.unit(700, "feet")
  14634. },
  14635. {
  14636. name: "Megamacro",
  14637. height: math.unit(6000, "feet")
  14638. },
  14639. ]
  14640. ))
  14641. characterMakers.push(() => makeCharacter(
  14642. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14643. {
  14644. front: {
  14645. height: math.unit(6 + 7 / 12, "feet"),
  14646. weight: math.unit(150, "lb"),
  14647. name: "Front",
  14648. image: {
  14649. source: "./media/characters/blue-feyonics/front.svg",
  14650. extra: 1403 / 1306,
  14651. bottom: 0.047
  14652. }
  14653. },
  14654. },
  14655. [
  14656. {
  14657. name: "Normal",
  14658. height: math.unit(6 + 7 / 12, "feet"),
  14659. default: true
  14660. },
  14661. ]
  14662. ))
  14663. characterMakers.push(() => makeCharacter(
  14664. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  14665. {
  14666. front: {
  14667. height: math.unit(1.8, "meters"),
  14668. weight: math.unit(60, "kg"),
  14669. name: "Front",
  14670. image: {
  14671. source: "./media/characters/maxwell/front.svg",
  14672. extra: 2060 / 1873
  14673. }
  14674. },
  14675. },
  14676. [
  14677. {
  14678. name: "Micro",
  14679. height: math.unit(1, "mm")
  14680. },
  14681. {
  14682. name: "Normal",
  14683. height: math.unit(1.8, "meter"),
  14684. default: true
  14685. },
  14686. {
  14687. name: "Macro",
  14688. height: math.unit(30, "meters")
  14689. },
  14690. {
  14691. name: "Megamacro",
  14692. height: math.unit(10, "km")
  14693. },
  14694. ]
  14695. ))
  14696. characterMakers.push(() => makeCharacter(
  14697. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  14698. {
  14699. front: {
  14700. height: math.unit(6, "feet"),
  14701. weight: math.unit(150, "lb"),
  14702. name: "Front",
  14703. image: {
  14704. source: "./media/characters/jack/front.svg",
  14705. extra: 1754 / 1640,
  14706. bottom: 0.01
  14707. }
  14708. },
  14709. },
  14710. [
  14711. {
  14712. name: "Normal",
  14713. height: math.unit(80000, "feet"),
  14714. default: true
  14715. },
  14716. {
  14717. name: "Max size",
  14718. height: math.unit(10, "lightyears")
  14719. },
  14720. ]
  14721. ))
  14722. characterMakers.push(() => makeCharacter(
  14723. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  14724. {
  14725. upright: {
  14726. height: math.unit(7, "feet"),
  14727. weight: math.unit(170, "lb"),
  14728. name: "Upright",
  14729. image: {
  14730. source: "./media/characters/cafat/upright.svg",
  14731. bottom: 0.01
  14732. }
  14733. },
  14734. uprightFull: {
  14735. height: math.unit(7, "feet"),
  14736. weight: math.unit(170, "lb"),
  14737. name: "Upright (Full)",
  14738. image: {
  14739. source: "./media/characters/cafat/upright-full.svg",
  14740. bottom: 0.01
  14741. }
  14742. },
  14743. side: {
  14744. height: math.unit(5, "feet"),
  14745. weight: math.unit(150, "lb"),
  14746. name: "Side",
  14747. image: {
  14748. source: "./media/characters/cafat/side.svg"
  14749. }
  14750. },
  14751. },
  14752. [
  14753. {
  14754. name: "Small",
  14755. height: math.unit(7, "feet"),
  14756. default: true
  14757. },
  14758. {
  14759. name: "Large",
  14760. height: math.unit(15.5, "feet")
  14761. },
  14762. ]
  14763. ))
  14764. characterMakers.push(() => makeCharacter(
  14765. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  14766. {
  14767. front: {
  14768. height: math.unit(6, "feet"),
  14769. weight: math.unit(150, "lb"),
  14770. name: "Front",
  14771. image: {
  14772. source: "./media/characters/verin-raharra/front.svg",
  14773. extra: 5019 / 4835,
  14774. bottom: 0.023
  14775. }
  14776. },
  14777. },
  14778. [
  14779. {
  14780. name: "Normal",
  14781. height: math.unit(7 + 5 / 12, "feet"),
  14782. default: true
  14783. },
  14784. {
  14785. name: "Upsized",
  14786. height: math.unit(20, "feet")
  14787. },
  14788. ]
  14789. ))
  14790. characterMakers.push(() => makeCharacter(
  14791. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  14792. {
  14793. front: {
  14794. height: math.unit(7, "feet"),
  14795. weight: math.unit(230, "lb"),
  14796. name: "Front",
  14797. image: {
  14798. source: "./media/characters/nakata/front.svg",
  14799. extra: 1.005,
  14800. bottom: 0.01
  14801. }
  14802. },
  14803. },
  14804. [
  14805. {
  14806. name: "Normal",
  14807. height: math.unit(7, "feet"),
  14808. default: true
  14809. },
  14810. {
  14811. name: "Big",
  14812. height: math.unit(14, "feet")
  14813. },
  14814. {
  14815. name: "Macro",
  14816. height: math.unit(400, "feet")
  14817. },
  14818. ]
  14819. ))
  14820. characterMakers.push(() => makeCharacter(
  14821. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  14822. {
  14823. front: {
  14824. height: math.unit(4.91, "feet"),
  14825. weight: math.unit(100, "lb"),
  14826. name: "Front",
  14827. image: {
  14828. source: "./media/characters/lily/front.svg",
  14829. extra: 1585 / 1415,
  14830. bottom: 0.02
  14831. }
  14832. },
  14833. },
  14834. [
  14835. {
  14836. name: "Normal",
  14837. height: math.unit(4.91, "feet"),
  14838. default: true
  14839. },
  14840. ]
  14841. ))
  14842. characterMakers.push(() => makeCharacter(
  14843. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  14844. {
  14845. laying: {
  14846. height: math.unit(4 + 4 / 12, "feet"),
  14847. weight: math.unit(600, "lb"),
  14848. name: "Laying",
  14849. image: {
  14850. source: "./media/characters/sheila/laying.svg",
  14851. extra: 1333 / 1265,
  14852. bottom: 0.16
  14853. }
  14854. },
  14855. },
  14856. [
  14857. {
  14858. name: "Normal",
  14859. height: math.unit(4 + 4 / 12, "feet"),
  14860. default: true
  14861. },
  14862. ]
  14863. ))
  14864. characterMakers.push(() => makeCharacter(
  14865. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  14866. {
  14867. front: {
  14868. height: math.unit(6, "feet"),
  14869. weight: math.unit(190, "lb"),
  14870. name: "Front",
  14871. image: {
  14872. source: "./media/characters/sax/front.svg",
  14873. extra: 1187 / 973,
  14874. bottom: 0.042
  14875. }
  14876. },
  14877. },
  14878. [
  14879. {
  14880. name: "Micro",
  14881. height: math.unit(4, "inches"),
  14882. default: true
  14883. },
  14884. ]
  14885. ))
  14886. characterMakers.push(() => makeCharacter(
  14887. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  14888. {
  14889. front: {
  14890. height: math.unit(6, "feet"),
  14891. weight: math.unit(150, "lb"),
  14892. name: "Front",
  14893. image: {
  14894. source: "./media/characters/pandora/front.svg",
  14895. extra: 2720 / 2556,
  14896. bottom: 0.015
  14897. }
  14898. },
  14899. back: {
  14900. height: math.unit(6, "feet"),
  14901. weight: math.unit(150, "lb"),
  14902. name: "Back",
  14903. image: {
  14904. source: "./media/characters/pandora/back.svg",
  14905. extra: 2720 / 2556,
  14906. bottom: 0.01
  14907. }
  14908. },
  14909. beans: {
  14910. height: math.unit(6 / 8, "feet"),
  14911. name: "Beans",
  14912. image: {
  14913. source: "./media/characters/pandora/beans.svg"
  14914. }
  14915. },
  14916. skirt: {
  14917. height: math.unit(6, "feet"),
  14918. weight: math.unit(150, "lb"),
  14919. name: "Skirt",
  14920. image: {
  14921. source: "./media/characters/pandora/skirt.svg",
  14922. extra: 1622 / 1525,
  14923. bottom: 0.015
  14924. }
  14925. },
  14926. hoodie: {
  14927. height: math.unit(6, "feet"),
  14928. weight: math.unit(150, "lb"),
  14929. name: "Hoodie",
  14930. image: {
  14931. source: "./media/characters/pandora/hoodie.svg",
  14932. extra: 1622 / 1525,
  14933. bottom: 0.015
  14934. }
  14935. },
  14936. casual: {
  14937. height: math.unit(6, "feet"),
  14938. weight: math.unit(150, "lb"),
  14939. name: "Casual",
  14940. image: {
  14941. source: "./media/characters/pandora/casual.svg",
  14942. extra: 1622 / 1525,
  14943. bottom: 0.015
  14944. }
  14945. },
  14946. },
  14947. [
  14948. {
  14949. name: "Normal",
  14950. height: math.unit(6, "feet")
  14951. },
  14952. {
  14953. name: "Big Steppy",
  14954. height: math.unit(1, "km"),
  14955. default: true
  14956. },
  14957. ]
  14958. ))
  14959. characterMakers.push(() => makeCharacter(
  14960. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  14961. {
  14962. side: {
  14963. height: math.unit(10, "feet"),
  14964. weight: math.unit(800, "kg"),
  14965. name: "Side",
  14966. image: {
  14967. source: "./media/characters/venio-darcony/side.svg",
  14968. extra: 1373 / 1003,
  14969. bottom: 0.037
  14970. }
  14971. },
  14972. front: {
  14973. height: math.unit(19, "feet"),
  14974. weight: math.unit(800, "kg"),
  14975. name: "Front",
  14976. image: {
  14977. source: "./media/characters/venio-darcony/front.svg"
  14978. }
  14979. },
  14980. back: {
  14981. height: math.unit(19, "feet"),
  14982. weight: math.unit(800, "kg"),
  14983. name: "Back",
  14984. image: {
  14985. source: "./media/characters/venio-darcony/back.svg"
  14986. }
  14987. },
  14988. sideNsfw: {
  14989. height: math.unit(10, "feet"),
  14990. weight: math.unit(800, "kg"),
  14991. name: "Side (NSFW)",
  14992. image: {
  14993. source: "./media/characters/venio-darcony/side-nsfw.svg",
  14994. extra: 1373 / 1003,
  14995. bottom: 0.037
  14996. }
  14997. },
  14998. frontNsfw: {
  14999. height: math.unit(19, "feet"),
  15000. weight: math.unit(800, "kg"),
  15001. name: "Front (NSFW)",
  15002. image: {
  15003. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15004. }
  15005. },
  15006. backNsfw: {
  15007. height: math.unit(19, "feet"),
  15008. weight: math.unit(800, "kg"),
  15009. name: "Back (NSFW)",
  15010. image: {
  15011. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15012. }
  15013. },
  15014. sideArmored: {
  15015. height: math.unit(10, "feet"),
  15016. weight: math.unit(800, "kg"),
  15017. name: "Side (Armored)",
  15018. image: {
  15019. source: "./media/characters/venio-darcony/side-armored.svg",
  15020. extra: 1373 / 1003,
  15021. bottom: 0.037
  15022. }
  15023. },
  15024. frontArmored: {
  15025. height: math.unit(19, "feet"),
  15026. weight: math.unit(900, "kg"),
  15027. name: "Front (Armored)",
  15028. image: {
  15029. source: "./media/characters/venio-darcony/front-armored.svg"
  15030. }
  15031. },
  15032. backArmored: {
  15033. height: math.unit(19, "feet"),
  15034. weight: math.unit(900, "kg"),
  15035. name: "Back (Armored)",
  15036. image: {
  15037. source: "./media/characters/venio-darcony/back-armored.svg"
  15038. }
  15039. },
  15040. sword: {
  15041. height: math.unit(10, "feet"),
  15042. weight: math.unit(50, "lb"),
  15043. name: "Sword",
  15044. image: {
  15045. source: "./media/characters/venio-darcony/sword.svg"
  15046. }
  15047. },
  15048. },
  15049. [
  15050. {
  15051. name: "Normal",
  15052. height: math.unit(10, "feet")
  15053. },
  15054. {
  15055. name: "Macro",
  15056. height: math.unit(130, "feet"),
  15057. default: true
  15058. },
  15059. {
  15060. name: "Macro+",
  15061. height: math.unit(240, "feet")
  15062. },
  15063. ]
  15064. ))
  15065. characterMakers.push(() => makeCharacter(
  15066. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15067. {
  15068. front: {
  15069. height: math.unit(6, "feet"),
  15070. weight: math.unit(150, "lb"),
  15071. name: "Front",
  15072. image: {
  15073. source: "./media/characters/veski/front.svg",
  15074. extra: 1299 / 1225,
  15075. bottom: 0.04
  15076. }
  15077. },
  15078. back: {
  15079. height: math.unit(6, "feet"),
  15080. weight: math.unit(150, "lb"),
  15081. name: "Back",
  15082. image: {
  15083. source: "./media/characters/veski/back.svg",
  15084. extra: 1299 / 1225,
  15085. bottom: 0.008
  15086. }
  15087. },
  15088. maw: {
  15089. height: math.unit(1.5 * 1.21, "feet"),
  15090. name: "Maw",
  15091. image: {
  15092. source: "./media/characters/veski/maw.svg"
  15093. }
  15094. },
  15095. },
  15096. [
  15097. {
  15098. name: "Macro",
  15099. height: math.unit(2, "km"),
  15100. default: true
  15101. },
  15102. ]
  15103. ))
  15104. characterMakers.push(() => makeCharacter(
  15105. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15106. {
  15107. front: {
  15108. height: math.unit(5 + 7 / 12, "feet"),
  15109. name: "Front",
  15110. image: {
  15111. source: "./media/characters/isabelle/front.svg",
  15112. extra: 2130 / 1976,
  15113. bottom: 0.05
  15114. }
  15115. },
  15116. },
  15117. [
  15118. {
  15119. name: "Supermicro",
  15120. height: math.unit(10, "micrometers")
  15121. },
  15122. {
  15123. name: "Micro",
  15124. height: math.unit(1, "inch")
  15125. },
  15126. {
  15127. name: "Tiny",
  15128. height: math.unit(5, "inches")
  15129. },
  15130. {
  15131. name: "Standard",
  15132. height: math.unit(5 + 7 / 12, "inches")
  15133. },
  15134. {
  15135. name: "Macro",
  15136. height: math.unit(80, "meters"),
  15137. default: true
  15138. },
  15139. {
  15140. name: "Megamacro",
  15141. height: math.unit(250, "meters")
  15142. },
  15143. {
  15144. name: "Gigamacro",
  15145. height: math.unit(5, "km")
  15146. },
  15147. {
  15148. name: "Cosmic",
  15149. height: math.unit(2.5e6, "miles")
  15150. },
  15151. ]
  15152. ))
  15153. characterMakers.push(() => makeCharacter(
  15154. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15155. {
  15156. front: {
  15157. height: math.unit(6, "feet"),
  15158. weight: math.unit(150, "lb"),
  15159. name: "Front",
  15160. image: {
  15161. source: "./media/characters/hanzo/front.svg",
  15162. extra: 374 / 344,
  15163. bottom: 0.02
  15164. }
  15165. },
  15166. },
  15167. [
  15168. {
  15169. name: "Normal",
  15170. height: math.unit(8, "feet"),
  15171. default: true
  15172. },
  15173. ]
  15174. ))
  15175. characterMakers.push(() => makeCharacter(
  15176. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15177. {
  15178. front: {
  15179. height: math.unit(7, "feet"),
  15180. weight: math.unit(130, "lb"),
  15181. name: "Front",
  15182. image: {
  15183. source: "./media/characters/anna/front.svg",
  15184. extra: 169 / 145,
  15185. bottom: 0.06
  15186. }
  15187. },
  15188. full: {
  15189. height: math.unit(4.96, "feet"),
  15190. weight: math.unit(220, "lb"),
  15191. name: "Full",
  15192. image: {
  15193. source: "./media/characters/anna/full.svg",
  15194. extra: 138 / 114,
  15195. bottom: 0.15
  15196. }
  15197. },
  15198. tongue: {
  15199. height: math.unit(2.53, "feet"),
  15200. name: "Tongue",
  15201. image: {
  15202. source: "./media/characters/anna/tongue.svg"
  15203. }
  15204. },
  15205. },
  15206. [
  15207. {
  15208. name: "Normal",
  15209. height: math.unit(7, "feet"),
  15210. default: true
  15211. },
  15212. ]
  15213. ))
  15214. characterMakers.push(() => makeCharacter(
  15215. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15216. {
  15217. front: {
  15218. height: math.unit(7, "feet"),
  15219. weight: math.unit(150, "lb"),
  15220. name: "Front",
  15221. image: {
  15222. source: "./media/characters/ian-corvid/front.svg",
  15223. extra: 150 / 142,
  15224. bottom: 0.02
  15225. }
  15226. },
  15227. back: {
  15228. height: math.unit(7, "feet"),
  15229. weight: math.unit(150, "lb"),
  15230. name: "Back",
  15231. image: {
  15232. source: "./media/characters/ian-corvid/back.svg",
  15233. extra: 150 / 143,
  15234. bottom: 0.01
  15235. }
  15236. },
  15237. stomping: {
  15238. height: math.unit(7, "feet"),
  15239. weight: math.unit(150, "lb"),
  15240. name: "Stomping",
  15241. image: {
  15242. source: "./media/characters/ian-corvid/stomping.svg",
  15243. extra: 76 / 72
  15244. }
  15245. },
  15246. sitting: {
  15247. height: math.unit(7 / 1.8, "feet"),
  15248. weight: math.unit(150, "lb"),
  15249. name: "Sitting",
  15250. image: {
  15251. source: "./media/characters/ian-corvid/sitting.svg",
  15252. extra: 1400 / 1269,
  15253. bottom: 0.15
  15254. }
  15255. },
  15256. },
  15257. [
  15258. {
  15259. name: "Tiny Microw",
  15260. height: math.unit(1, "inch")
  15261. },
  15262. {
  15263. name: "Microw",
  15264. height: math.unit(6, "inches")
  15265. },
  15266. {
  15267. name: "Crow",
  15268. height: math.unit(7 + 1 / 12, "feet"),
  15269. default: true
  15270. },
  15271. {
  15272. name: "Macrow",
  15273. height: math.unit(176, "feet")
  15274. },
  15275. ]
  15276. ))
  15277. characterMakers.push(() => makeCharacter(
  15278. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15279. {
  15280. front: {
  15281. height: math.unit(5 + 7 / 12, "feet"),
  15282. weight: math.unit(147, "lb"),
  15283. name: "Front",
  15284. image: {
  15285. source: "./media/characters/natalie-kellon/front.svg",
  15286. extra: 1214 / 1141,
  15287. bottom: 0.02
  15288. }
  15289. },
  15290. },
  15291. [
  15292. {
  15293. name: "Micro",
  15294. height: math.unit(1 / 16, "inch")
  15295. },
  15296. {
  15297. name: "Tiny",
  15298. height: math.unit(4, "inches")
  15299. },
  15300. {
  15301. name: "Normal",
  15302. height: math.unit(5 + 7 / 12, "feet"),
  15303. default: true
  15304. },
  15305. {
  15306. name: "Amazon",
  15307. height: math.unit(12, "feet")
  15308. },
  15309. {
  15310. name: "Giantess",
  15311. height: math.unit(160, "meters")
  15312. },
  15313. {
  15314. name: "Titaness",
  15315. height: math.unit(800, "meters")
  15316. },
  15317. ]
  15318. ))
  15319. characterMakers.push(() => makeCharacter(
  15320. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15321. {
  15322. front: {
  15323. height: math.unit(6, "feet"),
  15324. weight: math.unit(150, "lb"),
  15325. name: "Front",
  15326. image: {
  15327. source: "./media/characters/alluria/front.svg",
  15328. extra: 806 / 738,
  15329. bottom: 0.01
  15330. }
  15331. },
  15332. side: {
  15333. height: math.unit(6, "feet"),
  15334. weight: math.unit(150, "lb"),
  15335. name: "Side",
  15336. image: {
  15337. source: "./media/characters/alluria/side.svg",
  15338. extra: 800 / 750,
  15339. }
  15340. },
  15341. back: {
  15342. height: math.unit(6, "feet"),
  15343. weight: math.unit(150, "lb"),
  15344. name: "Back",
  15345. image: {
  15346. source: "./media/characters/alluria/back.svg",
  15347. extra: 806 / 738,
  15348. }
  15349. },
  15350. frontMaid: {
  15351. height: math.unit(6, "feet"),
  15352. weight: math.unit(150, "lb"),
  15353. name: "Front (Maid)",
  15354. image: {
  15355. source: "./media/characters/alluria/front-maid.svg",
  15356. extra: 806 / 738,
  15357. bottom: 0.01
  15358. }
  15359. },
  15360. sideMaid: {
  15361. height: math.unit(6, "feet"),
  15362. weight: math.unit(150, "lb"),
  15363. name: "Side (Maid)",
  15364. image: {
  15365. source: "./media/characters/alluria/side-maid.svg",
  15366. extra: 800 / 750,
  15367. bottom: 0.005
  15368. }
  15369. },
  15370. backMaid: {
  15371. height: math.unit(6, "feet"),
  15372. weight: math.unit(150, "lb"),
  15373. name: "Back (Maid)",
  15374. image: {
  15375. source: "./media/characters/alluria/back-maid.svg",
  15376. extra: 806 / 738,
  15377. }
  15378. },
  15379. },
  15380. [
  15381. {
  15382. name: "Micro",
  15383. height: math.unit(6, "inches"),
  15384. default: true
  15385. },
  15386. ]
  15387. ))
  15388. characterMakers.push(() => makeCharacter(
  15389. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15390. {
  15391. front: {
  15392. height: math.unit(6, "feet"),
  15393. weight: math.unit(150, "lb"),
  15394. name: "Front",
  15395. image: {
  15396. source: "./media/characters/kyle/front.svg",
  15397. extra: 1069 / 962,
  15398. bottom: 77.228 / 1727.45
  15399. }
  15400. },
  15401. },
  15402. [
  15403. {
  15404. name: "Macro",
  15405. height: math.unit(150, "feet"),
  15406. default: true
  15407. },
  15408. ]
  15409. ))
  15410. characterMakers.push(() => makeCharacter(
  15411. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15412. {
  15413. front: {
  15414. height: math.unit(6, "feet"),
  15415. weight: math.unit(300, "lb"),
  15416. name: "Front",
  15417. image: {
  15418. source: "./media/characters/duncan/front.svg",
  15419. extra: 1650 / 1482,
  15420. bottom: 0.05
  15421. }
  15422. },
  15423. },
  15424. [
  15425. {
  15426. name: "Macro",
  15427. height: math.unit(100, "feet"),
  15428. default: true
  15429. },
  15430. ]
  15431. ))
  15432. characterMakers.push(() => makeCharacter(
  15433. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15434. {
  15435. front: {
  15436. height: math.unit(5 + 4 / 12, "feet"),
  15437. weight: math.unit(220, "lb"),
  15438. name: "Front",
  15439. image: {
  15440. source: "./media/characters/memory/front.svg",
  15441. extra: 3641 / 3545,
  15442. bottom: 0.03
  15443. }
  15444. },
  15445. back: {
  15446. height: math.unit(5 + 4 / 12, "feet"),
  15447. weight: math.unit(220, "lb"),
  15448. name: "Back",
  15449. image: {
  15450. source: "./media/characters/memory/back.svg",
  15451. extra: 3641 / 3545,
  15452. bottom: 0.025
  15453. }
  15454. },
  15455. frontSkirt: {
  15456. height: math.unit(5 + 4 / 12, "feet"),
  15457. weight: math.unit(220, "lb"),
  15458. name: "Front (Skirt)",
  15459. image: {
  15460. source: "./media/characters/memory/front-skirt.svg",
  15461. extra: 3641 / 3545,
  15462. bottom: 0.03
  15463. }
  15464. },
  15465. frontDress: {
  15466. height: math.unit(5 + 4 / 12, "feet"),
  15467. weight: math.unit(220, "lb"),
  15468. name: "Front (Dress)",
  15469. image: {
  15470. source: "./media/characters/memory/front-dress.svg",
  15471. extra: 3641 / 3545,
  15472. bottom: 0.03
  15473. }
  15474. },
  15475. },
  15476. [
  15477. {
  15478. name: "Micro",
  15479. height: math.unit(6, "inches"),
  15480. default: true
  15481. },
  15482. {
  15483. name: "Normal",
  15484. height: math.unit(5 + 4 / 12, "feet")
  15485. },
  15486. ]
  15487. ))
  15488. characterMakers.push(() => makeCharacter(
  15489. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15490. {
  15491. front: {
  15492. height: math.unit(4 + 11 / 12, "feet"),
  15493. weight: math.unit(100, "lb"),
  15494. name: "Front",
  15495. image: {
  15496. source: "./media/characters/luno/front.svg",
  15497. extra: 1535 / 1487,
  15498. bottom: 0.03
  15499. }
  15500. },
  15501. },
  15502. [
  15503. {
  15504. name: "Micro",
  15505. height: math.unit(3, "inches")
  15506. },
  15507. {
  15508. name: "Normal",
  15509. height: math.unit(4 + 11 / 12, "feet"),
  15510. default: true
  15511. },
  15512. {
  15513. name: "Macro",
  15514. height: math.unit(300, "feet")
  15515. },
  15516. {
  15517. name: "Megamacro",
  15518. height: math.unit(700, "miles")
  15519. },
  15520. ]
  15521. ))
  15522. characterMakers.push(() => makeCharacter(
  15523. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15524. {
  15525. front: {
  15526. height: math.unit(6 + 2 / 12, "feet"),
  15527. weight: math.unit(170, "lb"),
  15528. name: "Front",
  15529. image: {
  15530. source: "./media/characters/jamesy/front.svg",
  15531. extra: 440 / 382,
  15532. bottom: 0.005
  15533. }
  15534. },
  15535. },
  15536. [
  15537. {
  15538. name: "Micro",
  15539. height: math.unit(3, "inches")
  15540. },
  15541. {
  15542. name: "Normal",
  15543. height: math.unit(6 + 2 / 12, "feet"),
  15544. default: true
  15545. },
  15546. {
  15547. name: "Macro",
  15548. height: math.unit(300, "feet")
  15549. },
  15550. {
  15551. name: "Megamacro",
  15552. height: math.unit(700, "miles")
  15553. },
  15554. ]
  15555. ))
  15556. characterMakers.push(() => makeCharacter(
  15557. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15558. {
  15559. front: {
  15560. height: math.unit(6, "feet"),
  15561. weight: math.unit(160, "lb"),
  15562. name: "Front",
  15563. image: {
  15564. source: "./media/characters/mark/front.svg",
  15565. extra: 3300 / 3100,
  15566. bottom: 136.42 / 3440.47
  15567. }
  15568. },
  15569. },
  15570. [
  15571. {
  15572. name: "Macro",
  15573. height: math.unit(120, "meters")
  15574. },
  15575. {
  15576. name: "Bigger Macro",
  15577. height: math.unit(350, "meters")
  15578. },
  15579. {
  15580. name: "Megamacro",
  15581. height: math.unit(8, "km"),
  15582. default: true
  15583. },
  15584. {
  15585. name: "Continental",
  15586. height: math.unit(4550, "km")
  15587. },
  15588. {
  15589. name: "Planetary",
  15590. height: math.unit(65000, "km")
  15591. },
  15592. ]
  15593. ))
  15594. characterMakers.push(() => makeCharacter(
  15595. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15596. {
  15597. front: {
  15598. height: math.unit(6, "feet"),
  15599. weight: math.unit(400, "lb"),
  15600. name: "Front",
  15601. image: {
  15602. source: "./media/characters/mac/front.svg",
  15603. extra: 1048 / 987.7,
  15604. bottom: 60 / 1107.6,
  15605. }
  15606. },
  15607. },
  15608. [
  15609. {
  15610. name: "Macro",
  15611. height: math.unit(500, "feet"),
  15612. default: true
  15613. },
  15614. ]
  15615. ))
  15616. characterMakers.push(() => makeCharacter(
  15617. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15618. {
  15619. front: {
  15620. height: math.unit(5 + 2 / 12, "feet"),
  15621. weight: math.unit(190, "lb"),
  15622. name: "Front",
  15623. image: {
  15624. source: "./media/characters/bari/front.svg",
  15625. extra: 3156 / 2880,
  15626. bottom: 0.03
  15627. }
  15628. },
  15629. back: {
  15630. height: math.unit(5 + 2 / 12, "feet"),
  15631. weight: math.unit(190, "lb"),
  15632. name: "Back",
  15633. image: {
  15634. source: "./media/characters/bari/back.svg",
  15635. extra: 3260 / 2834,
  15636. bottom: 0.025
  15637. }
  15638. },
  15639. frontPlush: {
  15640. height: math.unit(5 + 2 / 12, "feet"),
  15641. weight: math.unit(190, "lb"),
  15642. name: "Front (Plush)",
  15643. image: {
  15644. source: "./media/characters/bari/front-plush.svg",
  15645. extra: 1112 / 1061,
  15646. bottom: 0.002
  15647. }
  15648. },
  15649. },
  15650. [
  15651. {
  15652. name: "Micro",
  15653. height: math.unit(3, "inches")
  15654. },
  15655. {
  15656. name: "Normal",
  15657. height: math.unit(5 + 2 / 12, "feet"),
  15658. default: true
  15659. },
  15660. {
  15661. name: "Macro",
  15662. height: math.unit(20, "feet")
  15663. },
  15664. ]
  15665. ))
  15666. characterMakers.push(() => makeCharacter(
  15667. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  15668. {
  15669. front: {
  15670. height: math.unit(6 + 1 / 12, "feet"),
  15671. weight: math.unit(275, "lb"),
  15672. name: "Front",
  15673. image: {
  15674. source: "./media/characters/hunter-misha-raven/front.svg"
  15675. }
  15676. },
  15677. },
  15678. [
  15679. {
  15680. name: "Mortal",
  15681. height: math.unit(6 + 1 / 12, "feet")
  15682. },
  15683. {
  15684. name: "Divine",
  15685. height: math.unit(1.12134e34, "parsecs"),
  15686. default: true
  15687. },
  15688. ]
  15689. ))
  15690. characterMakers.push(() => makeCharacter(
  15691. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  15692. {
  15693. front: {
  15694. height: math.unit(6 + 3 / 12, "feet"),
  15695. weight: math.unit(220, "lb"),
  15696. name: "Front",
  15697. image: {
  15698. source: "./media/characters/max-calore/front.svg",
  15699. extra: 1700 / 1648,
  15700. bottom: 0.01
  15701. }
  15702. },
  15703. back: {
  15704. height: math.unit(6 + 3 / 12, "feet"),
  15705. weight: math.unit(220, "lb"),
  15706. name: "Back",
  15707. image: {
  15708. source: "./media/characters/max-calore/back.svg",
  15709. extra: 1700 / 1648,
  15710. bottom: 0.01
  15711. }
  15712. },
  15713. },
  15714. [
  15715. {
  15716. name: "Normal",
  15717. height: math.unit(6 + 3 / 12, "feet"),
  15718. default: true
  15719. },
  15720. ]
  15721. ))
  15722. characterMakers.push(() => makeCharacter(
  15723. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  15724. {
  15725. side: {
  15726. height: math.unit(2 + 8 / 12, "feet"),
  15727. weight: math.unit(99, "lb"),
  15728. name: "Side",
  15729. image: {
  15730. source: "./media/characters/aspen/side.svg",
  15731. extra: 152 / 138,
  15732. bottom: 0.032
  15733. }
  15734. },
  15735. },
  15736. [
  15737. {
  15738. name: "Normal",
  15739. height: math.unit(2 + 8 / 12, "feet"),
  15740. default: true
  15741. },
  15742. ]
  15743. ))
  15744. characterMakers.push(() => makeCharacter(
  15745. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  15746. {
  15747. side: {
  15748. height: math.unit(3 + 2 / 12, "feet"),
  15749. weight: math.unit(224, "lb"),
  15750. name: "Side",
  15751. image: {
  15752. source: "./media/characters/sheila-feral-wolf/side.svg",
  15753. extra: 179 / 166,
  15754. bottom: 0.03
  15755. }
  15756. },
  15757. },
  15758. [
  15759. {
  15760. name: "Normal",
  15761. height: math.unit(3 + 2 / 12, "feet"),
  15762. default: true
  15763. },
  15764. ]
  15765. ))
  15766. characterMakers.push(() => makeCharacter(
  15767. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  15768. {
  15769. side: {
  15770. height: math.unit(1 + 9 / 12, "feet"),
  15771. weight: math.unit(38, "lb"),
  15772. name: "Side",
  15773. image: {
  15774. source: "./media/characters/michelle/side.svg",
  15775. extra: 147 / 136.7,
  15776. bottom: 0.03
  15777. }
  15778. },
  15779. },
  15780. [
  15781. {
  15782. name: "Normal",
  15783. height: math.unit(1 + 9 / 12, "feet"),
  15784. default: true
  15785. },
  15786. ]
  15787. ))
  15788. characterMakers.push(() => makeCharacter(
  15789. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  15790. {
  15791. front: {
  15792. height: math.unit(1 + 1 / 12, "feet"),
  15793. weight: math.unit(18, "lb"),
  15794. name: "Front",
  15795. image: {
  15796. source: "./media/characters/nino/front.svg"
  15797. }
  15798. },
  15799. },
  15800. [
  15801. {
  15802. name: "Normal",
  15803. height: math.unit(1 + 1 / 12, "feet"),
  15804. default: true
  15805. },
  15806. ]
  15807. ))
  15808. characterMakers.push(() => makeCharacter(
  15809. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  15810. {
  15811. front: {
  15812. height: math.unit(1, "feet"),
  15813. weight: math.unit(16, "lb"),
  15814. name: "Front",
  15815. image: {
  15816. source: "./media/characters/viola/front.svg"
  15817. }
  15818. },
  15819. },
  15820. [
  15821. {
  15822. name: "Normal",
  15823. height: math.unit(1, "feet"),
  15824. default: true
  15825. },
  15826. ]
  15827. ))
  15828. characterMakers.push(() => makeCharacter(
  15829. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  15830. {
  15831. front: {
  15832. height: math.unit(6 + 5 / 12, "feet"),
  15833. weight: math.unit(580, "lb"),
  15834. name: "Front",
  15835. image: {
  15836. source: "./media/characters/atlas/front.svg",
  15837. extra: 298.5 / 290,
  15838. bottom: 0.015
  15839. }
  15840. },
  15841. },
  15842. [
  15843. {
  15844. name: "Normal",
  15845. height: math.unit(6 + 5 / 12, "feet"),
  15846. default: true
  15847. },
  15848. ]
  15849. ))
  15850. characterMakers.push(() => makeCharacter(
  15851. { name: "Davy", species: ["cat"], tags: ["feral"] },
  15852. {
  15853. side: {
  15854. height: math.unit(1 + 10 / 12, "feet"),
  15855. weight: math.unit(25, "lb"),
  15856. name: "Side",
  15857. image: {
  15858. source: "./media/characters/davy/side.svg",
  15859. extra: 200 / 170,
  15860. bottom: 0.01
  15861. }
  15862. },
  15863. },
  15864. [
  15865. {
  15866. name: "Normal",
  15867. height: math.unit(1 + 10 / 12, "feet"),
  15868. default: true
  15869. },
  15870. ]
  15871. ))
  15872. characterMakers.push(() => makeCharacter(
  15873. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  15874. {
  15875. side: {
  15876. height: math.unit(4 + 8 / 12, "feet"),
  15877. weight: math.unit(166, "lb"),
  15878. name: "Side",
  15879. image: {
  15880. source: "./media/characters/fiona/side.svg",
  15881. extra: 232 / 220,
  15882. bottom: 0.03
  15883. }
  15884. },
  15885. },
  15886. [
  15887. {
  15888. name: "Normal",
  15889. height: math.unit(4 + 8 / 12, "feet"),
  15890. default: true
  15891. },
  15892. ]
  15893. ))
  15894. characterMakers.push(() => makeCharacter(
  15895. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  15896. {
  15897. front: {
  15898. height: math.unit(2, "feet"),
  15899. weight: math.unit(62, "lb"),
  15900. name: "Front",
  15901. image: {
  15902. source: "./media/characters/lyla/front.svg",
  15903. bottom: 0.1
  15904. }
  15905. },
  15906. },
  15907. [
  15908. {
  15909. name: "Normal",
  15910. height: math.unit(2, "feet"),
  15911. default: true
  15912. },
  15913. ]
  15914. ))
  15915. characterMakers.push(() => makeCharacter(
  15916. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  15917. {
  15918. side: {
  15919. height: math.unit(1.8, "feet"),
  15920. weight: math.unit(44, "lb"),
  15921. name: "Side",
  15922. image: {
  15923. source: "./media/characters/perseus/side.svg",
  15924. bottom: 0.21
  15925. }
  15926. },
  15927. },
  15928. [
  15929. {
  15930. name: "Normal",
  15931. height: math.unit(1.8, "feet"),
  15932. default: true
  15933. },
  15934. ]
  15935. ))
  15936. characterMakers.push(() => makeCharacter(
  15937. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  15938. {
  15939. side: {
  15940. height: math.unit(4 + 2 / 12, "feet"),
  15941. weight: math.unit(20, "lb"),
  15942. name: "Side",
  15943. image: {
  15944. source: "./media/characters/remus/side.svg"
  15945. }
  15946. },
  15947. },
  15948. [
  15949. {
  15950. name: "Normal",
  15951. height: math.unit(4 + 2 / 12, "feet"),
  15952. default: true
  15953. },
  15954. ]
  15955. ))
  15956. characterMakers.push(() => makeCharacter(
  15957. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  15958. {
  15959. front: {
  15960. height: math.unit(4 + 11 / 12, "feet"),
  15961. weight: math.unit(114, "lb"),
  15962. name: "Front",
  15963. image: {
  15964. source: "./media/characters/raf/front.svg",
  15965. bottom: 0.01
  15966. }
  15967. },
  15968. side: {
  15969. height: math.unit(4 + 11 / 12, "feet"),
  15970. weight: math.unit(114, "lb"),
  15971. name: "Side",
  15972. image: {
  15973. source: "./media/characters/raf/side.svg",
  15974. bottom: 0.005
  15975. }
  15976. },
  15977. },
  15978. [
  15979. {
  15980. name: "Micro",
  15981. height: math.unit(2, "inches")
  15982. },
  15983. {
  15984. name: "Normal",
  15985. height: math.unit(4 + 11 / 12, "feet"),
  15986. default: true
  15987. },
  15988. {
  15989. name: "Macro",
  15990. height: math.unit(70, "feet")
  15991. },
  15992. ]
  15993. ))
  15994. characterMakers.push(() => makeCharacter(
  15995. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  15996. {
  15997. front: {
  15998. height: math.unit(1.5, "meters"),
  15999. weight: math.unit(68, "kg"),
  16000. name: "Front",
  16001. image: {
  16002. source: "./media/characters/liam-einarr/front.svg",
  16003. extra: 2822 / 2666
  16004. }
  16005. },
  16006. back: {
  16007. height: math.unit(1.5, "meters"),
  16008. weight: math.unit(68, "kg"),
  16009. name: "Back",
  16010. image: {
  16011. source: "./media/characters/liam-einarr/back.svg",
  16012. extra: 2822 / 2666,
  16013. bottom: 0.015
  16014. }
  16015. },
  16016. },
  16017. [
  16018. {
  16019. name: "Normal",
  16020. height: math.unit(1.5, "meters"),
  16021. default: true
  16022. },
  16023. {
  16024. name: "Macro",
  16025. height: math.unit(150, "meters")
  16026. },
  16027. {
  16028. name: "Megamacro",
  16029. height: math.unit(35, "km")
  16030. },
  16031. ]
  16032. ))
  16033. characterMakers.push(() => makeCharacter(
  16034. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16035. {
  16036. front: {
  16037. height: math.unit(6, "feet"),
  16038. weight: math.unit(75, "kg"),
  16039. name: "Front",
  16040. image: {
  16041. source: "./media/characters/linda/front.svg",
  16042. extra: 930 / 874,
  16043. bottom: 0.004
  16044. }
  16045. },
  16046. },
  16047. [
  16048. {
  16049. name: "Normal",
  16050. height: math.unit(6, "feet"),
  16051. default: true
  16052. },
  16053. ]
  16054. ))
  16055. characterMakers.push(() => makeCharacter(
  16056. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16057. {
  16058. front: {
  16059. height: math.unit(6 + 8 / 12, "feet"),
  16060. weight: math.unit(220, "lb"),
  16061. name: "Front",
  16062. image: {
  16063. source: "./media/characters/caylex/front.svg",
  16064. extra: 821 / 772,
  16065. bottom: 0.07
  16066. }
  16067. },
  16068. back: {
  16069. height: math.unit(6 + 8 / 12, "feet"),
  16070. weight: math.unit(220, "lb"),
  16071. name: "Back",
  16072. image: {
  16073. source: "./media/characters/caylex/back.svg",
  16074. extra: 821 / 772,
  16075. bottom: 0.022
  16076. }
  16077. },
  16078. hand: {
  16079. height: math.unit(1.25, "feet"),
  16080. name: "Hand",
  16081. image: {
  16082. source: "./media/characters/caylex/hand.svg"
  16083. }
  16084. },
  16085. foot: {
  16086. height: math.unit(1.6, "feet"),
  16087. name: "Foot",
  16088. image: {
  16089. source: "./media/characters/caylex/foot.svg"
  16090. }
  16091. },
  16092. armored: {
  16093. height: math.unit(6 + 8 / 12, "feet"),
  16094. weight: math.unit(250, "lb"),
  16095. name: "Armored",
  16096. image: {
  16097. source: "./media/characters/caylex/armored.svg",
  16098. extra: 1420 / 1310,
  16099. bottom: 0.045
  16100. }
  16101. },
  16102. },
  16103. [
  16104. {
  16105. name: "Normal",
  16106. height: math.unit(6 + 8 / 12, "feet"),
  16107. default: true
  16108. },
  16109. {
  16110. name: "Normal+",
  16111. height: math.unit(12, "feet")
  16112. },
  16113. ]
  16114. ))
  16115. characterMakers.push(() => makeCharacter(
  16116. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16117. {
  16118. front: {
  16119. height: math.unit(7 + 6 / 12, "feet"),
  16120. weight: math.unit(288, "lb"),
  16121. name: "Front",
  16122. image: {
  16123. source: "./media/characters/alana/front.svg",
  16124. extra: 679 / 653,
  16125. bottom: 22.5 / 701
  16126. }
  16127. },
  16128. },
  16129. [
  16130. {
  16131. name: "Normal",
  16132. height: math.unit(7 + 6 / 12, "feet")
  16133. },
  16134. {
  16135. name: "Large",
  16136. height: math.unit(50, "feet")
  16137. },
  16138. {
  16139. name: "Macro",
  16140. height: math.unit(100, "feet"),
  16141. default: true
  16142. },
  16143. {
  16144. name: "Macro+",
  16145. height: math.unit(200, "feet")
  16146. },
  16147. ]
  16148. ))
  16149. characterMakers.push(() => makeCharacter(
  16150. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16151. {
  16152. front: {
  16153. height: math.unit(6 + 1 / 12, "feet"),
  16154. weight: math.unit(210, "lb"),
  16155. name: "Front",
  16156. image: {
  16157. source: "./media/characters/hasani/front.svg",
  16158. extra: 244 / 232,
  16159. bottom: 0.01
  16160. }
  16161. },
  16162. back: {
  16163. height: math.unit(6 + 1 / 12, "feet"),
  16164. weight: math.unit(210, "lb"),
  16165. name: "Back",
  16166. image: {
  16167. source: "./media/characters/hasani/back.svg",
  16168. extra: 244 / 232,
  16169. bottom: 0.01
  16170. }
  16171. },
  16172. },
  16173. [
  16174. {
  16175. name: "Normal",
  16176. height: math.unit(6 + 1 / 12, "feet")
  16177. },
  16178. {
  16179. name: "Macro",
  16180. height: math.unit(175, "feet"),
  16181. default: true
  16182. },
  16183. ]
  16184. ))
  16185. characterMakers.push(() => makeCharacter(
  16186. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16187. {
  16188. front: {
  16189. height: math.unit(1.82, "meters"),
  16190. weight: math.unit(140, "lb"),
  16191. name: "Front",
  16192. image: {
  16193. source: "./media/characters/nita/front.svg",
  16194. extra: 2473 / 2363,
  16195. bottom: 0.01
  16196. }
  16197. },
  16198. },
  16199. [
  16200. {
  16201. name: "Normal",
  16202. height: math.unit(1.82, "m")
  16203. },
  16204. {
  16205. name: "Macro",
  16206. height: math.unit(300, "m")
  16207. },
  16208. {
  16209. name: "Mistake Canon",
  16210. height: math.unit(0.5, "miles"),
  16211. default: true
  16212. },
  16213. {
  16214. name: "Big Mistake",
  16215. height: math.unit(13, "miles")
  16216. },
  16217. {
  16218. name: "Playing God",
  16219. height: math.unit(2450, "miles")
  16220. },
  16221. ]
  16222. ))
  16223. characterMakers.push(() => makeCharacter(
  16224. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16225. {
  16226. front: {
  16227. height: math.unit(4, "feet"),
  16228. weight: math.unit(120, "lb"),
  16229. name: "Front",
  16230. image: {
  16231. source: "./media/characters/shiriko/front.svg",
  16232. extra: 195 / 188
  16233. }
  16234. },
  16235. },
  16236. [
  16237. {
  16238. name: "Normal",
  16239. height: math.unit(4, "feet"),
  16240. default: true
  16241. },
  16242. ]
  16243. ))
  16244. characterMakers.push(() => makeCharacter(
  16245. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16246. {
  16247. front: {
  16248. height: math.unit(6, "feet"),
  16249. name: "front",
  16250. image: {
  16251. source: "./media/characters/deja/front.svg",
  16252. extra: 926 / 840,
  16253. bottom: 0.07
  16254. }
  16255. },
  16256. },
  16257. [
  16258. {
  16259. name: "Planck Length",
  16260. height: math.unit(1.6e-35, "meters")
  16261. },
  16262. {
  16263. name: "Normal",
  16264. height: math.unit(30.48, "meters"),
  16265. default: true
  16266. },
  16267. {
  16268. name: "Universal",
  16269. height: math.unit(8.8e26, "meters")
  16270. },
  16271. ]
  16272. ))
  16273. characterMakers.push(() => makeCharacter(
  16274. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16275. {
  16276. side: {
  16277. height: math.unit(8, "feet"),
  16278. weight: math.unit(6300, "lb"),
  16279. name: "Side",
  16280. image: {
  16281. source: "./media/characters/anima/side.svg",
  16282. bottom: 0.035
  16283. }
  16284. },
  16285. },
  16286. [
  16287. {
  16288. name: "Normal",
  16289. height: math.unit(8, "feet"),
  16290. default: true
  16291. },
  16292. ]
  16293. ))
  16294. characterMakers.push(() => makeCharacter(
  16295. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16296. {
  16297. front: {
  16298. height: math.unit(8, "feet"),
  16299. weight: math.unit(350, "lb"),
  16300. name: "Front",
  16301. image: {
  16302. source: "./media/characters/bianca/front.svg",
  16303. extra: 234 / 225,
  16304. bottom: 0.03
  16305. }
  16306. },
  16307. },
  16308. [
  16309. {
  16310. name: "Normal",
  16311. height: math.unit(8, "feet"),
  16312. default: true
  16313. },
  16314. ]
  16315. ))
  16316. characterMakers.push(() => makeCharacter(
  16317. { name: "Adinia", species: ["kelpie"], tags: ["anthro"] },
  16318. {
  16319. front: {
  16320. height: math.unit(6, "feet"),
  16321. weight: math.unit(150, "lb"),
  16322. name: "Front",
  16323. image: {
  16324. source: "./media/characters/adinia/front.svg",
  16325. extra: 1845 / 1672,
  16326. bottom: 0.02
  16327. }
  16328. },
  16329. back: {
  16330. height: math.unit(6, "feet"),
  16331. weight: math.unit(150, "lb"),
  16332. name: "Back",
  16333. image: {
  16334. source: "./media/characters/adinia/back.svg",
  16335. extra: 1845 / 1672,
  16336. bottom: 0.002
  16337. }
  16338. },
  16339. },
  16340. [
  16341. {
  16342. name: "Normal",
  16343. height: math.unit(11 + 5 / 12, "feet"),
  16344. default: true
  16345. },
  16346. ]
  16347. ))
  16348. characterMakers.push(() => makeCharacter(
  16349. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16350. {
  16351. front: {
  16352. height: math.unit(3, "meters"),
  16353. weight: math.unit(200, "kg"),
  16354. name: "Front",
  16355. image: {
  16356. source: "./media/characters/lykasa/front.svg",
  16357. extra: 1076 / 976,
  16358. bottom: 0.06
  16359. }
  16360. },
  16361. },
  16362. [
  16363. {
  16364. name: "Normal",
  16365. height: math.unit(3, "meters")
  16366. },
  16367. {
  16368. name: "Kaiju",
  16369. height: math.unit(120, "meters"),
  16370. default: true
  16371. },
  16372. {
  16373. name: "Mega Kaiju",
  16374. height: math.unit(240, "km")
  16375. },
  16376. {
  16377. name: "Giga Kaiju",
  16378. height: math.unit(400, "megameters")
  16379. },
  16380. {
  16381. name: "Tera Kaiju",
  16382. height: math.unit(800, "gigameters")
  16383. },
  16384. {
  16385. name: "Kaiju Dragon Goddess",
  16386. height: math.unit(26, "zettaparsecs")
  16387. },
  16388. ]
  16389. ))
  16390. characterMakers.push(() => makeCharacter(
  16391. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16392. {
  16393. side: {
  16394. height: math.unit(283 / 124 * 6, "feet"),
  16395. weight: math.unit(35000, "lb"),
  16396. name: "Side",
  16397. image: {
  16398. source: "./media/characters/malfaren/side.svg",
  16399. extra: 2500 / 1010,
  16400. bottom: 0.01
  16401. }
  16402. },
  16403. front: {
  16404. height: math.unit(22.36, "feet"),
  16405. weight: math.unit(35000, "lb"),
  16406. name: "Front",
  16407. image: {
  16408. source: "./media/characters/malfaren/front.svg",
  16409. extra: 1631 / 1476,
  16410. bottom: 0.01
  16411. }
  16412. },
  16413. maw: {
  16414. height: math.unit(6.9, "feet"),
  16415. name: "Maw",
  16416. image: {
  16417. source: "./media/characters/malfaren/maw.svg"
  16418. }
  16419. },
  16420. },
  16421. [
  16422. {
  16423. name: "Big",
  16424. height: math.unit(283 / 162 * 6, "feet"),
  16425. },
  16426. {
  16427. name: "Bigger",
  16428. height: math.unit(283 / 124 * 6, "feet")
  16429. },
  16430. {
  16431. name: "Massive",
  16432. height: math.unit(283 / 92 * 6, "feet"),
  16433. default: true
  16434. },
  16435. {
  16436. name: "👀💦",
  16437. height: math.unit(283 / 73 * 6, "feet"),
  16438. },
  16439. ]
  16440. ))
  16441. characterMakers.push(() => makeCharacter(
  16442. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16443. {
  16444. front: {
  16445. height: math.unit(1.7, "m"),
  16446. weight: math.unit(70, "kg"),
  16447. name: "Front",
  16448. image: {
  16449. source: "./media/characters/kernel/front.svg",
  16450. extra: 222 / 210,
  16451. bottom: 0.007
  16452. }
  16453. },
  16454. },
  16455. [
  16456. {
  16457. name: "Nano",
  16458. height: math.unit(17, "micrometers")
  16459. },
  16460. {
  16461. name: "Micro",
  16462. height: math.unit(1.7, "mm")
  16463. },
  16464. {
  16465. name: "Small",
  16466. height: math.unit(1.7, "cm")
  16467. },
  16468. {
  16469. name: "Normal",
  16470. height: math.unit(1.7, "m"),
  16471. default: true
  16472. },
  16473. ]
  16474. ))
  16475. characterMakers.push(() => makeCharacter(
  16476. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16477. {
  16478. front: {
  16479. height: math.unit(1.75, "meters"),
  16480. weight: math.unit(65, "kg"),
  16481. name: "Front",
  16482. image: {
  16483. source: "./media/characters/jayne-folest/front.svg",
  16484. extra: 2115 / 2007,
  16485. bottom: 0.02
  16486. }
  16487. },
  16488. back: {
  16489. height: math.unit(1.75, "meters"),
  16490. weight: math.unit(65, "kg"),
  16491. name: "Back",
  16492. image: {
  16493. source: "./media/characters/jayne-folest/back.svg",
  16494. extra: 2115 / 2007,
  16495. bottom: 0.005
  16496. }
  16497. },
  16498. frontClothed: {
  16499. height: math.unit(1.75, "meters"),
  16500. weight: math.unit(65, "kg"),
  16501. name: "Front (Clothed)",
  16502. image: {
  16503. source: "./media/characters/jayne-folest/front-clothed.svg",
  16504. extra: 2115 / 2007,
  16505. bottom: 0.035
  16506. }
  16507. },
  16508. hand: {
  16509. height: math.unit(1 / 1.260, "feet"),
  16510. name: "Hand",
  16511. image: {
  16512. source: "./media/characters/jayne-folest/hand.svg"
  16513. }
  16514. },
  16515. foot: {
  16516. height: math.unit(1 / 0.918, "feet"),
  16517. name: "Foot",
  16518. image: {
  16519. source: "./media/characters/jayne-folest/foot.svg"
  16520. }
  16521. },
  16522. },
  16523. [
  16524. {
  16525. name: "Micro",
  16526. height: math.unit(4, "cm")
  16527. },
  16528. {
  16529. name: "Normal",
  16530. height: math.unit(1.75, "meters")
  16531. },
  16532. {
  16533. name: "Macro",
  16534. height: math.unit(47.5, "meters"),
  16535. default: true
  16536. },
  16537. ]
  16538. ))
  16539. characterMakers.push(() => makeCharacter(
  16540. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16541. {
  16542. front: {
  16543. height: math.unit(180, "cm"),
  16544. weight: math.unit(70, "kg"),
  16545. name: "Front",
  16546. image: {
  16547. source: "./media/characters/algier/front.svg",
  16548. extra: 596 / 572,
  16549. bottom: 0.04
  16550. }
  16551. },
  16552. back: {
  16553. height: math.unit(180, "cm"),
  16554. weight: math.unit(70, "kg"),
  16555. name: "Back",
  16556. image: {
  16557. source: "./media/characters/algier/back.svg",
  16558. extra: 596 / 572,
  16559. bottom: 0.025
  16560. }
  16561. },
  16562. frontdressed: {
  16563. height: math.unit(180, "cm"),
  16564. weight: math.unit(150, "kg"),
  16565. name: "Front-dressed",
  16566. image: {
  16567. source: "./media/characters/algier/front-dressed.svg",
  16568. extra: 596 / 572,
  16569. bottom: 0.038
  16570. }
  16571. },
  16572. },
  16573. [
  16574. {
  16575. name: "Micro",
  16576. height: math.unit(5, "cm")
  16577. },
  16578. {
  16579. name: "Normal",
  16580. height: math.unit(180, "cm"),
  16581. default: true
  16582. },
  16583. {
  16584. name: "Macro",
  16585. height: math.unit(64, "m")
  16586. },
  16587. ]
  16588. ))
  16589. characterMakers.push(() => makeCharacter(
  16590. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16591. {
  16592. upright: {
  16593. height: math.unit(7, "feet"),
  16594. weight: math.unit(300, "lb"),
  16595. name: "Upright",
  16596. image: {
  16597. source: "./media/characters/pretzel/upright.svg",
  16598. extra: 534 / 522,
  16599. bottom: 0.065
  16600. }
  16601. },
  16602. sprawling: {
  16603. height: math.unit(3.75, "feet"),
  16604. weight: math.unit(300, "lb"),
  16605. name: "Sprawling",
  16606. image: {
  16607. source: "./media/characters/pretzel/sprawling.svg",
  16608. extra: 314 / 281,
  16609. bottom: 0.1
  16610. }
  16611. },
  16612. tongue: {
  16613. height: math.unit(2, "feet"),
  16614. name: "Tongue",
  16615. image: {
  16616. source: "./media/characters/pretzel/tongue.svg"
  16617. }
  16618. },
  16619. },
  16620. [
  16621. {
  16622. name: "Normal",
  16623. height: math.unit(7, "feet"),
  16624. default: true
  16625. },
  16626. {
  16627. name: "Oversized",
  16628. height: math.unit(15, "feet")
  16629. },
  16630. {
  16631. name: "Huge",
  16632. height: math.unit(30, "feet")
  16633. },
  16634. {
  16635. name: "Macro",
  16636. height: math.unit(250, "feet")
  16637. },
  16638. ]
  16639. ))
  16640. characterMakers.push(() => makeCharacter(
  16641. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16642. {
  16643. sideFront: {
  16644. height: math.unit(5 + 2 / 12, "feet"),
  16645. weight: math.unit(120, "lb"),
  16646. name: "Front Side",
  16647. image: {
  16648. source: "./media/characters/roxi/side-front.svg",
  16649. extra: 2924 / 2717,
  16650. bottom: 0.08
  16651. }
  16652. },
  16653. sideBack: {
  16654. height: math.unit(5 + 2 / 12, "feet"),
  16655. weight: math.unit(120, "lb"),
  16656. name: "Back Side",
  16657. image: {
  16658. source: "./media/characters/roxi/side-back.svg",
  16659. extra: 2904 / 2693,
  16660. bottom: 0.06
  16661. }
  16662. },
  16663. front: {
  16664. height: math.unit(5 + 2 / 12, "feet"),
  16665. weight: math.unit(120, "lb"),
  16666. name: "Front",
  16667. image: {
  16668. source: "./media/characters/roxi/front.svg",
  16669. extra: 2028 / 1907,
  16670. bottom: 0.01
  16671. }
  16672. },
  16673. frontAlt: {
  16674. height: math.unit(5 + 2 / 12, "feet"),
  16675. weight: math.unit(120, "lb"),
  16676. name: "Front (Alt)",
  16677. image: {
  16678. source: "./media/characters/roxi/front-alt.svg",
  16679. extra: 1828 / 1798,
  16680. bottom: 0.01
  16681. }
  16682. },
  16683. sitting: {
  16684. height: math.unit(2.8, "feet"),
  16685. weight: math.unit(120, "lb"),
  16686. name: "Sitting",
  16687. image: {
  16688. source: "./media/characters/roxi/sitting.svg",
  16689. extra: 2660 / 2462,
  16690. bottom: 0.1
  16691. }
  16692. },
  16693. },
  16694. [
  16695. {
  16696. name: "Normal",
  16697. height: math.unit(5 + 2 / 12, "feet"),
  16698. default: true
  16699. },
  16700. ]
  16701. ))
  16702. characterMakers.push(() => makeCharacter(
  16703. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  16704. {
  16705. side: {
  16706. height: math.unit(55, "feet"),
  16707. weight: math.unit(153, "tons"),
  16708. name: "Side",
  16709. image: {
  16710. source: "./media/characters/shadow/side.svg",
  16711. extra: 701 / 628,
  16712. bottom: 0.02
  16713. }
  16714. },
  16715. flying: {
  16716. height: math.unit(145, "feet"),
  16717. weight: math.unit(153, "tons"),
  16718. name: "Flying",
  16719. image: {
  16720. source: "./media/characters/shadow/flying.svg"
  16721. }
  16722. },
  16723. },
  16724. [
  16725. {
  16726. name: "Normal",
  16727. height: math.unit(55, "feet"),
  16728. default: true
  16729. },
  16730. ]
  16731. ))
  16732. characterMakers.push(() => makeCharacter(
  16733. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  16734. {
  16735. front: {
  16736. height: math.unit(6, "feet"),
  16737. weight: math.unit(200, "lb"),
  16738. name: "Front",
  16739. image: {
  16740. source: "./media/characters/marcie/front.svg",
  16741. extra: 960 / 876,
  16742. bottom: 58 / 1017.87
  16743. }
  16744. },
  16745. },
  16746. [
  16747. {
  16748. name: "Macro",
  16749. height: math.unit(1, "mile"),
  16750. default: true
  16751. },
  16752. ]
  16753. ))
  16754. characterMakers.push(() => makeCharacter(
  16755. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  16756. {
  16757. front: {
  16758. height: math.unit(7, "feet"),
  16759. weight: math.unit(200, "lb"),
  16760. name: "Front",
  16761. image: {
  16762. source: "./media/characters/kachina/front.svg",
  16763. extra: 1290.68 / 1119,
  16764. bottom: 36.5 / 1327.18
  16765. }
  16766. },
  16767. },
  16768. [
  16769. {
  16770. name: "Normal",
  16771. height: math.unit(7, "feet"),
  16772. default: true
  16773. },
  16774. ]
  16775. ))
  16776. characterMakers.push(() => makeCharacter(
  16777. { name: "Kash", species: ["canine"], tags: ["feral"] },
  16778. {
  16779. looking: {
  16780. height: math.unit(2, "meters"),
  16781. weight: math.unit(300, "kg"),
  16782. name: "Looking",
  16783. image: {
  16784. source: "./media/characters/kash/looking.svg",
  16785. extra: 474 / 344,
  16786. bottom: 0.03
  16787. }
  16788. },
  16789. side: {
  16790. height: math.unit(2, "meters"),
  16791. weight: math.unit(300, "kg"),
  16792. name: "Side",
  16793. image: {
  16794. source: "./media/characters/kash/side.svg",
  16795. extra: 302 / 251,
  16796. bottom: 0.03
  16797. }
  16798. },
  16799. front: {
  16800. height: math.unit(2, "meters"),
  16801. weight: math.unit(300, "kg"),
  16802. name: "Front",
  16803. image: {
  16804. source: "./media/characters/kash/front.svg",
  16805. extra: 495 / 360,
  16806. bottom: 0.015
  16807. }
  16808. },
  16809. },
  16810. [
  16811. {
  16812. name: "Normal",
  16813. height: math.unit(2, "meters"),
  16814. default: true
  16815. },
  16816. {
  16817. name: "Big",
  16818. height: math.unit(3, "meters")
  16819. },
  16820. {
  16821. name: "Large",
  16822. height: math.unit(5, "meters")
  16823. },
  16824. ]
  16825. ))
  16826. characterMakers.push(() => makeCharacter(
  16827. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  16828. {
  16829. feeding: {
  16830. height: math.unit(6.7, "feet"),
  16831. weight: math.unit(350, "lb"),
  16832. name: "Feeding",
  16833. image: {
  16834. source: "./media/characters/lalim/feeding.svg",
  16835. }
  16836. },
  16837. },
  16838. [
  16839. {
  16840. name: "Normal",
  16841. height: math.unit(6.7, "feet"),
  16842. default: true
  16843. },
  16844. ]
  16845. ))
  16846. characterMakers.push(() => makeCharacter(
  16847. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  16848. {
  16849. front: {
  16850. height: math.unit(9.5, "feet"),
  16851. weight: math.unit(600, "lb"),
  16852. name: "Front",
  16853. image: {
  16854. source: "./media/characters/de'vout/front.svg",
  16855. extra: 1443 / 1328,
  16856. bottom: 0.025
  16857. }
  16858. },
  16859. back: {
  16860. height: math.unit(9.5, "feet"),
  16861. weight: math.unit(600, "lb"),
  16862. name: "Back",
  16863. image: {
  16864. source: "./media/characters/de'vout/back.svg",
  16865. extra: 1443 / 1328
  16866. }
  16867. },
  16868. frontDressed: {
  16869. height: math.unit(9.5, "feet"),
  16870. weight: math.unit(600, "lb"),
  16871. name: "Front (Dressed",
  16872. image: {
  16873. source: "./media/characters/de'vout/front-dressed.svg",
  16874. extra: 1443 / 1328,
  16875. bottom: 0.025
  16876. }
  16877. },
  16878. backDressed: {
  16879. height: math.unit(9.5, "feet"),
  16880. weight: math.unit(600, "lb"),
  16881. name: "Back (Dressed",
  16882. image: {
  16883. source: "./media/characters/de'vout/back-dressed.svg",
  16884. extra: 1443 / 1328
  16885. }
  16886. },
  16887. },
  16888. [
  16889. {
  16890. name: "Normal",
  16891. height: math.unit(9.5, "feet"),
  16892. default: true
  16893. },
  16894. ]
  16895. ))
  16896. characterMakers.push(() => makeCharacter(
  16897. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  16898. {
  16899. front: {
  16900. height: math.unit(8, "feet"),
  16901. weight: math.unit(225, "lb"),
  16902. name: "Front",
  16903. image: {
  16904. source: "./media/characters/talana/front.svg",
  16905. extra: 1410 / 1300,
  16906. bottom: 0.015
  16907. }
  16908. },
  16909. frontDressed: {
  16910. height: math.unit(8, "feet"),
  16911. weight: math.unit(225, "lb"),
  16912. name: "Front (Dressed",
  16913. image: {
  16914. source: "./media/characters/talana/front-dressed.svg",
  16915. extra: 1410 / 1300,
  16916. bottom: 0.015
  16917. }
  16918. },
  16919. },
  16920. [
  16921. {
  16922. name: "Normal",
  16923. height: math.unit(8, "feet"),
  16924. default: true
  16925. },
  16926. ]
  16927. ))
  16928. characterMakers.push(() => makeCharacter(
  16929. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  16930. {
  16931. side: {
  16932. height: math.unit(7.2, "feet"),
  16933. weight: math.unit(150, "lb"),
  16934. name: "Side",
  16935. image: {
  16936. source: "./media/characters/xeauvok/side.svg",
  16937. extra: 1975 / 1523,
  16938. bottom: 0.07
  16939. }
  16940. },
  16941. },
  16942. [
  16943. {
  16944. name: "Normal",
  16945. height: math.unit(7.2, "feet"),
  16946. default: true
  16947. },
  16948. ]
  16949. ))
  16950. characterMakers.push(() => makeCharacter(
  16951. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  16952. {
  16953. side: {
  16954. height: math.unit(10, "feet"),
  16955. weight: math.unit(900, "kg"),
  16956. name: "Side",
  16957. image: {
  16958. source: "./media/characters/zara/side.svg",
  16959. extra: 504 / 498
  16960. }
  16961. },
  16962. },
  16963. [
  16964. {
  16965. name: "Normal",
  16966. height: math.unit(10, "feet"),
  16967. default: true
  16968. },
  16969. ]
  16970. ))
  16971. characterMakers.push(() => makeCharacter(
  16972. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  16973. {
  16974. side: {
  16975. height: math.unit(6, "feet"),
  16976. weight: math.unit(150, "lb"),
  16977. name: "Side",
  16978. image: {
  16979. source: "./media/characters/richard-dragon/side.svg",
  16980. extra: 845 / 340,
  16981. bottom: 0.017
  16982. }
  16983. },
  16984. maw: {
  16985. height: math.unit(2.97, "feet"),
  16986. name: "Maw",
  16987. image: {
  16988. source: "./media/characters/richard-dragon/maw.svg"
  16989. }
  16990. },
  16991. },
  16992. [
  16993. ]
  16994. ))
  16995. characterMakers.push(() => makeCharacter(
  16996. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  16997. {
  16998. front: {
  16999. height: math.unit(4, "feet"),
  17000. weight: math.unit(100, "lb"),
  17001. name: "Front",
  17002. image: {
  17003. source: "./media/characters/richard-smeargle/front.svg",
  17004. extra: 2952 / 2820,
  17005. bottom: 0.028
  17006. }
  17007. },
  17008. },
  17009. [
  17010. {
  17011. name: "Normal",
  17012. height: math.unit(4, "feet"),
  17013. default: true
  17014. },
  17015. {
  17016. name: "Dynamax",
  17017. height: math.unit(20, "meters")
  17018. },
  17019. ]
  17020. ))
  17021. characterMakers.push(() => makeCharacter(
  17022. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17023. {
  17024. front: {
  17025. height: math.unit(6, "feet"),
  17026. weight: math.unit(110, "lb"),
  17027. name: "Front",
  17028. image: {
  17029. source: "./media/characters/klay/front.svg",
  17030. extra: 962 / 883,
  17031. bottom: 0.04
  17032. }
  17033. },
  17034. back: {
  17035. height: math.unit(6, "feet"),
  17036. weight: math.unit(110, "lb"),
  17037. name: "Back",
  17038. image: {
  17039. source: "./media/characters/klay/back.svg",
  17040. extra: 962 / 883
  17041. }
  17042. },
  17043. beans: {
  17044. height: math.unit(1.15, "feet"),
  17045. name: "Beans",
  17046. image: {
  17047. source: "./media/characters/klay/beans.svg"
  17048. }
  17049. },
  17050. },
  17051. [
  17052. {
  17053. name: "Micro",
  17054. height: math.unit(6, "inches")
  17055. },
  17056. {
  17057. name: "Mini",
  17058. height: math.unit(3, "feet")
  17059. },
  17060. {
  17061. name: "Normal",
  17062. height: math.unit(6, "feet"),
  17063. default: true
  17064. },
  17065. {
  17066. name: "Big",
  17067. height: math.unit(25, "feet")
  17068. },
  17069. {
  17070. name: "Macro",
  17071. height: math.unit(100, "feet")
  17072. },
  17073. {
  17074. name: "Megamacro",
  17075. height: math.unit(400, "feet")
  17076. },
  17077. ]
  17078. ))
  17079. characterMakers.push(() => makeCharacter(
  17080. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17081. {
  17082. front: {
  17083. height: math.unit(6, "feet"),
  17084. weight: math.unit(160, "lb"),
  17085. name: "Front",
  17086. image: {
  17087. source: "./media/characters/marcus/front.svg",
  17088. extra: 734 / 676,
  17089. bottom: 0.03
  17090. }
  17091. },
  17092. },
  17093. [
  17094. {
  17095. name: "Little",
  17096. height: math.unit(6, "feet")
  17097. },
  17098. {
  17099. name: "Normal",
  17100. height: math.unit(110, "feet"),
  17101. default: true
  17102. },
  17103. {
  17104. name: "Macro",
  17105. height: math.unit(250, "feet")
  17106. },
  17107. {
  17108. name: "Megamacro",
  17109. height: math.unit(1000, "feet")
  17110. },
  17111. ]
  17112. ))
  17113. characterMakers.push(() => makeCharacter(
  17114. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17115. {
  17116. front: {
  17117. height: math.unit(7, "feet"),
  17118. weight: math.unit(275, "lb"),
  17119. name: "Front",
  17120. image: {
  17121. source: "./media/characters/claude-delroute/front.svg",
  17122. extra: 230 / 214,
  17123. bottom: 0.007
  17124. }
  17125. },
  17126. side: {
  17127. height: math.unit(7, "feet"),
  17128. weight: math.unit(275, "lb"),
  17129. name: "Side",
  17130. image: {
  17131. source: "./media/characters/claude-delroute/side.svg",
  17132. extra: 222 / 214,
  17133. bottom: 0.01
  17134. }
  17135. },
  17136. back: {
  17137. height: math.unit(7, "feet"),
  17138. weight: math.unit(275, "lb"),
  17139. name: "Back",
  17140. image: {
  17141. source: "./media/characters/claude-delroute/back.svg",
  17142. extra: 230 / 214,
  17143. bottom: 0.015
  17144. }
  17145. },
  17146. maw: {
  17147. height: math.unit(0.6407, "meters"),
  17148. name: "Maw",
  17149. image: {
  17150. source: "./media/characters/claude-delroute/maw.svg"
  17151. }
  17152. },
  17153. },
  17154. [
  17155. {
  17156. name: "Normal",
  17157. height: math.unit(7, "feet"),
  17158. default: true
  17159. },
  17160. {
  17161. name: "Lorge",
  17162. height: math.unit(20, "feet")
  17163. },
  17164. ]
  17165. ))
  17166. characterMakers.push(() => makeCharacter(
  17167. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17168. {
  17169. front: {
  17170. height: math.unit(8 + 4 / 12, "feet"),
  17171. weight: math.unit(600, "lb"),
  17172. name: "Front",
  17173. image: {
  17174. source: "./media/characters/dragonien/front.svg",
  17175. extra: 100 / 94,
  17176. bottom: 3.3 / 103.3445
  17177. }
  17178. },
  17179. back: {
  17180. height: math.unit(8 + 4 / 12, "feet"),
  17181. weight: math.unit(600, "lb"),
  17182. name: "Back",
  17183. image: {
  17184. source: "./media/characters/dragonien/back.svg",
  17185. extra: 776 / 746,
  17186. bottom: 6.4 / 782.0616
  17187. }
  17188. },
  17189. foot: {
  17190. height: math.unit(1.54, "feet"),
  17191. name: "Foot",
  17192. image: {
  17193. source: "./media/characters/dragonien/foot.svg",
  17194. }
  17195. },
  17196. },
  17197. [
  17198. {
  17199. name: "Normal",
  17200. height: math.unit(8 + 4 / 12, "feet"),
  17201. default: true
  17202. },
  17203. {
  17204. name: "Macro",
  17205. height: math.unit(200, "feet")
  17206. },
  17207. {
  17208. name: "Megamacro",
  17209. height: math.unit(1, "mile")
  17210. },
  17211. {
  17212. name: "Gigamacro",
  17213. height: math.unit(1000, "miles")
  17214. },
  17215. ]
  17216. ))
  17217. characterMakers.push(() => makeCharacter(
  17218. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17219. {
  17220. front: {
  17221. height: math.unit(5 + 2 / 12, "feet"),
  17222. weight: math.unit(110, "lb"),
  17223. name: "Front",
  17224. image: {
  17225. source: "./media/characters/desta/front.svg",
  17226. extra: 1482 / 1417
  17227. }
  17228. },
  17229. side: {
  17230. height: math.unit(5 + 2 / 12, "feet"),
  17231. weight: math.unit(110, "lb"),
  17232. name: "Side",
  17233. image: {
  17234. source: "./media/characters/desta/side.svg",
  17235. extra: 2579 / 2491,
  17236. bottom: 0.053
  17237. }
  17238. },
  17239. },
  17240. [
  17241. {
  17242. name: "Micro",
  17243. height: math.unit(6, "inches")
  17244. },
  17245. {
  17246. name: "Normal",
  17247. height: math.unit(5 + 2 / 12, "feet"),
  17248. default: true
  17249. },
  17250. {
  17251. name: "Macro",
  17252. height: math.unit(62, "feet")
  17253. },
  17254. {
  17255. name: "Megamacro",
  17256. height: math.unit(1800, "feet")
  17257. },
  17258. ]
  17259. ))
  17260. characterMakers.push(() => makeCharacter(
  17261. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17262. {
  17263. front: {
  17264. height: math.unit(10, "feet"),
  17265. weight: math.unit(700, "lb"),
  17266. name: "Front",
  17267. image: {
  17268. source: "./media/characters/storm-alystar/front.svg",
  17269. extra: 2112 / 1898,
  17270. bottom: 0.034
  17271. }
  17272. },
  17273. },
  17274. [
  17275. {
  17276. name: "Micro",
  17277. height: math.unit(3.5, "inches")
  17278. },
  17279. {
  17280. name: "Normal",
  17281. height: math.unit(10, "feet"),
  17282. default: true
  17283. },
  17284. {
  17285. name: "Macro",
  17286. height: math.unit(400, "feet")
  17287. },
  17288. {
  17289. name: "Deific",
  17290. height: math.unit(60, "miles")
  17291. },
  17292. ]
  17293. ))
  17294. characterMakers.push(() => makeCharacter(
  17295. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17296. {
  17297. front: {
  17298. height: math.unit(2.35, "meters"),
  17299. weight: math.unit(119, "kg"),
  17300. name: "Front",
  17301. image: {
  17302. source: "./media/characters/ilia/front.svg",
  17303. extra: 1285 / 1255,
  17304. bottom: 0.06
  17305. }
  17306. },
  17307. },
  17308. [
  17309. {
  17310. name: "Normal",
  17311. height: math.unit(2.35, "meters")
  17312. },
  17313. {
  17314. name: "Macro",
  17315. height: math.unit(140, "meters"),
  17316. default: true
  17317. },
  17318. {
  17319. name: "Megamacro",
  17320. height: math.unit(100, "miles")
  17321. },
  17322. ]
  17323. ))
  17324. characterMakers.push(() => makeCharacter(
  17325. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17326. {
  17327. front: {
  17328. height: math.unit(6 + 5 / 12, "feet"),
  17329. weight: math.unit(190, "lb"),
  17330. name: "Front",
  17331. image: {
  17332. source: "./media/characters/kingdead/front.svg",
  17333. extra: 1228 / 1177
  17334. }
  17335. },
  17336. },
  17337. [
  17338. {
  17339. name: "Micro",
  17340. height: math.unit(7, "inches")
  17341. },
  17342. {
  17343. name: "Normal",
  17344. height: math.unit(6 + 5 / 12, "feet")
  17345. },
  17346. {
  17347. name: "Macro",
  17348. height: math.unit(150, "feet"),
  17349. default: true
  17350. },
  17351. {
  17352. name: "Megamacro",
  17353. height: math.unit(200, "miles")
  17354. },
  17355. ]
  17356. ))
  17357. characterMakers.push(() => makeCharacter(
  17358. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17359. {
  17360. front: {
  17361. height: math.unit(8, "feet"),
  17362. weight: math.unit(600, "lb"),
  17363. name: "Front",
  17364. image: {
  17365. source: "./media/characters/kyrehx/front.svg",
  17366. extra: 1195 / 1095,
  17367. bottom: 0.034
  17368. }
  17369. },
  17370. },
  17371. [
  17372. {
  17373. name: "Micro",
  17374. height: math.unit(2, "inches")
  17375. },
  17376. {
  17377. name: "Normal",
  17378. height: math.unit(8, "feet"),
  17379. default: true
  17380. },
  17381. {
  17382. name: "Macro",
  17383. height: math.unit(255, "feet")
  17384. },
  17385. ]
  17386. ))
  17387. characterMakers.push(() => makeCharacter(
  17388. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17389. {
  17390. front: {
  17391. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17392. weight: math.unit(184, "lb"),
  17393. name: "Front",
  17394. image: {
  17395. source: "./media/characters/xang/front.svg",
  17396. extra: 845 / 755
  17397. }
  17398. },
  17399. },
  17400. [
  17401. {
  17402. name: "Normal",
  17403. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17404. default: true
  17405. },
  17406. {
  17407. name: "Macro",
  17408. height: math.unit(0.935 * 146, "feet")
  17409. },
  17410. {
  17411. name: "Megamacro",
  17412. height: math.unit(0.935 * 3, "miles")
  17413. },
  17414. ]
  17415. ))
  17416. characterMakers.push(() => makeCharacter(
  17417. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17418. {
  17419. frontDressed: {
  17420. height: math.unit(5 + 7 / 12, "feet"),
  17421. weight: math.unit(140, "lb"),
  17422. name: "Front (Dressed)",
  17423. image: {
  17424. source: "./media/characters/doc-weardno/front-dressed.svg",
  17425. extra: 263 / 234
  17426. }
  17427. },
  17428. backDressed: {
  17429. height: math.unit(5 + 7 / 12, "feet"),
  17430. weight: math.unit(140, "lb"),
  17431. name: "Back (Dressed)",
  17432. image: {
  17433. source: "./media/characters/doc-weardno/back-dressed.svg",
  17434. extra: 266 / 238
  17435. }
  17436. },
  17437. front: {
  17438. height: math.unit(5 + 7 / 12, "feet"),
  17439. weight: math.unit(140, "lb"),
  17440. name: "Front",
  17441. image: {
  17442. source: "./media/characters/doc-weardno/front.svg",
  17443. extra: 254 / 233
  17444. }
  17445. },
  17446. },
  17447. [
  17448. {
  17449. name: "Micro",
  17450. height: math.unit(3, "inches")
  17451. },
  17452. {
  17453. name: "Normal",
  17454. height: math.unit(5 + 7 / 12, "feet"),
  17455. default: true
  17456. },
  17457. {
  17458. name: "Macro",
  17459. height: math.unit(25, "feet")
  17460. },
  17461. {
  17462. name: "Megamacro",
  17463. height: math.unit(2, "miles")
  17464. },
  17465. ]
  17466. ))
  17467. characterMakers.push(() => makeCharacter(
  17468. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17469. {
  17470. front: {
  17471. height: math.unit(6 + 2 / 12, "feet"),
  17472. weight: math.unit(153, "lb"),
  17473. name: "Front",
  17474. image: {
  17475. source: "./media/characters/seth-whilst/front.svg",
  17476. bottom: 0.07
  17477. }
  17478. },
  17479. },
  17480. [
  17481. {
  17482. name: "Micro",
  17483. height: math.unit(5, "inches")
  17484. },
  17485. {
  17486. name: "Normal",
  17487. height: math.unit(6 + 2 / 12, "feet"),
  17488. default: true
  17489. },
  17490. ]
  17491. ))
  17492. characterMakers.push(() => makeCharacter(
  17493. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17494. {
  17495. front: {
  17496. height: math.unit(3, "inches"),
  17497. weight: math.unit(8, "grams"),
  17498. name: "Front",
  17499. image: {
  17500. source: "./media/characters/pocket-jabari/front.svg",
  17501. extra: 1024 / 974,
  17502. bottom: 0.039
  17503. }
  17504. },
  17505. },
  17506. [
  17507. {
  17508. name: "Minimicro",
  17509. height: math.unit(8, "mm")
  17510. },
  17511. {
  17512. name: "Micro",
  17513. height: math.unit(3, "inches"),
  17514. default: true
  17515. },
  17516. {
  17517. name: "Normal",
  17518. height: math.unit(3, "feet")
  17519. },
  17520. ]
  17521. ))
  17522. characterMakers.push(() => makeCharacter(
  17523. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17524. {
  17525. front: {
  17526. height: math.unit(15, "feet"),
  17527. weight: math.unit(3280, "lb"),
  17528. name: "Front",
  17529. image: {
  17530. source: "./media/characters/sapphy/front.svg",
  17531. extra: 671 / 577,
  17532. bottom: 0.085
  17533. }
  17534. },
  17535. back: {
  17536. height: math.unit(15, "feet"),
  17537. weight: math.unit(3280, "lb"),
  17538. name: "Back",
  17539. image: {
  17540. source: "./media/characters/sapphy/back.svg",
  17541. extra: 631 / 607,
  17542. bottom: 0.045
  17543. }
  17544. },
  17545. },
  17546. [
  17547. {
  17548. name: "Normal",
  17549. height: math.unit(15, "feet")
  17550. },
  17551. {
  17552. name: "Casual Macro",
  17553. height: math.unit(120, "feet")
  17554. },
  17555. {
  17556. name: "Macro",
  17557. height: math.unit(2150, "feet"),
  17558. default: true
  17559. },
  17560. {
  17561. name: "Megamacro",
  17562. height: math.unit(8, "miles")
  17563. },
  17564. {
  17565. name: "Galaxy Mom",
  17566. height: math.unit(6, "megalightyears")
  17567. },
  17568. ]
  17569. ))
  17570. characterMakers.push(() => makeCharacter(
  17571. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17572. {
  17573. front: {
  17574. height: math.unit(6, "feet"),
  17575. weight: math.unit(170, "lb"),
  17576. name: "Front",
  17577. image: {
  17578. source: "./media/characters/kiro/front.svg",
  17579. extra: 1064 / 1012,
  17580. bottom: 0.052
  17581. }
  17582. },
  17583. },
  17584. [
  17585. {
  17586. name: "Micro",
  17587. height: math.unit(6, "inches")
  17588. },
  17589. {
  17590. name: "Normal",
  17591. height: math.unit(6, "feet"),
  17592. default: true
  17593. },
  17594. {
  17595. name: "Macro",
  17596. height: math.unit(72, "feet")
  17597. },
  17598. ]
  17599. ))
  17600. characterMakers.push(() => makeCharacter(
  17601. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17602. {
  17603. front: {
  17604. height: math.unit(5 + 9 / 12, "feet"),
  17605. weight: math.unit(175, "lb"),
  17606. name: "Front",
  17607. image: {
  17608. source: "./media/characters/irishfox/front.svg",
  17609. extra: 1912 / 1680,
  17610. bottom: 0.02
  17611. }
  17612. },
  17613. },
  17614. [
  17615. {
  17616. name: "Nano",
  17617. height: math.unit(1, "mm")
  17618. },
  17619. {
  17620. name: "Micro",
  17621. height: math.unit(2, "inches")
  17622. },
  17623. {
  17624. name: "Normal",
  17625. height: math.unit(5 + 9 / 12, "feet"),
  17626. default: true
  17627. },
  17628. {
  17629. name: "Macro",
  17630. height: math.unit(45, "feet")
  17631. },
  17632. ]
  17633. ))
  17634. characterMakers.push(() => makeCharacter(
  17635. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  17636. {
  17637. front: {
  17638. height: math.unit(6 + 1 / 12, "feet"),
  17639. weight: math.unit(150, "lb"),
  17640. name: "Front",
  17641. image: {
  17642. source: "./media/characters/aronai-sieyes/front.svg",
  17643. extra: 1556 / 1480,
  17644. bottom: 0.015
  17645. }
  17646. },
  17647. side: {
  17648. height: math.unit(6 + 1 / 12, "feet"),
  17649. weight: math.unit(150, "lb"),
  17650. name: "Side",
  17651. image: {
  17652. source: "./media/characters/aronai-sieyes/side.svg",
  17653. extra: 1433 / 1390,
  17654. bottom: 0.0393
  17655. }
  17656. },
  17657. back: {
  17658. height: math.unit(6 + 1 / 12, "feet"),
  17659. weight: math.unit(150, "lb"),
  17660. name: "Back",
  17661. image: {
  17662. source: "./media/characters/aronai-sieyes/back.svg",
  17663. extra: 1544 / 1494,
  17664. bottom: 0.02
  17665. }
  17666. },
  17667. frontClothed: {
  17668. height: math.unit(6 + 1 / 12, "feet"),
  17669. weight: math.unit(150, "lb"),
  17670. name: "Front (Clothed)",
  17671. image: {
  17672. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17673. extra: 1582 / 1527
  17674. }
  17675. },
  17676. feral: {
  17677. height: math.unit(18, "feet"),
  17678. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17679. name: "Feral",
  17680. image: {
  17681. source: "./media/characters/aronai-sieyes/feral.svg",
  17682. extra: 1530 / 1240,
  17683. bottom: 0.035
  17684. }
  17685. },
  17686. },
  17687. [
  17688. {
  17689. name: "Micro",
  17690. height: math.unit(2, "inches")
  17691. },
  17692. {
  17693. name: "Normal",
  17694. height: math.unit(6 + 1 / 12, "feet"),
  17695. default: true
  17696. }
  17697. ]
  17698. ))
  17699. characterMakers.push(() => makeCharacter(
  17700. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  17701. {
  17702. front: {
  17703. height: math.unit(12, "feet"),
  17704. weight: math.unit(410, "kg"),
  17705. name: "Front",
  17706. image: {
  17707. source: "./media/characters/xuna/front.svg",
  17708. extra: 2184 / 1980
  17709. }
  17710. },
  17711. side: {
  17712. height: math.unit(12, "feet"),
  17713. weight: math.unit(410, "kg"),
  17714. name: "Side",
  17715. image: {
  17716. source: "./media/characters/xuna/side.svg",
  17717. extra: 2184 / 1980
  17718. }
  17719. },
  17720. back: {
  17721. height: math.unit(12, "feet"),
  17722. weight: math.unit(410, "kg"),
  17723. name: "Back",
  17724. image: {
  17725. source: "./media/characters/xuna/back.svg",
  17726. extra: 2184 / 1980
  17727. }
  17728. },
  17729. },
  17730. [
  17731. {
  17732. name: "Nano glow",
  17733. height: math.unit(10, "nm")
  17734. },
  17735. {
  17736. name: "Micro floof",
  17737. height: math.unit(0.3, "m")
  17738. },
  17739. {
  17740. name: "Huggable softy boi",
  17741. height: math.unit(3.6576, "m"),
  17742. default: true
  17743. },
  17744. {
  17745. name: "Admirable floof",
  17746. height: math.unit(80, "meters")
  17747. },
  17748. {
  17749. name: "Gentle macro",
  17750. height: math.unit(300, "meters")
  17751. },
  17752. {
  17753. name: "Very careful floof",
  17754. height: math.unit(3200, "meters")
  17755. },
  17756. {
  17757. name: "The mega floof",
  17758. height: math.unit(36000, "meters")
  17759. },
  17760. {
  17761. name: "Giga-fur-Wicker",
  17762. height: math.unit(4800000, "meters")
  17763. },
  17764. {
  17765. name: "Licky world",
  17766. height: math.unit(20000000, "meters")
  17767. },
  17768. {
  17769. name: "Floofy cyan sun",
  17770. height: math.unit(1500000000, "meters")
  17771. },
  17772. {
  17773. name: "Milky Wicker",
  17774. height: math.unit(1000000000000000000000, "meters")
  17775. },
  17776. {
  17777. name: "The observing Wicker",
  17778. height: math.unit(999999999999999999999999999, "meters")
  17779. },
  17780. ]
  17781. ))
  17782. characterMakers.push(() => makeCharacter(
  17783. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17784. {
  17785. front: {
  17786. height: math.unit(5 + 9 / 12, "feet"),
  17787. weight: math.unit(150, "lb"),
  17788. name: "Front",
  17789. image: {
  17790. source: "./media/characters/arokha-sieyes/front.svg",
  17791. extra: 1425 / 1284,
  17792. bottom: 0.05
  17793. }
  17794. },
  17795. },
  17796. [
  17797. {
  17798. name: "Normal",
  17799. height: math.unit(5 + 9 / 12, "feet")
  17800. },
  17801. {
  17802. name: "Macro",
  17803. height: math.unit(30, "meters"),
  17804. default: true
  17805. },
  17806. ]
  17807. ))
  17808. characterMakers.push(() => makeCharacter(
  17809. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17810. {
  17811. front: {
  17812. height: math.unit(6, "feet"),
  17813. weight: math.unit(180, "lb"),
  17814. name: "Front",
  17815. image: {
  17816. source: "./media/characters/arokh-sieyes/front.svg",
  17817. extra: 1830 / 1769,
  17818. bottom: 0.01
  17819. }
  17820. },
  17821. },
  17822. [
  17823. {
  17824. name: "Normal",
  17825. height: math.unit(6, "feet")
  17826. },
  17827. {
  17828. name: "Macro",
  17829. height: math.unit(30, "meters"),
  17830. default: true
  17831. },
  17832. ]
  17833. ))
  17834. characterMakers.push(() => makeCharacter(
  17835. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  17836. {
  17837. side: {
  17838. height: math.unit(13 + 1 / 12, "feet"),
  17839. weight: math.unit(8.5, "tonnes"),
  17840. name: "Side",
  17841. image: {
  17842. source: "./media/characters/goldeneye/side.svg",
  17843. extra: 1182 / 778,
  17844. bottom: 0.067
  17845. }
  17846. },
  17847. paw: {
  17848. height: math.unit(3.4, "feet"),
  17849. name: "Paw",
  17850. image: {
  17851. source: "./media/characters/goldeneye/paw.svg"
  17852. }
  17853. },
  17854. },
  17855. [
  17856. {
  17857. name: "Normal",
  17858. height: math.unit(13 + 1 / 12, "feet"),
  17859. default: true
  17860. },
  17861. ]
  17862. ))
  17863. characterMakers.push(() => makeCharacter(
  17864. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  17865. {
  17866. front: {
  17867. height: math.unit(6 + 1 / 12, "feet"),
  17868. weight: math.unit(210, "lb"),
  17869. name: "Front",
  17870. image: {
  17871. source: "./media/characters/leonardo-lycheborne/front.svg",
  17872. extra: 390 / 365,
  17873. bottom: 0.032
  17874. }
  17875. },
  17876. side: {
  17877. height: math.unit(6 + 1 / 12, "feet"),
  17878. weight: math.unit(210, "lb"),
  17879. name: "Side",
  17880. image: {
  17881. source: "./media/characters/leonardo-lycheborne/side.svg",
  17882. extra: 390 / 365,
  17883. bottom: 0.005
  17884. }
  17885. },
  17886. back: {
  17887. height: math.unit(6 + 1 / 12, "feet"),
  17888. weight: math.unit(210, "lb"),
  17889. name: "Back",
  17890. image: {
  17891. source: "./media/characters/leonardo-lycheborne/back.svg",
  17892. extra: 392 / 366,
  17893. bottom: 0.01
  17894. }
  17895. },
  17896. hand: {
  17897. height: math.unit(1.08, "feet"),
  17898. name: "Hand",
  17899. image: {
  17900. source: "./media/characters/leonardo-lycheborne/hand.svg"
  17901. }
  17902. },
  17903. foot: {
  17904. height: math.unit(1.32, "feet"),
  17905. name: "Foot",
  17906. image: {
  17907. source: "./media/characters/leonardo-lycheborne/foot.svg"
  17908. }
  17909. },
  17910. were: {
  17911. height: math.unit(20, "feet"),
  17912. weight: math.unit(7800, "lb"),
  17913. name: "Were",
  17914. image: {
  17915. source: "./media/characters/leonardo-lycheborne/were.svg",
  17916. extra: 308 / 294,
  17917. bottom: 0.048
  17918. }
  17919. },
  17920. feral: {
  17921. height: math.unit(7.5, "feet"),
  17922. weight: math.unit(600, "lb"),
  17923. name: "Feral",
  17924. image: {
  17925. source: "./media/characters/leonardo-lycheborne/feral.svg",
  17926. extra: 210 / 186,
  17927. bottom: 0.108
  17928. }
  17929. },
  17930. taur: {
  17931. height: math.unit(11, "feet"),
  17932. weight: math.unit(3300, "lb"),
  17933. name: "Taur",
  17934. image: {
  17935. source: "./media/characters/leonardo-lycheborne/taur.svg",
  17936. extra: 320 / 303,
  17937. bottom: 0.025
  17938. }
  17939. },
  17940. barghest: {
  17941. height: math.unit(11, "feet"),
  17942. weight: math.unit(1300, "lb"),
  17943. name: "Barghest",
  17944. image: {
  17945. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  17946. extra: 323 / 302,
  17947. bottom: 0.027
  17948. }
  17949. },
  17950. dick: {
  17951. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  17952. name: "Dick",
  17953. image: {
  17954. source: "./media/characters/leonardo-lycheborne/dick.svg"
  17955. }
  17956. },
  17957. dickWere: {
  17958. height: math.unit((20) / 3.8, "feet"),
  17959. name: "Dick (Were)",
  17960. image: {
  17961. source: "./media/characters/leonardo-lycheborne/dick.svg"
  17962. }
  17963. },
  17964. },
  17965. [
  17966. {
  17967. name: "Normal",
  17968. height: math.unit(6 + 1 / 12, "feet"),
  17969. default: true
  17970. },
  17971. ]
  17972. ))
  17973. characterMakers.push(() => makeCharacter(
  17974. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  17975. {
  17976. front: {
  17977. height: math.unit(10, "feet"),
  17978. weight: math.unit(350, "lb"),
  17979. name: "Front",
  17980. image: {
  17981. source: "./media/characters/jet/front.svg",
  17982. extra: 2050 / 1980,
  17983. bottom: 0.013
  17984. }
  17985. },
  17986. back: {
  17987. height: math.unit(10, "feet"),
  17988. weight: math.unit(350, "lb"),
  17989. name: "Back",
  17990. image: {
  17991. source: "./media/characters/jet/back.svg",
  17992. extra: 2050 / 1980,
  17993. bottom: 0.013
  17994. }
  17995. },
  17996. },
  17997. [
  17998. {
  17999. name: "Micro",
  18000. height: math.unit(6, "inches")
  18001. },
  18002. {
  18003. name: "Normal",
  18004. height: math.unit(10, "feet"),
  18005. default: true
  18006. },
  18007. {
  18008. name: "Macro",
  18009. height: math.unit(100, "feet")
  18010. },
  18011. ]
  18012. ))
  18013. characterMakers.push(() => makeCharacter(
  18014. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18015. {
  18016. front: {
  18017. height: math.unit(15, "feet"),
  18018. weight: math.unit(2800, "lb"),
  18019. name: "Front",
  18020. image: {
  18021. source: "./media/characters/tanarath/front.svg",
  18022. extra: 2392 / 2220,
  18023. bottom: 0.03
  18024. }
  18025. },
  18026. back: {
  18027. height: math.unit(15, "feet"),
  18028. weight: math.unit(2800, "lb"),
  18029. name: "Back",
  18030. image: {
  18031. source: "./media/characters/tanarath/back.svg",
  18032. extra: 2392 / 2220,
  18033. bottom: 0.03
  18034. }
  18035. },
  18036. },
  18037. [
  18038. {
  18039. name: "Normal",
  18040. height: math.unit(15, "feet"),
  18041. default: true
  18042. },
  18043. ]
  18044. ))
  18045. characterMakers.push(() => makeCharacter(
  18046. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18047. {
  18048. front: {
  18049. height: math.unit(7 + 1 / 12, "feet"),
  18050. weight: math.unit(175, "lb"),
  18051. name: "Front",
  18052. image: {
  18053. source: "./media/characters/patty-cattybatty/front.svg",
  18054. extra: 908 / 874,
  18055. bottom: 0.025
  18056. }
  18057. },
  18058. },
  18059. [
  18060. {
  18061. name: "Micro",
  18062. height: math.unit(1, "inch")
  18063. },
  18064. {
  18065. name: "Normal",
  18066. height: math.unit(7 + 1 / 12, "feet")
  18067. },
  18068. {
  18069. name: "Mini Macro",
  18070. height: math.unit(155, "feet")
  18071. },
  18072. {
  18073. name: "Macro",
  18074. height: math.unit(1077, "feet")
  18075. },
  18076. {
  18077. name: "Mega Macro",
  18078. height: math.unit(47650, "feet"),
  18079. default: true
  18080. },
  18081. {
  18082. name: "Giga Macro",
  18083. height: math.unit(440, "miles")
  18084. },
  18085. {
  18086. name: "Tera Macro",
  18087. height: math.unit(8700, "miles")
  18088. },
  18089. {
  18090. name: "Planetary Macro",
  18091. height: math.unit(32700, "miles")
  18092. },
  18093. {
  18094. name: "Solar Macro",
  18095. height: math.unit(550000, "miles")
  18096. },
  18097. {
  18098. name: "Celestial Macro",
  18099. height: math.unit(2.5, "AU")
  18100. },
  18101. ]
  18102. ))
  18103. characterMakers.push(() => makeCharacter(
  18104. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18105. {
  18106. front: {
  18107. height: math.unit(4 + 5 / 12, "feet"),
  18108. weight: math.unit(90, "lb"),
  18109. name: "Front",
  18110. image: {
  18111. source: "./media/characters/cappu/front.svg",
  18112. extra: 1247 / 1152,
  18113. bottom: 0.012
  18114. }
  18115. },
  18116. },
  18117. [
  18118. {
  18119. name: "Normal",
  18120. height: math.unit(4 + 5 / 12, "feet"),
  18121. default: true
  18122. },
  18123. ]
  18124. ))
  18125. characterMakers.push(() => makeCharacter(
  18126. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18127. {
  18128. frontDressed: {
  18129. height: math.unit(70, "cm"),
  18130. weight: math.unit(6, "kg"),
  18131. name: "Front (Dressed)",
  18132. image: {
  18133. source: "./media/characters/sebi/front-dressed.svg",
  18134. extra: 713.5 / 686.5,
  18135. bottom: 0.003
  18136. }
  18137. },
  18138. front: {
  18139. height: math.unit(70, "cm"),
  18140. weight: math.unit(5, "kg"),
  18141. name: "Front",
  18142. image: {
  18143. source: "./media/characters/sebi/front.svg",
  18144. extra: 713.5 / 686.5,
  18145. bottom: 0.003
  18146. }
  18147. }
  18148. },
  18149. [
  18150. {
  18151. name: "Normal",
  18152. height: math.unit(70, "cm"),
  18153. default: true
  18154. },
  18155. {
  18156. name: "Macro",
  18157. height: math.unit(8, "meters")
  18158. },
  18159. ]
  18160. ))
  18161. characterMakers.push(() => makeCharacter(
  18162. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18163. {
  18164. front: {
  18165. height: math.unit(6, "feet"),
  18166. weight: math.unit(150, "lb"),
  18167. name: "Front",
  18168. image: {
  18169. source: "./media/characters/typhek/front.svg",
  18170. extra: 1948 / 1929,
  18171. bottom: 0.025
  18172. }
  18173. },
  18174. side: {
  18175. height: math.unit(6, "feet"),
  18176. weight: math.unit(150, "lb"),
  18177. name: "Side",
  18178. image: {
  18179. source: "./media/characters/typhek/side.svg",
  18180. extra: 2034 / 2010,
  18181. bottom: 0.003
  18182. }
  18183. },
  18184. back: {
  18185. height: math.unit(6, "feet"),
  18186. weight: math.unit(150, "lb"),
  18187. name: "Back",
  18188. image: {
  18189. source: "./media/characters/typhek/back.svg",
  18190. extra: 2005 / 1978,
  18191. bottom: 0.004
  18192. }
  18193. },
  18194. palm: {
  18195. height: math.unit(1.2, "feet"),
  18196. name: "Palm",
  18197. image: {
  18198. source: "./media/characters/typhek/palm.svg"
  18199. }
  18200. },
  18201. fist: {
  18202. height: math.unit(1.1, "feet"),
  18203. name: "Fist",
  18204. image: {
  18205. source: "./media/characters/typhek/fist.svg"
  18206. }
  18207. },
  18208. foot: {
  18209. height: math.unit(1.57, "feet"),
  18210. name: "Foot",
  18211. image: {
  18212. source: "./media/characters/typhek/foot.svg"
  18213. }
  18214. },
  18215. sole: {
  18216. height: math.unit(2.05, "feet"),
  18217. name: "Sole",
  18218. image: {
  18219. source: "./media/characters/typhek/sole.svg"
  18220. }
  18221. },
  18222. },
  18223. [
  18224. {
  18225. name: "Macro",
  18226. height: math.unit(40, "stories"),
  18227. default: true
  18228. },
  18229. {
  18230. name: "Megamacro",
  18231. height: math.unit(1, "mile")
  18232. },
  18233. {
  18234. name: "Gigamacro",
  18235. height: math.unit(4000, "solarradii")
  18236. },
  18237. {
  18238. name: "Universal",
  18239. height: math.unit(1.1, "universes")
  18240. }
  18241. ]
  18242. ))
  18243. characterMakers.push(() => makeCharacter(
  18244. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18245. {
  18246. side: {
  18247. height: math.unit(5 + 7 / 12, "feet"),
  18248. weight: math.unit(150, "lb"),
  18249. name: "Side",
  18250. image: {
  18251. source: "./media/characters/kassy/side.svg",
  18252. extra: 1280 / 1225,
  18253. bottom: 0.002
  18254. }
  18255. },
  18256. front: {
  18257. height: math.unit(5 + 7 / 12, "feet"),
  18258. weight: math.unit(150, "lb"),
  18259. name: "Front",
  18260. image: {
  18261. source: "./media/characters/kassy/front.svg",
  18262. extra: 1280 / 1225,
  18263. bottom: 0.025
  18264. }
  18265. },
  18266. back: {
  18267. height: math.unit(5 + 7 / 12, "feet"),
  18268. weight: math.unit(150, "lb"),
  18269. name: "Back",
  18270. image: {
  18271. source: "./media/characters/kassy/back.svg",
  18272. extra: 1280 / 1225,
  18273. bottom: 0.002
  18274. }
  18275. },
  18276. foot: {
  18277. height: math.unit(1.266, "feet"),
  18278. name: "Foot",
  18279. image: {
  18280. source: "./media/characters/kassy/foot.svg"
  18281. }
  18282. },
  18283. },
  18284. [
  18285. {
  18286. name: "Normal",
  18287. height: math.unit(5 + 7 / 12, "feet")
  18288. },
  18289. {
  18290. name: "Macro",
  18291. height: math.unit(137, "feet"),
  18292. default: true
  18293. },
  18294. {
  18295. name: "Megamacro",
  18296. height: math.unit(1, "mile")
  18297. },
  18298. ]
  18299. ))
  18300. characterMakers.push(() => makeCharacter(
  18301. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18302. {
  18303. front: {
  18304. height: math.unit(6 + 1 / 12, "feet"),
  18305. weight: math.unit(200, "lb"),
  18306. name: "Front",
  18307. image: {
  18308. source: "./media/characters/neil/front.svg",
  18309. extra: 1326 / 1250,
  18310. bottom: 0.023
  18311. }
  18312. },
  18313. },
  18314. [
  18315. {
  18316. name: "Normal",
  18317. height: math.unit(6 + 1 / 12, "feet"),
  18318. default: true
  18319. },
  18320. {
  18321. name: "Macro",
  18322. height: math.unit(200, "feet")
  18323. },
  18324. ]
  18325. ))
  18326. characterMakers.push(() => makeCharacter(
  18327. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18328. {
  18329. front: {
  18330. height: math.unit(5 + 9 / 12, "feet"),
  18331. weight: math.unit(190, "lb"),
  18332. name: "Front",
  18333. image: {
  18334. source: "./media/characters/atticus/front.svg",
  18335. extra: 2934 / 2785,
  18336. bottom: 0.025
  18337. }
  18338. },
  18339. },
  18340. [
  18341. {
  18342. name: "Normal",
  18343. height: math.unit(5 + 9 / 12, "feet"),
  18344. default: true
  18345. },
  18346. {
  18347. name: "Macro",
  18348. height: math.unit(180, "feet")
  18349. },
  18350. ]
  18351. ))
  18352. characterMakers.push(() => makeCharacter(
  18353. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18354. {
  18355. side: {
  18356. height: math.unit(9, "feet"),
  18357. weight: math.unit(650, "lb"),
  18358. name: "Side",
  18359. image: {
  18360. source: "./media/characters/milo/side.svg",
  18361. extra: 2644 / 2310,
  18362. bottom: 0.032
  18363. }
  18364. },
  18365. },
  18366. [
  18367. {
  18368. name: "Normal",
  18369. height: math.unit(9, "feet"),
  18370. default: true
  18371. },
  18372. {
  18373. name: "Macro",
  18374. height: math.unit(300, "feet")
  18375. },
  18376. ]
  18377. ))
  18378. characterMakers.push(() => makeCharacter(
  18379. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18380. {
  18381. side: {
  18382. height: math.unit(8, "meters"),
  18383. weight: math.unit(90000, "kg"),
  18384. name: "Side",
  18385. image: {
  18386. source: "./media/characters/ijzer/side.svg",
  18387. extra: 2756 / 1600,
  18388. bottom: 0.01
  18389. }
  18390. },
  18391. },
  18392. [
  18393. {
  18394. name: "Small",
  18395. height: math.unit(3, "meters")
  18396. },
  18397. {
  18398. name: "Normal",
  18399. height: math.unit(8, "meters"),
  18400. default: true
  18401. },
  18402. {
  18403. name: "Normal+",
  18404. height: math.unit(10, "meters")
  18405. },
  18406. {
  18407. name: "Bigger",
  18408. height: math.unit(24, "meters")
  18409. },
  18410. {
  18411. name: "Huge",
  18412. height: math.unit(80, "meters")
  18413. },
  18414. ]
  18415. ))
  18416. characterMakers.push(() => makeCharacter(
  18417. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18418. {
  18419. front: {
  18420. height: math.unit(6 + 2 / 12, "feet"),
  18421. weight: math.unit(153, "lb"),
  18422. name: "Front",
  18423. image: {
  18424. source: "./media/characters/luca-cervicum/front.svg",
  18425. extra: 370 / 327,
  18426. bottom: 0.015
  18427. }
  18428. },
  18429. back: {
  18430. height: math.unit(6 + 2 / 12, "feet"),
  18431. weight: math.unit(153, "lb"),
  18432. name: "Back",
  18433. image: {
  18434. source: "./media/characters/luca-cervicum/back.svg",
  18435. extra: 367 / 333,
  18436. bottom: 0.005
  18437. }
  18438. },
  18439. frontGear: {
  18440. height: math.unit(6 + 2 / 12, "feet"),
  18441. weight: math.unit(173, "lb"),
  18442. name: "Front (Gear)",
  18443. image: {
  18444. source: "./media/characters/luca-cervicum/front-gear.svg",
  18445. extra: 377 / 333,
  18446. bottom: 0.006
  18447. }
  18448. },
  18449. },
  18450. [
  18451. {
  18452. name: "Normal",
  18453. height: math.unit(6 + 2 / 12, "feet"),
  18454. default: true
  18455. },
  18456. ]
  18457. ))
  18458. characterMakers.push(() => makeCharacter(
  18459. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18460. {
  18461. front: {
  18462. height: math.unit(6 + 1 / 12, "feet"),
  18463. weight: math.unit(304, "lb"),
  18464. name: "Front",
  18465. image: {
  18466. source: "./media/characters/oliver/front.svg",
  18467. extra: 157 / 143,
  18468. bottom: 0.08
  18469. }
  18470. },
  18471. },
  18472. [
  18473. {
  18474. name: "Normal",
  18475. height: math.unit(6 + 1 / 12, "feet"),
  18476. default: true
  18477. },
  18478. ]
  18479. ))
  18480. characterMakers.push(() => makeCharacter(
  18481. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18482. {
  18483. front: {
  18484. height: math.unit(5 + 7 / 12, "feet"),
  18485. weight: math.unit(140, "lb"),
  18486. name: "Front",
  18487. image: {
  18488. source: "./media/characters/shane/front.svg",
  18489. extra: 304 / 289,
  18490. bottom: 0.005
  18491. }
  18492. },
  18493. },
  18494. [
  18495. {
  18496. name: "Normal",
  18497. height: math.unit(5 + 7 / 12, "feet"),
  18498. default: true
  18499. },
  18500. ]
  18501. ))
  18502. characterMakers.push(() => makeCharacter(
  18503. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18504. {
  18505. front: {
  18506. height: math.unit(5 + 9 / 12, "feet"),
  18507. weight: math.unit(178, "lb"),
  18508. name: "Front",
  18509. image: {
  18510. source: "./media/characters/shin/front.svg",
  18511. extra: 159 / 151,
  18512. bottom: 0.015
  18513. }
  18514. },
  18515. },
  18516. [
  18517. {
  18518. name: "Normal",
  18519. height: math.unit(5 + 9 / 12, "feet"),
  18520. default: true
  18521. },
  18522. ]
  18523. ))
  18524. characterMakers.push(() => makeCharacter(
  18525. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18526. {
  18527. front: {
  18528. height: math.unit(5 + 10 / 12, "feet"),
  18529. weight: math.unit(168, "lb"),
  18530. name: "Front",
  18531. image: {
  18532. source: "./media/characters/xerxes/front.svg",
  18533. extra: 282 / 260,
  18534. bottom: 0.045
  18535. }
  18536. },
  18537. },
  18538. [
  18539. {
  18540. name: "Normal",
  18541. height: math.unit(5 + 10 / 12, "feet"),
  18542. default: true
  18543. },
  18544. ]
  18545. ))
  18546. characterMakers.push(() => makeCharacter(
  18547. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18548. {
  18549. front: {
  18550. height: math.unit(6 + 7 / 12, "feet"),
  18551. weight: math.unit(208, "lb"),
  18552. name: "Front",
  18553. image: {
  18554. source: "./media/characters/chaska/front.svg",
  18555. extra: 332 / 319,
  18556. bottom: 0.015
  18557. }
  18558. },
  18559. },
  18560. [
  18561. {
  18562. name: "Normal",
  18563. height: math.unit(6 + 7 / 12, "feet"),
  18564. default: true
  18565. },
  18566. ]
  18567. ))
  18568. characterMakers.push(() => makeCharacter(
  18569. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18570. {
  18571. front: {
  18572. height: math.unit(5 + 8 / 12, "feet"),
  18573. weight: math.unit(208, "lb"),
  18574. name: "Front",
  18575. image: {
  18576. source: "./media/characters/enuk/front.svg",
  18577. extra: 437 / 406,
  18578. bottom: 0.02
  18579. }
  18580. },
  18581. },
  18582. [
  18583. {
  18584. name: "Normal",
  18585. height: math.unit(5 + 8 / 12, "feet"),
  18586. default: true
  18587. },
  18588. ]
  18589. ))
  18590. characterMakers.push(() => makeCharacter(
  18591. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18592. {
  18593. front: {
  18594. height: math.unit(5 + 10 / 12, "feet"),
  18595. weight: math.unit(252, "lb"),
  18596. name: "Front",
  18597. image: {
  18598. source: "./media/characters/bruun/front.svg",
  18599. extra: 197 / 187,
  18600. bottom: 0.012
  18601. }
  18602. },
  18603. },
  18604. [
  18605. {
  18606. name: "Normal",
  18607. height: math.unit(5 + 10 / 12, "feet"),
  18608. default: true
  18609. },
  18610. ]
  18611. ))
  18612. characterMakers.push(() => makeCharacter(
  18613. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18614. {
  18615. front: {
  18616. height: math.unit(6 + 10 / 12, "feet"),
  18617. weight: math.unit(255, "lb"),
  18618. name: "Front",
  18619. image: {
  18620. source: "./media/characters/alexeev/front.svg",
  18621. extra: 213 / 200,
  18622. bottom: 0.05
  18623. }
  18624. },
  18625. },
  18626. [
  18627. {
  18628. name: "Normal",
  18629. height: math.unit(6 + 10 / 12, "feet"),
  18630. default: true
  18631. },
  18632. ]
  18633. ))
  18634. characterMakers.push(() => makeCharacter(
  18635. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  18636. {
  18637. front: {
  18638. height: math.unit(2 + 8 / 12, "feet"),
  18639. weight: math.unit(22, "lb"),
  18640. name: "Front",
  18641. image: {
  18642. source: "./media/characters/evelyn/front.svg",
  18643. extra: 208 / 180
  18644. }
  18645. },
  18646. },
  18647. [
  18648. {
  18649. name: "Normal",
  18650. height: math.unit(2 + 8 / 12, "feet"),
  18651. default: true
  18652. },
  18653. ]
  18654. ))
  18655. characterMakers.push(() => makeCharacter(
  18656. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  18657. {
  18658. front: {
  18659. height: math.unit(5 + 9 / 12, "feet"),
  18660. weight: math.unit(139, "lb"),
  18661. name: "Front",
  18662. image: {
  18663. source: "./media/characters/inca/front.svg",
  18664. extra: 294 / 291,
  18665. bottom: 0.03
  18666. }
  18667. },
  18668. },
  18669. [
  18670. {
  18671. name: "Normal",
  18672. height: math.unit(5 + 9 / 12, "feet"),
  18673. default: true
  18674. },
  18675. ]
  18676. ))
  18677. characterMakers.push(() => makeCharacter(
  18678. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  18679. {
  18680. front: {
  18681. height: math.unit(5 + 1 / 12, "feet"),
  18682. weight: math.unit(84, "lb"),
  18683. name: "Front",
  18684. image: {
  18685. source: "./media/characters/magdalene/front.svg",
  18686. extra: 293 / 273
  18687. }
  18688. },
  18689. },
  18690. [
  18691. {
  18692. name: "Normal",
  18693. height: math.unit(5 + 1 / 12, "feet"),
  18694. default: true
  18695. },
  18696. ]
  18697. ))
  18698. characterMakers.push(() => makeCharacter(
  18699. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  18700. {
  18701. front: {
  18702. height: math.unit(6 + 3 / 12, "feet"),
  18703. weight: math.unit(185, "lb"),
  18704. name: "Front",
  18705. image: {
  18706. source: "./media/characters/mera/front.svg",
  18707. extra: 291 / 277,
  18708. bottom: 0.03
  18709. }
  18710. },
  18711. },
  18712. [
  18713. {
  18714. name: "Normal",
  18715. height: math.unit(6 + 3 / 12, "feet"),
  18716. default: true
  18717. },
  18718. ]
  18719. ))
  18720. characterMakers.push(() => makeCharacter(
  18721. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  18722. {
  18723. front: {
  18724. height: math.unit(6 + 7 / 12, "feet"),
  18725. weight: math.unit(160, "lb"),
  18726. name: "Front",
  18727. image: {
  18728. source: "./media/characters/ceres/front.svg",
  18729. extra: 1023 / 950,
  18730. bottom: 0.027
  18731. }
  18732. },
  18733. back: {
  18734. height: math.unit(6 + 7 / 12, "feet"),
  18735. weight: math.unit(160, "lb"),
  18736. name: "Back",
  18737. image: {
  18738. source: "./media/characters/ceres/back.svg",
  18739. extra: 1023 / 950
  18740. }
  18741. },
  18742. },
  18743. [
  18744. {
  18745. name: "Normal",
  18746. height: math.unit(6 + 7 / 12, "feet"),
  18747. default: true
  18748. },
  18749. ]
  18750. ))
  18751. characterMakers.push(() => makeCharacter(
  18752. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  18753. {
  18754. front: {
  18755. height: math.unit(5 + 10 / 12, "feet"),
  18756. weight: math.unit(150, "lb"),
  18757. name: "Front",
  18758. image: {
  18759. source: "./media/characters/kris/front.svg",
  18760. extra: 885 / 803,
  18761. bottom: 0.03
  18762. }
  18763. },
  18764. },
  18765. [
  18766. {
  18767. name: "Normal",
  18768. height: math.unit(5 + 10 / 12, "feet"),
  18769. default: true
  18770. },
  18771. ]
  18772. ))
  18773. characterMakers.push(() => makeCharacter(
  18774. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  18775. {
  18776. front: {
  18777. height: math.unit(7, "feet"),
  18778. weight: math.unit(120, "kg"),
  18779. name: "Front",
  18780. image: {
  18781. source: "./media/characters/taluthus/front.svg",
  18782. extra: 903 / 833,
  18783. bottom: 0.015
  18784. }
  18785. },
  18786. },
  18787. [
  18788. {
  18789. name: "Normal",
  18790. height: math.unit(7, "feet"),
  18791. default: true
  18792. },
  18793. {
  18794. name: "Macro",
  18795. height: math.unit(300, "feet")
  18796. },
  18797. ]
  18798. ))
  18799. characterMakers.push(() => makeCharacter(
  18800. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  18801. {
  18802. front: {
  18803. height: math.unit(5 + 9 / 12, "feet"),
  18804. weight: math.unit(145, "lb"),
  18805. name: "Front",
  18806. image: {
  18807. source: "./media/characters/dawn/front.svg",
  18808. extra: 2094 / 2016,
  18809. bottom: 0.025
  18810. }
  18811. },
  18812. back: {
  18813. height: math.unit(5 + 9 / 12, "feet"),
  18814. weight: math.unit(160, "lb"),
  18815. name: "Back",
  18816. image: {
  18817. source: "./media/characters/dawn/back.svg",
  18818. extra: 2112 / 2080,
  18819. bottom: 0.005
  18820. }
  18821. },
  18822. },
  18823. [
  18824. {
  18825. name: "Normal",
  18826. height: math.unit(6 + 7 / 12, "feet"),
  18827. default: true
  18828. },
  18829. ]
  18830. ))
  18831. characterMakers.push(() => makeCharacter(
  18832. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  18833. {
  18834. anthro: {
  18835. height: math.unit(8 + 3 / 12, "feet"),
  18836. weight: math.unit(450, "lb"),
  18837. name: "Anthro",
  18838. image: {
  18839. source: "./media/characters/arador/anthro.svg",
  18840. extra: 1835 / 1718,
  18841. bottom: 0.025
  18842. }
  18843. },
  18844. feral: {
  18845. height: math.unit(4, "feet"),
  18846. weight: math.unit(200, "lb"),
  18847. name: "Feral",
  18848. image: {
  18849. source: "./media/characters/arador/feral.svg",
  18850. extra: 1683 / 1514,
  18851. bottom: 0.07
  18852. }
  18853. },
  18854. },
  18855. [
  18856. {
  18857. name: "Normal",
  18858. height: math.unit(8 + 3 / 12, "feet")
  18859. },
  18860. {
  18861. name: "Macro",
  18862. height: math.unit(82.5, "feet"),
  18863. default: true
  18864. },
  18865. ]
  18866. ))
  18867. characterMakers.push(() => makeCharacter(
  18868. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  18869. {
  18870. front: {
  18871. height: math.unit(5 + 10 / 12, "feet"),
  18872. weight: math.unit(125, "lb"),
  18873. name: "Front",
  18874. image: {
  18875. source: "./media/characters/dharsi/front.svg",
  18876. extra: 716 / 630,
  18877. bottom: 0.035
  18878. }
  18879. },
  18880. },
  18881. [
  18882. {
  18883. name: "Nano",
  18884. height: math.unit(100, "nm")
  18885. },
  18886. {
  18887. name: "Micro",
  18888. height: math.unit(2, "inches")
  18889. },
  18890. {
  18891. name: "Normal",
  18892. height: math.unit(5 + 10 / 12, "feet"),
  18893. default: true
  18894. },
  18895. {
  18896. name: "Macro",
  18897. height: math.unit(1000, "feet")
  18898. },
  18899. {
  18900. name: "Megamacro",
  18901. height: math.unit(10, "miles")
  18902. },
  18903. {
  18904. name: "Gigamacro",
  18905. height: math.unit(3000, "miles")
  18906. },
  18907. {
  18908. name: "Teramacro",
  18909. height: math.unit(500000, "miles")
  18910. },
  18911. {
  18912. name: "Teramacro+",
  18913. height: math.unit(30, "galaxies")
  18914. },
  18915. ]
  18916. ))
  18917. characterMakers.push(() => makeCharacter(
  18918. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  18919. {
  18920. front: {
  18921. height: math.unit(6, "feet"),
  18922. weight: math.unit(150, "lb"),
  18923. name: "Front",
  18924. image: {
  18925. source: "./media/characters/deathy/front.svg",
  18926. extra: 1552 / 1463,
  18927. bottom: 0.025
  18928. }
  18929. },
  18930. side: {
  18931. height: math.unit(6, "feet"),
  18932. weight: math.unit(150, "lb"),
  18933. name: "Side",
  18934. image: {
  18935. source: "./media/characters/deathy/side.svg",
  18936. extra: 1604 / 1455,
  18937. bottom: 0.025
  18938. }
  18939. },
  18940. back: {
  18941. height: math.unit(6, "feet"),
  18942. weight: math.unit(150, "lb"),
  18943. name: "Back",
  18944. image: {
  18945. source: "./media/characters/deathy/back.svg",
  18946. extra: 1580 / 1463,
  18947. bottom: 0.005
  18948. }
  18949. },
  18950. },
  18951. [
  18952. {
  18953. name: "Micro",
  18954. height: math.unit(5, "millimeters")
  18955. },
  18956. {
  18957. name: "Normal",
  18958. height: math.unit(6 + 5 / 12, "feet"),
  18959. default: true
  18960. },
  18961. ]
  18962. ))
  18963. characterMakers.push(() => makeCharacter(
  18964. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  18965. {
  18966. front: {
  18967. height: math.unit(16, "feet"),
  18968. weight: math.unit(4000, "lb"),
  18969. name: "Front",
  18970. image: {
  18971. source: "./media/characters/juniper/front.svg",
  18972. bottom: 0.04
  18973. }
  18974. },
  18975. },
  18976. [
  18977. {
  18978. name: "Normal",
  18979. height: math.unit(16, "feet"),
  18980. default: true
  18981. },
  18982. ]
  18983. ))
  18984. characterMakers.push(() => makeCharacter(
  18985. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  18986. {
  18987. front: {
  18988. height: math.unit(6, "feet"),
  18989. weight: math.unit(150, "lb"),
  18990. name: "Front",
  18991. image: {
  18992. source: "./media/characters/hipster/front.svg",
  18993. extra: 1312 / 1209,
  18994. bottom: 0.025
  18995. }
  18996. },
  18997. back: {
  18998. height: math.unit(6, "feet"),
  18999. weight: math.unit(150, "lb"),
  19000. name: "Back",
  19001. image: {
  19002. source: "./media/characters/hipster/back.svg",
  19003. extra: 1281 / 1196,
  19004. bottom: 0.01
  19005. }
  19006. },
  19007. },
  19008. [
  19009. {
  19010. name: "Micro",
  19011. height: math.unit(1, "mm")
  19012. },
  19013. {
  19014. name: "Normal",
  19015. height: math.unit(4, "inches"),
  19016. default: true
  19017. },
  19018. {
  19019. name: "Macro",
  19020. height: math.unit(500, "feet")
  19021. },
  19022. {
  19023. name: "Megamacro",
  19024. height: math.unit(1000, "miles")
  19025. },
  19026. ]
  19027. ))
  19028. characterMakers.push(() => makeCharacter(
  19029. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19030. {
  19031. front: {
  19032. height: math.unit(6, "feet"),
  19033. weight: math.unit(150, "lb"),
  19034. name: "Front",
  19035. image: {
  19036. source: "./media/characters/tendirmuldr/front.svg",
  19037. extra: 1878 / 1772,
  19038. bottom: 0.015
  19039. }
  19040. },
  19041. },
  19042. [
  19043. {
  19044. name: "Megamacro",
  19045. height: math.unit(1500, "miles"),
  19046. default: true
  19047. },
  19048. ]
  19049. ))
  19050. characterMakers.push(() => makeCharacter(
  19051. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19052. {
  19053. front: {
  19054. height: math.unit(14, "feet"),
  19055. weight: math.unit(12000, "lb"),
  19056. name: "Front",
  19057. image: {
  19058. source: "./media/characters/mort/front.svg",
  19059. extra: 365 / 318,
  19060. bottom: 0.01
  19061. }
  19062. },
  19063. side: {
  19064. height: math.unit(14, "feet"),
  19065. weight: math.unit(12000, "lb"),
  19066. name: "Side",
  19067. image: {
  19068. source: "./media/characters/mort/side.svg",
  19069. extra: 365 / 318,
  19070. bottom: 0.052
  19071. },
  19072. default: true
  19073. },
  19074. back: {
  19075. height: math.unit(14, "feet"),
  19076. weight: math.unit(12000, "lb"),
  19077. name: "Back",
  19078. image: {
  19079. source: "./media/characters/mort/back.svg",
  19080. extra: 371 / 332,
  19081. bottom: 0.18
  19082. }
  19083. },
  19084. },
  19085. [
  19086. {
  19087. name: "Normal",
  19088. height: math.unit(14, "feet"),
  19089. default: true
  19090. },
  19091. ]
  19092. ))
  19093. characterMakers.push(() => makeCharacter(
  19094. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19095. {
  19096. front: {
  19097. height: math.unit(8, "feet"),
  19098. weight: math.unit(1, "ton"),
  19099. name: "Front",
  19100. image: {
  19101. source: "./media/characters/lycoa/front.svg",
  19102. extra: 1875 / 1789,
  19103. bottom: 0.022
  19104. }
  19105. },
  19106. back: {
  19107. height: math.unit(8, "feet"),
  19108. weight: math.unit(1, "ton"),
  19109. name: "Back",
  19110. image: {
  19111. source: "./media/characters/lycoa/back.svg",
  19112. extra: 1835 / 1781,
  19113. bottom: 0.03
  19114. }
  19115. },
  19116. head: {
  19117. height: math.unit(2.1, "feet"),
  19118. name: "Head",
  19119. image: {
  19120. source: "./media/characters/lycoa/head.svg"
  19121. }
  19122. },
  19123. tailmaw: {
  19124. height: math.unit(1.9, "feet"),
  19125. name: "Tailmaw",
  19126. image: {
  19127. source: "./media/characters/lycoa/tailmaw.svg"
  19128. }
  19129. },
  19130. tentacles: {
  19131. height: math.unit(2.1, "feet"),
  19132. name: "Tentacles",
  19133. image: {
  19134. source: "./media/characters/lycoa/tentacles.svg"
  19135. }
  19136. },
  19137. dick: {
  19138. height: math.unit(1.73, "feet"),
  19139. name: "Dick",
  19140. image: {
  19141. source: "./media/characters/lycoa/dick.svg"
  19142. }
  19143. },
  19144. },
  19145. [
  19146. {
  19147. name: "Normal",
  19148. height: math.unit(8, "feet"),
  19149. default: true
  19150. },
  19151. {
  19152. name: "Macro",
  19153. height: math.unit(30, "feet")
  19154. },
  19155. ]
  19156. ))
  19157. characterMakers.push(() => makeCharacter(
  19158. { name: "Naldara", species: ["jackalope"], tags: ["anthro"] },
  19159. {
  19160. front: {
  19161. height: math.unit(4 + 2 / 12, "feet"),
  19162. weight: math.unit(70, "lb"),
  19163. name: "Front",
  19164. image: {
  19165. source: "./media/characters/naldara/front.svg",
  19166. extra: 841 / 720,
  19167. bottom: 0.04
  19168. }
  19169. },
  19170. },
  19171. [
  19172. {
  19173. name: "Normal",
  19174. height: math.unit(4 + 2 / 12, "feet"),
  19175. default: true
  19176. },
  19177. ]
  19178. ))
  19179. characterMakers.push(() => makeCharacter(
  19180. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19181. {
  19182. front: {
  19183. height: math.unit(13 + 7 / 12, "feet"),
  19184. weight: math.unit(1500, "lb"),
  19185. name: "Front",
  19186. image: {
  19187. source: "./media/characters/briar/front.svg",
  19188. extra: 626 / 596,
  19189. bottom: 0.08
  19190. }
  19191. },
  19192. },
  19193. [
  19194. {
  19195. name: "Normal",
  19196. height: math.unit(13 + 7 / 12, "feet"),
  19197. default: true
  19198. },
  19199. ]
  19200. ))
  19201. characterMakers.push(() => makeCharacter(
  19202. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19203. {
  19204. side: {
  19205. height: math.unit(10, "feet"),
  19206. weight: math.unit(500, "lb"),
  19207. name: "Side",
  19208. image: {
  19209. source: "./media/characters/vanguard/side.svg",
  19210. extra: 502 / 425,
  19211. bottom: 0.087
  19212. }
  19213. },
  19214. },
  19215. [
  19216. {
  19217. name: "Normal",
  19218. height: math.unit(10, "feet"),
  19219. default: true
  19220. },
  19221. ]
  19222. ))
  19223. characterMakers.push(() => makeCharacter(
  19224. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19225. {
  19226. front: {
  19227. height: math.unit(7.5, "feet"),
  19228. weight: math.unit(2, "lb"),
  19229. name: "Front",
  19230. image: {
  19231. source: "./media/characters/artemis/front.svg",
  19232. extra: 1192 / 1075,
  19233. bottom: 0.07
  19234. }
  19235. },
  19236. },
  19237. [
  19238. {
  19239. name: "Normal",
  19240. height: math.unit(7.5, "feet"),
  19241. default: true
  19242. },
  19243. {
  19244. name: "Enlarged",
  19245. height: math.unit(12, "feet")
  19246. },
  19247. ]
  19248. ))
  19249. characterMakers.push(() => makeCharacter(
  19250. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19251. {
  19252. front: {
  19253. height: math.unit(5 + 3 / 12, "feet"),
  19254. weight: math.unit(160, "lb"),
  19255. name: "Front",
  19256. image: {
  19257. source: "./media/characters/kira/front.svg",
  19258. extra: 906 / 786,
  19259. bottom: 0.01
  19260. }
  19261. },
  19262. back: {
  19263. height: math.unit(5 + 3 / 12, "feet"),
  19264. weight: math.unit(160, "lb"),
  19265. name: "Back",
  19266. image: {
  19267. source: "./media/characters/kira/back.svg",
  19268. extra: 882 / 757,
  19269. bottom: 0.005
  19270. }
  19271. },
  19272. frontDressed: {
  19273. height: math.unit(5 + 3 / 12, "feet"),
  19274. weight: math.unit(160, "lb"),
  19275. name: "Front (Dressed)",
  19276. image: {
  19277. source: "./media/characters/kira/front-dressed.svg",
  19278. extra: 906 / 786,
  19279. bottom: 0.01
  19280. }
  19281. },
  19282. beans: {
  19283. height: math.unit(0.92, "feet"),
  19284. name: "Beans",
  19285. image: {
  19286. source: "./media/characters/kira/beans.svg"
  19287. }
  19288. },
  19289. },
  19290. [
  19291. {
  19292. name: "Normal",
  19293. height: math.unit(5 + 3 / 12, "feet"),
  19294. default: true
  19295. },
  19296. ]
  19297. ))
  19298. characterMakers.push(() => makeCharacter(
  19299. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19300. {
  19301. front: {
  19302. height: math.unit(5 + 4 / 12, "feet"),
  19303. weight: math.unit(145, "lb"),
  19304. name: "Front",
  19305. image: {
  19306. source: "./media/characters/scramble/front.svg",
  19307. extra: 763 / 727,
  19308. bottom: 0.05
  19309. }
  19310. },
  19311. back: {
  19312. height: math.unit(5 + 4 / 12, "feet"),
  19313. weight: math.unit(145, "lb"),
  19314. name: "Back",
  19315. image: {
  19316. source: "./media/characters/scramble/back.svg",
  19317. extra: 826 / 737,
  19318. bottom: 0.002
  19319. }
  19320. },
  19321. },
  19322. [
  19323. {
  19324. name: "Normal",
  19325. height: math.unit(5 + 4 / 12, "feet"),
  19326. default: true
  19327. },
  19328. ]
  19329. ))
  19330. characterMakers.push(() => makeCharacter(
  19331. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19332. {
  19333. side: {
  19334. height: math.unit(6 + 2 / 12, "feet"),
  19335. weight: math.unit(190, "lb"),
  19336. name: "Side",
  19337. image: {
  19338. source: "./media/characters/biscuit/side.svg",
  19339. extra: 858 / 791,
  19340. bottom: 0.044
  19341. }
  19342. },
  19343. },
  19344. [
  19345. {
  19346. name: "Normal",
  19347. height: math.unit(6 + 2 / 12, "feet"),
  19348. default: true
  19349. },
  19350. ]
  19351. ))
  19352. characterMakers.push(() => makeCharacter(
  19353. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19354. {
  19355. front: {
  19356. height: math.unit(5 + 2 / 12, "feet"),
  19357. weight: math.unit(120, "lb"),
  19358. name: "Front",
  19359. image: {
  19360. source: "./media/characters/poffin/front.svg",
  19361. extra: 786 / 680,
  19362. bottom: 0.005
  19363. }
  19364. },
  19365. },
  19366. [
  19367. {
  19368. name: "Normal",
  19369. height: math.unit(5 + 2 / 12, "feet"),
  19370. default: true
  19371. },
  19372. ]
  19373. ))
  19374. characterMakers.push(() => makeCharacter(
  19375. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19376. {
  19377. front: {
  19378. height: math.unit(6 + 3 / 12, "feet"),
  19379. weight: math.unit(519, "lb"),
  19380. name: "Front",
  19381. image: {
  19382. source: "./media/characters/dhari/front.svg",
  19383. extra: 1048 / 946,
  19384. bottom: 0.015
  19385. }
  19386. },
  19387. back: {
  19388. height: math.unit(6 + 3 / 12, "feet"),
  19389. weight: math.unit(519, "lb"),
  19390. name: "Back",
  19391. image: {
  19392. source: "./media/characters/dhari/back.svg",
  19393. extra: 1048 / 931,
  19394. bottom: 0.005
  19395. }
  19396. },
  19397. frontDressed: {
  19398. height: math.unit(6 + 3 / 12, "feet"),
  19399. weight: math.unit(519, "lb"),
  19400. name: "Front (Dressed)",
  19401. image: {
  19402. source: "./media/characters/dhari/front-dressed.svg",
  19403. extra: 1713 / 1546,
  19404. bottom: 0.02
  19405. }
  19406. },
  19407. backDressed: {
  19408. height: math.unit(6 + 3 / 12, "feet"),
  19409. weight: math.unit(519, "lb"),
  19410. name: "Back (Dressed)",
  19411. image: {
  19412. source: "./media/characters/dhari/back-dressed.svg",
  19413. extra: 1699 / 1537,
  19414. bottom: 0.01
  19415. }
  19416. },
  19417. maw: {
  19418. height: math.unit(0.95, "feet"),
  19419. name: "Maw",
  19420. image: {
  19421. source: "./media/characters/dhari/maw.svg"
  19422. }
  19423. },
  19424. wereFront: {
  19425. height: math.unit(12 + 8 / 12, "feet"),
  19426. weight: math.unit(4000, "lb"),
  19427. name: "Front (Were)",
  19428. image: {
  19429. source: "./media/characters/dhari/were-front.svg",
  19430. extra: 1065 / 969,
  19431. bottom: 0.015
  19432. }
  19433. },
  19434. wereBack: {
  19435. height: math.unit(12 + 8 / 12, "feet"),
  19436. weight: math.unit(4000, "lb"),
  19437. name: "Back (Were)",
  19438. image: {
  19439. source: "./media/characters/dhari/were-back.svg",
  19440. extra: 1065 / 969,
  19441. bottom: 0.012
  19442. }
  19443. },
  19444. wereMaw: {
  19445. height: math.unit(0.625, "meters"),
  19446. name: "Maw (Were)",
  19447. image: {
  19448. source: "./media/characters/dhari/were-maw.svg"
  19449. }
  19450. },
  19451. },
  19452. [
  19453. {
  19454. name: "Normal",
  19455. height: math.unit(6 + 3 / 12, "feet"),
  19456. default: true
  19457. },
  19458. ]
  19459. ))
  19460. characterMakers.push(() => makeCharacter(
  19461. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19462. {
  19463. anthro: {
  19464. height: math.unit(5 + 7 / 12, "feet"),
  19465. weight: math.unit(175, "lb"),
  19466. name: "Anthro",
  19467. image: {
  19468. source: "./media/characters/rena-dyne/anthro.svg",
  19469. extra: 1849 / 1785,
  19470. bottom: 0.005
  19471. }
  19472. },
  19473. taur: {
  19474. height: math.unit(15 + 6 / 12, "feet"),
  19475. weight: math.unit(8000, "lb"),
  19476. name: "Taur",
  19477. image: {
  19478. source: "./media/characters/rena-dyne/taur.svg",
  19479. extra: 2315 / 2234,
  19480. bottom: 0.033
  19481. }
  19482. },
  19483. },
  19484. [
  19485. {
  19486. name: "Normal",
  19487. height: math.unit(5 + 7 / 12, "feet"),
  19488. default: true
  19489. },
  19490. ]
  19491. ))
  19492. characterMakers.push(() => makeCharacter(
  19493. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19494. {
  19495. front: {
  19496. height: math.unit(8, "feet"),
  19497. weight: math.unit(600, "lb"),
  19498. name: "Front",
  19499. image: {
  19500. source: "./media/characters/weremeep/front.svg",
  19501. extra: 967 / 862,
  19502. bottom: 0.01
  19503. }
  19504. },
  19505. },
  19506. [
  19507. {
  19508. name: "Normal",
  19509. height: math.unit(8, "feet"),
  19510. default: true
  19511. },
  19512. {
  19513. name: "Lorg",
  19514. height: math.unit(12, "feet")
  19515. },
  19516. {
  19517. name: "Oh Lawd She Comin'",
  19518. height: math.unit(20, "feet")
  19519. },
  19520. ]
  19521. ))
  19522. characterMakers.push(() => makeCharacter(
  19523. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19524. {
  19525. front: {
  19526. height: math.unit(4, "feet"),
  19527. weight: math.unit(90, "lb"),
  19528. name: "Front",
  19529. image: {
  19530. source: "./media/characters/reza/front.svg",
  19531. extra: 1183 / 1111,
  19532. bottom: 0.017
  19533. }
  19534. },
  19535. back: {
  19536. height: math.unit(4, "feet"),
  19537. weight: math.unit(90, "lb"),
  19538. name: "Back",
  19539. image: {
  19540. source: "./media/characters/reza/back.svg",
  19541. extra: 1183 / 1111,
  19542. bottom: 0.01
  19543. }
  19544. },
  19545. drake: {
  19546. height: math.unit(30, "feet"),
  19547. weight: math.unit(246960, "lb"),
  19548. name: "Drake",
  19549. image: {
  19550. source: "./media/characters/reza/drake.svg",
  19551. extra: 2350 / 2024,
  19552. bottom: 60.7 / 2403
  19553. }
  19554. },
  19555. },
  19556. [
  19557. {
  19558. name: "Normal",
  19559. height: math.unit(4, "feet"),
  19560. default: true
  19561. },
  19562. ]
  19563. ))
  19564. characterMakers.push(() => makeCharacter(
  19565. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  19566. {
  19567. side: {
  19568. height: math.unit(15, "feet"),
  19569. weight: math.unit(14, "tons"),
  19570. name: "Side",
  19571. image: {
  19572. source: "./media/characters/athea/side.svg",
  19573. extra: 960 / 540,
  19574. bottom: 0.003
  19575. }
  19576. },
  19577. sitting: {
  19578. height: math.unit(6 * 2.85, "feet"),
  19579. weight: math.unit(14, "tons"),
  19580. name: "Sitting",
  19581. image: {
  19582. source: "./media/characters/athea/sitting.svg",
  19583. extra: 621 / 581,
  19584. bottom: 0.075
  19585. }
  19586. },
  19587. maw: {
  19588. height: math.unit(7.59498031496063, "feet"),
  19589. name: "Maw",
  19590. image: {
  19591. source: "./media/characters/athea/maw.svg"
  19592. }
  19593. },
  19594. },
  19595. [
  19596. {
  19597. name: "Lap Cat",
  19598. height: math.unit(2.5, "feet")
  19599. },
  19600. {
  19601. name: "Minimacro",
  19602. height: math.unit(15, "feet"),
  19603. default: true
  19604. },
  19605. {
  19606. name: "Macro",
  19607. height: math.unit(120, "feet")
  19608. },
  19609. {
  19610. name: "Macro+",
  19611. height: math.unit(640, "feet")
  19612. },
  19613. {
  19614. name: "Colossus",
  19615. height: math.unit(2.2, "miles")
  19616. },
  19617. ]
  19618. ))
  19619. characterMakers.push(() => makeCharacter(
  19620. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  19621. {
  19622. front: {
  19623. height: math.unit(8 + 8 / 12, "feet"),
  19624. weight: math.unit(130, "kg"),
  19625. name: "Front",
  19626. image: {
  19627. source: "./media/characters/seroko/front.svg",
  19628. extra: 1385 / 1280,
  19629. bottom: 0.025
  19630. }
  19631. },
  19632. back: {
  19633. height: math.unit(8 + 8 / 12, "feet"),
  19634. weight: math.unit(130, "kg"),
  19635. name: "Back",
  19636. image: {
  19637. source: "./media/characters/seroko/back.svg",
  19638. extra: 1369 / 1238,
  19639. bottom: 0.018
  19640. }
  19641. },
  19642. frontDressed: {
  19643. height: math.unit(8 + 8 / 12, "feet"),
  19644. weight: math.unit(130, "kg"),
  19645. name: "Front (Dressed)",
  19646. image: {
  19647. source: "./media/characters/seroko/front-dressed.svg",
  19648. extra: 1366 / 1275,
  19649. bottom: 0.03
  19650. }
  19651. },
  19652. },
  19653. [
  19654. {
  19655. name: "Normal",
  19656. height: math.unit(8 + 8 / 12, "feet"),
  19657. default: true
  19658. },
  19659. ]
  19660. ))
  19661. characterMakers.push(() => makeCharacter(
  19662. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  19663. {
  19664. front: {
  19665. height: math.unit(5.5, "feet"),
  19666. weight: math.unit(160, "lb"),
  19667. name: "Front",
  19668. image: {
  19669. source: "./media/characters/quatzi/front.svg",
  19670. extra: 2346 / 2242,
  19671. bottom: 0.015
  19672. }
  19673. },
  19674. },
  19675. [
  19676. {
  19677. name: "Normal",
  19678. height: math.unit(5.5, "feet"),
  19679. default: true
  19680. },
  19681. {
  19682. name: "Big",
  19683. height: math.unit(7.7, "feet")
  19684. },
  19685. ]
  19686. ))
  19687. characterMakers.push(() => makeCharacter(
  19688. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  19689. {
  19690. front: {
  19691. height: math.unit(5 + 11 / 12, "feet"),
  19692. weight: math.unit(180, "lb"),
  19693. name: "Front",
  19694. image: {
  19695. source: "./media/characters/sen/front.svg",
  19696. extra: 1321 / 1254,
  19697. bottom: 0.015
  19698. }
  19699. },
  19700. side: {
  19701. height: math.unit(5 + 11 / 12, "feet"),
  19702. weight: math.unit(180, "lb"),
  19703. name: "Side",
  19704. image: {
  19705. source: "./media/characters/sen/side.svg",
  19706. extra: 1321 / 1254,
  19707. bottom: 0.007
  19708. }
  19709. },
  19710. back: {
  19711. height: math.unit(5 + 11 / 12, "feet"),
  19712. weight: math.unit(180, "lb"),
  19713. name: "Back",
  19714. image: {
  19715. source: "./media/characters/sen/back.svg",
  19716. extra: 1321 / 1254
  19717. }
  19718. },
  19719. },
  19720. [
  19721. {
  19722. name: "Normal",
  19723. height: math.unit(5 + 11 / 12, "feet"),
  19724. default: true
  19725. },
  19726. ]
  19727. ))
  19728. characterMakers.push(() => makeCharacter(
  19729. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  19730. {
  19731. front: {
  19732. height: math.unit(166.6, "cm"),
  19733. weight: math.unit(66.6, "kg"),
  19734. name: "Front",
  19735. image: {
  19736. source: "./media/characters/fruity/front.svg",
  19737. extra: 1510 / 1386,
  19738. bottom: 0.04
  19739. }
  19740. },
  19741. back: {
  19742. height: math.unit(166.6, "cm"),
  19743. weight: math.unit(66.6, "lb"),
  19744. name: "Back",
  19745. image: {
  19746. source: "./media/characters/fruity/back.svg",
  19747. extra: 1563 / 1435,
  19748. bottom: 0.005
  19749. }
  19750. },
  19751. },
  19752. [
  19753. {
  19754. name: "Normal",
  19755. height: math.unit(166.6, "cm"),
  19756. default: true
  19757. },
  19758. {
  19759. name: "Demonic",
  19760. height: math.unit(166.6, "feet")
  19761. },
  19762. ]
  19763. ))
  19764. characterMakers.push(() => makeCharacter(
  19765. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  19766. {
  19767. side: {
  19768. height: math.unit(10, "feet"),
  19769. weight: math.unit(500, "lb"),
  19770. name: "Side",
  19771. image: {
  19772. source: "./media/characters/zost/side.svg",
  19773. extra: 966 / 880,
  19774. bottom: 0.075
  19775. }
  19776. },
  19777. mawFront: {
  19778. height: math.unit(1.08, "meters"),
  19779. name: "Maw (Front)",
  19780. image: {
  19781. source: "./media/characters/zost/maw-front.svg"
  19782. }
  19783. },
  19784. mawSide: {
  19785. height: math.unit(2.66, "feet"),
  19786. name: "Maw (Side)",
  19787. image: {
  19788. source: "./media/characters/zost/maw-side.svg"
  19789. }
  19790. },
  19791. },
  19792. [
  19793. {
  19794. name: "Normal",
  19795. height: math.unit(10, "feet"),
  19796. default: true
  19797. },
  19798. ]
  19799. ))
  19800. characterMakers.push(() => makeCharacter(
  19801. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  19802. {
  19803. front: {
  19804. height: math.unit(5 + 4 / 12, "feet"),
  19805. weight: math.unit(120, "lb"),
  19806. name: "Front",
  19807. image: {
  19808. source: "./media/characters/luci/front.svg",
  19809. extra: 1985 / 1884,
  19810. bottom: 0.04
  19811. }
  19812. },
  19813. back: {
  19814. height: math.unit(5 + 4 / 12, "feet"),
  19815. weight: math.unit(120, "lb"),
  19816. name: "Back",
  19817. image: {
  19818. source: "./media/characters/luci/back.svg",
  19819. extra: 1892 / 1791,
  19820. bottom: 0.002
  19821. }
  19822. },
  19823. },
  19824. [
  19825. {
  19826. name: "Normal",
  19827. height: math.unit(5 + 4 / 12, "feet"),
  19828. default: true
  19829. },
  19830. ]
  19831. ))
  19832. characterMakers.push(() => makeCharacter(
  19833. { name: "2th", species: ["monster"], tags: ["anthro"] },
  19834. {
  19835. front: {
  19836. height: math.unit(1500, "feet"),
  19837. weight: math.unit(3.8e6, "tons"),
  19838. name: "Front",
  19839. image: {
  19840. source: "./media/characters/2th/front.svg",
  19841. extra: 3489 / 3350,
  19842. bottom: 0.1
  19843. }
  19844. },
  19845. foot: {
  19846. height: math.unit(461, "feet"),
  19847. name: "Foot",
  19848. image: {
  19849. source: "./media/characters/2th/foot.svg"
  19850. }
  19851. },
  19852. },
  19853. [
  19854. {
  19855. name: "\"Micro\"",
  19856. height: math.unit(15 + 7 / 12, "feet")
  19857. },
  19858. {
  19859. name: "Normal",
  19860. height: math.unit(1500, "feet"),
  19861. default: true
  19862. },
  19863. {
  19864. name: "Macro",
  19865. height: math.unit(5000, "feet")
  19866. },
  19867. {
  19868. name: "Megamacro",
  19869. height: math.unit(15, "miles")
  19870. },
  19871. {
  19872. name: "Gigamacro",
  19873. height: math.unit(4000, "miles")
  19874. },
  19875. {
  19876. name: "Galactic",
  19877. height: math.unit(50, "AU")
  19878. },
  19879. ]
  19880. ))
  19881. characterMakers.push(() => makeCharacter(
  19882. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  19883. {
  19884. front: {
  19885. height: math.unit(5 + 6 / 12, "feet"),
  19886. weight: math.unit(220, "lb"),
  19887. name: "Front",
  19888. image: {
  19889. source: "./media/characters/amethyst/front.svg",
  19890. extra: 2078 / 2040,
  19891. bottom: 0.045
  19892. }
  19893. },
  19894. back: {
  19895. height: math.unit(5 + 6 / 12, "feet"),
  19896. weight: math.unit(220, "lb"),
  19897. name: "Back",
  19898. image: {
  19899. source: "./media/characters/amethyst/back.svg",
  19900. extra: 2021 / 1989,
  19901. bottom: 0.02
  19902. }
  19903. },
  19904. },
  19905. [
  19906. {
  19907. name: "Normal",
  19908. height: math.unit(5 + 6 / 12, "feet"),
  19909. default: true
  19910. },
  19911. ]
  19912. ))
  19913. characterMakers.push(() => makeCharacter(
  19914. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  19915. {
  19916. front: {
  19917. height: math.unit(4 + 11 / 12, "feet"),
  19918. weight: math.unit(120, "lb"),
  19919. name: "Front",
  19920. image: {
  19921. source: "./media/characters/yumi-akiyama/front.svg",
  19922. extra: 1327 / 1235,
  19923. bottom: 0.02
  19924. }
  19925. },
  19926. back: {
  19927. height: math.unit(4 + 11 / 12, "feet"),
  19928. weight: math.unit(120, "lb"),
  19929. name: "Back",
  19930. image: {
  19931. source: "./media/characters/yumi-akiyama/back.svg",
  19932. extra: 1287 / 1245,
  19933. bottom: 0.002
  19934. }
  19935. },
  19936. },
  19937. [
  19938. {
  19939. name: "Galactic",
  19940. height: math.unit(50, "galaxies"),
  19941. default: true
  19942. },
  19943. {
  19944. name: "Universal",
  19945. height: math.unit(100, "universes")
  19946. },
  19947. ]
  19948. ))
  19949. characterMakers.push(() => makeCharacter(
  19950. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  19951. {
  19952. front: {
  19953. height: math.unit(8, "feet"),
  19954. weight: math.unit(500, "lb"),
  19955. name: "Front",
  19956. image: {
  19957. source: "./media/characters/rifter-yrmori/front.svg",
  19958. extra: 1180 / 1125,
  19959. bottom: 0.02
  19960. }
  19961. },
  19962. back: {
  19963. height: math.unit(8, "feet"),
  19964. weight: math.unit(500, "lb"),
  19965. name: "Back",
  19966. image: {
  19967. source: "./media/characters/rifter-yrmori/back.svg",
  19968. extra: 1190 / 1145,
  19969. bottom: 0.001
  19970. }
  19971. },
  19972. wings: {
  19973. height: math.unit(7.75, "feet"),
  19974. weight: math.unit(500, "lb"),
  19975. name: "Wings",
  19976. image: {
  19977. source: "./media/characters/rifter-yrmori/wings.svg",
  19978. extra: 1357 / 1285
  19979. }
  19980. },
  19981. maw: {
  19982. height: math.unit(0.8, "feet"),
  19983. name: "Maw",
  19984. image: {
  19985. source: "./media/characters/rifter-yrmori/maw.svg"
  19986. }
  19987. },
  19988. },
  19989. [
  19990. {
  19991. name: "Normal",
  19992. height: math.unit(8, "feet"),
  19993. default: true
  19994. },
  19995. {
  19996. name: "Macro",
  19997. height: math.unit(42, "meters")
  19998. },
  19999. ]
  20000. ))
  20001. characterMakers.push(() => makeCharacter(
  20002. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20003. {
  20004. were: {
  20005. height: math.unit(25 + 6 / 12, "feet"),
  20006. weight: math.unit(10000, "lb"),
  20007. name: "Were",
  20008. image: {
  20009. source: "./media/characters/tahajin/were.svg",
  20010. extra: 801 / 770,
  20011. bottom: 0.042
  20012. }
  20013. },
  20014. aquatic: {
  20015. height: math.unit(6 + 4 / 12, "feet"),
  20016. weight: math.unit(160, "lb"),
  20017. name: "Aquatic",
  20018. image: {
  20019. source: "./media/characters/tahajin/aquatic.svg",
  20020. extra: 572 / 542,
  20021. bottom: 0.04
  20022. }
  20023. },
  20024. chow: {
  20025. height: math.unit(8 + 11 / 12, "feet"),
  20026. weight: math.unit(450, "lb"),
  20027. name: "Chow",
  20028. image: {
  20029. source: "./media/characters/tahajin/chow.svg",
  20030. extra: 660 / 640,
  20031. bottom: 0.015
  20032. }
  20033. },
  20034. demiNaga: {
  20035. height: math.unit(6 + 8 / 12, "feet"),
  20036. weight: math.unit(300, "lb"),
  20037. name: "Demi Naga",
  20038. image: {
  20039. source: "./media/characters/tahajin/demi-naga.svg",
  20040. extra: 643 / 615,
  20041. bottom: 0.1
  20042. }
  20043. },
  20044. data: {
  20045. height: math.unit(5, "inches"),
  20046. weight: math.unit(0.1, "lb"),
  20047. name: "Data",
  20048. image: {
  20049. source: "./media/characters/tahajin/data.svg"
  20050. }
  20051. },
  20052. fluu: {
  20053. height: math.unit(5 + 7 / 12, "feet"),
  20054. weight: math.unit(140, "lb"),
  20055. name: "Fluu",
  20056. image: {
  20057. source: "./media/characters/tahajin/fluu.svg",
  20058. extra: 628 / 592,
  20059. bottom: 0.02
  20060. }
  20061. },
  20062. starWarrior: {
  20063. height: math.unit(4 + 5 / 12, "feet"),
  20064. weight: math.unit(50, "lb"),
  20065. name: "Star Warrior",
  20066. image: {
  20067. source: "./media/characters/tahajin/star-warrior.svg"
  20068. }
  20069. },
  20070. },
  20071. [
  20072. {
  20073. name: "Normal",
  20074. height: math.unit(25 + 6 / 12, "feet"),
  20075. default: true
  20076. },
  20077. ]
  20078. ))
  20079. characterMakers.push(() => makeCharacter(
  20080. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20081. {
  20082. front: {
  20083. height: math.unit(8, "feet"),
  20084. weight: math.unit(350, "lb"),
  20085. name: "Front",
  20086. image: {
  20087. source: "./media/characters/gabira/front.svg",
  20088. extra: 608 / 580,
  20089. bottom: 0.03
  20090. }
  20091. },
  20092. back: {
  20093. height: math.unit(8, "feet"),
  20094. weight: math.unit(350, "lb"),
  20095. name: "Back",
  20096. image: {
  20097. source: "./media/characters/gabira/back.svg",
  20098. extra: 608 / 580,
  20099. bottom: 0.03
  20100. }
  20101. },
  20102. },
  20103. [
  20104. {
  20105. name: "Normal",
  20106. height: math.unit(8, "feet"),
  20107. default: true
  20108. },
  20109. ]
  20110. ))
  20111. characterMakers.push(() => makeCharacter(
  20112. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20113. {
  20114. front: {
  20115. height: math.unit(5 + 3 / 12, "feet"),
  20116. weight: math.unit(137, "lb"),
  20117. name: "Front",
  20118. image: {
  20119. source: "./media/characters/sasha-katraine/front.svg",
  20120. bottom: 0.045
  20121. }
  20122. },
  20123. },
  20124. [
  20125. {
  20126. name: "Micro",
  20127. height: math.unit(5, "inches")
  20128. },
  20129. {
  20130. name: "Normal",
  20131. height: math.unit(5 + 3 / 12, "feet"),
  20132. default: true
  20133. },
  20134. ]
  20135. ))
  20136. characterMakers.push(() => makeCharacter(
  20137. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20138. {
  20139. side: {
  20140. height: math.unit(4, "inches"),
  20141. weight: math.unit(200, "grams"),
  20142. name: "Side",
  20143. image: {
  20144. source: "./media/characters/der/side.svg",
  20145. extra: 719 / 400,
  20146. bottom: 30.6 / 749.9187
  20147. }
  20148. },
  20149. },
  20150. [
  20151. {
  20152. name: "Micro",
  20153. height: math.unit(4, "inches"),
  20154. default: true
  20155. },
  20156. ]
  20157. ))
  20158. characterMakers.push(() => makeCharacter(
  20159. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20160. {
  20161. side: {
  20162. height: math.unit(30, "meters"),
  20163. weight: math.unit(700, "tonnes"),
  20164. name: "Side",
  20165. image: {
  20166. source: "./media/characters/fixerdragon/side.svg",
  20167. extra: (1293.0514 - 116.03) / 1106.86,
  20168. bottom: 116.03 / 1293.0514
  20169. }
  20170. },
  20171. },
  20172. [
  20173. {
  20174. name: "Planck",
  20175. height: math.unit(1.6e-35, "meters")
  20176. },
  20177. {
  20178. name: "Micro",
  20179. height: math.unit(0.4, "meters")
  20180. },
  20181. {
  20182. name: "Normal",
  20183. height: math.unit(30, "meters"),
  20184. default: true
  20185. },
  20186. {
  20187. name: "Megamacro",
  20188. height: math.unit(1.2, "megameters")
  20189. },
  20190. {
  20191. name: "Teramacro",
  20192. height: math.unit(130, "terameters")
  20193. },
  20194. {
  20195. name: "Yottamacro",
  20196. height: math.unit(6200, "yottameters")
  20197. },
  20198. ]
  20199. ));
  20200. characterMakers.push(() => makeCharacter(
  20201. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20202. {
  20203. front: {
  20204. height: math.unit(8, "feet"),
  20205. weight: math.unit(250, "lb"),
  20206. name: "Front",
  20207. image: {
  20208. source: "./media/characters/kite/front.svg",
  20209. extra: 2796 / 2659,
  20210. bottom: 0.002
  20211. }
  20212. },
  20213. },
  20214. [
  20215. {
  20216. name: "Normal",
  20217. height: math.unit(8, "feet"),
  20218. default: true
  20219. },
  20220. {
  20221. name: "Macro",
  20222. height: math.unit(360, "feet")
  20223. },
  20224. {
  20225. name: "Megamacro",
  20226. height: math.unit(1500, "feet")
  20227. },
  20228. ]
  20229. ))
  20230. characterMakers.push(() => makeCharacter(
  20231. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20232. {
  20233. front: {
  20234. height: math.unit(5 + 10 / 12, "feet"),
  20235. weight: math.unit(150, "lb"),
  20236. name: "Front",
  20237. image: {
  20238. source: "./media/characters/poojawa-vynar/front.svg",
  20239. extra: (1506.1547 - 55) / 1356.6,
  20240. bottom: 55 / 1506.1547
  20241. }
  20242. },
  20243. frontTailless: {
  20244. height: math.unit(5 + 10 / 12, "feet"),
  20245. weight: math.unit(150, "lb"),
  20246. name: "Front (Tailless)",
  20247. image: {
  20248. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20249. extra: (1506.1547 - 55) / 1356.6,
  20250. bottom: 55 / 1506.1547
  20251. }
  20252. },
  20253. },
  20254. [
  20255. {
  20256. name: "Normal",
  20257. height: math.unit(5 + 10 / 12, "feet"),
  20258. default: true
  20259. },
  20260. ]
  20261. ))
  20262. characterMakers.push(() => makeCharacter(
  20263. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20264. {
  20265. front: {
  20266. height: math.unit(293, "meters"),
  20267. weight: math.unit(70400, "tons"),
  20268. name: "Front",
  20269. image: {
  20270. source: "./media/characters/violette/front.svg",
  20271. extra: 1227 / 1180,
  20272. bottom: 0.005
  20273. }
  20274. },
  20275. back: {
  20276. height: math.unit(293, "meters"),
  20277. weight: math.unit(70400, "tons"),
  20278. name: "Back",
  20279. image: {
  20280. source: "./media/characters/violette/back.svg",
  20281. extra: 1227 / 1180,
  20282. bottom: 0.005
  20283. }
  20284. },
  20285. },
  20286. [
  20287. {
  20288. name: "Macro",
  20289. height: math.unit(293, "meters"),
  20290. default: true
  20291. },
  20292. ]
  20293. ))
  20294. characterMakers.push(() => makeCharacter(
  20295. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20296. {
  20297. front: {
  20298. height: math.unit(1050, "feet"),
  20299. weight: math.unit(200000, "tons"),
  20300. name: "Front",
  20301. image: {
  20302. source: "./media/characters/alessandra/front.svg",
  20303. extra: 960 / 912,
  20304. bottom: 0.06
  20305. }
  20306. },
  20307. },
  20308. [
  20309. {
  20310. name: "Macro",
  20311. height: math.unit(1050, "feet")
  20312. },
  20313. {
  20314. name: "Macro+",
  20315. height: math.unit(900, "meters"),
  20316. default: true
  20317. },
  20318. ]
  20319. ))
  20320. characterMakers.push(() => makeCharacter(
  20321. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20322. {
  20323. front: {
  20324. height: math.unit(5, "feet"),
  20325. weight: math.unit(187, "lb"),
  20326. name: "Front",
  20327. image: {
  20328. source: "./media/characters/person/front.svg",
  20329. extra: 3087 / 2945,
  20330. bottom: 91 / 3181
  20331. }
  20332. },
  20333. },
  20334. [
  20335. {
  20336. name: "Micro",
  20337. height: math.unit(3, "inches")
  20338. },
  20339. {
  20340. name: "Normal",
  20341. height: math.unit(5, "feet"),
  20342. default: true
  20343. },
  20344. {
  20345. name: "Macro",
  20346. height: math.unit(90, "feet")
  20347. },
  20348. {
  20349. name: "Max Size",
  20350. height: math.unit(280, "feet")
  20351. },
  20352. ]
  20353. ))
  20354. characterMakers.push(() => makeCharacter(
  20355. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20356. {
  20357. front: {
  20358. height: math.unit(4.5, "meters"),
  20359. weight: math.unit(3200, "lb"),
  20360. name: "Front",
  20361. image: {
  20362. source: "./media/characters/ty/front.svg",
  20363. extra: 1038 / 960,
  20364. bottom: 31.156 / 1068
  20365. }
  20366. },
  20367. back: {
  20368. height: math.unit(4.5, "meters"),
  20369. weight: math.unit(3200, "lb"),
  20370. name: "Back",
  20371. image: {
  20372. source: "./media/characters/ty/back.svg",
  20373. extra: 1044 / 966,
  20374. bottom: 7.48 / 1049
  20375. }
  20376. },
  20377. },
  20378. [
  20379. {
  20380. name: "Normal",
  20381. height: math.unit(4.5, "meters"),
  20382. default: true
  20383. },
  20384. ]
  20385. ))
  20386. characterMakers.push(() => makeCharacter(
  20387. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20388. {
  20389. front: {
  20390. height: math.unit(5 + 4 / 12, "feet"),
  20391. weight: math.unit(115, "lb"),
  20392. name: "Front",
  20393. image: {
  20394. source: "./media/characters/rocky/front.svg",
  20395. extra: 1012 / 975,
  20396. bottom: 54 / 1066
  20397. }
  20398. },
  20399. },
  20400. [
  20401. {
  20402. name: "Normal",
  20403. height: math.unit(5 + 4 / 12, "feet"),
  20404. default: true
  20405. },
  20406. ]
  20407. ))
  20408. characterMakers.push(() => makeCharacter(
  20409. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20410. {
  20411. upright: {
  20412. height: math.unit(6, "meters"),
  20413. weight: math.unit(4000, "kg"),
  20414. name: "Upright",
  20415. image: {
  20416. source: "./media/characters/ruin/upright.svg",
  20417. extra: 668 / 661,
  20418. bottom: 42 / 799.8396
  20419. }
  20420. },
  20421. },
  20422. [
  20423. {
  20424. name: "Normal",
  20425. height: math.unit(6, "meters"),
  20426. default: true
  20427. },
  20428. ]
  20429. ))
  20430. characterMakers.push(() => makeCharacter(
  20431. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20432. {
  20433. front: {
  20434. height: math.unit(5, "feet"),
  20435. weight: math.unit(106, "lb"),
  20436. name: "Front",
  20437. image: {
  20438. source: "./media/characters/robin/front.svg",
  20439. extra: 862 / 799,
  20440. bottom: 42.4 / 914.8856
  20441. }
  20442. },
  20443. },
  20444. [
  20445. {
  20446. name: "Normal",
  20447. height: math.unit(5, "feet"),
  20448. default: true
  20449. },
  20450. ]
  20451. ))
  20452. characterMakers.push(() => makeCharacter(
  20453. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20454. {
  20455. side: {
  20456. height: math.unit(3, "feet"),
  20457. weight: math.unit(225, "lb"),
  20458. name: "Side",
  20459. image: {
  20460. source: "./media/characters/saian/side.svg",
  20461. extra: 566 / 356,
  20462. bottom: 79.7 / 643
  20463. }
  20464. },
  20465. maw: {
  20466. height: math.unit(2.85, "feet"),
  20467. name: "Maw",
  20468. image: {
  20469. source: "./media/characters/saian/maw.svg"
  20470. }
  20471. },
  20472. },
  20473. [
  20474. {
  20475. name: "Normal",
  20476. height: math.unit(3, "feet"),
  20477. default: true
  20478. },
  20479. ]
  20480. ))
  20481. characterMakers.push(() => makeCharacter(
  20482. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20483. {
  20484. side: {
  20485. height: math.unit(8, "feet"),
  20486. weight: math.unit(300, "lb"),
  20487. name: "Side",
  20488. image: {
  20489. source: "./media/characters/equus-silvermane/side.svg",
  20490. extra: 2176 / 2050,
  20491. bottom: 65.7 / 2245
  20492. }
  20493. },
  20494. front: {
  20495. height: math.unit(8, "feet"),
  20496. weight: math.unit(300, "lb"),
  20497. name: "Front",
  20498. image: {
  20499. source: "./media/characters/equus-silvermane/front.svg",
  20500. extra: 4633 / 4400,
  20501. bottom: 71.3 / 4706.915
  20502. }
  20503. },
  20504. sideStepping: {
  20505. height: math.unit(8, "feet"),
  20506. weight: math.unit(300, "lb"),
  20507. name: "Side (Stepping)",
  20508. image: {
  20509. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20510. extra: 1968 / 1860,
  20511. bottom: 16.4 / 1989
  20512. }
  20513. },
  20514. },
  20515. [
  20516. {
  20517. name: "Normal",
  20518. height: math.unit(8, "feet")
  20519. },
  20520. {
  20521. name: "Minimacro",
  20522. height: math.unit(75, "feet"),
  20523. default: true
  20524. },
  20525. {
  20526. name: "Macro",
  20527. height: math.unit(150, "feet")
  20528. },
  20529. {
  20530. name: "Macro+",
  20531. height: math.unit(1000, "feet")
  20532. },
  20533. {
  20534. name: "Megamacro",
  20535. height: math.unit(1, "mile")
  20536. },
  20537. ]
  20538. ))
  20539. characterMakers.push(() => makeCharacter(
  20540. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  20541. {
  20542. side: {
  20543. height: math.unit(20, "feet"),
  20544. weight: math.unit(30000, "kg"),
  20545. name: "Side",
  20546. image: {
  20547. source: "./media/characters/windar/side.svg",
  20548. extra: 1491 / 1248,
  20549. bottom: 82.56 / 1568
  20550. }
  20551. },
  20552. },
  20553. [
  20554. {
  20555. name: "Normal",
  20556. height: math.unit(20, "feet"),
  20557. default: true
  20558. },
  20559. ]
  20560. ))
  20561. characterMakers.push(() => makeCharacter(
  20562. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  20563. {
  20564. side: {
  20565. height: math.unit(15.66, "feet"),
  20566. weight: math.unit(150, "lb"),
  20567. name: "Side",
  20568. image: {
  20569. source: "./media/characters/melody/side.svg",
  20570. extra: 1097 / 944,
  20571. bottom: 11.8 / 1109
  20572. }
  20573. },
  20574. sideOutfit: {
  20575. height: math.unit(15.66, "feet"),
  20576. weight: math.unit(150, "lb"),
  20577. name: "Side (Outfit)",
  20578. image: {
  20579. source: "./media/characters/melody/side-outfit.svg",
  20580. extra: 1097 / 944,
  20581. bottom: 11.8 / 1109
  20582. }
  20583. },
  20584. },
  20585. [
  20586. {
  20587. name: "Normal",
  20588. height: math.unit(15.66, "feet"),
  20589. default: true
  20590. },
  20591. ]
  20592. ))
  20593. characterMakers.push(() => makeCharacter(
  20594. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  20595. {
  20596. front: {
  20597. height: math.unit(8, "feet"),
  20598. weight: math.unit(325, "lb"),
  20599. name: "Front",
  20600. image: {
  20601. source: "./media/characters/windera/front.svg",
  20602. extra: 3180 / 2845,
  20603. bottom: 178 / 3365
  20604. }
  20605. },
  20606. },
  20607. [
  20608. {
  20609. name: "Normal",
  20610. height: math.unit(8, "feet"),
  20611. default: true
  20612. },
  20613. ]
  20614. ))
  20615. characterMakers.push(() => makeCharacter(
  20616. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  20617. {
  20618. front: {
  20619. height: math.unit(28.75, "feet"),
  20620. weight: math.unit(2000, "kg"),
  20621. name: "Front",
  20622. image: {
  20623. source: "./media/characters/sonear/front.svg",
  20624. extra: 1041.1 / 964.9,
  20625. bottom: 53.7 / 1096.6
  20626. }
  20627. },
  20628. },
  20629. [
  20630. {
  20631. name: "Normal",
  20632. height: math.unit(28.75, "feet"),
  20633. default: true
  20634. },
  20635. ]
  20636. ))
  20637. characterMakers.push(() => makeCharacter(
  20638. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  20639. {
  20640. side: {
  20641. height: math.unit(25.5, "feet"),
  20642. weight: math.unit(23000, "kg"),
  20643. name: "Side",
  20644. image: {
  20645. source: "./media/characters/kanara/side.svg"
  20646. }
  20647. },
  20648. },
  20649. [
  20650. {
  20651. name: "Normal",
  20652. height: math.unit(25.5, "feet"),
  20653. default: true
  20654. },
  20655. ]
  20656. ))
  20657. characterMakers.push(() => makeCharacter(
  20658. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  20659. {
  20660. side: {
  20661. height: math.unit(10, "feet"),
  20662. weight: math.unit(1000, "kg"),
  20663. name: "Side",
  20664. image: {
  20665. source: "./media/characters/ereus/side.svg",
  20666. extra: 1157 / 959,
  20667. bottom: 153 / 1312.5
  20668. }
  20669. },
  20670. },
  20671. [
  20672. {
  20673. name: "Normal",
  20674. height: math.unit(10, "feet"),
  20675. default: true
  20676. },
  20677. ]
  20678. ))
  20679. characterMakers.push(() => makeCharacter(
  20680. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  20681. {
  20682. side: {
  20683. height: math.unit(4.5, "feet"),
  20684. weight: math.unit(500, "lb"),
  20685. name: "Side",
  20686. image: {
  20687. source: "./media/characters/e-ter/side.svg",
  20688. extra: 1550 / 1248,
  20689. bottom: 146 / 1694
  20690. }
  20691. },
  20692. },
  20693. [
  20694. {
  20695. name: "Normal",
  20696. height: math.unit(4.5, "feet"),
  20697. default: true
  20698. },
  20699. ]
  20700. ))
  20701. characterMakers.push(() => makeCharacter(
  20702. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  20703. {
  20704. side: {
  20705. height: math.unit(9.7, "feet"),
  20706. weight: math.unit(4000, "kg"),
  20707. name: "Side",
  20708. image: {
  20709. source: "./media/characters/yamie/side.svg"
  20710. }
  20711. },
  20712. },
  20713. [
  20714. {
  20715. name: "Normal",
  20716. height: math.unit(9.7, "feet"),
  20717. default: true
  20718. },
  20719. ]
  20720. ))
  20721. characterMakers.push(() => makeCharacter(
  20722. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  20723. {
  20724. front: {
  20725. height: math.unit(50, "feet"),
  20726. weight: math.unit(50000, "kg"),
  20727. name: "Front",
  20728. image: {
  20729. source: "./media/characters/anders/front.svg",
  20730. extra: 570 / 539,
  20731. bottom: 14.7 / 586.7
  20732. }
  20733. },
  20734. },
  20735. [
  20736. {
  20737. name: "Large",
  20738. height: math.unit(50, "feet")
  20739. },
  20740. {
  20741. name: "Macro",
  20742. height: math.unit(2000, "feet"),
  20743. default: true
  20744. },
  20745. {
  20746. name: "Megamacro",
  20747. height: math.unit(12, "miles")
  20748. },
  20749. ]
  20750. ))
  20751. characterMakers.push(() => makeCharacter(
  20752. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  20753. {
  20754. front: {
  20755. height: math.unit(7 + 2 / 12, "feet"),
  20756. weight: math.unit(300, "lb"),
  20757. name: "Front",
  20758. image: {
  20759. source: "./media/characters/reban/front.svg",
  20760. extra: 516 / 487,
  20761. bottom: 42.82 / 558.356
  20762. }
  20763. },
  20764. dick: {
  20765. height: math.unit(7 / 5, "feet"),
  20766. name: "Dick",
  20767. image: {
  20768. source: "./media/characters/reban/dick.svg"
  20769. }
  20770. },
  20771. },
  20772. [
  20773. {
  20774. name: "Natural Height",
  20775. height: math.unit(7 + 2 / 12, "feet")
  20776. },
  20777. {
  20778. name: "Macro",
  20779. height: math.unit(500, "feet"),
  20780. default: true
  20781. },
  20782. {
  20783. name: "Canon Height",
  20784. height: math.unit(50, "AU")
  20785. },
  20786. ]
  20787. ))
  20788. characterMakers.push(() => makeCharacter(
  20789. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  20790. {
  20791. front: {
  20792. height: math.unit(6, "feet"),
  20793. weight: math.unit(150, "lb"),
  20794. name: "Front",
  20795. image: {
  20796. source: "./media/characters/terrance-keayes/front.svg",
  20797. extra: 1.005,
  20798. bottom: 151 / 1615
  20799. }
  20800. },
  20801. side: {
  20802. height: math.unit(6, "feet"),
  20803. weight: math.unit(150, "lb"),
  20804. name: "Side",
  20805. image: {
  20806. source: "./media/characters/terrance-keayes/side.svg",
  20807. extra: 1.005,
  20808. bottom: 129.4 / 1544
  20809. }
  20810. },
  20811. back: {
  20812. height: math.unit(6, "feet"),
  20813. weight: math.unit(150, "lb"),
  20814. name: "Back",
  20815. image: {
  20816. source: "./media/characters/terrance-keayes/back.svg",
  20817. extra: 1.005,
  20818. bottom: 58.4 / 1557.3
  20819. }
  20820. },
  20821. dick: {
  20822. height: math.unit(6 * 0.208, "feet"),
  20823. name: "Dick",
  20824. image: {
  20825. source: "./media/characters/terrance-keayes/dick.svg"
  20826. }
  20827. },
  20828. },
  20829. [
  20830. {
  20831. name: "Canon Height",
  20832. height: math.unit(35, "miles"),
  20833. default: true
  20834. },
  20835. ]
  20836. ))
  20837. characterMakers.push(() => makeCharacter(
  20838. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  20839. {
  20840. front: {
  20841. height: math.unit(6, "feet"),
  20842. weight: math.unit(150, "lb"),
  20843. name: "Front",
  20844. image: {
  20845. source: "./media/characters/ofelia/front.svg",
  20846. extra: 546 / 541,
  20847. bottom: 39 / 583
  20848. }
  20849. },
  20850. back: {
  20851. height: math.unit(6, "feet"),
  20852. weight: math.unit(150, "lb"),
  20853. name: "Back",
  20854. image: {
  20855. source: "./media/characters/ofelia/back.svg",
  20856. extra: 564 / 559.5,
  20857. bottom: 8.69 / 573.02
  20858. }
  20859. },
  20860. maw: {
  20861. height: math.unit(1, "feet"),
  20862. name: "Maw",
  20863. image: {
  20864. source: "./media/characters/ofelia/maw.svg"
  20865. }
  20866. },
  20867. foot: {
  20868. height: math.unit(1.949, "feet"),
  20869. name: "Foot",
  20870. image: {
  20871. source: "./media/characters/ofelia/foot.svg"
  20872. }
  20873. },
  20874. },
  20875. [
  20876. {
  20877. name: "Canon Height",
  20878. height: math.unit(2000, "miles"),
  20879. default: true
  20880. },
  20881. ]
  20882. ))
  20883. characterMakers.push(() => makeCharacter(
  20884. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  20885. {
  20886. front: {
  20887. height: math.unit(6, "feet"),
  20888. weight: math.unit(150, "lb"),
  20889. name: "Front",
  20890. image: {
  20891. source: "./media/characters/samuel/front.svg",
  20892. extra: 265 / 258,
  20893. bottom: 2 / 266.1566
  20894. }
  20895. },
  20896. },
  20897. [
  20898. {
  20899. name: "Macro",
  20900. height: math.unit(100, "feet"),
  20901. default: true
  20902. },
  20903. {
  20904. name: "Full Size",
  20905. height: math.unit(1000, "miles")
  20906. },
  20907. ]
  20908. ))
  20909. characterMakers.push(() => makeCharacter(
  20910. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  20911. {
  20912. front: {
  20913. height: math.unit(6, "feet"),
  20914. weight: math.unit(300, "lb"),
  20915. name: "Front",
  20916. image: {
  20917. source: "./media/characters/beishir-kiel/front.svg",
  20918. extra: 569 / 547,
  20919. bottom: 41.9 / 609
  20920. }
  20921. },
  20922. maw: {
  20923. height: math.unit(6 * 0.202, "feet"),
  20924. name: "Maw",
  20925. image: {
  20926. source: "./media/characters/beishir-kiel/maw.svg"
  20927. }
  20928. },
  20929. },
  20930. [
  20931. {
  20932. name: "Macro",
  20933. height: math.unit(300, "feet"),
  20934. default: true
  20935. },
  20936. ]
  20937. ))
  20938. characterMakers.push(() => makeCharacter(
  20939. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  20940. {
  20941. front: {
  20942. height: math.unit(5 + 8 / 12, "feet"),
  20943. weight: math.unit(120, "lb"),
  20944. name: "Front",
  20945. image: {
  20946. source: "./media/characters/logan-grey/front.svg",
  20947. extra: 2539 / 2393,
  20948. bottom: 97.6 / 2636.37
  20949. }
  20950. },
  20951. frontAlt: {
  20952. height: math.unit(5 + 8 / 12, "feet"),
  20953. weight: math.unit(120, "lb"),
  20954. name: "Front (Alt)",
  20955. image: {
  20956. source: "./media/characters/logan-grey/front-alt.svg",
  20957. extra: 958 / 893,
  20958. bottom: 15 / 970.768
  20959. }
  20960. },
  20961. back: {
  20962. height: math.unit(5 + 8 / 12, "feet"),
  20963. weight: math.unit(120, "lb"),
  20964. name: "Back",
  20965. image: {
  20966. source: "./media/characters/logan-grey/back.svg",
  20967. extra: 958 / 893,
  20968. bottom: 2.1881 / 970.9788
  20969. }
  20970. },
  20971. dick: {
  20972. height: math.unit(1.437, "feet"),
  20973. name: "Dick",
  20974. image: {
  20975. source: "./media/characters/logan-grey/dick.svg"
  20976. }
  20977. },
  20978. },
  20979. [
  20980. {
  20981. name: "Normal",
  20982. height: math.unit(5 + 8 / 12, "feet")
  20983. },
  20984. {
  20985. name: "The 500 Foot Femboy",
  20986. height: math.unit(500, "feet"),
  20987. default: true
  20988. },
  20989. {
  20990. name: "Megmacro",
  20991. height: math.unit(20, "miles")
  20992. },
  20993. ]
  20994. ))
  20995. characterMakers.push(() => makeCharacter(
  20996. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  20997. {
  20998. front: {
  20999. height: math.unit(8 + 2 / 12, "feet"),
  21000. weight: math.unit(275, "lb"),
  21001. name: "Front",
  21002. image: {
  21003. source: "./media/characters/draganta/front.svg",
  21004. extra: 1177 / 1135,
  21005. bottom: 33.46 / 1212.1
  21006. }
  21007. },
  21008. },
  21009. [
  21010. {
  21011. name: "Normal",
  21012. height: math.unit(8 + 6 / 12, "feet"),
  21013. default: true
  21014. },
  21015. {
  21016. name: "Macro",
  21017. height: math.unit(150, "feet")
  21018. },
  21019. {
  21020. name: "Megamacro",
  21021. height: math.unit(1000, "miles")
  21022. },
  21023. ]
  21024. ))
  21025. characterMakers.push(() => makeCharacter(
  21026. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21027. {
  21028. front: {
  21029. height: math.unit(1.72, "m"),
  21030. weight: math.unit(80, "lb"),
  21031. name: "Front",
  21032. image: {
  21033. source: "./media/characters/voski/front.svg",
  21034. extra: 2076.22 / 2022.4,
  21035. bottom: 102.7 / 2177.3866
  21036. }
  21037. },
  21038. frontNsfw: {
  21039. height: math.unit(1.72, "m"),
  21040. weight: math.unit(80, "lb"),
  21041. name: "Front (NSFW)",
  21042. image: {
  21043. source: "./media/characters/voski/front-nsfw.svg",
  21044. extra: 2076.22 / 2022.4,
  21045. bottom: 102.7 / 2177.3866
  21046. }
  21047. },
  21048. back: {
  21049. height: math.unit(1.72, "m"),
  21050. weight: math.unit(80, "lb"),
  21051. name: "Back",
  21052. image: {
  21053. source: "./media/characters/voski/back.svg",
  21054. extra: 2104 / 2051,
  21055. bottom: 10.45 / 2113.63
  21056. }
  21057. },
  21058. },
  21059. [
  21060. {
  21061. name: "Normal",
  21062. height: math.unit(1.72, "m")
  21063. },
  21064. {
  21065. name: "Macro",
  21066. height: math.unit(55, "m"),
  21067. default: true
  21068. },
  21069. {
  21070. name: "Macro+",
  21071. height: math.unit(300, "m")
  21072. },
  21073. {
  21074. name: "Macro++",
  21075. height: math.unit(700, "m")
  21076. },
  21077. {
  21078. name: "Macro+++",
  21079. height: math.unit(4500, "m")
  21080. },
  21081. {
  21082. name: "Macro++++",
  21083. height: math.unit(45, "km")
  21084. },
  21085. {
  21086. name: "Macro+++++",
  21087. height: math.unit(1220, "km")
  21088. },
  21089. ]
  21090. ))
  21091. characterMakers.push(() => makeCharacter(
  21092. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21093. {
  21094. front: {
  21095. height: math.unit(2.3, "m"),
  21096. weight: math.unit(304, "kg"),
  21097. name: "Front",
  21098. image: {
  21099. source: "./media/characters/icowom-lee/front.svg",
  21100. extra: 985 / 955,
  21101. bottom: 25.4 / 1012
  21102. }
  21103. },
  21104. fronttentacles: {
  21105. height: math.unit(2.3, "m"),
  21106. weight: math.unit(304, "kg"),
  21107. name: "Front-tentacles",
  21108. image: {
  21109. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21110. extra: 985 / 955,
  21111. bottom: 25.4 / 1012
  21112. }
  21113. },
  21114. back: {
  21115. height: math.unit(2.3, "m"),
  21116. weight: math.unit(304, "kg"),
  21117. name: "Back",
  21118. image: {
  21119. source: "./media/characters/icowom-lee/back.svg",
  21120. extra: 975 / 954,
  21121. bottom: 9.5 / 985
  21122. }
  21123. },
  21124. backtentacles: {
  21125. height: math.unit(2.3, "m"),
  21126. weight: math.unit(304, "kg"),
  21127. name: "Back-tentacles",
  21128. image: {
  21129. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21130. extra: 975 / 954,
  21131. bottom: 9.5 / 985
  21132. }
  21133. },
  21134. frontDressed: {
  21135. height: math.unit(2.3, "m"),
  21136. weight: math.unit(304, "kg"),
  21137. name: "Front (Dressed)",
  21138. image: {
  21139. source: "./media/characters/icowom-lee/front-dressed.svg",
  21140. extra: 3076 / 2933,
  21141. bottom: 51.4 / 3125.1889
  21142. }
  21143. },
  21144. rump: {
  21145. height: math.unit(0.776, "meters"),
  21146. name: "Rump",
  21147. image: {
  21148. source: "./media/characters/icowom-lee/rump.svg"
  21149. }
  21150. },
  21151. genitals: {
  21152. height: math.unit(0.78, "meters"),
  21153. name: "Genitals",
  21154. image: {
  21155. source: "./media/characters/icowom-lee/genitals.svg"
  21156. }
  21157. },
  21158. },
  21159. [
  21160. {
  21161. name: "Normal",
  21162. height: math.unit(2.3, "meters"),
  21163. default: true
  21164. },
  21165. {
  21166. name: "Macro",
  21167. height: math.unit(94, "meters"),
  21168. default: true
  21169. },
  21170. ]
  21171. ))
  21172. characterMakers.push(() => makeCharacter(
  21173. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21174. {
  21175. front: {
  21176. height: math.unit(22, "meters"),
  21177. weight: math.unit(21000, "kg"),
  21178. name: "Front",
  21179. image: {
  21180. source: "./media/characters/shock-diamond/front.svg",
  21181. extra: 2204 / 2053,
  21182. bottom: 65 / 2239.47
  21183. }
  21184. },
  21185. frontNude: {
  21186. height: math.unit(22, "meters"),
  21187. weight: math.unit(21000, "kg"),
  21188. name: "Front (Nude)",
  21189. image: {
  21190. source: "./media/characters/shock-diamond/front-nude.svg",
  21191. extra: 2514 / 2285,
  21192. bottom: 13 / 2527.56
  21193. }
  21194. },
  21195. },
  21196. [
  21197. {
  21198. name: "Normal",
  21199. height: math.unit(3, "meters")
  21200. },
  21201. {
  21202. name: "Macro",
  21203. height: math.unit(22, "meters"),
  21204. default: true
  21205. },
  21206. ]
  21207. ))
  21208. characterMakers.push(() => makeCharacter(
  21209. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21210. {
  21211. front: {
  21212. height: math.unit(5 + 4 / 12, "feet"),
  21213. weight: math.unit(120, "lb"),
  21214. name: "Front",
  21215. image: {
  21216. source: "./media/characters/rory/front.svg",
  21217. extra: 589 / 556,
  21218. bottom: 45.7 / 635.76
  21219. }
  21220. },
  21221. frontNude: {
  21222. height: math.unit(5 + 4 / 12, "feet"),
  21223. weight: math.unit(120, "lb"),
  21224. name: "Front (Nude)",
  21225. image: {
  21226. source: "./media/characters/rory/front-nude.svg",
  21227. extra: 589 / 556,
  21228. bottom: 45.7 / 635.76
  21229. }
  21230. },
  21231. side: {
  21232. height: math.unit(5 + 4 / 12, "feet"),
  21233. weight: math.unit(120, "lb"),
  21234. name: "Side",
  21235. image: {
  21236. source: "./media/characters/rory/side.svg",
  21237. extra: 597 / 564,
  21238. bottom: 55 / 653
  21239. }
  21240. },
  21241. back: {
  21242. height: math.unit(5 + 4 / 12, "feet"),
  21243. weight: math.unit(120, "lb"),
  21244. name: "Back",
  21245. image: {
  21246. source: "./media/characters/rory/back.svg",
  21247. extra: 620 / 585,
  21248. bottom: 8.86 / 630.43
  21249. }
  21250. },
  21251. dick: {
  21252. height: math.unit(0.86, "feet"),
  21253. name: "Dick",
  21254. image: {
  21255. source: "./media/characters/rory/dick.svg"
  21256. }
  21257. },
  21258. },
  21259. [
  21260. {
  21261. name: "Normal",
  21262. height: math.unit(5 + 4 / 12, "feet"),
  21263. default: true
  21264. },
  21265. {
  21266. name: "Macro",
  21267. height: math.unit(100, "feet")
  21268. },
  21269. {
  21270. name: "Macro+",
  21271. height: math.unit(140, "feet")
  21272. },
  21273. {
  21274. name: "Macro++",
  21275. height: math.unit(300, "feet")
  21276. },
  21277. ]
  21278. ))
  21279. characterMakers.push(() => makeCharacter(
  21280. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21281. {
  21282. front: {
  21283. height: math.unit(5 + 9 / 12, "feet"),
  21284. weight: math.unit(190, "lb"),
  21285. name: "Front",
  21286. image: {
  21287. source: "./media/characters/sprisk/front.svg",
  21288. extra: 1225 / 1180,
  21289. bottom: 42.7 / 1266.4
  21290. }
  21291. },
  21292. frontNsfw: {
  21293. height: math.unit(5 + 9 / 12, "feet"),
  21294. weight: math.unit(190, "lb"),
  21295. name: "Front (NSFW)",
  21296. image: {
  21297. source: "./media/characters/sprisk/front-nsfw.svg",
  21298. extra: 1225 / 1180,
  21299. bottom: 42.7 / 1266.4
  21300. }
  21301. },
  21302. back: {
  21303. height: math.unit(5 + 9 / 12, "feet"),
  21304. weight: math.unit(190, "lb"),
  21305. name: "Back",
  21306. image: {
  21307. source: "./media/characters/sprisk/back.svg",
  21308. extra: 1247 / 1200,
  21309. bottom: 5.6 / 1253.04
  21310. }
  21311. },
  21312. },
  21313. [
  21314. {
  21315. name: "Tiny",
  21316. height: math.unit(2, "inches")
  21317. },
  21318. {
  21319. name: "Normal",
  21320. height: math.unit(5 + 9 / 12, "feet"),
  21321. default: true
  21322. },
  21323. {
  21324. name: "Mini Macro",
  21325. height: math.unit(18, "feet")
  21326. },
  21327. {
  21328. name: "Macro",
  21329. height: math.unit(100, "feet")
  21330. },
  21331. {
  21332. name: "MACRO",
  21333. height: math.unit(50, "miles")
  21334. },
  21335. {
  21336. name: "M A C R O",
  21337. height: math.unit(300, "miles")
  21338. },
  21339. ]
  21340. ))
  21341. characterMakers.push(() => makeCharacter(
  21342. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21343. {
  21344. side: {
  21345. height: math.unit(15.6, "meters"),
  21346. weight: math.unit(700000, "kg"),
  21347. name: "Side",
  21348. image: {
  21349. source: "./media/characters/bunsen/side.svg",
  21350. extra: 1644 / 358
  21351. }
  21352. },
  21353. foot: {
  21354. height: math.unit(1.611 * 1644 / 358, "meter"),
  21355. name: "Foot",
  21356. image: {
  21357. source: "./media/characters/bunsen/foot.svg"
  21358. }
  21359. },
  21360. },
  21361. [
  21362. {
  21363. name: "Small",
  21364. height: math.unit(10, "feet")
  21365. },
  21366. {
  21367. name: "Normal",
  21368. height: math.unit(15.6, "meters"),
  21369. default: true
  21370. },
  21371. ]
  21372. ))
  21373. characterMakers.push(() => makeCharacter(
  21374. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21375. {
  21376. front: {
  21377. height: math.unit(4 + 11 / 12, "feet"),
  21378. weight: math.unit(140, "lb"),
  21379. name: "Front",
  21380. image: {
  21381. source: "./media/characters/sesh/front.svg",
  21382. extra: 3420 / 3231,
  21383. bottom: 72 / 3949.5
  21384. }
  21385. },
  21386. },
  21387. [
  21388. {
  21389. name: "Normal",
  21390. height: math.unit(4 + 11 / 12, "feet")
  21391. },
  21392. {
  21393. name: "Grown",
  21394. height: math.unit(15, "feet"),
  21395. default: true
  21396. },
  21397. {
  21398. name: "Macro",
  21399. height: math.unit(1500, "feet")
  21400. },
  21401. {
  21402. name: "Megamacro",
  21403. height: math.unit(30, "miles")
  21404. },
  21405. {
  21406. name: "Continental",
  21407. height: math.unit(3000, "miles")
  21408. },
  21409. {
  21410. name: "Gravity Mass",
  21411. height: math.unit(300000, "miles")
  21412. },
  21413. {
  21414. name: "Planet Buster",
  21415. height: math.unit(30000000, "miles")
  21416. },
  21417. {
  21418. name: "Big",
  21419. height: math.unit(3000000000, "miles")
  21420. },
  21421. ]
  21422. ))
  21423. characterMakers.push(() => makeCharacter(
  21424. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21425. {
  21426. front: {
  21427. height: math.unit(9, "feet"),
  21428. weight: math.unit(350, "lb"),
  21429. name: "Front",
  21430. image: {
  21431. source: "./media/characters/pepper/front.svg",
  21432. extra: 1448 / 1312,
  21433. bottom: 9.4 / 1457.88
  21434. }
  21435. },
  21436. back: {
  21437. height: math.unit(9, "feet"),
  21438. weight: math.unit(350, "lb"),
  21439. name: "Back",
  21440. image: {
  21441. source: "./media/characters/pepper/back.svg",
  21442. extra: 1423 / 1300,
  21443. bottom: 4.6 / 1429
  21444. }
  21445. },
  21446. maw: {
  21447. height: math.unit(0.932, "feet"),
  21448. name: "Maw",
  21449. image: {
  21450. source: "./media/characters/pepper/maw.svg"
  21451. }
  21452. },
  21453. },
  21454. [
  21455. {
  21456. name: "Normal",
  21457. height: math.unit(9, "feet"),
  21458. default: true
  21459. },
  21460. ]
  21461. ))
  21462. characterMakers.push(() => makeCharacter(
  21463. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21464. {
  21465. front: {
  21466. height: math.unit(6, "feet"),
  21467. weight: math.unit(150, "lb"),
  21468. name: "Front",
  21469. image: {
  21470. source: "./media/characters/maelstrom/front.svg",
  21471. extra: 2100 / 1883,
  21472. bottom: 94 / 2196.7
  21473. }
  21474. },
  21475. },
  21476. [
  21477. {
  21478. name: "Less Kaiju",
  21479. height: math.unit(200, "feet")
  21480. },
  21481. {
  21482. name: "Kaiju",
  21483. height: math.unit(400, "feet"),
  21484. default: true
  21485. },
  21486. {
  21487. name: "Kaiju-er",
  21488. height: math.unit(600, "feet")
  21489. },
  21490. ]
  21491. ))
  21492. characterMakers.push(() => makeCharacter(
  21493. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21494. {
  21495. front: {
  21496. height: math.unit(6 + 5 / 12, "feet"),
  21497. weight: math.unit(180, "lb"),
  21498. name: "Front",
  21499. image: {
  21500. source: "./media/characters/lexir/front.svg",
  21501. extra: 180 / 172,
  21502. bottom: 12 / 192
  21503. }
  21504. },
  21505. back: {
  21506. height: math.unit(6 + 5 / 12, "feet"),
  21507. weight: math.unit(180, "lb"),
  21508. name: "Back",
  21509. image: {
  21510. source: "./media/characters/lexir/back.svg",
  21511. extra: 183.84 / 175.5,
  21512. bottom: 3.1 / 187
  21513. }
  21514. },
  21515. },
  21516. [
  21517. {
  21518. name: "Very Smal",
  21519. height: math.unit(1, "nm")
  21520. },
  21521. {
  21522. name: "Normal",
  21523. height: math.unit(6 + 5 / 12, "feet"),
  21524. default: true
  21525. },
  21526. {
  21527. name: "Macro",
  21528. height: math.unit(1, "mile")
  21529. },
  21530. {
  21531. name: "Megamacro",
  21532. height: math.unit(50, "miles")
  21533. },
  21534. ]
  21535. ))
  21536. characterMakers.push(() => makeCharacter(
  21537. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  21538. {
  21539. front: {
  21540. height: math.unit(1.5, "meters"),
  21541. weight: math.unit(100, "lb"),
  21542. name: "Front",
  21543. image: {
  21544. source: "./media/characters/maksio/front.svg",
  21545. extra: 1549 / 1531,
  21546. bottom: 123.7 / 1674.5429
  21547. }
  21548. },
  21549. back: {
  21550. height: math.unit(1.5, "meters"),
  21551. weight: math.unit(100, "lb"),
  21552. name: "Back",
  21553. image: {
  21554. source: "./media/characters/maksio/back.svg",
  21555. extra: 1541 / 1509,
  21556. bottom: 97 / 1639
  21557. }
  21558. },
  21559. hand: {
  21560. height: math.unit(0.621, "feet"),
  21561. name: "Hand",
  21562. image: {
  21563. source: "./media/characters/maksio/hand.svg"
  21564. }
  21565. },
  21566. foot: {
  21567. height: math.unit(1.611, "feet"),
  21568. name: "Foot",
  21569. image: {
  21570. source: "./media/characters/maksio/foot.svg"
  21571. }
  21572. },
  21573. },
  21574. [
  21575. {
  21576. name: "Shrunken",
  21577. height: math.unit(10, "cm")
  21578. },
  21579. {
  21580. name: "Normal",
  21581. height: math.unit(150, "cm"),
  21582. default: true
  21583. },
  21584. ]
  21585. ))
  21586. characterMakers.push(() => makeCharacter(
  21587. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  21588. {
  21589. front: {
  21590. height: math.unit(100, "feet"),
  21591. name: "Front",
  21592. image: {
  21593. source: "./media/characters/erza-bear/front.svg",
  21594. extra: 2449 / 2390,
  21595. bottom: 46 / 2494
  21596. }
  21597. },
  21598. back: {
  21599. height: math.unit(100, "feet"),
  21600. name: "Back",
  21601. image: {
  21602. source: "./media/characters/erza-bear/back.svg",
  21603. extra: 2489 / 2430,
  21604. bottom: 85.4 / 2480
  21605. }
  21606. },
  21607. tail: {
  21608. height: math.unit(42, "feet"),
  21609. name: "Tail",
  21610. image: {
  21611. source: "./media/characters/erza-bear/tail.svg"
  21612. }
  21613. },
  21614. tongue: {
  21615. height: math.unit(8, "feet"),
  21616. name: "Tongue",
  21617. image: {
  21618. source: "./media/characters/erza-bear/tongue.svg"
  21619. }
  21620. },
  21621. dick: {
  21622. height: math.unit(10.5, "feet"),
  21623. name: "Dick",
  21624. image: {
  21625. source: "./media/characters/erza-bear/dick.svg"
  21626. }
  21627. },
  21628. dickVertical: {
  21629. height: math.unit(16.9, "feet"),
  21630. name: "Dick (Vertical)",
  21631. image: {
  21632. source: "./media/characters/erza-bear/dick-vertical.svg"
  21633. }
  21634. },
  21635. },
  21636. [
  21637. {
  21638. name: "Macro",
  21639. height: math.unit(100, "feet"),
  21640. default: true
  21641. },
  21642. ]
  21643. ))
  21644. characterMakers.push(() => makeCharacter(
  21645. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  21646. {
  21647. front: {
  21648. height: math.unit(172, "cm"),
  21649. weight: math.unit(73, "kg"),
  21650. name: "Front",
  21651. image: {
  21652. source: "./media/characters/violet-flor/front.svg",
  21653. extra: 1530 / 1442,
  21654. bottom: 61.9 / 1588.8
  21655. }
  21656. },
  21657. back: {
  21658. height: math.unit(180, "cm"),
  21659. weight: math.unit(73, "kg"),
  21660. name: "Back",
  21661. image: {
  21662. source: "./media/characters/violet-flor/back.svg",
  21663. extra: 1692 / 1630,
  21664. bottom: 20 / 1712
  21665. }
  21666. },
  21667. },
  21668. [
  21669. {
  21670. name: "Normal",
  21671. height: math.unit(172, "cm"),
  21672. default: true
  21673. },
  21674. ]
  21675. ))
  21676. characterMakers.push(() => makeCharacter(
  21677. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  21678. {
  21679. front: {
  21680. height: math.unit(6, "feet"),
  21681. weight: math.unit(220, "lb"),
  21682. name: "Front",
  21683. image: {
  21684. source: "./media/characters/lynn-rhea/front.svg",
  21685. extra: 310 / 273
  21686. }
  21687. },
  21688. back: {
  21689. height: math.unit(6, "feet"),
  21690. weight: math.unit(220, "lb"),
  21691. name: "Back",
  21692. image: {
  21693. source: "./media/characters/lynn-rhea/back.svg",
  21694. extra: 310 / 273
  21695. }
  21696. },
  21697. dicks: {
  21698. height: math.unit(0.9, "feet"),
  21699. name: "Dicks",
  21700. image: {
  21701. source: "./media/characters/lynn-rhea/dicks.svg"
  21702. }
  21703. },
  21704. slit: {
  21705. height: math.unit(0.4, "feet"),
  21706. name: "Slit",
  21707. image: {
  21708. source: "./media/characters/lynn-rhea/slit.svg"
  21709. }
  21710. },
  21711. },
  21712. [
  21713. {
  21714. name: "Micro",
  21715. height: math.unit(1, "inch")
  21716. },
  21717. {
  21718. name: "Macro",
  21719. height: math.unit(60, "feet"),
  21720. default: true
  21721. },
  21722. {
  21723. name: "Megamacro",
  21724. height: math.unit(2, "miles")
  21725. },
  21726. {
  21727. name: "Gigamacro",
  21728. height: math.unit(3, "earths")
  21729. },
  21730. {
  21731. name: "Galactic",
  21732. height: math.unit(0.8, "galaxies")
  21733. },
  21734. ]
  21735. ))
  21736. characterMakers.push(() => makeCharacter(
  21737. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  21738. {
  21739. front: {
  21740. height: math.unit(1600, "feet"),
  21741. weight: math.unit(85758785169, "kg"),
  21742. name: "Front",
  21743. image: {
  21744. source: "./media/characters/valathos/front.svg",
  21745. extra: 1451 / 1339
  21746. }
  21747. },
  21748. },
  21749. [
  21750. {
  21751. name: "Macro",
  21752. height: math.unit(1600, "feet"),
  21753. default: true
  21754. },
  21755. ]
  21756. ))
  21757. characterMakers.push(() => makeCharacter(
  21758. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  21759. {
  21760. front: {
  21761. height: math.unit(7 + 5 / 12, "feet"),
  21762. weight: math.unit(300, "lb"),
  21763. name: "Front",
  21764. image: {
  21765. source: "./media/characters/azula/front.svg",
  21766. extra: 3208 / 2880,
  21767. bottom: 80.2 / 3277
  21768. }
  21769. },
  21770. back: {
  21771. height: math.unit(7 + 5 / 12, "feet"),
  21772. weight: math.unit(300, "lb"),
  21773. name: "Back",
  21774. image: {
  21775. source: "./media/characters/azula/back.svg",
  21776. extra: 3169 / 2822,
  21777. bottom: 150.6 / 3321
  21778. }
  21779. },
  21780. },
  21781. [
  21782. {
  21783. name: "Normal",
  21784. height: math.unit(7 + 5 / 12, "feet"),
  21785. default: true
  21786. },
  21787. {
  21788. name: "Big",
  21789. height: math.unit(20, "feet")
  21790. },
  21791. ]
  21792. ))
  21793. characterMakers.push(() => makeCharacter(
  21794. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  21795. {
  21796. front: {
  21797. height: math.unit(5 + 1 / 12, "feet"),
  21798. weight: math.unit(110, "lb"),
  21799. name: "Front",
  21800. image: {
  21801. source: "./media/characters/rupert/front.svg",
  21802. extra: 1549 / 1495,
  21803. bottom: 54.2 / 1604.4
  21804. }
  21805. },
  21806. },
  21807. [
  21808. {
  21809. name: "Normal",
  21810. height: math.unit(5 + 1 / 12, "feet"),
  21811. default: true
  21812. },
  21813. ]
  21814. ))
  21815. characterMakers.push(() => makeCharacter(
  21816. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  21817. {
  21818. front: {
  21819. height: math.unit(8 + 4 / 12, "feet"),
  21820. weight: math.unit(350, "lb"),
  21821. name: "Front",
  21822. image: {
  21823. source: "./media/characters/sheera-castellar/front.svg",
  21824. extra: 1957 / 1894,
  21825. bottom: 26.97 / 1975.017
  21826. }
  21827. },
  21828. side: {
  21829. height: math.unit(8 + 4 / 12, "feet"),
  21830. weight: math.unit(350, "lb"),
  21831. name: "Side",
  21832. image: {
  21833. source: "./media/characters/sheera-castellar/side.svg",
  21834. extra: 1957 / 1894
  21835. }
  21836. },
  21837. back: {
  21838. height: math.unit(8 + 4 / 12, "feet"),
  21839. weight: math.unit(350, "lb"),
  21840. name: "Back",
  21841. image: {
  21842. source: "./media/characters/sheera-castellar/back.svg",
  21843. extra: 1957 / 1894
  21844. }
  21845. },
  21846. angled: {
  21847. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  21848. weight: math.unit(350, "lb"),
  21849. name: "Angled",
  21850. image: {
  21851. source: "./media/characters/sheera-castellar/angled.svg",
  21852. extra: 1807 / 1707,
  21853. bottom: 68 / 1875
  21854. }
  21855. },
  21856. genitals: {
  21857. height: math.unit(2.2, "feet"),
  21858. name: "Genitals",
  21859. image: {
  21860. source: "./media/characters/sheera-castellar/genitals.svg"
  21861. }
  21862. },
  21863. },
  21864. [
  21865. {
  21866. name: "Normal",
  21867. height: math.unit(8 + 4 / 12, "feet")
  21868. },
  21869. {
  21870. name: "Macro",
  21871. height: math.unit(150, "feet"),
  21872. default: true
  21873. },
  21874. {
  21875. name: "Macro+",
  21876. height: math.unit(800, "feet")
  21877. },
  21878. ]
  21879. ))
  21880. characterMakers.push(() => makeCharacter(
  21881. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  21882. {
  21883. front: {
  21884. height: math.unit(6, "feet"),
  21885. weight: math.unit(150, "lb"),
  21886. name: "Front",
  21887. image: {
  21888. source: "./media/characters/jaipur/front.svg",
  21889. extra: 3860 / 3731,
  21890. bottom: 287 / 4140
  21891. }
  21892. },
  21893. back: {
  21894. height: math.unit(6, "feet"),
  21895. weight: math.unit(150, "lb"),
  21896. name: "Back",
  21897. image: {
  21898. source: "./media/characters/jaipur/back.svg",
  21899. extra: 4060 / 3930,
  21900. bottom: 151 / 4200
  21901. }
  21902. },
  21903. },
  21904. [
  21905. {
  21906. name: "Normal",
  21907. height: math.unit(1.85, "meters"),
  21908. default: true
  21909. },
  21910. {
  21911. name: "Macro",
  21912. height: math.unit(150, "meters")
  21913. },
  21914. {
  21915. name: "Macro+",
  21916. height: math.unit(0.5, "miles")
  21917. },
  21918. {
  21919. name: "Macro++",
  21920. height: math.unit(2.5, "miles")
  21921. },
  21922. {
  21923. name: "Macro+++",
  21924. height: math.unit(12, "miles")
  21925. },
  21926. {
  21927. name: "Macro++++",
  21928. height: math.unit(120, "miles")
  21929. },
  21930. {
  21931. name: "Macro+++++",
  21932. height: math.unit(1200, "miles")
  21933. },
  21934. ]
  21935. ))
  21936. characterMakers.push(() => makeCharacter(
  21937. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  21938. {
  21939. front: {
  21940. height: math.unit(6, "feet"),
  21941. weight: math.unit(150, "lb"),
  21942. name: "Front",
  21943. image: {
  21944. source: "./media/characters/sheila-wolf/front.svg",
  21945. extra: 1931 / 1808,
  21946. bottom: 29.5 / 1960
  21947. }
  21948. },
  21949. dick: {
  21950. height: math.unit(1.464, "feet"),
  21951. name: "Dick",
  21952. image: {
  21953. source: "./media/characters/sheila-wolf/dick.svg"
  21954. }
  21955. },
  21956. muzzle: {
  21957. height: math.unit(0.513, "feet"),
  21958. name: "Muzzle",
  21959. image: {
  21960. source: "./media/characters/sheila-wolf/muzzle.svg"
  21961. }
  21962. },
  21963. },
  21964. [
  21965. {
  21966. name: "Macro",
  21967. height: math.unit(70, "feet"),
  21968. default: true
  21969. },
  21970. ]
  21971. ))
  21972. characterMakers.push(() => makeCharacter(
  21973. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  21974. {
  21975. front: {
  21976. height: math.unit(32, "meters"),
  21977. weight: math.unit(300000, "kg"),
  21978. name: "Front",
  21979. image: {
  21980. source: "./media/characters/almor/front.svg",
  21981. extra: 1408 / 1322,
  21982. bottom: 94.6 / 1506.5
  21983. }
  21984. },
  21985. },
  21986. [
  21987. {
  21988. name: "Macro",
  21989. height: math.unit(32, "meters"),
  21990. default: true
  21991. },
  21992. ]
  21993. ))
  21994. characterMakers.push(() => makeCharacter(
  21995. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  21996. {
  21997. front: {
  21998. height: math.unit(7, "feet"),
  21999. weight: math.unit(200, "lb"),
  22000. name: "Front",
  22001. image: {
  22002. source: "./media/characters/silver/front.svg",
  22003. extra: 472.1 / 450.5,
  22004. bottom: 26.5 / 499.424
  22005. }
  22006. },
  22007. },
  22008. [
  22009. {
  22010. name: "Normal",
  22011. height: math.unit(7, "feet"),
  22012. default: true
  22013. },
  22014. {
  22015. name: "Macro",
  22016. height: math.unit(800, "feet")
  22017. },
  22018. {
  22019. name: "Megamacro",
  22020. height: math.unit(250, "miles")
  22021. },
  22022. ]
  22023. ))
  22024. characterMakers.push(() => makeCharacter(
  22025. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22026. {
  22027. front: {
  22028. height: math.unit(6, "feet"),
  22029. weight: math.unit(150, "lb"),
  22030. name: "Front",
  22031. image: {
  22032. source: "./media/characters/pliskin/front.svg",
  22033. extra: 1469 / 1359,
  22034. bottom: 70 / 1540
  22035. }
  22036. },
  22037. },
  22038. [
  22039. {
  22040. name: "Micro",
  22041. height: math.unit(3, "inches")
  22042. },
  22043. {
  22044. name: "Normal",
  22045. height: math.unit(5 + 11 / 12, "feet"),
  22046. default: true
  22047. },
  22048. {
  22049. name: "Macro",
  22050. height: math.unit(120, "feet")
  22051. },
  22052. ]
  22053. ))
  22054. characterMakers.push(() => makeCharacter(
  22055. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22056. {
  22057. front: {
  22058. height: math.unit(6, "feet"),
  22059. weight: math.unit(150, "lb"),
  22060. name: "Front",
  22061. image: {
  22062. source: "./media/characters/sammy/front.svg",
  22063. extra: 1193 / 1089,
  22064. bottom: 30.5 / 1226
  22065. }
  22066. },
  22067. },
  22068. [
  22069. {
  22070. name: "Macro",
  22071. height: math.unit(1700, "feet"),
  22072. default: true
  22073. },
  22074. {
  22075. name: "Examacro",
  22076. height: math.unit(2.5e9, "lightyears")
  22077. },
  22078. ]
  22079. ))
  22080. characterMakers.push(() => makeCharacter(
  22081. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22082. {
  22083. front: {
  22084. height: math.unit(21, "meters"),
  22085. weight: math.unit(12, "tonnes"),
  22086. name: "Front",
  22087. image: {
  22088. source: "./media/characters/kuru/front.svg",
  22089. extra: 4301 / 3785,
  22090. bottom: 371.3 / 4691
  22091. }
  22092. },
  22093. },
  22094. [
  22095. {
  22096. name: "Macro",
  22097. height: math.unit(21, "meters"),
  22098. default: true
  22099. },
  22100. ]
  22101. ))
  22102. characterMakers.push(() => makeCharacter(
  22103. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22104. {
  22105. front: {
  22106. height: math.unit(23, "meters"),
  22107. weight: math.unit(12.2, "tonnes"),
  22108. name: "Front",
  22109. image: {
  22110. source: "./media/characters/rakka/front.svg",
  22111. extra: 4670 / 4169,
  22112. bottom: 301 / 4968.7
  22113. }
  22114. },
  22115. },
  22116. [
  22117. {
  22118. name: "Macro",
  22119. height: math.unit(23, "meters"),
  22120. default: true
  22121. },
  22122. ]
  22123. ))
  22124. characterMakers.push(() => makeCharacter(
  22125. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22126. {
  22127. front: {
  22128. height: math.unit(6, "feet"),
  22129. weight: math.unit(150, "lb"),
  22130. name: "Front",
  22131. image: {
  22132. source: "./media/characters/rhys-feline/front.svg",
  22133. extra: 2488 / 2308,
  22134. bottom: 35.67 / 2519.19
  22135. }
  22136. },
  22137. },
  22138. [
  22139. {
  22140. name: "Really Small",
  22141. height: math.unit(1, "nm")
  22142. },
  22143. {
  22144. name: "Micro",
  22145. height: math.unit(4, "inches")
  22146. },
  22147. {
  22148. name: "Normal",
  22149. height: math.unit(4 + 10 / 12, "feet"),
  22150. default: true
  22151. },
  22152. {
  22153. name: "Macro",
  22154. height: math.unit(100, "feet")
  22155. },
  22156. {
  22157. name: "Megamacto",
  22158. height: math.unit(50, "miles")
  22159. },
  22160. ]
  22161. ))
  22162. characterMakers.push(() => makeCharacter(
  22163. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22164. {
  22165. side: {
  22166. height: math.unit(30, "feet"),
  22167. weight: math.unit(35000, "kg"),
  22168. name: "Side",
  22169. image: {
  22170. source: "./media/characters/alydar/side.svg",
  22171. extra: 234 / 222,
  22172. bottom: 6.5 / 241
  22173. }
  22174. },
  22175. front: {
  22176. height: math.unit(30, "feet"),
  22177. weight: math.unit(35000, "kg"),
  22178. name: "Front",
  22179. image: {
  22180. source: "./media/characters/alydar/front.svg",
  22181. extra: 223.37 / 210.2,
  22182. bottom: 22.3 / 246.76
  22183. }
  22184. },
  22185. top: {
  22186. height: math.unit(64.54, "feet"),
  22187. weight: math.unit(35000, "kg"),
  22188. name: "Top",
  22189. image: {
  22190. source: "./media/characters/alydar/top.svg"
  22191. }
  22192. },
  22193. anthro: {
  22194. height: math.unit(30, "feet"),
  22195. weight: math.unit(9000, "kg"),
  22196. name: "Anthro",
  22197. image: {
  22198. source: "./media/characters/alydar/anthro.svg",
  22199. extra: 432 / 421,
  22200. bottom: 7.18 / 440
  22201. }
  22202. },
  22203. maw: {
  22204. height: math.unit(11.693, "feet"),
  22205. name: "Maw",
  22206. image: {
  22207. source: "./media/characters/alydar/maw.svg"
  22208. }
  22209. },
  22210. head: {
  22211. height: math.unit(11.693, "feet"),
  22212. name: "Head",
  22213. image: {
  22214. source: "./media/characters/alydar/head.svg"
  22215. }
  22216. },
  22217. headAlt: {
  22218. height: math.unit(12.861, "feet"),
  22219. name: "Head (Alt)",
  22220. image: {
  22221. source: "./media/characters/alydar/head-alt.svg"
  22222. }
  22223. },
  22224. wing: {
  22225. height: math.unit(20.712, "feet"),
  22226. name: "Wing",
  22227. image: {
  22228. source: "./media/characters/alydar/wing.svg"
  22229. }
  22230. },
  22231. wingFeather: {
  22232. height: math.unit(9.662, "feet"),
  22233. name: "Wing Feather",
  22234. image: {
  22235. source: "./media/characters/alydar/wing-feather.svg"
  22236. }
  22237. },
  22238. countourFeather: {
  22239. height: math.unit(4.154, "feet"),
  22240. name: "Contour Feather",
  22241. image: {
  22242. source: "./media/characters/alydar/contour-feather.svg"
  22243. }
  22244. },
  22245. },
  22246. [
  22247. {
  22248. name: "Diplomatic",
  22249. height: math.unit(13, "feet"),
  22250. default: true
  22251. },
  22252. {
  22253. name: "Small",
  22254. height: math.unit(30, "feet")
  22255. },
  22256. {
  22257. name: "Normal",
  22258. height: math.unit(95, "feet"),
  22259. default: true
  22260. },
  22261. {
  22262. name: "Large",
  22263. height: math.unit(285, "feet")
  22264. },
  22265. {
  22266. name: "Incomprehensible",
  22267. height: math.unit(450, "megameters")
  22268. },
  22269. ]
  22270. ))
  22271. characterMakers.push(() => makeCharacter(
  22272. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22273. {
  22274. side: {
  22275. height: math.unit(11, "feet"),
  22276. weight: math.unit(1750, "kg"),
  22277. name: "Side",
  22278. image: {
  22279. source: "./media/characters/selicia/side.svg",
  22280. extra: 440 / 396,
  22281. bottom: 24.8 / 465.979
  22282. }
  22283. },
  22284. maw: {
  22285. height: math.unit(4.665, "feet"),
  22286. name: "Maw",
  22287. image: {
  22288. source: "./media/characters/selicia/maw.svg"
  22289. }
  22290. },
  22291. },
  22292. [
  22293. {
  22294. name: "Normal",
  22295. height: math.unit(11, "feet"),
  22296. default: true
  22297. },
  22298. ]
  22299. ))
  22300. characterMakers.push(() => makeCharacter(
  22301. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22302. {
  22303. side: {
  22304. height: math.unit(2 + 6 / 12, "feet"),
  22305. weight: math.unit(30, "lb"),
  22306. name: "Side",
  22307. image: {
  22308. source: "./media/characters/layla/side.svg",
  22309. extra: 244 / 188,
  22310. bottom: 18.2 / 262.1
  22311. }
  22312. },
  22313. back: {
  22314. height: math.unit(2 + 6 / 12, "feet"),
  22315. weight: math.unit(30, "lb"),
  22316. name: "Back",
  22317. image: {
  22318. source: "./media/characters/layla/back.svg",
  22319. extra: 308 / 241.5,
  22320. bottom: 8.9 / 316.8
  22321. }
  22322. },
  22323. cumming: {
  22324. height: math.unit(2 + 6 / 12, "feet"),
  22325. weight: math.unit(30, "lb"),
  22326. name: "Cumming",
  22327. image: {
  22328. source: "./media/characters/layla/cumming.svg",
  22329. extra: 342 / 279,
  22330. bottom: 595 / 938
  22331. }
  22332. },
  22333. dickFlaccid: {
  22334. height: math.unit(2.595, "feet"),
  22335. name: "Flaccid Genitals",
  22336. image: {
  22337. source: "./media/characters/layla/dick-flaccid.svg"
  22338. }
  22339. },
  22340. dickErect: {
  22341. height: math.unit(2.359, "feet"),
  22342. name: "Erect Genitals",
  22343. image: {
  22344. source: "./media/characters/layla/dick-erect.svg"
  22345. }
  22346. },
  22347. },
  22348. [
  22349. {
  22350. name: "Micro",
  22351. height: math.unit(1, "inch")
  22352. },
  22353. {
  22354. name: "Small",
  22355. height: math.unit(1, "foot")
  22356. },
  22357. {
  22358. name: "Normal",
  22359. height: math.unit(2 + 6 / 12, "feet"),
  22360. default: true
  22361. },
  22362. {
  22363. name: "Macro",
  22364. height: math.unit(200, "feet")
  22365. },
  22366. {
  22367. name: "Megamacro",
  22368. height: math.unit(1000, "miles")
  22369. },
  22370. {
  22371. name: "Planetary",
  22372. height: math.unit(8000, "miles")
  22373. },
  22374. {
  22375. name: "True Layla",
  22376. height: math.unit(200000 * 7, "multiverses")
  22377. },
  22378. ]
  22379. ))
  22380. characterMakers.push(() => makeCharacter(
  22381. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22382. {
  22383. back: {
  22384. height: math.unit(10.5, "feet"),
  22385. weight: math.unit(800, "lb"),
  22386. name: "Back",
  22387. image: {
  22388. source: "./media/characters/knox/back.svg",
  22389. extra: 1486 / 1089,
  22390. bottom: 107 / 1601.4
  22391. }
  22392. },
  22393. side: {
  22394. height: math.unit(10.5, "feet"),
  22395. weight: math.unit(800, "lb"),
  22396. name: "Side",
  22397. image: {
  22398. source: "./media/characters/knox/side.svg",
  22399. extra: 244 / 218,
  22400. bottom: 14 / 260
  22401. }
  22402. },
  22403. },
  22404. [
  22405. {
  22406. name: "Compact",
  22407. height: math.unit(10.5, "feet"),
  22408. default: true
  22409. },
  22410. {
  22411. name: "Dynamax",
  22412. height: math.unit(210, "feet")
  22413. },
  22414. {
  22415. name: "Full Macro",
  22416. height: math.unit(850, "feet")
  22417. },
  22418. ]
  22419. ))
  22420. characterMakers.push(() => makeCharacter(
  22421. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22422. {
  22423. front: {
  22424. height: math.unit(6, "feet"),
  22425. weight: math.unit(152, "lb"),
  22426. name: "Front",
  22427. image: {
  22428. source: "./media/characters/shin-pikachu/front.svg",
  22429. extra: 1574 / 1480,
  22430. bottom: 53.3 / 1626
  22431. }
  22432. },
  22433. hand: {
  22434. height: math.unit(1.055, "feet"),
  22435. name: "Hand",
  22436. image: {
  22437. source: "./media/characters/shin-pikachu/hand.svg"
  22438. }
  22439. },
  22440. foot: {
  22441. height: math.unit(1.1, "feet"),
  22442. name: "Foot",
  22443. image: {
  22444. source: "./media/characters/shin-pikachu/foot.svg"
  22445. }
  22446. },
  22447. collar: {
  22448. height: math.unit(0.386, "feet"),
  22449. name: "Collar",
  22450. image: {
  22451. source: "./media/characters/shin-pikachu/collar.svg"
  22452. }
  22453. },
  22454. },
  22455. [
  22456. {
  22457. name: "Smallest",
  22458. height: math.unit(0.5, "inches")
  22459. },
  22460. {
  22461. name: "Micro",
  22462. height: math.unit(6, "inches")
  22463. },
  22464. {
  22465. name: "Normal",
  22466. height: math.unit(6, "feet"),
  22467. default: true
  22468. },
  22469. {
  22470. name: "Macro",
  22471. height: math.unit(150, "feet")
  22472. },
  22473. ]
  22474. ))
  22475. characterMakers.push(() => makeCharacter(
  22476. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22477. {
  22478. front: {
  22479. height: math.unit(28, "feet"),
  22480. weight: math.unit(10500, "lb"),
  22481. name: "Front",
  22482. image: {
  22483. source: "./media/characters/kayda/front.svg",
  22484. extra: 1536 / 1428,
  22485. bottom: 68.7 / 1603
  22486. }
  22487. },
  22488. back: {
  22489. height: math.unit(28, "feet"),
  22490. weight: math.unit(10500, "lb"),
  22491. name: "Back",
  22492. image: {
  22493. source: "./media/characters/kayda/back.svg",
  22494. extra: 1557 / 1464,
  22495. bottom: 39.5 / 1597.49
  22496. }
  22497. },
  22498. dick: {
  22499. height: math.unit(3.858, "feet"),
  22500. name: "Dick",
  22501. image: {
  22502. source: "./media/characters/kayda/dick.svg"
  22503. }
  22504. },
  22505. },
  22506. [
  22507. {
  22508. name: "Macro",
  22509. height: math.unit(28, "feet"),
  22510. default: true
  22511. },
  22512. ]
  22513. ))
  22514. characterMakers.push(() => makeCharacter(
  22515. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22516. {
  22517. front: {
  22518. height: math.unit(10 + 11 / 12, "feet"),
  22519. weight: math.unit(1400, "lb"),
  22520. name: "Front",
  22521. image: {
  22522. source: "./media/characters/brian/front.svg",
  22523. extra: 737 / 692,
  22524. bottom: 55.4 / 785
  22525. }
  22526. },
  22527. },
  22528. [
  22529. {
  22530. name: "Normal",
  22531. height: math.unit(10 + 11 / 12, "feet"),
  22532. default: true
  22533. },
  22534. ]
  22535. ))
  22536. characterMakers.push(() => makeCharacter(
  22537. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  22538. {
  22539. front: {
  22540. height: math.unit(5 + 8 / 12, "feet"),
  22541. weight: math.unit(140, "lb"),
  22542. name: "Front",
  22543. image: {
  22544. source: "./media/characters/khemri/front.svg",
  22545. extra: 4780 / 4059,
  22546. bottom: 80.1 / 4859.25
  22547. }
  22548. },
  22549. },
  22550. [
  22551. {
  22552. name: "Micro",
  22553. height: math.unit(6, "inches")
  22554. },
  22555. {
  22556. name: "Normal",
  22557. height: math.unit(5 + 8 / 12, "feet"),
  22558. default: true
  22559. },
  22560. ]
  22561. ))
  22562. characterMakers.push(() => makeCharacter(
  22563. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  22564. {
  22565. front: {
  22566. height: math.unit(13, "feet"),
  22567. weight: math.unit(1700, "lb"),
  22568. name: "Front",
  22569. image: {
  22570. source: "./media/characters/felix-braveheart/front.svg",
  22571. extra: 1222 / 1157,
  22572. bottom: 53.2 / 1280
  22573. }
  22574. },
  22575. back: {
  22576. height: math.unit(13, "feet"),
  22577. weight: math.unit(1700, "lb"),
  22578. name: "Back",
  22579. image: {
  22580. source: "./media/characters/felix-braveheart/back.svg",
  22581. extra: 1277 / 1203,
  22582. bottom: 50.2 / 1327
  22583. }
  22584. },
  22585. feral: {
  22586. height: math.unit(6, "feet"),
  22587. weight: math.unit(400, "lb"),
  22588. name: "Feral",
  22589. image: {
  22590. source: "./media/characters/felix-braveheart/feral.svg",
  22591. extra: 682 / 625,
  22592. bottom: 6.9 / 688
  22593. }
  22594. },
  22595. },
  22596. [
  22597. {
  22598. name: "Normal",
  22599. height: math.unit(13, "feet"),
  22600. default: true
  22601. },
  22602. ]
  22603. ))
  22604. characterMakers.push(() => makeCharacter(
  22605. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  22606. {
  22607. side: {
  22608. height: math.unit(5 + 11 / 12, "feet"),
  22609. weight: math.unit(1400, "lb"),
  22610. name: "Side",
  22611. image: {
  22612. source: "./media/characters/shadow-blade/side.svg",
  22613. extra: 1726 / 1267,
  22614. bottom: 58.4 / 1785
  22615. }
  22616. },
  22617. },
  22618. [
  22619. {
  22620. name: "Normal",
  22621. height: math.unit(5 + 11 / 12, "feet"),
  22622. default: true
  22623. },
  22624. ]
  22625. ))
  22626. characterMakers.push(() => makeCharacter(
  22627. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  22628. {
  22629. front: {
  22630. height: math.unit(1 + 6 / 12, "feet"),
  22631. weight: math.unit(25, "lb"),
  22632. name: "Front",
  22633. image: {
  22634. source: "./media/characters/karla-halldor/front.svg",
  22635. extra: 1459 / 1383,
  22636. bottom: 12 / 1472
  22637. }
  22638. },
  22639. },
  22640. [
  22641. {
  22642. name: "Normal",
  22643. height: math.unit(1 + 6 / 12, "feet"),
  22644. default: true
  22645. },
  22646. ]
  22647. ))
  22648. characterMakers.push(() => makeCharacter(
  22649. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  22650. {
  22651. front: {
  22652. height: math.unit(6 + 2 / 12, "feet"),
  22653. weight: math.unit(160, "lb"),
  22654. name: "Front",
  22655. image: {
  22656. source: "./media/characters/ariam/front.svg",
  22657. extra: 714 / 617,
  22658. bottom: 23.4 / 737,
  22659. }
  22660. },
  22661. squatting: {
  22662. height: math.unit(4.1, "feet"),
  22663. weight: math.unit(160, "lb"),
  22664. name: "Squatting",
  22665. image: {
  22666. source: "./media/characters/ariam/squatting.svg",
  22667. extra: 2617 / 2112,
  22668. bottom: 61.2 / 2681,
  22669. }
  22670. },
  22671. },
  22672. [
  22673. {
  22674. name: "Normal",
  22675. height: math.unit(6 + 2 / 12, "feet"),
  22676. default: true
  22677. },
  22678. {
  22679. name: "Normal+",
  22680. height: math.unit(4, "meters")
  22681. },
  22682. {
  22683. name: "Macro",
  22684. height: math.unit(50, "meters")
  22685. },
  22686. {
  22687. name: "Macro+",
  22688. height: math.unit(100, "meters")
  22689. },
  22690. {
  22691. name: "Megamacro",
  22692. height: math.unit(20, "km")
  22693. },
  22694. ]
  22695. ))
  22696. characterMakers.push(() => makeCharacter(
  22697. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  22698. {
  22699. front: {
  22700. height: math.unit(1.67, "meters"),
  22701. weight: math.unit(140, "lb"),
  22702. name: "Front",
  22703. image: {
  22704. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  22705. extra: 438 / 410,
  22706. bottom: 0.75 / 439
  22707. }
  22708. },
  22709. },
  22710. [
  22711. {
  22712. name: "Shrunken",
  22713. height: math.unit(7.6, "cm")
  22714. },
  22715. {
  22716. name: "Human Scale",
  22717. height: math.unit(1.67, "meters")
  22718. },
  22719. {
  22720. name: "Wolxi Scale",
  22721. height: math.unit(36.7, "meters"),
  22722. default: true
  22723. },
  22724. ]
  22725. ))
  22726. characterMakers.push(() => makeCharacter(
  22727. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  22728. {
  22729. front: {
  22730. height: math.unit(1.73, "meters"),
  22731. weight: math.unit(240, "lb"),
  22732. name: "Front",
  22733. image: {
  22734. source: "./media/characters/izue-two-mothers/front.svg",
  22735. extra: 469 / 437,
  22736. bottom: 1.24 / 470.6
  22737. }
  22738. },
  22739. },
  22740. [
  22741. {
  22742. name: "Shrunken",
  22743. height: math.unit(7.86, "cm")
  22744. },
  22745. {
  22746. name: "Human Scale",
  22747. height: math.unit(1.73, "meters")
  22748. },
  22749. {
  22750. name: "Wolxi Scale",
  22751. height: math.unit(38, "meters"),
  22752. default: true
  22753. },
  22754. ]
  22755. ))
  22756. characterMakers.push(() => makeCharacter(
  22757. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  22758. {
  22759. front: {
  22760. height: math.unit(1.55, "meters"),
  22761. weight: math.unit(120, "lb"),
  22762. name: "Front",
  22763. image: {
  22764. source: "./media/characters/teeku-love-shack/front.svg",
  22765. extra: 387 / 362,
  22766. bottom: 1.51 / 388
  22767. }
  22768. },
  22769. },
  22770. [
  22771. {
  22772. name: "Shrunken",
  22773. height: math.unit(7, "cm")
  22774. },
  22775. {
  22776. name: "Human Scale",
  22777. height: math.unit(1.55, "meters")
  22778. },
  22779. {
  22780. name: "Wolxi Scale",
  22781. height: math.unit(34.1, "meters"),
  22782. default: true
  22783. },
  22784. ]
  22785. ))
  22786. characterMakers.push(() => makeCharacter(
  22787. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  22788. {
  22789. front: {
  22790. height: math.unit(1.83, "meters"),
  22791. weight: math.unit(135, "lb"),
  22792. name: "Front",
  22793. image: {
  22794. source: "./media/characters/dejma-the-red/front.svg",
  22795. extra: 480 / 458,
  22796. bottom: 1.8 / 482
  22797. }
  22798. },
  22799. },
  22800. [
  22801. {
  22802. name: "Shrunken",
  22803. height: math.unit(8.3, "cm")
  22804. },
  22805. {
  22806. name: "Human Scale",
  22807. height: math.unit(1.83, "meters")
  22808. },
  22809. {
  22810. name: "Wolxi Scale",
  22811. height: math.unit(40, "meters"),
  22812. default: true
  22813. },
  22814. ]
  22815. ))
  22816. characterMakers.push(() => makeCharacter(
  22817. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  22818. {
  22819. front: {
  22820. height: math.unit(1.78, "meters"),
  22821. weight: math.unit(65, "kg"),
  22822. name: "Front",
  22823. image: {
  22824. source: "./media/characters/aki/front.svg",
  22825. extra: 452 / 415
  22826. }
  22827. },
  22828. frontNsfw: {
  22829. height: math.unit(1.78, "meters"),
  22830. weight: math.unit(65, "kg"),
  22831. name: "Front (NSFW)",
  22832. image: {
  22833. source: "./media/characters/aki/front-nsfw.svg",
  22834. extra: 452 / 415
  22835. }
  22836. },
  22837. back: {
  22838. height: math.unit(1.78, "meters"),
  22839. weight: math.unit(65, "kg"),
  22840. name: "Back",
  22841. image: {
  22842. source: "./media/characters/aki/back.svg",
  22843. extra: 452 / 415
  22844. }
  22845. },
  22846. rump: {
  22847. height: math.unit(2.05, "feet"),
  22848. name: "Rump",
  22849. image: {
  22850. source: "./media/characters/aki/rump.svg"
  22851. }
  22852. },
  22853. dick: {
  22854. height: math.unit(0.95, "feet"),
  22855. name: "Dick",
  22856. image: {
  22857. source: "./media/characters/aki/dick.svg"
  22858. }
  22859. },
  22860. },
  22861. [
  22862. {
  22863. name: "Micro",
  22864. height: math.unit(15, "cm")
  22865. },
  22866. {
  22867. name: "Normal",
  22868. height: math.unit(178, "cm"),
  22869. default: true
  22870. },
  22871. {
  22872. name: "Macro",
  22873. height: math.unit(214, "m")
  22874. },
  22875. {
  22876. name: "Macro+",
  22877. height: math.unit(534, "m")
  22878. },
  22879. ]
  22880. ))
  22881. characterMakers.push(() => makeCharacter(
  22882. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  22883. {
  22884. front: {
  22885. height: math.unit(5 + 5 / 12, "feet"),
  22886. weight: math.unit(120, "lb"),
  22887. name: "Front",
  22888. image: {
  22889. source: "./media/characters/ari/front.svg",
  22890. extra: 714.5 / 682,
  22891. bottom: 8 / 722.5
  22892. }
  22893. },
  22894. },
  22895. [
  22896. {
  22897. name: "Normal",
  22898. height: math.unit(5 + 5 / 12, "feet")
  22899. },
  22900. {
  22901. name: "Macro",
  22902. height: math.unit(100, "feet"),
  22903. default: true
  22904. },
  22905. {
  22906. name: "Megamacro",
  22907. height: math.unit(100, "miles")
  22908. },
  22909. {
  22910. name: "Gigamacro",
  22911. height: math.unit(80000, "miles")
  22912. },
  22913. ]
  22914. ))
  22915. characterMakers.push(() => makeCharacter(
  22916. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  22917. {
  22918. side: {
  22919. height: math.unit(9, "feet"),
  22920. weight: math.unit(400, "kg"),
  22921. name: "Side",
  22922. image: {
  22923. source: "./media/characters/bolt/side.svg",
  22924. extra: 1126 / 896,
  22925. bottom: 60 / 1187.3,
  22926. }
  22927. },
  22928. },
  22929. [
  22930. {
  22931. name: "Micro",
  22932. height: math.unit(5, "inches")
  22933. },
  22934. {
  22935. name: "Normal",
  22936. height: math.unit(9, "feet"),
  22937. default: true
  22938. },
  22939. {
  22940. name: "Macro",
  22941. height: math.unit(700, "feet")
  22942. },
  22943. {
  22944. name: "Max Size",
  22945. height: math.unit(1.52e22, "yottameters")
  22946. },
  22947. ]
  22948. ))
  22949. characterMakers.push(() => makeCharacter(
  22950. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  22951. {
  22952. front: {
  22953. height: math.unit(4.53, "meters"),
  22954. weight: math.unit(3, "tons"),
  22955. name: "Front",
  22956. image: {
  22957. source: "./media/characters/draekon-sylviar/front.svg",
  22958. extra: 1228 / 1068,
  22959. bottom: 41 / 1270
  22960. }
  22961. },
  22962. tail: {
  22963. height: math.unit(1.772, "meter"),
  22964. name: "Tail",
  22965. image: {
  22966. source: "./media/characters/draekon-sylviar/tail.svg"
  22967. }
  22968. },
  22969. head: {
  22970. height: math.unit(1.331, "meter"),
  22971. name: "Head",
  22972. image: {
  22973. source: "./media/characters/draekon-sylviar/head.svg"
  22974. }
  22975. },
  22976. hand: {
  22977. height: math.unit(0.564, "meter"),
  22978. name: "Hand",
  22979. image: {
  22980. source: "./media/characters/draekon-sylviar/hand.svg"
  22981. }
  22982. },
  22983. foot: {
  22984. height: math.unit(0.621, "meter"),
  22985. name: "Foot",
  22986. image: {
  22987. source: "./media/characters/draekon-sylviar/foot.svg",
  22988. bottom: 32 / 324
  22989. }
  22990. },
  22991. dick: {
  22992. height: math.unit(61, "cm"),
  22993. name: "Dick",
  22994. image: {
  22995. source: "./media/characters/draekon-sylviar/dick.svg"
  22996. }
  22997. },
  22998. dickseparated: {
  22999. height: math.unit(61, "cm"),
  23000. name: "Dick-separated",
  23001. image: {
  23002. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23003. }
  23004. },
  23005. },
  23006. [
  23007. {
  23008. name: "Small",
  23009. height: math.unit(4.53 / 2, "meters"),
  23010. default: true
  23011. },
  23012. {
  23013. name: "Normal",
  23014. height: math.unit(4.53, "meters"),
  23015. default: true
  23016. },
  23017. {
  23018. name: "Large",
  23019. height: math.unit(4.53 * 2, "meters"),
  23020. },
  23021. ]
  23022. ))
  23023. characterMakers.push(() => makeCharacter(
  23024. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23025. {
  23026. front: {
  23027. height: math.unit(6 + 2 / 12, "feet"),
  23028. weight: math.unit(180, "lb"),
  23029. name: "Front",
  23030. image: {
  23031. source: "./media/characters/brawler/front.svg",
  23032. extra: 3301 / 3027,
  23033. bottom: 138 / 3439
  23034. }
  23035. },
  23036. },
  23037. [
  23038. {
  23039. name: "Normal",
  23040. height: math.unit(6 + 2 / 12, "feet"),
  23041. default: true
  23042. },
  23043. ]
  23044. ))
  23045. characterMakers.push(() => makeCharacter(
  23046. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23047. {
  23048. front: {
  23049. height: math.unit(11, "feet"),
  23050. weight: math.unit(1000, "lb"),
  23051. name: "Front",
  23052. image: {
  23053. source: "./media/characters/alex/front.svg",
  23054. bottom: 44.5 / 620
  23055. }
  23056. },
  23057. },
  23058. [
  23059. {
  23060. name: "Micro",
  23061. height: math.unit(5, "inches")
  23062. },
  23063. {
  23064. name: "Normal",
  23065. height: math.unit(11, "feet"),
  23066. default: true
  23067. },
  23068. {
  23069. name: "Macro",
  23070. height: math.unit(9.5e9, "feet")
  23071. },
  23072. {
  23073. name: "Max Size",
  23074. height: math.unit(1.4e283, "yottameters")
  23075. },
  23076. ]
  23077. ))
  23078. characterMakers.push(() => makeCharacter(
  23079. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23080. {
  23081. female: {
  23082. height: math.unit(29.9, "m"),
  23083. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23084. name: "Female",
  23085. image: {
  23086. source: "./media/characters/zenari/female.svg",
  23087. extra: 3281.6 / 3217,
  23088. bottom: 72.2 / 3353
  23089. }
  23090. },
  23091. male: {
  23092. height: math.unit(27.7, "m"),
  23093. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23094. name: "Male",
  23095. image: {
  23096. source: "./media/characters/zenari/male.svg",
  23097. extra: 3008 / 2991,
  23098. bottom: 54.6 / 3069
  23099. }
  23100. },
  23101. },
  23102. [
  23103. {
  23104. name: "Macro",
  23105. height: math.unit(29.7, "meters"),
  23106. default: true
  23107. },
  23108. ]
  23109. ))
  23110. characterMakers.push(() => makeCharacter(
  23111. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23112. {
  23113. female: {
  23114. height: math.unit(23.8, "m"),
  23115. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23116. name: "Female",
  23117. image: {
  23118. source: "./media/characters/mactarian/female.svg",
  23119. extra: 2662 / 2569,
  23120. bottom: 73 / 2736
  23121. }
  23122. },
  23123. male: {
  23124. height: math.unit(23.8, "m"),
  23125. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23126. name: "Male",
  23127. image: {
  23128. source: "./media/characters/mactarian/male.svg",
  23129. extra: 2673 / 2600,
  23130. bottom: 76 / 2750
  23131. }
  23132. },
  23133. },
  23134. [
  23135. {
  23136. name: "Macro",
  23137. height: math.unit(23.8, "meters"),
  23138. default: true
  23139. },
  23140. ]
  23141. ))
  23142. characterMakers.push(() => makeCharacter(
  23143. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23144. {
  23145. female: {
  23146. height: math.unit(19.3, "m"),
  23147. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23148. name: "Female",
  23149. image: {
  23150. source: "./media/characters/umok/female.svg",
  23151. extra: 2186 / 2078,
  23152. bottom: 87 / 2277
  23153. }
  23154. },
  23155. male: {
  23156. height: math.unit(19.5, "m"),
  23157. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23158. name: "Male",
  23159. image: {
  23160. source: "./media/characters/umok/male.svg",
  23161. extra: 2233 / 2140,
  23162. bottom: 24.4 / 2258
  23163. }
  23164. },
  23165. },
  23166. [
  23167. {
  23168. name: "Macro",
  23169. height: math.unit(19.3, "meters"),
  23170. default: true
  23171. },
  23172. ]
  23173. ))
  23174. characterMakers.push(() => makeCharacter(
  23175. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23176. {
  23177. female: {
  23178. height: math.unit(26.15, "m"),
  23179. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23180. name: "Female",
  23181. image: {
  23182. source: "./media/characters/joraxian/female.svg",
  23183. extra: 2943 / 2831,
  23184. bottom: 27 / 2972
  23185. }
  23186. },
  23187. male: {
  23188. height: math.unit(25.4, "m"),
  23189. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23190. name: "Male",
  23191. image: {
  23192. source: "./media/characters/joraxian/male.svg",
  23193. extra: 2835 / 2741,
  23194. bottom: 27 / 2862
  23195. }
  23196. },
  23197. },
  23198. [
  23199. {
  23200. name: "Macro",
  23201. height: math.unit(26.15, "meters"),
  23202. default: true
  23203. },
  23204. ]
  23205. ))
  23206. characterMakers.push(() => makeCharacter(
  23207. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23208. {
  23209. female: {
  23210. height: math.unit(21.6, "m"),
  23211. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23212. name: "Female",
  23213. image: {
  23214. source: "./media/characters/sthara/female.svg",
  23215. extra: 2516 / 2347,
  23216. bottom: 21.5 / 2537
  23217. }
  23218. },
  23219. male: {
  23220. height: math.unit(24, "m"),
  23221. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23222. name: "Male",
  23223. image: {
  23224. source: "./media/characters/sthara/male.svg",
  23225. extra: 2732 / 2607,
  23226. bottom: 23 / 2732
  23227. }
  23228. },
  23229. },
  23230. [
  23231. {
  23232. name: "Macro",
  23233. height: math.unit(21.6, "meters"),
  23234. default: true
  23235. },
  23236. ]
  23237. ))
  23238. characterMakers.push(() => makeCharacter(
  23239. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23240. {
  23241. front: {
  23242. height: math.unit(6 + 4 / 12, "feet"),
  23243. weight: math.unit(175, "lb"),
  23244. name: "Front",
  23245. image: {
  23246. source: "./media/characters/luka-bryzant/front.svg",
  23247. extra: 311 / 289,
  23248. bottom: 4 / 315
  23249. }
  23250. },
  23251. back: {
  23252. height: math.unit(6 + 4 / 12, "feet"),
  23253. weight: math.unit(175, "lb"),
  23254. name: "Back",
  23255. image: {
  23256. source: "./media/characters/luka-bryzant/back.svg",
  23257. extra: 311 / 289,
  23258. bottom: 3.8 / 313.7
  23259. }
  23260. },
  23261. },
  23262. [
  23263. {
  23264. name: "Micro",
  23265. height: math.unit(10, "inches")
  23266. },
  23267. {
  23268. name: "Normal",
  23269. height: math.unit(6 + 4 / 12, "feet"),
  23270. default: true
  23271. },
  23272. {
  23273. name: "Large",
  23274. height: math.unit(12, "feet")
  23275. },
  23276. ]
  23277. ))
  23278. characterMakers.push(() => makeCharacter(
  23279. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23280. {
  23281. front: {
  23282. height: math.unit(5 + 7 / 12, "feet"),
  23283. weight: math.unit(185, "lb"),
  23284. name: "Front",
  23285. image: {
  23286. source: "./media/characters/aman-aquila/front.svg",
  23287. extra: 1013 / 976,
  23288. bottom: 45.6 / 1057
  23289. }
  23290. },
  23291. side: {
  23292. height: math.unit(5 + 7 / 12, "feet"),
  23293. weight: math.unit(185, "lb"),
  23294. name: "Side",
  23295. image: {
  23296. source: "./media/characters/aman-aquila/side.svg",
  23297. extra: 1054 / 1011,
  23298. bottom: 15 / 1070
  23299. }
  23300. },
  23301. back: {
  23302. height: math.unit(5 + 7 / 12, "feet"),
  23303. weight: math.unit(185, "lb"),
  23304. name: "Back",
  23305. image: {
  23306. source: "./media/characters/aman-aquila/back.svg",
  23307. extra: 1026 / 970,
  23308. bottom: 12 / 1039
  23309. }
  23310. },
  23311. head: {
  23312. height: math.unit(1.211, "feet"),
  23313. name: "Head",
  23314. image: {
  23315. source: "./media/characters/aman-aquila/head.svg",
  23316. }
  23317. },
  23318. },
  23319. [
  23320. {
  23321. name: "Minimicro",
  23322. height: math.unit(0.057, "inches")
  23323. },
  23324. {
  23325. name: "Micro",
  23326. height: math.unit(7, "inches")
  23327. },
  23328. {
  23329. name: "Mini",
  23330. height: math.unit(3 + 7 / 12, "feet")
  23331. },
  23332. {
  23333. name: "Normal",
  23334. height: math.unit(5 + 7 / 12, "feet"),
  23335. default: true
  23336. },
  23337. {
  23338. name: "Macro",
  23339. height: math.unit(157 + 7 / 12, "feet")
  23340. },
  23341. {
  23342. name: "Megamacro",
  23343. height: math.unit(1557 + 7 / 12, "feet")
  23344. },
  23345. {
  23346. name: "Gigamacro",
  23347. height: math.unit(15557 + 7 / 12, "feet")
  23348. },
  23349. ]
  23350. ))
  23351. characterMakers.push(() => makeCharacter(
  23352. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23353. {
  23354. front: {
  23355. height: math.unit(3 + 2 / 12, "inches"),
  23356. weight: math.unit(0.3, "ounces"),
  23357. name: "Front",
  23358. image: {
  23359. source: "./media/characters/hiphae/front.svg",
  23360. extra: 1931 / 1683,
  23361. bottom: 24 / 1955
  23362. }
  23363. },
  23364. },
  23365. [
  23366. {
  23367. name: "Normal",
  23368. height: math.unit(3 + 1 / 2, "inches"),
  23369. default: true
  23370. },
  23371. ]
  23372. ))
  23373. characterMakers.push(() => makeCharacter(
  23374. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23375. {
  23376. front: {
  23377. height: math.unit(5 + 10 / 12, "feet"),
  23378. weight: math.unit(165, "lb"),
  23379. name: "Front",
  23380. image: {
  23381. source: "./media/characters/nicky/front.svg",
  23382. extra: 3144 / 2886,
  23383. bottom: 45.6 / 3192
  23384. }
  23385. },
  23386. back: {
  23387. height: math.unit(5 + 10 / 12, "feet"),
  23388. weight: math.unit(165, "lb"),
  23389. name: "Back",
  23390. image: {
  23391. source: "./media/characters/nicky/back.svg",
  23392. extra: 3055 / 2804,
  23393. bottom: 28.4 / 3087
  23394. }
  23395. },
  23396. frontclothed: {
  23397. height: math.unit(5 + 10 / 12, "feet"),
  23398. weight: math.unit(165, "lb"),
  23399. name: "Front-clothed",
  23400. image: {
  23401. source: "./media/characters/nicky/front-clothed.svg",
  23402. extra: 3184.9 / 2926.9,
  23403. bottom: 86.5 / 3239.9
  23404. }
  23405. },
  23406. foot: {
  23407. height: math.unit(1.16, "feet"),
  23408. name: "Foot",
  23409. image: {
  23410. source: "./media/characters/nicky/foot.svg"
  23411. }
  23412. },
  23413. feet: {
  23414. height: math.unit(1.34, "feet"),
  23415. name: "Feet",
  23416. image: {
  23417. source: "./media/characters/nicky/feet.svg"
  23418. }
  23419. },
  23420. maw: {
  23421. height: math.unit(0.9, "feet"),
  23422. name: "Maw",
  23423. image: {
  23424. source: "./media/characters/nicky/maw.svg"
  23425. }
  23426. },
  23427. },
  23428. [
  23429. {
  23430. name: "Normal",
  23431. height: math.unit(5 + 10 / 12, "feet"),
  23432. default: true
  23433. },
  23434. {
  23435. name: "Macro",
  23436. height: math.unit(60, "feet")
  23437. },
  23438. {
  23439. name: "Megamacro",
  23440. height: math.unit(1, "mile")
  23441. },
  23442. ]
  23443. ))
  23444. characterMakers.push(() => makeCharacter(
  23445. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23446. {
  23447. side: {
  23448. height: math.unit(10, "feet"),
  23449. weight: math.unit(600, "lb"),
  23450. name: "Side",
  23451. image: {
  23452. source: "./media/characters/blair/side.svg",
  23453. bottom: 16.6 / 475,
  23454. extra: 458 / 431
  23455. }
  23456. },
  23457. },
  23458. [
  23459. {
  23460. name: "Micro",
  23461. height: math.unit(8, "inches")
  23462. },
  23463. {
  23464. name: "Normal",
  23465. height: math.unit(10, "feet"),
  23466. default: true
  23467. },
  23468. {
  23469. name: "Macro",
  23470. height: math.unit(180, "feet")
  23471. },
  23472. ]
  23473. ))
  23474. characterMakers.push(() => makeCharacter(
  23475. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23476. {
  23477. front: {
  23478. height: math.unit(5 + 4 / 12, "feet"),
  23479. weight: math.unit(125, "lb"),
  23480. name: "Front",
  23481. image: {
  23482. source: "./media/characters/fisher/front.svg",
  23483. extra: 444 / 390,
  23484. bottom: 2 / 444.8
  23485. }
  23486. },
  23487. },
  23488. [
  23489. {
  23490. name: "Micro",
  23491. height: math.unit(4, "inches")
  23492. },
  23493. {
  23494. name: "Normal",
  23495. height: math.unit(5 + 4 / 12, "feet"),
  23496. default: true
  23497. },
  23498. {
  23499. name: "Macro",
  23500. height: math.unit(100, "feet")
  23501. },
  23502. ]
  23503. ))
  23504. characterMakers.push(() => makeCharacter(
  23505. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23506. {
  23507. front: {
  23508. height: math.unit(6.71, "feet"),
  23509. weight: math.unit(200, "lb"),
  23510. capacity: math.unit(1000000, "people"),
  23511. name: "Front",
  23512. image: {
  23513. source: "./media/characters/gliss/front.svg",
  23514. extra: 2347 / 2231,
  23515. bottom: 113 / 2462
  23516. }
  23517. },
  23518. hammerspaceSize: {
  23519. height: math.unit(6.71 * 717, "feet"),
  23520. weight: math.unit(200, "lb"),
  23521. capacity: math.unit(1000000, "people"),
  23522. name: "Hammerspace Size",
  23523. image: {
  23524. source: "./media/characters/gliss/front.svg",
  23525. extra: 2347 / 2231,
  23526. bottom: 113 / 2462
  23527. }
  23528. },
  23529. },
  23530. [
  23531. {
  23532. name: "Normal",
  23533. height: math.unit(6.71, "feet"),
  23534. default: true
  23535. },
  23536. ]
  23537. ))
  23538. characterMakers.push(() => makeCharacter(
  23539. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  23540. {
  23541. side: {
  23542. height: math.unit(1.44, "m"),
  23543. weight: math.unit(80, "kg"),
  23544. name: "Side",
  23545. image: {
  23546. source: "./media/characters/dune-anderson/side.svg",
  23547. bottom: 49 / 1426
  23548. }
  23549. },
  23550. },
  23551. [
  23552. {
  23553. name: "Wolf-sized",
  23554. height: math.unit(1.44, "meters")
  23555. },
  23556. {
  23557. name: "Normal",
  23558. height: math.unit(5.05, "meters"),
  23559. default: true
  23560. },
  23561. {
  23562. name: "Big",
  23563. height: math.unit(14.4, "meters")
  23564. },
  23565. {
  23566. name: "Huge",
  23567. height: math.unit(144, "meters")
  23568. },
  23569. ]
  23570. ))
  23571. characterMakers.push(() => makeCharacter(
  23572. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  23573. {
  23574. front: {
  23575. height: math.unit(7, "feet"),
  23576. weight: math.unit(425, "lb"),
  23577. name: "Front",
  23578. image: {
  23579. source: "./media/characters/hind/front.svg",
  23580. extra: 2091 / 1860,
  23581. bottom: 129 / 2220
  23582. }
  23583. },
  23584. back: {
  23585. height: math.unit(7, "feet"),
  23586. weight: math.unit(425, "lb"),
  23587. name: "Back",
  23588. image: {
  23589. source: "./media/characters/hind/back.svg",
  23590. extra: 2091 / 1860,
  23591. bottom: 24.6 / 2309
  23592. }
  23593. },
  23594. tail: {
  23595. height: math.unit(2.8, "feet"),
  23596. name: "Tail",
  23597. image: {
  23598. source: "./media/characters/hind/tail.svg"
  23599. }
  23600. },
  23601. head: {
  23602. height: math.unit(2.55, "feet"),
  23603. name: "Head",
  23604. image: {
  23605. source: "./media/characters/hind/head.svg"
  23606. }
  23607. },
  23608. },
  23609. [
  23610. {
  23611. name: "XS",
  23612. height: math.unit(0.7, "feet")
  23613. },
  23614. {
  23615. name: "Normal",
  23616. height: math.unit(7, "feet"),
  23617. default: true
  23618. },
  23619. {
  23620. name: "XL",
  23621. height: math.unit(70, "feet")
  23622. },
  23623. ]
  23624. ))
  23625. characterMakers.push(() => makeCharacter(
  23626. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  23627. {
  23628. front: {
  23629. height: math.unit(6, "feet"),
  23630. weight: math.unit(150, "lb"),
  23631. name: "Front",
  23632. image: {
  23633. source: "./media/characters/dylan-skaven/front.svg",
  23634. extra: 2318 / 2063,
  23635. bottom: 93.4 / 2410
  23636. }
  23637. },
  23638. },
  23639. [
  23640. {
  23641. name: "Nano",
  23642. height: math.unit(1, "mm")
  23643. },
  23644. {
  23645. name: "Micro",
  23646. height: math.unit(1, "cm")
  23647. },
  23648. {
  23649. name: "Normal",
  23650. height: math.unit(2.1, "meters"),
  23651. default: true
  23652. },
  23653. ]
  23654. ))
  23655. characterMakers.push(() => makeCharacter(
  23656. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  23657. {
  23658. front: {
  23659. height: math.unit(7 + 5 / 12, "feet"),
  23660. weight: math.unit(357, "lb"),
  23661. name: "Front",
  23662. image: {
  23663. source: "./media/characters/solex-draconov/front.svg",
  23664. extra: 1993 / 1865,
  23665. bottom: 117 / 2111
  23666. }
  23667. },
  23668. },
  23669. [
  23670. {
  23671. name: "Natural Height",
  23672. height: math.unit(7 + 5 / 12, "feet"),
  23673. default: true
  23674. },
  23675. {
  23676. name: "Macro",
  23677. height: math.unit(350, "feet")
  23678. },
  23679. {
  23680. name: "Macro+",
  23681. height: math.unit(1000, "feet")
  23682. },
  23683. {
  23684. name: "Megamacro",
  23685. height: math.unit(20, "km")
  23686. },
  23687. {
  23688. name: "Megamacro+",
  23689. height: math.unit(1000, "km")
  23690. },
  23691. {
  23692. name: "Gigamacro",
  23693. height: math.unit(2.5, "Gm")
  23694. },
  23695. {
  23696. name: "Teramacro",
  23697. height: math.unit(15, "Tm")
  23698. },
  23699. {
  23700. name: "Galactic",
  23701. height: math.unit(30, "Zm")
  23702. },
  23703. {
  23704. name: "Universal",
  23705. height: math.unit(21000, "Ym")
  23706. },
  23707. {
  23708. name: "Omniversal",
  23709. height: math.unit(9.861e50, "Ym")
  23710. },
  23711. {
  23712. name: "Existential",
  23713. height: math.unit(1e300, "meters")
  23714. },
  23715. ]
  23716. ))
  23717. characterMakers.push(() => makeCharacter(
  23718. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  23719. {
  23720. side: {
  23721. height: math.unit(25, "feet"),
  23722. weight: math.unit(90000, "lb"),
  23723. name: "Side",
  23724. image: {
  23725. source: "./media/characters/mandarax/side.svg",
  23726. extra: 614 / 332,
  23727. bottom: 55 / 630
  23728. }
  23729. },
  23730. head: {
  23731. height: math.unit(11.4, "feet"),
  23732. name: "Head",
  23733. image: {
  23734. source: "./media/characters/mandarax/head.svg"
  23735. }
  23736. },
  23737. belly: {
  23738. height: math.unit(33, "feet"),
  23739. name: "Belly",
  23740. capacity: math.unit(500, "people"),
  23741. image: {
  23742. source: "./media/characters/mandarax/belly.svg"
  23743. }
  23744. },
  23745. dick: {
  23746. height: math.unit(8.46, "feet"),
  23747. name: "Dick",
  23748. image: {
  23749. source: "./media/characters/mandarax/dick.svg"
  23750. }
  23751. },
  23752. top: {
  23753. height: math.unit(28, "meters"),
  23754. name: "Top",
  23755. image: {
  23756. source: "./media/characters/mandarax/top.svg"
  23757. }
  23758. },
  23759. },
  23760. [
  23761. {
  23762. name: "Normal",
  23763. height: math.unit(25, "feet"),
  23764. default: true
  23765. },
  23766. ]
  23767. ))
  23768. characterMakers.push(() => makeCharacter(
  23769. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  23770. {
  23771. front: {
  23772. height: math.unit(5, "feet"),
  23773. weight: math.unit(90, "lb"),
  23774. name: "Front",
  23775. image: {
  23776. source: "./media/characters/pixil/front.svg",
  23777. extra: 2000 / 1618,
  23778. bottom: 12.3 / 2011
  23779. }
  23780. },
  23781. },
  23782. [
  23783. {
  23784. name: "Normal",
  23785. height: math.unit(5, "feet"),
  23786. default: true
  23787. },
  23788. {
  23789. name: "Megamacro",
  23790. height: math.unit(10, "miles"),
  23791. },
  23792. ]
  23793. ))
  23794. characterMakers.push(() => makeCharacter(
  23795. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  23796. {
  23797. front: {
  23798. height: math.unit(7 + 2 / 12, "feet"),
  23799. weight: math.unit(200, "lb"),
  23800. name: "Front",
  23801. image: {
  23802. source: "./media/characters/angel/front.svg",
  23803. extra: 1830 / 1737,
  23804. bottom: 22.6 / 1854,
  23805. }
  23806. },
  23807. },
  23808. [
  23809. {
  23810. name: "Normal",
  23811. height: math.unit(7 + 2 / 12, "feet"),
  23812. default: true
  23813. },
  23814. {
  23815. name: "Macro",
  23816. height: math.unit(1000, "feet")
  23817. },
  23818. {
  23819. name: "Megamacro",
  23820. height: math.unit(2, "miles")
  23821. },
  23822. {
  23823. name: "Gigamacro",
  23824. height: math.unit(20, "earths")
  23825. },
  23826. ]
  23827. ))
  23828. characterMakers.push(() => makeCharacter(
  23829. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  23830. {
  23831. front: {
  23832. height: math.unit(5, "feet"),
  23833. weight: math.unit(180, "lb"),
  23834. name: "Front",
  23835. image: {
  23836. source: "./media/characters/mekana/front.svg",
  23837. extra: 1671 / 1605,
  23838. bottom: 3.5 / 1691
  23839. }
  23840. },
  23841. side: {
  23842. height: math.unit(5, "feet"),
  23843. weight: math.unit(180, "lb"),
  23844. name: "Side",
  23845. image: {
  23846. source: "./media/characters/mekana/side.svg",
  23847. extra: 1671 / 1605,
  23848. bottom: 3.5 / 1691
  23849. }
  23850. },
  23851. back: {
  23852. height: math.unit(5, "feet"),
  23853. weight: math.unit(180, "lb"),
  23854. name: "Back",
  23855. image: {
  23856. source: "./media/characters/mekana/back.svg",
  23857. extra: 1671 / 1605,
  23858. bottom: 3.5 / 1691
  23859. }
  23860. },
  23861. },
  23862. [
  23863. {
  23864. name: "Normal",
  23865. height: math.unit(5, "feet"),
  23866. default: true
  23867. },
  23868. ]
  23869. ))
  23870. characterMakers.push(() => makeCharacter(
  23871. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  23872. {
  23873. front: {
  23874. height: math.unit(4 + 6 / 12, "feet"),
  23875. weight: math.unit(80, "lb"),
  23876. name: "Front",
  23877. image: {
  23878. source: "./media/characters/pixie/front.svg",
  23879. extra: 1924 / 1825,
  23880. bottom: 22.4 / 1946
  23881. }
  23882. },
  23883. },
  23884. [
  23885. {
  23886. name: "Normal",
  23887. height: math.unit(4 + 6 / 12, "feet"),
  23888. default: true
  23889. },
  23890. {
  23891. name: "Macro",
  23892. height: math.unit(40, "feet")
  23893. },
  23894. ]
  23895. ))
  23896. characterMakers.push(() => makeCharacter(
  23897. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  23898. {
  23899. front: {
  23900. height: math.unit(2.1, "meters"),
  23901. weight: math.unit(200, "lb"),
  23902. name: "Front",
  23903. image: {
  23904. source: "./media/characters/the-lascivious/front.svg",
  23905. extra: 1 / 0.893,
  23906. bottom: 3.5 / 573.7
  23907. }
  23908. },
  23909. },
  23910. [
  23911. {
  23912. name: "Human Scale",
  23913. height: math.unit(2.1, "meters")
  23914. },
  23915. {
  23916. name: "Wolxi Scale",
  23917. height: math.unit(46.2, "m"),
  23918. default: true
  23919. },
  23920. {
  23921. name: "Boinker of Buildings",
  23922. height: math.unit(10, "km")
  23923. },
  23924. {
  23925. name: "Shagger of Skyscrapers",
  23926. height: math.unit(40, "km")
  23927. },
  23928. {
  23929. name: "Banger of Boroughs",
  23930. height: math.unit(4000, "km")
  23931. },
  23932. {
  23933. name: "Screwer of States",
  23934. height: math.unit(100000, "km")
  23935. },
  23936. {
  23937. name: "Pounder of Planets",
  23938. height: math.unit(2000000, "km")
  23939. },
  23940. ]
  23941. ))
  23942. characterMakers.push(() => makeCharacter(
  23943. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  23944. {
  23945. front: {
  23946. height: math.unit(6, "feet"),
  23947. weight: math.unit(150, "lb"),
  23948. name: "Front",
  23949. image: {
  23950. source: "./media/characters/aj/front.svg",
  23951. extra: 2039 / 1562,
  23952. bottom: 40 / 2079
  23953. }
  23954. },
  23955. },
  23956. [
  23957. {
  23958. name: "Normal",
  23959. height: math.unit(11 + 6 / 12, "feet"),
  23960. default: true
  23961. },
  23962. {
  23963. name: "Megamacro",
  23964. height: math.unit(60, "megameters")
  23965. },
  23966. ]
  23967. ))
  23968. characterMakers.push(() => makeCharacter(
  23969. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  23970. {
  23971. side: {
  23972. height: math.unit(31 + 8/12, "feet"),
  23973. weight: math.unit(75000, "kg"),
  23974. name: "Side",
  23975. image: {
  23976. source: "./media/characters/koros/side.svg",
  23977. extra: 1442/1297,
  23978. bottom: 122.7/1562
  23979. }
  23980. },
  23981. dicksKingsCrown: {
  23982. height: math.unit(6, "feet"),
  23983. name: "Dicks (King's Crown)",
  23984. image: {
  23985. source: "./media/characters/koros/dicks-kings-crown.svg"
  23986. }
  23987. },
  23988. dicksTailSet: {
  23989. height: math.unit(3, "feet"),
  23990. name: "Dicks (Tail Set)",
  23991. image: {
  23992. source: "./media/characters/koros/dicks-tail-set.svg"
  23993. }
  23994. },
  23995. dickCumming: {
  23996. height: math.unit(7.98, "feet"),
  23997. name: "Dick (Cumming)",
  23998. image: {
  23999. source: "./media/characters/koros/dick-cumming.svg"
  24000. }
  24001. },
  24002. dicksBack: {
  24003. height: math.unit(5.9, "feet"),
  24004. name: "Dicks (Back)",
  24005. image: {
  24006. source: "./media/characters/koros/dicks-back.svg"
  24007. }
  24008. },
  24009. dicksFront: {
  24010. height: math.unit(3.72, "feet"),
  24011. name: "Dicks (Front)",
  24012. image: {
  24013. source: "./media/characters/koros/dicks-front.svg"
  24014. }
  24015. },
  24016. dicksPeeking: {
  24017. height: math.unit(3.0, "feet"),
  24018. name: "Dicks (Peeking)",
  24019. image: {
  24020. source: "./media/characters/koros/dicks-peeking.svg"
  24021. }
  24022. },
  24023. eye: {
  24024. height: math.unit(1.7, "feet"),
  24025. name: "Eye",
  24026. image: {
  24027. source: "./media/characters/koros/eye.svg"
  24028. }
  24029. },
  24030. headFront: {
  24031. height: math.unit(11.69, "feet"),
  24032. name: "Head (Front)",
  24033. image: {
  24034. source: "./media/characters/koros/head-front.svg"
  24035. }
  24036. },
  24037. headSide: {
  24038. height: math.unit(14, "feet"),
  24039. name: "Head (Side)",
  24040. image: {
  24041. source: "./media/characters/koros/head-side.svg"
  24042. }
  24043. },
  24044. leg: {
  24045. height: math.unit(17, "feet"),
  24046. name: "Leg",
  24047. image: {
  24048. source: "./media/characters/koros/leg.svg"
  24049. }
  24050. },
  24051. mawSide: {
  24052. height: math.unit(12.8, "feet"),
  24053. name: "Maw (Side)",
  24054. image: {
  24055. source: "./media/characters/koros/maw-side.svg"
  24056. }
  24057. },
  24058. mawSpitting: {
  24059. height: math.unit(17, "feet"),
  24060. name: "Maw (Spitting)",
  24061. image: {
  24062. source: "./media/characters/koros/maw-spitting.svg"
  24063. }
  24064. },
  24065. slit: {
  24066. height: math.unit(2.8, "feet"),
  24067. name: "Slit",
  24068. image: {
  24069. source: "./media/characters/koros/slit.svg"
  24070. }
  24071. },
  24072. stomach: {
  24073. height: math.unit(6.8, "feet"),
  24074. capacity: math.unit(20, "people"),
  24075. name: "Stomach",
  24076. image: {
  24077. source: "./media/characters/koros/stomach.svg"
  24078. }
  24079. },
  24080. wingspanBottom: {
  24081. height: math.unit(114, "feet"),
  24082. name: "Wingspan (Bottom)",
  24083. image: {
  24084. source: "./media/characters/koros/wingspan-bottom.svg"
  24085. }
  24086. },
  24087. wingspanTop: {
  24088. height: math.unit(104, "feet"),
  24089. name: "Wingspan (Top)",
  24090. image: {
  24091. source: "./media/characters/koros/wingspan-top.svg"
  24092. }
  24093. },
  24094. },
  24095. [
  24096. {
  24097. name: "Normal",
  24098. height: math.unit(31 + 8/12, "feet"),
  24099. default: true
  24100. },
  24101. ]
  24102. ))
  24103. characterMakers.push(() => makeCharacter(
  24104. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24105. {
  24106. front: {
  24107. height: math.unit(18 + 5/12, "feet"),
  24108. weight: math.unit(3750, "kg"),
  24109. name: "Front",
  24110. image: {
  24111. source: "./media/characters/vexx/front.svg",
  24112. extra: 426/396,
  24113. bottom: 31.5/458
  24114. }
  24115. },
  24116. maw: {
  24117. height: math.unit(6, "feet"),
  24118. name: "Maw",
  24119. image: {
  24120. source: "./media/characters/vexx/maw.svg"
  24121. }
  24122. },
  24123. },
  24124. [
  24125. {
  24126. name: "Normal",
  24127. height: math.unit(18 + 5/12, "feet"),
  24128. default: true
  24129. },
  24130. ]
  24131. ))
  24132. characterMakers.push(() => makeCharacter(
  24133. { name: "Baadra" },
  24134. {
  24135. front: {
  24136. height: math.unit(17 + 6/12, "feet"),
  24137. weight: math.unit(150, "lb"),
  24138. name: "Front",
  24139. image: {
  24140. source: "./media/characters/baadra/front.svg",
  24141. extra: 3137/2890,
  24142. bottom: 168.4/3305
  24143. }
  24144. },
  24145. back: {
  24146. height: math.unit(17 + 6/12, "feet"),
  24147. weight: math.unit(150, "lb"),
  24148. name: "Back",
  24149. image: {
  24150. source: "./media/characters/baadra/back.svg",
  24151. extra: 3142/2890,
  24152. bottom: 220/3371
  24153. }
  24154. },
  24155. head: {
  24156. height: math.unit(5.45, "feet"),
  24157. name: "Head",
  24158. image: {
  24159. source: "./media/characters/baadra/head.svg"
  24160. }
  24161. },
  24162. headAngry: {
  24163. height: math.unit(4.95, "feet"),
  24164. name: "Head (Angry)",
  24165. image: {
  24166. source: "./media/characters/baadra/head-angry.svg"
  24167. }
  24168. },
  24169. headOpen: {
  24170. height: math.unit(6, "feet"),
  24171. name: "Head (Open)",
  24172. image: {
  24173. source: "./media/characters/baadra/head-open.svg"
  24174. }
  24175. },
  24176. },
  24177. [
  24178. {
  24179. name: "Normal",
  24180. height: math.unit(17 + 6/12, "feet"),
  24181. default: true
  24182. },
  24183. ]
  24184. ))
  24185. characterMakers.push(() => makeCharacter(
  24186. { name: "Juri" },
  24187. {
  24188. front: {
  24189. height: math.unit(7 + 3/12, "feet"),
  24190. weight: math.unit(180, "lb"),
  24191. name: "Front",
  24192. image: {
  24193. source: "./media/characters/juri/front.svg",
  24194. extra: 1401/1237,
  24195. bottom: 18.5/1418
  24196. }
  24197. },
  24198. side: {
  24199. height: math.unit(7 + 3/12, "feet"),
  24200. weight: math.unit(180, "lb"),
  24201. name: "Side",
  24202. image: {
  24203. source: "./media/characters/juri/side.svg",
  24204. extra: 1424/1242,
  24205. bottom: 18.5/1447
  24206. }
  24207. },
  24208. sitting: {
  24209. height: math.unit(6, "feet"),
  24210. weight: math.unit(180, "lb"),
  24211. name: "Sitting",
  24212. image: {
  24213. source: "./media/characters/juri/sitting.svg",
  24214. extra: 1270/1143,
  24215. bottom: 100/1343
  24216. }
  24217. },
  24218. back: {
  24219. height: math.unit(7 + 3/12, "feet"),
  24220. weight: math.unit(180, "lb"),
  24221. name: "Back",
  24222. image: {
  24223. source: "./media/characters/juri/back.svg",
  24224. extra: 1377/1240,
  24225. bottom: 23.7/1405
  24226. }
  24227. },
  24228. maw: {
  24229. height: math.unit(2.8, "feet"),
  24230. name: "Maw",
  24231. image: {
  24232. source: "./media/characters/juri/maw.svg"
  24233. }
  24234. },
  24235. stomach: {
  24236. height: math.unit(0.89, "feet"),
  24237. capacity: math.unit(4, "liters"),
  24238. name: "Stomach",
  24239. image: {
  24240. source: "./media/characters/juri/stomach.svg"
  24241. }
  24242. },
  24243. },
  24244. [
  24245. {
  24246. name: "Normal",
  24247. height: math.unit(7 + 3/12, "feet"),
  24248. default: true
  24249. },
  24250. ]
  24251. ))
  24252. //characters
  24253. function makeCharacters() {
  24254. const results = [];
  24255. characterMakers.forEach(character => {
  24256. results.push(character());
  24257. });
  24258. return results;
  24259. }