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

40834 строки
874 KiB

  1. const pokemonMakers = {};
  2. pokemonMakers["Abomasnow"] = () => {
  3. return makeCharacter(
  4. "Abomasnow",
  5. "Pokemon",
  6. {
  7. "Abomasnow": {
  8. height: math.unit("87", "inches"),
  9. weight: math.unit("298.7", "lbs"),
  10. name: "Abomasnow",
  11. image: {
  12. source: "./media/pokemon/Abomasnow.svg"
  13. },
  14. rename: true
  15. },
  16. "Mega Abomasnow": {
  17. height: math.unit("106", "inches"),
  18. weight: math.unit("407.9", "lbs"),
  19. name: "Mega Abomasnow",
  20. image: {
  21. source: "./media/pokemon/Mega Abomasnow.svg"
  22. },
  23. rename: true
  24. }
  25. },
  26. [
  27. {
  28. name: "Micro",
  29. height: math.unit(8.7, "inches")
  30. },
  31. {
  32. name: "Normal",
  33. height: math.unit(87, "inches"),
  34. default: true
  35. },
  36. {
  37. name: "Macro",
  38. height: math.unit(8700.0, "inches")
  39. },
  40. {
  41. name: "Megamacro",
  42. height: math.unit(435000.0, "inches")
  43. },
  44. {
  45. name: "Gigamacro",
  46. height: math.unit(870000000.0, "inches")
  47. }
  48. ]
  49. )
  50. };
  51. pokemonMakers["Abra"] = () => {
  52. return makeCharacter(
  53. "Abra",
  54. "Pokemon",
  55. {
  56. "Abra": {
  57. height: math.unit("35", "inches"),
  58. weight: math.unit("43.0", "lbs"),
  59. name: "Abra",
  60. image: {
  61. source: "./media/pokemon/Abra.svg"
  62. },
  63. rename: true
  64. }
  65. },
  66. [
  67. {
  68. name: "Micro",
  69. height: math.unit(3.5, "inches")
  70. },
  71. {
  72. name: "Normal",
  73. height: math.unit(35, "inches"),
  74. default: true
  75. },
  76. {
  77. name: "Macro",
  78. height: math.unit(3500.0, "inches")
  79. },
  80. {
  81. name: "Megamacro",
  82. height: math.unit(175000.0, "inches")
  83. },
  84. {
  85. name: "Gigamacro",
  86. height: math.unit(350000000.0, "inches")
  87. }
  88. ]
  89. )
  90. };
  91. pokemonMakers["Absol"] = () => {
  92. return makeCharacter(
  93. "Absol",
  94. "Pokemon",
  95. {
  96. "Absol": {
  97. height: math.unit("47", "inches"),
  98. weight: math.unit("103.6", "lbs"),
  99. name: "Absol",
  100. image: {
  101. source: "./media/pokemon/Absol.svg"
  102. },
  103. rename: true
  104. },
  105. "Mega Absol": {
  106. height: math.unit("47", "inches"),
  107. weight: math.unit("108.0", "lbs"),
  108. name: "Mega Absol",
  109. image: {
  110. source: "./media/pokemon/Mega Absol.svg"
  111. },
  112. rename: true
  113. }
  114. },
  115. [
  116. {
  117. name: "Micro",
  118. height: math.unit(4.7, "inches")
  119. },
  120. {
  121. name: "Normal",
  122. height: math.unit(47, "inches"),
  123. default: true
  124. },
  125. {
  126. name: "Macro",
  127. height: math.unit(4700.0, "inches")
  128. },
  129. {
  130. name: "Megamacro",
  131. height: math.unit(235000.0, "inches")
  132. },
  133. {
  134. name: "Gigamacro",
  135. height: math.unit(470000000.0, "inches")
  136. }
  137. ]
  138. )
  139. };
  140. pokemonMakers["Accelgor"] = () => {
  141. return makeCharacter(
  142. "Accelgor",
  143. "Pokemon",
  144. {
  145. "Accelgor": {
  146. height: math.unit("31", "inches"),
  147. weight: math.unit("55.8", "lbs"),
  148. name: "Accelgor",
  149. image: {
  150. source: "./media/pokemon/Accelgor.svg"
  151. },
  152. rename: true
  153. }
  154. },
  155. [
  156. {
  157. name: "Micro",
  158. height: math.unit(3.1, "inches")
  159. },
  160. {
  161. name: "Normal",
  162. height: math.unit(31, "inches"),
  163. default: true
  164. },
  165. {
  166. name: "Macro",
  167. height: math.unit(3100.0, "inches")
  168. },
  169. {
  170. name: "Megamacro",
  171. height: math.unit(155000.0, "inches")
  172. },
  173. {
  174. name: "Gigamacro",
  175. height: math.unit(310000000.0, "inches")
  176. }
  177. ]
  178. )
  179. };
  180. pokemonMakers["Aegislash"] = () => {
  181. return makeCharacter(
  182. "Aegislash",
  183. "Pokemon",
  184. {
  185. "Blade Forme": {
  186. height: math.unit("67", "inches"),
  187. weight: math.unit("116.8", "lbs"),
  188. name: "Blade Forme",
  189. image: {
  190. source: "./media/pokemon/Aegislash - Blade Forme.svg"
  191. },
  192. rename: true
  193. },
  194. "Shield Forme": {
  195. height: math.unit("67", "inches"),
  196. weight: math.unit("116.8", "lbs"),
  197. name: "Shield Forme",
  198. image: {
  199. source: "./media/pokemon/Aegislash - Shield Forme.svg"
  200. },
  201. rename: true
  202. }
  203. },
  204. [
  205. {
  206. name: "Micro",
  207. height: math.unit(6.7, "inches")
  208. },
  209. {
  210. name: "Normal",
  211. height: math.unit(67, "inches"),
  212. default: true
  213. },
  214. {
  215. name: "Macro",
  216. height: math.unit(6700.0, "inches")
  217. },
  218. {
  219. name: "Megamacro",
  220. height: math.unit(335000.0, "inches")
  221. },
  222. {
  223. name: "Gigamacro",
  224. height: math.unit(670000000.0, "inches")
  225. }
  226. ]
  227. )
  228. };
  229. pokemonMakers["Aerodactyl"] = () => {
  230. return makeCharacter(
  231. "Aerodactyl",
  232. "Pokemon",
  233. {
  234. "Aerodactyl": {
  235. height: math.unit("71", "inches"),
  236. weight: math.unit("130.1", "lbs"),
  237. name: "Aerodactyl",
  238. image: {
  239. source: "./media/pokemon/Aerodactyl.svg"
  240. },
  241. rename: true
  242. },
  243. "Mega Aerodactyl": {
  244. height: math.unit("83", "inches"),
  245. weight: math.unit("174.2", "lbs"),
  246. name: "Mega Aerodactyl",
  247. image: {
  248. source: "./media/pokemon/Mega Aerodactyl.svg"
  249. },
  250. rename: true
  251. }
  252. },
  253. [
  254. {
  255. name: "Micro",
  256. height: math.unit(7.1, "inches")
  257. },
  258. {
  259. name: "Normal",
  260. height: math.unit(71, "inches"),
  261. default: true
  262. },
  263. {
  264. name: "Macro",
  265. height: math.unit(7100.0, "inches")
  266. },
  267. {
  268. name: "Megamacro",
  269. height: math.unit(355000.0, "inches")
  270. },
  271. {
  272. name: "Gigamacro",
  273. height: math.unit(710000000.0, "inches")
  274. }
  275. ]
  276. )
  277. };
  278. pokemonMakers["Aggron"] = () => {
  279. return makeCharacter(
  280. "Aggron",
  281. "Pokemon",
  282. {
  283. "Aggron": {
  284. height: math.unit("83", "inches"),
  285. weight: math.unit("793.7", "lbs"),
  286. name: "Aggron",
  287. image: {
  288. source: "./media/pokemon/Aggron.svg"
  289. },
  290. rename: true
  291. },
  292. "Mega Aggron": {
  293. height: math.unit("87", "inches"),
  294. weight: math.unit("870.8", "lbs"),
  295. name: "Mega Aggron",
  296. image: {
  297. source: "./media/pokemon/Mega Aggron.svg"
  298. },
  299. rename: true
  300. }
  301. },
  302. [
  303. {
  304. name: "Micro",
  305. height: math.unit(8.3, "inches")
  306. },
  307. {
  308. name: "Normal",
  309. height: math.unit(83, "inches"),
  310. default: true
  311. },
  312. {
  313. name: "Macro",
  314. height: math.unit(8300.0, "inches")
  315. },
  316. {
  317. name: "Megamacro",
  318. height: math.unit(415000.0, "inches")
  319. },
  320. {
  321. name: "Gigamacro",
  322. height: math.unit(830000000.0, "inches")
  323. }
  324. ]
  325. )
  326. };
  327. pokemonMakers["Aipom"] = () => {
  328. return makeCharacter(
  329. "Aipom",
  330. "Pokemon",
  331. {
  332. "Aipom": {
  333. height: math.unit("31", "inches"),
  334. weight: math.unit("25.4", "lbs"),
  335. name: "Aipom",
  336. image: {
  337. source: "./media/pokemon/Aipom.svg"
  338. },
  339. rename: true
  340. }
  341. },
  342. [
  343. {
  344. name: "Micro",
  345. height: math.unit(3.1, "inches")
  346. },
  347. {
  348. name: "Normal",
  349. height: math.unit(31, "inches"),
  350. default: true
  351. },
  352. {
  353. name: "Macro",
  354. height: math.unit(3100.0, "inches")
  355. },
  356. {
  357. name: "Megamacro",
  358. height: math.unit(155000.0, "inches")
  359. },
  360. {
  361. name: "Gigamacro",
  362. height: math.unit(310000000.0, "inches")
  363. }
  364. ]
  365. )
  366. };
  367. pokemonMakers["Alakazam"] = () => {
  368. return makeCharacter(
  369. "Alakazam",
  370. "Pokemon",
  371. {
  372. "Alakazam": {
  373. height: math.unit("59", "inches"),
  374. weight: math.unit("105.8", "lbs"),
  375. name: "Alakazam",
  376. image: {
  377. source: "./media/pokemon/Alakazam.svg"
  378. },
  379. rename: true
  380. },
  381. "Mega Alakazam": {
  382. height: math.unit("47", "inches"),
  383. weight: math.unit("105.8", "lbs"),
  384. name: "Mega Alakazam",
  385. image: {
  386. source: "./media/pokemon/Mega Alakazam.svg"
  387. },
  388. rename: true
  389. }
  390. },
  391. [
  392. {
  393. name: "Micro",
  394. height: math.unit(5.9, "inches")
  395. },
  396. {
  397. name: "Normal",
  398. height: math.unit(59, "inches"),
  399. default: true
  400. },
  401. {
  402. name: "Macro",
  403. height: math.unit(5900.0, "inches")
  404. },
  405. {
  406. name: "Megamacro",
  407. height: math.unit(295000.0, "inches")
  408. },
  409. {
  410. name: "Gigamacro",
  411. height: math.unit(590000000.0, "inches")
  412. }
  413. ]
  414. )
  415. };
  416. pokemonMakers["Alcremie"] = () => {
  417. return makeCharacter(
  418. "Alcremie",
  419. "Pokemon",
  420. {
  421. "Vanilla Cream": {
  422. height: math.unit("12", "inches"),
  423. weight: math.unit("1.1", "lbs"),
  424. name: "Vanilla Cream",
  425. image: {
  426. source: "./media/pokemon/Alcremie - Vanilla Cream.svg"
  427. },
  428. rename: true
  429. },
  430. "Gigantamax Alcremie": {
  431. height: math.unit("1181", "inches"),
  432. weight: math.unit("1048572.9254050929", "lbs"),
  433. name: "Gigantamax Alcremie",
  434. image: {
  435. source: "./media/pokemon/Gigantamax Alcremie.svg"
  436. },
  437. rename: true
  438. }
  439. },
  440. [
  441. {
  442. name: "Micro",
  443. height: math.unit(1.2, "inches")
  444. },
  445. {
  446. name: "Normal",
  447. height: math.unit(12, "inches"),
  448. default: true
  449. },
  450. {
  451. name: "Macro",
  452. height: math.unit(1200.0, "inches")
  453. },
  454. {
  455. name: "Megamacro",
  456. height: math.unit(60000.0, "inches")
  457. },
  458. {
  459. name: "Gigamacro",
  460. height: math.unit(120000000.0, "inches")
  461. }
  462. ]
  463. )
  464. };
  465. pokemonMakers["Alomomola"] = () => {
  466. return makeCharacter(
  467. "Alomomola",
  468. "Pokemon",
  469. {
  470. "Alomomola": {
  471. height: math.unit("47", "inches"),
  472. weight: math.unit("69.7", "lbs"),
  473. name: "Alomomola",
  474. image: {
  475. source: "./media/pokemon/Alomomola.svg"
  476. },
  477. rename: true
  478. }
  479. },
  480. [
  481. {
  482. name: "Micro",
  483. height: math.unit(4.7, "inches")
  484. },
  485. {
  486. name: "Normal",
  487. height: math.unit(47, "inches"),
  488. default: true
  489. },
  490. {
  491. name: "Macro",
  492. height: math.unit(4700.0, "inches")
  493. },
  494. {
  495. name: "Megamacro",
  496. height: math.unit(235000.0, "inches")
  497. },
  498. {
  499. name: "Gigamacro",
  500. height: math.unit(470000000.0, "inches")
  501. }
  502. ]
  503. )
  504. };
  505. pokemonMakers["Altaria"] = () => {
  506. return makeCharacter(
  507. "Altaria",
  508. "Pokemon",
  509. {
  510. "Altaria": {
  511. height: math.unit("43", "inches"),
  512. weight: math.unit("45.4", "lbs"),
  513. name: "Altaria",
  514. image: {
  515. source: "./media/pokemon/Altaria.svg"
  516. },
  517. rename: true
  518. },
  519. "Mega Altaria": {
  520. height: math.unit("59", "inches"),
  521. weight: math.unit("45.4", "lbs"),
  522. name: "Mega Altaria",
  523. image: {
  524. source: "./media/pokemon/Mega Altaria.svg"
  525. },
  526. rename: true
  527. }
  528. },
  529. [
  530. {
  531. name: "Micro",
  532. height: math.unit(4.3, "inches")
  533. },
  534. {
  535. name: "Normal",
  536. height: math.unit(43, "inches"),
  537. default: true
  538. },
  539. {
  540. name: "Macro",
  541. height: math.unit(4300.0, "inches")
  542. },
  543. {
  544. name: "Megamacro",
  545. height: math.unit(215000.0, "inches")
  546. },
  547. {
  548. name: "Gigamacro",
  549. height: math.unit(430000000.0, "inches")
  550. }
  551. ]
  552. )
  553. };
  554. pokemonMakers["Amaura"] = () => {
  555. return makeCharacter(
  556. "Amaura",
  557. "Pokemon",
  558. {
  559. "Amaura": {
  560. height: math.unit("51", "inches"),
  561. weight: math.unit("55.6", "lbs"),
  562. name: "Amaura",
  563. image: {
  564. source: "./media/pokemon/Amaura.svg"
  565. },
  566. rename: true
  567. }
  568. },
  569. [
  570. {
  571. name: "Micro",
  572. height: math.unit(5.1, "inches")
  573. },
  574. {
  575. name: "Normal",
  576. height: math.unit(51, "inches"),
  577. default: true
  578. },
  579. {
  580. name: "Macro",
  581. height: math.unit(5100.0, "inches")
  582. },
  583. {
  584. name: "Megamacro",
  585. height: math.unit(255000.0, "inches")
  586. },
  587. {
  588. name: "Gigamacro",
  589. height: math.unit(510000000.0, "inches")
  590. }
  591. ]
  592. )
  593. };
  594. pokemonMakers["Ambipom"] = () => {
  595. return makeCharacter(
  596. "Ambipom",
  597. "Pokemon",
  598. {
  599. "Ambipom": {
  600. height: math.unit("47", "inches"),
  601. weight: math.unit("44.8", "lbs"),
  602. name: "Ambipom",
  603. image: {
  604. source: "./media/pokemon/Ambipom.svg"
  605. },
  606. rename: true
  607. }
  608. },
  609. [
  610. {
  611. name: "Micro",
  612. height: math.unit(4.7, "inches")
  613. },
  614. {
  615. name: "Normal",
  616. height: math.unit(47, "inches"),
  617. default: true
  618. },
  619. {
  620. name: "Macro",
  621. height: math.unit(4700.0, "inches")
  622. },
  623. {
  624. name: "Megamacro",
  625. height: math.unit(235000.0, "inches")
  626. },
  627. {
  628. name: "Gigamacro",
  629. height: math.unit(470000000.0, "inches")
  630. }
  631. ]
  632. )
  633. };
  634. pokemonMakers["Amoonguss"] = () => {
  635. return makeCharacter(
  636. "Amoonguss",
  637. "Pokemon",
  638. {
  639. "Amoonguss": {
  640. height: math.unit("24", "inches"),
  641. weight: math.unit("23.1", "lbs"),
  642. name: "Amoonguss",
  643. image: {
  644. source: "./media/pokemon/Amoonguss.svg"
  645. },
  646. rename: true
  647. }
  648. },
  649. [
  650. {
  651. name: "Micro",
  652. height: math.unit(2.4, "inches")
  653. },
  654. {
  655. name: "Normal",
  656. height: math.unit(24, "inches"),
  657. default: true
  658. },
  659. {
  660. name: "Macro",
  661. height: math.unit(2400.0, "inches")
  662. },
  663. {
  664. name: "Megamacro",
  665. height: math.unit(120000.0, "inches")
  666. },
  667. {
  668. name: "Gigamacro",
  669. height: math.unit(240000000.0, "inches")
  670. }
  671. ]
  672. )
  673. };
  674. pokemonMakers["Ampharos"] = () => {
  675. return makeCharacter(
  676. "Ampharos",
  677. "Pokemon",
  678. {
  679. "Ampharos": {
  680. height: math.unit("55", "inches"),
  681. weight: math.unit("135.6", "lbs"),
  682. name: "Ampharos",
  683. image: {
  684. source: "./media/pokemon/Ampharos.svg"
  685. },
  686. rename: true
  687. },
  688. "Mega Ampharos": {
  689. height: math.unit("55", "inches"),
  690. weight: math.unit("135.6", "lbs"),
  691. name: "Mega Ampharos",
  692. image: {
  693. source: "./media/pokemon/Mega Ampharos.svg"
  694. },
  695. rename: true
  696. }
  697. },
  698. [
  699. {
  700. name: "Micro",
  701. height: math.unit(5.5, "inches")
  702. },
  703. {
  704. name: "Normal",
  705. height: math.unit(55, "inches"),
  706. default: true
  707. },
  708. {
  709. name: "Macro",
  710. height: math.unit(5500.0, "inches")
  711. },
  712. {
  713. name: "Megamacro",
  714. height: math.unit(275000.0, "inches")
  715. },
  716. {
  717. name: "Gigamacro",
  718. height: math.unit(550000000.0, "inches")
  719. }
  720. ]
  721. )
  722. };
  723. pokemonMakers["Anorith"] = () => {
  724. return makeCharacter(
  725. "Anorith",
  726. "Pokemon",
  727. {
  728. "Anorith": {
  729. height: math.unit("28", "inches"),
  730. weight: math.unit("27.6", "lbs"),
  731. name: "Anorith",
  732. image: {
  733. source: "./media/pokemon/Anorith.svg"
  734. },
  735. rename: true
  736. }
  737. },
  738. [
  739. {
  740. name: "Micro",
  741. height: math.unit(2.8, "inches")
  742. },
  743. {
  744. name: "Normal",
  745. height: math.unit(28, "inches"),
  746. default: true
  747. },
  748. {
  749. name: "Macro",
  750. height: math.unit(2800.0, "inches")
  751. },
  752. {
  753. name: "Megamacro",
  754. height: math.unit(140000.0, "inches")
  755. },
  756. {
  757. name: "Gigamacro",
  758. height: math.unit(280000000.0, "inches")
  759. }
  760. ]
  761. )
  762. };
  763. pokemonMakers["Appletun"] = () => {
  764. return makeCharacter(
  765. "Appletun",
  766. "Pokemon",
  767. {
  768. "Appletun": {
  769. height: math.unit("16", "inches"),
  770. weight: math.unit("28.7", "lbs"),
  771. name: "Appletun",
  772. image: {
  773. source: "./media/pokemon/Appletun.svg"
  774. },
  775. rename: true
  776. },
  777. "Gigantamax Appletun": {
  778. height: math.unit("945", "inches"),
  779. weight: math.unit("5913129.281616211", "lbs"),
  780. name: "Gigantamax Appletun",
  781. image: {
  782. source: "./media/pokemon/Gigantamax Appletun.svg"
  783. },
  784. rename: true
  785. }
  786. },
  787. [
  788. {
  789. name: "Micro",
  790. height: math.unit(1.6, "inches")
  791. },
  792. {
  793. name: "Normal",
  794. height: math.unit(16, "inches"),
  795. default: true
  796. },
  797. {
  798. name: "Macro",
  799. height: math.unit(1600.0, "inches")
  800. },
  801. {
  802. name: "Megamacro",
  803. height: math.unit(80000.0, "inches")
  804. },
  805. {
  806. name: "Gigamacro",
  807. height: math.unit(160000000.0, "inches")
  808. }
  809. ]
  810. )
  811. };
  812. pokemonMakers["Applin"] = () => {
  813. return makeCharacter(
  814. "Applin",
  815. "Pokemon",
  816. {
  817. "Applin": {
  818. height: math.unit("8", "inches"),
  819. weight: math.unit("1.1", "lbs"),
  820. name: "Applin",
  821. image: {
  822. source: "./media/pokemon/Applin.svg"
  823. },
  824. rename: true
  825. }
  826. },
  827. [
  828. {
  829. name: "Micro",
  830. height: math.unit(0.8, "inches")
  831. },
  832. {
  833. name: "Normal",
  834. height: math.unit(8, "inches"),
  835. default: true
  836. },
  837. {
  838. name: "Macro",
  839. height: math.unit(800.0, "inches")
  840. },
  841. {
  842. name: "Megamacro",
  843. height: math.unit(40000.0, "inches")
  844. },
  845. {
  846. name: "Gigamacro",
  847. height: math.unit(80000000.0, "inches")
  848. }
  849. ]
  850. )
  851. };
  852. pokemonMakers["Araquanid"] = () => {
  853. return makeCharacter(
  854. "Araquanid",
  855. "Pokemon",
  856. {
  857. "Araquanid": {
  858. height: math.unit("71", "inches"),
  859. weight: math.unit("180.8", "lbs"),
  860. name: "Araquanid",
  861. image: {
  862. source: "./media/pokemon/Araquanid.svg"
  863. },
  864. rename: true
  865. }
  866. },
  867. [
  868. {
  869. name: "Micro",
  870. height: math.unit(7.1, "inches")
  871. },
  872. {
  873. name: "Normal",
  874. height: math.unit(71, "inches"),
  875. default: true
  876. },
  877. {
  878. name: "Macro",
  879. height: math.unit(7100.0, "inches")
  880. },
  881. {
  882. name: "Megamacro",
  883. height: math.unit(355000.0, "inches")
  884. },
  885. {
  886. name: "Gigamacro",
  887. height: math.unit(710000000.0, "inches")
  888. }
  889. ]
  890. )
  891. };
  892. pokemonMakers["Arbok"] = () => {
  893. return makeCharacter(
  894. "Arbok",
  895. "Pokemon",
  896. {
  897. "Arbok": {
  898. height: math.unit("138", "inches"),
  899. weight: math.unit("143.3", "lbs"),
  900. name: "Arbok",
  901. image: {
  902. source: "./media/pokemon/Arbok.svg"
  903. },
  904. rename: true
  905. }
  906. },
  907. [
  908. {
  909. name: "Micro",
  910. height: math.unit(13.8, "inches")
  911. },
  912. {
  913. name: "Normal",
  914. height: math.unit(138, "inches"),
  915. default: true
  916. },
  917. {
  918. name: "Macro",
  919. height: math.unit(13800.0, "inches")
  920. },
  921. {
  922. name: "Megamacro",
  923. height: math.unit(690000.0, "inches")
  924. },
  925. {
  926. name: "Gigamacro",
  927. height: math.unit(1380000000.0, "inches")
  928. }
  929. ]
  930. )
  931. };
  932. pokemonMakers["Arcanine"] = () => {
  933. return makeCharacter(
  934. "Arcanine",
  935. "Pokemon",
  936. {
  937. "Arcanine": {
  938. height: math.unit("75", "inches"),
  939. weight: math.unit("341.7", "lbs"),
  940. name: "Arcanine",
  941. image: {
  942. source: "./media/pokemon/Arcanine.svg"
  943. },
  944. rename: true
  945. }
  946. },
  947. [
  948. {
  949. name: "Micro",
  950. height: math.unit(7.5, "inches")
  951. },
  952. {
  953. name: "Normal",
  954. height: math.unit(75, "inches"),
  955. default: true
  956. },
  957. {
  958. name: "Macro",
  959. height: math.unit(7500.0, "inches")
  960. },
  961. {
  962. name: "Megamacro",
  963. height: math.unit(375000.0, "inches")
  964. },
  965. {
  966. name: "Gigamacro",
  967. height: math.unit(750000000.0, "inches")
  968. }
  969. ]
  970. )
  971. };
  972. pokemonMakers["Arceus"] = () => {
  973. return makeCharacter(
  974. "Arceus",
  975. "Pokemon",
  976. {
  977. "Bug": {
  978. height: math.unit("126", "inches"),
  979. weight: math.unit("705.5", "lbs"),
  980. name: "Bug",
  981. image: {
  982. source: "./media/pokemon/Arceus - Bug.svg"
  983. },
  984. rename: true
  985. },
  986. "Dark": {
  987. height: math.unit("126", "inches"),
  988. weight: math.unit("705.5", "lbs"),
  989. name: "Dark",
  990. image: {
  991. source: "./media/pokemon/Arceus - Dark.svg"
  992. },
  993. rename: true
  994. },
  995. "Dragon": {
  996. height: math.unit("126", "inches"),
  997. weight: math.unit("705.5", "lbs"),
  998. name: "Dragon",
  999. image: {
  1000. source: "./media/pokemon/Arceus - Dragon.svg"
  1001. },
  1002. rename: true
  1003. },
  1004. "Electric": {
  1005. height: math.unit("126", "inches"),
  1006. weight: math.unit("705.5", "lbs"),
  1007. name: "Electric",
  1008. image: {
  1009. source: "./media/pokemon/Arceus - Electric.svg"
  1010. },
  1011. rename: true
  1012. },
  1013. "Fairy": {
  1014. height: math.unit("126", "inches"),
  1015. weight: math.unit("705.5", "lbs"),
  1016. name: "Fairy",
  1017. image: {
  1018. source: "./media/pokemon/Arceus - Fairy.svg"
  1019. },
  1020. rename: true
  1021. },
  1022. "Fighting": {
  1023. height: math.unit("126", "inches"),
  1024. weight: math.unit("705.5", "lbs"),
  1025. name: "Fighting",
  1026. image: {
  1027. source: "./media/pokemon/Arceus - Fighting.svg"
  1028. },
  1029. rename: true
  1030. },
  1031. "Fire": {
  1032. height: math.unit("126", "inches"),
  1033. weight: math.unit("705.5", "lbs"),
  1034. name: "Fire",
  1035. image: {
  1036. source: "./media/pokemon/Arceus - Fire.svg"
  1037. },
  1038. rename: true
  1039. },
  1040. "Flying": {
  1041. height: math.unit("126", "inches"),
  1042. weight: math.unit("705.5", "lbs"),
  1043. name: "Flying",
  1044. image: {
  1045. source: "./media/pokemon/Arceus - Flying.svg"
  1046. },
  1047. rename: true
  1048. },
  1049. "Ghost": {
  1050. height: math.unit("126", "inches"),
  1051. weight: math.unit("705.5", "lbs"),
  1052. name: "Ghost",
  1053. image: {
  1054. source: "./media/pokemon/Arceus - Ghost.svg"
  1055. },
  1056. rename: true
  1057. },
  1058. "Grass": {
  1059. height: math.unit("126", "inches"),
  1060. weight: math.unit("705.5", "lbs"),
  1061. name: "Grass",
  1062. image: {
  1063. source: "./media/pokemon/Arceus - Grass.svg"
  1064. },
  1065. rename: true
  1066. },
  1067. "Ground": {
  1068. height: math.unit("126", "inches"),
  1069. weight: math.unit("705.5", "lbs"),
  1070. name: "Ground",
  1071. image: {
  1072. source: "./media/pokemon/Arceus - Ground.svg"
  1073. },
  1074. rename: true
  1075. },
  1076. "Ice": {
  1077. height: math.unit("126", "inches"),
  1078. weight: math.unit("705.5", "lbs"),
  1079. name: "Ice",
  1080. image: {
  1081. source: "./media/pokemon/Arceus - Ice.svg"
  1082. },
  1083. rename: true
  1084. },
  1085. "Poison": {
  1086. height: math.unit("126", "inches"),
  1087. weight: math.unit("705.5", "lbs"),
  1088. name: "Poison",
  1089. image: {
  1090. source: "./media/pokemon/Arceus - Poison.svg"
  1091. },
  1092. rename: true
  1093. },
  1094. "Psychic": {
  1095. height: math.unit("126", "inches"),
  1096. weight: math.unit("705.5", "lbs"),
  1097. name: "Psychic",
  1098. image: {
  1099. source: "./media/pokemon/Arceus - Psychic.svg"
  1100. },
  1101. rename: true
  1102. },
  1103. "Rock": {
  1104. height: math.unit("126", "inches"),
  1105. weight: math.unit("705.5", "lbs"),
  1106. name: "Rock",
  1107. image: {
  1108. source: "./media/pokemon/Arceus - Rock.svg"
  1109. },
  1110. rename: true
  1111. },
  1112. "Steel": {
  1113. height: math.unit("126", "inches"),
  1114. weight: math.unit("705.5", "lbs"),
  1115. name: "Steel",
  1116. image: {
  1117. source: "./media/pokemon/Arceus - Steel.svg"
  1118. },
  1119. rename: true
  1120. },
  1121. "Water": {
  1122. height: math.unit("126", "inches"),
  1123. weight: math.unit("705.5", "lbs"),
  1124. name: "Water",
  1125. image: {
  1126. source: "./media/pokemon/Arceus - Water.svg"
  1127. },
  1128. rename: true
  1129. },
  1130. "Arceus": {
  1131. height: math.unit("126", "inches"),
  1132. weight: math.unit("705.5", "lbs"),
  1133. name: "Arceus",
  1134. image: {
  1135. source: "./media/pokemon/Arceus.svg"
  1136. },
  1137. rename: true
  1138. }
  1139. },
  1140. [
  1141. {
  1142. name: "Micro",
  1143. height: math.unit(12.6, "inches")
  1144. },
  1145. {
  1146. name: "Normal",
  1147. height: math.unit(126, "inches"),
  1148. default: true
  1149. },
  1150. {
  1151. name: "Macro",
  1152. height: math.unit(12600.0, "inches")
  1153. },
  1154. {
  1155. name: "Megamacro",
  1156. height: math.unit(630000.0, "inches")
  1157. },
  1158. {
  1159. name: "Gigamacro",
  1160. height: math.unit(1260000000.0, "inches")
  1161. }
  1162. ]
  1163. )
  1164. };
  1165. pokemonMakers["Archen"] = () => {
  1166. return makeCharacter(
  1167. "Archen",
  1168. "Pokemon",
  1169. {
  1170. "Archen": {
  1171. height: math.unit("20", "inches"),
  1172. weight: math.unit("20.9", "lbs"),
  1173. name: "Archen",
  1174. image: {
  1175. source: "./media/pokemon/Archen.svg"
  1176. },
  1177. rename: true
  1178. }
  1179. },
  1180. [
  1181. {
  1182. name: "Micro",
  1183. height: math.unit(2.0, "inches")
  1184. },
  1185. {
  1186. name: "Normal",
  1187. height: math.unit(20, "inches"),
  1188. default: true
  1189. },
  1190. {
  1191. name: "Macro",
  1192. height: math.unit(2000.0, "inches")
  1193. },
  1194. {
  1195. name: "Megamacro",
  1196. height: math.unit(100000.0, "inches")
  1197. },
  1198. {
  1199. name: "Gigamacro",
  1200. height: math.unit(200000000.0, "inches")
  1201. }
  1202. ]
  1203. )
  1204. };
  1205. pokemonMakers["Archeops"] = () => {
  1206. return makeCharacter(
  1207. "Archeops",
  1208. "Pokemon",
  1209. {
  1210. "Archeops": {
  1211. height: math.unit("55", "inches"),
  1212. weight: math.unit("70.5", "lbs"),
  1213. name: "Archeops",
  1214. image: {
  1215. source: "./media/pokemon/Archeops.svg"
  1216. },
  1217. rename: true
  1218. }
  1219. },
  1220. [
  1221. {
  1222. name: "Micro",
  1223. height: math.unit(5.5, "inches")
  1224. },
  1225. {
  1226. name: "Normal",
  1227. height: math.unit(55, "inches"),
  1228. default: true
  1229. },
  1230. {
  1231. name: "Macro",
  1232. height: math.unit(5500.0, "inches")
  1233. },
  1234. {
  1235. name: "Megamacro",
  1236. height: math.unit(275000.0, "inches")
  1237. },
  1238. {
  1239. name: "Gigamacro",
  1240. height: math.unit(550000000.0, "inches")
  1241. }
  1242. ]
  1243. )
  1244. };
  1245. pokemonMakers["Arctovish"] = () => {
  1246. return makeCharacter(
  1247. "Arctovish",
  1248. "Pokemon",
  1249. {
  1250. "Arctovish": {
  1251. height: math.unit("79", "inches"),
  1252. weight: math.unit("385.8", "lbs"),
  1253. name: "Arctovish",
  1254. image: {
  1255. source: "./media/pokemon/Arctovish.svg"
  1256. },
  1257. rename: true
  1258. }
  1259. },
  1260. [
  1261. {
  1262. name: "Micro",
  1263. height: math.unit(7.9, "inches")
  1264. },
  1265. {
  1266. name: "Normal",
  1267. height: math.unit(79, "inches"),
  1268. default: true
  1269. },
  1270. {
  1271. name: "Macro",
  1272. height: math.unit(7900.0, "inches")
  1273. },
  1274. {
  1275. name: "Megamacro",
  1276. height: math.unit(395000.0, "inches")
  1277. },
  1278. {
  1279. name: "Gigamacro",
  1280. height: math.unit(790000000.0, "inches")
  1281. }
  1282. ]
  1283. )
  1284. };
  1285. pokemonMakers["Arctozolt"] = () => {
  1286. return makeCharacter(
  1287. "Arctozolt",
  1288. "Pokemon",
  1289. {
  1290. "Arctozolt": {
  1291. height: math.unit("91", "inches"),
  1292. weight: math.unit("330.7", "lbs"),
  1293. name: "Arctozolt",
  1294. image: {
  1295. source: "./media/pokemon/Arctozolt.svg"
  1296. },
  1297. rename: true
  1298. }
  1299. },
  1300. [
  1301. {
  1302. name: "Micro",
  1303. height: math.unit(9.1, "inches")
  1304. },
  1305. {
  1306. name: "Normal",
  1307. height: math.unit(91, "inches"),
  1308. default: true
  1309. },
  1310. {
  1311. name: "Macro",
  1312. height: math.unit(9100.0, "inches")
  1313. },
  1314. {
  1315. name: "Megamacro",
  1316. height: math.unit(455000.0, "inches")
  1317. },
  1318. {
  1319. name: "Gigamacro",
  1320. height: math.unit(910000000.0, "inches")
  1321. }
  1322. ]
  1323. )
  1324. };
  1325. pokemonMakers["Ariados"] = () => {
  1326. return makeCharacter(
  1327. "Ariados",
  1328. "Pokemon",
  1329. {
  1330. "Ariados": {
  1331. height: math.unit("43", "inches"),
  1332. weight: math.unit("73.9", "lbs"),
  1333. name: "Ariados",
  1334. image: {
  1335. source: "./media/pokemon/Ariados.svg"
  1336. },
  1337. rename: true
  1338. }
  1339. },
  1340. [
  1341. {
  1342. name: "Micro",
  1343. height: math.unit(4.3, "inches")
  1344. },
  1345. {
  1346. name: "Normal",
  1347. height: math.unit(43, "inches"),
  1348. default: true
  1349. },
  1350. {
  1351. name: "Macro",
  1352. height: math.unit(4300.0, "inches")
  1353. },
  1354. {
  1355. name: "Megamacro",
  1356. height: math.unit(215000.0, "inches")
  1357. },
  1358. {
  1359. name: "Gigamacro",
  1360. height: math.unit(430000000.0, "inches")
  1361. }
  1362. ]
  1363. )
  1364. };
  1365. pokemonMakers["Armaldo"] = () => {
  1366. return makeCharacter(
  1367. "Armaldo",
  1368. "Pokemon",
  1369. {
  1370. "Armaldo": {
  1371. height: math.unit("59", "inches"),
  1372. weight: math.unit("150.4", "lbs"),
  1373. name: "Armaldo",
  1374. image: {
  1375. source: "./media/pokemon/Armaldo.svg"
  1376. },
  1377. rename: true
  1378. }
  1379. },
  1380. [
  1381. {
  1382. name: "Micro",
  1383. height: math.unit(5.9, "inches")
  1384. },
  1385. {
  1386. name: "Normal",
  1387. height: math.unit(59, "inches"),
  1388. default: true
  1389. },
  1390. {
  1391. name: "Macro",
  1392. height: math.unit(5900.0, "inches")
  1393. },
  1394. {
  1395. name: "Megamacro",
  1396. height: math.unit(295000.0, "inches")
  1397. },
  1398. {
  1399. name: "Gigamacro",
  1400. height: math.unit(590000000.0, "inches")
  1401. }
  1402. ]
  1403. )
  1404. };
  1405. pokemonMakers["Aromatisse"] = () => {
  1406. return makeCharacter(
  1407. "Aromatisse",
  1408. "Pokemon",
  1409. {
  1410. "Aromatisse": {
  1411. height: math.unit("31", "inches"),
  1412. weight: math.unit("34.2", "lbs"),
  1413. name: "Aromatisse",
  1414. image: {
  1415. source: "./media/pokemon/Aromatisse.svg"
  1416. },
  1417. rename: true
  1418. }
  1419. },
  1420. [
  1421. {
  1422. name: "Micro",
  1423. height: math.unit(3.1, "inches")
  1424. },
  1425. {
  1426. name: "Normal",
  1427. height: math.unit(31, "inches"),
  1428. default: true
  1429. },
  1430. {
  1431. name: "Macro",
  1432. height: math.unit(3100.0, "inches")
  1433. },
  1434. {
  1435. name: "Megamacro",
  1436. height: math.unit(155000.0, "inches")
  1437. },
  1438. {
  1439. name: "Gigamacro",
  1440. height: math.unit(310000000.0, "inches")
  1441. }
  1442. ]
  1443. )
  1444. };
  1445. pokemonMakers["Aron"] = () => {
  1446. return makeCharacter(
  1447. "Aron",
  1448. "Pokemon",
  1449. {
  1450. "Aron": {
  1451. height: math.unit("16", "inches"),
  1452. weight: math.unit("132.3", "lbs"),
  1453. name: "Aron",
  1454. image: {
  1455. source: "./media/pokemon/Aron.svg"
  1456. },
  1457. rename: true
  1458. }
  1459. },
  1460. [
  1461. {
  1462. name: "Micro",
  1463. height: math.unit(1.6, "inches")
  1464. },
  1465. {
  1466. name: "Normal",
  1467. height: math.unit(16, "inches"),
  1468. default: true
  1469. },
  1470. {
  1471. name: "Macro",
  1472. height: math.unit(1600.0, "inches")
  1473. },
  1474. {
  1475. name: "Megamacro",
  1476. height: math.unit(80000.0, "inches")
  1477. },
  1478. {
  1479. name: "Gigamacro",
  1480. height: math.unit(160000000.0, "inches")
  1481. }
  1482. ]
  1483. )
  1484. };
  1485. pokemonMakers["Arrokuda"] = () => {
  1486. return makeCharacter(
  1487. "Arrokuda",
  1488. "Pokemon",
  1489. {
  1490. "Arrokuda": {
  1491. height: math.unit("20", "inches"),
  1492. weight: math.unit("2.2", "lbs"),
  1493. name: "Arrokuda",
  1494. image: {
  1495. source: "./media/pokemon/Arrokuda.svg"
  1496. },
  1497. rename: true
  1498. }
  1499. },
  1500. [
  1501. {
  1502. name: "Micro",
  1503. height: math.unit(2.0, "inches")
  1504. },
  1505. {
  1506. name: "Normal",
  1507. height: math.unit(20, "inches"),
  1508. default: true
  1509. },
  1510. {
  1511. name: "Macro",
  1512. height: math.unit(2000.0, "inches")
  1513. },
  1514. {
  1515. name: "Megamacro",
  1516. height: math.unit(100000.0, "inches")
  1517. },
  1518. {
  1519. name: "Gigamacro",
  1520. height: math.unit(200000000.0, "inches")
  1521. }
  1522. ]
  1523. )
  1524. };
  1525. pokemonMakers["Articuno"] = () => {
  1526. return makeCharacter(
  1527. "Articuno",
  1528. "Pokemon",
  1529. {
  1530. "Articuno": {
  1531. height: math.unit("67", "inches"),
  1532. weight: math.unit("122.1", "lbs"),
  1533. name: "Articuno",
  1534. image: {
  1535. source: "./media/pokemon/Articuno.svg"
  1536. },
  1537. rename: true
  1538. }
  1539. },
  1540. [
  1541. {
  1542. name: "Micro",
  1543. height: math.unit(6.7, "inches")
  1544. },
  1545. {
  1546. name: "Normal",
  1547. height: math.unit(67, "inches"),
  1548. default: true
  1549. },
  1550. {
  1551. name: "Macro",
  1552. height: math.unit(6700.0, "inches")
  1553. },
  1554. {
  1555. name: "Megamacro",
  1556. height: math.unit(335000.0, "inches")
  1557. },
  1558. {
  1559. name: "Gigamacro",
  1560. height: math.unit(670000000.0, "inches")
  1561. }
  1562. ]
  1563. )
  1564. };
  1565. pokemonMakers["Greninja"] = () => {
  1566. return makeCharacter(
  1567. "Greninja",
  1568. "Pokemon",
  1569. {
  1570. "Ash-Greninja": {
  1571. height: math.unit("59", "inches"),
  1572. weight: math.unit("88.2", "lbs"),
  1573. name: "Ash-Greninja",
  1574. image: {
  1575. source: "./media/pokemon/Ash-Greninja.svg"
  1576. },
  1577. rename: true
  1578. },
  1579. "Greninja": {
  1580. height: math.unit("59", "inches"),
  1581. weight: math.unit("88.2", "lbs"),
  1582. name: "Greninja",
  1583. image: {
  1584. source: "./media/pokemon/Greninja.svg"
  1585. },
  1586. rename: true
  1587. }
  1588. },
  1589. [
  1590. {
  1591. name: "Micro",
  1592. height: math.unit(5.9, "inches")
  1593. },
  1594. {
  1595. name: "Normal",
  1596. height: math.unit(59, "inches"),
  1597. default: true
  1598. },
  1599. {
  1600. name: "Macro",
  1601. height: math.unit(5900.0, "inches")
  1602. },
  1603. {
  1604. name: "Megamacro",
  1605. height: math.unit(295000.0, "inches")
  1606. },
  1607. {
  1608. name: "Gigamacro",
  1609. height: math.unit(590000000.0, "inches")
  1610. }
  1611. ]
  1612. )
  1613. };
  1614. pokemonMakers["Audino"] = () => {
  1615. return makeCharacter(
  1616. "Audino",
  1617. "Pokemon",
  1618. {
  1619. "Audino": {
  1620. height: math.unit("43", "inches"),
  1621. weight: math.unit("68.3", "lbs"),
  1622. name: "Audino",
  1623. image: {
  1624. source: "./media/pokemon/Audino.svg"
  1625. },
  1626. rename: true
  1627. },
  1628. "Mega Audino": {
  1629. height: math.unit("59", "inches"),
  1630. weight: math.unit("70.5", "lbs"),
  1631. name: "Mega Audino",
  1632. image: {
  1633. source: "./media/pokemon/Mega Audino.svg"
  1634. },
  1635. rename: true
  1636. }
  1637. },
  1638. [
  1639. {
  1640. name: "Micro",
  1641. height: math.unit(4.3, "inches")
  1642. },
  1643. {
  1644. name: "Normal",
  1645. height: math.unit(43, "inches"),
  1646. default: true
  1647. },
  1648. {
  1649. name: "Macro",
  1650. height: math.unit(4300.0, "inches")
  1651. },
  1652. {
  1653. name: "Megamacro",
  1654. height: math.unit(215000.0, "inches")
  1655. },
  1656. {
  1657. name: "Gigamacro",
  1658. height: math.unit(430000000.0, "inches")
  1659. }
  1660. ]
  1661. )
  1662. };
  1663. pokemonMakers["Aurorus"] = () => {
  1664. return makeCharacter(
  1665. "Aurorus",
  1666. "Pokemon",
  1667. {
  1668. "Aurorus": {
  1669. height: math.unit("106", "inches"),
  1670. weight: math.unit("496.0", "lbs"),
  1671. name: "Aurorus",
  1672. image: {
  1673. source: "./media/pokemon/Aurorus.svg"
  1674. },
  1675. rename: true
  1676. }
  1677. },
  1678. [
  1679. {
  1680. name: "Micro",
  1681. height: math.unit(10.6, "inches")
  1682. },
  1683. {
  1684. name: "Normal",
  1685. height: math.unit(106, "inches"),
  1686. default: true
  1687. },
  1688. {
  1689. name: "Macro",
  1690. height: math.unit(10600.0, "inches")
  1691. },
  1692. {
  1693. name: "Megamacro",
  1694. height: math.unit(530000.0, "inches")
  1695. },
  1696. {
  1697. name: "Gigamacro",
  1698. height: math.unit(1060000000.0, "inches")
  1699. }
  1700. ]
  1701. )
  1702. };
  1703. pokemonMakers["Avalugg"] = () => {
  1704. return makeCharacter(
  1705. "Avalugg",
  1706. "Pokemon",
  1707. {
  1708. "Avalugg": {
  1709. height: math.unit("79", "inches"),
  1710. weight: math.unit("1113.3", "lbs"),
  1711. name: "Avalugg",
  1712. image: {
  1713. source: "./media/pokemon/Avalugg.svg"
  1714. },
  1715. rename: true
  1716. }
  1717. },
  1718. [
  1719. {
  1720. name: "Micro",
  1721. height: math.unit(7.9, "inches")
  1722. },
  1723. {
  1724. name: "Normal",
  1725. height: math.unit(79, "inches"),
  1726. default: true
  1727. },
  1728. {
  1729. name: "Macro",
  1730. height: math.unit(7900.0, "inches")
  1731. },
  1732. {
  1733. name: "Megamacro",
  1734. height: math.unit(395000.0, "inches")
  1735. },
  1736. {
  1737. name: "Gigamacro",
  1738. height: math.unit(790000000.0, "inches")
  1739. }
  1740. ]
  1741. )
  1742. };
  1743. pokemonMakers["Axew"] = () => {
  1744. return makeCharacter(
  1745. "Axew",
  1746. "Pokemon",
  1747. {
  1748. "Axew": {
  1749. height: math.unit("24", "inches"),
  1750. weight: math.unit("39.7", "lbs"),
  1751. name: "Axew",
  1752. image: {
  1753. source: "./media/pokemon/Axew.svg"
  1754. },
  1755. rename: true
  1756. }
  1757. },
  1758. [
  1759. {
  1760. name: "Micro",
  1761. height: math.unit(2.4, "inches")
  1762. },
  1763. {
  1764. name: "Normal",
  1765. height: math.unit(24, "inches"),
  1766. default: true
  1767. },
  1768. {
  1769. name: "Macro",
  1770. height: math.unit(2400.0, "inches")
  1771. },
  1772. {
  1773. name: "Megamacro",
  1774. height: math.unit(120000.0, "inches")
  1775. },
  1776. {
  1777. name: "Gigamacro",
  1778. height: math.unit(240000000.0, "inches")
  1779. }
  1780. ]
  1781. )
  1782. };
  1783. pokemonMakers["Azelf"] = () => {
  1784. return makeCharacter(
  1785. "Azelf",
  1786. "Pokemon",
  1787. {
  1788. "Azelf": {
  1789. height: math.unit("12", "inches"),
  1790. weight: math.unit("0.7", "lbs"),
  1791. name: "Azelf",
  1792. image: {
  1793. source: "./media/pokemon/Azelf.svg"
  1794. },
  1795. rename: true
  1796. }
  1797. },
  1798. [
  1799. {
  1800. name: "Micro",
  1801. height: math.unit(1.2, "inches")
  1802. },
  1803. {
  1804. name: "Normal",
  1805. height: math.unit(12, "inches"),
  1806. default: true
  1807. },
  1808. {
  1809. name: "Macro",
  1810. height: math.unit(1200.0, "inches")
  1811. },
  1812. {
  1813. name: "Megamacro",
  1814. height: math.unit(60000.0, "inches")
  1815. },
  1816. {
  1817. name: "Gigamacro",
  1818. height: math.unit(120000000.0, "inches")
  1819. }
  1820. ]
  1821. )
  1822. };
  1823. pokemonMakers["Azumarill"] = () => {
  1824. return makeCharacter(
  1825. "Azumarill",
  1826. "Pokemon",
  1827. {
  1828. "Azumarill": {
  1829. height: math.unit("31", "inches"),
  1830. weight: math.unit("62.8", "lbs"),
  1831. name: "Azumarill",
  1832. image: {
  1833. source: "./media/pokemon/Azumarill.svg"
  1834. },
  1835. rename: true
  1836. }
  1837. },
  1838. [
  1839. {
  1840. name: "Micro",
  1841. height: math.unit(3.1, "inches")
  1842. },
  1843. {
  1844. name: "Normal",
  1845. height: math.unit(31, "inches"),
  1846. default: true
  1847. },
  1848. {
  1849. name: "Macro",
  1850. height: math.unit(3100.0, "inches")
  1851. },
  1852. {
  1853. name: "Megamacro",
  1854. height: math.unit(155000.0, "inches")
  1855. },
  1856. {
  1857. name: "Gigamacro",
  1858. height: math.unit(310000000.0, "inches")
  1859. }
  1860. ]
  1861. )
  1862. };
  1863. pokemonMakers["Azurill"] = () => {
  1864. return makeCharacter(
  1865. "Azurill",
  1866. "Pokemon",
  1867. {
  1868. "Azurill": {
  1869. height: math.unit("8", "inches"),
  1870. weight: math.unit("4.4", "lbs"),
  1871. name: "Azurill",
  1872. image: {
  1873. source: "./media/pokemon/Azurill.svg"
  1874. },
  1875. rename: true
  1876. }
  1877. },
  1878. [
  1879. {
  1880. name: "Micro",
  1881. height: math.unit(0.8, "inches")
  1882. },
  1883. {
  1884. name: "Normal",
  1885. height: math.unit(8, "inches"),
  1886. default: true
  1887. },
  1888. {
  1889. name: "Macro",
  1890. height: math.unit(800.0, "inches")
  1891. },
  1892. {
  1893. name: "Megamacro",
  1894. height: math.unit(40000.0, "inches")
  1895. },
  1896. {
  1897. name: "Gigamacro",
  1898. height: math.unit(80000000.0, "inches")
  1899. }
  1900. ]
  1901. )
  1902. };
  1903. pokemonMakers["Bagon"] = () => {
  1904. return makeCharacter(
  1905. "Bagon",
  1906. "Pokemon",
  1907. {
  1908. "Bagon": {
  1909. height: math.unit("24", "inches"),
  1910. weight: math.unit("92.8", "lbs"),
  1911. name: "Bagon",
  1912. image: {
  1913. source: "./media/pokemon/Bagon.svg"
  1914. },
  1915. rename: true
  1916. }
  1917. },
  1918. [
  1919. {
  1920. name: "Micro",
  1921. height: math.unit(2.4, "inches")
  1922. },
  1923. {
  1924. name: "Normal",
  1925. height: math.unit(24, "inches"),
  1926. default: true
  1927. },
  1928. {
  1929. name: "Macro",
  1930. height: math.unit(2400.0, "inches")
  1931. },
  1932. {
  1933. name: "Megamacro",
  1934. height: math.unit(120000.0, "inches")
  1935. },
  1936. {
  1937. name: "Gigamacro",
  1938. height: math.unit(240000000.0, "inches")
  1939. }
  1940. ]
  1941. )
  1942. };
  1943. pokemonMakers["Baltoy"] = () => {
  1944. return makeCharacter(
  1945. "Baltoy",
  1946. "Pokemon",
  1947. {
  1948. "Baltoy": {
  1949. height: math.unit("20", "inches"),
  1950. weight: math.unit("47.4", "lbs"),
  1951. name: "Baltoy",
  1952. image: {
  1953. source: "./media/pokemon/Baltoy.svg"
  1954. },
  1955. rename: true
  1956. }
  1957. },
  1958. [
  1959. {
  1960. name: "Micro",
  1961. height: math.unit(2.0, "inches")
  1962. },
  1963. {
  1964. name: "Normal",
  1965. height: math.unit(20, "inches"),
  1966. default: true
  1967. },
  1968. {
  1969. name: "Macro",
  1970. height: math.unit(2000.0, "inches")
  1971. },
  1972. {
  1973. name: "Megamacro",
  1974. height: math.unit(100000.0, "inches")
  1975. },
  1976. {
  1977. name: "Gigamacro",
  1978. height: math.unit(200000000.0, "inches")
  1979. }
  1980. ]
  1981. )
  1982. };
  1983. pokemonMakers["Banette"] = () => {
  1984. return makeCharacter(
  1985. "Banette",
  1986. "Pokemon",
  1987. {
  1988. "Banette": {
  1989. height: math.unit("43", "inches"),
  1990. weight: math.unit("27.6", "lbs"),
  1991. name: "Banette",
  1992. image: {
  1993. source: "./media/pokemon/Banette.svg"
  1994. },
  1995. rename: true
  1996. },
  1997. "Mega Banette": {
  1998. height: math.unit("47", "inches"),
  1999. weight: math.unit("28.7", "lbs"),
  2000. name: "Mega Banette",
  2001. image: {
  2002. source: "./media/pokemon/Mega Banette.svg"
  2003. },
  2004. rename: true
  2005. }
  2006. },
  2007. [
  2008. {
  2009. name: "Micro",
  2010. height: math.unit(4.3, "inches")
  2011. },
  2012. {
  2013. name: "Normal",
  2014. height: math.unit(43, "inches"),
  2015. default: true
  2016. },
  2017. {
  2018. name: "Macro",
  2019. height: math.unit(4300.0, "inches")
  2020. },
  2021. {
  2022. name: "Megamacro",
  2023. height: math.unit(215000.0, "inches")
  2024. },
  2025. {
  2026. name: "Gigamacro",
  2027. height: math.unit(430000000.0, "inches")
  2028. }
  2029. ]
  2030. )
  2031. };
  2032. pokemonMakers["Barbaracle"] = () => {
  2033. return makeCharacter(
  2034. "Barbaracle",
  2035. "Pokemon",
  2036. {
  2037. "Barbaracle": {
  2038. height: math.unit("51", "inches"),
  2039. weight: math.unit("211.6", "lbs"),
  2040. name: "Barbaracle",
  2041. image: {
  2042. source: "./media/pokemon/Barbaracle.svg"
  2043. },
  2044. rename: true
  2045. }
  2046. },
  2047. [
  2048. {
  2049. name: "Micro",
  2050. height: math.unit(5.1, "inches")
  2051. },
  2052. {
  2053. name: "Normal",
  2054. height: math.unit(51, "inches"),
  2055. default: true
  2056. },
  2057. {
  2058. name: "Macro",
  2059. height: math.unit(5100.0, "inches")
  2060. },
  2061. {
  2062. name: "Megamacro",
  2063. height: math.unit(255000.0, "inches")
  2064. },
  2065. {
  2066. name: "Gigamacro",
  2067. height: math.unit(510000000.0, "inches")
  2068. }
  2069. ]
  2070. )
  2071. };
  2072. pokemonMakers["Barboach"] = () => {
  2073. return makeCharacter(
  2074. "Barboach",
  2075. "Pokemon",
  2076. {
  2077. "Barboach": {
  2078. height: math.unit("16", "inches"),
  2079. weight: math.unit("4.2", "lbs"),
  2080. name: "Barboach",
  2081. image: {
  2082. source: "./media/pokemon/Barboach.svg"
  2083. },
  2084. rename: true
  2085. }
  2086. },
  2087. [
  2088. {
  2089. name: "Micro",
  2090. height: math.unit(1.6, "inches")
  2091. },
  2092. {
  2093. name: "Normal",
  2094. height: math.unit(16, "inches"),
  2095. default: true
  2096. },
  2097. {
  2098. name: "Macro",
  2099. height: math.unit(1600.0, "inches")
  2100. },
  2101. {
  2102. name: "Megamacro",
  2103. height: math.unit(80000.0, "inches")
  2104. },
  2105. {
  2106. name: "Gigamacro",
  2107. height: math.unit(160000000.0, "inches")
  2108. }
  2109. ]
  2110. )
  2111. };
  2112. pokemonMakers["Barraskewda"] = () => {
  2113. return makeCharacter(
  2114. "Barraskewda",
  2115. "Pokemon",
  2116. {
  2117. "Barraskewda": {
  2118. height: math.unit("51", "inches"),
  2119. weight: math.unit("66.1", "lbs"),
  2120. name: "Barraskewda",
  2121. image: {
  2122. source: "./media/pokemon/Barraskewda.svg"
  2123. },
  2124. rename: true
  2125. }
  2126. },
  2127. [
  2128. {
  2129. name: "Micro",
  2130. height: math.unit(5.1, "inches")
  2131. },
  2132. {
  2133. name: "Normal",
  2134. height: math.unit(51, "inches"),
  2135. default: true
  2136. },
  2137. {
  2138. name: "Macro",
  2139. height: math.unit(5100.0, "inches")
  2140. },
  2141. {
  2142. name: "Megamacro",
  2143. height: math.unit(255000.0, "inches")
  2144. },
  2145. {
  2146. name: "Gigamacro",
  2147. height: math.unit(510000000.0, "inches")
  2148. }
  2149. ]
  2150. )
  2151. };
  2152. pokemonMakers["Basculin"] = () => {
  2153. return makeCharacter(
  2154. "Basculin",
  2155. "Pokemon",
  2156. {
  2157. "Blue-Striped Form": {
  2158. height: math.unit("39", "inches"),
  2159. weight: math.unit("39.7", "lbs"),
  2160. name: "Blue-Striped Form",
  2161. image: {
  2162. source: "./media/pokemon/Basculin - Blue-Striped Form.svg"
  2163. },
  2164. rename: true
  2165. },
  2166. "Red-Striped Form": {
  2167. height: math.unit("39", "inches"),
  2168. weight: math.unit("39.7", "lbs"),
  2169. name: "Red-Striped Form",
  2170. image: {
  2171. source: "./media/pokemon/Basculin - Red-Striped Form.svg"
  2172. },
  2173. rename: true
  2174. }
  2175. },
  2176. [
  2177. {
  2178. name: "Micro",
  2179. height: math.unit(3.9, "inches")
  2180. },
  2181. {
  2182. name: "Normal",
  2183. height: math.unit(39, "inches"),
  2184. default: true
  2185. },
  2186. {
  2187. name: "Macro",
  2188. height: math.unit(3900.0, "inches")
  2189. },
  2190. {
  2191. name: "Megamacro",
  2192. height: math.unit(195000.0, "inches")
  2193. },
  2194. {
  2195. name: "Gigamacro",
  2196. height: math.unit(390000000.0, "inches")
  2197. }
  2198. ]
  2199. )
  2200. };
  2201. pokemonMakers["Bastiodon"] = () => {
  2202. return makeCharacter(
  2203. "Bastiodon",
  2204. "Pokemon",
  2205. {
  2206. "Bastiodon": {
  2207. height: math.unit("51", "inches"),
  2208. weight: math.unit("329.6", "lbs"),
  2209. name: "Bastiodon",
  2210. image: {
  2211. source: "./media/pokemon/Bastiodon.svg"
  2212. },
  2213. rename: true
  2214. }
  2215. },
  2216. [
  2217. {
  2218. name: "Micro",
  2219. height: math.unit(5.1, "inches")
  2220. },
  2221. {
  2222. name: "Normal",
  2223. height: math.unit(51, "inches"),
  2224. default: true
  2225. },
  2226. {
  2227. name: "Macro",
  2228. height: math.unit(5100.0, "inches")
  2229. },
  2230. {
  2231. name: "Megamacro",
  2232. height: math.unit(255000.0, "inches")
  2233. },
  2234. {
  2235. name: "Gigamacro",
  2236. height: math.unit(510000000.0, "inches")
  2237. }
  2238. ]
  2239. )
  2240. };
  2241. pokemonMakers["Bayleef"] = () => {
  2242. return makeCharacter(
  2243. "Bayleef",
  2244. "Pokemon",
  2245. {
  2246. "Bayleef": {
  2247. height: math.unit("47", "inches"),
  2248. weight: math.unit("34.8", "lbs"),
  2249. name: "Bayleef",
  2250. image: {
  2251. source: "./media/pokemon/Bayleef.svg"
  2252. },
  2253. rename: true
  2254. }
  2255. },
  2256. [
  2257. {
  2258. name: "Micro",
  2259. height: math.unit(4.7, "inches")
  2260. },
  2261. {
  2262. name: "Normal",
  2263. height: math.unit(47, "inches"),
  2264. default: true
  2265. },
  2266. {
  2267. name: "Macro",
  2268. height: math.unit(4700.0, "inches")
  2269. },
  2270. {
  2271. name: "Megamacro",
  2272. height: math.unit(235000.0, "inches")
  2273. },
  2274. {
  2275. name: "Gigamacro",
  2276. height: math.unit(470000000.0, "inches")
  2277. }
  2278. ]
  2279. )
  2280. };
  2281. pokemonMakers["Beartic"] = () => {
  2282. return makeCharacter(
  2283. "Beartic",
  2284. "Pokemon",
  2285. {
  2286. "Beartic": {
  2287. height: math.unit("102", "inches"),
  2288. weight: math.unit("573.2", "lbs"),
  2289. name: "Beartic",
  2290. image: {
  2291. source: "./media/pokemon/Beartic.svg"
  2292. },
  2293. rename: true
  2294. }
  2295. },
  2296. [
  2297. {
  2298. name: "Micro",
  2299. height: math.unit(10.2, "inches")
  2300. },
  2301. {
  2302. name: "Normal",
  2303. height: math.unit(102, "inches"),
  2304. default: true
  2305. },
  2306. {
  2307. name: "Macro",
  2308. height: math.unit(10200.0, "inches")
  2309. },
  2310. {
  2311. name: "Megamacro",
  2312. height: math.unit(510000.0, "inches")
  2313. },
  2314. {
  2315. name: "Gigamacro",
  2316. height: math.unit(1020000000.0, "inches")
  2317. }
  2318. ]
  2319. )
  2320. };
  2321. pokemonMakers["Beautifly"] = () => {
  2322. return makeCharacter(
  2323. "Beautifly",
  2324. "Pokemon",
  2325. {
  2326. "Beautifly": {
  2327. height: math.unit("39", "inches"),
  2328. weight: math.unit("62.6", "lbs"),
  2329. name: "Beautifly",
  2330. image: {
  2331. source: "./media/pokemon/Beautifly.svg"
  2332. },
  2333. rename: true
  2334. }
  2335. },
  2336. [
  2337. {
  2338. name: "Micro",
  2339. height: math.unit(3.9, "inches")
  2340. },
  2341. {
  2342. name: "Normal",
  2343. height: math.unit(39, "inches"),
  2344. default: true
  2345. },
  2346. {
  2347. name: "Macro",
  2348. height: math.unit(3900.0, "inches")
  2349. },
  2350. {
  2351. name: "Megamacro",
  2352. height: math.unit(195000.0, "inches")
  2353. },
  2354. {
  2355. name: "Gigamacro",
  2356. height: math.unit(390000000.0, "inches")
  2357. }
  2358. ]
  2359. )
  2360. };
  2361. pokemonMakers["Beedrill"] = () => {
  2362. return makeCharacter(
  2363. "Beedrill",
  2364. "Pokemon",
  2365. {
  2366. "Beedrill": {
  2367. height: math.unit("39", "inches"),
  2368. weight: math.unit("65.0", "lbs"),
  2369. name: "Beedrill",
  2370. image: {
  2371. source: "./media/pokemon/Beedrill.svg"
  2372. },
  2373. rename: true
  2374. },
  2375. "Mega Beedrill": {
  2376. height: math.unit("55", "inches"),
  2377. weight: math.unit("89.3", "lbs"),
  2378. name: "Mega Beedrill",
  2379. image: {
  2380. source: "./media/pokemon/Mega Beedrill.svg"
  2381. },
  2382. rename: true
  2383. }
  2384. },
  2385. [
  2386. {
  2387. name: "Micro",
  2388. height: math.unit(3.9, "inches")
  2389. },
  2390. {
  2391. name: "Normal",
  2392. height: math.unit(39, "inches"),
  2393. default: true
  2394. },
  2395. {
  2396. name: "Macro",
  2397. height: math.unit(3900.0, "inches")
  2398. },
  2399. {
  2400. name: "Megamacro",
  2401. height: math.unit(195000.0, "inches")
  2402. },
  2403. {
  2404. name: "Gigamacro",
  2405. height: math.unit(390000000.0, "inches")
  2406. }
  2407. ]
  2408. )
  2409. };
  2410. pokemonMakers["Beheeyem"] = () => {
  2411. return makeCharacter(
  2412. "Beheeyem",
  2413. "Pokemon",
  2414. {
  2415. "Beheeyem": {
  2416. height: math.unit("39", "inches"),
  2417. weight: math.unit("76.1", "lbs"),
  2418. name: "Beheeyem",
  2419. image: {
  2420. source: "./media/pokemon/Beheeyem.svg"
  2421. },
  2422. rename: true
  2423. }
  2424. },
  2425. [
  2426. {
  2427. name: "Micro",
  2428. height: math.unit(3.9, "inches")
  2429. },
  2430. {
  2431. name: "Normal",
  2432. height: math.unit(39, "inches"),
  2433. default: true
  2434. },
  2435. {
  2436. name: "Macro",
  2437. height: math.unit(3900.0, "inches")
  2438. },
  2439. {
  2440. name: "Megamacro",
  2441. height: math.unit(195000.0, "inches")
  2442. },
  2443. {
  2444. name: "Gigamacro",
  2445. height: math.unit(390000000.0, "inches")
  2446. }
  2447. ]
  2448. )
  2449. };
  2450. pokemonMakers["Beldum"] = () => {
  2451. return makeCharacter(
  2452. "Beldum",
  2453. "Pokemon",
  2454. {
  2455. "Beldum": {
  2456. height: math.unit("24", "inches"),
  2457. weight: math.unit("209.9", "lbs"),
  2458. name: "Beldum",
  2459. image: {
  2460. source: "./media/pokemon/Beldum.svg"
  2461. },
  2462. rename: true
  2463. }
  2464. },
  2465. [
  2466. {
  2467. name: "Micro",
  2468. height: math.unit(2.4, "inches")
  2469. },
  2470. {
  2471. name: "Normal",
  2472. height: math.unit(24, "inches"),
  2473. default: true
  2474. },
  2475. {
  2476. name: "Macro",
  2477. height: math.unit(2400.0, "inches")
  2478. },
  2479. {
  2480. name: "Megamacro",
  2481. height: math.unit(120000.0, "inches")
  2482. },
  2483. {
  2484. name: "Gigamacro",
  2485. height: math.unit(240000000.0, "inches")
  2486. }
  2487. ]
  2488. )
  2489. };
  2490. pokemonMakers["Bellossom"] = () => {
  2491. return makeCharacter(
  2492. "Bellossom",
  2493. "Pokemon",
  2494. {
  2495. "Bellossom": {
  2496. height: math.unit("16", "inches"),
  2497. weight: math.unit("12.8", "lbs"),
  2498. name: "Bellossom",
  2499. image: {
  2500. source: "./media/pokemon/Bellossom.svg"
  2501. },
  2502. rename: true
  2503. }
  2504. },
  2505. [
  2506. {
  2507. name: "Micro",
  2508. height: math.unit(1.6, "inches")
  2509. },
  2510. {
  2511. name: "Normal",
  2512. height: math.unit(16, "inches"),
  2513. default: true
  2514. },
  2515. {
  2516. name: "Macro",
  2517. height: math.unit(1600.0, "inches")
  2518. },
  2519. {
  2520. name: "Megamacro",
  2521. height: math.unit(80000.0, "inches")
  2522. },
  2523. {
  2524. name: "Gigamacro",
  2525. height: math.unit(160000000.0, "inches")
  2526. }
  2527. ]
  2528. )
  2529. };
  2530. pokemonMakers["Bellsprout"] = () => {
  2531. return makeCharacter(
  2532. "Bellsprout",
  2533. "Pokemon",
  2534. {
  2535. "Bellsprout": {
  2536. height: math.unit("28", "inches"),
  2537. weight: math.unit("8.8", "lbs"),
  2538. name: "Bellsprout",
  2539. image: {
  2540. source: "./media/pokemon/Bellsprout.svg"
  2541. },
  2542. rename: true
  2543. }
  2544. },
  2545. [
  2546. {
  2547. name: "Micro",
  2548. height: math.unit(2.8, "inches")
  2549. },
  2550. {
  2551. name: "Normal",
  2552. height: math.unit(28, "inches"),
  2553. default: true
  2554. },
  2555. {
  2556. name: "Macro",
  2557. height: math.unit(2800.0, "inches")
  2558. },
  2559. {
  2560. name: "Megamacro",
  2561. height: math.unit(140000.0, "inches")
  2562. },
  2563. {
  2564. name: "Gigamacro",
  2565. height: math.unit(280000000.0, "inches")
  2566. }
  2567. ]
  2568. )
  2569. };
  2570. pokemonMakers["Bergmite"] = () => {
  2571. return makeCharacter(
  2572. "Bergmite",
  2573. "Pokemon",
  2574. {
  2575. "Bergmite": {
  2576. height: math.unit("39", "inches"),
  2577. weight: math.unit("219.4", "lbs"),
  2578. name: "Bergmite",
  2579. image: {
  2580. source: "./media/pokemon/Bergmite.svg"
  2581. },
  2582. rename: true
  2583. }
  2584. },
  2585. [
  2586. {
  2587. name: "Micro",
  2588. height: math.unit(3.9, "inches")
  2589. },
  2590. {
  2591. name: "Normal",
  2592. height: math.unit(39, "inches"),
  2593. default: true
  2594. },
  2595. {
  2596. name: "Macro",
  2597. height: math.unit(3900.0, "inches")
  2598. },
  2599. {
  2600. name: "Megamacro",
  2601. height: math.unit(195000.0, "inches")
  2602. },
  2603. {
  2604. name: "Gigamacro",
  2605. height: math.unit(390000000.0, "inches")
  2606. }
  2607. ]
  2608. )
  2609. };
  2610. pokemonMakers["Bewear"] = () => {
  2611. return makeCharacter(
  2612. "Bewear",
  2613. "Pokemon",
  2614. {
  2615. "Bewear": {
  2616. height: math.unit("83", "inches"),
  2617. weight: math.unit("297.6", "lbs"),
  2618. name: "Bewear",
  2619. image: {
  2620. source: "./media/pokemon/Bewear.svg"
  2621. },
  2622. rename: true
  2623. }
  2624. },
  2625. [
  2626. {
  2627. name: "Micro",
  2628. height: math.unit(8.3, "inches")
  2629. },
  2630. {
  2631. name: "Normal",
  2632. height: math.unit(83, "inches"),
  2633. default: true
  2634. },
  2635. {
  2636. name: "Macro",
  2637. height: math.unit(8300.0, "inches")
  2638. },
  2639. {
  2640. name: "Megamacro",
  2641. height: math.unit(415000.0, "inches")
  2642. },
  2643. {
  2644. name: "Gigamacro",
  2645. height: math.unit(830000000.0, "inches")
  2646. }
  2647. ]
  2648. )
  2649. };
  2650. pokemonMakers["Bibarel"] = () => {
  2651. return makeCharacter(
  2652. "Bibarel",
  2653. "Pokemon",
  2654. {
  2655. "Bibarel": {
  2656. height: math.unit("39", "inches"),
  2657. weight: math.unit("69.4", "lbs"),
  2658. name: "Bibarel",
  2659. image: {
  2660. source: "./media/pokemon/Bibarel.svg"
  2661. },
  2662. rename: true
  2663. }
  2664. },
  2665. [
  2666. {
  2667. name: "Micro",
  2668. height: math.unit(3.9, "inches")
  2669. },
  2670. {
  2671. name: "Normal",
  2672. height: math.unit(39, "inches"),
  2673. default: true
  2674. },
  2675. {
  2676. name: "Macro",
  2677. height: math.unit(3900.0, "inches")
  2678. },
  2679. {
  2680. name: "Megamacro",
  2681. height: math.unit(195000.0, "inches")
  2682. },
  2683. {
  2684. name: "Gigamacro",
  2685. height: math.unit(390000000.0, "inches")
  2686. }
  2687. ]
  2688. )
  2689. };
  2690. pokemonMakers["Bidoof"] = () => {
  2691. return makeCharacter(
  2692. "Bidoof",
  2693. "Pokemon",
  2694. {
  2695. "Bidoof": {
  2696. height: math.unit("20", "inches"),
  2697. weight: math.unit("44.1", "lbs"),
  2698. name: "Bidoof",
  2699. image: {
  2700. source: "./media/pokemon/Bidoof.svg"
  2701. },
  2702. rename: true
  2703. }
  2704. },
  2705. [
  2706. {
  2707. name: "Micro",
  2708. height: math.unit(2.0, "inches")
  2709. },
  2710. {
  2711. name: "Normal",
  2712. height: math.unit(20, "inches"),
  2713. default: true
  2714. },
  2715. {
  2716. name: "Macro",
  2717. height: math.unit(2000.0, "inches")
  2718. },
  2719. {
  2720. name: "Megamacro",
  2721. height: math.unit(100000.0, "inches")
  2722. },
  2723. {
  2724. name: "Gigamacro",
  2725. height: math.unit(200000000.0, "inches")
  2726. }
  2727. ]
  2728. )
  2729. };
  2730. pokemonMakers["Binacle"] = () => {
  2731. return makeCharacter(
  2732. "Binacle",
  2733. "Pokemon",
  2734. {
  2735. "Binacle": {
  2736. height: math.unit("20", "inches"),
  2737. weight: math.unit("68.3", "lbs"),
  2738. name: "Binacle",
  2739. image: {
  2740. source: "./media/pokemon/Binacle.svg"
  2741. },
  2742. rename: true
  2743. }
  2744. },
  2745. [
  2746. {
  2747. name: "Micro",
  2748. height: math.unit(2.0, "inches")
  2749. },
  2750. {
  2751. name: "Normal",
  2752. height: math.unit(20, "inches"),
  2753. default: true
  2754. },
  2755. {
  2756. name: "Macro",
  2757. height: math.unit(2000.0, "inches")
  2758. },
  2759. {
  2760. name: "Megamacro",
  2761. height: math.unit(100000.0, "inches")
  2762. },
  2763. {
  2764. name: "Gigamacro",
  2765. height: math.unit(200000000.0, "inches")
  2766. }
  2767. ]
  2768. )
  2769. };
  2770. pokemonMakers["Bisharp"] = () => {
  2771. return makeCharacter(
  2772. "Bisharp",
  2773. "Pokemon",
  2774. {
  2775. "Bisharp": {
  2776. height: math.unit("63", "inches"),
  2777. weight: math.unit("154.3", "lbs"),
  2778. name: "Bisharp",
  2779. image: {
  2780. source: "./media/pokemon/Bisharp.svg"
  2781. },
  2782. rename: true
  2783. }
  2784. },
  2785. [
  2786. {
  2787. name: "Micro",
  2788. height: math.unit(6.3, "inches")
  2789. },
  2790. {
  2791. name: "Normal",
  2792. height: math.unit(63, "inches"),
  2793. default: true
  2794. },
  2795. {
  2796. name: "Macro",
  2797. height: math.unit(6300.0, "inches")
  2798. },
  2799. {
  2800. name: "Megamacro",
  2801. height: math.unit(315000.0, "inches")
  2802. },
  2803. {
  2804. name: "Gigamacro",
  2805. height: math.unit(630000000.0, "inches")
  2806. }
  2807. ]
  2808. )
  2809. };
  2810. pokemonMakers["Blacephalon"] = () => {
  2811. return makeCharacter(
  2812. "Blacephalon",
  2813. "Pokemon",
  2814. {
  2815. "Blacephalon": {
  2816. height: math.unit("71", "inches"),
  2817. weight: math.unit("28.7", "lbs"),
  2818. name: "Blacephalon",
  2819. image: {
  2820. source: "./media/pokemon/Blacephalon.svg"
  2821. },
  2822. rename: true
  2823. }
  2824. },
  2825. [
  2826. {
  2827. name: "Micro",
  2828. height: math.unit(7.1, "inches")
  2829. },
  2830. {
  2831. name: "Normal",
  2832. height: math.unit(71, "inches"),
  2833. default: true
  2834. },
  2835. {
  2836. name: "Macro",
  2837. height: math.unit(7100.0, "inches")
  2838. },
  2839. {
  2840. name: "Megamacro",
  2841. height: math.unit(355000.0, "inches")
  2842. },
  2843. {
  2844. name: "Gigamacro",
  2845. height: math.unit(710000000.0, "inches")
  2846. }
  2847. ]
  2848. )
  2849. };
  2850. pokemonMakers["Kyurem"] = () => {
  2851. return makeCharacter(
  2852. "Kyurem",
  2853. "Pokemon",
  2854. {
  2855. "Black Kyurem": {
  2856. height: math.unit("130", "inches"),
  2857. weight: math.unit("716.5", "lbs"),
  2858. name: "Black Kyurem",
  2859. image: {
  2860. source: "./media/pokemon/Black Kyurem.svg"
  2861. },
  2862. rename: true
  2863. },
  2864. "Kyurem": {
  2865. height: math.unit("118", "inches"),
  2866. weight: math.unit("716.5", "lbs"),
  2867. name: "Kyurem",
  2868. image: {
  2869. source: "./media/pokemon/Kyurem.svg"
  2870. },
  2871. rename: true
  2872. },
  2873. "White Kyurem": {
  2874. height: math.unit("142", "inches"),
  2875. weight: math.unit("716.5", "lbs"),
  2876. name: "White Kyurem",
  2877. image: {
  2878. source: "./media/pokemon/White Kyurem.svg"
  2879. },
  2880. rename: true
  2881. }
  2882. },
  2883. [
  2884. {
  2885. name: "Micro",
  2886. height: math.unit(13.0, "inches")
  2887. },
  2888. {
  2889. name: "Normal",
  2890. height: math.unit(130, "inches"),
  2891. default: true
  2892. },
  2893. {
  2894. name: "Macro",
  2895. height: math.unit(13000.0, "inches")
  2896. },
  2897. {
  2898. name: "Megamacro",
  2899. height: math.unit(650000.0, "inches")
  2900. },
  2901. {
  2902. name: "Gigamacro",
  2903. height: math.unit(1300000000.0, "inches")
  2904. }
  2905. ]
  2906. )
  2907. };
  2908. pokemonMakers["Blastoise"] = () => {
  2909. return makeCharacter(
  2910. "Blastoise",
  2911. "Pokemon",
  2912. {
  2913. "Blastoise": {
  2914. height: math.unit("63", "inches"),
  2915. weight: math.unit("188.5", "lbs"),
  2916. name: "Blastoise",
  2917. image: {
  2918. source: "./media/pokemon/Blastoise.svg"
  2919. },
  2920. rename: true
  2921. },
  2922. "Mega Blastoise": {
  2923. height: math.unit("63", "inches"),
  2924. weight: math.unit("222.9", "lbs"),
  2925. name: "Mega Blastoise",
  2926. image: {
  2927. source: "./media/pokemon/Mega Blastoise.svg"
  2928. },
  2929. rename: true
  2930. }
  2931. },
  2932. [
  2933. {
  2934. name: "Micro",
  2935. height: math.unit(6.3, "inches")
  2936. },
  2937. {
  2938. name: "Normal",
  2939. height: math.unit(63, "inches"),
  2940. default: true
  2941. },
  2942. {
  2943. name: "Macro",
  2944. height: math.unit(6300.0, "inches")
  2945. },
  2946. {
  2947. name: "Megamacro",
  2948. height: math.unit(315000.0, "inches")
  2949. },
  2950. {
  2951. name: "Gigamacro",
  2952. height: math.unit(630000000.0, "inches")
  2953. }
  2954. ]
  2955. )
  2956. };
  2957. pokemonMakers["Blaziken"] = () => {
  2958. return makeCharacter(
  2959. "Blaziken",
  2960. "Pokemon",
  2961. {
  2962. "Blaziken": {
  2963. height: math.unit("75", "inches"),
  2964. weight: math.unit("114.6", "lbs"),
  2965. name: "Blaziken",
  2966. image: {
  2967. source: "./media/pokemon/Blaziken.svg"
  2968. },
  2969. rename: true
  2970. },
  2971. "Mega Blaziken": {
  2972. height: math.unit("75", "inches"),
  2973. weight: math.unit("114.6", "lbs"),
  2974. name: "Mega Blaziken",
  2975. image: {
  2976. source: "./media/pokemon/Mega Blaziken.svg"
  2977. },
  2978. rename: true
  2979. }
  2980. },
  2981. [
  2982. {
  2983. name: "Micro",
  2984. height: math.unit(7.5, "inches")
  2985. },
  2986. {
  2987. name: "Normal",
  2988. height: math.unit(75, "inches"),
  2989. default: true
  2990. },
  2991. {
  2992. name: "Macro",
  2993. height: math.unit(7500.0, "inches")
  2994. },
  2995. {
  2996. name: "Megamacro",
  2997. height: math.unit(375000.0, "inches")
  2998. },
  2999. {
  3000. name: "Gigamacro",
  3001. height: math.unit(750000000.0, "inches")
  3002. }
  3003. ]
  3004. )
  3005. };
  3006. pokemonMakers["Blipbug"] = () => {
  3007. return makeCharacter(
  3008. "Blipbug",
  3009. "Pokemon",
  3010. {
  3011. "Blipbug": {
  3012. height: math.unit("16", "inches"),
  3013. weight: math.unit("17.6", "lbs"),
  3014. name: "Blipbug",
  3015. image: {
  3016. source: "./media/pokemon/Blipbug.svg"
  3017. },
  3018. rename: true
  3019. }
  3020. },
  3021. [
  3022. {
  3023. name: "Micro",
  3024. height: math.unit(1.6, "inches")
  3025. },
  3026. {
  3027. name: "Normal",
  3028. height: math.unit(16, "inches"),
  3029. default: true
  3030. },
  3031. {
  3032. name: "Macro",
  3033. height: math.unit(1600.0, "inches")
  3034. },
  3035. {
  3036. name: "Megamacro",
  3037. height: math.unit(80000.0, "inches")
  3038. },
  3039. {
  3040. name: "Gigamacro",
  3041. height: math.unit(160000000.0, "inches")
  3042. }
  3043. ]
  3044. )
  3045. };
  3046. pokemonMakers["Blissey"] = () => {
  3047. return makeCharacter(
  3048. "Blissey",
  3049. "Pokemon",
  3050. {
  3051. "Blissey": {
  3052. height: math.unit("59", "inches"),
  3053. weight: math.unit("103.2", "lbs"),
  3054. name: "Blissey",
  3055. image: {
  3056. source: "./media/pokemon/Blissey.svg"
  3057. },
  3058. rename: true
  3059. }
  3060. },
  3061. [
  3062. {
  3063. name: "Micro",
  3064. height: math.unit(5.9, "inches")
  3065. },
  3066. {
  3067. name: "Normal",
  3068. height: math.unit(59, "inches"),
  3069. default: true
  3070. },
  3071. {
  3072. name: "Macro",
  3073. height: math.unit(5900.0, "inches")
  3074. },
  3075. {
  3076. name: "Megamacro",
  3077. height: math.unit(295000.0, "inches")
  3078. },
  3079. {
  3080. name: "Gigamacro",
  3081. height: math.unit(590000000.0, "inches")
  3082. }
  3083. ]
  3084. )
  3085. };
  3086. pokemonMakers["Blitzle"] = () => {
  3087. return makeCharacter(
  3088. "Blitzle",
  3089. "Pokemon",
  3090. {
  3091. "Blitzle": {
  3092. height: math.unit("31", "inches"),
  3093. weight: math.unit("65.7", "lbs"),
  3094. name: "Blitzle",
  3095. image: {
  3096. source: "./media/pokemon/Blitzle.svg"
  3097. },
  3098. rename: true
  3099. }
  3100. },
  3101. [
  3102. {
  3103. name: "Micro",
  3104. height: math.unit(3.1, "inches")
  3105. },
  3106. {
  3107. name: "Normal",
  3108. height: math.unit(31, "inches"),
  3109. default: true
  3110. },
  3111. {
  3112. name: "Macro",
  3113. height: math.unit(3100.0, "inches")
  3114. },
  3115. {
  3116. name: "Megamacro",
  3117. height: math.unit(155000.0, "inches")
  3118. },
  3119. {
  3120. name: "Gigamacro",
  3121. height: math.unit(310000000.0, "inches")
  3122. }
  3123. ]
  3124. )
  3125. };
  3126. pokemonMakers["Boldore"] = () => {
  3127. return makeCharacter(
  3128. "Boldore",
  3129. "Pokemon",
  3130. {
  3131. "Boldore": {
  3132. height: math.unit("35", "inches"),
  3133. weight: math.unit("224.9", "lbs"),
  3134. name: "Boldore",
  3135. image: {
  3136. source: "./media/pokemon/Boldore.svg"
  3137. },
  3138. rename: true
  3139. }
  3140. },
  3141. [
  3142. {
  3143. name: "Micro",
  3144. height: math.unit(3.5, "inches")
  3145. },
  3146. {
  3147. name: "Normal",
  3148. height: math.unit(35, "inches"),
  3149. default: true
  3150. },
  3151. {
  3152. name: "Macro",
  3153. height: math.unit(3500.0, "inches")
  3154. },
  3155. {
  3156. name: "Megamacro",
  3157. height: math.unit(175000.0, "inches")
  3158. },
  3159. {
  3160. name: "Gigamacro",
  3161. height: math.unit(350000000.0, "inches")
  3162. }
  3163. ]
  3164. )
  3165. };
  3166. pokemonMakers["Boltund"] = () => {
  3167. return makeCharacter(
  3168. "Boltund",
  3169. "Pokemon",
  3170. {
  3171. "Boltund": {
  3172. height: math.unit("39", "inches"),
  3173. weight: math.unit("75.0", "lbs"),
  3174. name: "Boltund",
  3175. image: {
  3176. source: "./media/pokemon/Boltund.svg"
  3177. },
  3178. rename: true
  3179. }
  3180. },
  3181. [
  3182. {
  3183. name: "Micro",
  3184. height: math.unit(3.9, "inches")
  3185. },
  3186. {
  3187. name: "Normal",
  3188. height: math.unit(39, "inches"),
  3189. default: true
  3190. },
  3191. {
  3192. name: "Macro",
  3193. height: math.unit(3900.0, "inches")
  3194. },
  3195. {
  3196. name: "Megamacro",
  3197. height: math.unit(195000.0, "inches")
  3198. },
  3199. {
  3200. name: "Gigamacro",
  3201. height: math.unit(390000000.0, "inches")
  3202. }
  3203. ]
  3204. )
  3205. };
  3206. pokemonMakers["Bonsly"] = () => {
  3207. return makeCharacter(
  3208. "Bonsly",
  3209. "Pokemon",
  3210. {
  3211. "Bonsly": {
  3212. height: math.unit("20", "inches"),
  3213. weight: math.unit("33.1", "lbs"),
  3214. name: "Bonsly",
  3215. image: {
  3216. source: "./media/pokemon/Bonsly.svg"
  3217. },
  3218. rename: true
  3219. }
  3220. },
  3221. [
  3222. {
  3223. name: "Micro",
  3224. height: math.unit(2.0, "inches")
  3225. },
  3226. {
  3227. name: "Normal",
  3228. height: math.unit(20, "inches"),
  3229. default: true
  3230. },
  3231. {
  3232. name: "Macro",
  3233. height: math.unit(2000.0, "inches")
  3234. },
  3235. {
  3236. name: "Megamacro",
  3237. height: math.unit(100000.0, "inches")
  3238. },
  3239. {
  3240. name: "Gigamacro",
  3241. height: math.unit(200000000.0, "inches")
  3242. }
  3243. ]
  3244. )
  3245. };
  3246. pokemonMakers["Bouffalant"] = () => {
  3247. return makeCharacter(
  3248. "Bouffalant",
  3249. "Pokemon",
  3250. {
  3251. "Bouffalant": {
  3252. height: math.unit("63", "inches"),
  3253. weight: math.unit("208.6", "lbs"),
  3254. name: "Bouffalant",
  3255. image: {
  3256. source: "./media/pokemon/Bouffalant.svg"
  3257. },
  3258. rename: true
  3259. }
  3260. },
  3261. [
  3262. {
  3263. name: "Micro",
  3264. height: math.unit(6.3, "inches")
  3265. },
  3266. {
  3267. name: "Normal",
  3268. height: math.unit(63, "inches"),
  3269. default: true
  3270. },
  3271. {
  3272. name: "Macro",
  3273. height: math.unit(6300.0, "inches")
  3274. },
  3275. {
  3276. name: "Megamacro",
  3277. height: math.unit(315000.0, "inches")
  3278. },
  3279. {
  3280. name: "Gigamacro",
  3281. height: math.unit(630000000.0, "inches")
  3282. }
  3283. ]
  3284. )
  3285. };
  3286. pokemonMakers["Bounsweet"] = () => {
  3287. return makeCharacter(
  3288. "Bounsweet",
  3289. "Pokemon",
  3290. {
  3291. "Bounsweet": {
  3292. height: math.unit("12", "inches"),
  3293. weight: math.unit("7.1", "lbs"),
  3294. name: "Bounsweet",
  3295. image: {
  3296. source: "./media/pokemon/Bounsweet.svg"
  3297. },
  3298. rename: true
  3299. }
  3300. },
  3301. [
  3302. {
  3303. name: "Micro",
  3304. height: math.unit(1.2, "inches")
  3305. },
  3306. {
  3307. name: "Normal",
  3308. height: math.unit(12, "inches"),
  3309. default: true
  3310. },
  3311. {
  3312. name: "Macro",
  3313. height: math.unit(1200.0, "inches")
  3314. },
  3315. {
  3316. name: "Megamacro",
  3317. height: math.unit(60000.0, "inches")
  3318. },
  3319. {
  3320. name: "Gigamacro",
  3321. height: math.unit(120000000.0, "inches")
  3322. }
  3323. ]
  3324. )
  3325. };
  3326. pokemonMakers["Braixen"] = () => {
  3327. return makeCharacter(
  3328. "Braixen",
  3329. "Pokemon",
  3330. {
  3331. "Braixen": {
  3332. height: math.unit("39", "inches"),
  3333. weight: math.unit("32.0", "lbs"),
  3334. name: "Braixen",
  3335. image: {
  3336. source: "./media/pokemon/Braixen.svg"
  3337. },
  3338. rename: true
  3339. }
  3340. },
  3341. [
  3342. {
  3343. name: "Micro",
  3344. height: math.unit(3.9, "inches")
  3345. },
  3346. {
  3347. name: "Normal",
  3348. height: math.unit(39, "inches"),
  3349. default: true
  3350. },
  3351. {
  3352. name: "Macro",
  3353. height: math.unit(3900.0, "inches")
  3354. },
  3355. {
  3356. name: "Megamacro",
  3357. height: math.unit(195000.0, "inches")
  3358. },
  3359. {
  3360. name: "Gigamacro",
  3361. height: math.unit(390000000.0, "inches")
  3362. }
  3363. ]
  3364. )
  3365. };
  3366. pokemonMakers["Braviary"] = () => {
  3367. return makeCharacter(
  3368. "Braviary",
  3369. "Pokemon",
  3370. {
  3371. "Braviary": {
  3372. height: math.unit("59", "inches"),
  3373. weight: math.unit("90.4", "lbs"),
  3374. name: "Braviary",
  3375. image: {
  3376. source: "./media/pokemon/Braviary.svg"
  3377. },
  3378. rename: true
  3379. }
  3380. },
  3381. [
  3382. {
  3383. name: "Micro",
  3384. height: math.unit(5.9, "inches")
  3385. },
  3386. {
  3387. name: "Normal",
  3388. height: math.unit(59, "inches"),
  3389. default: true
  3390. },
  3391. {
  3392. name: "Macro",
  3393. height: math.unit(5900.0, "inches")
  3394. },
  3395. {
  3396. name: "Megamacro",
  3397. height: math.unit(295000.0, "inches")
  3398. },
  3399. {
  3400. name: "Gigamacro",
  3401. height: math.unit(590000000.0, "inches")
  3402. }
  3403. ]
  3404. )
  3405. };
  3406. pokemonMakers["Breloom"] = () => {
  3407. return makeCharacter(
  3408. "Breloom",
  3409. "Pokemon",
  3410. {
  3411. "Breloom": {
  3412. height: math.unit("47", "inches"),
  3413. weight: math.unit("86.4", "lbs"),
  3414. name: "Breloom",
  3415. image: {
  3416. source: "./media/pokemon/Breloom.svg"
  3417. },
  3418. rename: true
  3419. }
  3420. },
  3421. [
  3422. {
  3423. name: "Micro",
  3424. height: math.unit(4.7, "inches")
  3425. },
  3426. {
  3427. name: "Normal",
  3428. height: math.unit(47, "inches"),
  3429. default: true
  3430. },
  3431. {
  3432. name: "Macro",
  3433. height: math.unit(4700.0, "inches")
  3434. },
  3435. {
  3436. name: "Megamacro",
  3437. height: math.unit(235000.0, "inches")
  3438. },
  3439. {
  3440. name: "Gigamacro",
  3441. height: math.unit(470000000.0, "inches")
  3442. }
  3443. ]
  3444. )
  3445. };
  3446. pokemonMakers["Brionne"] = () => {
  3447. return makeCharacter(
  3448. "Brionne",
  3449. "Pokemon",
  3450. {
  3451. "Brionne": {
  3452. height: math.unit("24", "inches"),
  3453. weight: math.unit("38.6", "lbs"),
  3454. name: "Brionne",
  3455. image: {
  3456. source: "./media/pokemon/Brionne.svg"
  3457. },
  3458. rename: true
  3459. }
  3460. },
  3461. [
  3462. {
  3463. name: "Micro",
  3464. height: math.unit(2.4, "inches")
  3465. },
  3466. {
  3467. name: "Normal",
  3468. height: math.unit(24, "inches"),
  3469. default: true
  3470. },
  3471. {
  3472. name: "Macro",
  3473. height: math.unit(2400.0, "inches")
  3474. },
  3475. {
  3476. name: "Megamacro",
  3477. height: math.unit(120000.0, "inches")
  3478. },
  3479. {
  3480. name: "Gigamacro",
  3481. height: math.unit(240000000.0, "inches")
  3482. }
  3483. ]
  3484. )
  3485. };
  3486. pokemonMakers["Bronzong"] = () => {
  3487. return makeCharacter(
  3488. "Bronzong",
  3489. "Pokemon",
  3490. {
  3491. "Bronzong": {
  3492. height: math.unit("51", "inches"),
  3493. weight: math.unit("412.3", "lbs"),
  3494. name: "Bronzong",
  3495. image: {
  3496. source: "./media/pokemon/Bronzong.svg"
  3497. },
  3498. rename: true
  3499. }
  3500. },
  3501. [
  3502. {
  3503. name: "Micro",
  3504. height: math.unit(5.1, "inches")
  3505. },
  3506. {
  3507. name: "Normal",
  3508. height: math.unit(51, "inches"),
  3509. default: true
  3510. },
  3511. {
  3512. name: "Macro",
  3513. height: math.unit(5100.0, "inches")
  3514. },
  3515. {
  3516. name: "Megamacro",
  3517. height: math.unit(255000.0, "inches")
  3518. },
  3519. {
  3520. name: "Gigamacro",
  3521. height: math.unit(510000000.0, "inches")
  3522. }
  3523. ]
  3524. )
  3525. };
  3526. pokemonMakers["Bronzor"] = () => {
  3527. return makeCharacter(
  3528. "Bronzor",
  3529. "Pokemon",
  3530. {
  3531. "Bronzor": {
  3532. height: math.unit("20", "inches"),
  3533. weight: math.unit("133.4", "lbs"),
  3534. name: "Bronzor",
  3535. image: {
  3536. source: "./media/pokemon/Bronzor.svg"
  3537. },
  3538. rename: true
  3539. }
  3540. },
  3541. [
  3542. {
  3543. name: "Micro",
  3544. height: math.unit(2.0, "inches")
  3545. },
  3546. {
  3547. name: "Normal",
  3548. height: math.unit(20, "inches"),
  3549. default: true
  3550. },
  3551. {
  3552. name: "Macro",
  3553. height: math.unit(2000.0, "inches")
  3554. },
  3555. {
  3556. name: "Megamacro",
  3557. height: math.unit(100000.0, "inches")
  3558. },
  3559. {
  3560. name: "Gigamacro",
  3561. height: math.unit(200000000.0, "inches")
  3562. }
  3563. ]
  3564. )
  3565. };
  3566. pokemonMakers["Bruxish"] = () => {
  3567. return makeCharacter(
  3568. "Bruxish",
  3569. "Pokemon",
  3570. {
  3571. "Bruxish": {
  3572. height: math.unit("35", "inches"),
  3573. weight: math.unit("41.9", "lbs"),
  3574. name: "Bruxish",
  3575. image: {
  3576. source: "./media/pokemon/Bruxish.svg"
  3577. },
  3578. rename: true
  3579. }
  3580. },
  3581. [
  3582. {
  3583. name: "Micro",
  3584. height: math.unit(3.5, "inches")
  3585. },
  3586. {
  3587. name: "Normal",
  3588. height: math.unit(35, "inches"),
  3589. default: true
  3590. },
  3591. {
  3592. name: "Macro",
  3593. height: math.unit(3500.0, "inches")
  3594. },
  3595. {
  3596. name: "Megamacro",
  3597. height: math.unit(175000.0, "inches")
  3598. },
  3599. {
  3600. name: "Gigamacro",
  3601. height: math.unit(350000000.0, "inches")
  3602. }
  3603. ]
  3604. )
  3605. };
  3606. pokemonMakers["Budew"] = () => {
  3607. return makeCharacter(
  3608. "Budew",
  3609. "Pokemon",
  3610. {
  3611. "Budew": {
  3612. height: math.unit("8", "inches"),
  3613. weight: math.unit("2.6", "lbs"),
  3614. name: "Budew",
  3615. image: {
  3616. source: "./media/pokemon/Budew.svg"
  3617. },
  3618. rename: true
  3619. }
  3620. },
  3621. [
  3622. {
  3623. name: "Micro",
  3624. height: math.unit(0.8, "inches")
  3625. },
  3626. {
  3627. name: "Normal",
  3628. height: math.unit(8, "inches"),
  3629. default: true
  3630. },
  3631. {
  3632. name: "Macro",
  3633. height: math.unit(800.0, "inches")
  3634. },
  3635. {
  3636. name: "Megamacro",
  3637. height: math.unit(40000.0, "inches")
  3638. },
  3639. {
  3640. name: "Gigamacro",
  3641. height: math.unit(80000000.0, "inches")
  3642. }
  3643. ]
  3644. )
  3645. };
  3646. pokemonMakers["Buizel"] = () => {
  3647. return makeCharacter(
  3648. "Buizel",
  3649. "Pokemon",
  3650. {
  3651. "Buizel": {
  3652. height: math.unit("28", "inches"),
  3653. weight: math.unit("65.0", "lbs"),
  3654. name: "Buizel",
  3655. image: {
  3656. source: "./media/pokemon/Buizel.svg"
  3657. },
  3658. rename: true
  3659. }
  3660. },
  3661. [
  3662. {
  3663. name: "Micro",
  3664. height: math.unit(2.8, "inches")
  3665. },
  3666. {
  3667. name: "Normal",
  3668. height: math.unit(28, "inches"),
  3669. default: true
  3670. },
  3671. {
  3672. name: "Macro",
  3673. height: math.unit(2800.0, "inches")
  3674. },
  3675. {
  3676. name: "Megamacro",
  3677. height: math.unit(140000.0, "inches")
  3678. },
  3679. {
  3680. name: "Gigamacro",
  3681. height: math.unit(280000000.0, "inches")
  3682. }
  3683. ]
  3684. )
  3685. };
  3686. pokemonMakers["Bulbasaur"] = () => {
  3687. return makeCharacter(
  3688. "Bulbasaur",
  3689. "Pokemon",
  3690. {
  3691. "Bulbasaur": {
  3692. height: math.unit("28", "inches"),
  3693. weight: math.unit("15.2", "lbs"),
  3694. name: "Bulbasaur",
  3695. image: {
  3696. source: "./media/pokemon/Bulbasaur.svg"
  3697. },
  3698. rename: true
  3699. }
  3700. },
  3701. [
  3702. {
  3703. name: "Micro",
  3704. height: math.unit(2.8, "inches")
  3705. },
  3706. {
  3707. name: "Normal",
  3708. height: math.unit(28, "inches"),
  3709. default: true
  3710. },
  3711. {
  3712. name: "Macro",
  3713. height: math.unit(2800.0, "inches")
  3714. },
  3715. {
  3716. name: "Megamacro",
  3717. height: math.unit(140000.0, "inches")
  3718. },
  3719. {
  3720. name: "Gigamacro",
  3721. height: math.unit(280000000.0, "inches")
  3722. }
  3723. ]
  3724. )
  3725. };
  3726. pokemonMakers["Buneary"] = () => {
  3727. return makeCharacter(
  3728. "Buneary",
  3729. "Pokemon",
  3730. {
  3731. "Buneary": {
  3732. height: math.unit("16", "inches"),
  3733. weight: math.unit("12.1", "lbs"),
  3734. name: "Buneary",
  3735. image: {
  3736. source: "./media/pokemon/Buneary.svg"
  3737. },
  3738. rename: true
  3739. }
  3740. },
  3741. [
  3742. {
  3743. name: "Micro",
  3744. height: math.unit(1.6, "inches")
  3745. },
  3746. {
  3747. name: "Normal",
  3748. height: math.unit(16, "inches"),
  3749. default: true
  3750. },
  3751. {
  3752. name: "Macro",
  3753. height: math.unit(1600.0, "inches")
  3754. },
  3755. {
  3756. name: "Megamacro",
  3757. height: math.unit(80000.0, "inches")
  3758. },
  3759. {
  3760. name: "Gigamacro",
  3761. height: math.unit(160000000.0, "inches")
  3762. }
  3763. ]
  3764. )
  3765. };
  3766. pokemonMakers["Bunnelby"] = () => {
  3767. return makeCharacter(
  3768. "Bunnelby",
  3769. "Pokemon",
  3770. {
  3771. "Bunnelby": {
  3772. height: math.unit("16", "inches"),
  3773. weight: math.unit("11.0", "lbs"),
  3774. name: "Bunnelby",
  3775. image: {
  3776. source: "./media/pokemon/Bunnelby.svg"
  3777. },
  3778. rename: true
  3779. }
  3780. },
  3781. [
  3782. {
  3783. name: "Micro",
  3784. height: math.unit(1.6, "inches")
  3785. },
  3786. {
  3787. name: "Normal",
  3788. height: math.unit(16, "inches"),
  3789. default: true
  3790. },
  3791. {
  3792. name: "Macro",
  3793. height: math.unit(1600.0, "inches")
  3794. },
  3795. {
  3796. name: "Megamacro",
  3797. height: math.unit(80000.0, "inches")
  3798. },
  3799. {
  3800. name: "Gigamacro",
  3801. height: math.unit(160000000.0, "inches")
  3802. }
  3803. ]
  3804. )
  3805. };
  3806. pokemonMakers["Burmy"] = () => {
  3807. return makeCharacter(
  3808. "Burmy",
  3809. "Pokemon",
  3810. {
  3811. "Plant Cloak": {
  3812. height: math.unit("8", "inches"),
  3813. weight: math.unit("7.5", "lbs"),
  3814. name: "Plant Cloak",
  3815. image: {
  3816. source: "./media/pokemon/Burmy - Plant Cloak.svg"
  3817. },
  3818. rename: true
  3819. },
  3820. "Sandy Cloak": {
  3821. height: math.unit("8", "inches"),
  3822. weight: math.unit("7.5", "lbs"),
  3823. name: "Sandy Cloak",
  3824. image: {
  3825. source: "./media/pokemon/Burmy - Sandy Cloak.svg"
  3826. },
  3827. rename: true
  3828. },
  3829. "Trash Cloak": {
  3830. height: math.unit("8", "inches"),
  3831. weight: math.unit("7.5", "lbs"),
  3832. name: "Trash Cloak",
  3833. image: {
  3834. source: "./media/pokemon/Burmy - Trash Cloak.svg"
  3835. },
  3836. rename: true
  3837. }
  3838. },
  3839. [
  3840. {
  3841. name: "Micro",
  3842. height: math.unit(0.8, "inches")
  3843. },
  3844. {
  3845. name: "Normal",
  3846. height: math.unit(8, "inches"),
  3847. default: true
  3848. },
  3849. {
  3850. name: "Macro",
  3851. height: math.unit(800.0, "inches")
  3852. },
  3853. {
  3854. name: "Megamacro",
  3855. height: math.unit(40000.0, "inches")
  3856. },
  3857. {
  3858. name: "Gigamacro",
  3859. height: math.unit(80000000.0, "inches")
  3860. }
  3861. ]
  3862. )
  3863. };
  3864. pokemonMakers["Butterfree"] = () => {
  3865. return makeCharacter(
  3866. "Butterfree",
  3867. "Pokemon",
  3868. {
  3869. "Butterfree": {
  3870. height: math.unit("43", "inches"),
  3871. weight: math.unit("70.5", "lbs"),
  3872. name: "Butterfree",
  3873. image: {
  3874. source: "./media/pokemon/Butterfree.svg"
  3875. },
  3876. rename: true
  3877. },
  3878. "Gigantamax Butterfree": {
  3879. height: math.unit("669", "inches"),
  3880. weight: math.unit("265498.5194322512", "lbs"),
  3881. name: "Gigantamax Butterfree",
  3882. image: {
  3883. source: "./media/pokemon/Gigantamax Butterfree.svg"
  3884. },
  3885. rename: true
  3886. }
  3887. },
  3888. [
  3889. {
  3890. name: "Micro",
  3891. height: math.unit(4.3, "inches")
  3892. },
  3893. {
  3894. name: "Normal",
  3895. height: math.unit(43, "inches"),
  3896. default: true
  3897. },
  3898. {
  3899. name: "Macro",
  3900. height: math.unit(4300.0, "inches")
  3901. },
  3902. {
  3903. name: "Megamacro",
  3904. height: math.unit(215000.0, "inches")
  3905. },
  3906. {
  3907. name: "Gigamacro",
  3908. height: math.unit(430000000.0, "inches")
  3909. }
  3910. ]
  3911. )
  3912. };
  3913. pokemonMakers["Buzzwole"] = () => {
  3914. return makeCharacter(
  3915. "Buzzwole",
  3916. "Pokemon",
  3917. {
  3918. "Buzzwole": {
  3919. height: math.unit("94", "inches"),
  3920. weight: math.unit("735.5", "lbs"),
  3921. name: "Buzzwole",
  3922. image: {
  3923. source: "./media/pokemon/Buzzwole.svg"
  3924. },
  3925. rename: true
  3926. }
  3927. },
  3928. [
  3929. {
  3930. name: "Micro",
  3931. height: math.unit(9.4, "inches")
  3932. },
  3933. {
  3934. name: "Normal",
  3935. height: math.unit(94, "inches"),
  3936. default: true
  3937. },
  3938. {
  3939. name: "Macro",
  3940. height: math.unit(9400.0, "inches")
  3941. },
  3942. {
  3943. name: "Megamacro",
  3944. height: math.unit(470000.0, "inches")
  3945. },
  3946. {
  3947. name: "Gigamacro",
  3948. height: math.unit(940000000.0, "inches")
  3949. }
  3950. ]
  3951. )
  3952. };
  3953. pokemonMakers["Cacnea"] = () => {
  3954. return makeCharacter(
  3955. "Cacnea",
  3956. "Pokemon",
  3957. {
  3958. "Cacnea": {
  3959. height: math.unit("16", "inches"),
  3960. weight: math.unit("113.1", "lbs"),
  3961. name: "Cacnea",
  3962. image: {
  3963. source: "./media/pokemon/Cacnea.svg"
  3964. },
  3965. rename: true
  3966. }
  3967. },
  3968. [
  3969. {
  3970. name: "Micro",
  3971. height: math.unit(1.6, "inches")
  3972. },
  3973. {
  3974. name: "Normal",
  3975. height: math.unit(16, "inches"),
  3976. default: true
  3977. },
  3978. {
  3979. name: "Macro",
  3980. height: math.unit(1600.0, "inches")
  3981. },
  3982. {
  3983. name: "Megamacro",
  3984. height: math.unit(80000.0, "inches")
  3985. },
  3986. {
  3987. name: "Gigamacro",
  3988. height: math.unit(160000000.0, "inches")
  3989. }
  3990. ]
  3991. )
  3992. };
  3993. pokemonMakers["Cacturne"] = () => {
  3994. return makeCharacter(
  3995. "Cacturne",
  3996. "Pokemon",
  3997. {
  3998. "Cacturne": {
  3999. height: math.unit("51", "inches"),
  4000. weight: math.unit("170.6", "lbs"),
  4001. name: "Cacturne",
  4002. image: {
  4003. source: "./media/pokemon/Cacturne.svg"
  4004. },
  4005. rename: true
  4006. }
  4007. },
  4008. [
  4009. {
  4010. name: "Micro",
  4011. height: math.unit(5.1, "inches")
  4012. },
  4013. {
  4014. name: "Normal",
  4015. height: math.unit(51, "inches"),
  4016. default: true
  4017. },
  4018. {
  4019. name: "Macro",
  4020. height: math.unit(5100.0, "inches")
  4021. },
  4022. {
  4023. name: "Megamacro",
  4024. height: math.unit(255000.0, "inches")
  4025. },
  4026. {
  4027. name: "Gigamacro",
  4028. height: math.unit(510000000.0, "inches")
  4029. }
  4030. ]
  4031. )
  4032. };
  4033. pokemonMakers["Camerupt"] = () => {
  4034. return makeCharacter(
  4035. "Camerupt",
  4036. "Pokemon",
  4037. {
  4038. "Camerupt": {
  4039. height: math.unit("75", "inches"),
  4040. weight: math.unit("485.0", "lbs"),
  4041. name: "Camerupt",
  4042. image: {
  4043. source: "./media/pokemon/Camerupt.svg"
  4044. },
  4045. rename: true
  4046. },
  4047. "Mega Camerupt": {
  4048. height: math.unit("98", "inches"),
  4049. weight: math.unit("706.6", "lbs"),
  4050. name: "Mega Camerupt",
  4051. image: {
  4052. source: "./media/pokemon/Mega Camerupt.svg"
  4053. },
  4054. rename: true
  4055. }
  4056. },
  4057. [
  4058. {
  4059. name: "Micro",
  4060. height: math.unit(7.5, "inches")
  4061. },
  4062. {
  4063. name: "Normal",
  4064. height: math.unit(75, "inches"),
  4065. default: true
  4066. },
  4067. {
  4068. name: "Macro",
  4069. height: math.unit(7500.0, "inches")
  4070. },
  4071. {
  4072. name: "Megamacro",
  4073. height: math.unit(375000.0, "inches")
  4074. },
  4075. {
  4076. name: "Gigamacro",
  4077. height: math.unit(750000000.0, "inches")
  4078. }
  4079. ]
  4080. )
  4081. };
  4082. pokemonMakers["Carbink"] = () => {
  4083. return makeCharacter(
  4084. "Carbink",
  4085. "Pokemon",
  4086. {
  4087. "Carbink": {
  4088. height: math.unit("12", "inches"),
  4089. weight: math.unit("12.6", "lbs"),
  4090. name: "Carbink",
  4091. image: {
  4092. source: "./media/pokemon/Carbink.svg"
  4093. },
  4094. rename: true
  4095. }
  4096. },
  4097. [
  4098. {
  4099. name: "Micro",
  4100. height: math.unit(1.2, "inches")
  4101. },
  4102. {
  4103. name: "Normal",
  4104. height: math.unit(12, "inches"),
  4105. default: true
  4106. },
  4107. {
  4108. name: "Macro",
  4109. height: math.unit(1200.0, "inches")
  4110. },
  4111. {
  4112. name: "Megamacro",
  4113. height: math.unit(60000.0, "inches")
  4114. },
  4115. {
  4116. name: "Gigamacro",
  4117. height: math.unit(120000000.0, "inches")
  4118. }
  4119. ]
  4120. )
  4121. };
  4122. pokemonMakers["Carkol"] = () => {
  4123. return makeCharacter(
  4124. "Carkol",
  4125. "Pokemon",
  4126. {
  4127. "Carkol": {
  4128. height: math.unit("43", "inches"),
  4129. weight: math.unit("172.0", "lbs"),
  4130. name: "Carkol",
  4131. image: {
  4132. source: "./media/pokemon/Carkol.svg"
  4133. },
  4134. rename: true
  4135. }
  4136. },
  4137. [
  4138. {
  4139. name: "Micro",
  4140. height: math.unit(4.3, "inches")
  4141. },
  4142. {
  4143. name: "Normal",
  4144. height: math.unit(43, "inches"),
  4145. default: true
  4146. },
  4147. {
  4148. name: "Macro",
  4149. height: math.unit(4300.0, "inches")
  4150. },
  4151. {
  4152. name: "Megamacro",
  4153. height: math.unit(215000.0, "inches")
  4154. },
  4155. {
  4156. name: "Gigamacro",
  4157. height: math.unit(430000000.0, "inches")
  4158. }
  4159. ]
  4160. )
  4161. };
  4162. pokemonMakers["Carnivine"] = () => {
  4163. return makeCharacter(
  4164. "Carnivine",
  4165. "Pokemon",
  4166. {
  4167. "Carnivine": {
  4168. height: math.unit("55", "inches"),
  4169. weight: math.unit("59.5", "lbs"),
  4170. name: "Carnivine",
  4171. image: {
  4172. source: "./media/pokemon/Carnivine.svg"
  4173. },
  4174. rename: true
  4175. }
  4176. },
  4177. [
  4178. {
  4179. name: "Micro",
  4180. height: math.unit(5.5, "inches")
  4181. },
  4182. {
  4183. name: "Normal",
  4184. height: math.unit(55, "inches"),
  4185. default: true
  4186. },
  4187. {
  4188. name: "Macro",
  4189. height: math.unit(5500.0, "inches")
  4190. },
  4191. {
  4192. name: "Megamacro",
  4193. height: math.unit(275000.0, "inches")
  4194. },
  4195. {
  4196. name: "Gigamacro",
  4197. height: math.unit(550000000.0, "inches")
  4198. }
  4199. ]
  4200. )
  4201. };
  4202. pokemonMakers["Carracosta"] = () => {
  4203. return makeCharacter(
  4204. "Carracosta",
  4205. "Pokemon",
  4206. {
  4207. "Carracosta": {
  4208. height: math.unit("47", "inches"),
  4209. weight: math.unit("178.6", "lbs"),
  4210. name: "Carracosta",
  4211. image: {
  4212. source: "./media/pokemon/Carracosta.svg"
  4213. },
  4214. rename: true
  4215. }
  4216. },
  4217. [
  4218. {
  4219. name: "Micro",
  4220. height: math.unit(4.7, "inches")
  4221. },
  4222. {
  4223. name: "Normal",
  4224. height: math.unit(47, "inches"),
  4225. default: true
  4226. },
  4227. {
  4228. name: "Macro",
  4229. height: math.unit(4700.0, "inches")
  4230. },
  4231. {
  4232. name: "Megamacro",
  4233. height: math.unit(235000.0, "inches")
  4234. },
  4235. {
  4236. name: "Gigamacro",
  4237. height: math.unit(470000000.0, "inches")
  4238. }
  4239. ]
  4240. )
  4241. };
  4242. pokemonMakers["Carvanha"] = () => {
  4243. return makeCharacter(
  4244. "Carvanha",
  4245. "Pokemon",
  4246. {
  4247. "Carvanha": {
  4248. height: math.unit("31", "inches"),
  4249. weight: math.unit("45.9", "lbs"),
  4250. name: "Carvanha",
  4251. image: {
  4252. source: "./media/pokemon/Carvanha.svg"
  4253. },
  4254. rename: true
  4255. }
  4256. },
  4257. [
  4258. {
  4259. name: "Micro",
  4260. height: math.unit(3.1, "inches")
  4261. },
  4262. {
  4263. name: "Normal",
  4264. height: math.unit(31, "inches"),
  4265. default: true
  4266. },
  4267. {
  4268. name: "Macro",
  4269. height: math.unit(3100.0, "inches")
  4270. },
  4271. {
  4272. name: "Megamacro",
  4273. height: math.unit(155000.0, "inches")
  4274. },
  4275. {
  4276. name: "Gigamacro",
  4277. height: math.unit(310000000.0, "inches")
  4278. }
  4279. ]
  4280. )
  4281. };
  4282. pokemonMakers["Cascoon"] = () => {
  4283. return makeCharacter(
  4284. "Cascoon",
  4285. "Pokemon",
  4286. {
  4287. "Cascoon": {
  4288. height: math.unit("28", "inches"),
  4289. weight: math.unit("25.4", "lbs"),
  4290. name: "Cascoon",
  4291. image: {
  4292. source: "./media/pokemon/Cascoon.svg"
  4293. },
  4294. rename: true
  4295. }
  4296. },
  4297. [
  4298. {
  4299. name: "Micro",
  4300. height: math.unit(2.8, "inches")
  4301. },
  4302. {
  4303. name: "Normal",
  4304. height: math.unit(28, "inches"),
  4305. default: true
  4306. },
  4307. {
  4308. name: "Macro",
  4309. height: math.unit(2800.0, "inches")
  4310. },
  4311. {
  4312. name: "Megamacro",
  4313. height: math.unit(140000.0, "inches")
  4314. },
  4315. {
  4316. name: "Gigamacro",
  4317. height: math.unit(280000000.0, "inches")
  4318. }
  4319. ]
  4320. )
  4321. };
  4322. pokemonMakers["Castform"] = () => {
  4323. return makeCharacter(
  4324. "Castform",
  4325. "Pokemon",
  4326. {
  4327. "Rainy Form": {
  4328. height: math.unit("12", "inches"),
  4329. weight: math.unit("1.8", "lbs"),
  4330. name: "Rainy Form",
  4331. image: {
  4332. source: "./media/pokemon/Castform - Rainy Form.svg"
  4333. },
  4334. rename: true
  4335. },
  4336. "Snowy Form": {
  4337. height: math.unit("12", "inches"),
  4338. weight: math.unit("1.8", "lbs"),
  4339. name: "Snowy Form",
  4340. image: {
  4341. source: "./media/pokemon/Castform - Snowy Form.svg"
  4342. },
  4343. rename: true
  4344. },
  4345. "Sunny Form": {
  4346. height: math.unit("12", "inches"),
  4347. weight: math.unit("1.8", "lbs"),
  4348. name: "Sunny Form",
  4349. image: {
  4350. source: "./media/pokemon/Castform - Sunny Form.svg"
  4351. },
  4352. rename: true
  4353. },
  4354. "Castform": {
  4355. height: math.unit("12", "inches"),
  4356. weight: math.unit("1.8", "lbs"),
  4357. name: "Castform",
  4358. image: {
  4359. source: "./media/pokemon/Castform.svg"
  4360. },
  4361. rename: true
  4362. }
  4363. },
  4364. [
  4365. {
  4366. name: "Micro",
  4367. height: math.unit(1.2, "inches")
  4368. },
  4369. {
  4370. name: "Normal",
  4371. height: math.unit(12, "inches"),
  4372. default: true
  4373. },
  4374. {
  4375. name: "Macro",
  4376. height: math.unit(1200.0, "inches")
  4377. },
  4378. {
  4379. name: "Megamacro",
  4380. height: math.unit(60000.0, "inches")
  4381. },
  4382. {
  4383. name: "Gigamacro",
  4384. height: math.unit(120000000.0, "inches")
  4385. }
  4386. ]
  4387. )
  4388. };
  4389. pokemonMakers["Caterpie"] = () => {
  4390. return makeCharacter(
  4391. "Caterpie",
  4392. "Pokemon",
  4393. {
  4394. "Caterpie": {
  4395. height: math.unit("12", "inches"),
  4396. weight: math.unit("6.4", "lbs"),
  4397. name: "Caterpie",
  4398. image: {
  4399. source: "./media/pokemon/Caterpie.svg"
  4400. },
  4401. rename: true
  4402. }
  4403. },
  4404. [
  4405. {
  4406. name: "Micro",
  4407. height: math.unit(1.2, "inches")
  4408. },
  4409. {
  4410. name: "Normal",
  4411. height: math.unit(12, "inches"),
  4412. default: true
  4413. },
  4414. {
  4415. name: "Macro",
  4416. height: math.unit(1200.0, "inches")
  4417. },
  4418. {
  4419. name: "Megamacro",
  4420. height: math.unit(60000.0, "inches")
  4421. },
  4422. {
  4423. name: "Gigamacro",
  4424. height: math.unit(120000000.0, "inches")
  4425. }
  4426. ]
  4427. )
  4428. };
  4429. pokemonMakers["Celebi"] = () => {
  4430. return makeCharacter(
  4431. "Celebi",
  4432. "Pokemon",
  4433. {
  4434. "Celebi": {
  4435. height: math.unit("24", "inches"),
  4436. weight: math.unit("11.0", "lbs"),
  4437. name: "Celebi",
  4438. image: {
  4439. source: "./media/pokemon/Celebi.svg"
  4440. },
  4441. rename: true
  4442. }
  4443. },
  4444. [
  4445. {
  4446. name: "Micro",
  4447. height: math.unit(2.4, "inches")
  4448. },
  4449. {
  4450. name: "Normal",
  4451. height: math.unit(24, "inches"),
  4452. default: true
  4453. },
  4454. {
  4455. name: "Macro",
  4456. height: math.unit(2400.0, "inches")
  4457. },
  4458. {
  4459. name: "Megamacro",
  4460. height: math.unit(120000.0, "inches")
  4461. },
  4462. {
  4463. name: "Gigamacro",
  4464. height: math.unit(240000000.0, "inches")
  4465. }
  4466. ]
  4467. )
  4468. };
  4469. pokemonMakers["Celesteela"] = () => {
  4470. return makeCharacter(
  4471. "Celesteela",
  4472. "Pokemon",
  4473. {
  4474. "Celesteela": {
  4475. height: math.unit("362", "inches"),
  4476. weight: math.unit("2204.4", "lbs"),
  4477. name: "Celesteela",
  4478. image: {
  4479. source: "./media/pokemon/Celesteela.svg"
  4480. },
  4481. rename: true
  4482. }
  4483. },
  4484. [
  4485. {
  4486. name: "Micro",
  4487. height: math.unit(36.2, "inches")
  4488. },
  4489. {
  4490. name: "Normal",
  4491. height: math.unit(362, "inches"),
  4492. default: true
  4493. },
  4494. {
  4495. name: "Macro",
  4496. height: math.unit(36200.0, "inches")
  4497. },
  4498. {
  4499. name: "Megamacro",
  4500. height: math.unit(1810000.0, "inches")
  4501. },
  4502. {
  4503. name: "Gigamacro",
  4504. height: math.unit(3620000000.0, "inches")
  4505. }
  4506. ]
  4507. )
  4508. };
  4509. pokemonMakers["Centiskorch"] = () => {
  4510. return makeCharacter(
  4511. "Centiskorch",
  4512. "Pokemon",
  4513. {
  4514. "Centiskorch": {
  4515. height: math.unit("118", "inches"),
  4516. weight: math.unit("264.6", "lbs"),
  4517. name: "Centiskorch",
  4518. image: {
  4519. source: "./media/pokemon/Centiskorch.svg"
  4520. },
  4521. rename: true
  4522. },
  4523. "Gigantamax Centiskorch": {
  4524. height: math.unit("2953", "inches"),
  4525. weight: math.unit("4147001.178938817", "lbs"),
  4526. name: "Gigantamax Centiskorch",
  4527. image: {
  4528. source: "./media/pokemon/Gigantamax Centiskorch.svg"
  4529. },
  4530. rename: true
  4531. }
  4532. },
  4533. [
  4534. {
  4535. name: "Micro",
  4536. height: math.unit(11.8, "inches")
  4537. },
  4538. {
  4539. name: "Normal",
  4540. height: math.unit(118, "inches"),
  4541. default: true
  4542. },
  4543. {
  4544. name: "Macro",
  4545. height: math.unit(11800.0, "inches")
  4546. },
  4547. {
  4548. name: "Megamacro",
  4549. height: math.unit(590000.0, "inches")
  4550. },
  4551. {
  4552. name: "Gigamacro",
  4553. height: math.unit(1180000000.0, "inches")
  4554. }
  4555. ]
  4556. )
  4557. };
  4558. pokemonMakers["Chandelure"] = () => {
  4559. return makeCharacter(
  4560. "Chandelure",
  4561. "Pokemon",
  4562. {
  4563. "Chandelure": {
  4564. height: math.unit("39", "inches"),
  4565. weight: math.unit("75.6", "lbs"),
  4566. name: "Chandelure",
  4567. image: {
  4568. source: "./media/pokemon/Chandelure.svg"
  4569. },
  4570. rename: true
  4571. }
  4572. },
  4573. [
  4574. {
  4575. name: "Micro",
  4576. height: math.unit(3.9, "inches")
  4577. },
  4578. {
  4579. name: "Normal",
  4580. height: math.unit(39, "inches"),
  4581. default: true
  4582. },
  4583. {
  4584. name: "Macro",
  4585. height: math.unit(3900.0, "inches")
  4586. },
  4587. {
  4588. name: "Megamacro",
  4589. height: math.unit(195000.0, "inches")
  4590. },
  4591. {
  4592. name: "Gigamacro",
  4593. height: math.unit(390000000.0, "inches")
  4594. }
  4595. ]
  4596. )
  4597. };
  4598. pokemonMakers["Chansey"] = () => {
  4599. return makeCharacter(
  4600. "Chansey",
  4601. "Pokemon",
  4602. {
  4603. "Chansey": {
  4604. height: math.unit("43", "inches"),
  4605. weight: math.unit("76.3", "lbs"),
  4606. name: "Chansey",
  4607. image: {
  4608. source: "./media/pokemon/Chansey.svg"
  4609. },
  4610. rename: true
  4611. }
  4612. },
  4613. [
  4614. {
  4615. name: "Micro",
  4616. height: math.unit(4.3, "inches")
  4617. },
  4618. {
  4619. name: "Normal",
  4620. height: math.unit(43, "inches"),
  4621. default: true
  4622. },
  4623. {
  4624. name: "Macro",
  4625. height: math.unit(4300.0, "inches")
  4626. },
  4627. {
  4628. name: "Megamacro",
  4629. height: math.unit(215000.0, "inches")
  4630. },
  4631. {
  4632. name: "Gigamacro",
  4633. height: math.unit(430000000.0, "inches")
  4634. }
  4635. ]
  4636. )
  4637. };
  4638. pokemonMakers["Charizard"] = () => {
  4639. return makeCharacter(
  4640. "Charizard",
  4641. "Pokemon",
  4642. {
  4643. "Charizard": {
  4644. height: math.unit("67", "inches"),
  4645. weight: math.unit("199.5", "lbs"),
  4646. name: "Charizard",
  4647. image: {
  4648. source: "./media/pokemon/Charizard.svg"
  4649. },
  4650. rename: true
  4651. },
  4652. "Mega Charizard X": {
  4653. height: math.unit("67", "inches"),
  4654. weight: math.unit("243.6", "lbs"),
  4655. name: "Mega Charizard X",
  4656. image: {
  4657. source: "./media/pokemon/Mega Charizard X.svg"
  4658. },
  4659. rename: true
  4660. },
  4661. "Mega Charizard Y": {
  4662. height: math.unit("67", "inches"),
  4663. weight: math.unit("221.6", "lbs"),
  4664. name: "Mega Charizard Y",
  4665. image: {
  4666. source: "./media/pokemon/Mega Charizard Y.svg"
  4667. },
  4668. rename: true
  4669. },
  4670. "Gigantamax Charizard": {
  4671. height: math.unit("1102", "inches"),
  4672. weight: math.unit("887693.9816267294", "lbs"),
  4673. name: "Gigantamax Charizard",
  4674. image: {
  4675. source: "./media/pokemon/Gigantamax Charizard.svg"
  4676. },
  4677. rename: true
  4678. }
  4679. },
  4680. [
  4681. {
  4682. name: "Micro",
  4683. height: math.unit(6.7, "inches")
  4684. },
  4685. {
  4686. name: "Normal",
  4687. height: math.unit(67, "inches"),
  4688. default: true
  4689. },
  4690. {
  4691. name: "Macro",
  4692. height: math.unit(6700.0, "inches")
  4693. },
  4694. {
  4695. name: "Megamacro",
  4696. height: math.unit(335000.0, "inches")
  4697. },
  4698. {
  4699. name: "Gigamacro",
  4700. height: math.unit(670000000.0, "inches")
  4701. }
  4702. ]
  4703. )
  4704. };
  4705. pokemonMakers["Charjabug"] = () => {
  4706. return makeCharacter(
  4707. "Charjabug",
  4708. "Pokemon",
  4709. {
  4710. "Charjabug": {
  4711. height: math.unit("20", "inches"),
  4712. weight: math.unit("23.1", "lbs"),
  4713. name: "Charjabug",
  4714. image: {
  4715. source: "./media/pokemon/Charjabug.svg"
  4716. },
  4717. rename: true
  4718. }
  4719. },
  4720. [
  4721. {
  4722. name: "Micro",
  4723. height: math.unit(2.0, "inches")
  4724. },
  4725. {
  4726. name: "Normal",
  4727. height: math.unit(20, "inches"),
  4728. default: true
  4729. },
  4730. {
  4731. name: "Macro",
  4732. height: math.unit(2000.0, "inches")
  4733. },
  4734. {
  4735. name: "Megamacro",
  4736. height: math.unit(100000.0, "inches")
  4737. },
  4738. {
  4739. name: "Gigamacro",
  4740. height: math.unit(200000000.0, "inches")
  4741. }
  4742. ]
  4743. )
  4744. };
  4745. pokemonMakers["Charmander"] = () => {
  4746. return makeCharacter(
  4747. "Charmander",
  4748. "Pokemon",
  4749. {
  4750. "Charmander": {
  4751. height: math.unit("24", "inches"),
  4752. weight: math.unit("18.7", "lbs"),
  4753. name: "Charmander",
  4754. image: {
  4755. source: "./media/pokemon/Charmander.svg"
  4756. },
  4757. rename: true
  4758. }
  4759. },
  4760. [
  4761. {
  4762. name: "Micro",
  4763. height: math.unit(2.4, "inches")
  4764. },
  4765. {
  4766. name: "Normal",
  4767. height: math.unit(24, "inches"),
  4768. default: true
  4769. },
  4770. {
  4771. name: "Macro",
  4772. height: math.unit(2400.0, "inches")
  4773. },
  4774. {
  4775. name: "Megamacro",
  4776. height: math.unit(120000.0, "inches")
  4777. },
  4778. {
  4779. name: "Gigamacro",
  4780. height: math.unit(240000000.0, "inches")
  4781. }
  4782. ]
  4783. )
  4784. };
  4785. pokemonMakers["Charmeleon"] = () => {
  4786. return makeCharacter(
  4787. "Charmeleon",
  4788. "Pokemon",
  4789. {
  4790. "Charmeleon": {
  4791. height: math.unit("43", "inches"),
  4792. weight: math.unit("41.9", "lbs"),
  4793. name: "Charmeleon",
  4794. image: {
  4795. source: "./media/pokemon/Charmeleon.svg"
  4796. },
  4797. rename: true
  4798. }
  4799. },
  4800. [
  4801. {
  4802. name: "Micro",
  4803. height: math.unit(4.3, "inches")
  4804. },
  4805. {
  4806. name: "Normal",
  4807. height: math.unit(43, "inches"),
  4808. default: true
  4809. },
  4810. {
  4811. name: "Macro",
  4812. height: math.unit(4300.0, "inches")
  4813. },
  4814. {
  4815. name: "Megamacro",
  4816. height: math.unit(215000.0, "inches")
  4817. },
  4818. {
  4819. name: "Gigamacro",
  4820. height: math.unit(430000000.0, "inches")
  4821. }
  4822. ]
  4823. )
  4824. };
  4825. pokemonMakers["Chatot"] = () => {
  4826. return makeCharacter(
  4827. "Chatot",
  4828. "Pokemon",
  4829. {
  4830. "Chatot": {
  4831. height: math.unit("20", "inches"),
  4832. weight: math.unit("4.2", "lbs"),
  4833. name: "Chatot",
  4834. image: {
  4835. source: "./media/pokemon/Chatot.svg"
  4836. },
  4837. rename: true
  4838. }
  4839. },
  4840. [
  4841. {
  4842. name: "Micro",
  4843. height: math.unit(2.0, "inches")
  4844. },
  4845. {
  4846. name: "Normal",
  4847. height: math.unit(20, "inches"),
  4848. default: true
  4849. },
  4850. {
  4851. name: "Macro",
  4852. height: math.unit(2000.0, "inches")
  4853. },
  4854. {
  4855. name: "Megamacro",
  4856. height: math.unit(100000.0, "inches")
  4857. },
  4858. {
  4859. name: "Gigamacro",
  4860. height: math.unit(200000000.0, "inches")
  4861. }
  4862. ]
  4863. )
  4864. };
  4865. pokemonMakers["Cherrim"] = () => {
  4866. return makeCharacter(
  4867. "Cherrim",
  4868. "Pokemon",
  4869. {
  4870. "Overcast Form": {
  4871. height: math.unit("20", "inches"),
  4872. weight: math.unit("20.5", "lbs"),
  4873. name: "Overcast Form",
  4874. image: {
  4875. source: "./media/pokemon/Cherrim - Overcast Form.svg"
  4876. },
  4877. rename: true
  4878. },
  4879. "Sunshine Form": {
  4880. height: math.unit("20", "inches"),
  4881. weight: math.unit("20.5", "lbs"),
  4882. name: "Sunshine Form",
  4883. image: {
  4884. source: "./media/pokemon/Cherrim - Sunshine Form.svg"
  4885. },
  4886. rename: true
  4887. }
  4888. },
  4889. [
  4890. {
  4891. name: "Micro",
  4892. height: math.unit(2.0, "inches")
  4893. },
  4894. {
  4895. name: "Normal",
  4896. height: math.unit(20, "inches"),
  4897. default: true
  4898. },
  4899. {
  4900. name: "Macro",
  4901. height: math.unit(2000.0, "inches")
  4902. },
  4903. {
  4904. name: "Megamacro",
  4905. height: math.unit(100000.0, "inches")
  4906. },
  4907. {
  4908. name: "Gigamacro",
  4909. height: math.unit(200000000.0, "inches")
  4910. }
  4911. ]
  4912. )
  4913. };
  4914. pokemonMakers["Cherubi"] = () => {
  4915. return makeCharacter(
  4916. "Cherubi",
  4917. "Pokemon",
  4918. {
  4919. "Cherubi": {
  4920. height: math.unit("16", "inches"),
  4921. weight: math.unit("7.3", "lbs"),
  4922. name: "Cherubi",
  4923. image: {
  4924. source: "./media/pokemon/Cherubi.svg"
  4925. },
  4926. rename: true
  4927. }
  4928. },
  4929. [
  4930. {
  4931. name: "Micro",
  4932. height: math.unit(1.6, "inches")
  4933. },
  4934. {
  4935. name: "Normal",
  4936. height: math.unit(16, "inches"),
  4937. default: true
  4938. },
  4939. {
  4940. name: "Macro",
  4941. height: math.unit(1600.0, "inches")
  4942. },
  4943. {
  4944. name: "Megamacro",
  4945. height: math.unit(80000.0, "inches")
  4946. },
  4947. {
  4948. name: "Gigamacro",
  4949. height: math.unit(160000000.0, "inches")
  4950. }
  4951. ]
  4952. )
  4953. };
  4954. pokemonMakers["Chesnaught"] = () => {
  4955. return makeCharacter(
  4956. "Chesnaught",
  4957. "Pokemon",
  4958. {
  4959. "Chesnaught": {
  4960. height: math.unit("63", "inches"),
  4961. weight: math.unit("198.4", "lbs"),
  4962. name: "Chesnaught",
  4963. image: {
  4964. source: "./media/pokemon/Chesnaught.svg"
  4965. },
  4966. rename: true
  4967. }
  4968. },
  4969. [
  4970. {
  4971. name: "Micro",
  4972. height: math.unit(6.3, "inches")
  4973. },
  4974. {
  4975. name: "Normal",
  4976. height: math.unit(63, "inches"),
  4977. default: true
  4978. },
  4979. {
  4980. name: "Macro",
  4981. height: math.unit(6300.0, "inches")
  4982. },
  4983. {
  4984. name: "Megamacro",
  4985. height: math.unit(315000.0, "inches")
  4986. },
  4987. {
  4988. name: "Gigamacro",
  4989. height: math.unit(630000000.0, "inches")
  4990. }
  4991. ]
  4992. )
  4993. };
  4994. pokemonMakers["Chespin"] = () => {
  4995. return makeCharacter(
  4996. "Chespin",
  4997. "Pokemon",
  4998. {
  4999. "Chespin": {
  5000. height: math.unit("16", "inches"),
  5001. weight: math.unit("19.8", "lbs"),
  5002. name: "Chespin",
  5003. image: {
  5004. source: "./media/pokemon/Chespin.svg"
  5005. },
  5006. rename: true
  5007. }
  5008. },
  5009. [
  5010. {
  5011. name: "Micro",
  5012. height: math.unit(1.6, "inches")
  5013. },
  5014. {
  5015. name: "Normal",
  5016. height: math.unit(16, "inches"),
  5017. default: true
  5018. },
  5019. {
  5020. name: "Macro",
  5021. height: math.unit(1600.0, "inches")
  5022. },
  5023. {
  5024. name: "Megamacro",
  5025. height: math.unit(80000.0, "inches")
  5026. },
  5027. {
  5028. name: "Gigamacro",
  5029. height: math.unit(160000000.0, "inches")
  5030. }
  5031. ]
  5032. )
  5033. };
  5034. pokemonMakers["Chewtle"] = () => {
  5035. return makeCharacter(
  5036. "Chewtle",
  5037. "Pokemon",
  5038. {
  5039. "Chewtle": {
  5040. height: math.unit("12", "inches"),
  5041. weight: math.unit("18.7", "lbs"),
  5042. name: "Chewtle",
  5043. image: {
  5044. source: "./media/pokemon/Chewtle.svg"
  5045. },
  5046. rename: true
  5047. }
  5048. },
  5049. [
  5050. {
  5051. name: "Micro",
  5052. height: math.unit(1.2, "inches")
  5053. },
  5054. {
  5055. name: "Normal",
  5056. height: math.unit(12, "inches"),
  5057. default: true
  5058. },
  5059. {
  5060. name: "Macro",
  5061. height: math.unit(1200.0, "inches")
  5062. },
  5063. {
  5064. name: "Megamacro",
  5065. height: math.unit(60000.0, "inches")
  5066. },
  5067. {
  5068. name: "Gigamacro",
  5069. height: math.unit(120000000.0, "inches")
  5070. }
  5071. ]
  5072. )
  5073. };
  5074. pokemonMakers["Chikorita"] = () => {
  5075. return makeCharacter(
  5076. "Chikorita",
  5077. "Pokemon",
  5078. {
  5079. "Chikorita": {
  5080. height: math.unit("35", "inches"),
  5081. weight: math.unit("14.1", "lbs"),
  5082. name: "Chikorita",
  5083. image: {
  5084. source: "./media/pokemon/Chikorita.svg"
  5085. },
  5086. rename: true
  5087. }
  5088. },
  5089. [
  5090. {
  5091. name: "Micro",
  5092. height: math.unit(3.5, "inches")
  5093. },
  5094. {
  5095. name: "Normal",
  5096. height: math.unit(35, "inches"),
  5097. default: true
  5098. },
  5099. {
  5100. name: "Macro",
  5101. height: math.unit(3500.0, "inches")
  5102. },
  5103. {
  5104. name: "Megamacro",
  5105. height: math.unit(175000.0, "inches")
  5106. },
  5107. {
  5108. name: "Gigamacro",
  5109. height: math.unit(350000000.0, "inches")
  5110. }
  5111. ]
  5112. )
  5113. };
  5114. pokemonMakers["Chimchar"] = () => {
  5115. return makeCharacter(
  5116. "Chimchar",
  5117. "Pokemon",
  5118. {
  5119. "Chimchar": {
  5120. height: math.unit("20", "inches"),
  5121. weight: math.unit("13.7", "lbs"),
  5122. name: "Chimchar",
  5123. image: {
  5124. source: "./media/pokemon/Chimchar.svg"
  5125. },
  5126. rename: true
  5127. }
  5128. },
  5129. [
  5130. {
  5131. name: "Micro",
  5132. height: math.unit(2.0, "inches")
  5133. },
  5134. {
  5135. name: "Normal",
  5136. height: math.unit(20, "inches"),
  5137. default: true
  5138. },
  5139. {
  5140. name: "Macro",
  5141. height: math.unit(2000.0, "inches")
  5142. },
  5143. {
  5144. name: "Megamacro",
  5145. height: math.unit(100000.0, "inches")
  5146. },
  5147. {
  5148. name: "Gigamacro",
  5149. height: math.unit(200000000.0, "inches")
  5150. }
  5151. ]
  5152. )
  5153. };
  5154. pokemonMakers["Chimecho"] = () => {
  5155. return makeCharacter(
  5156. "Chimecho",
  5157. "Pokemon",
  5158. {
  5159. "Chimecho": {
  5160. height: math.unit("24", "inches"),
  5161. weight: math.unit("2.2", "lbs"),
  5162. name: "Chimecho",
  5163. image: {
  5164. source: "./media/pokemon/Chimecho.svg"
  5165. },
  5166. rename: true
  5167. }
  5168. },
  5169. [
  5170. {
  5171. name: "Micro",
  5172. height: math.unit(2.4, "inches")
  5173. },
  5174. {
  5175. name: "Normal",
  5176. height: math.unit(24, "inches"),
  5177. default: true
  5178. },
  5179. {
  5180. name: "Macro",
  5181. height: math.unit(2400.0, "inches")
  5182. },
  5183. {
  5184. name: "Megamacro",
  5185. height: math.unit(120000.0, "inches")
  5186. },
  5187. {
  5188. name: "Gigamacro",
  5189. height: math.unit(240000000.0, "inches")
  5190. }
  5191. ]
  5192. )
  5193. };
  5194. pokemonMakers["Chinchou"] = () => {
  5195. return makeCharacter(
  5196. "Chinchou",
  5197. "Pokemon",
  5198. {
  5199. "Chinchou": {
  5200. height: math.unit("20", "inches"),
  5201. weight: math.unit("26.5", "lbs"),
  5202. name: "Chinchou",
  5203. image: {
  5204. source: "./media/pokemon/Chinchou.svg"
  5205. },
  5206. rename: true
  5207. }
  5208. },
  5209. [
  5210. {
  5211. name: "Micro",
  5212. height: math.unit(2.0, "inches")
  5213. },
  5214. {
  5215. name: "Normal",
  5216. height: math.unit(20, "inches"),
  5217. default: true
  5218. },
  5219. {
  5220. name: "Macro",
  5221. height: math.unit(2000.0, "inches")
  5222. },
  5223. {
  5224. name: "Megamacro",
  5225. height: math.unit(100000.0, "inches")
  5226. },
  5227. {
  5228. name: "Gigamacro",
  5229. height: math.unit(200000000.0, "inches")
  5230. }
  5231. ]
  5232. )
  5233. };
  5234. pokemonMakers["Chingling"] = () => {
  5235. return makeCharacter(
  5236. "Chingling",
  5237. "Pokemon",
  5238. {
  5239. "Chingling": {
  5240. height: math.unit("8", "inches"),
  5241. weight: math.unit("1.3", "lbs"),
  5242. name: "Chingling",
  5243. image: {
  5244. source: "./media/pokemon/Chingling.svg"
  5245. },
  5246. rename: true
  5247. }
  5248. },
  5249. [
  5250. {
  5251. name: "Micro",
  5252. height: math.unit(0.8, "inches")
  5253. },
  5254. {
  5255. name: "Normal",
  5256. height: math.unit(8, "inches"),
  5257. default: true
  5258. },
  5259. {
  5260. name: "Macro",
  5261. height: math.unit(800.0, "inches")
  5262. },
  5263. {
  5264. name: "Megamacro",
  5265. height: math.unit(40000.0, "inches")
  5266. },
  5267. {
  5268. name: "Gigamacro",
  5269. height: math.unit(80000000.0, "inches")
  5270. }
  5271. ]
  5272. )
  5273. };
  5274. pokemonMakers["Cinccino"] = () => {
  5275. return makeCharacter(
  5276. "Cinccino",
  5277. "Pokemon",
  5278. {
  5279. "Cinccino": {
  5280. height: math.unit("20", "inches"),
  5281. weight: math.unit("16.5", "lbs"),
  5282. name: "Cinccino",
  5283. image: {
  5284. source: "./media/pokemon/Cinccino.svg"
  5285. },
  5286. rename: true
  5287. }
  5288. },
  5289. [
  5290. {
  5291. name: "Micro",
  5292. height: math.unit(2.0, "inches")
  5293. },
  5294. {
  5295. name: "Normal",
  5296. height: math.unit(20, "inches"),
  5297. default: true
  5298. },
  5299. {
  5300. name: "Macro",
  5301. height: math.unit(2000.0, "inches")
  5302. },
  5303. {
  5304. name: "Megamacro",
  5305. height: math.unit(100000.0, "inches")
  5306. },
  5307. {
  5308. name: "Gigamacro",
  5309. height: math.unit(200000000.0, "inches")
  5310. }
  5311. ]
  5312. )
  5313. };
  5314. pokemonMakers["Cinderace"] = () => {
  5315. return makeCharacter(
  5316. "Cinderace",
  5317. "Pokemon",
  5318. {
  5319. "Cinderace": {
  5320. height: math.unit("55", "inches"),
  5321. weight: math.unit("72.8", "lbs"),
  5322. name: "Cinderace",
  5323. image: {
  5324. source: "./media/pokemon/Cinderace.svg"
  5325. },
  5326. rename: true
  5327. }
  5328. },
  5329. [
  5330. {
  5331. name: "Micro",
  5332. height: math.unit(5.5, "inches")
  5333. },
  5334. {
  5335. name: "Normal",
  5336. height: math.unit(55, "inches"),
  5337. default: true
  5338. },
  5339. {
  5340. name: "Macro",
  5341. height: math.unit(5500.0, "inches")
  5342. },
  5343. {
  5344. name: "Megamacro",
  5345. height: math.unit(275000.0, "inches")
  5346. },
  5347. {
  5348. name: "Gigamacro",
  5349. height: math.unit(550000000.0, "inches")
  5350. }
  5351. ]
  5352. )
  5353. };
  5354. pokemonMakers["Clamperl"] = () => {
  5355. return makeCharacter(
  5356. "Clamperl",
  5357. "Pokemon",
  5358. {
  5359. "Clamperl": {
  5360. height: math.unit("16", "inches"),
  5361. weight: math.unit("115.7", "lbs"),
  5362. name: "Clamperl",
  5363. image: {
  5364. source: "./media/pokemon/Clamperl.svg"
  5365. },
  5366. rename: true
  5367. }
  5368. },
  5369. [
  5370. {
  5371. name: "Micro",
  5372. height: math.unit(1.6, "inches")
  5373. },
  5374. {
  5375. name: "Normal",
  5376. height: math.unit(16, "inches"),
  5377. default: true
  5378. },
  5379. {
  5380. name: "Macro",
  5381. height: math.unit(1600.0, "inches")
  5382. },
  5383. {
  5384. name: "Megamacro",
  5385. height: math.unit(80000.0, "inches")
  5386. },
  5387. {
  5388. name: "Gigamacro",
  5389. height: math.unit(160000000.0, "inches")
  5390. }
  5391. ]
  5392. )
  5393. };
  5394. pokemonMakers["Clauncher"] = () => {
  5395. return makeCharacter(
  5396. "Clauncher",
  5397. "Pokemon",
  5398. {
  5399. "Clauncher": {
  5400. height: math.unit("20", "inches"),
  5401. weight: math.unit("18.3", "lbs"),
  5402. name: "Clauncher",
  5403. image: {
  5404. source: "./media/pokemon/Clauncher.svg"
  5405. },
  5406. rename: true
  5407. }
  5408. },
  5409. [
  5410. {
  5411. name: "Micro",
  5412. height: math.unit(2.0, "inches")
  5413. },
  5414. {
  5415. name: "Normal",
  5416. height: math.unit(20, "inches"),
  5417. default: true
  5418. },
  5419. {
  5420. name: "Macro",
  5421. height: math.unit(2000.0, "inches")
  5422. },
  5423. {
  5424. name: "Megamacro",
  5425. height: math.unit(100000.0, "inches")
  5426. },
  5427. {
  5428. name: "Gigamacro",
  5429. height: math.unit(200000000.0, "inches")
  5430. }
  5431. ]
  5432. )
  5433. };
  5434. pokemonMakers["Clawitzer"] = () => {
  5435. return makeCharacter(
  5436. "Clawitzer",
  5437. "Pokemon",
  5438. {
  5439. "Clawitzer": {
  5440. height: math.unit("51", "inches"),
  5441. weight: math.unit("77.8", "lbs"),
  5442. name: "Clawitzer",
  5443. image: {
  5444. source: "./media/pokemon/Clawitzer.svg"
  5445. },
  5446. rename: true
  5447. }
  5448. },
  5449. [
  5450. {
  5451. name: "Micro",
  5452. height: math.unit(5.1, "inches")
  5453. },
  5454. {
  5455. name: "Normal",
  5456. height: math.unit(51, "inches"),
  5457. default: true
  5458. },
  5459. {
  5460. name: "Macro",
  5461. height: math.unit(5100.0, "inches")
  5462. },
  5463. {
  5464. name: "Megamacro",
  5465. height: math.unit(255000.0, "inches")
  5466. },
  5467. {
  5468. name: "Gigamacro",
  5469. height: math.unit(510000000.0, "inches")
  5470. }
  5471. ]
  5472. )
  5473. };
  5474. pokemonMakers["Claydol"] = () => {
  5475. return makeCharacter(
  5476. "Claydol",
  5477. "Pokemon",
  5478. {
  5479. "Claydol": {
  5480. height: math.unit("59", "inches"),
  5481. weight: math.unit("238.1", "lbs"),
  5482. name: "Claydol",
  5483. image: {
  5484. source: "./media/pokemon/Claydol.svg"
  5485. },
  5486. rename: true
  5487. }
  5488. },
  5489. [
  5490. {
  5491. name: "Micro",
  5492. height: math.unit(5.9, "inches")
  5493. },
  5494. {
  5495. name: "Normal",
  5496. height: math.unit(59, "inches"),
  5497. default: true
  5498. },
  5499. {
  5500. name: "Macro",
  5501. height: math.unit(5900.0, "inches")
  5502. },
  5503. {
  5504. name: "Megamacro",
  5505. height: math.unit(295000.0, "inches")
  5506. },
  5507. {
  5508. name: "Gigamacro",
  5509. height: math.unit(590000000.0, "inches")
  5510. }
  5511. ]
  5512. )
  5513. };
  5514. pokemonMakers["Clefable"] = () => {
  5515. return makeCharacter(
  5516. "Clefable",
  5517. "Pokemon",
  5518. {
  5519. "Clefable": {
  5520. height: math.unit("51", "inches"),
  5521. weight: math.unit("88.2", "lbs"),
  5522. name: "Clefable",
  5523. image: {
  5524. source: "./media/pokemon/Clefable.svg"
  5525. },
  5526. rename: true
  5527. }
  5528. },
  5529. [
  5530. {
  5531. name: "Micro",
  5532. height: math.unit(5.1, "inches")
  5533. },
  5534. {
  5535. name: "Normal",
  5536. height: math.unit(51, "inches"),
  5537. default: true
  5538. },
  5539. {
  5540. name: "Macro",
  5541. height: math.unit(5100.0, "inches")
  5542. },
  5543. {
  5544. name: "Megamacro",
  5545. height: math.unit(255000.0, "inches")
  5546. },
  5547. {
  5548. name: "Gigamacro",
  5549. height: math.unit(510000000.0, "inches")
  5550. }
  5551. ]
  5552. )
  5553. };
  5554. pokemonMakers["Clefairy"] = () => {
  5555. return makeCharacter(
  5556. "Clefairy",
  5557. "Pokemon",
  5558. {
  5559. "Clefairy": {
  5560. height: math.unit("24", "inches"),
  5561. weight: math.unit("16.5", "lbs"),
  5562. name: "Clefairy",
  5563. image: {
  5564. source: "./media/pokemon/Clefairy.svg"
  5565. },
  5566. rename: true
  5567. }
  5568. },
  5569. [
  5570. {
  5571. name: "Micro",
  5572. height: math.unit(2.4, "inches")
  5573. },
  5574. {
  5575. name: "Normal",
  5576. height: math.unit(24, "inches"),
  5577. default: true
  5578. },
  5579. {
  5580. name: "Macro",
  5581. height: math.unit(2400.0, "inches")
  5582. },
  5583. {
  5584. name: "Megamacro",
  5585. height: math.unit(120000.0, "inches")
  5586. },
  5587. {
  5588. name: "Gigamacro",
  5589. height: math.unit(240000000.0, "inches")
  5590. }
  5591. ]
  5592. )
  5593. };
  5594. pokemonMakers["Cleffa"] = () => {
  5595. return makeCharacter(
  5596. "Cleffa",
  5597. "Pokemon",
  5598. {
  5599. "Cleffa": {
  5600. height: math.unit("12", "inches"),
  5601. weight: math.unit("6.6", "lbs"),
  5602. name: "Cleffa",
  5603. image: {
  5604. source: "./media/pokemon/Cleffa.svg"
  5605. },
  5606. rename: true
  5607. }
  5608. },
  5609. [
  5610. {
  5611. name: "Micro",
  5612. height: math.unit(1.2, "inches")
  5613. },
  5614. {
  5615. name: "Normal",
  5616. height: math.unit(12, "inches"),
  5617. default: true
  5618. },
  5619. {
  5620. name: "Macro",
  5621. height: math.unit(1200.0, "inches")
  5622. },
  5623. {
  5624. name: "Megamacro",
  5625. height: math.unit(60000.0, "inches")
  5626. },
  5627. {
  5628. name: "Gigamacro",
  5629. height: math.unit(120000000.0, "inches")
  5630. }
  5631. ]
  5632. )
  5633. };
  5634. pokemonMakers["Clobbopus"] = () => {
  5635. return makeCharacter(
  5636. "Clobbopus",
  5637. "Pokemon",
  5638. {
  5639. "Clobbopus": {
  5640. height: math.unit("24", "inches"),
  5641. weight: math.unit("8.8", "lbs"),
  5642. name: "Clobbopus",
  5643. image: {
  5644. source: "./media/pokemon/Clobbopus.svg"
  5645. },
  5646. rename: true
  5647. }
  5648. },
  5649. [
  5650. {
  5651. name: "Micro",
  5652. height: math.unit(2.4, "inches")
  5653. },
  5654. {
  5655. name: "Normal",
  5656. height: math.unit(24, "inches"),
  5657. default: true
  5658. },
  5659. {
  5660. name: "Macro",
  5661. height: math.unit(2400.0, "inches")
  5662. },
  5663. {
  5664. name: "Megamacro",
  5665. height: math.unit(120000.0, "inches")
  5666. },
  5667. {
  5668. name: "Gigamacro",
  5669. height: math.unit(240000000.0, "inches")
  5670. }
  5671. ]
  5672. )
  5673. };
  5674. pokemonMakers["Cloyster"] = () => {
  5675. return makeCharacter(
  5676. "Cloyster",
  5677. "Pokemon",
  5678. {
  5679. "Cloyster": {
  5680. height: math.unit("59", "inches"),
  5681. weight: math.unit("292.1", "lbs"),
  5682. name: "Cloyster",
  5683. image: {
  5684. source: "./media/pokemon/Cloyster.svg"
  5685. },
  5686. rename: true
  5687. }
  5688. },
  5689. [
  5690. {
  5691. name: "Micro",
  5692. height: math.unit(5.9, "inches")
  5693. },
  5694. {
  5695. name: "Normal",
  5696. height: math.unit(59, "inches"),
  5697. default: true
  5698. },
  5699. {
  5700. name: "Macro",
  5701. height: math.unit(5900.0, "inches")
  5702. },
  5703. {
  5704. name: "Megamacro",
  5705. height: math.unit(295000.0, "inches")
  5706. },
  5707. {
  5708. name: "Gigamacro",
  5709. height: math.unit(590000000.0, "inches")
  5710. }
  5711. ]
  5712. )
  5713. };
  5714. pokemonMakers["Coalossal"] = () => {
  5715. return makeCharacter(
  5716. "Coalossal",
  5717. "Pokemon",
  5718. {
  5719. "Coalossal": {
  5720. height: math.unit("110", "inches"),
  5721. weight: math.unit("684.5", "lbs"),
  5722. name: "Coalossal",
  5723. image: {
  5724. source: "./media/pokemon/Coalossal.svg"
  5725. },
  5726. rename: true
  5727. },
  5728. "Gigantamax Coalossal": {
  5729. height: math.unit("1654", "inches"),
  5730. weight: math.unit("2327029.627128475", "lbs"),
  5731. name: "Gigantamax Coalossal",
  5732. image: {
  5733. source: "./media/pokemon/Gigantamax Coalossal.svg"
  5734. },
  5735. rename: true
  5736. }
  5737. },
  5738. [
  5739. {
  5740. name: "Micro",
  5741. height: math.unit(11.0, "inches")
  5742. },
  5743. {
  5744. name: "Normal",
  5745. height: math.unit(110, "inches"),
  5746. default: true
  5747. },
  5748. {
  5749. name: "Macro",
  5750. height: math.unit(11000.0, "inches")
  5751. },
  5752. {
  5753. name: "Megamacro",
  5754. height: math.unit(550000.0, "inches")
  5755. },
  5756. {
  5757. name: "Gigamacro",
  5758. height: math.unit(1100000000.0, "inches")
  5759. }
  5760. ]
  5761. )
  5762. };
  5763. pokemonMakers["Cobalion"] = () => {
  5764. return makeCharacter(
  5765. "Cobalion",
  5766. "Pokemon",
  5767. {
  5768. "Cobalion": {
  5769. height: math.unit("83", "inches"),
  5770. weight: math.unit("551.2", "lbs"),
  5771. name: "Cobalion",
  5772. image: {
  5773. source: "./media/pokemon/Cobalion.svg"
  5774. },
  5775. rename: true
  5776. }
  5777. },
  5778. [
  5779. {
  5780. name: "Micro",
  5781. height: math.unit(8.3, "inches")
  5782. },
  5783. {
  5784. name: "Normal",
  5785. height: math.unit(83, "inches"),
  5786. default: true
  5787. },
  5788. {
  5789. name: "Macro",
  5790. height: math.unit(8300.0, "inches")
  5791. },
  5792. {
  5793. name: "Megamacro",
  5794. height: math.unit(415000.0, "inches")
  5795. },
  5796. {
  5797. name: "Gigamacro",
  5798. height: math.unit(830000000.0, "inches")
  5799. }
  5800. ]
  5801. )
  5802. };
  5803. pokemonMakers["Cofagrigus"] = () => {
  5804. return makeCharacter(
  5805. "Cofagrigus",
  5806. "Pokemon",
  5807. {
  5808. "Cofagrigus": {
  5809. height: math.unit("67", "inches"),
  5810. weight: math.unit("168.7", "lbs"),
  5811. name: "Cofagrigus",
  5812. image: {
  5813. source: "./media/pokemon/Cofagrigus.svg"
  5814. },
  5815. rename: true
  5816. }
  5817. },
  5818. [
  5819. {
  5820. name: "Micro",
  5821. height: math.unit(6.7, "inches")
  5822. },
  5823. {
  5824. name: "Normal",
  5825. height: math.unit(67, "inches"),
  5826. default: true
  5827. },
  5828. {
  5829. name: "Macro",
  5830. height: math.unit(6700.0, "inches")
  5831. },
  5832. {
  5833. name: "Megamacro",
  5834. height: math.unit(335000.0, "inches")
  5835. },
  5836. {
  5837. name: "Gigamacro",
  5838. height: math.unit(670000000.0, "inches")
  5839. }
  5840. ]
  5841. )
  5842. };
  5843. pokemonMakers["Combee"] = () => {
  5844. return makeCharacter(
  5845. "Combee",
  5846. "Pokemon",
  5847. {
  5848. "Combee": {
  5849. height: math.unit("12", "inches"),
  5850. weight: math.unit("12.1", "lbs"),
  5851. name: "Combee",
  5852. image: {
  5853. source: "./media/pokemon/Combee.svg"
  5854. },
  5855. rename: true
  5856. }
  5857. },
  5858. [
  5859. {
  5860. name: "Micro",
  5861. height: math.unit(1.2, "inches")
  5862. },
  5863. {
  5864. name: "Normal",
  5865. height: math.unit(12, "inches"),
  5866. default: true
  5867. },
  5868. {
  5869. name: "Macro",
  5870. height: math.unit(1200.0, "inches")
  5871. },
  5872. {
  5873. name: "Megamacro",
  5874. height: math.unit(60000.0, "inches")
  5875. },
  5876. {
  5877. name: "Gigamacro",
  5878. height: math.unit(120000000.0, "inches")
  5879. }
  5880. ]
  5881. )
  5882. };
  5883. pokemonMakers["Combusken"] = () => {
  5884. return makeCharacter(
  5885. "Combusken",
  5886. "Pokemon",
  5887. {
  5888. "Combusken": {
  5889. height: math.unit("35", "inches"),
  5890. weight: math.unit("43.0", "lbs"),
  5891. name: "Combusken",
  5892. image: {
  5893. source: "./media/pokemon/Combusken.svg"
  5894. },
  5895. rename: true
  5896. }
  5897. },
  5898. [
  5899. {
  5900. name: "Micro",
  5901. height: math.unit(3.5, "inches")
  5902. },
  5903. {
  5904. name: "Normal",
  5905. height: math.unit(35, "inches"),
  5906. default: true
  5907. },
  5908. {
  5909. name: "Macro",
  5910. height: math.unit(3500.0, "inches")
  5911. },
  5912. {
  5913. name: "Megamacro",
  5914. height: math.unit(175000.0, "inches")
  5915. },
  5916. {
  5917. name: "Gigamacro",
  5918. height: math.unit(350000000.0, "inches")
  5919. }
  5920. ]
  5921. )
  5922. };
  5923. pokemonMakers["Comfey"] = () => {
  5924. return makeCharacter(
  5925. "Comfey",
  5926. "Pokemon",
  5927. {
  5928. "Comfey": {
  5929. height: math.unit("4", "inches"),
  5930. weight: math.unit("0.7", "lbs"),
  5931. name: "Comfey",
  5932. image: {
  5933. source: "./media/pokemon/Comfey.svg"
  5934. },
  5935. rename: true
  5936. }
  5937. },
  5938. [
  5939. {
  5940. name: "Micro",
  5941. height: math.unit(0.4, "inches")
  5942. },
  5943. {
  5944. name: "Normal",
  5945. height: math.unit(4, "inches"),
  5946. default: true
  5947. },
  5948. {
  5949. name: "Macro",
  5950. height: math.unit(400.0, "inches")
  5951. },
  5952. {
  5953. name: "Megamacro",
  5954. height: math.unit(20000.0, "inches")
  5955. },
  5956. {
  5957. name: "Gigamacro",
  5958. height: math.unit(40000000.0, "inches")
  5959. }
  5960. ]
  5961. )
  5962. };
  5963. pokemonMakers["Conkeldurr"] = () => {
  5964. return makeCharacter(
  5965. "Conkeldurr",
  5966. "Pokemon",
  5967. {
  5968. "Conkeldurr": {
  5969. height: math.unit("55", "inches"),
  5970. weight: math.unit("191.8", "lbs"),
  5971. name: "Conkeldurr",
  5972. image: {
  5973. source: "./media/pokemon/Conkeldurr.svg"
  5974. },
  5975. rename: true
  5976. }
  5977. },
  5978. [
  5979. {
  5980. name: "Micro",
  5981. height: math.unit(5.5, "inches")
  5982. },
  5983. {
  5984. name: "Normal",
  5985. height: math.unit(55, "inches"),
  5986. default: true
  5987. },
  5988. {
  5989. name: "Macro",
  5990. height: math.unit(5500.0, "inches")
  5991. },
  5992. {
  5993. name: "Megamacro",
  5994. height: math.unit(275000.0, "inches")
  5995. },
  5996. {
  5997. name: "Gigamacro",
  5998. height: math.unit(550000000.0, "inches")
  5999. }
  6000. ]
  6001. )
  6002. };
  6003. pokemonMakers["Copperajah"] = () => {
  6004. return makeCharacter(
  6005. "Copperajah",
  6006. "Pokemon",
  6007. {
  6008. "Copperajah": {
  6009. height: math.unit("118", "inches"),
  6010. weight: math.unit("1433.0", "lbs"),
  6011. name: "Copperajah",
  6012. image: {
  6013. source: "./media/pokemon/Copperajah.svg"
  6014. },
  6015. rename: true
  6016. },
  6017. "Gigantamax Copperajah": {
  6018. height: math.unit("906", "inches"),
  6019. weight: math.unit("648611.6747135783", "lbs"),
  6020. name: "Gigantamax Copperajah",
  6021. image: {
  6022. source: "./media/pokemon/Gigantamax Copperajah.svg"
  6023. },
  6024. rename: true
  6025. }
  6026. },
  6027. [
  6028. {
  6029. name: "Micro",
  6030. height: math.unit(11.8, "inches")
  6031. },
  6032. {
  6033. name: "Normal",
  6034. height: math.unit(118, "inches"),
  6035. default: true
  6036. },
  6037. {
  6038. name: "Macro",
  6039. height: math.unit(11800.0, "inches")
  6040. },
  6041. {
  6042. name: "Megamacro",
  6043. height: math.unit(590000.0, "inches")
  6044. },
  6045. {
  6046. name: "Gigamacro",
  6047. height: math.unit(1180000000.0, "inches")
  6048. }
  6049. ]
  6050. )
  6051. };
  6052. pokemonMakers["Corphish"] = () => {
  6053. return makeCharacter(
  6054. "Corphish",
  6055. "Pokemon",
  6056. {
  6057. "Corphish": {
  6058. height: math.unit("24", "inches"),
  6059. weight: math.unit("25.4", "lbs"),
  6060. name: "Corphish",
  6061. image: {
  6062. source: "./media/pokemon/Corphish.svg"
  6063. },
  6064. rename: true
  6065. }
  6066. },
  6067. [
  6068. {
  6069. name: "Micro",
  6070. height: math.unit(2.4, "inches")
  6071. },
  6072. {
  6073. name: "Normal",
  6074. height: math.unit(24, "inches"),
  6075. default: true
  6076. },
  6077. {
  6078. name: "Macro",
  6079. height: math.unit(2400.0, "inches")
  6080. },
  6081. {
  6082. name: "Megamacro",
  6083. height: math.unit(120000.0, "inches")
  6084. },
  6085. {
  6086. name: "Gigamacro",
  6087. height: math.unit(240000000.0, "inches")
  6088. }
  6089. ]
  6090. )
  6091. };
  6092. pokemonMakers["Corsola"] = () => {
  6093. return makeCharacter(
  6094. "Corsola",
  6095. "Pokemon",
  6096. {
  6097. "Galarian Form": {
  6098. height: math.unit("24", "inches"),
  6099. weight: math.unit("1.1", "lbs"),
  6100. name: "Galarian Form",
  6101. image: {
  6102. source: "./media/pokemon/Corsola - Galarian Form.svg"
  6103. },
  6104. rename: true
  6105. },
  6106. "Corsola": {
  6107. height: math.unit("24", "inches"),
  6108. weight: math.unit("11.0", "lbs"),
  6109. name: "Corsola",
  6110. image: {
  6111. source: "./media/pokemon/Corsola.svg"
  6112. },
  6113. rename: true
  6114. }
  6115. },
  6116. [
  6117. {
  6118. name: "Micro",
  6119. height: math.unit(2.4, "inches")
  6120. },
  6121. {
  6122. name: "Normal",
  6123. height: math.unit(24, "inches"),
  6124. default: true
  6125. },
  6126. {
  6127. name: "Macro",
  6128. height: math.unit(2400.0, "inches")
  6129. },
  6130. {
  6131. name: "Megamacro",
  6132. height: math.unit(120000.0, "inches")
  6133. },
  6134. {
  6135. name: "Gigamacro",
  6136. height: math.unit(240000000.0, "inches")
  6137. }
  6138. ]
  6139. )
  6140. };
  6141. pokemonMakers["Corviknight"] = () => {
  6142. return makeCharacter(
  6143. "Corviknight",
  6144. "Pokemon",
  6145. {
  6146. "Corviknight": {
  6147. height: math.unit("87", "inches"),
  6148. weight: math.unit("165.3", "lbs"),
  6149. name: "Corviknight",
  6150. image: {
  6151. source: "./media/pokemon/Corviknight.svg"
  6152. },
  6153. rename: true
  6154. },
  6155. "Gigantamax Corviknight": {
  6156. height: math.unit("551", "inches"),
  6157. weight: math.unit("41992.32222222222", "lbs"),
  6158. name: "Gigantamax Corviknight",
  6159. image: {
  6160. source: "./media/pokemon/Gigantamax Corviknight.svg"
  6161. },
  6162. rename: true
  6163. }
  6164. },
  6165. [
  6166. {
  6167. name: "Micro",
  6168. height: math.unit(8.7, "inches")
  6169. },
  6170. {
  6171. name: "Normal",
  6172. height: math.unit(87, "inches"),
  6173. default: true
  6174. },
  6175. {
  6176. name: "Macro",
  6177. height: math.unit(8700.0, "inches")
  6178. },
  6179. {
  6180. name: "Megamacro",
  6181. height: math.unit(435000.0, "inches")
  6182. },
  6183. {
  6184. name: "Gigamacro",
  6185. height: math.unit(870000000.0, "inches")
  6186. }
  6187. ]
  6188. )
  6189. };
  6190. pokemonMakers["Corvisquire"] = () => {
  6191. return makeCharacter(
  6192. "Corvisquire",
  6193. "Pokemon",
  6194. {
  6195. "Corvisquire": {
  6196. height: math.unit("31", "inches"),
  6197. weight: math.unit("35.3", "lbs"),
  6198. name: "Corvisquire",
  6199. image: {
  6200. source: "./media/pokemon/Corvisquire.svg"
  6201. },
  6202. rename: true
  6203. }
  6204. },
  6205. [
  6206. {
  6207. name: "Micro",
  6208. height: math.unit(3.1, "inches")
  6209. },
  6210. {
  6211. name: "Normal",
  6212. height: math.unit(31, "inches"),
  6213. default: true
  6214. },
  6215. {
  6216. name: "Macro",
  6217. height: math.unit(3100.0, "inches")
  6218. },
  6219. {
  6220. name: "Megamacro",
  6221. height: math.unit(155000.0, "inches")
  6222. },
  6223. {
  6224. name: "Gigamacro",
  6225. height: math.unit(310000000.0, "inches")
  6226. }
  6227. ]
  6228. )
  6229. };
  6230. pokemonMakers["Cosmoem"] = () => {
  6231. return makeCharacter(
  6232. "Cosmoem",
  6233. "Pokemon",
  6234. {
  6235. "Cosmoem": {
  6236. height: math.unit("4", "inches"),
  6237. weight: math.unit("2204.4", "lbs"),
  6238. name: "Cosmoem",
  6239. image: {
  6240. source: "./media/pokemon/Cosmoem.svg"
  6241. },
  6242. rename: true
  6243. }
  6244. },
  6245. [
  6246. {
  6247. name: "Micro",
  6248. height: math.unit(0.4, "inches")
  6249. },
  6250. {
  6251. name: "Normal",
  6252. height: math.unit(4, "inches"),
  6253. default: true
  6254. },
  6255. {
  6256. name: "Macro",
  6257. height: math.unit(400.0, "inches")
  6258. },
  6259. {
  6260. name: "Megamacro",
  6261. height: math.unit(20000.0, "inches")
  6262. },
  6263. {
  6264. name: "Gigamacro",
  6265. height: math.unit(40000000.0, "inches")
  6266. }
  6267. ]
  6268. )
  6269. };
  6270. pokemonMakers["Cosmog"] = () => {
  6271. return makeCharacter(
  6272. "Cosmog",
  6273. "Pokemon",
  6274. {
  6275. "Cosmog": {
  6276. height: math.unit("8", "inches"),
  6277. weight: math.unit("0.2", "lbs"),
  6278. name: "Cosmog",
  6279. image: {
  6280. source: "./media/pokemon/Cosmog.svg"
  6281. },
  6282. rename: true
  6283. }
  6284. },
  6285. [
  6286. {
  6287. name: "Micro",
  6288. height: math.unit(0.8, "inches")
  6289. },
  6290. {
  6291. name: "Normal",
  6292. height: math.unit(8, "inches"),
  6293. default: true
  6294. },
  6295. {
  6296. name: "Macro",
  6297. height: math.unit(800.0, "inches")
  6298. },
  6299. {
  6300. name: "Megamacro",
  6301. height: math.unit(40000.0, "inches")
  6302. },
  6303. {
  6304. name: "Gigamacro",
  6305. height: math.unit(80000000.0, "inches")
  6306. }
  6307. ]
  6308. )
  6309. };
  6310. pokemonMakers["Cottonee"] = () => {
  6311. return makeCharacter(
  6312. "Cottonee",
  6313. "Pokemon",
  6314. {
  6315. "Cottonee": {
  6316. height: math.unit("12", "inches"),
  6317. weight: math.unit("1.3", "lbs"),
  6318. name: "Cottonee",
  6319. image: {
  6320. source: "./media/pokemon/Cottonee.svg"
  6321. },
  6322. rename: true
  6323. }
  6324. },
  6325. [
  6326. {
  6327. name: "Micro",
  6328. height: math.unit(1.2, "inches")
  6329. },
  6330. {
  6331. name: "Normal",
  6332. height: math.unit(12, "inches"),
  6333. default: true
  6334. },
  6335. {
  6336. name: "Macro",
  6337. height: math.unit(1200.0, "inches")
  6338. },
  6339. {
  6340. name: "Megamacro",
  6341. height: math.unit(60000.0, "inches")
  6342. },
  6343. {
  6344. name: "Gigamacro",
  6345. height: math.unit(120000000.0, "inches")
  6346. }
  6347. ]
  6348. )
  6349. };
  6350. pokemonMakers["Crabominable"] = () => {
  6351. return makeCharacter(
  6352. "Crabominable",
  6353. "Pokemon",
  6354. {
  6355. "Crabominable": {
  6356. height: math.unit("67", "inches"),
  6357. weight: math.unit("396.8", "lbs"),
  6358. name: "Crabominable",
  6359. image: {
  6360. source: "./media/pokemon/Crabominable.svg"
  6361. },
  6362. rename: true
  6363. }
  6364. },
  6365. [
  6366. {
  6367. name: "Micro",
  6368. height: math.unit(6.7, "inches")
  6369. },
  6370. {
  6371. name: "Normal",
  6372. height: math.unit(67, "inches"),
  6373. default: true
  6374. },
  6375. {
  6376. name: "Macro",
  6377. height: math.unit(6700.0, "inches")
  6378. },
  6379. {
  6380. name: "Megamacro",
  6381. height: math.unit(335000.0, "inches")
  6382. },
  6383. {
  6384. name: "Gigamacro",
  6385. height: math.unit(670000000.0, "inches")
  6386. }
  6387. ]
  6388. )
  6389. };
  6390. pokemonMakers["Crabrawler"] = () => {
  6391. return makeCharacter(
  6392. "Crabrawler",
  6393. "Pokemon",
  6394. {
  6395. "Crabrawler": {
  6396. height: math.unit("24", "inches"),
  6397. weight: math.unit("15.4", "lbs"),
  6398. name: "Crabrawler",
  6399. image: {
  6400. source: "./media/pokemon/Crabrawler.svg"
  6401. },
  6402. rename: true
  6403. }
  6404. },
  6405. [
  6406. {
  6407. name: "Micro",
  6408. height: math.unit(2.4, "inches")
  6409. },
  6410. {
  6411. name: "Normal",
  6412. height: math.unit(24, "inches"),
  6413. default: true
  6414. },
  6415. {
  6416. name: "Macro",
  6417. height: math.unit(2400.0, "inches")
  6418. },
  6419. {
  6420. name: "Megamacro",
  6421. height: math.unit(120000.0, "inches")
  6422. },
  6423. {
  6424. name: "Gigamacro",
  6425. height: math.unit(240000000.0, "inches")
  6426. }
  6427. ]
  6428. )
  6429. };
  6430. pokemonMakers["Cradily"] = () => {
  6431. return makeCharacter(
  6432. "Cradily",
  6433. "Pokemon",
  6434. {
  6435. "Cradily": {
  6436. height: math.unit("59", "inches"),
  6437. weight: math.unit("133.2", "lbs"),
  6438. name: "Cradily",
  6439. image: {
  6440. source: "./media/pokemon/Cradily.svg"
  6441. },
  6442. rename: true
  6443. }
  6444. },
  6445. [
  6446. {
  6447. name: "Micro",
  6448. height: math.unit(5.9, "inches")
  6449. },
  6450. {
  6451. name: "Normal",
  6452. height: math.unit(59, "inches"),
  6453. default: true
  6454. },
  6455. {
  6456. name: "Macro",
  6457. height: math.unit(5900.0, "inches")
  6458. },
  6459. {
  6460. name: "Megamacro",
  6461. height: math.unit(295000.0, "inches")
  6462. },
  6463. {
  6464. name: "Gigamacro",
  6465. height: math.unit(590000000.0, "inches")
  6466. }
  6467. ]
  6468. )
  6469. };
  6470. pokemonMakers["Cramorant"] = () => {
  6471. return makeCharacter(
  6472. "Cramorant",
  6473. "Pokemon",
  6474. {
  6475. "Cramorant": {
  6476. height: math.unit("31", "inches"),
  6477. weight: math.unit("39.7", "lbs"),
  6478. name: "Cramorant",
  6479. image: {
  6480. source: "./media/pokemon/Cramorant.svg"
  6481. },
  6482. rename: true
  6483. }
  6484. },
  6485. [
  6486. {
  6487. name: "Micro",
  6488. height: math.unit(3.1, "inches")
  6489. },
  6490. {
  6491. name: "Normal",
  6492. height: math.unit(31, "inches"),
  6493. default: true
  6494. },
  6495. {
  6496. name: "Macro",
  6497. height: math.unit(3100.0, "inches")
  6498. },
  6499. {
  6500. name: "Megamacro",
  6501. height: math.unit(155000.0, "inches")
  6502. },
  6503. {
  6504. name: "Gigamacro",
  6505. height: math.unit(310000000.0, "inches")
  6506. }
  6507. ]
  6508. )
  6509. };
  6510. pokemonMakers["Cranidos"] = () => {
  6511. return makeCharacter(
  6512. "Cranidos",
  6513. "Pokemon",
  6514. {
  6515. "Cranidos": {
  6516. height: math.unit("35", "inches"),
  6517. weight: math.unit("69.4", "lbs"),
  6518. name: "Cranidos",
  6519. image: {
  6520. source: "./media/pokemon/Cranidos.svg"
  6521. },
  6522. rename: true
  6523. }
  6524. },
  6525. [
  6526. {
  6527. name: "Micro",
  6528. height: math.unit(3.5, "inches")
  6529. },
  6530. {
  6531. name: "Normal",
  6532. height: math.unit(35, "inches"),
  6533. default: true
  6534. },
  6535. {
  6536. name: "Macro",
  6537. height: math.unit(3500.0, "inches")
  6538. },
  6539. {
  6540. name: "Megamacro",
  6541. height: math.unit(175000.0, "inches")
  6542. },
  6543. {
  6544. name: "Gigamacro",
  6545. height: math.unit(350000000.0, "inches")
  6546. }
  6547. ]
  6548. )
  6549. };
  6550. pokemonMakers["Crawdaunt"] = () => {
  6551. return makeCharacter(
  6552. "Crawdaunt",
  6553. "Pokemon",
  6554. {
  6555. "Crawdaunt": {
  6556. height: math.unit("43", "inches"),
  6557. weight: math.unit("72.3", "lbs"),
  6558. name: "Crawdaunt",
  6559. image: {
  6560. source: "./media/pokemon/Crawdaunt.svg"
  6561. },
  6562. rename: true
  6563. }
  6564. },
  6565. [
  6566. {
  6567. name: "Micro",
  6568. height: math.unit(4.3, "inches")
  6569. },
  6570. {
  6571. name: "Normal",
  6572. height: math.unit(43, "inches"),
  6573. default: true
  6574. },
  6575. {
  6576. name: "Macro",
  6577. height: math.unit(4300.0, "inches")
  6578. },
  6579. {
  6580. name: "Megamacro",
  6581. height: math.unit(215000.0, "inches")
  6582. },
  6583. {
  6584. name: "Gigamacro",
  6585. height: math.unit(430000000.0, "inches")
  6586. }
  6587. ]
  6588. )
  6589. };
  6590. pokemonMakers["Cresselia"] = () => {
  6591. return makeCharacter(
  6592. "Cresselia",
  6593. "Pokemon",
  6594. {
  6595. "Cresselia": {
  6596. height: math.unit("59", "inches"),
  6597. weight: math.unit("188.7", "lbs"),
  6598. name: "Cresselia",
  6599. image: {
  6600. source: "./media/pokemon/Cresselia.svg"
  6601. },
  6602. rename: true
  6603. }
  6604. },
  6605. [
  6606. {
  6607. name: "Micro",
  6608. height: math.unit(5.9, "inches")
  6609. },
  6610. {
  6611. name: "Normal",
  6612. height: math.unit(59, "inches"),
  6613. default: true
  6614. },
  6615. {
  6616. name: "Macro",
  6617. height: math.unit(5900.0, "inches")
  6618. },
  6619. {
  6620. name: "Megamacro",
  6621. height: math.unit(295000.0, "inches")
  6622. },
  6623. {
  6624. name: "Gigamacro",
  6625. height: math.unit(590000000.0, "inches")
  6626. }
  6627. ]
  6628. )
  6629. };
  6630. pokemonMakers["Croagunk"] = () => {
  6631. return makeCharacter(
  6632. "Croagunk",
  6633. "Pokemon",
  6634. {
  6635. "Croagunk": {
  6636. height: math.unit("28", "inches"),
  6637. weight: math.unit("50.7", "lbs"),
  6638. name: "Croagunk",
  6639. image: {
  6640. source: "./media/pokemon/Croagunk.svg"
  6641. },
  6642. rename: true
  6643. }
  6644. },
  6645. [
  6646. {
  6647. name: "Micro",
  6648. height: math.unit(2.8, "inches")
  6649. },
  6650. {
  6651. name: "Normal",
  6652. height: math.unit(28, "inches"),
  6653. default: true
  6654. },
  6655. {
  6656. name: "Macro",
  6657. height: math.unit(2800.0, "inches")
  6658. },
  6659. {
  6660. name: "Megamacro",
  6661. height: math.unit(140000.0, "inches")
  6662. },
  6663. {
  6664. name: "Gigamacro",
  6665. height: math.unit(280000000.0, "inches")
  6666. }
  6667. ]
  6668. )
  6669. };
  6670. pokemonMakers["Crobat"] = () => {
  6671. return makeCharacter(
  6672. "Crobat",
  6673. "Pokemon",
  6674. {
  6675. "Crobat": {
  6676. height: math.unit("71", "inches"),
  6677. weight: math.unit("165.3", "lbs"),
  6678. name: "Crobat",
  6679. image: {
  6680. source: "./media/pokemon/Crobat.svg"
  6681. },
  6682. rename: true
  6683. }
  6684. },
  6685. [
  6686. {
  6687. name: "Micro",
  6688. height: math.unit(7.1, "inches")
  6689. },
  6690. {
  6691. name: "Normal",
  6692. height: math.unit(71, "inches"),
  6693. default: true
  6694. },
  6695. {
  6696. name: "Macro",
  6697. height: math.unit(7100.0, "inches")
  6698. },
  6699. {
  6700. name: "Megamacro",
  6701. height: math.unit(355000.0, "inches")
  6702. },
  6703. {
  6704. name: "Gigamacro",
  6705. height: math.unit(710000000.0, "inches")
  6706. }
  6707. ]
  6708. )
  6709. };
  6710. pokemonMakers["Croconaw"] = () => {
  6711. return makeCharacter(
  6712. "Croconaw",
  6713. "Pokemon",
  6714. {
  6715. "Croconaw": {
  6716. height: math.unit("43", "inches"),
  6717. weight: math.unit("55.1", "lbs"),
  6718. name: "Croconaw",
  6719. image: {
  6720. source: "./media/pokemon/Croconaw.svg"
  6721. },
  6722. rename: true
  6723. }
  6724. },
  6725. [
  6726. {
  6727. name: "Micro",
  6728. height: math.unit(4.3, "inches")
  6729. },
  6730. {
  6731. name: "Normal",
  6732. height: math.unit(43, "inches"),
  6733. default: true
  6734. },
  6735. {
  6736. name: "Macro",
  6737. height: math.unit(4300.0, "inches")
  6738. },
  6739. {
  6740. name: "Megamacro",
  6741. height: math.unit(215000.0, "inches")
  6742. },
  6743. {
  6744. name: "Gigamacro",
  6745. height: math.unit(430000000.0, "inches")
  6746. }
  6747. ]
  6748. )
  6749. };
  6750. pokemonMakers["Crustle"] = () => {
  6751. return makeCharacter(
  6752. "Crustle",
  6753. "Pokemon",
  6754. {
  6755. "Crustle": {
  6756. height: math.unit("55", "inches"),
  6757. weight: math.unit("440.9", "lbs"),
  6758. name: "Crustle",
  6759. image: {
  6760. source: "./media/pokemon/Crustle.svg"
  6761. },
  6762. rename: true
  6763. }
  6764. },
  6765. [
  6766. {
  6767. name: "Micro",
  6768. height: math.unit(5.5, "inches")
  6769. },
  6770. {
  6771. name: "Normal",
  6772. height: math.unit(55, "inches"),
  6773. default: true
  6774. },
  6775. {
  6776. name: "Macro",
  6777. height: math.unit(5500.0, "inches")
  6778. },
  6779. {
  6780. name: "Megamacro",
  6781. height: math.unit(275000.0, "inches")
  6782. },
  6783. {
  6784. name: "Gigamacro",
  6785. height: math.unit(550000000.0, "inches")
  6786. }
  6787. ]
  6788. )
  6789. };
  6790. pokemonMakers["Cryogonal"] = () => {
  6791. return makeCharacter(
  6792. "Cryogonal",
  6793. "Pokemon",
  6794. {
  6795. "Cryogonal": {
  6796. height: math.unit("43", "inches"),
  6797. weight: math.unit("326.3", "lbs"),
  6798. name: "Cryogonal",
  6799. image: {
  6800. source: "./media/pokemon/Cryogonal.svg"
  6801. },
  6802. rename: true
  6803. }
  6804. },
  6805. [
  6806. {
  6807. name: "Micro",
  6808. height: math.unit(4.3, "inches")
  6809. },
  6810. {
  6811. name: "Normal",
  6812. height: math.unit(43, "inches"),
  6813. default: true
  6814. },
  6815. {
  6816. name: "Macro",
  6817. height: math.unit(4300.0, "inches")
  6818. },
  6819. {
  6820. name: "Megamacro",
  6821. height: math.unit(215000.0, "inches")
  6822. },
  6823. {
  6824. name: "Gigamacro",
  6825. height: math.unit(430000000.0, "inches")
  6826. }
  6827. ]
  6828. )
  6829. };
  6830. pokemonMakers["Cubchoo"] = () => {
  6831. return makeCharacter(
  6832. "Cubchoo",
  6833. "Pokemon",
  6834. {
  6835. "Cubchoo": {
  6836. height: math.unit("20", "inches"),
  6837. weight: math.unit("18.7", "lbs"),
  6838. name: "Cubchoo",
  6839. image: {
  6840. source: "./media/pokemon/Cubchoo.svg"
  6841. },
  6842. rename: true
  6843. }
  6844. },
  6845. [
  6846. {
  6847. name: "Micro",
  6848. height: math.unit(2.0, "inches")
  6849. },
  6850. {
  6851. name: "Normal",
  6852. height: math.unit(20, "inches"),
  6853. default: true
  6854. },
  6855. {
  6856. name: "Macro",
  6857. height: math.unit(2000.0, "inches")
  6858. },
  6859. {
  6860. name: "Megamacro",
  6861. height: math.unit(100000.0, "inches")
  6862. },
  6863. {
  6864. name: "Gigamacro",
  6865. height: math.unit(200000000.0, "inches")
  6866. }
  6867. ]
  6868. )
  6869. };
  6870. pokemonMakers["Cubone"] = () => {
  6871. return makeCharacter(
  6872. "Cubone",
  6873. "Pokemon",
  6874. {
  6875. "Cubone": {
  6876. height: math.unit("16", "inches"),
  6877. weight: math.unit("14.3", "lbs"),
  6878. name: "Cubone",
  6879. image: {
  6880. source: "./media/pokemon/Cubone.svg"
  6881. },
  6882. rename: true
  6883. }
  6884. },
  6885. [
  6886. {
  6887. name: "Micro",
  6888. height: math.unit(1.6, "inches")
  6889. },
  6890. {
  6891. name: "Normal",
  6892. height: math.unit(16, "inches"),
  6893. default: true
  6894. },
  6895. {
  6896. name: "Macro",
  6897. height: math.unit(1600.0, "inches")
  6898. },
  6899. {
  6900. name: "Megamacro",
  6901. height: math.unit(80000.0, "inches")
  6902. },
  6903. {
  6904. name: "Gigamacro",
  6905. height: math.unit(160000000.0, "inches")
  6906. }
  6907. ]
  6908. )
  6909. };
  6910. pokemonMakers["Cufant"] = () => {
  6911. return makeCharacter(
  6912. "Cufant",
  6913. "Pokemon",
  6914. {
  6915. "Cufant": {
  6916. height: math.unit("47", "inches"),
  6917. weight: math.unit("220.5", "lbs"),
  6918. name: "Cufant",
  6919. image: {
  6920. source: "./media/pokemon/Cufant.svg"
  6921. },
  6922. rename: true
  6923. }
  6924. },
  6925. [
  6926. {
  6927. name: "Micro",
  6928. height: math.unit(4.7, "inches")
  6929. },
  6930. {
  6931. name: "Normal",
  6932. height: math.unit(47, "inches"),
  6933. default: true
  6934. },
  6935. {
  6936. name: "Macro",
  6937. height: math.unit(4700.0, "inches")
  6938. },
  6939. {
  6940. name: "Megamacro",
  6941. height: math.unit(235000.0, "inches")
  6942. },
  6943. {
  6944. name: "Gigamacro",
  6945. height: math.unit(470000000.0, "inches")
  6946. }
  6947. ]
  6948. )
  6949. };
  6950. pokemonMakers["Cursola"] = () => {
  6951. return makeCharacter(
  6952. "Cursola",
  6953. "Pokemon",
  6954. {
  6955. "Cursola": {
  6956. height: math.unit("39", "inches"),
  6957. weight: math.unit("0.9", "lbs"),
  6958. name: "Cursola",
  6959. image: {
  6960. source: "./media/pokemon/Cursola.svg"
  6961. },
  6962. rename: true
  6963. }
  6964. },
  6965. [
  6966. {
  6967. name: "Micro",
  6968. height: math.unit(3.9, "inches")
  6969. },
  6970. {
  6971. name: "Normal",
  6972. height: math.unit(39, "inches"),
  6973. default: true
  6974. },
  6975. {
  6976. name: "Macro",
  6977. height: math.unit(3900.0, "inches")
  6978. },
  6979. {
  6980. name: "Megamacro",
  6981. height: math.unit(195000.0, "inches")
  6982. },
  6983. {
  6984. name: "Gigamacro",
  6985. height: math.unit(390000000.0, "inches")
  6986. }
  6987. ]
  6988. )
  6989. };
  6990. pokemonMakers["Cutiefly"] = () => {
  6991. return makeCharacter(
  6992. "Cutiefly",
  6993. "Pokemon",
  6994. {
  6995. "Cutiefly": {
  6996. height: math.unit("4", "inches"),
  6997. weight: math.unit("0.4", "lbs"),
  6998. name: "Cutiefly",
  6999. image: {
  7000. source: "./media/pokemon/Cutiefly.svg"
  7001. },
  7002. rename: true
  7003. }
  7004. },
  7005. [
  7006. {
  7007. name: "Micro",
  7008. height: math.unit(0.4, "inches")
  7009. },
  7010. {
  7011. name: "Normal",
  7012. height: math.unit(4, "inches"),
  7013. default: true
  7014. },
  7015. {
  7016. name: "Macro",
  7017. height: math.unit(400.0, "inches")
  7018. },
  7019. {
  7020. name: "Megamacro",
  7021. height: math.unit(20000.0, "inches")
  7022. },
  7023. {
  7024. name: "Gigamacro",
  7025. height: math.unit(40000000.0, "inches")
  7026. }
  7027. ]
  7028. )
  7029. };
  7030. pokemonMakers["Cyndaquil"] = () => {
  7031. return makeCharacter(
  7032. "Cyndaquil",
  7033. "Pokemon",
  7034. {
  7035. "Cyndaquil": {
  7036. height: math.unit("20", "inches"),
  7037. weight: math.unit("17.4", "lbs"),
  7038. name: "Cyndaquil",
  7039. image: {
  7040. source: "./media/pokemon/Cyndaquil.svg"
  7041. },
  7042. rename: true
  7043. }
  7044. },
  7045. [
  7046. {
  7047. name: "Micro",
  7048. height: math.unit(2.0, "inches")
  7049. },
  7050. {
  7051. name: "Normal",
  7052. height: math.unit(20, "inches"),
  7053. default: true
  7054. },
  7055. {
  7056. name: "Macro",
  7057. height: math.unit(2000.0, "inches")
  7058. },
  7059. {
  7060. name: "Megamacro",
  7061. height: math.unit(100000.0, "inches")
  7062. },
  7063. {
  7064. name: "Gigamacro",
  7065. height: math.unit(200000000.0, "inches")
  7066. }
  7067. ]
  7068. )
  7069. };
  7070. pokemonMakers["Darkrai"] = () => {
  7071. return makeCharacter(
  7072. "Darkrai",
  7073. "Pokemon",
  7074. {
  7075. "Darkrai": {
  7076. height: math.unit("59", "inches"),
  7077. weight: math.unit("111.3", "lbs"),
  7078. name: "Darkrai",
  7079. image: {
  7080. source: "./media/pokemon/Darkrai.svg"
  7081. },
  7082. rename: true
  7083. }
  7084. },
  7085. [
  7086. {
  7087. name: "Micro",
  7088. height: math.unit(5.9, "inches")
  7089. },
  7090. {
  7091. name: "Normal",
  7092. height: math.unit(59, "inches"),
  7093. default: true
  7094. },
  7095. {
  7096. name: "Macro",
  7097. height: math.unit(5900.0, "inches")
  7098. },
  7099. {
  7100. name: "Megamacro",
  7101. height: math.unit(295000.0, "inches")
  7102. },
  7103. {
  7104. name: "Gigamacro",
  7105. height: math.unit(590000000.0, "inches")
  7106. }
  7107. ]
  7108. )
  7109. };
  7110. pokemonMakers["Darmanitan"] = () => {
  7111. return makeCharacter(
  7112. "Darmanitan",
  7113. "Pokemon",
  7114. {
  7115. "Galarian Form": {
  7116. height: math.unit("67", "inches"),
  7117. weight: math.unit("264.6", "lbs"),
  7118. name: "Galarian Form",
  7119. image: {
  7120. source: "./media/pokemon/Darmanitan - Galarian Form.svg"
  7121. },
  7122. rename: true
  7123. },
  7124. "Standard Mode": {
  7125. height: math.unit("51", "inches"),
  7126. weight: math.unit("204.8", "lbs"),
  7127. name: "Standard Mode",
  7128. image: {
  7129. source: "./media/pokemon/Darmanitan - Standard Mode.svg"
  7130. },
  7131. rename: true
  7132. },
  7133. "Zen Mode": {
  7134. height: math.unit("51", "inches"),
  7135. weight: math.unit("204.8", "lbs"),
  7136. name: "Zen Mode",
  7137. image: {
  7138. source: "./media/pokemon/Darmanitan - Zen Mode.svg"
  7139. },
  7140. rename: true
  7141. }
  7142. },
  7143. [
  7144. {
  7145. name: "Micro",
  7146. height: math.unit(6.7, "inches")
  7147. },
  7148. {
  7149. name: "Normal",
  7150. height: math.unit(67, "inches"),
  7151. default: true
  7152. },
  7153. {
  7154. name: "Macro",
  7155. height: math.unit(6700.0, "inches")
  7156. },
  7157. {
  7158. name: "Megamacro",
  7159. height: math.unit(335000.0, "inches")
  7160. },
  7161. {
  7162. name: "Gigamacro",
  7163. height: math.unit(670000000.0, "inches")
  7164. }
  7165. ]
  7166. )
  7167. };
  7168. pokemonMakers["Dartrix"] = () => {
  7169. return makeCharacter(
  7170. "Dartrix",
  7171. "Pokemon",
  7172. {
  7173. "Dartrix": {
  7174. height: math.unit("28", "inches"),
  7175. weight: math.unit("35.3", "lbs"),
  7176. name: "Dartrix",
  7177. image: {
  7178. source: "./media/pokemon/Dartrix.svg"
  7179. },
  7180. rename: true
  7181. }
  7182. },
  7183. [
  7184. {
  7185. name: "Micro",
  7186. height: math.unit(2.8, "inches")
  7187. },
  7188. {
  7189. name: "Normal",
  7190. height: math.unit(28, "inches"),
  7191. default: true
  7192. },
  7193. {
  7194. name: "Macro",
  7195. height: math.unit(2800.0, "inches")
  7196. },
  7197. {
  7198. name: "Megamacro",
  7199. height: math.unit(140000.0, "inches")
  7200. },
  7201. {
  7202. name: "Gigamacro",
  7203. height: math.unit(280000000.0, "inches")
  7204. }
  7205. ]
  7206. )
  7207. };
  7208. pokemonMakers["Darumaka"] = () => {
  7209. return makeCharacter(
  7210. "Darumaka",
  7211. "Pokemon",
  7212. {
  7213. "Galarian Form": {
  7214. height: math.unit("28", "inches"),
  7215. weight: math.unit("88.2", "lbs"),
  7216. name: "Galarian Form",
  7217. image: {
  7218. source: "./media/pokemon/Darumaka - Galarian Form.svg"
  7219. },
  7220. rename: true
  7221. },
  7222. "Darumaka": {
  7223. height: math.unit("24", "inches"),
  7224. weight: math.unit("82.7", "lbs"),
  7225. name: "Darumaka",
  7226. image: {
  7227. source: "./media/pokemon/Darumaka.svg"
  7228. },
  7229. rename: true
  7230. }
  7231. },
  7232. [
  7233. {
  7234. name: "Micro",
  7235. height: math.unit(2.8, "inches")
  7236. },
  7237. {
  7238. name: "Normal",
  7239. height: math.unit(28, "inches"),
  7240. default: true
  7241. },
  7242. {
  7243. name: "Macro",
  7244. height: math.unit(2800.0, "inches")
  7245. },
  7246. {
  7247. name: "Megamacro",
  7248. height: math.unit(140000.0, "inches")
  7249. },
  7250. {
  7251. name: "Gigamacro",
  7252. height: math.unit(280000000.0, "inches")
  7253. }
  7254. ]
  7255. )
  7256. };
  7257. pokemonMakers["Decidueye"] = () => {
  7258. return makeCharacter(
  7259. "Decidueye",
  7260. "Pokemon",
  7261. {
  7262. "Decidueye": {
  7263. height: math.unit("63", "inches"),
  7264. weight: math.unit("80.7", "lbs"),
  7265. name: "Decidueye",
  7266. image: {
  7267. source: "./media/pokemon/Decidueye.svg"
  7268. },
  7269. rename: true
  7270. }
  7271. },
  7272. [
  7273. {
  7274. name: "Micro",
  7275. height: math.unit(6.3, "inches")
  7276. },
  7277. {
  7278. name: "Normal",
  7279. height: math.unit(63, "inches"),
  7280. default: true
  7281. },
  7282. {
  7283. name: "Macro",
  7284. height: math.unit(6300.0, "inches")
  7285. },
  7286. {
  7287. name: "Megamacro",
  7288. height: math.unit(315000.0, "inches")
  7289. },
  7290. {
  7291. name: "Gigamacro",
  7292. height: math.unit(630000000.0, "inches")
  7293. }
  7294. ]
  7295. )
  7296. };
  7297. pokemonMakers["Dedenne"] = () => {
  7298. return makeCharacter(
  7299. "Dedenne",
  7300. "Pokemon",
  7301. {
  7302. "Dedenne": {
  7303. height: math.unit("8", "inches"),
  7304. weight: math.unit("4.9", "lbs"),
  7305. name: "Dedenne",
  7306. image: {
  7307. source: "./media/pokemon/Dedenne.svg"
  7308. },
  7309. rename: true
  7310. }
  7311. },
  7312. [
  7313. {
  7314. name: "Micro",
  7315. height: math.unit(0.8, "inches")
  7316. },
  7317. {
  7318. name: "Normal",
  7319. height: math.unit(8, "inches"),
  7320. default: true
  7321. },
  7322. {
  7323. name: "Macro",
  7324. height: math.unit(800.0, "inches")
  7325. },
  7326. {
  7327. name: "Megamacro",
  7328. height: math.unit(40000.0, "inches")
  7329. },
  7330. {
  7331. name: "Gigamacro",
  7332. height: math.unit(80000000.0, "inches")
  7333. }
  7334. ]
  7335. )
  7336. };
  7337. pokemonMakers["Deerling"] = () => {
  7338. return makeCharacter(
  7339. "Deerling",
  7340. "Pokemon",
  7341. {
  7342. "Autumn Form": {
  7343. height: math.unit("24", "inches"),
  7344. weight: math.unit("43.0", "lbs"),
  7345. name: "Autumn Form",
  7346. image: {
  7347. source: "./media/pokemon/Deerling - Autumn Form.svg"
  7348. },
  7349. rename: true
  7350. },
  7351. "Spring Form": {
  7352. height: math.unit("24", "inches"),
  7353. weight: math.unit("43.0", "lbs"),
  7354. name: "Spring Form",
  7355. image: {
  7356. source: "./media/pokemon/Deerling - Spring Form.svg"
  7357. },
  7358. rename: true
  7359. },
  7360. "Summer Form": {
  7361. height: math.unit("24", "inches"),
  7362. weight: math.unit("43.0", "lbs"),
  7363. name: "Summer Form",
  7364. image: {
  7365. source: "./media/pokemon/Deerling - Summer Form.svg"
  7366. },
  7367. rename: true
  7368. },
  7369. "Winter Form": {
  7370. height: math.unit("24", "inches"),
  7371. weight: math.unit("43.0", "lbs"),
  7372. name: "Winter Form",
  7373. image: {
  7374. source: "./media/pokemon/Deerling - Winter Form.svg"
  7375. },
  7376. rename: true
  7377. }
  7378. },
  7379. [
  7380. {
  7381. name: "Micro",
  7382. height: math.unit(2.4, "inches")
  7383. },
  7384. {
  7385. name: "Normal",
  7386. height: math.unit(24, "inches"),
  7387. default: true
  7388. },
  7389. {
  7390. name: "Macro",
  7391. height: math.unit(2400.0, "inches")
  7392. },
  7393. {
  7394. name: "Megamacro",
  7395. height: math.unit(120000.0, "inches")
  7396. },
  7397. {
  7398. name: "Gigamacro",
  7399. height: math.unit(240000000.0, "inches")
  7400. }
  7401. ]
  7402. )
  7403. };
  7404. pokemonMakers["Deino"] = () => {
  7405. return makeCharacter(
  7406. "Deino",
  7407. "Pokemon",
  7408. {
  7409. "Deino": {
  7410. height: math.unit("31", "inches"),
  7411. weight: math.unit("38.1", "lbs"),
  7412. name: "Deino",
  7413. image: {
  7414. source: "./media/pokemon/Deino.svg"
  7415. },
  7416. rename: true
  7417. }
  7418. },
  7419. [
  7420. {
  7421. name: "Micro",
  7422. height: math.unit(3.1, "inches")
  7423. },
  7424. {
  7425. name: "Normal",
  7426. height: math.unit(31, "inches"),
  7427. default: true
  7428. },
  7429. {
  7430. name: "Macro",
  7431. height: math.unit(3100.0, "inches")
  7432. },
  7433. {
  7434. name: "Megamacro",
  7435. height: math.unit(155000.0, "inches")
  7436. },
  7437. {
  7438. name: "Gigamacro",
  7439. height: math.unit(310000000.0, "inches")
  7440. }
  7441. ]
  7442. )
  7443. };
  7444. pokemonMakers["Delcatty"] = () => {
  7445. return makeCharacter(
  7446. "Delcatty",
  7447. "Pokemon",
  7448. {
  7449. "Delcatty": {
  7450. height: math.unit("43", "inches"),
  7451. weight: math.unit("71.9", "lbs"),
  7452. name: "Delcatty",
  7453. image: {
  7454. source: "./media/pokemon/Delcatty.svg"
  7455. },
  7456. rename: true
  7457. }
  7458. },
  7459. [
  7460. {
  7461. name: "Micro",
  7462. height: math.unit(4.3, "inches")
  7463. },
  7464. {
  7465. name: "Normal",
  7466. height: math.unit(43, "inches"),
  7467. default: true
  7468. },
  7469. {
  7470. name: "Macro",
  7471. height: math.unit(4300.0, "inches")
  7472. },
  7473. {
  7474. name: "Megamacro",
  7475. height: math.unit(215000.0, "inches")
  7476. },
  7477. {
  7478. name: "Gigamacro",
  7479. height: math.unit(430000000.0, "inches")
  7480. }
  7481. ]
  7482. )
  7483. };
  7484. pokemonMakers["Delibird"] = () => {
  7485. return makeCharacter(
  7486. "Delibird",
  7487. "Pokemon",
  7488. {
  7489. "Delibird": {
  7490. height: math.unit("35", "inches"),
  7491. weight: math.unit("35.3", "lbs"),
  7492. name: "Delibird",
  7493. image: {
  7494. source: "./media/pokemon/Delibird.svg"
  7495. },
  7496. rename: true
  7497. }
  7498. },
  7499. [
  7500. {
  7501. name: "Micro",
  7502. height: math.unit(3.5, "inches")
  7503. },
  7504. {
  7505. name: "Normal",
  7506. height: math.unit(35, "inches"),
  7507. default: true
  7508. },
  7509. {
  7510. name: "Macro",
  7511. height: math.unit(3500.0, "inches")
  7512. },
  7513. {
  7514. name: "Megamacro",
  7515. height: math.unit(175000.0, "inches")
  7516. },
  7517. {
  7518. name: "Gigamacro",
  7519. height: math.unit(350000000.0, "inches")
  7520. }
  7521. ]
  7522. )
  7523. };
  7524. pokemonMakers["Delphox"] = () => {
  7525. return makeCharacter(
  7526. "Delphox",
  7527. "Pokemon",
  7528. {
  7529. "Delphox": {
  7530. height: math.unit("59", "inches"),
  7531. weight: math.unit("86.0", "lbs"),
  7532. name: "Delphox",
  7533. image: {
  7534. source: "./media/pokemon/Delphox.svg"
  7535. },
  7536. rename: true
  7537. }
  7538. },
  7539. [
  7540. {
  7541. name: "Micro",
  7542. height: math.unit(5.9, "inches")
  7543. },
  7544. {
  7545. name: "Normal",
  7546. height: math.unit(59, "inches"),
  7547. default: true
  7548. },
  7549. {
  7550. name: "Macro",
  7551. height: math.unit(5900.0, "inches")
  7552. },
  7553. {
  7554. name: "Megamacro",
  7555. height: math.unit(295000.0, "inches")
  7556. },
  7557. {
  7558. name: "Gigamacro",
  7559. height: math.unit(590000000.0, "inches")
  7560. }
  7561. ]
  7562. )
  7563. };
  7564. pokemonMakers["Deoxys"] = () => {
  7565. return makeCharacter(
  7566. "Deoxys",
  7567. "Pokemon",
  7568. {
  7569. "Attack Forme": {
  7570. height: math.unit("67", "inches"),
  7571. weight: math.unit("134.0", "lbs"),
  7572. name: "Attack Forme",
  7573. image: {
  7574. source: "./media/pokemon/Deoxys - Attack Forme.svg"
  7575. },
  7576. rename: true
  7577. },
  7578. "Defense Forme": {
  7579. height: math.unit("67", "inches"),
  7580. weight: math.unit("134.0", "lbs"),
  7581. name: "Defense Forme",
  7582. image: {
  7583. source: "./media/pokemon/Deoxys - Defense Forme.svg"
  7584. },
  7585. rename: true
  7586. },
  7587. "Speed Forme": {
  7588. height: math.unit("67", "inches"),
  7589. weight: math.unit("134.0", "lbs"),
  7590. name: "Speed Forme",
  7591. image: {
  7592. source: "./media/pokemon/Deoxys - Speed Forme.svg"
  7593. },
  7594. rename: true
  7595. },
  7596. "Deoxys": {
  7597. height: math.unit("67", "inches"),
  7598. weight: math.unit("134.0", "lbs"),
  7599. name: "Deoxys",
  7600. image: {
  7601. source: "./media/pokemon/Deoxys.svg"
  7602. },
  7603. rename: true
  7604. }
  7605. },
  7606. [
  7607. {
  7608. name: "Micro",
  7609. height: math.unit(6.7, "inches")
  7610. },
  7611. {
  7612. name: "Normal",
  7613. height: math.unit(67, "inches"),
  7614. default: true
  7615. },
  7616. {
  7617. name: "Macro",
  7618. height: math.unit(6700.0, "inches")
  7619. },
  7620. {
  7621. name: "Megamacro",
  7622. height: math.unit(335000.0, "inches")
  7623. },
  7624. {
  7625. name: "Gigamacro",
  7626. height: math.unit(670000000.0, "inches")
  7627. }
  7628. ]
  7629. )
  7630. };
  7631. pokemonMakers["Dewgong"] = () => {
  7632. return makeCharacter(
  7633. "Dewgong",
  7634. "Pokemon",
  7635. {
  7636. "Dewgong": {
  7637. height: math.unit("67", "inches"),
  7638. weight: math.unit("264.6", "lbs"),
  7639. name: "Dewgong",
  7640. image: {
  7641. source: "./media/pokemon/Dewgong.svg"
  7642. },
  7643. rename: true
  7644. }
  7645. },
  7646. [
  7647. {
  7648. name: "Micro",
  7649. height: math.unit(6.7, "inches")
  7650. },
  7651. {
  7652. name: "Normal",
  7653. height: math.unit(67, "inches"),
  7654. default: true
  7655. },
  7656. {
  7657. name: "Macro",
  7658. height: math.unit(6700.0, "inches")
  7659. },
  7660. {
  7661. name: "Megamacro",
  7662. height: math.unit(335000.0, "inches")
  7663. },
  7664. {
  7665. name: "Gigamacro",
  7666. height: math.unit(670000000.0, "inches")
  7667. }
  7668. ]
  7669. )
  7670. };
  7671. pokemonMakers["Dewott"] = () => {
  7672. return makeCharacter(
  7673. "Dewott",
  7674. "Pokemon",
  7675. {
  7676. "Dewott": {
  7677. height: math.unit("31", "inches"),
  7678. weight: math.unit("54.0", "lbs"),
  7679. name: "Dewott",
  7680. image: {
  7681. source: "./media/pokemon/Dewott.svg"
  7682. },
  7683. rename: true
  7684. }
  7685. },
  7686. [
  7687. {
  7688. name: "Micro",
  7689. height: math.unit(3.1, "inches")
  7690. },
  7691. {
  7692. name: "Normal",
  7693. height: math.unit(31, "inches"),
  7694. default: true
  7695. },
  7696. {
  7697. name: "Macro",
  7698. height: math.unit(3100.0, "inches")
  7699. },
  7700. {
  7701. name: "Megamacro",
  7702. height: math.unit(155000.0, "inches")
  7703. },
  7704. {
  7705. name: "Gigamacro",
  7706. height: math.unit(310000000.0, "inches")
  7707. }
  7708. ]
  7709. )
  7710. };
  7711. pokemonMakers["Dewpider"] = () => {
  7712. return makeCharacter(
  7713. "Dewpider",
  7714. "Pokemon",
  7715. {
  7716. "Dewpider": {
  7717. height: math.unit("12", "inches"),
  7718. weight: math.unit("8.8", "lbs"),
  7719. name: "Dewpider",
  7720. image: {
  7721. source: "./media/pokemon/Dewpider.svg"
  7722. },
  7723. rename: true
  7724. }
  7725. },
  7726. [
  7727. {
  7728. name: "Micro",
  7729. height: math.unit(1.2, "inches")
  7730. },
  7731. {
  7732. name: "Normal",
  7733. height: math.unit(12, "inches"),
  7734. default: true
  7735. },
  7736. {
  7737. name: "Macro",
  7738. height: math.unit(1200.0, "inches")
  7739. },
  7740. {
  7741. name: "Megamacro",
  7742. height: math.unit(60000.0, "inches")
  7743. },
  7744. {
  7745. name: "Gigamacro",
  7746. height: math.unit(120000000.0, "inches")
  7747. }
  7748. ]
  7749. )
  7750. };
  7751. pokemonMakers["Dhelmise"] = () => {
  7752. return makeCharacter(
  7753. "Dhelmise",
  7754. "Pokemon",
  7755. {
  7756. "Dhelmise": {
  7757. height: math.unit("154", "inches"),
  7758. weight: math.unit("463.0", "lbs"),
  7759. name: "Dhelmise",
  7760. image: {
  7761. source: "./media/pokemon/Dhelmise.svg"
  7762. },
  7763. rename: true
  7764. }
  7765. },
  7766. [
  7767. {
  7768. name: "Micro",
  7769. height: math.unit(15.4, "inches")
  7770. },
  7771. {
  7772. name: "Normal",
  7773. height: math.unit(154, "inches"),
  7774. default: true
  7775. },
  7776. {
  7777. name: "Macro",
  7778. height: math.unit(15400.0, "inches")
  7779. },
  7780. {
  7781. name: "Megamacro",
  7782. height: math.unit(770000.0, "inches")
  7783. },
  7784. {
  7785. name: "Gigamacro",
  7786. height: math.unit(1540000000.0, "inches")
  7787. }
  7788. ]
  7789. )
  7790. };
  7791. pokemonMakers["Dialga"] = () => {
  7792. return makeCharacter(
  7793. "Dialga",
  7794. "Pokemon",
  7795. {
  7796. "Dialga": {
  7797. height: math.unit("213", "inches"),
  7798. weight: math.unit("1505.8", "lbs"),
  7799. name: "Dialga",
  7800. image: {
  7801. source: "./media/pokemon/Dialga.svg"
  7802. },
  7803. rename: true
  7804. }
  7805. },
  7806. [
  7807. {
  7808. name: "Micro",
  7809. height: math.unit(21.3, "inches")
  7810. },
  7811. {
  7812. name: "Normal",
  7813. height: math.unit(213, "inches"),
  7814. default: true
  7815. },
  7816. {
  7817. name: "Macro",
  7818. height: math.unit(21300.0, "inches")
  7819. },
  7820. {
  7821. name: "Megamacro",
  7822. height: math.unit(1065000.0, "inches")
  7823. },
  7824. {
  7825. name: "Gigamacro",
  7826. height: math.unit(2130000000.0, "inches")
  7827. }
  7828. ]
  7829. )
  7830. };
  7831. pokemonMakers["Diancie"] = () => {
  7832. return makeCharacter(
  7833. "Diancie",
  7834. "Pokemon",
  7835. {
  7836. "Diancie": {
  7837. height: math.unit("28", "inches"),
  7838. weight: math.unit("19.4", "lbs"),
  7839. name: "Diancie",
  7840. image: {
  7841. source: "./media/pokemon/Diancie.svg"
  7842. },
  7843. rename: true
  7844. },
  7845. "Mega Diancie": {
  7846. height: math.unit("43", "inches"),
  7847. weight: math.unit("61.3", "lbs"),
  7848. name: "Mega Diancie",
  7849. image: {
  7850. source: "./media/pokemon/Mega Diancie.svg"
  7851. },
  7852. rename: true
  7853. }
  7854. },
  7855. [
  7856. {
  7857. name: "Micro",
  7858. height: math.unit(2.8, "inches")
  7859. },
  7860. {
  7861. name: "Normal",
  7862. height: math.unit(28, "inches"),
  7863. default: true
  7864. },
  7865. {
  7866. name: "Macro",
  7867. height: math.unit(2800.0, "inches")
  7868. },
  7869. {
  7870. name: "Megamacro",
  7871. height: math.unit(140000.0, "inches")
  7872. },
  7873. {
  7874. name: "Gigamacro",
  7875. height: math.unit(280000000.0, "inches")
  7876. }
  7877. ]
  7878. )
  7879. };
  7880. pokemonMakers["Diggersby"] = () => {
  7881. return makeCharacter(
  7882. "Diggersby",
  7883. "Pokemon",
  7884. {
  7885. "Diggersby": {
  7886. height: math.unit("39", "inches"),
  7887. weight: math.unit("93.5", "lbs"),
  7888. name: "Diggersby",
  7889. image: {
  7890. source: "./media/pokemon/Diggersby.svg"
  7891. },
  7892. rename: true
  7893. }
  7894. },
  7895. [
  7896. {
  7897. name: "Micro",
  7898. height: math.unit(3.9, "inches")
  7899. },
  7900. {
  7901. name: "Normal",
  7902. height: math.unit(39, "inches"),
  7903. default: true
  7904. },
  7905. {
  7906. name: "Macro",
  7907. height: math.unit(3900.0, "inches")
  7908. },
  7909. {
  7910. name: "Megamacro",
  7911. height: math.unit(195000.0, "inches")
  7912. },
  7913. {
  7914. name: "Gigamacro",
  7915. height: math.unit(390000000.0, "inches")
  7916. }
  7917. ]
  7918. )
  7919. };
  7920. pokemonMakers["Diglett"] = () => {
  7921. return makeCharacter(
  7922. "Diglett",
  7923. "Pokemon",
  7924. {
  7925. "Alola Form": {
  7926. height: math.unit("8", "inches"),
  7927. weight: math.unit("2.2", "lbs"),
  7928. name: "Alola Form",
  7929. image: {
  7930. source: "./media/pokemon/Diglett - Alola Form.svg"
  7931. },
  7932. rename: true
  7933. },
  7934. "Diglett": {
  7935. height: math.unit("8", "inches"),
  7936. weight: math.unit("1.8", "lbs"),
  7937. name: "Diglett",
  7938. image: {
  7939. source: "./media/pokemon/Diglett.svg"
  7940. },
  7941. rename: true
  7942. }
  7943. },
  7944. [
  7945. {
  7946. name: "Micro",
  7947. height: math.unit(0.8, "inches")
  7948. },
  7949. {
  7950. name: "Normal",
  7951. height: math.unit(8, "inches"),
  7952. default: true
  7953. },
  7954. {
  7955. name: "Macro",
  7956. height: math.unit(800.0, "inches")
  7957. },
  7958. {
  7959. name: "Megamacro",
  7960. height: math.unit(40000.0, "inches")
  7961. },
  7962. {
  7963. name: "Gigamacro",
  7964. height: math.unit(80000000.0, "inches")
  7965. }
  7966. ]
  7967. )
  7968. };
  7969. pokemonMakers["Ditto"] = () => {
  7970. return makeCharacter(
  7971. "Ditto",
  7972. "Pokemon",
  7973. {
  7974. "Ditto": {
  7975. height: math.unit("12", "inches"),
  7976. weight: math.unit("8.8", "lbs"),
  7977. name: "Ditto",
  7978. image: {
  7979. source: "./media/pokemon/Ditto.svg"
  7980. },
  7981. rename: true
  7982. }
  7983. },
  7984. [
  7985. {
  7986. name: "Micro",
  7987. height: math.unit(1.2, "inches")
  7988. },
  7989. {
  7990. name: "Normal",
  7991. height: math.unit(12, "inches"),
  7992. default: true
  7993. },
  7994. {
  7995. name: "Macro",
  7996. height: math.unit(1200.0, "inches")
  7997. },
  7998. {
  7999. name: "Megamacro",
  8000. height: math.unit(60000.0, "inches")
  8001. },
  8002. {
  8003. name: "Gigamacro",
  8004. height: math.unit(120000000.0, "inches")
  8005. }
  8006. ]
  8007. )
  8008. };
  8009. pokemonMakers["Dodrio"] = () => {
  8010. return makeCharacter(
  8011. "Dodrio",
  8012. "Pokemon",
  8013. {
  8014. "Dodrio": {
  8015. height: math.unit("71", "inches"),
  8016. weight: math.unit("187.8", "lbs"),
  8017. name: "Dodrio",
  8018. image: {
  8019. source: "./media/pokemon/Dodrio.svg"
  8020. },
  8021. rename: true
  8022. }
  8023. },
  8024. [
  8025. {
  8026. name: "Micro",
  8027. height: math.unit(7.1, "inches")
  8028. },
  8029. {
  8030. name: "Normal",
  8031. height: math.unit(71, "inches"),
  8032. default: true
  8033. },
  8034. {
  8035. name: "Macro",
  8036. height: math.unit(7100.0, "inches")
  8037. },
  8038. {
  8039. name: "Megamacro",
  8040. height: math.unit(355000.0, "inches")
  8041. },
  8042. {
  8043. name: "Gigamacro",
  8044. height: math.unit(710000000.0, "inches")
  8045. }
  8046. ]
  8047. )
  8048. };
  8049. pokemonMakers["Doduo"] = () => {
  8050. return makeCharacter(
  8051. "Doduo",
  8052. "Pokemon",
  8053. {
  8054. "Doduo": {
  8055. height: math.unit("55", "inches"),
  8056. weight: math.unit("86.4", "lbs"),
  8057. name: "Doduo",
  8058. image: {
  8059. source: "./media/pokemon/Doduo.svg"
  8060. },
  8061. rename: true
  8062. }
  8063. },
  8064. [
  8065. {
  8066. name: "Micro",
  8067. height: math.unit(5.5, "inches")
  8068. },
  8069. {
  8070. name: "Normal",
  8071. height: math.unit(55, "inches"),
  8072. default: true
  8073. },
  8074. {
  8075. name: "Macro",
  8076. height: math.unit(5500.0, "inches")
  8077. },
  8078. {
  8079. name: "Megamacro",
  8080. height: math.unit(275000.0, "inches")
  8081. },
  8082. {
  8083. name: "Gigamacro",
  8084. height: math.unit(550000000.0, "inches")
  8085. }
  8086. ]
  8087. )
  8088. };
  8089. pokemonMakers["Donphan"] = () => {
  8090. return makeCharacter(
  8091. "Donphan",
  8092. "Pokemon",
  8093. {
  8094. "Donphan": {
  8095. height: math.unit("43", "inches"),
  8096. weight: math.unit("264.6", "lbs"),
  8097. name: "Donphan",
  8098. image: {
  8099. source: "./media/pokemon/Donphan.svg"
  8100. },
  8101. rename: true
  8102. }
  8103. },
  8104. [
  8105. {
  8106. name: "Micro",
  8107. height: math.unit(4.3, "inches")
  8108. },
  8109. {
  8110. name: "Normal",
  8111. height: math.unit(43, "inches"),
  8112. default: true
  8113. },
  8114. {
  8115. name: "Macro",
  8116. height: math.unit(4300.0, "inches")
  8117. },
  8118. {
  8119. name: "Megamacro",
  8120. height: math.unit(215000.0, "inches")
  8121. },
  8122. {
  8123. name: "Gigamacro",
  8124. height: math.unit(430000000.0, "inches")
  8125. }
  8126. ]
  8127. )
  8128. };
  8129. pokemonMakers["Dottler"] = () => {
  8130. return makeCharacter(
  8131. "Dottler",
  8132. "Pokemon",
  8133. {
  8134. "Dottler": {
  8135. height: math.unit("16", "inches"),
  8136. weight: math.unit("43.0", "lbs"),
  8137. name: "Dottler",
  8138. image: {
  8139. source: "./media/pokemon/Dottler.svg"
  8140. },
  8141. rename: true
  8142. }
  8143. },
  8144. [
  8145. {
  8146. name: "Micro",
  8147. height: math.unit(1.6, "inches")
  8148. },
  8149. {
  8150. name: "Normal",
  8151. height: math.unit(16, "inches"),
  8152. default: true
  8153. },
  8154. {
  8155. name: "Macro",
  8156. height: math.unit(1600.0, "inches")
  8157. },
  8158. {
  8159. name: "Megamacro",
  8160. height: math.unit(80000.0, "inches")
  8161. },
  8162. {
  8163. name: "Gigamacro",
  8164. height: math.unit(160000000.0, "inches")
  8165. }
  8166. ]
  8167. )
  8168. };
  8169. pokemonMakers["Doublade"] = () => {
  8170. return makeCharacter(
  8171. "Doublade",
  8172. "Pokemon",
  8173. {
  8174. "Doublade": {
  8175. height: math.unit("31", "inches"),
  8176. weight: math.unit("9.9", "lbs"),
  8177. name: "Doublade",
  8178. image: {
  8179. source: "./media/pokemon/Doublade.svg"
  8180. },
  8181. rename: true
  8182. }
  8183. },
  8184. [
  8185. {
  8186. name: "Micro",
  8187. height: math.unit(3.1, "inches")
  8188. },
  8189. {
  8190. name: "Normal",
  8191. height: math.unit(31, "inches"),
  8192. default: true
  8193. },
  8194. {
  8195. name: "Macro",
  8196. height: math.unit(3100.0, "inches")
  8197. },
  8198. {
  8199. name: "Megamacro",
  8200. height: math.unit(155000.0, "inches")
  8201. },
  8202. {
  8203. name: "Gigamacro",
  8204. height: math.unit(310000000.0, "inches")
  8205. }
  8206. ]
  8207. )
  8208. };
  8209. pokemonMakers["Dracovish"] = () => {
  8210. return makeCharacter(
  8211. "Dracovish",
  8212. "Pokemon",
  8213. {
  8214. "Dracovish": {
  8215. height: math.unit("91", "inches"),
  8216. weight: math.unit("474.0", "lbs"),
  8217. name: "Dracovish",
  8218. image: {
  8219. source: "./media/pokemon/Dracovish.svg"
  8220. },
  8221. rename: true
  8222. }
  8223. },
  8224. [
  8225. {
  8226. name: "Micro",
  8227. height: math.unit(9.1, "inches")
  8228. },
  8229. {
  8230. name: "Normal",
  8231. height: math.unit(91, "inches"),
  8232. default: true
  8233. },
  8234. {
  8235. name: "Macro",
  8236. height: math.unit(9100.0, "inches")
  8237. },
  8238. {
  8239. name: "Megamacro",
  8240. height: math.unit(455000.0, "inches")
  8241. },
  8242. {
  8243. name: "Gigamacro",
  8244. height: math.unit(910000000.0, "inches")
  8245. }
  8246. ]
  8247. )
  8248. };
  8249. pokemonMakers["Dracozolt"] = () => {
  8250. return makeCharacter(
  8251. "Dracozolt",
  8252. "Pokemon",
  8253. {
  8254. "Dracozolt": {
  8255. height: math.unit("71", "inches"),
  8256. weight: math.unit("418.9", "lbs"),
  8257. name: "Dracozolt",
  8258. image: {
  8259. source: "./media/pokemon/Dracozolt.svg"
  8260. },
  8261. rename: true
  8262. }
  8263. },
  8264. [
  8265. {
  8266. name: "Micro",
  8267. height: math.unit(7.1, "inches")
  8268. },
  8269. {
  8270. name: "Normal",
  8271. height: math.unit(71, "inches"),
  8272. default: true
  8273. },
  8274. {
  8275. name: "Macro",
  8276. height: math.unit(7100.0, "inches")
  8277. },
  8278. {
  8279. name: "Megamacro",
  8280. height: math.unit(355000.0, "inches")
  8281. },
  8282. {
  8283. name: "Gigamacro",
  8284. height: math.unit(710000000.0, "inches")
  8285. }
  8286. ]
  8287. )
  8288. };
  8289. pokemonMakers["Dragalge"] = () => {
  8290. return makeCharacter(
  8291. "Dragalge",
  8292. "Pokemon",
  8293. {
  8294. "Dragalge": {
  8295. height: math.unit("71", "inches"),
  8296. weight: math.unit("179.7", "lbs"),
  8297. name: "Dragalge",
  8298. image: {
  8299. source: "./media/pokemon/Dragalge.svg"
  8300. },
  8301. rename: true
  8302. }
  8303. },
  8304. [
  8305. {
  8306. name: "Micro",
  8307. height: math.unit(7.1, "inches")
  8308. },
  8309. {
  8310. name: "Normal",
  8311. height: math.unit(71, "inches"),
  8312. default: true
  8313. },
  8314. {
  8315. name: "Macro",
  8316. height: math.unit(7100.0, "inches")
  8317. },
  8318. {
  8319. name: "Megamacro",
  8320. height: math.unit(355000.0, "inches")
  8321. },
  8322. {
  8323. name: "Gigamacro",
  8324. height: math.unit(710000000.0, "inches")
  8325. }
  8326. ]
  8327. )
  8328. };
  8329. pokemonMakers["Dragapult"] = () => {
  8330. return makeCharacter(
  8331. "Dragapult",
  8332. "Pokemon",
  8333. {
  8334. "Dragapult": {
  8335. height: math.unit("118", "inches"),
  8336. weight: math.unit("110.2", "lbs"),
  8337. name: "Dragapult",
  8338. image: {
  8339. source: "./media/pokemon/Dragapult.svg"
  8340. },
  8341. rename: true
  8342. }
  8343. },
  8344. [
  8345. {
  8346. name: "Micro",
  8347. height: math.unit(11.8, "inches")
  8348. },
  8349. {
  8350. name: "Normal",
  8351. height: math.unit(118, "inches"),
  8352. default: true
  8353. },
  8354. {
  8355. name: "Macro",
  8356. height: math.unit(11800.0, "inches")
  8357. },
  8358. {
  8359. name: "Megamacro",
  8360. height: math.unit(590000.0, "inches")
  8361. },
  8362. {
  8363. name: "Gigamacro",
  8364. height: math.unit(1180000000.0, "inches")
  8365. }
  8366. ]
  8367. )
  8368. };
  8369. pokemonMakers["Dragonair"] = () => {
  8370. return makeCharacter(
  8371. "Dragonair",
  8372. "Pokemon",
  8373. {
  8374. "Dragonair": {
  8375. height: math.unit("157", "inches"),
  8376. weight: math.unit("36.4", "lbs"),
  8377. name: "Dragonair",
  8378. image: {
  8379. source: "./media/pokemon/Dragonair.svg"
  8380. },
  8381. rename: true
  8382. }
  8383. },
  8384. [
  8385. {
  8386. name: "Micro",
  8387. height: math.unit(15.7, "inches")
  8388. },
  8389. {
  8390. name: "Normal",
  8391. height: math.unit(157, "inches"),
  8392. default: true
  8393. },
  8394. {
  8395. name: "Macro",
  8396. height: math.unit(15700.0, "inches")
  8397. },
  8398. {
  8399. name: "Megamacro",
  8400. height: math.unit(785000.0, "inches")
  8401. },
  8402. {
  8403. name: "Gigamacro",
  8404. height: math.unit(1570000000.0, "inches")
  8405. }
  8406. ]
  8407. )
  8408. };
  8409. pokemonMakers["Dragonite"] = () => {
  8410. return makeCharacter(
  8411. "Dragonite",
  8412. "Pokemon",
  8413. {
  8414. "Dragonite": {
  8415. height: math.unit("87", "inches"),
  8416. weight: math.unit("463.0", "lbs"),
  8417. name: "Dragonite",
  8418. image: {
  8419. source: "./media/pokemon/Dragonite.svg"
  8420. },
  8421. rename: true
  8422. }
  8423. },
  8424. [
  8425. {
  8426. name: "Micro",
  8427. height: math.unit(8.7, "inches")
  8428. },
  8429. {
  8430. name: "Normal",
  8431. height: math.unit(87, "inches"),
  8432. default: true
  8433. },
  8434. {
  8435. name: "Macro",
  8436. height: math.unit(8700.0, "inches")
  8437. },
  8438. {
  8439. name: "Megamacro",
  8440. height: math.unit(435000.0, "inches")
  8441. },
  8442. {
  8443. name: "Gigamacro",
  8444. height: math.unit(870000000.0, "inches")
  8445. }
  8446. ]
  8447. )
  8448. };
  8449. pokemonMakers["Drakloak"] = () => {
  8450. return makeCharacter(
  8451. "Drakloak",
  8452. "Pokemon",
  8453. {
  8454. "Drakloak": {
  8455. height: math.unit("55", "inches"),
  8456. weight: math.unit("24.3", "lbs"),
  8457. name: "Drakloak",
  8458. image: {
  8459. source: "./media/pokemon/Drakloak.svg"
  8460. },
  8461. rename: true
  8462. }
  8463. },
  8464. [
  8465. {
  8466. name: "Micro",
  8467. height: math.unit(5.5, "inches")
  8468. },
  8469. {
  8470. name: "Normal",
  8471. height: math.unit(55, "inches"),
  8472. default: true
  8473. },
  8474. {
  8475. name: "Macro",
  8476. height: math.unit(5500.0, "inches")
  8477. },
  8478. {
  8479. name: "Megamacro",
  8480. height: math.unit(275000.0, "inches")
  8481. },
  8482. {
  8483. name: "Gigamacro",
  8484. height: math.unit(550000000.0, "inches")
  8485. }
  8486. ]
  8487. )
  8488. };
  8489. pokemonMakers["Drampa"] = () => {
  8490. return makeCharacter(
  8491. "Drampa",
  8492. "Pokemon",
  8493. {
  8494. "Drampa": {
  8495. height: math.unit("118", "inches"),
  8496. weight: math.unit("407.9", "lbs"),
  8497. name: "Drampa",
  8498. image: {
  8499. source: "./media/pokemon/Drampa.svg"
  8500. },
  8501. rename: true
  8502. }
  8503. },
  8504. [
  8505. {
  8506. name: "Micro",
  8507. height: math.unit(11.8, "inches")
  8508. },
  8509. {
  8510. name: "Normal",
  8511. height: math.unit(118, "inches"),
  8512. default: true
  8513. },
  8514. {
  8515. name: "Macro",
  8516. height: math.unit(11800.0, "inches")
  8517. },
  8518. {
  8519. name: "Megamacro",
  8520. height: math.unit(590000.0, "inches")
  8521. },
  8522. {
  8523. name: "Gigamacro",
  8524. height: math.unit(1180000000.0, "inches")
  8525. }
  8526. ]
  8527. )
  8528. };
  8529. pokemonMakers["Drapion"] = () => {
  8530. return makeCharacter(
  8531. "Drapion",
  8532. "Pokemon",
  8533. {
  8534. "Drapion": {
  8535. height: math.unit("51", "inches"),
  8536. weight: math.unit("135.6", "lbs"),
  8537. name: "Drapion",
  8538. image: {
  8539. source: "./media/pokemon/Drapion.svg"
  8540. },
  8541. rename: true
  8542. }
  8543. },
  8544. [
  8545. {
  8546. name: "Micro",
  8547. height: math.unit(5.1, "inches")
  8548. },
  8549. {
  8550. name: "Normal",
  8551. height: math.unit(51, "inches"),
  8552. default: true
  8553. },
  8554. {
  8555. name: "Macro",
  8556. height: math.unit(5100.0, "inches")
  8557. },
  8558. {
  8559. name: "Megamacro",
  8560. height: math.unit(255000.0, "inches")
  8561. },
  8562. {
  8563. name: "Gigamacro",
  8564. height: math.unit(510000000.0, "inches")
  8565. }
  8566. ]
  8567. )
  8568. };
  8569. pokemonMakers["Dratini"] = () => {
  8570. return makeCharacter(
  8571. "Dratini",
  8572. "Pokemon",
  8573. {
  8574. "Dratini": {
  8575. height: math.unit("71", "inches"),
  8576. weight: math.unit("7.3", "lbs"),
  8577. name: "Dratini",
  8578. image: {
  8579. source: "./media/pokemon/Dratini.svg"
  8580. },
  8581. rename: true
  8582. }
  8583. },
  8584. [
  8585. {
  8586. name: "Micro",
  8587. height: math.unit(7.1, "inches")
  8588. },
  8589. {
  8590. name: "Normal",
  8591. height: math.unit(71, "inches"),
  8592. default: true
  8593. },
  8594. {
  8595. name: "Macro",
  8596. height: math.unit(7100.0, "inches")
  8597. },
  8598. {
  8599. name: "Megamacro",
  8600. height: math.unit(355000.0, "inches")
  8601. },
  8602. {
  8603. name: "Gigamacro",
  8604. height: math.unit(710000000.0, "inches")
  8605. }
  8606. ]
  8607. )
  8608. };
  8609. pokemonMakers["Drednaw"] = () => {
  8610. return makeCharacter(
  8611. "Drednaw",
  8612. "Pokemon",
  8613. {
  8614. "Drednaw": {
  8615. height: math.unit("39", "inches"),
  8616. weight: math.unit("254.6", "lbs"),
  8617. name: "Drednaw",
  8618. image: {
  8619. source: "./media/pokemon/Drednaw.svg"
  8620. },
  8621. rename: true
  8622. },
  8623. "Gigantamax Drednaw": {
  8624. height: math.unit("945", "inches"),
  8625. weight: math.unit("3622096.3928083745", "lbs"),
  8626. name: "Gigantamax Drednaw",
  8627. image: {
  8628. source: "./media/pokemon/Gigantamax Drednaw.svg"
  8629. },
  8630. rename: true
  8631. }
  8632. },
  8633. [
  8634. {
  8635. name: "Micro",
  8636. height: math.unit(3.9, "inches")
  8637. },
  8638. {
  8639. name: "Normal",
  8640. height: math.unit(39, "inches"),
  8641. default: true
  8642. },
  8643. {
  8644. name: "Macro",
  8645. height: math.unit(3900.0, "inches")
  8646. },
  8647. {
  8648. name: "Megamacro",
  8649. height: math.unit(195000.0, "inches")
  8650. },
  8651. {
  8652. name: "Gigamacro",
  8653. height: math.unit(390000000.0, "inches")
  8654. }
  8655. ]
  8656. )
  8657. };
  8658. pokemonMakers["Dreepy"] = () => {
  8659. return makeCharacter(
  8660. "Dreepy",
  8661. "Pokemon",
  8662. {
  8663. "Dreepy": {
  8664. height: math.unit("20", "inches"),
  8665. weight: math.unit("4.4", "lbs"),
  8666. name: "Dreepy",
  8667. image: {
  8668. source: "./media/pokemon/Dreepy.svg"
  8669. },
  8670. rename: true
  8671. }
  8672. },
  8673. [
  8674. {
  8675. name: "Micro",
  8676. height: math.unit(2.0, "inches")
  8677. },
  8678. {
  8679. name: "Normal",
  8680. height: math.unit(20, "inches"),
  8681. default: true
  8682. },
  8683. {
  8684. name: "Macro",
  8685. height: math.unit(2000.0, "inches")
  8686. },
  8687. {
  8688. name: "Megamacro",
  8689. height: math.unit(100000.0, "inches")
  8690. },
  8691. {
  8692. name: "Gigamacro",
  8693. height: math.unit(200000000.0, "inches")
  8694. }
  8695. ]
  8696. )
  8697. };
  8698. pokemonMakers["Drifblim"] = () => {
  8699. return makeCharacter(
  8700. "Drifblim",
  8701. "Pokemon",
  8702. {
  8703. "Drifblim": {
  8704. height: math.unit("47", "inches"),
  8705. weight: math.unit("33.1", "lbs"),
  8706. name: "Drifblim",
  8707. image: {
  8708. source: "./media/pokemon/Drifblim.svg"
  8709. },
  8710. rename: true
  8711. }
  8712. },
  8713. [
  8714. {
  8715. name: "Micro",
  8716. height: math.unit(4.7, "inches")
  8717. },
  8718. {
  8719. name: "Normal",
  8720. height: math.unit(47, "inches"),
  8721. default: true
  8722. },
  8723. {
  8724. name: "Macro",
  8725. height: math.unit(4700.0, "inches")
  8726. },
  8727. {
  8728. name: "Megamacro",
  8729. height: math.unit(235000.0, "inches")
  8730. },
  8731. {
  8732. name: "Gigamacro",
  8733. height: math.unit(470000000.0, "inches")
  8734. }
  8735. ]
  8736. )
  8737. };
  8738. pokemonMakers["Drifloon"] = () => {
  8739. return makeCharacter(
  8740. "Drifloon",
  8741. "Pokemon",
  8742. {
  8743. "Drifloon": {
  8744. height: math.unit("16", "inches"),
  8745. weight: math.unit("2.6", "lbs"),
  8746. name: "Drifloon",
  8747. image: {
  8748. source: "./media/pokemon/Drifloon.svg"
  8749. },
  8750. rename: true
  8751. }
  8752. },
  8753. [
  8754. {
  8755. name: "Micro",
  8756. height: math.unit(1.6, "inches")
  8757. },
  8758. {
  8759. name: "Normal",
  8760. height: math.unit(16, "inches"),
  8761. default: true
  8762. },
  8763. {
  8764. name: "Macro",
  8765. height: math.unit(1600.0, "inches")
  8766. },
  8767. {
  8768. name: "Megamacro",
  8769. height: math.unit(80000.0, "inches")
  8770. },
  8771. {
  8772. name: "Gigamacro",
  8773. height: math.unit(160000000.0, "inches")
  8774. }
  8775. ]
  8776. )
  8777. };
  8778. pokemonMakers["Drilbur"] = () => {
  8779. return makeCharacter(
  8780. "Drilbur",
  8781. "Pokemon",
  8782. {
  8783. "Drilbur": {
  8784. height: math.unit("12", "inches"),
  8785. weight: math.unit("18.7", "lbs"),
  8786. name: "Drilbur",
  8787. image: {
  8788. source: "./media/pokemon/Drilbur.svg"
  8789. },
  8790. rename: true
  8791. }
  8792. },
  8793. [
  8794. {
  8795. name: "Micro",
  8796. height: math.unit(1.2, "inches")
  8797. },
  8798. {
  8799. name: "Normal",
  8800. height: math.unit(12, "inches"),
  8801. default: true
  8802. },
  8803. {
  8804. name: "Macro",
  8805. height: math.unit(1200.0, "inches")
  8806. },
  8807. {
  8808. name: "Megamacro",
  8809. height: math.unit(60000.0, "inches")
  8810. },
  8811. {
  8812. name: "Gigamacro",
  8813. height: math.unit(120000000.0, "inches")
  8814. }
  8815. ]
  8816. )
  8817. };
  8818. pokemonMakers["Drizzile"] = () => {
  8819. return makeCharacter(
  8820. "Drizzile",
  8821. "Pokemon",
  8822. {
  8823. "Drizzile": {
  8824. height: math.unit("28", "inches"),
  8825. weight: math.unit("25.4", "lbs"),
  8826. name: "Drizzile",
  8827. image: {
  8828. source: "./media/pokemon/Drizzile.svg"
  8829. },
  8830. rename: true
  8831. }
  8832. },
  8833. [
  8834. {
  8835. name: "Micro",
  8836. height: math.unit(2.8, "inches")
  8837. },
  8838. {
  8839. name: "Normal",
  8840. height: math.unit(28, "inches"),
  8841. default: true
  8842. },
  8843. {
  8844. name: "Macro",
  8845. height: math.unit(2800.0, "inches")
  8846. },
  8847. {
  8848. name: "Megamacro",
  8849. height: math.unit(140000.0, "inches")
  8850. },
  8851. {
  8852. name: "Gigamacro",
  8853. height: math.unit(280000000.0, "inches")
  8854. }
  8855. ]
  8856. )
  8857. };
  8858. pokemonMakers["Drowzee"] = () => {
  8859. return makeCharacter(
  8860. "Drowzee",
  8861. "Pokemon",
  8862. {
  8863. "Drowzee": {
  8864. height: math.unit("39", "inches"),
  8865. weight: math.unit("71.4", "lbs"),
  8866. name: "Drowzee",
  8867. image: {
  8868. source: "./media/pokemon/Drowzee.svg"
  8869. },
  8870. rename: true
  8871. }
  8872. },
  8873. [
  8874. {
  8875. name: "Micro",
  8876. height: math.unit(3.9, "inches")
  8877. },
  8878. {
  8879. name: "Normal",
  8880. height: math.unit(39, "inches"),
  8881. default: true
  8882. },
  8883. {
  8884. name: "Macro",
  8885. height: math.unit(3900.0, "inches")
  8886. },
  8887. {
  8888. name: "Megamacro",
  8889. height: math.unit(195000.0, "inches")
  8890. },
  8891. {
  8892. name: "Gigamacro",
  8893. height: math.unit(390000000.0, "inches")
  8894. }
  8895. ]
  8896. )
  8897. };
  8898. pokemonMakers["Druddigon"] = () => {
  8899. return makeCharacter(
  8900. "Druddigon",
  8901. "Pokemon",
  8902. {
  8903. "Druddigon": {
  8904. height: math.unit("63", "inches"),
  8905. weight: math.unit("306.4", "lbs"),
  8906. name: "Druddigon",
  8907. image: {
  8908. source: "./media/pokemon/Druddigon.svg"
  8909. },
  8910. rename: true
  8911. }
  8912. },
  8913. [
  8914. {
  8915. name: "Micro",
  8916. height: math.unit(6.3, "inches")
  8917. },
  8918. {
  8919. name: "Normal",
  8920. height: math.unit(63, "inches"),
  8921. default: true
  8922. },
  8923. {
  8924. name: "Macro",
  8925. height: math.unit(6300.0, "inches")
  8926. },
  8927. {
  8928. name: "Megamacro",
  8929. height: math.unit(315000.0, "inches")
  8930. },
  8931. {
  8932. name: "Gigamacro",
  8933. height: math.unit(630000000.0, "inches")
  8934. }
  8935. ]
  8936. )
  8937. };
  8938. pokemonMakers["Dubwool"] = () => {
  8939. return makeCharacter(
  8940. "Dubwool",
  8941. "Pokemon",
  8942. {
  8943. "Dubwool": {
  8944. height: math.unit("51", "inches"),
  8945. weight: math.unit("94.8", "lbs"),
  8946. name: "Dubwool",
  8947. image: {
  8948. source: "./media/pokemon/Dubwool.svg"
  8949. },
  8950. rename: true
  8951. }
  8952. },
  8953. [
  8954. {
  8955. name: "Micro",
  8956. height: math.unit(5.1, "inches")
  8957. },
  8958. {
  8959. name: "Normal",
  8960. height: math.unit(51, "inches"),
  8961. default: true
  8962. },
  8963. {
  8964. name: "Macro",
  8965. height: math.unit(5100.0, "inches")
  8966. },
  8967. {
  8968. name: "Megamacro",
  8969. height: math.unit(255000.0, "inches")
  8970. },
  8971. {
  8972. name: "Gigamacro",
  8973. height: math.unit(510000000.0, "inches")
  8974. }
  8975. ]
  8976. )
  8977. };
  8978. pokemonMakers["Ducklett"] = () => {
  8979. return makeCharacter(
  8980. "Ducklett",
  8981. "Pokemon",
  8982. {
  8983. "Ducklett": {
  8984. height: math.unit("20", "inches"),
  8985. weight: math.unit("12.1", "lbs"),
  8986. name: "Ducklett",
  8987. image: {
  8988. source: "./media/pokemon/Ducklett.svg"
  8989. },
  8990. rename: true
  8991. }
  8992. },
  8993. [
  8994. {
  8995. name: "Micro",
  8996. height: math.unit(2.0, "inches")
  8997. },
  8998. {
  8999. name: "Normal",
  9000. height: math.unit(20, "inches"),
  9001. default: true
  9002. },
  9003. {
  9004. name: "Macro",
  9005. height: math.unit(2000.0, "inches")
  9006. },
  9007. {
  9008. name: "Megamacro",
  9009. height: math.unit(100000.0, "inches")
  9010. },
  9011. {
  9012. name: "Gigamacro",
  9013. height: math.unit(200000000.0, "inches")
  9014. }
  9015. ]
  9016. )
  9017. };
  9018. pokemonMakers["Dugtrio"] = () => {
  9019. return makeCharacter(
  9020. "Dugtrio",
  9021. "Pokemon",
  9022. {
  9023. "Alola Form": {
  9024. height: math.unit("28", "inches"),
  9025. weight: math.unit("146.8", "lbs"),
  9026. name: "Alola Form",
  9027. image: {
  9028. source: "./media/pokemon/Dugtrio - Alola Form.svg"
  9029. },
  9030. rename: true
  9031. },
  9032. "Dugtrio": {
  9033. height: math.unit("28", "inches"),
  9034. weight: math.unit("73.4", "lbs"),
  9035. name: "Dugtrio",
  9036. image: {
  9037. source: "./media/pokemon/Dugtrio.svg"
  9038. },
  9039. rename: true
  9040. }
  9041. },
  9042. [
  9043. {
  9044. name: "Micro",
  9045. height: math.unit(2.8, "inches")
  9046. },
  9047. {
  9048. name: "Normal",
  9049. height: math.unit(28, "inches"),
  9050. default: true
  9051. },
  9052. {
  9053. name: "Macro",
  9054. height: math.unit(2800.0, "inches")
  9055. },
  9056. {
  9057. name: "Megamacro",
  9058. height: math.unit(140000.0, "inches")
  9059. },
  9060. {
  9061. name: "Gigamacro",
  9062. height: math.unit(280000000.0, "inches")
  9063. }
  9064. ]
  9065. )
  9066. };
  9067. pokemonMakers["Dunsparce"] = () => {
  9068. return makeCharacter(
  9069. "Dunsparce",
  9070. "Pokemon",
  9071. {
  9072. "Dunsparce": {
  9073. height: math.unit("59", "inches"),
  9074. weight: math.unit("30.9", "lbs"),
  9075. name: "Dunsparce",
  9076. image: {
  9077. source: "./media/pokemon/Dunsparce.svg"
  9078. },
  9079. rename: true
  9080. }
  9081. },
  9082. [
  9083. {
  9084. name: "Micro",
  9085. height: math.unit(5.9, "inches")
  9086. },
  9087. {
  9088. name: "Normal",
  9089. height: math.unit(59, "inches"),
  9090. default: true
  9091. },
  9092. {
  9093. name: "Macro",
  9094. height: math.unit(5900.0, "inches")
  9095. },
  9096. {
  9097. name: "Megamacro",
  9098. height: math.unit(295000.0, "inches")
  9099. },
  9100. {
  9101. name: "Gigamacro",
  9102. height: math.unit(590000000.0, "inches")
  9103. }
  9104. ]
  9105. )
  9106. };
  9107. pokemonMakers["Duosion"] = () => {
  9108. return makeCharacter(
  9109. "Duosion",
  9110. "Pokemon",
  9111. {
  9112. "Duosion": {
  9113. height: math.unit("24", "inches"),
  9114. weight: math.unit("17.6", "lbs"),
  9115. name: "Duosion",
  9116. image: {
  9117. source: "./media/pokemon/Duosion.svg"
  9118. },
  9119. rename: true
  9120. }
  9121. },
  9122. [
  9123. {
  9124. name: "Micro",
  9125. height: math.unit(2.4, "inches")
  9126. },
  9127. {
  9128. name: "Normal",
  9129. height: math.unit(24, "inches"),
  9130. default: true
  9131. },
  9132. {
  9133. name: "Macro",
  9134. height: math.unit(2400.0, "inches")
  9135. },
  9136. {
  9137. name: "Megamacro",
  9138. height: math.unit(120000.0, "inches")
  9139. },
  9140. {
  9141. name: "Gigamacro",
  9142. height: math.unit(240000000.0, "inches")
  9143. }
  9144. ]
  9145. )
  9146. };
  9147. pokemonMakers["Duraludon"] = () => {
  9148. return makeCharacter(
  9149. "Duraludon",
  9150. "Pokemon",
  9151. {
  9152. "Duraludon": {
  9153. height: math.unit("71", "inches"),
  9154. weight: math.unit("88.2", "lbs"),
  9155. name: "Duraludon",
  9156. image: {
  9157. source: "./media/pokemon/Duraludon.svg"
  9158. },
  9159. rename: true
  9160. },
  9161. "Gigantamax Duraludon": {
  9162. height: math.unit("1693", "inches"),
  9163. weight: math.unit("1195816.1468281222", "lbs"),
  9164. name: "Gigantamax Duraludon",
  9165. image: {
  9166. source: "./media/pokemon/Gigantamax Duraludon.svg"
  9167. },
  9168. rename: true
  9169. }
  9170. },
  9171. [
  9172. {
  9173. name: "Micro",
  9174. height: math.unit(7.1, "inches")
  9175. },
  9176. {
  9177. name: "Normal",
  9178. height: math.unit(71, "inches"),
  9179. default: true
  9180. },
  9181. {
  9182. name: "Macro",
  9183. height: math.unit(7100.0, "inches")
  9184. },
  9185. {
  9186. name: "Megamacro",
  9187. height: math.unit(355000.0, "inches")
  9188. },
  9189. {
  9190. name: "Gigamacro",
  9191. height: math.unit(710000000.0, "inches")
  9192. }
  9193. ]
  9194. )
  9195. };
  9196. pokemonMakers["Durant"] = () => {
  9197. return makeCharacter(
  9198. "Durant",
  9199. "Pokemon",
  9200. {
  9201. "Durant": {
  9202. height: math.unit("12", "inches"),
  9203. weight: math.unit("72.8", "lbs"),
  9204. name: "Durant",
  9205. image: {
  9206. source: "./media/pokemon/Durant.svg"
  9207. },
  9208. rename: true
  9209. }
  9210. },
  9211. [
  9212. {
  9213. name: "Micro",
  9214. height: math.unit(1.2, "inches")
  9215. },
  9216. {
  9217. name: "Normal",
  9218. height: math.unit(12, "inches"),
  9219. default: true
  9220. },
  9221. {
  9222. name: "Macro",
  9223. height: math.unit(1200.0, "inches")
  9224. },
  9225. {
  9226. name: "Megamacro",
  9227. height: math.unit(60000.0, "inches")
  9228. },
  9229. {
  9230. name: "Gigamacro",
  9231. height: math.unit(120000000.0, "inches")
  9232. }
  9233. ]
  9234. )
  9235. };
  9236. pokemonMakers["Dusclops"] = () => {
  9237. return makeCharacter(
  9238. "Dusclops",
  9239. "Pokemon",
  9240. {
  9241. "Dusclops": {
  9242. height: math.unit("63", "inches"),
  9243. weight: math.unit("67.5", "lbs"),
  9244. name: "Dusclops",
  9245. image: {
  9246. source: "./media/pokemon/Dusclops.svg"
  9247. },
  9248. rename: true
  9249. }
  9250. },
  9251. [
  9252. {
  9253. name: "Micro",
  9254. height: math.unit(6.3, "inches")
  9255. },
  9256. {
  9257. name: "Normal",
  9258. height: math.unit(63, "inches"),
  9259. default: true
  9260. },
  9261. {
  9262. name: "Macro",
  9263. height: math.unit(6300.0, "inches")
  9264. },
  9265. {
  9266. name: "Megamacro",
  9267. height: math.unit(315000.0, "inches")
  9268. },
  9269. {
  9270. name: "Gigamacro",
  9271. height: math.unit(630000000.0, "inches")
  9272. }
  9273. ]
  9274. )
  9275. };
  9276. pokemonMakers["Dusknoir"] = () => {
  9277. return makeCharacter(
  9278. "Dusknoir",
  9279. "Pokemon",
  9280. {
  9281. "Dusknoir": {
  9282. height: math.unit("87", "inches"),
  9283. weight: math.unit("235.0", "lbs"),
  9284. name: "Dusknoir",
  9285. image: {
  9286. source: "./media/pokemon/Dusknoir.svg"
  9287. },
  9288. rename: true
  9289. }
  9290. },
  9291. [
  9292. {
  9293. name: "Micro",
  9294. height: math.unit(8.7, "inches")
  9295. },
  9296. {
  9297. name: "Normal",
  9298. height: math.unit(87, "inches"),
  9299. default: true
  9300. },
  9301. {
  9302. name: "Macro",
  9303. height: math.unit(8700.0, "inches")
  9304. },
  9305. {
  9306. name: "Megamacro",
  9307. height: math.unit(435000.0, "inches")
  9308. },
  9309. {
  9310. name: "Gigamacro",
  9311. height: math.unit(870000000.0, "inches")
  9312. }
  9313. ]
  9314. )
  9315. };
  9316. pokemonMakers["Duskull"] = () => {
  9317. return makeCharacter(
  9318. "Duskull",
  9319. "Pokemon",
  9320. {
  9321. "Duskull": {
  9322. height: math.unit("31", "inches"),
  9323. weight: math.unit("33.1", "lbs"),
  9324. name: "Duskull",
  9325. image: {
  9326. source: "./media/pokemon/Duskull.svg"
  9327. },
  9328. rename: true
  9329. }
  9330. },
  9331. [
  9332. {
  9333. name: "Micro",
  9334. height: math.unit(3.1, "inches")
  9335. },
  9336. {
  9337. name: "Normal",
  9338. height: math.unit(31, "inches"),
  9339. default: true
  9340. },
  9341. {
  9342. name: "Macro",
  9343. height: math.unit(3100.0, "inches")
  9344. },
  9345. {
  9346. name: "Megamacro",
  9347. height: math.unit(155000.0, "inches")
  9348. },
  9349. {
  9350. name: "Gigamacro",
  9351. height: math.unit(310000000.0, "inches")
  9352. }
  9353. ]
  9354. )
  9355. };
  9356. pokemonMakers["Dustox"] = () => {
  9357. return makeCharacter(
  9358. "Dustox",
  9359. "Pokemon",
  9360. {
  9361. "Dustox": {
  9362. height: math.unit("47", "inches"),
  9363. weight: math.unit("69.7", "lbs"),
  9364. name: "Dustox",
  9365. image: {
  9366. source: "./media/pokemon/Dustox.svg"
  9367. },
  9368. rename: true
  9369. }
  9370. },
  9371. [
  9372. {
  9373. name: "Micro",
  9374. height: math.unit(4.7, "inches")
  9375. },
  9376. {
  9377. name: "Normal",
  9378. height: math.unit(47, "inches"),
  9379. default: true
  9380. },
  9381. {
  9382. name: "Macro",
  9383. height: math.unit(4700.0, "inches")
  9384. },
  9385. {
  9386. name: "Megamacro",
  9387. height: math.unit(235000.0, "inches")
  9388. },
  9389. {
  9390. name: "Gigamacro",
  9391. height: math.unit(470000000.0, "inches")
  9392. }
  9393. ]
  9394. )
  9395. };
  9396. pokemonMakers["Dwebble"] = () => {
  9397. return makeCharacter(
  9398. "Dwebble",
  9399. "Pokemon",
  9400. {
  9401. "Dwebble": {
  9402. height: math.unit("12", "inches"),
  9403. weight: math.unit("32.0", "lbs"),
  9404. name: "Dwebble",
  9405. image: {
  9406. source: "./media/pokemon/Dwebble.svg"
  9407. },
  9408. rename: true
  9409. }
  9410. },
  9411. [
  9412. {
  9413. name: "Micro",
  9414. height: math.unit(1.2, "inches")
  9415. },
  9416. {
  9417. name: "Normal",
  9418. height: math.unit(12, "inches"),
  9419. default: true
  9420. },
  9421. {
  9422. name: "Macro",
  9423. height: math.unit(1200.0, "inches")
  9424. },
  9425. {
  9426. name: "Megamacro",
  9427. height: math.unit(60000.0, "inches")
  9428. },
  9429. {
  9430. name: "Gigamacro",
  9431. height: math.unit(120000000.0, "inches")
  9432. }
  9433. ]
  9434. )
  9435. };
  9436. pokemonMakers["Eelektrik"] = () => {
  9437. return makeCharacter(
  9438. "Eelektrik",
  9439. "Pokemon",
  9440. {
  9441. "Eelektrik": {
  9442. height: math.unit("47", "inches"),
  9443. weight: math.unit("48.5", "lbs"),
  9444. name: "Eelektrik",
  9445. image: {
  9446. source: "./media/pokemon/Eelektrik.svg"
  9447. },
  9448. rename: true
  9449. }
  9450. },
  9451. [
  9452. {
  9453. name: "Micro",
  9454. height: math.unit(4.7, "inches")
  9455. },
  9456. {
  9457. name: "Normal",
  9458. height: math.unit(47, "inches"),
  9459. default: true
  9460. },
  9461. {
  9462. name: "Macro",
  9463. height: math.unit(4700.0, "inches")
  9464. },
  9465. {
  9466. name: "Megamacro",
  9467. height: math.unit(235000.0, "inches")
  9468. },
  9469. {
  9470. name: "Gigamacro",
  9471. height: math.unit(470000000.0, "inches")
  9472. }
  9473. ]
  9474. )
  9475. };
  9476. pokemonMakers["Eelektross"] = () => {
  9477. return makeCharacter(
  9478. "Eelektross",
  9479. "Pokemon",
  9480. {
  9481. "Eelektross": {
  9482. height: math.unit("83", "inches"),
  9483. weight: math.unit("177.5", "lbs"),
  9484. name: "Eelektross",
  9485. image: {
  9486. source: "./media/pokemon/Eelektross.svg"
  9487. },
  9488. rename: true
  9489. }
  9490. },
  9491. [
  9492. {
  9493. name: "Micro",
  9494. height: math.unit(8.3, "inches")
  9495. },
  9496. {
  9497. name: "Normal",
  9498. height: math.unit(83, "inches"),
  9499. default: true
  9500. },
  9501. {
  9502. name: "Macro",
  9503. height: math.unit(8300.0, "inches")
  9504. },
  9505. {
  9506. name: "Megamacro",
  9507. height: math.unit(415000.0, "inches")
  9508. },
  9509. {
  9510. name: "Gigamacro",
  9511. height: math.unit(830000000.0, "inches")
  9512. }
  9513. ]
  9514. )
  9515. };
  9516. pokemonMakers["Eevee"] = () => {
  9517. return makeCharacter(
  9518. "Eevee",
  9519. "Pokemon",
  9520. {
  9521. "Eevee": {
  9522. height: math.unit("12", "inches"),
  9523. weight: math.unit("14.3", "lbs"),
  9524. name: "Eevee",
  9525. image: {
  9526. source: "./media/pokemon/Eevee.svg"
  9527. },
  9528. rename: true
  9529. },
  9530. "Gigantamax Eevee": {
  9531. height: math.unit("709", "inches"),
  9532. weight: math.unit("2949381.860358797", "lbs"),
  9533. name: "Gigantamax Eevee",
  9534. image: {
  9535. source: "./media/pokemon/Gigantamax Eevee.svg"
  9536. },
  9537. rename: true
  9538. }
  9539. },
  9540. [
  9541. {
  9542. name: "Micro",
  9543. height: math.unit(1.2, "inches")
  9544. },
  9545. {
  9546. name: "Normal",
  9547. height: math.unit(12, "inches"),
  9548. default: true
  9549. },
  9550. {
  9551. name: "Macro",
  9552. height: math.unit(1200.0, "inches")
  9553. },
  9554. {
  9555. name: "Megamacro",
  9556. height: math.unit(60000.0, "inches")
  9557. },
  9558. {
  9559. name: "Gigamacro",
  9560. height: math.unit(120000000.0, "inches")
  9561. }
  9562. ]
  9563. )
  9564. };
  9565. pokemonMakers["Eiscue"] = () => {
  9566. return makeCharacter(
  9567. "Eiscue",
  9568. "Pokemon",
  9569. {
  9570. "Ice Face": {
  9571. height: math.unit("55", "inches"),
  9572. weight: math.unit("196.2", "lbs"),
  9573. name: "Ice Face",
  9574. image: {
  9575. source: "./media/pokemon/Eiscue - Ice Face.svg"
  9576. },
  9577. rename: true
  9578. }
  9579. },
  9580. [
  9581. {
  9582. name: "Micro",
  9583. height: math.unit(5.5, "inches")
  9584. },
  9585. {
  9586. name: "Normal",
  9587. height: math.unit(55, "inches"),
  9588. default: true
  9589. },
  9590. {
  9591. name: "Macro",
  9592. height: math.unit(5500.0, "inches")
  9593. },
  9594. {
  9595. name: "Megamacro",
  9596. height: math.unit(275000.0, "inches")
  9597. },
  9598. {
  9599. name: "Gigamacro",
  9600. height: math.unit(550000000.0, "inches")
  9601. }
  9602. ]
  9603. )
  9604. };
  9605. pokemonMakers["Ekans"] = () => {
  9606. return makeCharacter(
  9607. "Ekans",
  9608. "Pokemon",
  9609. {
  9610. "Ekans": {
  9611. height: math.unit("79", "inches"),
  9612. weight: math.unit("15.2", "lbs"),
  9613. name: "Ekans",
  9614. image: {
  9615. source: "./media/pokemon/Ekans.svg"
  9616. },
  9617. rename: true
  9618. }
  9619. },
  9620. [
  9621. {
  9622. name: "Micro",
  9623. height: math.unit(7.9, "inches")
  9624. },
  9625. {
  9626. name: "Normal",
  9627. height: math.unit(79, "inches"),
  9628. default: true
  9629. },
  9630. {
  9631. name: "Macro",
  9632. height: math.unit(7900.0, "inches")
  9633. },
  9634. {
  9635. name: "Megamacro",
  9636. height: math.unit(395000.0, "inches")
  9637. },
  9638. {
  9639. name: "Gigamacro",
  9640. height: math.unit(790000000.0, "inches")
  9641. }
  9642. ]
  9643. )
  9644. };
  9645. pokemonMakers["Eldegoss"] = () => {
  9646. return makeCharacter(
  9647. "Eldegoss",
  9648. "Pokemon",
  9649. {
  9650. "Eldegoss": {
  9651. height: math.unit("20", "inches"),
  9652. weight: math.unit("5.5", "lbs"),
  9653. name: "Eldegoss",
  9654. image: {
  9655. source: "./media/pokemon/Eldegoss.svg"
  9656. },
  9657. rename: true
  9658. }
  9659. },
  9660. [
  9661. {
  9662. name: "Micro",
  9663. height: math.unit(2.0, "inches")
  9664. },
  9665. {
  9666. name: "Normal",
  9667. height: math.unit(20, "inches"),
  9668. default: true
  9669. },
  9670. {
  9671. name: "Macro",
  9672. height: math.unit(2000.0, "inches")
  9673. },
  9674. {
  9675. name: "Megamacro",
  9676. height: math.unit(100000.0, "inches")
  9677. },
  9678. {
  9679. name: "Gigamacro",
  9680. height: math.unit(200000000.0, "inches")
  9681. }
  9682. ]
  9683. )
  9684. };
  9685. pokemonMakers["Electabuzz"] = () => {
  9686. return makeCharacter(
  9687. "Electabuzz",
  9688. "Pokemon",
  9689. {
  9690. "Electabuzz": {
  9691. height: math.unit("43", "inches"),
  9692. weight: math.unit("66.1", "lbs"),
  9693. name: "Electabuzz",
  9694. image: {
  9695. source: "./media/pokemon/Electabuzz.svg"
  9696. },
  9697. rename: true
  9698. }
  9699. },
  9700. [
  9701. {
  9702. name: "Micro",
  9703. height: math.unit(4.3, "inches")
  9704. },
  9705. {
  9706. name: "Normal",
  9707. height: math.unit(43, "inches"),
  9708. default: true
  9709. },
  9710. {
  9711. name: "Macro",
  9712. height: math.unit(4300.0, "inches")
  9713. },
  9714. {
  9715. name: "Megamacro",
  9716. height: math.unit(215000.0, "inches")
  9717. },
  9718. {
  9719. name: "Gigamacro",
  9720. height: math.unit(430000000.0, "inches")
  9721. }
  9722. ]
  9723. )
  9724. };
  9725. pokemonMakers["Electivire"] = () => {
  9726. return makeCharacter(
  9727. "Electivire",
  9728. "Pokemon",
  9729. {
  9730. "Electivire": {
  9731. height: math.unit("71", "inches"),
  9732. weight: math.unit("305.6", "lbs"),
  9733. name: "Electivire",
  9734. image: {
  9735. source: "./media/pokemon/Electivire.svg"
  9736. },
  9737. rename: true
  9738. }
  9739. },
  9740. [
  9741. {
  9742. name: "Micro",
  9743. height: math.unit(7.1, "inches")
  9744. },
  9745. {
  9746. name: "Normal",
  9747. height: math.unit(71, "inches"),
  9748. default: true
  9749. },
  9750. {
  9751. name: "Macro",
  9752. height: math.unit(7100.0, "inches")
  9753. },
  9754. {
  9755. name: "Megamacro",
  9756. height: math.unit(355000.0, "inches")
  9757. },
  9758. {
  9759. name: "Gigamacro",
  9760. height: math.unit(710000000.0, "inches")
  9761. }
  9762. ]
  9763. )
  9764. };
  9765. pokemonMakers["Electrike"] = () => {
  9766. return makeCharacter(
  9767. "Electrike",
  9768. "Pokemon",
  9769. {
  9770. "Electrike": {
  9771. height: math.unit("24", "inches"),
  9772. weight: math.unit("33.5", "lbs"),
  9773. name: "Electrike",
  9774. image: {
  9775. source: "./media/pokemon/Electrike.svg"
  9776. },
  9777. rename: true
  9778. }
  9779. },
  9780. [
  9781. {
  9782. name: "Micro",
  9783. height: math.unit(2.4, "inches")
  9784. },
  9785. {
  9786. name: "Normal",
  9787. height: math.unit(24, "inches"),
  9788. default: true
  9789. },
  9790. {
  9791. name: "Macro",
  9792. height: math.unit(2400.0, "inches")
  9793. },
  9794. {
  9795. name: "Megamacro",
  9796. height: math.unit(120000.0, "inches")
  9797. },
  9798. {
  9799. name: "Gigamacro",
  9800. height: math.unit(240000000.0, "inches")
  9801. }
  9802. ]
  9803. )
  9804. };
  9805. pokemonMakers["Electrode"] = () => {
  9806. return makeCharacter(
  9807. "Electrode",
  9808. "Pokemon",
  9809. {
  9810. "Electrode": {
  9811. height: math.unit("47", "inches"),
  9812. weight: math.unit("146.8", "lbs"),
  9813. name: "Electrode",
  9814. image: {
  9815. source: "./media/pokemon/Electrode.svg"
  9816. },
  9817. rename: true
  9818. }
  9819. },
  9820. [
  9821. {
  9822. name: "Micro",
  9823. height: math.unit(4.7, "inches")
  9824. },
  9825. {
  9826. name: "Normal",
  9827. height: math.unit(47, "inches"),
  9828. default: true
  9829. },
  9830. {
  9831. name: "Macro",
  9832. height: math.unit(4700.0, "inches")
  9833. },
  9834. {
  9835. name: "Megamacro",
  9836. height: math.unit(235000.0, "inches")
  9837. },
  9838. {
  9839. name: "Gigamacro",
  9840. height: math.unit(470000000.0, "inches")
  9841. }
  9842. ]
  9843. )
  9844. };
  9845. pokemonMakers["Elekid"] = () => {
  9846. return makeCharacter(
  9847. "Elekid",
  9848. "Pokemon",
  9849. {
  9850. "Elekid": {
  9851. height: math.unit("24", "inches"),
  9852. weight: math.unit("51.8", "lbs"),
  9853. name: "Elekid",
  9854. image: {
  9855. source: "./media/pokemon/Elekid.svg"
  9856. },
  9857. rename: true
  9858. }
  9859. },
  9860. [
  9861. {
  9862. name: "Micro",
  9863. height: math.unit(2.4, "inches")
  9864. },
  9865. {
  9866. name: "Normal",
  9867. height: math.unit(24, "inches"),
  9868. default: true
  9869. },
  9870. {
  9871. name: "Macro",
  9872. height: math.unit(2400.0, "inches")
  9873. },
  9874. {
  9875. name: "Megamacro",
  9876. height: math.unit(120000.0, "inches")
  9877. },
  9878. {
  9879. name: "Gigamacro",
  9880. height: math.unit(240000000.0, "inches")
  9881. }
  9882. ]
  9883. )
  9884. };
  9885. pokemonMakers["Elgyem"] = () => {
  9886. return makeCharacter(
  9887. "Elgyem",
  9888. "Pokemon",
  9889. {
  9890. "Elgyem": {
  9891. height: math.unit("20", "inches"),
  9892. weight: math.unit("19.8", "lbs"),
  9893. name: "Elgyem",
  9894. image: {
  9895. source: "./media/pokemon/Elgyem.svg"
  9896. },
  9897. rename: true
  9898. }
  9899. },
  9900. [
  9901. {
  9902. name: "Micro",
  9903. height: math.unit(2.0, "inches")
  9904. },
  9905. {
  9906. name: "Normal",
  9907. height: math.unit(20, "inches"),
  9908. default: true
  9909. },
  9910. {
  9911. name: "Macro",
  9912. height: math.unit(2000.0, "inches")
  9913. },
  9914. {
  9915. name: "Megamacro",
  9916. height: math.unit(100000.0, "inches")
  9917. },
  9918. {
  9919. name: "Gigamacro",
  9920. height: math.unit(200000000.0, "inches")
  9921. }
  9922. ]
  9923. )
  9924. };
  9925. pokemonMakers["Emboar"] = () => {
  9926. return makeCharacter(
  9927. "Emboar",
  9928. "Pokemon",
  9929. {
  9930. "Emboar": {
  9931. height: math.unit("63", "inches"),
  9932. weight: math.unit("330.7", "lbs"),
  9933. name: "Emboar",
  9934. image: {
  9935. source: "./media/pokemon/Emboar.svg"
  9936. },
  9937. rename: true
  9938. }
  9939. },
  9940. [
  9941. {
  9942. name: "Micro",
  9943. height: math.unit(6.3, "inches")
  9944. },
  9945. {
  9946. name: "Normal",
  9947. height: math.unit(63, "inches"),
  9948. default: true
  9949. },
  9950. {
  9951. name: "Macro",
  9952. height: math.unit(6300.0, "inches")
  9953. },
  9954. {
  9955. name: "Megamacro",
  9956. height: math.unit(315000.0, "inches")
  9957. },
  9958. {
  9959. name: "Gigamacro",
  9960. height: math.unit(630000000.0, "inches")
  9961. }
  9962. ]
  9963. )
  9964. };
  9965. pokemonMakers["Emolga"] = () => {
  9966. return makeCharacter(
  9967. "Emolga",
  9968. "Pokemon",
  9969. {
  9970. "Emolga": {
  9971. height: math.unit("16", "inches"),
  9972. weight: math.unit("11.0", "lbs"),
  9973. name: "Emolga",
  9974. image: {
  9975. source: "./media/pokemon/Emolga.svg"
  9976. },
  9977. rename: true
  9978. }
  9979. },
  9980. [
  9981. {
  9982. name: "Micro",
  9983. height: math.unit(1.6, "inches")
  9984. },
  9985. {
  9986. name: "Normal",
  9987. height: math.unit(16, "inches"),
  9988. default: true
  9989. },
  9990. {
  9991. name: "Macro",
  9992. height: math.unit(1600.0, "inches")
  9993. },
  9994. {
  9995. name: "Megamacro",
  9996. height: math.unit(80000.0, "inches")
  9997. },
  9998. {
  9999. name: "Gigamacro",
  10000. height: math.unit(160000000.0, "inches")
  10001. }
  10002. ]
  10003. )
  10004. };
  10005. pokemonMakers["Empoleon"] = () => {
  10006. return makeCharacter(
  10007. "Empoleon",
  10008. "Pokemon",
  10009. {
  10010. "Empoleon": {
  10011. height: math.unit("67", "inches"),
  10012. weight: math.unit("186.3", "lbs"),
  10013. name: "Empoleon",
  10014. image: {
  10015. source: "./media/pokemon/Empoleon.svg"
  10016. },
  10017. rename: true
  10018. }
  10019. },
  10020. [
  10021. {
  10022. name: "Micro",
  10023. height: math.unit(6.7, "inches")
  10024. },
  10025. {
  10026. name: "Normal",
  10027. height: math.unit(67, "inches"),
  10028. default: true
  10029. },
  10030. {
  10031. name: "Macro",
  10032. height: math.unit(6700.0, "inches")
  10033. },
  10034. {
  10035. name: "Megamacro",
  10036. height: math.unit(335000.0, "inches")
  10037. },
  10038. {
  10039. name: "Gigamacro",
  10040. height: math.unit(670000000.0, "inches")
  10041. }
  10042. ]
  10043. )
  10044. };
  10045. pokemonMakers["Entei"] = () => {
  10046. return makeCharacter(
  10047. "Entei",
  10048. "Pokemon",
  10049. {
  10050. "Entei": {
  10051. height: math.unit("83", "inches"),
  10052. weight: math.unit("436.5", "lbs"),
  10053. name: "Entei",
  10054. image: {
  10055. source: "./media/pokemon/Entei.svg"
  10056. },
  10057. rename: true
  10058. }
  10059. },
  10060. [
  10061. {
  10062. name: "Micro",
  10063. height: math.unit(8.3, "inches")
  10064. },
  10065. {
  10066. name: "Normal",
  10067. height: math.unit(83, "inches"),
  10068. default: true
  10069. },
  10070. {
  10071. name: "Macro",
  10072. height: math.unit(8300.0, "inches")
  10073. },
  10074. {
  10075. name: "Megamacro",
  10076. height: math.unit(415000.0, "inches")
  10077. },
  10078. {
  10079. name: "Gigamacro",
  10080. height: math.unit(830000000.0, "inches")
  10081. }
  10082. ]
  10083. )
  10084. };
  10085. pokemonMakers["Escavalier"] = () => {
  10086. return makeCharacter(
  10087. "Escavalier",
  10088. "Pokemon",
  10089. {
  10090. "Escavalier": {
  10091. height: math.unit("39", "inches"),
  10092. weight: math.unit("72.8", "lbs"),
  10093. name: "Escavalier",
  10094. image: {
  10095. source: "./media/pokemon/Escavalier.svg"
  10096. },
  10097. rename: true
  10098. }
  10099. },
  10100. [
  10101. {
  10102. name: "Micro",
  10103. height: math.unit(3.9, "inches")
  10104. },
  10105. {
  10106. name: "Normal",
  10107. height: math.unit(39, "inches"),
  10108. default: true
  10109. },
  10110. {
  10111. name: "Macro",
  10112. height: math.unit(3900.0, "inches")
  10113. },
  10114. {
  10115. name: "Megamacro",
  10116. height: math.unit(195000.0, "inches")
  10117. },
  10118. {
  10119. name: "Gigamacro",
  10120. height: math.unit(390000000.0, "inches")
  10121. }
  10122. ]
  10123. )
  10124. };
  10125. pokemonMakers["Espeon"] = () => {
  10126. return makeCharacter(
  10127. "Espeon",
  10128. "Pokemon",
  10129. {
  10130. "Espeon": {
  10131. height: math.unit("35", "inches"),
  10132. weight: math.unit("58.4", "lbs"),
  10133. name: "Espeon",
  10134. image: {
  10135. source: "./media/pokemon/Espeon.svg"
  10136. },
  10137. rename: true
  10138. }
  10139. },
  10140. [
  10141. {
  10142. name: "Micro",
  10143. height: math.unit(3.5, "inches")
  10144. },
  10145. {
  10146. name: "Normal",
  10147. height: math.unit(35, "inches"),
  10148. default: true
  10149. },
  10150. {
  10151. name: "Macro",
  10152. height: math.unit(3500.0, "inches")
  10153. },
  10154. {
  10155. name: "Megamacro",
  10156. height: math.unit(175000.0, "inches")
  10157. },
  10158. {
  10159. name: "Gigamacro",
  10160. height: math.unit(350000000.0, "inches")
  10161. }
  10162. ]
  10163. )
  10164. };
  10165. pokemonMakers["Espurr"] = () => {
  10166. return makeCharacter(
  10167. "Espurr",
  10168. "Pokemon",
  10169. {
  10170. "Espurr": {
  10171. height: math.unit("12", "inches"),
  10172. weight: math.unit("7.7", "lbs"),
  10173. name: "Espurr",
  10174. image: {
  10175. source: "./media/pokemon/Espurr.svg"
  10176. },
  10177. rename: true
  10178. }
  10179. },
  10180. [
  10181. {
  10182. name: "Micro",
  10183. height: math.unit(1.2, "inches")
  10184. },
  10185. {
  10186. name: "Normal",
  10187. height: math.unit(12, "inches"),
  10188. default: true
  10189. },
  10190. {
  10191. name: "Macro",
  10192. height: math.unit(1200.0, "inches")
  10193. },
  10194. {
  10195. name: "Megamacro",
  10196. height: math.unit(60000.0, "inches")
  10197. },
  10198. {
  10199. name: "Gigamacro",
  10200. height: math.unit(120000000.0, "inches")
  10201. }
  10202. ]
  10203. )
  10204. };
  10205. pokemonMakers["Eternatus"] = () => {
  10206. return makeCharacter(
  10207. "Eternatus",
  10208. "Pokemon",
  10209. {
  10210. "Eternatus": {
  10211. height: math.unit("787", "inches"),
  10212. weight: math.unit("2094.4", "lbs"),
  10213. name: "Eternatus",
  10214. image: {
  10215. source: "./media/pokemon/Eternatus.svg"
  10216. },
  10217. rename: true
  10218. }
  10219. },
  10220. [
  10221. {
  10222. name: "Micro",
  10223. height: math.unit(78.7, "inches")
  10224. },
  10225. {
  10226. name: "Normal",
  10227. height: math.unit(787, "inches"),
  10228. default: true
  10229. },
  10230. {
  10231. name: "Macro",
  10232. height: math.unit(78700.0, "inches")
  10233. },
  10234. {
  10235. name: "Megamacro",
  10236. height: math.unit(3935000.0, "inches")
  10237. },
  10238. {
  10239. name: "Gigamacro",
  10240. height: math.unit(7870000000.0, "inches")
  10241. }
  10242. ]
  10243. )
  10244. };
  10245. pokemonMakers["Excadrill"] = () => {
  10246. return makeCharacter(
  10247. "Excadrill",
  10248. "Pokemon",
  10249. {
  10250. "Excadrill": {
  10251. height: math.unit("28", "inches"),
  10252. weight: math.unit("89.1", "lbs"),
  10253. name: "Excadrill",
  10254. image: {
  10255. source: "./media/pokemon/Excadrill.svg"
  10256. },
  10257. rename: true
  10258. }
  10259. },
  10260. [
  10261. {
  10262. name: "Micro",
  10263. height: math.unit(2.8, "inches")
  10264. },
  10265. {
  10266. name: "Normal",
  10267. height: math.unit(28, "inches"),
  10268. default: true
  10269. },
  10270. {
  10271. name: "Macro",
  10272. height: math.unit(2800.0, "inches")
  10273. },
  10274. {
  10275. name: "Megamacro",
  10276. height: math.unit(140000.0, "inches")
  10277. },
  10278. {
  10279. name: "Gigamacro",
  10280. height: math.unit(280000000.0, "inches")
  10281. }
  10282. ]
  10283. )
  10284. };
  10285. pokemonMakers["Exeggcute"] = () => {
  10286. return makeCharacter(
  10287. "Exeggcute",
  10288. "Pokemon",
  10289. {
  10290. "Exeggcute": {
  10291. height: math.unit("16", "inches"),
  10292. weight: math.unit("5.5", "lbs"),
  10293. name: "Exeggcute",
  10294. image: {
  10295. source: "./media/pokemon/Exeggcute.svg"
  10296. },
  10297. rename: true
  10298. }
  10299. },
  10300. [
  10301. {
  10302. name: "Micro",
  10303. height: math.unit(1.6, "inches")
  10304. },
  10305. {
  10306. name: "Normal",
  10307. height: math.unit(16, "inches"),
  10308. default: true
  10309. },
  10310. {
  10311. name: "Macro",
  10312. height: math.unit(1600.0, "inches")
  10313. },
  10314. {
  10315. name: "Megamacro",
  10316. height: math.unit(80000.0, "inches")
  10317. },
  10318. {
  10319. name: "Gigamacro",
  10320. height: math.unit(160000000.0, "inches")
  10321. }
  10322. ]
  10323. )
  10324. };
  10325. pokemonMakers["Exeggutor"] = () => {
  10326. return makeCharacter(
  10327. "Exeggutor",
  10328. "Pokemon",
  10329. {
  10330. "Alola Form": {
  10331. height: math.unit("429", "inches"),
  10332. weight: math.unit("916.2", "lbs"),
  10333. name: "Alola Form",
  10334. image: {
  10335. source: "./media/pokemon/Exeggutor - Alola Form.svg"
  10336. },
  10337. rename: true
  10338. },
  10339. "Exeggutor": {
  10340. height: math.unit("79", "inches"),
  10341. weight: math.unit("264.6", "lbs"),
  10342. name: "Exeggutor",
  10343. image: {
  10344. source: "./media/pokemon/Exeggutor.svg"
  10345. },
  10346. rename: true
  10347. }
  10348. },
  10349. [
  10350. {
  10351. name: "Micro",
  10352. height: math.unit(42.9, "inches")
  10353. },
  10354. {
  10355. name: "Normal",
  10356. height: math.unit(429, "inches"),
  10357. default: true
  10358. },
  10359. {
  10360. name: "Macro",
  10361. height: math.unit(42900.0, "inches")
  10362. },
  10363. {
  10364. name: "Megamacro",
  10365. height: math.unit(2145000.0, "inches")
  10366. },
  10367. {
  10368. name: "Gigamacro",
  10369. height: math.unit(4290000000.0, "inches")
  10370. }
  10371. ]
  10372. )
  10373. };
  10374. pokemonMakers["Exploud"] = () => {
  10375. return makeCharacter(
  10376. "Exploud",
  10377. "Pokemon",
  10378. {
  10379. "Exploud": {
  10380. height: math.unit("59", "inches"),
  10381. weight: math.unit("185.2", "lbs"),
  10382. name: "Exploud",
  10383. image: {
  10384. source: "./media/pokemon/Exploud.svg"
  10385. },
  10386. rename: true
  10387. }
  10388. },
  10389. [
  10390. {
  10391. name: "Micro",
  10392. height: math.unit(5.9, "inches")
  10393. },
  10394. {
  10395. name: "Normal",
  10396. height: math.unit(59, "inches"),
  10397. default: true
  10398. },
  10399. {
  10400. name: "Macro",
  10401. height: math.unit(5900.0, "inches")
  10402. },
  10403. {
  10404. name: "Megamacro",
  10405. height: math.unit(295000.0, "inches")
  10406. },
  10407. {
  10408. name: "Gigamacro",
  10409. height: math.unit(590000000.0, "inches")
  10410. }
  10411. ]
  10412. )
  10413. };
  10414. pokemonMakers["Falinks"] = () => {
  10415. return makeCharacter(
  10416. "Falinks",
  10417. "Pokemon",
  10418. {
  10419. "Falinks": {
  10420. height: math.unit("118", "inches"),
  10421. weight: math.unit("136.7", "lbs"),
  10422. name: "Falinks",
  10423. image: {
  10424. source: "./media/pokemon/Falinks.svg"
  10425. },
  10426. rename: true
  10427. }
  10428. },
  10429. [
  10430. {
  10431. name: "Micro",
  10432. height: math.unit(11.8, "inches")
  10433. },
  10434. {
  10435. name: "Normal",
  10436. height: math.unit(118, "inches"),
  10437. default: true
  10438. },
  10439. {
  10440. name: "Macro",
  10441. height: math.unit(11800.0, "inches")
  10442. },
  10443. {
  10444. name: "Megamacro",
  10445. height: math.unit(590000.0, "inches")
  10446. },
  10447. {
  10448. name: "Gigamacro",
  10449. height: math.unit(1180000000.0, "inches")
  10450. }
  10451. ]
  10452. )
  10453. };
  10454. pokemonMakers["Rotom"] = () => {
  10455. return makeCharacter(
  10456. "Rotom",
  10457. "Pokemon",
  10458. {
  10459. "Fan Rotom": {
  10460. height: math.unit("12", "inches"),
  10461. weight: math.unit("0.7", "lbs"),
  10462. name: "Fan Rotom",
  10463. image: {
  10464. source: "./media/pokemon/Fan Rotom.svg"
  10465. },
  10466. rename: true
  10467. },
  10468. "Frost Rotom": {
  10469. height: math.unit("12", "inches"),
  10470. weight: math.unit("0.7", "lbs"),
  10471. name: "Frost Rotom",
  10472. image: {
  10473. source: "./media/pokemon/Frost Rotom.svg"
  10474. },
  10475. rename: true
  10476. },
  10477. "Heat Rotom": {
  10478. height: math.unit("12", "inches"),
  10479. weight: math.unit("0.7", "lbs"),
  10480. name: "Heat Rotom",
  10481. image: {
  10482. source: "./media/pokemon/Heat Rotom.svg"
  10483. },
  10484. rename: true
  10485. },
  10486. "Mow Rotom": {
  10487. height: math.unit("12", "inches"),
  10488. weight: math.unit("0.7", "lbs"),
  10489. name: "Mow Rotom",
  10490. image: {
  10491. source: "./media/pokemon/Mow Rotom.svg"
  10492. },
  10493. rename: true
  10494. },
  10495. "Rotom": {
  10496. height: math.unit("12", "inches"),
  10497. weight: math.unit("0.7", "lbs"),
  10498. name: "Rotom",
  10499. image: {
  10500. source: "./media/pokemon/Rotom.svg"
  10501. },
  10502. rename: true
  10503. },
  10504. "Wash Rotom": {
  10505. height: math.unit("12", "inches"),
  10506. weight: math.unit("0.7", "lbs"),
  10507. name: "Wash Rotom",
  10508. image: {
  10509. source: "./media/pokemon/Wash Rotom.svg"
  10510. },
  10511. rename: true
  10512. }
  10513. },
  10514. [
  10515. {
  10516. name: "Micro",
  10517. height: math.unit(1.2, "inches")
  10518. },
  10519. {
  10520. name: "Normal",
  10521. height: math.unit(12, "inches"),
  10522. default: true
  10523. },
  10524. {
  10525. name: "Macro",
  10526. height: math.unit(1200.0, "inches")
  10527. },
  10528. {
  10529. name: "Megamacro",
  10530. height: math.unit(60000.0, "inches")
  10531. },
  10532. {
  10533. name: "Gigamacro",
  10534. height: math.unit(120000000.0, "inches")
  10535. }
  10536. ]
  10537. )
  10538. };
  10539. pokemonMakers["Farfetch'd"] = () => {
  10540. return makeCharacter(
  10541. "Farfetch'd",
  10542. "Pokemon",
  10543. {
  10544. "Galarian Form": {
  10545. height: math.unit("31", "inches"),
  10546. weight: math.unit("92.6", "lbs"),
  10547. name: "Galarian Form",
  10548. image: {
  10549. source: "./media/pokemon/Farfetch'd - Galarian Form.svg"
  10550. },
  10551. rename: true
  10552. },
  10553. "Farfetch'd": {
  10554. height: math.unit("31", "inches"),
  10555. weight: math.unit("33.1", "lbs"),
  10556. name: "Farfetch'd",
  10557. image: {
  10558. source: "./media/pokemon/Farfetch'd.svg"
  10559. },
  10560. rename: true
  10561. }
  10562. },
  10563. [
  10564. {
  10565. name: "Micro",
  10566. height: math.unit(3.1, "inches")
  10567. },
  10568. {
  10569. name: "Normal",
  10570. height: math.unit(31, "inches"),
  10571. default: true
  10572. },
  10573. {
  10574. name: "Macro",
  10575. height: math.unit(3100.0, "inches")
  10576. },
  10577. {
  10578. name: "Megamacro",
  10579. height: math.unit(155000.0, "inches")
  10580. },
  10581. {
  10582. name: "Gigamacro",
  10583. height: math.unit(310000000.0, "inches")
  10584. }
  10585. ]
  10586. )
  10587. };
  10588. pokemonMakers["Fearow"] = () => {
  10589. return makeCharacter(
  10590. "Fearow",
  10591. "Pokemon",
  10592. {
  10593. "Fearow": {
  10594. height: math.unit("47", "inches"),
  10595. weight: math.unit("83.8", "lbs"),
  10596. name: "Fearow",
  10597. image: {
  10598. source: "./media/pokemon/Fearow.svg"
  10599. },
  10600. rename: true
  10601. }
  10602. },
  10603. [
  10604. {
  10605. name: "Micro",
  10606. height: math.unit(4.7, "inches")
  10607. },
  10608. {
  10609. name: "Normal",
  10610. height: math.unit(47, "inches"),
  10611. default: true
  10612. },
  10613. {
  10614. name: "Macro",
  10615. height: math.unit(4700.0, "inches")
  10616. },
  10617. {
  10618. name: "Megamacro",
  10619. height: math.unit(235000.0, "inches")
  10620. },
  10621. {
  10622. name: "Gigamacro",
  10623. height: math.unit(470000000.0, "inches")
  10624. }
  10625. ]
  10626. )
  10627. };
  10628. pokemonMakers["Feebas"] = () => {
  10629. return makeCharacter(
  10630. "Feebas",
  10631. "Pokemon",
  10632. {
  10633. "Feebas": {
  10634. height: math.unit("24", "inches"),
  10635. weight: math.unit("16.3", "lbs"),
  10636. name: "Feebas",
  10637. image: {
  10638. source: "./media/pokemon/Feebas.svg"
  10639. },
  10640. rename: true
  10641. }
  10642. },
  10643. [
  10644. {
  10645. name: "Micro",
  10646. height: math.unit(2.4, "inches")
  10647. },
  10648. {
  10649. name: "Normal",
  10650. height: math.unit(24, "inches"),
  10651. default: true
  10652. },
  10653. {
  10654. name: "Macro",
  10655. height: math.unit(2400.0, "inches")
  10656. },
  10657. {
  10658. name: "Megamacro",
  10659. height: math.unit(120000.0, "inches")
  10660. },
  10661. {
  10662. name: "Gigamacro",
  10663. height: math.unit(240000000.0, "inches")
  10664. }
  10665. ]
  10666. )
  10667. };
  10668. pokemonMakers["Fennekin"] = () => {
  10669. return makeCharacter(
  10670. "Fennekin",
  10671. "Pokemon",
  10672. {
  10673. "Fennekin": {
  10674. height: math.unit("16", "inches"),
  10675. weight: math.unit("20.7", "lbs"),
  10676. name: "Fennekin",
  10677. image: {
  10678. source: "./media/pokemon/Fennekin.svg"
  10679. },
  10680. rename: true
  10681. }
  10682. },
  10683. [
  10684. {
  10685. name: "Micro",
  10686. height: math.unit(1.6, "inches")
  10687. },
  10688. {
  10689. name: "Normal",
  10690. height: math.unit(16, "inches"),
  10691. default: true
  10692. },
  10693. {
  10694. name: "Macro",
  10695. height: math.unit(1600.0, "inches")
  10696. },
  10697. {
  10698. name: "Megamacro",
  10699. height: math.unit(80000.0, "inches")
  10700. },
  10701. {
  10702. name: "Gigamacro",
  10703. height: math.unit(160000000.0, "inches")
  10704. }
  10705. ]
  10706. )
  10707. };
  10708. pokemonMakers["Feraligatr"] = () => {
  10709. return makeCharacter(
  10710. "Feraligatr",
  10711. "Pokemon",
  10712. {
  10713. "Feraligatr": {
  10714. height: math.unit("91", "inches"),
  10715. weight: math.unit("195.8", "lbs"),
  10716. name: "Feraligatr",
  10717. image: {
  10718. source: "./media/pokemon/Feraligatr.svg"
  10719. },
  10720. rename: true
  10721. }
  10722. },
  10723. [
  10724. {
  10725. name: "Micro",
  10726. height: math.unit(9.1, "inches")
  10727. },
  10728. {
  10729. name: "Normal",
  10730. height: math.unit(91, "inches"),
  10731. default: true
  10732. },
  10733. {
  10734. name: "Macro",
  10735. height: math.unit(9100.0, "inches")
  10736. },
  10737. {
  10738. name: "Megamacro",
  10739. height: math.unit(455000.0, "inches")
  10740. },
  10741. {
  10742. name: "Gigamacro",
  10743. height: math.unit(910000000.0, "inches")
  10744. }
  10745. ]
  10746. )
  10747. };
  10748. pokemonMakers["Ferroseed"] = () => {
  10749. return makeCharacter(
  10750. "Ferroseed",
  10751. "Pokemon",
  10752. {
  10753. "Ferroseed": {
  10754. height: math.unit("24", "inches"),
  10755. weight: math.unit("41.4", "lbs"),
  10756. name: "Ferroseed",
  10757. image: {
  10758. source: "./media/pokemon/Ferroseed.svg"
  10759. },
  10760. rename: true
  10761. }
  10762. },
  10763. [
  10764. {
  10765. name: "Micro",
  10766. height: math.unit(2.4, "inches")
  10767. },
  10768. {
  10769. name: "Normal",
  10770. height: math.unit(24, "inches"),
  10771. default: true
  10772. },
  10773. {
  10774. name: "Macro",
  10775. height: math.unit(2400.0, "inches")
  10776. },
  10777. {
  10778. name: "Megamacro",
  10779. height: math.unit(120000.0, "inches")
  10780. },
  10781. {
  10782. name: "Gigamacro",
  10783. height: math.unit(240000000.0, "inches")
  10784. }
  10785. ]
  10786. )
  10787. };
  10788. pokemonMakers["Ferrothorn"] = () => {
  10789. return makeCharacter(
  10790. "Ferrothorn",
  10791. "Pokemon",
  10792. {
  10793. "Ferrothorn": {
  10794. height: math.unit("39", "inches"),
  10795. weight: math.unit("242.5", "lbs"),
  10796. name: "Ferrothorn",
  10797. image: {
  10798. source: "./media/pokemon/Ferrothorn.svg"
  10799. },
  10800. rename: true
  10801. }
  10802. },
  10803. [
  10804. {
  10805. name: "Micro",
  10806. height: math.unit(3.9, "inches")
  10807. },
  10808. {
  10809. name: "Normal",
  10810. height: math.unit(39, "inches"),
  10811. default: true
  10812. },
  10813. {
  10814. name: "Macro",
  10815. height: math.unit(3900.0, "inches")
  10816. },
  10817. {
  10818. name: "Megamacro",
  10819. height: math.unit(195000.0, "inches")
  10820. },
  10821. {
  10822. name: "Gigamacro",
  10823. height: math.unit(390000000.0, "inches")
  10824. }
  10825. ]
  10826. )
  10827. };
  10828. pokemonMakers["Finneon"] = () => {
  10829. return makeCharacter(
  10830. "Finneon",
  10831. "Pokemon",
  10832. {
  10833. "Finneon": {
  10834. height: math.unit("16", "inches"),
  10835. weight: math.unit("15.4", "lbs"),
  10836. name: "Finneon",
  10837. image: {
  10838. source: "./media/pokemon/Finneon.svg"
  10839. },
  10840. rename: true
  10841. }
  10842. },
  10843. [
  10844. {
  10845. name: "Micro",
  10846. height: math.unit(1.6, "inches")
  10847. },
  10848. {
  10849. name: "Normal",
  10850. height: math.unit(16, "inches"),
  10851. default: true
  10852. },
  10853. {
  10854. name: "Macro",
  10855. height: math.unit(1600.0, "inches")
  10856. },
  10857. {
  10858. name: "Megamacro",
  10859. height: math.unit(80000.0, "inches")
  10860. },
  10861. {
  10862. name: "Gigamacro",
  10863. height: math.unit(160000000.0, "inches")
  10864. }
  10865. ]
  10866. )
  10867. };
  10868. pokemonMakers["Flaaffy"] = () => {
  10869. return makeCharacter(
  10870. "Flaaffy",
  10871. "Pokemon",
  10872. {
  10873. "Flaaffy": {
  10874. height: math.unit("31", "inches"),
  10875. weight: math.unit("29.3", "lbs"),
  10876. name: "Flaaffy",
  10877. image: {
  10878. source: "./media/pokemon/Flaaffy.svg"
  10879. },
  10880. rename: true
  10881. }
  10882. },
  10883. [
  10884. {
  10885. name: "Micro",
  10886. height: math.unit(3.1, "inches")
  10887. },
  10888. {
  10889. name: "Normal",
  10890. height: math.unit(31, "inches"),
  10891. default: true
  10892. },
  10893. {
  10894. name: "Macro",
  10895. height: math.unit(3100.0, "inches")
  10896. },
  10897. {
  10898. name: "Megamacro",
  10899. height: math.unit(155000.0, "inches")
  10900. },
  10901. {
  10902. name: "Gigamacro",
  10903. height: math.unit(310000000.0, "inches")
  10904. }
  10905. ]
  10906. )
  10907. };
  10908. pokemonMakers["Flabébé"] = () => {
  10909. return makeCharacter(
  10910. "Flabébé",
  10911. "Pokemon",
  10912. {
  10913. "Flabébé": {
  10914. height: math.unit("4", "inches"),
  10915. weight: math.unit("0.2", "lbs"),
  10916. name: "Flabébé",
  10917. image: {
  10918. source: "./media/pokemon/Flabébé.svg"
  10919. },
  10920. rename: true
  10921. }
  10922. },
  10923. [
  10924. {
  10925. name: "Micro",
  10926. height: math.unit(0.4, "inches")
  10927. },
  10928. {
  10929. name: "Normal",
  10930. height: math.unit(4, "inches"),
  10931. default: true
  10932. },
  10933. {
  10934. name: "Macro",
  10935. height: math.unit(400.0, "inches")
  10936. },
  10937. {
  10938. name: "Megamacro",
  10939. height: math.unit(20000.0, "inches")
  10940. },
  10941. {
  10942. name: "Gigamacro",
  10943. height: math.unit(40000000.0, "inches")
  10944. }
  10945. ]
  10946. )
  10947. };
  10948. pokemonMakers["Flapple"] = () => {
  10949. return makeCharacter(
  10950. "Flapple",
  10951. "Pokemon",
  10952. {
  10953. "Flapple": {
  10954. height: math.unit("12", "inches"),
  10955. weight: math.unit("2.2", "lbs"),
  10956. name: "Flapple",
  10957. image: {
  10958. source: "./media/pokemon/Flapple.svg"
  10959. },
  10960. rename: true
  10961. },
  10962. "Gigantamax Flapple": {
  10963. height: math.unit("945", "inches"),
  10964. weight: math.unit("1074420.703125", "lbs"),
  10965. name: "Gigantamax Flapple",
  10966. image: {
  10967. source: "./media/pokemon/Gigantamax Flapple.svg"
  10968. },
  10969. rename: true
  10970. }
  10971. },
  10972. [
  10973. {
  10974. name: "Micro",
  10975. height: math.unit(1.2, "inches")
  10976. },
  10977. {
  10978. name: "Normal",
  10979. height: math.unit(12, "inches"),
  10980. default: true
  10981. },
  10982. {
  10983. name: "Macro",
  10984. height: math.unit(1200.0, "inches")
  10985. },
  10986. {
  10987. name: "Megamacro",
  10988. height: math.unit(60000.0, "inches")
  10989. },
  10990. {
  10991. name: "Gigamacro",
  10992. height: math.unit(120000000.0, "inches")
  10993. }
  10994. ]
  10995. )
  10996. };
  10997. pokemonMakers["Flareon"] = () => {
  10998. return makeCharacter(
  10999. "Flareon",
  11000. "Pokemon",
  11001. {
  11002. "Flareon": {
  11003. height: math.unit("35", "inches"),
  11004. weight: math.unit("55.1", "lbs"),
  11005. name: "Flareon",
  11006. image: {
  11007. source: "./media/pokemon/Flareon.svg"
  11008. },
  11009. rename: true
  11010. }
  11011. },
  11012. [
  11013. {
  11014. name: "Micro",
  11015. height: math.unit(3.5, "inches")
  11016. },
  11017. {
  11018. name: "Normal",
  11019. height: math.unit(35, "inches"),
  11020. default: true
  11021. },
  11022. {
  11023. name: "Macro",
  11024. height: math.unit(3500.0, "inches")
  11025. },
  11026. {
  11027. name: "Megamacro",
  11028. height: math.unit(175000.0, "inches")
  11029. },
  11030. {
  11031. name: "Gigamacro",
  11032. height: math.unit(350000000.0, "inches")
  11033. }
  11034. ]
  11035. )
  11036. };
  11037. pokemonMakers["Fletchinder"] = () => {
  11038. return makeCharacter(
  11039. "Fletchinder",
  11040. "Pokemon",
  11041. {
  11042. "Fletchinder": {
  11043. height: math.unit("28", "inches"),
  11044. weight: math.unit("35.3", "lbs"),
  11045. name: "Fletchinder",
  11046. image: {
  11047. source: "./media/pokemon/Fletchinder.svg"
  11048. },
  11049. rename: true
  11050. }
  11051. },
  11052. [
  11053. {
  11054. name: "Micro",
  11055. height: math.unit(2.8, "inches")
  11056. },
  11057. {
  11058. name: "Normal",
  11059. height: math.unit(28, "inches"),
  11060. default: true
  11061. },
  11062. {
  11063. name: "Macro",
  11064. height: math.unit(2800.0, "inches")
  11065. },
  11066. {
  11067. name: "Megamacro",
  11068. height: math.unit(140000.0, "inches")
  11069. },
  11070. {
  11071. name: "Gigamacro",
  11072. height: math.unit(280000000.0, "inches")
  11073. }
  11074. ]
  11075. )
  11076. };
  11077. pokemonMakers["Fletchling"] = () => {
  11078. return makeCharacter(
  11079. "Fletchling",
  11080. "Pokemon",
  11081. {
  11082. "Fletchling": {
  11083. height: math.unit("12", "inches"),
  11084. weight: math.unit("3.7", "lbs"),
  11085. name: "Fletchling",
  11086. image: {
  11087. source: "./media/pokemon/Fletchling.svg"
  11088. },
  11089. rename: true
  11090. }
  11091. },
  11092. [
  11093. {
  11094. name: "Micro",
  11095. height: math.unit(1.2, "inches")
  11096. },
  11097. {
  11098. name: "Normal",
  11099. height: math.unit(12, "inches"),
  11100. default: true
  11101. },
  11102. {
  11103. name: "Macro",
  11104. height: math.unit(1200.0, "inches")
  11105. },
  11106. {
  11107. name: "Megamacro",
  11108. height: math.unit(60000.0, "inches")
  11109. },
  11110. {
  11111. name: "Gigamacro",
  11112. height: math.unit(120000000.0, "inches")
  11113. }
  11114. ]
  11115. )
  11116. };
  11117. pokemonMakers["Floatzel"] = () => {
  11118. return makeCharacter(
  11119. "Floatzel",
  11120. "Pokemon",
  11121. {
  11122. "Floatzel": {
  11123. height: math.unit("43", "inches"),
  11124. weight: math.unit("73.9", "lbs"),
  11125. name: "Floatzel",
  11126. image: {
  11127. source: "./media/pokemon/Floatzel.svg"
  11128. },
  11129. rename: true
  11130. }
  11131. },
  11132. [
  11133. {
  11134. name: "Micro",
  11135. height: math.unit(4.3, "inches")
  11136. },
  11137. {
  11138. name: "Normal",
  11139. height: math.unit(43, "inches"),
  11140. default: true
  11141. },
  11142. {
  11143. name: "Macro",
  11144. height: math.unit(4300.0, "inches")
  11145. },
  11146. {
  11147. name: "Megamacro",
  11148. height: math.unit(215000.0, "inches")
  11149. },
  11150. {
  11151. name: "Gigamacro",
  11152. height: math.unit(430000000.0, "inches")
  11153. }
  11154. ]
  11155. )
  11156. };
  11157. pokemonMakers["Floette"] = () => {
  11158. return makeCharacter(
  11159. "Floette",
  11160. "Pokemon",
  11161. {
  11162. "Floette": {
  11163. height: math.unit("8", "inches"),
  11164. weight: math.unit("2.0", "lbs"),
  11165. name: "Floette",
  11166. image: {
  11167. source: "./media/pokemon/Floette.svg"
  11168. },
  11169. rename: true
  11170. }
  11171. },
  11172. [
  11173. {
  11174. name: "Micro",
  11175. height: math.unit(0.8, "inches")
  11176. },
  11177. {
  11178. name: "Normal",
  11179. height: math.unit(8, "inches"),
  11180. default: true
  11181. },
  11182. {
  11183. name: "Macro",
  11184. height: math.unit(800.0, "inches")
  11185. },
  11186. {
  11187. name: "Megamacro",
  11188. height: math.unit(40000.0, "inches")
  11189. },
  11190. {
  11191. name: "Gigamacro",
  11192. height: math.unit(80000000.0, "inches")
  11193. }
  11194. ]
  11195. )
  11196. };
  11197. pokemonMakers["Florges"] = () => {
  11198. return makeCharacter(
  11199. "Florges",
  11200. "Pokemon",
  11201. {
  11202. "Florges": {
  11203. height: math.unit("43", "inches"),
  11204. weight: math.unit("22.0", "lbs"),
  11205. name: "Florges",
  11206. image: {
  11207. source: "./media/pokemon/Florges.svg"
  11208. },
  11209. rename: true
  11210. }
  11211. },
  11212. [
  11213. {
  11214. name: "Micro",
  11215. height: math.unit(4.3, "inches")
  11216. },
  11217. {
  11218. name: "Normal",
  11219. height: math.unit(43, "inches"),
  11220. default: true
  11221. },
  11222. {
  11223. name: "Macro",
  11224. height: math.unit(4300.0, "inches")
  11225. },
  11226. {
  11227. name: "Megamacro",
  11228. height: math.unit(215000.0, "inches")
  11229. },
  11230. {
  11231. name: "Gigamacro",
  11232. height: math.unit(430000000.0, "inches")
  11233. }
  11234. ]
  11235. )
  11236. };
  11237. pokemonMakers["Flygon"] = () => {
  11238. return makeCharacter(
  11239. "Flygon",
  11240. "Pokemon",
  11241. {
  11242. "Flygon": {
  11243. height: math.unit("79", "inches"),
  11244. weight: math.unit("180.8", "lbs"),
  11245. name: "Flygon",
  11246. image: {
  11247. source: "./media/pokemon/Flygon.svg"
  11248. },
  11249. rename: true
  11250. }
  11251. },
  11252. [
  11253. {
  11254. name: "Micro",
  11255. height: math.unit(7.9, "inches")
  11256. },
  11257. {
  11258. name: "Normal",
  11259. height: math.unit(79, "inches"),
  11260. default: true
  11261. },
  11262. {
  11263. name: "Macro",
  11264. height: math.unit(7900.0, "inches")
  11265. },
  11266. {
  11267. name: "Megamacro",
  11268. height: math.unit(395000.0, "inches")
  11269. },
  11270. {
  11271. name: "Gigamacro",
  11272. height: math.unit(790000000.0, "inches")
  11273. }
  11274. ]
  11275. )
  11276. };
  11277. pokemonMakers["Fomantis"] = () => {
  11278. return makeCharacter(
  11279. "Fomantis",
  11280. "Pokemon",
  11281. {
  11282. "Fomantis": {
  11283. height: math.unit("12", "inches"),
  11284. weight: math.unit("3.3", "lbs"),
  11285. name: "Fomantis",
  11286. image: {
  11287. source: "./media/pokemon/Fomantis.svg"
  11288. },
  11289. rename: true
  11290. }
  11291. },
  11292. [
  11293. {
  11294. name: "Micro",
  11295. height: math.unit(1.2, "inches")
  11296. },
  11297. {
  11298. name: "Normal",
  11299. height: math.unit(12, "inches"),
  11300. default: true
  11301. },
  11302. {
  11303. name: "Macro",
  11304. height: math.unit(1200.0, "inches")
  11305. },
  11306. {
  11307. name: "Megamacro",
  11308. height: math.unit(60000.0, "inches")
  11309. },
  11310. {
  11311. name: "Gigamacro",
  11312. height: math.unit(120000000.0, "inches")
  11313. }
  11314. ]
  11315. )
  11316. };
  11317. pokemonMakers["Foongus"] = () => {
  11318. return makeCharacter(
  11319. "Foongus",
  11320. "Pokemon",
  11321. {
  11322. "Foongus": {
  11323. height: math.unit("8", "inches"),
  11324. weight: math.unit("2.2", "lbs"),
  11325. name: "Foongus",
  11326. image: {
  11327. source: "./media/pokemon/Foongus.svg"
  11328. },
  11329. rename: true
  11330. }
  11331. },
  11332. [
  11333. {
  11334. name: "Micro",
  11335. height: math.unit(0.8, "inches")
  11336. },
  11337. {
  11338. name: "Normal",
  11339. height: math.unit(8, "inches"),
  11340. default: true
  11341. },
  11342. {
  11343. name: "Macro",
  11344. height: math.unit(800.0, "inches")
  11345. },
  11346. {
  11347. name: "Megamacro",
  11348. height: math.unit(40000.0, "inches")
  11349. },
  11350. {
  11351. name: "Gigamacro",
  11352. height: math.unit(80000000.0, "inches")
  11353. }
  11354. ]
  11355. )
  11356. };
  11357. pokemonMakers["Forretress"] = () => {
  11358. return makeCharacter(
  11359. "Forretress",
  11360. "Pokemon",
  11361. {
  11362. "Forretress": {
  11363. height: math.unit("47", "inches"),
  11364. weight: math.unit("277.3", "lbs"),
  11365. name: "Forretress",
  11366. image: {
  11367. source: "./media/pokemon/Forretress.svg"
  11368. },
  11369. rename: true
  11370. }
  11371. },
  11372. [
  11373. {
  11374. name: "Micro",
  11375. height: math.unit(4.7, "inches")
  11376. },
  11377. {
  11378. name: "Normal",
  11379. height: math.unit(47, "inches"),
  11380. default: true
  11381. },
  11382. {
  11383. name: "Macro",
  11384. height: math.unit(4700.0, "inches")
  11385. },
  11386. {
  11387. name: "Megamacro",
  11388. height: math.unit(235000.0, "inches")
  11389. },
  11390. {
  11391. name: "Gigamacro",
  11392. height: math.unit(470000000.0, "inches")
  11393. }
  11394. ]
  11395. )
  11396. };
  11397. pokemonMakers["Fraxure"] = () => {
  11398. return makeCharacter(
  11399. "Fraxure",
  11400. "Pokemon",
  11401. {
  11402. "Fraxure": {
  11403. height: math.unit("39", "inches"),
  11404. weight: math.unit("79.4", "lbs"),
  11405. name: "Fraxure",
  11406. image: {
  11407. source: "./media/pokemon/Fraxure.svg"
  11408. },
  11409. rename: true
  11410. }
  11411. },
  11412. [
  11413. {
  11414. name: "Micro",
  11415. height: math.unit(3.9, "inches")
  11416. },
  11417. {
  11418. name: "Normal",
  11419. height: math.unit(39, "inches"),
  11420. default: true
  11421. },
  11422. {
  11423. name: "Macro",
  11424. height: math.unit(3900.0, "inches")
  11425. },
  11426. {
  11427. name: "Megamacro",
  11428. height: math.unit(195000.0, "inches")
  11429. },
  11430. {
  11431. name: "Gigamacro",
  11432. height: math.unit(390000000.0, "inches")
  11433. }
  11434. ]
  11435. )
  11436. };
  11437. pokemonMakers["Frillish"] = () => {
  11438. return makeCharacter(
  11439. "Frillish",
  11440. "Pokemon",
  11441. {
  11442. "Frillish": {
  11443. height: math.unit("47", "inches"),
  11444. weight: math.unit("72.8", "lbs"),
  11445. name: "Frillish",
  11446. image: {
  11447. source: "./media/pokemon/Frillish.svg"
  11448. },
  11449. rename: true
  11450. }
  11451. },
  11452. [
  11453. {
  11454. name: "Micro",
  11455. height: math.unit(4.7, "inches")
  11456. },
  11457. {
  11458. name: "Normal",
  11459. height: math.unit(47, "inches"),
  11460. default: true
  11461. },
  11462. {
  11463. name: "Macro",
  11464. height: math.unit(4700.0, "inches")
  11465. },
  11466. {
  11467. name: "Megamacro",
  11468. height: math.unit(235000.0, "inches")
  11469. },
  11470. {
  11471. name: "Gigamacro",
  11472. height: math.unit(470000000.0, "inches")
  11473. }
  11474. ]
  11475. )
  11476. };
  11477. pokemonMakers["Froakie"] = () => {
  11478. return makeCharacter(
  11479. "Froakie",
  11480. "Pokemon",
  11481. {
  11482. "Froakie": {
  11483. height: math.unit("12", "inches"),
  11484. weight: math.unit("15.4", "lbs"),
  11485. name: "Froakie",
  11486. image: {
  11487. source: "./media/pokemon/Froakie.svg"
  11488. },
  11489. rename: true
  11490. }
  11491. },
  11492. [
  11493. {
  11494. name: "Micro",
  11495. height: math.unit(1.2, "inches")
  11496. },
  11497. {
  11498. name: "Normal",
  11499. height: math.unit(12, "inches"),
  11500. default: true
  11501. },
  11502. {
  11503. name: "Macro",
  11504. height: math.unit(1200.0, "inches")
  11505. },
  11506. {
  11507. name: "Megamacro",
  11508. height: math.unit(60000.0, "inches")
  11509. },
  11510. {
  11511. name: "Gigamacro",
  11512. height: math.unit(120000000.0, "inches")
  11513. }
  11514. ]
  11515. )
  11516. };
  11517. pokemonMakers["Frogadier"] = () => {
  11518. return makeCharacter(
  11519. "Frogadier",
  11520. "Pokemon",
  11521. {
  11522. "Frogadier": {
  11523. height: math.unit("24", "inches"),
  11524. weight: math.unit("24.0", "lbs"),
  11525. name: "Frogadier",
  11526. image: {
  11527. source: "./media/pokemon/Frogadier.svg"
  11528. },
  11529. rename: true
  11530. }
  11531. },
  11532. [
  11533. {
  11534. name: "Micro",
  11535. height: math.unit(2.4, "inches")
  11536. },
  11537. {
  11538. name: "Normal",
  11539. height: math.unit(24, "inches"),
  11540. default: true
  11541. },
  11542. {
  11543. name: "Macro",
  11544. height: math.unit(2400.0, "inches")
  11545. },
  11546. {
  11547. name: "Megamacro",
  11548. height: math.unit(120000.0, "inches")
  11549. },
  11550. {
  11551. name: "Gigamacro",
  11552. height: math.unit(240000000.0, "inches")
  11553. }
  11554. ]
  11555. )
  11556. };
  11557. pokemonMakers["Froslass"] = () => {
  11558. return makeCharacter(
  11559. "Froslass",
  11560. "Pokemon",
  11561. {
  11562. "Froslass": {
  11563. height: math.unit("51", "inches"),
  11564. weight: math.unit("58.6", "lbs"),
  11565. name: "Froslass",
  11566. image: {
  11567. source: "./media/pokemon/Froslass.svg"
  11568. },
  11569. rename: true
  11570. }
  11571. },
  11572. [
  11573. {
  11574. name: "Micro",
  11575. height: math.unit(5.1, "inches")
  11576. },
  11577. {
  11578. name: "Normal",
  11579. height: math.unit(51, "inches"),
  11580. default: true
  11581. },
  11582. {
  11583. name: "Macro",
  11584. height: math.unit(5100.0, "inches")
  11585. },
  11586. {
  11587. name: "Megamacro",
  11588. height: math.unit(255000.0, "inches")
  11589. },
  11590. {
  11591. name: "Gigamacro",
  11592. height: math.unit(510000000.0, "inches")
  11593. }
  11594. ]
  11595. )
  11596. };
  11597. pokemonMakers["Frosmoth"] = () => {
  11598. return makeCharacter(
  11599. "Frosmoth",
  11600. "Pokemon",
  11601. {
  11602. "Frosmoth": {
  11603. height: math.unit("51", "inches"),
  11604. weight: math.unit("92.6", "lbs"),
  11605. name: "Frosmoth",
  11606. image: {
  11607. source: "./media/pokemon/Frosmoth.svg"
  11608. },
  11609. rename: true
  11610. }
  11611. },
  11612. [
  11613. {
  11614. name: "Micro",
  11615. height: math.unit(5.1, "inches")
  11616. },
  11617. {
  11618. name: "Normal",
  11619. height: math.unit(51, "inches"),
  11620. default: true
  11621. },
  11622. {
  11623. name: "Macro",
  11624. height: math.unit(5100.0, "inches")
  11625. },
  11626. {
  11627. name: "Megamacro",
  11628. height: math.unit(255000.0, "inches")
  11629. },
  11630. {
  11631. name: "Gigamacro",
  11632. height: math.unit(510000000.0, "inches")
  11633. }
  11634. ]
  11635. )
  11636. };
  11637. pokemonMakers["Furfrou"] = () => {
  11638. return makeCharacter(
  11639. "Furfrou",
  11640. "Pokemon",
  11641. {
  11642. "Diamond Trim": {
  11643. height: math.unit("47", "inches"),
  11644. weight: math.unit("61.7", "lbs"),
  11645. name: "Diamond Trim",
  11646. image: {
  11647. source: "./media/pokemon/Furfrou - Diamond Trim.svg"
  11648. },
  11649. rename: true
  11650. },
  11651. "Heart Trim": {
  11652. height: math.unit("47", "inches"),
  11653. weight: math.unit("61.7", "lbs"),
  11654. name: "Heart Trim",
  11655. image: {
  11656. source: "./media/pokemon/Furfrou - Heart Trim.svg"
  11657. },
  11658. rename: true
  11659. },
  11660. "Natural Forme": {
  11661. height: math.unit("47", "inches"),
  11662. weight: math.unit("61.7", "lbs"),
  11663. name: "Natural Forme",
  11664. image: {
  11665. source: "./media/pokemon/Furfrou - Natural Forme.svg"
  11666. },
  11667. rename: true
  11668. },
  11669. "Star Trim": {
  11670. height: math.unit("47", "inches"),
  11671. weight: math.unit("61.7", "lbs"),
  11672. name: "Star Trim",
  11673. image: {
  11674. source: "./media/pokemon/Furfrou - Star Trim.svg"
  11675. },
  11676. rename: true
  11677. }
  11678. },
  11679. [
  11680. {
  11681. name: "Micro",
  11682. height: math.unit(4.7, "inches")
  11683. },
  11684. {
  11685. name: "Normal",
  11686. height: math.unit(47, "inches"),
  11687. default: true
  11688. },
  11689. {
  11690. name: "Macro",
  11691. height: math.unit(4700.0, "inches")
  11692. },
  11693. {
  11694. name: "Megamacro",
  11695. height: math.unit(235000.0, "inches")
  11696. },
  11697. {
  11698. name: "Gigamacro",
  11699. height: math.unit(470000000.0, "inches")
  11700. }
  11701. ]
  11702. )
  11703. };
  11704. pokemonMakers["Furret"] = () => {
  11705. return makeCharacter(
  11706. "Furret",
  11707. "Pokemon",
  11708. {
  11709. "Furret": {
  11710. height: math.unit("71", "inches"),
  11711. weight: math.unit("71.6", "lbs"),
  11712. name: "Furret",
  11713. image: {
  11714. source: "./media/pokemon/Furret.svg"
  11715. },
  11716. rename: true
  11717. }
  11718. },
  11719. [
  11720. {
  11721. name: "Micro",
  11722. height: math.unit(7.1, "inches")
  11723. },
  11724. {
  11725. name: "Normal",
  11726. height: math.unit(71, "inches"),
  11727. default: true
  11728. },
  11729. {
  11730. name: "Macro",
  11731. height: math.unit(7100.0, "inches")
  11732. },
  11733. {
  11734. name: "Megamacro",
  11735. height: math.unit(355000.0, "inches")
  11736. },
  11737. {
  11738. name: "Gigamacro",
  11739. height: math.unit(710000000.0, "inches")
  11740. }
  11741. ]
  11742. )
  11743. };
  11744. pokemonMakers["Gabite"] = () => {
  11745. return makeCharacter(
  11746. "Gabite",
  11747. "Pokemon",
  11748. {
  11749. "Gabite": {
  11750. height: math.unit("55", "inches"),
  11751. weight: math.unit("123.5", "lbs"),
  11752. name: "Gabite",
  11753. image: {
  11754. source: "./media/pokemon/Gabite.svg"
  11755. },
  11756. rename: true
  11757. }
  11758. },
  11759. [
  11760. {
  11761. name: "Micro",
  11762. height: math.unit(5.5, "inches")
  11763. },
  11764. {
  11765. name: "Normal",
  11766. height: math.unit(55, "inches"),
  11767. default: true
  11768. },
  11769. {
  11770. name: "Macro",
  11771. height: math.unit(5500.0, "inches")
  11772. },
  11773. {
  11774. name: "Megamacro",
  11775. height: math.unit(275000.0, "inches")
  11776. },
  11777. {
  11778. name: "Gigamacro",
  11779. height: math.unit(550000000.0, "inches")
  11780. }
  11781. ]
  11782. )
  11783. };
  11784. pokemonMakers["Gallade"] = () => {
  11785. return makeCharacter(
  11786. "Gallade",
  11787. "Pokemon",
  11788. {
  11789. "Gallade": {
  11790. height: math.unit("63", "inches"),
  11791. weight: math.unit("114.6", "lbs"),
  11792. name: "Gallade",
  11793. image: {
  11794. source: "./media/pokemon/Gallade.svg"
  11795. },
  11796. rename: true
  11797. },
  11798. "Mega Gallade": {
  11799. height: math.unit("63", "inches"),
  11800. weight: math.unit("124.3", "lbs"),
  11801. name: "Mega Gallade",
  11802. image: {
  11803. source: "./media/pokemon/Mega Gallade.svg"
  11804. },
  11805. rename: true
  11806. }
  11807. },
  11808. [
  11809. {
  11810. name: "Micro",
  11811. height: math.unit(6.3, "inches")
  11812. },
  11813. {
  11814. name: "Normal",
  11815. height: math.unit(63, "inches"),
  11816. default: true
  11817. },
  11818. {
  11819. name: "Macro",
  11820. height: math.unit(6300.0, "inches")
  11821. },
  11822. {
  11823. name: "Megamacro",
  11824. height: math.unit(315000.0, "inches")
  11825. },
  11826. {
  11827. name: "Gigamacro",
  11828. height: math.unit(630000000.0, "inches")
  11829. }
  11830. ]
  11831. )
  11832. };
  11833. pokemonMakers["Galvantula"] = () => {
  11834. return makeCharacter(
  11835. "Galvantula",
  11836. "Pokemon",
  11837. {
  11838. "Galvantula": {
  11839. height: math.unit("31", "inches"),
  11840. weight: math.unit("31.5", "lbs"),
  11841. name: "Galvantula",
  11842. image: {
  11843. source: "./media/pokemon/Galvantula.svg"
  11844. },
  11845. rename: true
  11846. }
  11847. },
  11848. [
  11849. {
  11850. name: "Micro",
  11851. height: math.unit(3.1, "inches")
  11852. },
  11853. {
  11854. name: "Normal",
  11855. height: math.unit(31, "inches"),
  11856. default: true
  11857. },
  11858. {
  11859. name: "Macro",
  11860. height: math.unit(3100.0, "inches")
  11861. },
  11862. {
  11863. name: "Megamacro",
  11864. height: math.unit(155000.0, "inches")
  11865. },
  11866. {
  11867. name: "Gigamacro",
  11868. height: math.unit(310000000.0, "inches")
  11869. }
  11870. ]
  11871. )
  11872. };
  11873. pokemonMakers["Garbodor"] = () => {
  11874. return makeCharacter(
  11875. "Garbodor",
  11876. "Pokemon",
  11877. {
  11878. "Garbodor": {
  11879. height: math.unit("75", "inches"),
  11880. weight: math.unit("236.6", "lbs"),
  11881. name: "Garbodor",
  11882. image: {
  11883. source: "./media/pokemon/Garbodor.svg"
  11884. },
  11885. rename: true
  11886. },
  11887. "Gigantamax Garbodor": {
  11888. height: math.unit("827", "inches"),
  11889. weight: math.unit("317210.4446999704", "lbs"),
  11890. name: "Gigantamax Garbodor",
  11891. image: {
  11892. source: "./media/pokemon/Gigantamax Garbodor.svg"
  11893. },
  11894. rename: true
  11895. }
  11896. },
  11897. [
  11898. {
  11899. name: "Micro",
  11900. height: math.unit(7.5, "inches")
  11901. },
  11902. {
  11903. name: "Normal",
  11904. height: math.unit(75, "inches"),
  11905. default: true
  11906. },
  11907. {
  11908. name: "Macro",
  11909. height: math.unit(7500.0, "inches")
  11910. },
  11911. {
  11912. name: "Megamacro",
  11913. height: math.unit(375000.0, "inches")
  11914. },
  11915. {
  11916. name: "Gigamacro",
  11917. height: math.unit(750000000.0, "inches")
  11918. }
  11919. ]
  11920. )
  11921. };
  11922. pokemonMakers["Garchomp"] = () => {
  11923. return makeCharacter(
  11924. "Garchomp",
  11925. "Pokemon",
  11926. {
  11927. "Garchomp": {
  11928. height: math.unit("75", "inches"),
  11929. weight: math.unit("209.4", "lbs"),
  11930. name: "Garchomp",
  11931. image: {
  11932. source: "./media/pokemon/Garchomp.svg"
  11933. },
  11934. rename: true
  11935. },
  11936. "Mega Garchomp": {
  11937. height: math.unit("75", "inches"),
  11938. weight: math.unit("209.4", "lbs"),
  11939. name: "Mega Garchomp",
  11940. image: {
  11941. source: "./media/pokemon/Mega Garchomp.svg"
  11942. },
  11943. rename: true
  11944. }
  11945. },
  11946. [
  11947. {
  11948. name: "Micro",
  11949. height: math.unit(7.5, "inches")
  11950. },
  11951. {
  11952. name: "Normal",
  11953. height: math.unit(75, "inches"),
  11954. default: true
  11955. },
  11956. {
  11957. name: "Macro",
  11958. height: math.unit(7500.0, "inches")
  11959. },
  11960. {
  11961. name: "Megamacro",
  11962. height: math.unit(375000.0, "inches")
  11963. },
  11964. {
  11965. name: "Gigamacro",
  11966. height: math.unit(750000000.0, "inches")
  11967. }
  11968. ]
  11969. )
  11970. };
  11971. pokemonMakers["Gardevoir"] = () => {
  11972. return makeCharacter(
  11973. "Gardevoir",
  11974. "Pokemon",
  11975. {
  11976. "Gardevoir": {
  11977. height: math.unit("63", "inches"),
  11978. weight: math.unit("106.7", "lbs"),
  11979. name: "Gardevoir",
  11980. image: {
  11981. source: "./media/pokemon/Gardevoir.svg"
  11982. },
  11983. rename: true
  11984. },
  11985. "Mega Gardevoir": {
  11986. height: math.unit("63", "inches"),
  11987. weight: math.unit("106.7", "lbs"),
  11988. name: "Mega Gardevoir",
  11989. image: {
  11990. source: "./media/pokemon/Mega Gardevoir.svg"
  11991. },
  11992. rename: true
  11993. }
  11994. },
  11995. [
  11996. {
  11997. name: "Micro",
  11998. height: math.unit(6.3, "inches")
  11999. },
  12000. {
  12001. name: "Normal",
  12002. height: math.unit(63, "inches"),
  12003. default: true
  12004. },
  12005. {
  12006. name: "Macro",
  12007. height: math.unit(6300.0, "inches")
  12008. },
  12009. {
  12010. name: "Megamacro",
  12011. height: math.unit(315000.0, "inches")
  12012. },
  12013. {
  12014. name: "Gigamacro",
  12015. height: math.unit(630000000.0, "inches")
  12016. }
  12017. ]
  12018. )
  12019. };
  12020. pokemonMakers["Gastly"] = () => {
  12021. return makeCharacter(
  12022. "Gastly",
  12023. "Pokemon",
  12024. {
  12025. "Gastly": {
  12026. height: math.unit("51", "inches"),
  12027. weight: math.unit("0.2", "lbs"),
  12028. name: "Gastly",
  12029. image: {
  12030. source: "./media/pokemon/Gastly.svg"
  12031. },
  12032. rename: true
  12033. }
  12034. },
  12035. [
  12036. {
  12037. name: "Micro",
  12038. height: math.unit(5.1, "inches")
  12039. },
  12040. {
  12041. name: "Normal",
  12042. height: math.unit(51, "inches"),
  12043. default: true
  12044. },
  12045. {
  12046. name: "Macro",
  12047. height: math.unit(5100.0, "inches")
  12048. },
  12049. {
  12050. name: "Megamacro",
  12051. height: math.unit(255000.0, "inches")
  12052. },
  12053. {
  12054. name: "Gigamacro",
  12055. height: math.unit(510000000.0, "inches")
  12056. }
  12057. ]
  12058. )
  12059. };
  12060. pokemonMakers["Gastrodon"] = () => {
  12061. return makeCharacter(
  12062. "Gastrodon",
  12063. "Pokemon",
  12064. {
  12065. "East Sea": {
  12066. height: math.unit("35", "inches"),
  12067. weight: math.unit("65.9", "lbs"),
  12068. name: "East Sea",
  12069. image: {
  12070. source: "./media/pokemon/Gastrodon - East Sea.svg"
  12071. },
  12072. rename: true
  12073. },
  12074. "West Sea": {
  12075. height: math.unit("35", "inches"),
  12076. weight: math.unit("65.9", "lbs"),
  12077. name: "West Sea",
  12078. image: {
  12079. source: "./media/pokemon/Gastrodon - West Sea.svg"
  12080. },
  12081. rename: true
  12082. }
  12083. },
  12084. [
  12085. {
  12086. name: "Micro",
  12087. height: math.unit(3.5, "inches")
  12088. },
  12089. {
  12090. name: "Normal",
  12091. height: math.unit(35, "inches"),
  12092. default: true
  12093. },
  12094. {
  12095. name: "Macro",
  12096. height: math.unit(3500.0, "inches")
  12097. },
  12098. {
  12099. name: "Megamacro",
  12100. height: math.unit(175000.0, "inches")
  12101. },
  12102. {
  12103. name: "Gigamacro",
  12104. height: math.unit(350000000.0, "inches")
  12105. }
  12106. ]
  12107. )
  12108. };
  12109. pokemonMakers["Genesect"] = () => {
  12110. return makeCharacter(
  12111. "Genesect",
  12112. "Pokemon",
  12113. {
  12114. "Genesect": {
  12115. height: math.unit("59", "inches"),
  12116. weight: math.unit("181.9", "lbs"),
  12117. name: "Genesect",
  12118. image: {
  12119. source: "./media/pokemon/Genesect.svg"
  12120. },
  12121. rename: true
  12122. }
  12123. },
  12124. [
  12125. {
  12126. name: "Micro",
  12127. height: math.unit(5.9, "inches")
  12128. },
  12129. {
  12130. name: "Normal",
  12131. height: math.unit(59, "inches"),
  12132. default: true
  12133. },
  12134. {
  12135. name: "Macro",
  12136. height: math.unit(5900.0, "inches")
  12137. },
  12138. {
  12139. name: "Megamacro",
  12140. height: math.unit(295000.0, "inches")
  12141. },
  12142. {
  12143. name: "Gigamacro",
  12144. height: math.unit(590000000.0, "inches")
  12145. }
  12146. ]
  12147. )
  12148. };
  12149. pokemonMakers["Gengar"] = () => {
  12150. return makeCharacter(
  12151. "Gengar",
  12152. "Pokemon",
  12153. {
  12154. "Gengar": {
  12155. height: math.unit("59", "inches"),
  12156. weight: math.unit("89.3", "lbs"),
  12157. name: "Gengar",
  12158. image: {
  12159. source: "./media/pokemon/Gengar.svg"
  12160. },
  12161. rename: true
  12162. },
  12163. "Mega Gengar": {
  12164. height: math.unit("55", "inches"),
  12165. weight: math.unit("89.3", "lbs"),
  12166. name: "Mega Gengar",
  12167. image: {
  12168. source: "./media/pokemon/Mega Gengar.svg"
  12169. },
  12170. rename: true
  12171. },
  12172. "Gigantamax Gengar": {
  12173. height: math.unit("787", "inches"),
  12174. weight: math.unit("211943.2653187522", "lbs"),
  12175. name: "Gigantamax Gengar",
  12176. image: {
  12177. source: "./media/pokemon/Gigantamax Gengar.svg"
  12178. },
  12179. rename: true
  12180. }
  12181. },
  12182. [
  12183. {
  12184. name: "Micro",
  12185. height: math.unit(5.9, "inches")
  12186. },
  12187. {
  12188. name: "Normal",
  12189. height: math.unit(59, "inches"),
  12190. default: true
  12191. },
  12192. {
  12193. name: "Macro",
  12194. height: math.unit(5900.0, "inches")
  12195. },
  12196. {
  12197. name: "Megamacro",
  12198. height: math.unit(295000.0, "inches")
  12199. },
  12200. {
  12201. name: "Gigamacro",
  12202. height: math.unit(590000000.0, "inches")
  12203. }
  12204. ]
  12205. )
  12206. };
  12207. pokemonMakers["Geodude"] = () => {
  12208. return makeCharacter(
  12209. "Geodude",
  12210. "Pokemon",
  12211. {
  12212. "Alola Form": {
  12213. height: math.unit("16", "inches"),
  12214. weight: math.unit("44.8", "lbs"),
  12215. name: "Alola Form",
  12216. image: {
  12217. source: "./media/pokemon/Geodude - Alola Form.svg"
  12218. },
  12219. rename: true
  12220. },
  12221. "Geodude": {
  12222. height: math.unit("16", "inches"),
  12223. weight: math.unit("44.1", "lbs"),
  12224. name: "Geodude",
  12225. image: {
  12226. source: "./media/pokemon/Geodude.svg"
  12227. },
  12228. rename: true
  12229. }
  12230. },
  12231. [
  12232. {
  12233. name: "Micro",
  12234. height: math.unit(1.6, "inches")
  12235. },
  12236. {
  12237. name: "Normal",
  12238. height: math.unit(16, "inches"),
  12239. default: true
  12240. },
  12241. {
  12242. name: "Macro",
  12243. height: math.unit(1600.0, "inches")
  12244. },
  12245. {
  12246. name: "Megamacro",
  12247. height: math.unit(80000.0, "inches")
  12248. },
  12249. {
  12250. name: "Gigamacro",
  12251. height: math.unit(160000000.0, "inches")
  12252. }
  12253. ]
  12254. )
  12255. };
  12256. pokemonMakers["Gible"] = () => {
  12257. return makeCharacter(
  12258. "Gible",
  12259. "Pokemon",
  12260. {
  12261. "Gible": {
  12262. height: math.unit("28", "inches"),
  12263. weight: math.unit("45.2", "lbs"),
  12264. name: "Gible",
  12265. image: {
  12266. source: "./media/pokemon/Gible.svg"
  12267. },
  12268. rename: true
  12269. }
  12270. },
  12271. [
  12272. {
  12273. name: "Micro",
  12274. height: math.unit(2.8, "inches")
  12275. },
  12276. {
  12277. name: "Normal",
  12278. height: math.unit(28, "inches"),
  12279. default: true
  12280. },
  12281. {
  12282. name: "Macro",
  12283. height: math.unit(2800.0, "inches")
  12284. },
  12285. {
  12286. name: "Megamacro",
  12287. height: math.unit(140000.0, "inches")
  12288. },
  12289. {
  12290. name: "Gigamacro",
  12291. height: math.unit(280000000.0, "inches")
  12292. }
  12293. ]
  12294. )
  12295. };
  12296. pokemonMakers["Gigalith"] = () => {
  12297. return makeCharacter(
  12298. "Gigalith",
  12299. "Pokemon",
  12300. {
  12301. "Gigalith": {
  12302. height: math.unit("67", "inches"),
  12303. weight: math.unit("573.2", "lbs"),
  12304. name: "Gigalith",
  12305. image: {
  12306. source: "./media/pokemon/Gigalith.svg"
  12307. },
  12308. rename: true
  12309. }
  12310. },
  12311. [
  12312. {
  12313. name: "Micro",
  12314. height: math.unit(6.7, "inches")
  12315. },
  12316. {
  12317. name: "Normal",
  12318. height: math.unit(67, "inches"),
  12319. default: true
  12320. },
  12321. {
  12322. name: "Macro",
  12323. height: math.unit(6700.0, "inches")
  12324. },
  12325. {
  12326. name: "Megamacro",
  12327. height: math.unit(335000.0, "inches")
  12328. },
  12329. {
  12330. name: "Gigamacro",
  12331. height: math.unit(670000000.0, "inches")
  12332. }
  12333. ]
  12334. )
  12335. };
  12336. pokemonMakers["Grimmsnarl"] = () => {
  12337. return makeCharacter(
  12338. "Grimmsnarl",
  12339. "Pokemon",
  12340. {
  12341. "Grimmsnarl": {
  12342. height: math.unit("59", "inches"),
  12343. weight: math.unit("134.5", "lbs"),
  12344. name: "Grimmsnarl",
  12345. image: {
  12346. source: "./media/pokemon/Grimmsnarl.svg"
  12347. },
  12348. rename: true
  12349. },
  12350. "Gigantamax Grimmsnarl": {
  12351. height: math.unit("1260", "inches"),
  12352. weight: math.unit("1310019.875449778", "lbs"),
  12353. name: "Gigantamax Grimmsnarl",
  12354. image: {
  12355. source: "./media/pokemon/Gigantamax Grimmsnarl.svg"
  12356. },
  12357. rename: true
  12358. }
  12359. },
  12360. [
  12361. {
  12362. name: "Micro",
  12363. height: math.unit(5.9, "inches")
  12364. },
  12365. {
  12366. name: "Normal",
  12367. height: math.unit(59, "inches"),
  12368. default: true
  12369. },
  12370. {
  12371. name: "Macro",
  12372. height: math.unit(5900.0, "inches")
  12373. },
  12374. {
  12375. name: "Megamacro",
  12376. height: math.unit(295000.0, "inches")
  12377. },
  12378. {
  12379. name: "Gigamacro",
  12380. height: math.unit(590000000.0, "inches")
  12381. }
  12382. ]
  12383. )
  12384. };
  12385. pokemonMakers["Hatterene"] = () => {
  12386. return makeCharacter(
  12387. "Hatterene",
  12388. "Pokemon",
  12389. {
  12390. "Hatterene": {
  12391. height: math.unit("83", "inches"),
  12392. weight: math.unit("11.2", "lbs"),
  12393. name: "Hatterene",
  12394. image: {
  12395. source: "./media/pokemon/Hatterene.svg"
  12396. },
  12397. rename: true
  12398. },
  12399. "Gigantamax Hatterene": {
  12400. height: math.unit("1024", "inches"),
  12401. weight: math.unit("21032.147335983507", "lbs"),
  12402. name: "Gigantamax Hatterene",
  12403. image: {
  12404. source: "./media/pokemon/Gigantamax Hatterene.svg"
  12405. },
  12406. rename: true
  12407. }
  12408. },
  12409. [
  12410. {
  12411. name: "Micro",
  12412. height: math.unit(8.3, "inches")
  12413. },
  12414. {
  12415. name: "Normal",
  12416. height: math.unit(83, "inches"),
  12417. default: true
  12418. },
  12419. {
  12420. name: "Macro",
  12421. height: math.unit(8300.0, "inches")
  12422. },
  12423. {
  12424. name: "Megamacro",
  12425. height: math.unit(415000.0, "inches")
  12426. },
  12427. {
  12428. name: "Gigamacro",
  12429. height: math.unit(830000000.0, "inches")
  12430. }
  12431. ]
  12432. )
  12433. };
  12434. pokemonMakers["Kingler"] = () => {
  12435. return makeCharacter(
  12436. "Kingler",
  12437. "Pokemon",
  12438. {
  12439. "Kingler": {
  12440. height: math.unit("51", "inches"),
  12441. weight: math.unit("132.3", "lbs"),
  12442. name: "Kingler",
  12443. image: {
  12444. source: "./media/pokemon/Kingler.svg"
  12445. },
  12446. rename: true
  12447. },
  12448. "Gigantamax Kingler": {
  12449. height: math.unit("748", "inches"),
  12450. weight: math.unit("417401.6", "lbs"),
  12451. name: "Gigantamax Kingler",
  12452. image: {
  12453. source: "./media/pokemon/Gigantamax Kingler.svg"
  12454. },
  12455. rename: true
  12456. }
  12457. },
  12458. [
  12459. {
  12460. name: "Micro",
  12461. height: math.unit(5.1, "inches")
  12462. },
  12463. {
  12464. name: "Normal",
  12465. height: math.unit(51, "inches"),
  12466. default: true
  12467. },
  12468. {
  12469. name: "Macro",
  12470. height: math.unit(5100.0, "inches")
  12471. },
  12472. {
  12473. name: "Megamacro",
  12474. height: math.unit(255000.0, "inches")
  12475. },
  12476. {
  12477. name: "Gigamacro",
  12478. height: math.unit(510000000.0, "inches")
  12479. }
  12480. ]
  12481. )
  12482. };
  12483. pokemonMakers["Lapras"] = () => {
  12484. return makeCharacter(
  12485. "Lapras",
  12486. "Pokemon",
  12487. {
  12488. "Lapras": {
  12489. height: math.unit("98", "inches"),
  12490. weight: math.unit("485.0", "lbs"),
  12491. name: "Lapras",
  12492. image: {
  12493. source: "./media/pokemon/Lapras.svg"
  12494. },
  12495. rename: true
  12496. },
  12497. "Gigantamax Lapras": {
  12498. height: math.unit("945", "inches"),
  12499. weight: math.unit("434869.4879737609", "lbs"),
  12500. name: "Gigantamax Lapras",
  12501. image: {
  12502. source: "./media/pokemon/Gigantamax Lapras.svg"
  12503. },
  12504. rename: true
  12505. }
  12506. },
  12507. [
  12508. {
  12509. name: "Micro",
  12510. height: math.unit(9.8, "inches")
  12511. },
  12512. {
  12513. name: "Normal",
  12514. height: math.unit(98, "inches"),
  12515. default: true
  12516. },
  12517. {
  12518. name: "Macro",
  12519. height: math.unit(9800.0, "inches")
  12520. },
  12521. {
  12522. name: "Megamacro",
  12523. height: math.unit(490000.0, "inches")
  12524. },
  12525. {
  12526. name: "Gigamacro",
  12527. height: math.unit(980000000.0, "inches")
  12528. }
  12529. ]
  12530. )
  12531. };
  12532. pokemonMakers["Machamp"] = () => {
  12533. return makeCharacter(
  12534. "Machamp",
  12535. "Pokemon",
  12536. {
  12537. "Machamp": {
  12538. height: math.unit("63", "inches"),
  12539. weight: math.unit("286.6", "lbs"),
  12540. name: "Machamp",
  12541. image: {
  12542. source: "./media/pokemon/Machamp.svg"
  12543. },
  12544. rename: true
  12545. },
  12546. "Gigantamax Machamp": {
  12547. height: math.unit("984", "inches"),
  12548. weight: math.unit("1092043.2354173416", "lbs"),
  12549. name: "Gigantamax Machamp",
  12550. image: {
  12551. source: "./media/pokemon/Gigantamax Machamp.svg"
  12552. },
  12553. rename: true
  12554. }
  12555. },
  12556. [
  12557. {
  12558. name: "Micro",
  12559. height: math.unit(6.3, "inches")
  12560. },
  12561. {
  12562. name: "Normal",
  12563. height: math.unit(63, "inches"),
  12564. default: true
  12565. },
  12566. {
  12567. name: "Macro",
  12568. height: math.unit(6300.0, "inches")
  12569. },
  12570. {
  12571. name: "Megamacro",
  12572. height: math.unit(315000.0, "inches")
  12573. },
  12574. {
  12575. name: "Gigamacro",
  12576. height: math.unit(630000000.0, "inches")
  12577. }
  12578. ]
  12579. )
  12580. };
  12581. pokemonMakers["Meowth"] = () => {
  12582. return makeCharacter(
  12583. "Meowth",
  12584. "Pokemon",
  12585. {
  12586. "Alola Form": {
  12587. height: math.unit("16", "inches"),
  12588. weight: math.unit("9.3", "lbs"),
  12589. name: "Alola Form",
  12590. image: {
  12591. source: "./media/pokemon/Meowth - Alola Form.svg"
  12592. },
  12593. rename: true
  12594. },
  12595. "Galarian Form": {
  12596. height: math.unit("16", "inches"),
  12597. weight: math.unit("16.5", "lbs"),
  12598. name: "Galarian Form",
  12599. image: {
  12600. source: "./media/pokemon/Meowth - Galarian Form.svg"
  12601. },
  12602. rename: true
  12603. },
  12604. "Meowth": {
  12605. height: math.unit("16", "inches"),
  12606. weight: math.unit("9.3", "lbs"),
  12607. name: "Meowth",
  12608. image: {
  12609. source: "./media/pokemon/Meowth.svg"
  12610. },
  12611. rename: true
  12612. },
  12613. "Gigantamax Meowth": {
  12614. height: math.unit("1299", "inches"),
  12615. weight: math.unit("4976803.042163086", "lbs"),
  12616. name: "Gigantamax Meowth",
  12617. image: {
  12618. source: "./media/pokemon/Gigantamax Meowth.svg"
  12619. },
  12620. rename: true
  12621. }
  12622. },
  12623. [
  12624. {
  12625. name: "Micro",
  12626. height: math.unit(1.6, "inches")
  12627. },
  12628. {
  12629. name: "Normal",
  12630. height: math.unit(16, "inches"),
  12631. default: true
  12632. },
  12633. {
  12634. name: "Macro",
  12635. height: math.unit(1600.0, "inches")
  12636. },
  12637. {
  12638. name: "Megamacro",
  12639. height: math.unit(80000.0, "inches")
  12640. },
  12641. {
  12642. name: "Gigamacro",
  12643. height: math.unit(160000000.0, "inches")
  12644. }
  12645. ]
  12646. )
  12647. };
  12648. pokemonMakers["Orbeetle"] = () => {
  12649. return makeCharacter(
  12650. "Orbeetle",
  12651. "Pokemon",
  12652. {
  12653. "Orbeetle": {
  12654. height: math.unit("16", "inches"),
  12655. weight: math.unit("89.9", "lbs"),
  12656. name: "Orbeetle",
  12657. image: {
  12658. source: "./media/pokemon/Orbeetle.svg"
  12659. },
  12660. rename: true
  12661. },
  12662. "Gigantamax Orbeetle": {
  12663. height: math.unit("551", "inches"),
  12664. weight: math.unit("3671593.0602783207", "lbs"),
  12665. name: "Gigantamax Orbeetle",
  12666. image: {
  12667. source: "./media/pokemon/Gigantamax Orbeetle.svg"
  12668. },
  12669. rename: true
  12670. }
  12671. },
  12672. [
  12673. {
  12674. name: "Micro",
  12675. height: math.unit(1.6, "inches")
  12676. },
  12677. {
  12678. name: "Normal",
  12679. height: math.unit(16, "inches"),
  12680. default: true
  12681. },
  12682. {
  12683. name: "Macro",
  12684. height: math.unit(1600.0, "inches")
  12685. },
  12686. {
  12687. name: "Megamacro",
  12688. height: math.unit(80000.0, "inches")
  12689. },
  12690. {
  12691. name: "Gigamacro",
  12692. height: math.unit(160000000.0, "inches")
  12693. }
  12694. ]
  12695. )
  12696. };
  12697. pokemonMakers["Pikachu"] = () => {
  12698. return makeCharacter(
  12699. "Pikachu",
  12700. "Pokemon",
  12701. {
  12702. "Pikachu": {
  12703. height: math.unit("16", "inches"),
  12704. weight: math.unit("13.2", "lbs"),
  12705. name: "Pikachu",
  12706. image: {
  12707. source: "./media/pokemon/Pikachu.svg"
  12708. },
  12709. rename: true
  12710. },
  12711. "Gigantamax Pikachu": {
  12712. height: math.unit("827", "inches"),
  12713. weight: math.unit("1822764.2909179686", "lbs"),
  12714. name: "Gigantamax Pikachu",
  12715. image: {
  12716. source: "./media/pokemon/Gigantamax Pikachu.svg"
  12717. },
  12718. rename: true
  12719. }
  12720. },
  12721. [
  12722. {
  12723. name: "Micro",
  12724. height: math.unit(1.6, "inches")
  12725. },
  12726. {
  12727. name: "Normal",
  12728. height: math.unit(16, "inches"),
  12729. default: true
  12730. },
  12731. {
  12732. name: "Macro",
  12733. height: math.unit(1600.0, "inches")
  12734. },
  12735. {
  12736. name: "Megamacro",
  12737. height: math.unit(80000.0, "inches")
  12738. },
  12739. {
  12740. name: "Gigamacro",
  12741. height: math.unit(160000000.0, "inches")
  12742. }
  12743. ]
  12744. )
  12745. };
  12746. pokemonMakers["Sandaconda"] = () => {
  12747. return makeCharacter(
  12748. "Sandaconda",
  12749. "Pokemon",
  12750. {
  12751. "Sandaconda": {
  12752. height: math.unit("150", "inches"),
  12753. weight: math.unit("144.4", "lbs"),
  12754. name: "Sandaconda",
  12755. image: {
  12756. source: "./media/pokemon/Sandaconda.svg"
  12757. },
  12758. rename: true
  12759. },
  12760. "Gigantamax Sandaconda": {
  12761. height: math.unit("866", "inches"),
  12762. weight: math.unit("27787.347491081484", "lbs"),
  12763. name: "Gigantamax Sandaconda",
  12764. image: {
  12765. source: "./media/pokemon/Gigantamax Sandaconda.svg"
  12766. },
  12767. rename: true
  12768. }
  12769. },
  12770. [
  12771. {
  12772. name: "Micro",
  12773. height: math.unit(15.0, "inches")
  12774. },
  12775. {
  12776. name: "Normal",
  12777. height: math.unit(150, "inches"),
  12778. default: true
  12779. },
  12780. {
  12781. name: "Macro",
  12782. height: math.unit(15000.0, "inches")
  12783. },
  12784. {
  12785. name: "Megamacro",
  12786. height: math.unit(750000.0, "inches")
  12787. },
  12788. {
  12789. name: "Gigamacro",
  12790. height: math.unit(1500000000.0, "inches")
  12791. }
  12792. ]
  12793. )
  12794. };
  12795. pokemonMakers["Snorlax"] = () => {
  12796. return makeCharacter(
  12797. "Snorlax",
  12798. "Pokemon",
  12799. {
  12800. "Snorlax": {
  12801. height: math.unit("83", "inches"),
  12802. weight: math.unit("1014.1", "lbs"),
  12803. name: "Snorlax",
  12804. image: {
  12805. source: "./media/pokemon/Snorlax.svg"
  12806. },
  12807. rename: true
  12808. },
  12809. "Gigantamax Snorlax": {
  12810. height: math.unit("1378", "inches"),
  12811. weight: math.unit("4640813.954047924", "lbs"),
  12812. name: "Gigantamax Snorlax",
  12813. image: {
  12814. source: "./media/pokemon/Gigantamax Snorlax.svg"
  12815. },
  12816. rename: true
  12817. }
  12818. },
  12819. [
  12820. {
  12821. name: "Micro",
  12822. height: math.unit(8.3, "inches")
  12823. },
  12824. {
  12825. name: "Normal",
  12826. height: math.unit(83, "inches"),
  12827. default: true
  12828. },
  12829. {
  12830. name: "Macro",
  12831. height: math.unit(8300.0, "inches")
  12832. },
  12833. {
  12834. name: "Megamacro",
  12835. height: math.unit(415000.0, "inches")
  12836. },
  12837. {
  12838. name: "Gigamacro",
  12839. height: math.unit(830000000.0, "inches")
  12840. }
  12841. ]
  12842. )
  12843. };
  12844. pokemonMakers["Toxtricity"] = () => {
  12845. return makeCharacter(
  12846. "Toxtricity",
  12847. "Pokemon",
  12848. {
  12849. "Amped Form": {
  12850. height: math.unit("63", "inches"),
  12851. weight: math.unit("88.2", "lbs"),
  12852. name: "Amped Form",
  12853. image: {
  12854. source: "./media/pokemon/Toxtricity - Amped Form.svg"
  12855. },
  12856. rename: true
  12857. },
  12858. "Low Key Form": {
  12859. height: math.unit("63", "inches"),
  12860. weight: math.unit("88.2", "lbs"),
  12861. name: "Low Key Form",
  12862. image: {
  12863. source: "./media/pokemon/Toxtricity - Low Key Form.svg"
  12864. },
  12865. rename: true
  12866. },
  12867. "Gigantamax Toxtricity": {
  12868. height: math.unit("945", "inches"),
  12869. weight: math.unit("297675.0", "lbs"),
  12870. name: "Gigantamax Toxtricity",
  12871. image: {
  12872. source: "./media/pokemon/Gigantamax Toxtricity.svg"
  12873. },
  12874. rename: true
  12875. }
  12876. },
  12877. [
  12878. {
  12879. name: "Micro",
  12880. height: math.unit(6.3, "inches")
  12881. },
  12882. {
  12883. name: "Normal",
  12884. height: math.unit(63, "inches"),
  12885. default: true
  12886. },
  12887. {
  12888. name: "Macro",
  12889. height: math.unit(6300.0, "inches")
  12890. },
  12891. {
  12892. name: "Megamacro",
  12893. height: math.unit(315000.0, "inches")
  12894. },
  12895. {
  12896. name: "Gigamacro",
  12897. height: math.unit(630000000.0, "inches")
  12898. }
  12899. ]
  12900. )
  12901. };
  12902. pokemonMakers["Girafarig"] = () => {
  12903. return makeCharacter(
  12904. "Girafarig",
  12905. "Pokemon",
  12906. {
  12907. "Girafarig": {
  12908. height: math.unit("59", "inches"),
  12909. weight: math.unit("91.5", "lbs"),
  12910. name: "Girafarig",
  12911. image: {
  12912. source: "./media/pokemon/Girafarig.svg"
  12913. },
  12914. rename: true
  12915. }
  12916. },
  12917. [
  12918. {
  12919. name: "Micro",
  12920. height: math.unit(5.9, "inches")
  12921. },
  12922. {
  12923. name: "Normal",
  12924. height: math.unit(59, "inches"),
  12925. default: true
  12926. },
  12927. {
  12928. name: "Macro",
  12929. height: math.unit(5900.0, "inches")
  12930. },
  12931. {
  12932. name: "Megamacro",
  12933. height: math.unit(295000.0, "inches")
  12934. },
  12935. {
  12936. name: "Gigamacro",
  12937. height: math.unit(590000000.0, "inches")
  12938. }
  12939. ]
  12940. )
  12941. };
  12942. pokemonMakers["Giratina"] = () => {
  12943. return makeCharacter(
  12944. "Giratina",
  12945. "Pokemon",
  12946. {
  12947. "Altered Forme": {
  12948. height: math.unit("177", "inches"),
  12949. weight: math.unit("1653.5", "lbs"),
  12950. name: "Altered Forme",
  12951. image: {
  12952. source: "./media/pokemon/Giratina - Altered Forme.svg"
  12953. },
  12954. rename: true
  12955. },
  12956. "Origin Forme": {
  12957. height: math.unit("272", "inches"),
  12958. weight: math.unit("1433.0", "lbs"),
  12959. name: "Origin Forme",
  12960. image: {
  12961. source: "./media/pokemon/Giratina - Origin Forme.svg"
  12962. },
  12963. rename: true
  12964. }
  12965. },
  12966. [
  12967. {
  12968. name: "Micro",
  12969. height: math.unit(17.7, "inches")
  12970. },
  12971. {
  12972. name: "Normal",
  12973. height: math.unit(177, "inches"),
  12974. default: true
  12975. },
  12976. {
  12977. name: "Macro",
  12978. height: math.unit(17700.0, "inches")
  12979. },
  12980. {
  12981. name: "Megamacro",
  12982. height: math.unit(885000.0, "inches")
  12983. },
  12984. {
  12985. name: "Gigamacro",
  12986. height: math.unit(1770000000.0, "inches")
  12987. }
  12988. ]
  12989. )
  12990. };
  12991. pokemonMakers["Glaceon"] = () => {
  12992. return makeCharacter(
  12993. "Glaceon",
  12994. "Pokemon",
  12995. {
  12996. "Glaceon": {
  12997. height: math.unit("31", "inches"),
  12998. weight: math.unit("57.1", "lbs"),
  12999. name: "Glaceon",
  13000. image: {
  13001. source: "./media/pokemon/Glaceon.svg"
  13002. },
  13003. rename: true
  13004. }
  13005. },
  13006. [
  13007. {
  13008. name: "Micro",
  13009. height: math.unit(3.1, "inches")
  13010. },
  13011. {
  13012. name: "Normal",
  13013. height: math.unit(31, "inches"),
  13014. default: true
  13015. },
  13016. {
  13017. name: "Macro",
  13018. height: math.unit(3100.0, "inches")
  13019. },
  13020. {
  13021. name: "Megamacro",
  13022. height: math.unit(155000.0, "inches")
  13023. },
  13024. {
  13025. name: "Gigamacro",
  13026. height: math.unit(310000000.0, "inches")
  13027. }
  13028. ]
  13029. )
  13030. };
  13031. pokemonMakers["Glalie"] = () => {
  13032. return makeCharacter(
  13033. "Glalie",
  13034. "Pokemon",
  13035. {
  13036. "Glalie": {
  13037. height: math.unit("59", "inches"),
  13038. weight: math.unit("565.5", "lbs"),
  13039. name: "Glalie",
  13040. image: {
  13041. source: "./media/pokemon/Glalie.svg"
  13042. },
  13043. rename: true
  13044. },
  13045. "Mega Glalie": {
  13046. height: math.unit("83", "inches"),
  13047. weight: math.unit("772.1", "lbs"),
  13048. name: "Mega Glalie",
  13049. image: {
  13050. source: "./media/pokemon/Mega Glalie.svg"
  13051. },
  13052. rename: true
  13053. }
  13054. },
  13055. [
  13056. {
  13057. name: "Micro",
  13058. height: math.unit(5.9, "inches")
  13059. },
  13060. {
  13061. name: "Normal",
  13062. height: math.unit(59, "inches"),
  13063. default: true
  13064. },
  13065. {
  13066. name: "Macro",
  13067. height: math.unit(5900.0, "inches")
  13068. },
  13069. {
  13070. name: "Megamacro",
  13071. height: math.unit(295000.0, "inches")
  13072. },
  13073. {
  13074. name: "Gigamacro",
  13075. height: math.unit(590000000.0, "inches")
  13076. }
  13077. ]
  13078. )
  13079. };
  13080. pokemonMakers["Glameow"] = () => {
  13081. return makeCharacter(
  13082. "Glameow",
  13083. "Pokemon",
  13084. {
  13085. "Glameow": {
  13086. height: math.unit("20", "inches"),
  13087. weight: math.unit("8.6", "lbs"),
  13088. name: "Glameow",
  13089. image: {
  13090. source: "./media/pokemon/Glameow.svg"
  13091. },
  13092. rename: true
  13093. }
  13094. },
  13095. [
  13096. {
  13097. name: "Micro",
  13098. height: math.unit(2.0, "inches")
  13099. },
  13100. {
  13101. name: "Normal",
  13102. height: math.unit(20, "inches"),
  13103. default: true
  13104. },
  13105. {
  13106. name: "Macro",
  13107. height: math.unit(2000.0, "inches")
  13108. },
  13109. {
  13110. name: "Megamacro",
  13111. height: math.unit(100000.0, "inches")
  13112. },
  13113. {
  13114. name: "Gigamacro",
  13115. height: math.unit(200000000.0, "inches")
  13116. }
  13117. ]
  13118. )
  13119. };
  13120. pokemonMakers["Gligar"] = () => {
  13121. return makeCharacter(
  13122. "Gligar",
  13123. "Pokemon",
  13124. {
  13125. "Gligar": {
  13126. height: math.unit("43", "inches"),
  13127. weight: math.unit("142.9", "lbs"),
  13128. name: "Gligar",
  13129. image: {
  13130. source: "./media/pokemon/Gligar.svg"
  13131. },
  13132. rename: true
  13133. }
  13134. },
  13135. [
  13136. {
  13137. name: "Micro",
  13138. height: math.unit(4.3, "inches")
  13139. },
  13140. {
  13141. name: "Normal",
  13142. height: math.unit(43, "inches"),
  13143. default: true
  13144. },
  13145. {
  13146. name: "Macro",
  13147. height: math.unit(4300.0, "inches")
  13148. },
  13149. {
  13150. name: "Megamacro",
  13151. height: math.unit(215000.0, "inches")
  13152. },
  13153. {
  13154. name: "Gigamacro",
  13155. height: math.unit(430000000.0, "inches")
  13156. }
  13157. ]
  13158. )
  13159. };
  13160. pokemonMakers["Gliscor"] = () => {
  13161. return makeCharacter(
  13162. "Gliscor",
  13163. "Pokemon",
  13164. {
  13165. "Gliscor": {
  13166. height: math.unit("79", "inches"),
  13167. weight: math.unit("93.7", "lbs"),
  13168. name: "Gliscor",
  13169. image: {
  13170. source: "./media/pokemon/Gliscor.svg"
  13171. },
  13172. rename: true
  13173. }
  13174. },
  13175. [
  13176. {
  13177. name: "Micro",
  13178. height: math.unit(7.9, "inches")
  13179. },
  13180. {
  13181. name: "Normal",
  13182. height: math.unit(79, "inches"),
  13183. default: true
  13184. },
  13185. {
  13186. name: "Macro",
  13187. height: math.unit(7900.0, "inches")
  13188. },
  13189. {
  13190. name: "Megamacro",
  13191. height: math.unit(395000.0, "inches")
  13192. },
  13193. {
  13194. name: "Gigamacro",
  13195. height: math.unit(790000000.0, "inches")
  13196. }
  13197. ]
  13198. )
  13199. };
  13200. pokemonMakers["Gloom"] = () => {
  13201. return makeCharacter(
  13202. "Gloom",
  13203. "Pokemon",
  13204. {
  13205. "Gloom": {
  13206. height: math.unit("31", "inches"),
  13207. weight: math.unit("19.0", "lbs"),
  13208. name: "Gloom",
  13209. image: {
  13210. source: "./media/pokemon/Gloom.svg"
  13211. },
  13212. rename: true
  13213. }
  13214. },
  13215. [
  13216. {
  13217. name: "Micro",
  13218. height: math.unit(3.1, "inches")
  13219. },
  13220. {
  13221. name: "Normal",
  13222. height: math.unit(31, "inches"),
  13223. default: true
  13224. },
  13225. {
  13226. name: "Macro",
  13227. height: math.unit(3100.0, "inches")
  13228. },
  13229. {
  13230. name: "Megamacro",
  13231. height: math.unit(155000.0, "inches")
  13232. },
  13233. {
  13234. name: "Gigamacro",
  13235. height: math.unit(310000000.0, "inches")
  13236. }
  13237. ]
  13238. )
  13239. };
  13240. pokemonMakers["Gogoat"] = () => {
  13241. return makeCharacter(
  13242. "Gogoat",
  13243. "Pokemon",
  13244. {
  13245. "Gogoat": {
  13246. height: math.unit("67", "inches"),
  13247. weight: math.unit("200.6", "lbs"),
  13248. name: "Gogoat",
  13249. image: {
  13250. source: "./media/pokemon/Gogoat.svg"
  13251. },
  13252. rename: true
  13253. }
  13254. },
  13255. [
  13256. {
  13257. name: "Micro",
  13258. height: math.unit(6.7, "inches")
  13259. },
  13260. {
  13261. name: "Normal",
  13262. height: math.unit(67, "inches"),
  13263. default: true
  13264. },
  13265. {
  13266. name: "Macro",
  13267. height: math.unit(6700.0, "inches")
  13268. },
  13269. {
  13270. name: "Megamacro",
  13271. height: math.unit(335000.0, "inches")
  13272. },
  13273. {
  13274. name: "Gigamacro",
  13275. height: math.unit(670000000.0, "inches")
  13276. }
  13277. ]
  13278. )
  13279. };
  13280. pokemonMakers["Golbat"] = () => {
  13281. return makeCharacter(
  13282. "Golbat",
  13283. "Pokemon",
  13284. {
  13285. "Golbat": {
  13286. height: math.unit("63", "inches"),
  13287. weight: math.unit("121.3", "lbs"),
  13288. name: "Golbat",
  13289. image: {
  13290. source: "./media/pokemon/Golbat.svg"
  13291. },
  13292. rename: true
  13293. }
  13294. },
  13295. [
  13296. {
  13297. name: "Micro",
  13298. height: math.unit(6.3, "inches")
  13299. },
  13300. {
  13301. name: "Normal",
  13302. height: math.unit(63, "inches"),
  13303. default: true
  13304. },
  13305. {
  13306. name: "Macro",
  13307. height: math.unit(6300.0, "inches")
  13308. },
  13309. {
  13310. name: "Megamacro",
  13311. height: math.unit(315000.0, "inches")
  13312. },
  13313. {
  13314. name: "Gigamacro",
  13315. height: math.unit(630000000.0, "inches")
  13316. }
  13317. ]
  13318. )
  13319. };
  13320. pokemonMakers["Goldeen"] = () => {
  13321. return makeCharacter(
  13322. "Goldeen",
  13323. "Pokemon",
  13324. {
  13325. "Goldeen": {
  13326. height: math.unit("24", "inches"),
  13327. weight: math.unit("33.1", "lbs"),
  13328. name: "Goldeen",
  13329. image: {
  13330. source: "./media/pokemon/Goldeen.svg"
  13331. },
  13332. rename: true
  13333. }
  13334. },
  13335. [
  13336. {
  13337. name: "Micro",
  13338. height: math.unit(2.4, "inches")
  13339. },
  13340. {
  13341. name: "Normal",
  13342. height: math.unit(24, "inches"),
  13343. default: true
  13344. },
  13345. {
  13346. name: "Macro",
  13347. height: math.unit(2400.0, "inches")
  13348. },
  13349. {
  13350. name: "Megamacro",
  13351. height: math.unit(120000.0, "inches")
  13352. },
  13353. {
  13354. name: "Gigamacro",
  13355. height: math.unit(240000000.0, "inches")
  13356. }
  13357. ]
  13358. )
  13359. };
  13360. pokemonMakers["Golduck"] = () => {
  13361. return makeCharacter(
  13362. "Golduck",
  13363. "Pokemon",
  13364. {
  13365. "Golduck": {
  13366. height: math.unit("67", "inches"),
  13367. weight: math.unit("168.9", "lbs"),
  13368. name: "Golduck",
  13369. image: {
  13370. source: "./media/pokemon/Golduck.svg"
  13371. },
  13372. rename: true
  13373. }
  13374. },
  13375. [
  13376. {
  13377. name: "Micro",
  13378. height: math.unit(6.7, "inches")
  13379. },
  13380. {
  13381. name: "Normal",
  13382. height: math.unit(67, "inches"),
  13383. default: true
  13384. },
  13385. {
  13386. name: "Macro",
  13387. height: math.unit(6700.0, "inches")
  13388. },
  13389. {
  13390. name: "Megamacro",
  13391. height: math.unit(335000.0, "inches")
  13392. },
  13393. {
  13394. name: "Gigamacro",
  13395. height: math.unit(670000000.0, "inches")
  13396. }
  13397. ]
  13398. )
  13399. };
  13400. pokemonMakers["Golem"] = () => {
  13401. return makeCharacter(
  13402. "Golem",
  13403. "Pokemon",
  13404. {
  13405. "Alola Form": {
  13406. height: math.unit("67", "inches"),
  13407. weight: math.unit("696.7", "lbs"),
  13408. name: "Alola Form",
  13409. image: {
  13410. source: "./media/pokemon/Golem - Alola Form.svg"
  13411. },
  13412. rename: true
  13413. },
  13414. "Golem": {
  13415. height: math.unit("55", "inches"),
  13416. weight: math.unit("661.4", "lbs"),
  13417. name: "Golem",
  13418. image: {
  13419. source: "./media/pokemon/Golem.svg"
  13420. },
  13421. rename: true
  13422. }
  13423. },
  13424. [
  13425. {
  13426. name: "Micro",
  13427. height: math.unit(6.7, "inches")
  13428. },
  13429. {
  13430. name: "Normal",
  13431. height: math.unit(67, "inches"),
  13432. default: true
  13433. },
  13434. {
  13435. name: "Macro",
  13436. height: math.unit(6700.0, "inches")
  13437. },
  13438. {
  13439. name: "Megamacro",
  13440. height: math.unit(335000.0, "inches")
  13441. },
  13442. {
  13443. name: "Gigamacro",
  13444. height: math.unit(670000000.0, "inches")
  13445. }
  13446. ]
  13447. )
  13448. };
  13449. pokemonMakers["Golett"] = () => {
  13450. return makeCharacter(
  13451. "Golett",
  13452. "Pokemon",
  13453. {
  13454. "Golett": {
  13455. height: math.unit("39", "inches"),
  13456. weight: math.unit("202.8", "lbs"),
  13457. name: "Golett",
  13458. image: {
  13459. source: "./media/pokemon/Golett.svg"
  13460. },
  13461. rename: true
  13462. }
  13463. },
  13464. [
  13465. {
  13466. name: "Micro",
  13467. height: math.unit(3.9, "inches")
  13468. },
  13469. {
  13470. name: "Normal",
  13471. height: math.unit(39, "inches"),
  13472. default: true
  13473. },
  13474. {
  13475. name: "Macro",
  13476. height: math.unit(3900.0, "inches")
  13477. },
  13478. {
  13479. name: "Megamacro",
  13480. height: math.unit(195000.0, "inches")
  13481. },
  13482. {
  13483. name: "Gigamacro",
  13484. height: math.unit(390000000.0, "inches")
  13485. }
  13486. ]
  13487. )
  13488. };
  13489. pokemonMakers["Golisopod"] = () => {
  13490. return makeCharacter(
  13491. "Golisopod",
  13492. "Pokemon",
  13493. {
  13494. "Golisopod": {
  13495. height: math.unit("79", "inches"),
  13496. weight: math.unit("238.1", "lbs"),
  13497. name: "Golisopod",
  13498. image: {
  13499. source: "./media/pokemon/Golisopod.svg"
  13500. },
  13501. rename: true
  13502. }
  13503. },
  13504. [
  13505. {
  13506. name: "Micro",
  13507. height: math.unit(7.9, "inches")
  13508. },
  13509. {
  13510. name: "Normal",
  13511. height: math.unit(79, "inches"),
  13512. default: true
  13513. },
  13514. {
  13515. name: "Macro",
  13516. height: math.unit(7900.0, "inches")
  13517. },
  13518. {
  13519. name: "Megamacro",
  13520. height: math.unit(395000.0, "inches")
  13521. },
  13522. {
  13523. name: "Gigamacro",
  13524. height: math.unit(790000000.0, "inches")
  13525. }
  13526. ]
  13527. )
  13528. };
  13529. pokemonMakers["Golurk"] = () => {
  13530. return makeCharacter(
  13531. "Golurk",
  13532. "Pokemon",
  13533. {
  13534. "Golurk": {
  13535. height: math.unit("110", "inches"),
  13536. weight: math.unit("727.5", "lbs"),
  13537. name: "Golurk",
  13538. image: {
  13539. source: "./media/pokemon/Golurk.svg"
  13540. },
  13541. rename: true
  13542. }
  13543. },
  13544. [
  13545. {
  13546. name: "Micro",
  13547. height: math.unit(11.0, "inches")
  13548. },
  13549. {
  13550. name: "Normal",
  13551. height: math.unit(110, "inches"),
  13552. default: true
  13553. },
  13554. {
  13555. name: "Macro",
  13556. height: math.unit(11000.0, "inches")
  13557. },
  13558. {
  13559. name: "Megamacro",
  13560. height: math.unit(550000.0, "inches")
  13561. },
  13562. {
  13563. name: "Gigamacro",
  13564. height: math.unit(1100000000.0, "inches")
  13565. }
  13566. ]
  13567. )
  13568. };
  13569. pokemonMakers["Goodra"] = () => {
  13570. return makeCharacter(
  13571. "Goodra",
  13572. "Pokemon",
  13573. {
  13574. "Goodra": {
  13575. height: math.unit("79", "inches"),
  13576. weight: math.unit("331.8", "lbs"),
  13577. name: "Goodra",
  13578. image: {
  13579. source: "./media/pokemon/Goodra.svg"
  13580. },
  13581. rename: true
  13582. }
  13583. },
  13584. [
  13585. {
  13586. name: "Micro",
  13587. height: math.unit(7.9, "inches")
  13588. },
  13589. {
  13590. name: "Normal",
  13591. height: math.unit(79, "inches"),
  13592. default: true
  13593. },
  13594. {
  13595. name: "Macro",
  13596. height: math.unit(7900.0, "inches")
  13597. },
  13598. {
  13599. name: "Megamacro",
  13600. height: math.unit(395000.0, "inches")
  13601. },
  13602. {
  13603. name: "Gigamacro",
  13604. height: math.unit(790000000.0, "inches")
  13605. }
  13606. ]
  13607. )
  13608. };
  13609. pokemonMakers["Goomy"] = () => {
  13610. return makeCharacter(
  13611. "Goomy",
  13612. "Pokemon",
  13613. {
  13614. "Goomy": {
  13615. height: math.unit("12", "inches"),
  13616. weight: math.unit("6.2", "lbs"),
  13617. name: "Goomy",
  13618. image: {
  13619. source: "./media/pokemon/Goomy.svg"
  13620. },
  13621. rename: true
  13622. }
  13623. },
  13624. [
  13625. {
  13626. name: "Micro",
  13627. height: math.unit(1.2, "inches")
  13628. },
  13629. {
  13630. name: "Normal",
  13631. height: math.unit(12, "inches"),
  13632. default: true
  13633. },
  13634. {
  13635. name: "Macro",
  13636. height: math.unit(1200.0, "inches")
  13637. },
  13638. {
  13639. name: "Megamacro",
  13640. height: math.unit(60000.0, "inches")
  13641. },
  13642. {
  13643. name: "Gigamacro",
  13644. height: math.unit(120000000.0, "inches")
  13645. }
  13646. ]
  13647. )
  13648. };
  13649. pokemonMakers["Gorebyss"] = () => {
  13650. return makeCharacter(
  13651. "Gorebyss",
  13652. "Pokemon",
  13653. {
  13654. "Gorebyss": {
  13655. height: math.unit("71", "inches"),
  13656. weight: math.unit("49.8", "lbs"),
  13657. name: "Gorebyss",
  13658. image: {
  13659. source: "./media/pokemon/Gorebyss.svg"
  13660. },
  13661. rename: true
  13662. }
  13663. },
  13664. [
  13665. {
  13666. name: "Micro",
  13667. height: math.unit(7.1, "inches")
  13668. },
  13669. {
  13670. name: "Normal",
  13671. height: math.unit(71, "inches"),
  13672. default: true
  13673. },
  13674. {
  13675. name: "Macro",
  13676. height: math.unit(7100.0, "inches")
  13677. },
  13678. {
  13679. name: "Megamacro",
  13680. height: math.unit(355000.0, "inches")
  13681. },
  13682. {
  13683. name: "Gigamacro",
  13684. height: math.unit(710000000.0, "inches")
  13685. }
  13686. ]
  13687. )
  13688. };
  13689. pokemonMakers["Gossifleur"] = () => {
  13690. return makeCharacter(
  13691. "Gossifleur",
  13692. "Pokemon",
  13693. {
  13694. "Gossifleur": {
  13695. height: math.unit("16", "inches"),
  13696. weight: math.unit("4.9", "lbs"),
  13697. name: "Gossifleur",
  13698. image: {
  13699. source: "./media/pokemon/Gossifleur.svg"
  13700. },
  13701. rename: true
  13702. }
  13703. },
  13704. [
  13705. {
  13706. name: "Micro",
  13707. height: math.unit(1.6, "inches")
  13708. },
  13709. {
  13710. name: "Normal",
  13711. height: math.unit(16, "inches"),
  13712. default: true
  13713. },
  13714. {
  13715. name: "Macro",
  13716. height: math.unit(1600.0, "inches")
  13717. },
  13718. {
  13719. name: "Megamacro",
  13720. height: math.unit(80000.0, "inches")
  13721. },
  13722. {
  13723. name: "Gigamacro",
  13724. height: math.unit(160000000.0, "inches")
  13725. }
  13726. ]
  13727. )
  13728. };
  13729. pokemonMakers["Gothita"] = () => {
  13730. return makeCharacter(
  13731. "Gothita",
  13732. "Pokemon",
  13733. {
  13734. "Gothita": {
  13735. height: math.unit("16", "inches"),
  13736. weight: math.unit("12.8", "lbs"),
  13737. name: "Gothita",
  13738. image: {
  13739. source: "./media/pokemon/Gothita.svg"
  13740. },
  13741. rename: true
  13742. }
  13743. },
  13744. [
  13745. {
  13746. name: "Micro",
  13747. height: math.unit(1.6, "inches")
  13748. },
  13749. {
  13750. name: "Normal",
  13751. height: math.unit(16, "inches"),
  13752. default: true
  13753. },
  13754. {
  13755. name: "Macro",
  13756. height: math.unit(1600.0, "inches")
  13757. },
  13758. {
  13759. name: "Megamacro",
  13760. height: math.unit(80000.0, "inches")
  13761. },
  13762. {
  13763. name: "Gigamacro",
  13764. height: math.unit(160000000.0, "inches")
  13765. }
  13766. ]
  13767. )
  13768. };
  13769. pokemonMakers["Gothitelle"] = () => {
  13770. return makeCharacter(
  13771. "Gothitelle",
  13772. "Pokemon",
  13773. {
  13774. "Gothitelle": {
  13775. height: math.unit("59", "inches"),
  13776. weight: math.unit("97.0", "lbs"),
  13777. name: "Gothitelle",
  13778. image: {
  13779. source: "./media/pokemon/Gothitelle.svg"
  13780. },
  13781. rename: true
  13782. }
  13783. },
  13784. [
  13785. {
  13786. name: "Micro",
  13787. height: math.unit(5.9, "inches")
  13788. },
  13789. {
  13790. name: "Normal",
  13791. height: math.unit(59, "inches"),
  13792. default: true
  13793. },
  13794. {
  13795. name: "Macro",
  13796. height: math.unit(5900.0, "inches")
  13797. },
  13798. {
  13799. name: "Megamacro",
  13800. height: math.unit(295000.0, "inches")
  13801. },
  13802. {
  13803. name: "Gigamacro",
  13804. height: math.unit(590000000.0, "inches")
  13805. }
  13806. ]
  13807. )
  13808. };
  13809. pokemonMakers["Gothorita"] = () => {
  13810. return makeCharacter(
  13811. "Gothorita",
  13812. "Pokemon",
  13813. {
  13814. "Gothorita": {
  13815. height: math.unit("28", "inches"),
  13816. weight: math.unit("39.7", "lbs"),
  13817. name: "Gothorita",
  13818. image: {
  13819. source: "./media/pokemon/Gothorita.svg"
  13820. },
  13821. rename: true
  13822. }
  13823. },
  13824. [
  13825. {
  13826. name: "Micro",
  13827. height: math.unit(2.8, "inches")
  13828. },
  13829. {
  13830. name: "Normal",
  13831. height: math.unit(28, "inches"),
  13832. default: true
  13833. },
  13834. {
  13835. name: "Macro",
  13836. height: math.unit(2800.0, "inches")
  13837. },
  13838. {
  13839. name: "Megamacro",
  13840. height: math.unit(140000.0, "inches")
  13841. },
  13842. {
  13843. name: "Gigamacro",
  13844. height: math.unit(280000000.0, "inches")
  13845. }
  13846. ]
  13847. )
  13848. };
  13849. pokemonMakers["Gourgeist"] = () => {
  13850. return makeCharacter(
  13851. "Gourgeist",
  13852. "Pokemon",
  13853. {
  13854. "Large Size": {
  13855. height: math.unit("43", "inches"),
  13856. weight: math.unit("30.9", "lbs"),
  13857. name: "Large Size",
  13858. image: {
  13859. source: "./media/pokemon/Gourgeist - Large Size.svg"
  13860. },
  13861. rename: true
  13862. },
  13863. "Small Size": {
  13864. height: math.unit("28", "inches"),
  13865. weight: math.unit("20.9", "lbs"),
  13866. name: "Small Size",
  13867. image: {
  13868. source: "./media/pokemon/Gourgeist - Small Size.svg"
  13869. },
  13870. rename: true
  13871. },
  13872. "Super Size": {
  13873. height: math.unit("67", "inches"),
  13874. weight: math.unit("86.0", "lbs"),
  13875. name: "Super Size",
  13876. image: {
  13877. source: "./media/pokemon/Gourgeist - Super Size.svg"
  13878. },
  13879. rename: true
  13880. },
  13881. "Gourgeist": {
  13882. height: math.unit("35", "inches"),
  13883. weight: math.unit("27.6", "lbs"),
  13884. name: "Gourgeist",
  13885. image: {
  13886. source: "./media/pokemon/Gourgeist.svg"
  13887. },
  13888. rename: true
  13889. }
  13890. },
  13891. [
  13892. {
  13893. name: "Micro",
  13894. height: math.unit(4.3, "inches")
  13895. },
  13896. {
  13897. name: "Normal",
  13898. height: math.unit(43, "inches"),
  13899. default: true
  13900. },
  13901. {
  13902. name: "Macro",
  13903. height: math.unit(4300.0, "inches")
  13904. },
  13905. {
  13906. name: "Megamacro",
  13907. height: math.unit(215000.0, "inches")
  13908. },
  13909. {
  13910. name: "Gigamacro",
  13911. height: math.unit(430000000.0, "inches")
  13912. }
  13913. ]
  13914. )
  13915. };
  13916. pokemonMakers["Granbull"] = () => {
  13917. return makeCharacter(
  13918. "Granbull",
  13919. "Pokemon",
  13920. {
  13921. "Granbull": {
  13922. height: math.unit("55", "inches"),
  13923. weight: math.unit("107.4", "lbs"),
  13924. name: "Granbull",
  13925. image: {
  13926. source: "./media/pokemon/Granbull.svg"
  13927. },
  13928. rename: true
  13929. }
  13930. },
  13931. [
  13932. {
  13933. name: "Micro",
  13934. height: math.unit(5.5, "inches")
  13935. },
  13936. {
  13937. name: "Normal",
  13938. height: math.unit(55, "inches"),
  13939. default: true
  13940. },
  13941. {
  13942. name: "Macro",
  13943. height: math.unit(5500.0, "inches")
  13944. },
  13945. {
  13946. name: "Megamacro",
  13947. height: math.unit(275000.0, "inches")
  13948. },
  13949. {
  13950. name: "Gigamacro",
  13951. height: math.unit(550000000.0, "inches")
  13952. }
  13953. ]
  13954. )
  13955. };
  13956. pokemonMakers["Grapploct"] = () => {
  13957. return makeCharacter(
  13958. "Grapploct",
  13959. "Pokemon",
  13960. {
  13961. "Grapploct": {
  13962. height: math.unit("63", "inches"),
  13963. weight: math.unit("86.0", "lbs"),
  13964. name: "Grapploct",
  13965. image: {
  13966. source: "./media/pokemon/Grapploct.svg"
  13967. },
  13968. rename: true
  13969. }
  13970. },
  13971. [
  13972. {
  13973. name: "Micro",
  13974. height: math.unit(6.3, "inches")
  13975. },
  13976. {
  13977. name: "Normal",
  13978. height: math.unit(63, "inches"),
  13979. default: true
  13980. },
  13981. {
  13982. name: "Macro",
  13983. height: math.unit(6300.0, "inches")
  13984. },
  13985. {
  13986. name: "Megamacro",
  13987. height: math.unit(315000.0, "inches")
  13988. },
  13989. {
  13990. name: "Gigamacro",
  13991. height: math.unit(630000000.0, "inches")
  13992. }
  13993. ]
  13994. )
  13995. };
  13996. pokemonMakers["Graveler"] = () => {
  13997. return makeCharacter(
  13998. "Graveler",
  13999. "Pokemon",
  14000. {
  14001. "Alola Form": {
  14002. height: math.unit("39", "inches"),
  14003. weight: math.unit("242.5", "lbs"),
  14004. name: "Alola Form",
  14005. image: {
  14006. source: "./media/pokemon/Graveler - Alola Form.svg"
  14007. },
  14008. rename: true
  14009. },
  14010. "Graveler": {
  14011. height: math.unit("39", "inches"),
  14012. weight: math.unit("231.5", "lbs"),
  14013. name: "Graveler",
  14014. image: {
  14015. source: "./media/pokemon/Graveler.svg"
  14016. },
  14017. rename: true
  14018. }
  14019. },
  14020. [
  14021. {
  14022. name: "Micro",
  14023. height: math.unit(3.9, "inches")
  14024. },
  14025. {
  14026. name: "Normal",
  14027. height: math.unit(39, "inches"),
  14028. default: true
  14029. },
  14030. {
  14031. name: "Macro",
  14032. height: math.unit(3900.0, "inches")
  14033. },
  14034. {
  14035. name: "Megamacro",
  14036. height: math.unit(195000.0, "inches")
  14037. },
  14038. {
  14039. name: "Gigamacro",
  14040. height: math.unit(390000000.0, "inches")
  14041. }
  14042. ]
  14043. )
  14044. };
  14045. pokemonMakers["Greedent"] = () => {
  14046. return makeCharacter(
  14047. "Greedent",
  14048. "Pokemon",
  14049. {
  14050. "Greedent": {
  14051. height: math.unit("24", "inches"),
  14052. weight: math.unit("13.2", "lbs"),
  14053. name: "Greedent",
  14054. image: {
  14055. source: "./media/pokemon/Greedent.svg"
  14056. },
  14057. rename: true
  14058. }
  14059. },
  14060. [
  14061. {
  14062. name: "Micro",
  14063. height: math.unit(2.4, "inches")
  14064. },
  14065. {
  14066. name: "Normal",
  14067. height: math.unit(24, "inches"),
  14068. default: true
  14069. },
  14070. {
  14071. name: "Macro",
  14072. height: math.unit(2400.0, "inches")
  14073. },
  14074. {
  14075. name: "Megamacro",
  14076. height: math.unit(120000.0, "inches")
  14077. },
  14078. {
  14079. name: "Gigamacro",
  14080. height: math.unit(240000000.0, "inches")
  14081. }
  14082. ]
  14083. )
  14084. };
  14085. pokemonMakers["Grimer"] = () => {
  14086. return makeCharacter(
  14087. "Grimer",
  14088. "Pokemon",
  14089. {
  14090. "Alola Form": {
  14091. height: math.unit("28", "inches"),
  14092. weight: math.unit("92.6", "lbs"),
  14093. name: "Alola Form",
  14094. image: {
  14095. source: "./media/pokemon/Grimer - Alola Form.svg"
  14096. },
  14097. rename: true
  14098. },
  14099. "Grimer": {
  14100. height: math.unit("35", "inches"),
  14101. weight: math.unit("66.1", "lbs"),
  14102. name: "Grimer",
  14103. image: {
  14104. source: "./media/pokemon/Grimer.svg"
  14105. },
  14106. rename: true
  14107. }
  14108. },
  14109. [
  14110. {
  14111. name: "Micro",
  14112. height: math.unit(2.8, "inches")
  14113. },
  14114. {
  14115. name: "Normal",
  14116. height: math.unit(28, "inches"),
  14117. default: true
  14118. },
  14119. {
  14120. name: "Macro",
  14121. height: math.unit(2800.0, "inches")
  14122. },
  14123. {
  14124. name: "Megamacro",
  14125. height: math.unit(140000.0, "inches")
  14126. },
  14127. {
  14128. name: "Gigamacro",
  14129. height: math.unit(280000000.0, "inches")
  14130. }
  14131. ]
  14132. )
  14133. };
  14134. pokemonMakers["Grookey"] = () => {
  14135. return makeCharacter(
  14136. "Grookey",
  14137. "Pokemon",
  14138. {
  14139. "Grookey": {
  14140. height: math.unit("12", "inches"),
  14141. weight: math.unit("11.0", "lbs"),
  14142. name: "Grookey",
  14143. image: {
  14144. source: "./media/pokemon/Grookey.svg"
  14145. },
  14146. rename: true
  14147. }
  14148. },
  14149. [
  14150. {
  14151. name: "Micro",
  14152. height: math.unit(1.2, "inches")
  14153. },
  14154. {
  14155. name: "Normal",
  14156. height: math.unit(12, "inches"),
  14157. default: true
  14158. },
  14159. {
  14160. name: "Macro",
  14161. height: math.unit(1200.0, "inches")
  14162. },
  14163. {
  14164. name: "Megamacro",
  14165. height: math.unit(60000.0, "inches")
  14166. },
  14167. {
  14168. name: "Gigamacro",
  14169. height: math.unit(120000000.0, "inches")
  14170. }
  14171. ]
  14172. )
  14173. };
  14174. pokemonMakers["Grotle"] = () => {
  14175. return makeCharacter(
  14176. "Grotle",
  14177. "Pokemon",
  14178. {
  14179. "Grotle": {
  14180. height: math.unit("43", "inches"),
  14181. weight: math.unit("213.8", "lbs"),
  14182. name: "Grotle",
  14183. image: {
  14184. source: "./media/pokemon/Grotle.svg"
  14185. },
  14186. rename: true
  14187. }
  14188. },
  14189. [
  14190. {
  14191. name: "Micro",
  14192. height: math.unit(4.3, "inches")
  14193. },
  14194. {
  14195. name: "Normal",
  14196. height: math.unit(43, "inches"),
  14197. default: true
  14198. },
  14199. {
  14200. name: "Macro",
  14201. height: math.unit(4300.0, "inches")
  14202. },
  14203. {
  14204. name: "Megamacro",
  14205. height: math.unit(215000.0, "inches")
  14206. },
  14207. {
  14208. name: "Gigamacro",
  14209. height: math.unit(430000000.0, "inches")
  14210. }
  14211. ]
  14212. )
  14213. };
  14214. pokemonMakers["Groudon"] = () => {
  14215. return makeCharacter(
  14216. "Groudon",
  14217. "Pokemon",
  14218. {
  14219. "Groudon": {
  14220. height: math.unit("138", "inches"),
  14221. weight: math.unit("2094.4", "lbs"),
  14222. name: "Groudon",
  14223. image: {
  14224. source: "./media/pokemon/Groudon.svg"
  14225. },
  14226. rename: true
  14227. },
  14228. "Primal Groudon": {
  14229. height: math.unit("197", "inches"),
  14230. weight: math.unit("2204.0", "lbs"),
  14231. name: "Primal Groudon",
  14232. image: {
  14233. source: "./media/pokemon/Primal Groudon.svg"
  14234. },
  14235. rename: true
  14236. }
  14237. },
  14238. [
  14239. {
  14240. name: "Micro",
  14241. height: math.unit(13.8, "inches")
  14242. },
  14243. {
  14244. name: "Normal",
  14245. height: math.unit(138, "inches"),
  14246. default: true
  14247. },
  14248. {
  14249. name: "Macro",
  14250. height: math.unit(13800.0, "inches")
  14251. },
  14252. {
  14253. name: "Megamacro",
  14254. height: math.unit(690000.0, "inches")
  14255. },
  14256. {
  14257. name: "Gigamacro",
  14258. height: math.unit(1380000000.0, "inches")
  14259. }
  14260. ]
  14261. )
  14262. };
  14263. pokemonMakers["Grovyle"] = () => {
  14264. return makeCharacter(
  14265. "Grovyle",
  14266. "Pokemon",
  14267. {
  14268. "Grovyle": {
  14269. height: math.unit("35", "inches"),
  14270. weight: math.unit("47.6", "lbs"),
  14271. name: "Grovyle",
  14272. image: {
  14273. source: "./media/pokemon/Grovyle.svg"
  14274. },
  14275. rename: true
  14276. }
  14277. },
  14278. [
  14279. {
  14280. name: "Micro",
  14281. height: math.unit(3.5, "inches")
  14282. },
  14283. {
  14284. name: "Normal",
  14285. height: math.unit(35, "inches"),
  14286. default: true
  14287. },
  14288. {
  14289. name: "Macro",
  14290. height: math.unit(3500.0, "inches")
  14291. },
  14292. {
  14293. name: "Megamacro",
  14294. height: math.unit(175000.0, "inches")
  14295. },
  14296. {
  14297. name: "Gigamacro",
  14298. height: math.unit(350000000.0, "inches")
  14299. }
  14300. ]
  14301. )
  14302. };
  14303. pokemonMakers["Growlithe"] = () => {
  14304. return makeCharacter(
  14305. "Growlithe",
  14306. "Pokemon",
  14307. {
  14308. "Growlithe": {
  14309. height: math.unit("28", "inches"),
  14310. weight: math.unit("41.9", "lbs"),
  14311. name: "Growlithe",
  14312. image: {
  14313. source: "./media/pokemon/Growlithe.svg"
  14314. },
  14315. rename: true
  14316. }
  14317. },
  14318. [
  14319. {
  14320. name: "Micro",
  14321. height: math.unit(2.8, "inches")
  14322. },
  14323. {
  14324. name: "Normal",
  14325. height: math.unit(28, "inches"),
  14326. default: true
  14327. },
  14328. {
  14329. name: "Macro",
  14330. height: math.unit(2800.0, "inches")
  14331. },
  14332. {
  14333. name: "Megamacro",
  14334. height: math.unit(140000.0, "inches")
  14335. },
  14336. {
  14337. name: "Gigamacro",
  14338. height: math.unit(280000000.0, "inches")
  14339. }
  14340. ]
  14341. )
  14342. };
  14343. pokemonMakers["Grubbin"] = () => {
  14344. return makeCharacter(
  14345. "Grubbin",
  14346. "Pokemon",
  14347. {
  14348. "Grubbin": {
  14349. height: math.unit("16", "inches"),
  14350. weight: math.unit("9.7", "lbs"),
  14351. name: "Grubbin",
  14352. image: {
  14353. source: "./media/pokemon/Grubbin.svg"
  14354. },
  14355. rename: true
  14356. }
  14357. },
  14358. [
  14359. {
  14360. name: "Micro",
  14361. height: math.unit(1.6, "inches")
  14362. },
  14363. {
  14364. name: "Normal",
  14365. height: math.unit(16, "inches"),
  14366. default: true
  14367. },
  14368. {
  14369. name: "Macro",
  14370. height: math.unit(1600.0, "inches")
  14371. },
  14372. {
  14373. name: "Megamacro",
  14374. height: math.unit(80000.0, "inches")
  14375. },
  14376. {
  14377. name: "Gigamacro",
  14378. height: math.unit(160000000.0, "inches")
  14379. }
  14380. ]
  14381. )
  14382. };
  14383. pokemonMakers["Grumpig"] = () => {
  14384. return makeCharacter(
  14385. "Grumpig",
  14386. "Pokemon",
  14387. {
  14388. "Grumpig": {
  14389. height: math.unit("35", "inches"),
  14390. weight: math.unit("157.6", "lbs"),
  14391. name: "Grumpig",
  14392. image: {
  14393. source: "./media/pokemon/Grumpig.svg"
  14394. },
  14395. rename: true
  14396. }
  14397. },
  14398. [
  14399. {
  14400. name: "Micro",
  14401. height: math.unit(3.5, "inches")
  14402. },
  14403. {
  14404. name: "Normal",
  14405. height: math.unit(35, "inches"),
  14406. default: true
  14407. },
  14408. {
  14409. name: "Macro",
  14410. height: math.unit(3500.0, "inches")
  14411. },
  14412. {
  14413. name: "Megamacro",
  14414. height: math.unit(175000.0, "inches")
  14415. },
  14416. {
  14417. name: "Gigamacro",
  14418. height: math.unit(350000000.0, "inches")
  14419. }
  14420. ]
  14421. )
  14422. };
  14423. pokemonMakers["Gulpin"] = () => {
  14424. return makeCharacter(
  14425. "Gulpin",
  14426. "Pokemon",
  14427. {
  14428. "Gulpin": {
  14429. height: math.unit("16", "inches"),
  14430. weight: math.unit("22.7", "lbs"),
  14431. name: "Gulpin",
  14432. image: {
  14433. source: "./media/pokemon/Gulpin.svg"
  14434. },
  14435. rename: true
  14436. }
  14437. },
  14438. [
  14439. {
  14440. name: "Micro",
  14441. height: math.unit(1.6, "inches")
  14442. },
  14443. {
  14444. name: "Normal",
  14445. height: math.unit(16, "inches"),
  14446. default: true
  14447. },
  14448. {
  14449. name: "Macro",
  14450. height: math.unit(1600.0, "inches")
  14451. },
  14452. {
  14453. name: "Megamacro",
  14454. height: math.unit(80000.0, "inches")
  14455. },
  14456. {
  14457. name: "Gigamacro",
  14458. height: math.unit(160000000.0, "inches")
  14459. }
  14460. ]
  14461. )
  14462. };
  14463. pokemonMakers["Gumshoos"] = () => {
  14464. return makeCharacter(
  14465. "Gumshoos",
  14466. "Pokemon",
  14467. {
  14468. "Gumshoos": {
  14469. height: math.unit("28", "inches"),
  14470. weight: math.unit("31.3", "lbs"),
  14471. name: "Gumshoos",
  14472. image: {
  14473. source: "./media/pokemon/Gumshoos.svg"
  14474. },
  14475. rename: true
  14476. }
  14477. },
  14478. [
  14479. {
  14480. name: "Micro",
  14481. height: math.unit(2.8, "inches")
  14482. },
  14483. {
  14484. name: "Normal",
  14485. height: math.unit(28, "inches"),
  14486. default: true
  14487. },
  14488. {
  14489. name: "Macro",
  14490. height: math.unit(2800.0, "inches")
  14491. },
  14492. {
  14493. name: "Megamacro",
  14494. height: math.unit(140000.0, "inches")
  14495. },
  14496. {
  14497. name: "Gigamacro",
  14498. height: math.unit(280000000.0, "inches")
  14499. }
  14500. ]
  14501. )
  14502. };
  14503. pokemonMakers["Gurdurr"] = () => {
  14504. return makeCharacter(
  14505. "Gurdurr",
  14506. "Pokemon",
  14507. {
  14508. "Gurdurr": {
  14509. height: math.unit("47", "inches"),
  14510. weight: math.unit("88.2", "lbs"),
  14511. name: "Gurdurr",
  14512. image: {
  14513. source: "./media/pokemon/Gurdurr.svg"
  14514. },
  14515. rename: true
  14516. }
  14517. },
  14518. [
  14519. {
  14520. name: "Micro",
  14521. height: math.unit(4.7, "inches")
  14522. },
  14523. {
  14524. name: "Normal",
  14525. height: math.unit(47, "inches"),
  14526. default: true
  14527. },
  14528. {
  14529. name: "Macro",
  14530. height: math.unit(4700.0, "inches")
  14531. },
  14532. {
  14533. name: "Megamacro",
  14534. height: math.unit(235000.0, "inches")
  14535. },
  14536. {
  14537. name: "Gigamacro",
  14538. height: math.unit(470000000.0, "inches")
  14539. }
  14540. ]
  14541. )
  14542. };
  14543. pokemonMakers["Guzzlord"] = () => {
  14544. return makeCharacter(
  14545. "Guzzlord",
  14546. "Pokemon",
  14547. {
  14548. "Guzzlord": {
  14549. height: math.unit("217", "inches"),
  14550. weight: math.unit("1957.7", "lbs"),
  14551. name: "Guzzlord",
  14552. image: {
  14553. source: "./media/pokemon/Guzzlord.svg"
  14554. },
  14555. rename: true
  14556. }
  14557. },
  14558. [
  14559. {
  14560. name: "Micro",
  14561. height: math.unit(21.7, "inches")
  14562. },
  14563. {
  14564. name: "Normal",
  14565. height: math.unit(217, "inches"),
  14566. default: true
  14567. },
  14568. {
  14569. name: "Macro",
  14570. height: math.unit(21700.0, "inches")
  14571. },
  14572. {
  14573. name: "Megamacro",
  14574. height: math.unit(1085000.0, "inches")
  14575. },
  14576. {
  14577. name: "Gigamacro",
  14578. height: math.unit(2170000000.0, "inches")
  14579. }
  14580. ]
  14581. )
  14582. };
  14583. pokemonMakers["Gyarados"] = () => {
  14584. return makeCharacter(
  14585. "Gyarados",
  14586. "Pokemon",
  14587. {
  14588. "Gyarados": {
  14589. height: math.unit("256", "inches"),
  14590. weight: math.unit("518.1", "lbs"),
  14591. name: "Gyarados",
  14592. image: {
  14593. source: "./media/pokemon/Gyarados.svg"
  14594. },
  14595. rename: true
  14596. },
  14597. "Mega Gyarados": {
  14598. height: math.unit("256", "inches"),
  14599. weight: math.unit("672.4", "lbs"),
  14600. name: "Mega Gyarados",
  14601. image: {
  14602. source: "./media/pokemon/Mega Gyarados.svg"
  14603. },
  14604. rename: true
  14605. }
  14606. },
  14607. [
  14608. {
  14609. name: "Micro",
  14610. height: math.unit(25.6, "inches")
  14611. },
  14612. {
  14613. name: "Normal",
  14614. height: math.unit(256, "inches"),
  14615. default: true
  14616. },
  14617. {
  14618. name: "Macro",
  14619. height: math.unit(25600.0, "inches")
  14620. },
  14621. {
  14622. name: "Megamacro",
  14623. height: math.unit(1280000.0, "inches")
  14624. },
  14625. {
  14626. name: "Gigamacro",
  14627. height: math.unit(2560000000.0, "inches")
  14628. }
  14629. ]
  14630. )
  14631. };
  14632. pokemonMakers["Hakamo-o"] = () => {
  14633. return makeCharacter(
  14634. "Hakamo-o",
  14635. "Pokemon",
  14636. {
  14637. "Hakamo-o": {
  14638. height: math.unit("47", "inches"),
  14639. weight: math.unit("103.6", "lbs"),
  14640. name: "Hakamo-o",
  14641. image: {
  14642. source: "./media/pokemon/Hakamo-o.svg"
  14643. },
  14644. rename: true
  14645. }
  14646. },
  14647. [
  14648. {
  14649. name: "Micro",
  14650. height: math.unit(4.7, "inches")
  14651. },
  14652. {
  14653. name: "Normal",
  14654. height: math.unit(47, "inches"),
  14655. default: true
  14656. },
  14657. {
  14658. name: "Macro",
  14659. height: math.unit(4700.0, "inches")
  14660. },
  14661. {
  14662. name: "Megamacro",
  14663. height: math.unit(235000.0, "inches")
  14664. },
  14665. {
  14666. name: "Gigamacro",
  14667. height: math.unit(470000000.0, "inches")
  14668. }
  14669. ]
  14670. )
  14671. };
  14672. pokemonMakers["Happiny"] = () => {
  14673. return makeCharacter(
  14674. "Happiny",
  14675. "Pokemon",
  14676. {
  14677. "Happiny": {
  14678. height: math.unit("24", "inches"),
  14679. weight: math.unit("53.8", "lbs"),
  14680. name: "Happiny",
  14681. image: {
  14682. source: "./media/pokemon/Happiny.svg"
  14683. },
  14684. rename: true
  14685. }
  14686. },
  14687. [
  14688. {
  14689. name: "Micro",
  14690. height: math.unit(2.4, "inches")
  14691. },
  14692. {
  14693. name: "Normal",
  14694. height: math.unit(24, "inches"),
  14695. default: true
  14696. },
  14697. {
  14698. name: "Macro",
  14699. height: math.unit(2400.0, "inches")
  14700. },
  14701. {
  14702. name: "Megamacro",
  14703. height: math.unit(120000.0, "inches")
  14704. },
  14705. {
  14706. name: "Gigamacro",
  14707. height: math.unit(240000000.0, "inches")
  14708. }
  14709. ]
  14710. )
  14711. };
  14712. pokemonMakers["Hariyama"] = () => {
  14713. return makeCharacter(
  14714. "Hariyama",
  14715. "Pokemon",
  14716. {
  14717. "Hariyama": {
  14718. height: math.unit("91", "inches"),
  14719. weight: math.unit("559.5", "lbs"),
  14720. name: "Hariyama",
  14721. image: {
  14722. source: "./media/pokemon/Hariyama.svg"
  14723. },
  14724. rename: true
  14725. }
  14726. },
  14727. [
  14728. {
  14729. name: "Micro",
  14730. height: math.unit(9.1, "inches")
  14731. },
  14732. {
  14733. name: "Normal",
  14734. height: math.unit(91, "inches"),
  14735. default: true
  14736. },
  14737. {
  14738. name: "Macro",
  14739. height: math.unit(9100.0, "inches")
  14740. },
  14741. {
  14742. name: "Megamacro",
  14743. height: math.unit(455000.0, "inches")
  14744. },
  14745. {
  14746. name: "Gigamacro",
  14747. height: math.unit(910000000.0, "inches")
  14748. }
  14749. ]
  14750. )
  14751. };
  14752. pokemonMakers["Hatenna"] = () => {
  14753. return makeCharacter(
  14754. "Hatenna",
  14755. "Pokemon",
  14756. {
  14757. "Hatenna": {
  14758. height: math.unit("16", "inches"),
  14759. weight: math.unit("7.5", "lbs"),
  14760. name: "Hatenna",
  14761. image: {
  14762. source: "./media/pokemon/Hatenna.svg"
  14763. },
  14764. rename: true
  14765. }
  14766. },
  14767. [
  14768. {
  14769. name: "Micro",
  14770. height: math.unit(1.6, "inches")
  14771. },
  14772. {
  14773. name: "Normal",
  14774. height: math.unit(16, "inches"),
  14775. default: true
  14776. },
  14777. {
  14778. name: "Macro",
  14779. height: math.unit(1600.0, "inches")
  14780. },
  14781. {
  14782. name: "Megamacro",
  14783. height: math.unit(80000.0, "inches")
  14784. },
  14785. {
  14786. name: "Gigamacro",
  14787. height: math.unit(160000000.0, "inches")
  14788. }
  14789. ]
  14790. )
  14791. };
  14792. pokemonMakers["Hattrem"] = () => {
  14793. return makeCharacter(
  14794. "Hattrem",
  14795. "Pokemon",
  14796. {
  14797. "Hattrem": {
  14798. height: math.unit("24", "inches"),
  14799. weight: math.unit("10.6", "lbs"),
  14800. name: "Hattrem",
  14801. image: {
  14802. source: "./media/pokemon/Hattrem.svg"
  14803. },
  14804. rename: true
  14805. }
  14806. },
  14807. [
  14808. {
  14809. name: "Micro",
  14810. height: math.unit(2.4, "inches")
  14811. },
  14812. {
  14813. name: "Normal",
  14814. height: math.unit(24, "inches"),
  14815. default: true
  14816. },
  14817. {
  14818. name: "Macro",
  14819. height: math.unit(2400.0, "inches")
  14820. },
  14821. {
  14822. name: "Megamacro",
  14823. height: math.unit(120000.0, "inches")
  14824. },
  14825. {
  14826. name: "Gigamacro",
  14827. height: math.unit(240000000.0, "inches")
  14828. }
  14829. ]
  14830. )
  14831. };
  14832. pokemonMakers["Haunter"] = () => {
  14833. return makeCharacter(
  14834. "Haunter",
  14835. "Pokemon",
  14836. {
  14837. "Haunter": {
  14838. height: math.unit("63", "inches"),
  14839. weight: math.unit("0.2", "lbs"),
  14840. name: "Haunter",
  14841. image: {
  14842. source: "./media/pokemon/Haunter.svg"
  14843. },
  14844. rename: true
  14845. }
  14846. },
  14847. [
  14848. {
  14849. name: "Micro",
  14850. height: math.unit(6.3, "inches")
  14851. },
  14852. {
  14853. name: "Normal",
  14854. height: math.unit(63, "inches"),
  14855. default: true
  14856. },
  14857. {
  14858. name: "Macro",
  14859. height: math.unit(6300.0, "inches")
  14860. },
  14861. {
  14862. name: "Megamacro",
  14863. height: math.unit(315000.0, "inches")
  14864. },
  14865. {
  14866. name: "Gigamacro",
  14867. height: math.unit(630000000.0, "inches")
  14868. }
  14869. ]
  14870. )
  14871. };
  14872. pokemonMakers["Hawlucha"] = () => {
  14873. return makeCharacter(
  14874. "Hawlucha",
  14875. "Pokemon",
  14876. {
  14877. "Hawlucha": {
  14878. height: math.unit("31", "inches"),
  14879. weight: math.unit("47.4", "lbs"),
  14880. name: "Hawlucha",
  14881. image: {
  14882. source: "./media/pokemon/Hawlucha.svg"
  14883. },
  14884. rename: true
  14885. }
  14886. },
  14887. [
  14888. {
  14889. name: "Micro",
  14890. height: math.unit(3.1, "inches")
  14891. },
  14892. {
  14893. name: "Normal",
  14894. height: math.unit(31, "inches"),
  14895. default: true
  14896. },
  14897. {
  14898. name: "Macro",
  14899. height: math.unit(3100.0, "inches")
  14900. },
  14901. {
  14902. name: "Megamacro",
  14903. height: math.unit(155000.0, "inches")
  14904. },
  14905. {
  14906. name: "Gigamacro",
  14907. height: math.unit(310000000.0, "inches")
  14908. }
  14909. ]
  14910. )
  14911. };
  14912. pokemonMakers["Haxorus"] = () => {
  14913. return makeCharacter(
  14914. "Haxorus",
  14915. "Pokemon",
  14916. {
  14917. "Haxorus": {
  14918. height: math.unit("71", "inches"),
  14919. weight: math.unit("232.6", "lbs"),
  14920. name: "Haxorus",
  14921. image: {
  14922. source: "./media/pokemon/Haxorus.svg"
  14923. },
  14924. rename: true
  14925. }
  14926. },
  14927. [
  14928. {
  14929. name: "Micro",
  14930. height: math.unit(7.1, "inches")
  14931. },
  14932. {
  14933. name: "Normal",
  14934. height: math.unit(71, "inches"),
  14935. default: true
  14936. },
  14937. {
  14938. name: "Macro",
  14939. height: math.unit(7100.0, "inches")
  14940. },
  14941. {
  14942. name: "Megamacro",
  14943. height: math.unit(355000.0, "inches")
  14944. },
  14945. {
  14946. name: "Gigamacro",
  14947. height: math.unit(710000000.0, "inches")
  14948. }
  14949. ]
  14950. )
  14951. };
  14952. pokemonMakers["Heatmor"] = () => {
  14953. return makeCharacter(
  14954. "Heatmor",
  14955. "Pokemon",
  14956. {
  14957. "Heatmor": {
  14958. height: math.unit("55", "inches"),
  14959. weight: math.unit("127.9", "lbs"),
  14960. name: "Heatmor",
  14961. image: {
  14962. source: "./media/pokemon/Heatmor.svg"
  14963. },
  14964. rename: true
  14965. }
  14966. },
  14967. [
  14968. {
  14969. name: "Micro",
  14970. height: math.unit(5.5, "inches")
  14971. },
  14972. {
  14973. name: "Normal",
  14974. height: math.unit(55, "inches"),
  14975. default: true
  14976. },
  14977. {
  14978. name: "Macro",
  14979. height: math.unit(5500.0, "inches")
  14980. },
  14981. {
  14982. name: "Megamacro",
  14983. height: math.unit(275000.0, "inches")
  14984. },
  14985. {
  14986. name: "Gigamacro",
  14987. height: math.unit(550000000.0, "inches")
  14988. }
  14989. ]
  14990. )
  14991. };
  14992. pokemonMakers["Heatran"] = () => {
  14993. return makeCharacter(
  14994. "Heatran",
  14995. "Pokemon",
  14996. {
  14997. "Heatran": {
  14998. height: math.unit("67", "inches"),
  14999. weight: math.unit("948.0", "lbs"),
  15000. name: "Heatran",
  15001. image: {
  15002. source: "./media/pokemon/Heatran.svg"
  15003. },
  15004. rename: true
  15005. }
  15006. },
  15007. [
  15008. {
  15009. name: "Micro",
  15010. height: math.unit(6.7, "inches")
  15011. },
  15012. {
  15013. name: "Normal",
  15014. height: math.unit(67, "inches"),
  15015. default: true
  15016. },
  15017. {
  15018. name: "Macro",
  15019. height: math.unit(6700.0, "inches")
  15020. },
  15021. {
  15022. name: "Megamacro",
  15023. height: math.unit(335000.0, "inches")
  15024. },
  15025. {
  15026. name: "Gigamacro",
  15027. height: math.unit(670000000.0, "inches")
  15028. }
  15029. ]
  15030. )
  15031. };
  15032. pokemonMakers["Heliolisk"] = () => {
  15033. return makeCharacter(
  15034. "Heliolisk",
  15035. "Pokemon",
  15036. {
  15037. "Heliolisk": {
  15038. height: math.unit("39", "inches"),
  15039. weight: math.unit("46.3", "lbs"),
  15040. name: "Heliolisk",
  15041. image: {
  15042. source: "./media/pokemon/Heliolisk.svg"
  15043. },
  15044. rename: true
  15045. }
  15046. },
  15047. [
  15048. {
  15049. name: "Micro",
  15050. height: math.unit(3.9, "inches")
  15051. },
  15052. {
  15053. name: "Normal",
  15054. height: math.unit(39, "inches"),
  15055. default: true
  15056. },
  15057. {
  15058. name: "Macro",
  15059. height: math.unit(3900.0, "inches")
  15060. },
  15061. {
  15062. name: "Megamacro",
  15063. height: math.unit(195000.0, "inches")
  15064. },
  15065. {
  15066. name: "Gigamacro",
  15067. height: math.unit(390000000.0, "inches")
  15068. }
  15069. ]
  15070. )
  15071. };
  15072. pokemonMakers["Helioptile"] = () => {
  15073. return makeCharacter(
  15074. "Helioptile",
  15075. "Pokemon",
  15076. {
  15077. "Helioptile": {
  15078. height: math.unit("20", "inches"),
  15079. weight: math.unit("13.2", "lbs"),
  15080. name: "Helioptile",
  15081. image: {
  15082. source: "./media/pokemon/Helioptile.svg"
  15083. },
  15084. rename: true
  15085. }
  15086. },
  15087. [
  15088. {
  15089. name: "Micro",
  15090. height: math.unit(2.0, "inches")
  15091. },
  15092. {
  15093. name: "Normal",
  15094. height: math.unit(20, "inches"),
  15095. default: true
  15096. },
  15097. {
  15098. name: "Macro",
  15099. height: math.unit(2000.0, "inches")
  15100. },
  15101. {
  15102. name: "Megamacro",
  15103. height: math.unit(100000.0, "inches")
  15104. },
  15105. {
  15106. name: "Gigamacro",
  15107. height: math.unit(200000000.0, "inches")
  15108. }
  15109. ]
  15110. )
  15111. };
  15112. pokemonMakers["Heracross"] = () => {
  15113. return makeCharacter(
  15114. "Heracross",
  15115. "Pokemon",
  15116. {
  15117. "Heracross": {
  15118. height: math.unit("59", "inches"),
  15119. weight: math.unit("119.0", "lbs"),
  15120. name: "Heracross",
  15121. image: {
  15122. source: "./media/pokemon/Heracross.svg"
  15123. },
  15124. rename: true
  15125. },
  15126. "Mega Heracross": {
  15127. height: math.unit("67", "inches"),
  15128. weight: math.unit("137.8", "lbs"),
  15129. name: "Mega Heracross",
  15130. image: {
  15131. source: "./media/pokemon/Mega Heracross.svg"
  15132. },
  15133. rename: true
  15134. }
  15135. },
  15136. [
  15137. {
  15138. name: "Micro",
  15139. height: math.unit(5.9, "inches")
  15140. },
  15141. {
  15142. name: "Normal",
  15143. height: math.unit(59, "inches"),
  15144. default: true
  15145. },
  15146. {
  15147. name: "Macro",
  15148. height: math.unit(5900.0, "inches")
  15149. },
  15150. {
  15151. name: "Megamacro",
  15152. height: math.unit(295000.0, "inches")
  15153. },
  15154. {
  15155. name: "Gigamacro",
  15156. height: math.unit(590000000.0, "inches")
  15157. }
  15158. ]
  15159. )
  15160. };
  15161. pokemonMakers["Herdier"] = () => {
  15162. return makeCharacter(
  15163. "Herdier",
  15164. "Pokemon",
  15165. {
  15166. "Herdier": {
  15167. height: math.unit("35", "inches"),
  15168. weight: math.unit("32.4", "lbs"),
  15169. name: "Herdier",
  15170. image: {
  15171. source: "./media/pokemon/Herdier.svg"
  15172. },
  15173. rename: true
  15174. }
  15175. },
  15176. [
  15177. {
  15178. name: "Micro",
  15179. height: math.unit(3.5, "inches")
  15180. },
  15181. {
  15182. name: "Normal",
  15183. height: math.unit(35, "inches"),
  15184. default: true
  15185. },
  15186. {
  15187. name: "Macro",
  15188. height: math.unit(3500.0, "inches")
  15189. },
  15190. {
  15191. name: "Megamacro",
  15192. height: math.unit(175000.0, "inches")
  15193. },
  15194. {
  15195. name: "Gigamacro",
  15196. height: math.unit(350000000.0, "inches")
  15197. }
  15198. ]
  15199. )
  15200. };
  15201. pokemonMakers["Hippopotas"] = () => {
  15202. return makeCharacter(
  15203. "Hippopotas",
  15204. "Pokemon",
  15205. {
  15206. "Hippopotas": {
  15207. height: math.unit("31", "inches"),
  15208. weight: math.unit("109.1", "lbs"),
  15209. name: "Hippopotas",
  15210. image: {
  15211. source: "./media/pokemon/Hippopotas.svg"
  15212. },
  15213. rename: true
  15214. }
  15215. },
  15216. [
  15217. {
  15218. name: "Micro",
  15219. height: math.unit(3.1, "inches")
  15220. },
  15221. {
  15222. name: "Normal",
  15223. height: math.unit(31, "inches"),
  15224. default: true
  15225. },
  15226. {
  15227. name: "Macro",
  15228. height: math.unit(3100.0, "inches")
  15229. },
  15230. {
  15231. name: "Megamacro",
  15232. height: math.unit(155000.0, "inches")
  15233. },
  15234. {
  15235. name: "Gigamacro",
  15236. height: math.unit(310000000.0, "inches")
  15237. }
  15238. ]
  15239. )
  15240. };
  15241. pokemonMakers["Hippowdon"] = () => {
  15242. return makeCharacter(
  15243. "Hippowdon",
  15244. "Pokemon",
  15245. {
  15246. "Hippowdon": {
  15247. height: math.unit("79", "inches"),
  15248. weight: math.unit("661.4", "lbs"),
  15249. name: "Hippowdon",
  15250. image: {
  15251. source: "./media/pokemon/Hippowdon.svg"
  15252. },
  15253. rename: true
  15254. }
  15255. },
  15256. [
  15257. {
  15258. name: "Micro",
  15259. height: math.unit(7.9, "inches")
  15260. },
  15261. {
  15262. name: "Normal",
  15263. height: math.unit(79, "inches"),
  15264. default: true
  15265. },
  15266. {
  15267. name: "Macro",
  15268. height: math.unit(7900.0, "inches")
  15269. },
  15270. {
  15271. name: "Megamacro",
  15272. height: math.unit(395000.0, "inches")
  15273. },
  15274. {
  15275. name: "Gigamacro",
  15276. height: math.unit(790000000.0, "inches")
  15277. }
  15278. ]
  15279. )
  15280. };
  15281. pokemonMakers["Hitmonchan"] = () => {
  15282. return makeCharacter(
  15283. "Hitmonchan",
  15284. "Pokemon",
  15285. {
  15286. "Hitmonchan": {
  15287. height: math.unit("55", "inches"),
  15288. weight: math.unit("110.7", "lbs"),
  15289. name: "Hitmonchan",
  15290. image: {
  15291. source: "./media/pokemon/Hitmonchan.svg"
  15292. },
  15293. rename: true
  15294. }
  15295. },
  15296. [
  15297. {
  15298. name: "Micro",
  15299. height: math.unit(5.5, "inches")
  15300. },
  15301. {
  15302. name: "Normal",
  15303. height: math.unit(55, "inches"),
  15304. default: true
  15305. },
  15306. {
  15307. name: "Macro",
  15308. height: math.unit(5500.0, "inches")
  15309. },
  15310. {
  15311. name: "Megamacro",
  15312. height: math.unit(275000.0, "inches")
  15313. },
  15314. {
  15315. name: "Gigamacro",
  15316. height: math.unit(550000000.0, "inches")
  15317. }
  15318. ]
  15319. )
  15320. };
  15321. pokemonMakers["Hitmonlee"] = () => {
  15322. return makeCharacter(
  15323. "Hitmonlee",
  15324. "Pokemon",
  15325. {
  15326. "Hitmonlee": {
  15327. height: math.unit("59", "inches"),
  15328. weight: math.unit("109.8", "lbs"),
  15329. name: "Hitmonlee",
  15330. image: {
  15331. source: "./media/pokemon/Hitmonlee.svg"
  15332. },
  15333. rename: true
  15334. }
  15335. },
  15336. [
  15337. {
  15338. name: "Micro",
  15339. height: math.unit(5.9, "inches")
  15340. },
  15341. {
  15342. name: "Normal",
  15343. height: math.unit(59, "inches"),
  15344. default: true
  15345. },
  15346. {
  15347. name: "Macro",
  15348. height: math.unit(5900.0, "inches")
  15349. },
  15350. {
  15351. name: "Megamacro",
  15352. height: math.unit(295000.0, "inches")
  15353. },
  15354. {
  15355. name: "Gigamacro",
  15356. height: math.unit(590000000.0, "inches")
  15357. }
  15358. ]
  15359. )
  15360. };
  15361. pokemonMakers["Hitmontop"] = () => {
  15362. return makeCharacter(
  15363. "Hitmontop",
  15364. "Pokemon",
  15365. {
  15366. "Hitmontop": {
  15367. height: math.unit("55", "inches"),
  15368. weight: math.unit("105.8", "lbs"),
  15369. name: "Hitmontop",
  15370. image: {
  15371. source: "./media/pokemon/Hitmontop.svg"
  15372. },
  15373. rename: true
  15374. }
  15375. },
  15376. [
  15377. {
  15378. name: "Micro",
  15379. height: math.unit(5.5, "inches")
  15380. },
  15381. {
  15382. name: "Normal",
  15383. height: math.unit(55, "inches"),
  15384. default: true
  15385. },
  15386. {
  15387. name: "Macro",
  15388. height: math.unit(5500.0, "inches")
  15389. },
  15390. {
  15391. name: "Megamacro",
  15392. height: math.unit(275000.0, "inches")
  15393. },
  15394. {
  15395. name: "Gigamacro",
  15396. height: math.unit(550000000.0, "inches")
  15397. }
  15398. ]
  15399. )
  15400. };
  15401. pokemonMakers["Ho-Oh"] = () => {
  15402. return makeCharacter(
  15403. "Ho-Oh",
  15404. "Pokemon",
  15405. {
  15406. "Ho-Oh": {
  15407. height: math.unit("150", "inches"),
  15408. weight: math.unit("438.7", "lbs"),
  15409. name: "Ho-Oh",
  15410. image: {
  15411. source: "./media/pokemon/Ho-Oh.svg"
  15412. },
  15413. rename: true
  15414. }
  15415. },
  15416. [
  15417. {
  15418. name: "Micro",
  15419. height: math.unit(15.0, "inches")
  15420. },
  15421. {
  15422. name: "Normal",
  15423. height: math.unit(150, "inches"),
  15424. default: true
  15425. },
  15426. {
  15427. name: "Macro",
  15428. height: math.unit(15000.0, "inches")
  15429. },
  15430. {
  15431. name: "Megamacro",
  15432. height: math.unit(750000.0, "inches")
  15433. },
  15434. {
  15435. name: "Gigamacro",
  15436. height: math.unit(1500000000.0, "inches")
  15437. }
  15438. ]
  15439. )
  15440. };
  15441. pokemonMakers["Honchkrow"] = () => {
  15442. return makeCharacter(
  15443. "Honchkrow",
  15444. "Pokemon",
  15445. {
  15446. "Honchkrow": {
  15447. height: math.unit("35", "inches"),
  15448. weight: math.unit("60.2", "lbs"),
  15449. name: "Honchkrow",
  15450. image: {
  15451. source: "./media/pokemon/Honchkrow.svg"
  15452. },
  15453. rename: true
  15454. }
  15455. },
  15456. [
  15457. {
  15458. name: "Micro",
  15459. height: math.unit(3.5, "inches")
  15460. },
  15461. {
  15462. name: "Normal",
  15463. height: math.unit(35, "inches"),
  15464. default: true
  15465. },
  15466. {
  15467. name: "Macro",
  15468. height: math.unit(3500.0, "inches")
  15469. },
  15470. {
  15471. name: "Megamacro",
  15472. height: math.unit(175000.0, "inches")
  15473. },
  15474. {
  15475. name: "Gigamacro",
  15476. height: math.unit(350000000.0, "inches")
  15477. }
  15478. ]
  15479. )
  15480. };
  15481. pokemonMakers["Honedge"] = () => {
  15482. return makeCharacter(
  15483. "Honedge",
  15484. "Pokemon",
  15485. {
  15486. "Honedge": {
  15487. height: math.unit("31", "inches"),
  15488. weight: math.unit("4.4", "lbs"),
  15489. name: "Honedge",
  15490. image: {
  15491. source: "./media/pokemon/Honedge.svg"
  15492. },
  15493. rename: true
  15494. }
  15495. },
  15496. [
  15497. {
  15498. name: "Micro",
  15499. height: math.unit(3.1, "inches")
  15500. },
  15501. {
  15502. name: "Normal",
  15503. height: math.unit(31, "inches"),
  15504. default: true
  15505. },
  15506. {
  15507. name: "Macro",
  15508. height: math.unit(3100.0, "inches")
  15509. },
  15510. {
  15511. name: "Megamacro",
  15512. height: math.unit(155000.0, "inches")
  15513. },
  15514. {
  15515. name: "Gigamacro",
  15516. height: math.unit(310000000.0, "inches")
  15517. }
  15518. ]
  15519. )
  15520. };
  15521. pokemonMakers["Hoopa"] = () => {
  15522. return makeCharacter(
  15523. "Hoopa",
  15524. "Pokemon",
  15525. {
  15526. "Hoopa Confined": {
  15527. height: math.unit("20", "inches"),
  15528. weight: math.unit("19.8", "lbs"),
  15529. name: "Hoopa Confined",
  15530. image: {
  15531. source: "./media/pokemon/Hoopa Confined.svg"
  15532. },
  15533. rename: true
  15534. },
  15535. "Hoopa Unbound": {
  15536. height: math.unit("256", "inches"),
  15537. weight: math.unit("1080.3", "lbs"),
  15538. name: "Hoopa Unbound",
  15539. image: {
  15540. source: "./media/pokemon/Hoopa Unbound.svg"
  15541. },
  15542. rename: true
  15543. }
  15544. },
  15545. [
  15546. {
  15547. name: "Micro",
  15548. height: math.unit(2.0, "inches")
  15549. },
  15550. {
  15551. name: "Normal",
  15552. height: math.unit(20, "inches"),
  15553. default: true
  15554. },
  15555. {
  15556. name: "Macro",
  15557. height: math.unit(2000.0, "inches")
  15558. },
  15559. {
  15560. name: "Megamacro",
  15561. height: math.unit(100000.0, "inches")
  15562. },
  15563. {
  15564. name: "Gigamacro",
  15565. height: math.unit(200000000.0, "inches")
  15566. }
  15567. ]
  15568. )
  15569. };
  15570. pokemonMakers["Hoothoot"] = () => {
  15571. return makeCharacter(
  15572. "Hoothoot",
  15573. "Pokemon",
  15574. {
  15575. "Hoothoot": {
  15576. height: math.unit("28", "inches"),
  15577. weight: math.unit("46.7", "lbs"),
  15578. name: "Hoothoot",
  15579. image: {
  15580. source: "./media/pokemon/Hoothoot.svg"
  15581. },
  15582. rename: true
  15583. }
  15584. },
  15585. [
  15586. {
  15587. name: "Micro",
  15588. height: math.unit(2.8, "inches")
  15589. },
  15590. {
  15591. name: "Normal",
  15592. height: math.unit(28, "inches"),
  15593. default: true
  15594. },
  15595. {
  15596. name: "Macro",
  15597. height: math.unit(2800.0, "inches")
  15598. },
  15599. {
  15600. name: "Megamacro",
  15601. height: math.unit(140000.0, "inches")
  15602. },
  15603. {
  15604. name: "Gigamacro",
  15605. height: math.unit(280000000.0, "inches")
  15606. }
  15607. ]
  15608. )
  15609. };
  15610. pokemonMakers["Hoppip"] = () => {
  15611. return makeCharacter(
  15612. "Hoppip",
  15613. "Pokemon",
  15614. {
  15615. "Hoppip": {
  15616. height: math.unit("16", "inches"),
  15617. weight: math.unit("1.1", "lbs"),
  15618. name: "Hoppip",
  15619. image: {
  15620. source: "./media/pokemon/Hoppip.svg"
  15621. },
  15622. rename: true
  15623. }
  15624. },
  15625. [
  15626. {
  15627. name: "Micro",
  15628. height: math.unit(1.6, "inches")
  15629. },
  15630. {
  15631. name: "Normal",
  15632. height: math.unit(16, "inches"),
  15633. default: true
  15634. },
  15635. {
  15636. name: "Macro",
  15637. height: math.unit(1600.0, "inches")
  15638. },
  15639. {
  15640. name: "Megamacro",
  15641. height: math.unit(80000.0, "inches")
  15642. },
  15643. {
  15644. name: "Gigamacro",
  15645. height: math.unit(160000000.0, "inches")
  15646. }
  15647. ]
  15648. )
  15649. };
  15650. pokemonMakers["Horsea"] = () => {
  15651. return makeCharacter(
  15652. "Horsea",
  15653. "Pokemon",
  15654. {
  15655. "Horsea": {
  15656. height: math.unit("16", "inches"),
  15657. weight: math.unit("17.6", "lbs"),
  15658. name: "Horsea",
  15659. image: {
  15660. source: "./media/pokemon/Horsea.svg"
  15661. },
  15662. rename: true
  15663. }
  15664. },
  15665. [
  15666. {
  15667. name: "Micro",
  15668. height: math.unit(1.6, "inches")
  15669. },
  15670. {
  15671. name: "Normal",
  15672. height: math.unit(16, "inches"),
  15673. default: true
  15674. },
  15675. {
  15676. name: "Macro",
  15677. height: math.unit(1600.0, "inches")
  15678. },
  15679. {
  15680. name: "Megamacro",
  15681. height: math.unit(80000.0, "inches")
  15682. },
  15683. {
  15684. name: "Gigamacro",
  15685. height: math.unit(160000000.0, "inches")
  15686. }
  15687. ]
  15688. )
  15689. };
  15690. pokemonMakers["Houndoom"] = () => {
  15691. return makeCharacter(
  15692. "Houndoom",
  15693. "Pokemon",
  15694. {
  15695. "Houndoom": {
  15696. height: math.unit("55", "inches"),
  15697. weight: math.unit("77.2", "lbs"),
  15698. name: "Houndoom",
  15699. image: {
  15700. source: "./media/pokemon/Houndoom.svg"
  15701. },
  15702. rename: true
  15703. },
  15704. "Mega Houndoom": {
  15705. height: math.unit("75", "inches"),
  15706. weight: math.unit("109.1", "lbs"),
  15707. name: "Mega Houndoom",
  15708. image: {
  15709. source: "./media/pokemon/Mega Houndoom.svg"
  15710. },
  15711. rename: true
  15712. }
  15713. },
  15714. [
  15715. {
  15716. name: "Micro",
  15717. height: math.unit(5.5, "inches")
  15718. },
  15719. {
  15720. name: "Normal",
  15721. height: math.unit(55, "inches"),
  15722. default: true
  15723. },
  15724. {
  15725. name: "Macro",
  15726. height: math.unit(5500.0, "inches")
  15727. },
  15728. {
  15729. name: "Megamacro",
  15730. height: math.unit(275000.0, "inches")
  15731. },
  15732. {
  15733. name: "Gigamacro",
  15734. height: math.unit(550000000.0, "inches")
  15735. }
  15736. ]
  15737. )
  15738. };
  15739. pokemonMakers["Houndour"] = () => {
  15740. return makeCharacter(
  15741. "Houndour",
  15742. "Pokemon",
  15743. {
  15744. "Houndour": {
  15745. height: math.unit("24", "inches"),
  15746. weight: math.unit("23.8", "lbs"),
  15747. name: "Houndour",
  15748. image: {
  15749. source: "./media/pokemon/Houndour.svg"
  15750. },
  15751. rename: true
  15752. }
  15753. },
  15754. [
  15755. {
  15756. name: "Micro",
  15757. height: math.unit(2.4, "inches")
  15758. },
  15759. {
  15760. name: "Normal",
  15761. height: math.unit(24, "inches"),
  15762. default: true
  15763. },
  15764. {
  15765. name: "Macro",
  15766. height: math.unit(2400.0, "inches")
  15767. },
  15768. {
  15769. name: "Megamacro",
  15770. height: math.unit(120000.0, "inches")
  15771. },
  15772. {
  15773. name: "Gigamacro",
  15774. height: math.unit(240000000.0, "inches")
  15775. }
  15776. ]
  15777. )
  15778. };
  15779. pokemonMakers["Huntail"] = () => {
  15780. return makeCharacter(
  15781. "Huntail",
  15782. "Pokemon",
  15783. {
  15784. "Huntail": {
  15785. height: math.unit("67", "inches"),
  15786. weight: math.unit("59.5", "lbs"),
  15787. name: "Huntail",
  15788. image: {
  15789. source: "./media/pokemon/Huntail.svg"
  15790. },
  15791. rename: true
  15792. }
  15793. },
  15794. [
  15795. {
  15796. name: "Micro",
  15797. height: math.unit(6.7, "inches")
  15798. },
  15799. {
  15800. name: "Normal",
  15801. height: math.unit(67, "inches"),
  15802. default: true
  15803. },
  15804. {
  15805. name: "Macro",
  15806. height: math.unit(6700.0, "inches")
  15807. },
  15808. {
  15809. name: "Megamacro",
  15810. height: math.unit(335000.0, "inches")
  15811. },
  15812. {
  15813. name: "Gigamacro",
  15814. height: math.unit(670000000.0, "inches")
  15815. }
  15816. ]
  15817. )
  15818. };
  15819. pokemonMakers["Hydreigon"] = () => {
  15820. return makeCharacter(
  15821. "Hydreigon",
  15822. "Pokemon",
  15823. {
  15824. "Hydreigon": {
  15825. height: math.unit("71", "inches"),
  15826. weight: math.unit("352.7", "lbs"),
  15827. name: "Hydreigon",
  15828. image: {
  15829. source: "./media/pokemon/Hydreigon.svg"
  15830. },
  15831. rename: true
  15832. }
  15833. },
  15834. [
  15835. {
  15836. name: "Micro",
  15837. height: math.unit(7.1, "inches")
  15838. },
  15839. {
  15840. name: "Normal",
  15841. height: math.unit(71, "inches"),
  15842. default: true
  15843. },
  15844. {
  15845. name: "Macro",
  15846. height: math.unit(7100.0, "inches")
  15847. },
  15848. {
  15849. name: "Megamacro",
  15850. height: math.unit(355000.0, "inches")
  15851. },
  15852. {
  15853. name: "Gigamacro",
  15854. height: math.unit(710000000.0, "inches")
  15855. }
  15856. ]
  15857. )
  15858. };
  15859. pokemonMakers["Hypno"] = () => {
  15860. return makeCharacter(
  15861. "Hypno",
  15862. "Pokemon",
  15863. {
  15864. "Hypno": {
  15865. height: math.unit("63", "inches"),
  15866. weight: math.unit("166.7", "lbs"),
  15867. name: "Hypno",
  15868. image: {
  15869. source: "./media/pokemon/Hypno.svg"
  15870. },
  15871. rename: true
  15872. }
  15873. },
  15874. [
  15875. {
  15876. name: "Micro",
  15877. height: math.unit(6.3, "inches")
  15878. },
  15879. {
  15880. name: "Normal",
  15881. height: math.unit(63, "inches"),
  15882. default: true
  15883. },
  15884. {
  15885. name: "Macro",
  15886. height: math.unit(6300.0, "inches")
  15887. },
  15888. {
  15889. name: "Megamacro",
  15890. height: math.unit(315000.0, "inches")
  15891. },
  15892. {
  15893. name: "Gigamacro",
  15894. height: math.unit(630000000.0, "inches")
  15895. }
  15896. ]
  15897. )
  15898. };
  15899. pokemonMakers["Igglybuff"] = () => {
  15900. return makeCharacter(
  15901. "Igglybuff",
  15902. "Pokemon",
  15903. {
  15904. "Igglybuff": {
  15905. height: math.unit("12", "inches"),
  15906. weight: math.unit("2.2", "lbs"),
  15907. name: "Igglybuff",
  15908. image: {
  15909. source: "./media/pokemon/Igglybuff.svg"
  15910. },
  15911. rename: true
  15912. }
  15913. },
  15914. [
  15915. {
  15916. name: "Micro",
  15917. height: math.unit(1.2, "inches")
  15918. },
  15919. {
  15920. name: "Normal",
  15921. height: math.unit(12, "inches"),
  15922. default: true
  15923. },
  15924. {
  15925. name: "Macro",
  15926. height: math.unit(1200.0, "inches")
  15927. },
  15928. {
  15929. name: "Megamacro",
  15930. height: math.unit(60000.0, "inches")
  15931. },
  15932. {
  15933. name: "Gigamacro",
  15934. height: math.unit(120000000.0, "inches")
  15935. }
  15936. ]
  15937. )
  15938. };
  15939. pokemonMakers["Illumise"] = () => {
  15940. return makeCharacter(
  15941. "Illumise",
  15942. "Pokemon",
  15943. {
  15944. "Illumise": {
  15945. height: math.unit("24", "inches"),
  15946. weight: math.unit("39.0", "lbs"),
  15947. name: "Illumise",
  15948. image: {
  15949. source: "./media/pokemon/Illumise.svg"
  15950. },
  15951. rename: true
  15952. }
  15953. },
  15954. [
  15955. {
  15956. name: "Micro",
  15957. height: math.unit(2.4, "inches")
  15958. },
  15959. {
  15960. name: "Normal",
  15961. height: math.unit(24, "inches"),
  15962. default: true
  15963. },
  15964. {
  15965. name: "Macro",
  15966. height: math.unit(2400.0, "inches")
  15967. },
  15968. {
  15969. name: "Megamacro",
  15970. height: math.unit(120000.0, "inches")
  15971. },
  15972. {
  15973. name: "Gigamacro",
  15974. height: math.unit(240000000.0, "inches")
  15975. }
  15976. ]
  15977. )
  15978. };
  15979. pokemonMakers["Impidimp"] = () => {
  15980. return makeCharacter(
  15981. "Impidimp",
  15982. "Pokemon",
  15983. {
  15984. "Impidimp": {
  15985. height: math.unit("16", "inches"),
  15986. weight: math.unit("12.1", "lbs"),
  15987. name: "Impidimp",
  15988. image: {
  15989. source: "./media/pokemon/Impidimp.svg"
  15990. },
  15991. rename: true
  15992. }
  15993. },
  15994. [
  15995. {
  15996. name: "Micro",
  15997. height: math.unit(1.6, "inches")
  15998. },
  15999. {
  16000. name: "Normal",
  16001. height: math.unit(16, "inches"),
  16002. default: true
  16003. },
  16004. {
  16005. name: "Macro",
  16006. height: math.unit(1600.0, "inches")
  16007. },
  16008. {
  16009. name: "Megamacro",
  16010. height: math.unit(80000.0, "inches")
  16011. },
  16012. {
  16013. name: "Gigamacro",
  16014. height: math.unit(160000000.0, "inches")
  16015. }
  16016. ]
  16017. )
  16018. };
  16019. pokemonMakers["Incineroar"] = () => {
  16020. return makeCharacter(
  16021. "Incineroar",
  16022. "Pokemon",
  16023. {
  16024. "Incineroar": {
  16025. height: math.unit("71", "inches"),
  16026. weight: math.unit("183.0", "lbs"),
  16027. name: "Incineroar",
  16028. image: {
  16029. source: "./media/pokemon/Incineroar.svg"
  16030. },
  16031. rename: true
  16032. }
  16033. },
  16034. [
  16035. {
  16036. name: "Micro",
  16037. height: math.unit(7.1, "inches")
  16038. },
  16039. {
  16040. name: "Normal",
  16041. height: math.unit(71, "inches"),
  16042. default: true
  16043. },
  16044. {
  16045. name: "Macro",
  16046. height: math.unit(7100.0, "inches")
  16047. },
  16048. {
  16049. name: "Megamacro",
  16050. height: math.unit(355000.0, "inches")
  16051. },
  16052. {
  16053. name: "Gigamacro",
  16054. height: math.unit(710000000.0, "inches")
  16055. }
  16056. ]
  16057. )
  16058. };
  16059. pokemonMakers["Indeedee"] = () => {
  16060. return makeCharacter(
  16061. "Indeedee",
  16062. "Pokemon",
  16063. {
  16064. "Female": {
  16065. height: math.unit("35", "inches"),
  16066. weight: math.unit("61.7", "lbs"),
  16067. name: "Female",
  16068. image: {
  16069. source: "./media/pokemon/Indeedee - Female.svg"
  16070. },
  16071. rename: true
  16072. },
  16073. "Male": {
  16074. height: math.unit("35", "inches"),
  16075. weight: math.unit("61.7", "lbs"),
  16076. name: "Male",
  16077. image: {
  16078. source: "./media/pokemon/Indeedee - Male.svg"
  16079. },
  16080. rename: true
  16081. }
  16082. },
  16083. [
  16084. {
  16085. name: "Micro",
  16086. height: math.unit(3.5, "inches")
  16087. },
  16088. {
  16089. name: "Normal",
  16090. height: math.unit(35, "inches"),
  16091. default: true
  16092. },
  16093. {
  16094. name: "Macro",
  16095. height: math.unit(3500.0, "inches")
  16096. },
  16097. {
  16098. name: "Megamacro",
  16099. height: math.unit(175000.0, "inches")
  16100. },
  16101. {
  16102. name: "Gigamacro",
  16103. height: math.unit(350000000.0, "inches")
  16104. }
  16105. ]
  16106. )
  16107. };
  16108. pokemonMakers["Infernape"] = () => {
  16109. return makeCharacter(
  16110. "Infernape",
  16111. "Pokemon",
  16112. {
  16113. "Infernape": {
  16114. height: math.unit("47", "inches"),
  16115. weight: math.unit("121.3", "lbs"),
  16116. name: "Infernape",
  16117. image: {
  16118. source: "./media/pokemon/Infernape.svg"
  16119. },
  16120. rename: true
  16121. }
  16122. },
  16123. [
  16124. {
  16125. name: "Micro",
  16126. height: math.unit(4.7, "inches")
  16127. },
  16128. {
  16129. name: "Normal",
  16130. height: math.unit(47, "inches"),
  16131. default: true
  16132. },
  16133. {
  16134. name: "Macro",
  16135. height: math.unit(4700.0, "inches")
  16136. },
  16137. {
  16138. name: "Megamacro",
  16139. height: math.unit(235000.0, "inches")
  16140. },
  16141. {
  16142. name: "Gigamacro",
  16143. height: math.unit(470000000.0, "inches")
  16144. }
  16145. ]
  16146. )
  16147. };
  16148. pokemonMakers["Inkay"] = () => {
  16149. return makeCharacter(
  16150. "Inkay",
  16151. "Pokemon",
  16152. {
  16153. "Inkay": {
  16154. height: math.unit("16", "inches"),
  16155. weight: math.unit("7.7", "lbs"),
  16156. name: "Inkay",
  16157. image: {
  16158. source: "./media/pokemon/Inkay.svg"
  16159. },
  16160. rename: true
  16161. }
  16162. },
  16163. [
  16164. {
  16165. name: "Micro",
  16166. height: math.unit(1.6, "inches")
  16167. },
  16168. {
  16169. name: "Normal",
  16170. height: math.unit(16, "inches"),
  16171. default: true
  16172. },
  16173. {
  16174. name: "Macro",
  16175. height: math.unit(1600.0, "inches")
  16176. },
  16177. {
  16178. name: "Megamacro",
  16179. height: math.unit(80000.0, "inches")
  16180. },
  16181. {
  16182. name: "Gigamacro",
  16183. height: math.unit(160000000.0, "inches")
  16184. }
  16185. ]
  16186. )
  16187. };
  16188. pokemonMakers["Inteleon"] = () => {
  16189. return makeCharacter(
  16190. "Inteleon",
  16191. "Pokemon",
  16192. {
  16193. "Inteleon": {
  16194. height: math.unit("75", "inches"),
  16195. weight: math.unit("99.6", "lbs"),
  16196. name: "Inteleon",
  16197. image: {
  16198. source: "./media/pokemon/Inteleon.svg"
  16199. },
  16200. rename: true
  16201. }
  16202. },
  16203. [
  16204. {
  16205. name: "Micro",
  16206. height: math.unit(7.5, "inches")
  16207. },
  16208. {
  16209. name: "Normal",
  16210. height: math.unit(75, "inches"),
  16211. default: true
  16212. },
  16213. {
  16214. name: "Macro",
  16215. height: math.unit(7500.0, "inches")
  16216. },
  16217. {
  16218. name: "Megamacro",
  16219. height: math.unit(375000.0, "inches")
  16220. },
  16221. {
  16222. name: "Gigamacro",
  16223. height: math.unit(750000000.0, "inches")
  16224. }
  16225. ]
  16226. )
  16227. };
  16228. pokemonMakers["Ivysaur"] = () => {
  16229. return makeCharacter(
  16230. "Ivysaur",
  16231. "Pokemon",
  16232. {
  16233. "Ivysaur": {
  16234. height: math.unit("39", "inches"),
  16235. weight: math.unit("28.7", "lbs"),
  16236. name: "Ivysaur",
  16237. image: {
  16238. source: "./media/pokemon/Ivysaur.svg"
  16239. },
  16240. rename: true
  16241. }
  16242. },
  16243. [
  16244. {
  16245. name: "Micro",
  16246. height: math.unit(3.9, "inches")
  16247. },
  16248. {
  16249. name: "Normal",
  16250. height: math.unit(39, "inches"),
  16251. default: true
  16252. },
  16253. {
  16254. name: "Macro",
  16255. height: math.unit(3900.0, "inches")
  16256. },
  16257. {
  16258. name: "Megamacro",
  16259. height: math.unit(195000.0, "inches")
  16260. },
  16261. {
  16262. name: "Gigamacro",
  16263. height: math.unit(390000000.0, "inches")
  16264. }
  16265. ]
  16266. )
  16267. };
  16268. pokemonMakers["Jangmo-o"] = () => {
  16269. return makeCharacter(
  16270. "Jangmo-o",
  16271. "Pokemon",
  16272. {
  16273. "Jangmo-o": {
  16274. height: math.unit("24", "inches"),
  16275. weight: math.unit("65.5", "lbs"),
  16276. name: "Jangmo-o",
  16277. image: {
  16278. source: "./media/pokemon/Jangmo-o.svg"
  16279. },
  16280. rename: true
  16281. }
  16282. },
  16283. [
  16284. {
  16285. name: "Micro",
  16286. height: math.unit(2.4, "inches")
  16287. },
  16288. {
  16289. name: "Normal",
  16290. height: math.unit(24, "inches"),
  16291. default: true
  16292. },
  16293. {
  16294. name: "Macro",
  16295. height: math.unit(2400.0, "inches")
  16296. },
  16297. {
  16298. name: "Megamacro",
  16299. height: math.unit(120000.0, "inches")
  16300. },
  16301. {
  16302. name: "Gigamacro",
  16303. height: math.unit(240000000.0, "inches")
  16304. }
  16305. ]
  16306. )
  16307. };
  16308. pokemonMakers["Jellicent"] = () => {
  16309. return makeCharacter(
  16310. "Jellicent",
  16311. "Pokemon",
  16312. {
  16313. "Jellicent": {
  16314. height: math.unit("87", "inches"),
  16315. weight: math.unit("297.6", "lbs"),
  16316. name: "Jellicent",
  16317. image: {
  16318. source: "./media/pokemon/Jellicent.svg"
  16319. },
  16320. rename: true
  16321. }
  16322. },
  16323. [
  16324. {
  16325. name: "Micro",
  16326. height: math.unit(8.7, "inches")
  16327. },
  16328. {
  16329. name: "Normal",
  16330. height: math.unit(87, "inches"),
  16331. default: true
  16332. },
  16333. {
  16334. name: "Macro",
  16335. height: math.unit(8700.0, "inches")
  16336. },
  16337. {
  16338. name: "Megamacro",
  16339. height: math.unit(435000.0, "inches")
  16340. },
  16341. {
  16342. name: "Gigamacro",
  16343. height: math.unit(870000000.0, "inches")
  16344. }
  16345. ]
  16346. )
  16347. };
  16348. pokemonMakers["Jigglypuff"] = () => {
  16349. return makeCharacter(
  16350. "Jigglypuff",
  16351. "Pokemon",
  16352. {
  16353. "Jigglypuff": {
  16354. height: math.unit("20", "inches"),
  16355. weight: math.unit("12.1", "lbs"),
  16356. name: "Jigglypuff",
  16357. image: {
  16358. source: "./media/pokemon/Jigglypuff.svg"
  16359. },
  16360. rename: true
  16361. }
  16362. },
  16363. [
  16364. {
  16365. name: "Micro",
  16366. height: math.unit(2.0, "inches")
  16367. },
  16368. {
  16369. name: "Normal",
  16370. height: math.unit(20, "inches"),
  16371. default: true
  16372. },
  16373. {
  16374. name: "Macro",
  16375. height: math.unit(2000.0, "inches")
  16376. },
  16377. {
  16378. name: "Megamacro",
  16379. height: math.unit(100000.0, "inches")
  16380. },
  16381. {
  16382. name: "Gigamacro",
  16383. height: math.unit(200000000.0, "inches")
  16384. }
  16385. ]
  16386. )
  16387. };
  16388. pokemonMakers["Jirachi"] = () => {
  16389. return makeCharacter(
  16390. "Jirachi",
  16391. "Pokemon",
  16392. {
  16393. "Jirachi": {
  16394. height: math.unit("12", "inches"),
  16395. weight: math.unit("2.4", "lbs"),
  16396. name: "Jirachi",
  16397. image: {
  16398. source: "./media/pokemon/Jirachi.svg"
  16399. },
  16400. rename: true
  16401. }
  16402. },
  16403. [
  16404. {
  16405. name: "Micro",
  16406. height: math.unit(1.2, "inches")
  16407. },
  16408. {
  16409. name: "Normal",
  16410. height: math.unit(12, "inches"),
  16411. default: true
  16412. },
  16413. {
  16414. name: "Macro",
  16415. height: math.unit(1200.0, "inches")
  16416. },
  16417. {
  16418. name: "Megamacro",
  16419. height: math.unit(60000.0, "inches")
  16420. },
  16421. {
  16422. name: "Gigamacro",
  16423. height: math.unit(120000000.0, "inches")
  16424. }
  16425. ]
  16426. )
  16427. };
  16428. pokemonMakers["Jolteon"] = () => {
  16429. return makeCharacter(
  16430. "Jolteon",
  16431. "Pokemon",
  16432. {
  16433. "Jolteon": {
  16434. height: math.unit("31", "inches"),
  16435. weight: math.unit("54.0", "lbs"),
  16436. name: "Jolteon",
  16437. image: {
  16438. source: "./media/pokemon/Jolteon.svg"
  16439. },
  16440. rename: true
  16441. }
  16442. },
  16443. [
  16444. {
  16445. name: "Micro",
  16446. height: math.unit(3.1, "inches")
  16447. },
  16448. {
  16449. name: "Normal",
  16450. height: math.unit(31, "inches"),
  16451. default: true
  16452. },
  16453. {
  16454. name: "Macro",
  16455. height: math.unit(3100.0, "inches")
  16456. },
  16457. {
  16458. name: "Megamacro",
  16459. height: math.unit(155000.0, "inches")
  16460. },
  16461. {
  16462. name: "Gigamacro",
  16463. height: math.unit(310000000.0, "inches")
  16464. }
  16465. ]
  16466. )
  16467. };
  16468. pokemonMakers["Joltik"] = () => {
  16469. return makeCharacter(
  16470. "Joltik",
  16471. "Pokemon",
  16472. {
  16473. "Joltik": {
  16474. height: math.unit("4", "inches"),
  16475. weight: math.unit("1.3", "lbs"),
  16476. name: "Joltik",
  16477. image: {
  16478. source: "./media/pokemon/Joltik.svg"
  16479. },
  16480. rename: true
  16481. }
  16482. },
  16483. [
  16484. {
  16485. name: "Micro",
  16486. height: math.unit(0.4, "inches")
  16487. },
  16488. {
  16489. name: "Normal",
  16490. height: math.unit(4, "inches"),
  16491. default: true
  16492. },
  16493. {
  16494. name: "Macro",
  16495. height: math.unit(400.0, "inches")
  16496. },
  16497. {
  16498. name: "Megamacro",
  16499. height: math.unit(20000.0, "inches")
  16500. },
  16501. {
  16502. name: "Gigamacro",
  16503. height: math.unit(40000000.0, "inches")
  16504. }
  16505. ]
  16506. )
  16507. };
  16508. pokemonMakers["Jumpluff"] = () => {
  16509. return makeCharacter(
  16510. "Jumpluff",
  16511. "Pokemon",
  16512. {
  16513. "Jumpluff": {
  16514. height: math.unit("31", "inches"),
  16515. weight: math.unit("6.6", "lbs"),
  16516. name: "Jumpluff",
  16517. image: {
  16518. source: "./media/pokemon/Jumpluff.svg"
  16519. },
  16520. rename: true
  16521. }
  16522. },
  16523. [
  16524. {
  16525. name: "Micro",
  16526. height: math.unit(3.1, "inches")
  16527. },
  16528. {
  16529. name: "Normal",
  16530. height: math.unit(31, "inches"),
  16531. default: true
  16532. },
  16533. {
  16534. name: "Macro",
  16535. height: math.unit(3100.0, "inches")
  16536. },
  16537. {
  16538. name: "Megamacro",
  16539. height: math.unit(155000.0, "inches")
  16540. },
  16541. {
  16542. name: "Gigamacro",
  16543. height: math.unit(310000000.0, "inches")
  16544. }
  16545. ]
  16546. )
  16547. };
  16548. pokemonMakers["Jynx"] = () => {
  16549. return makeCharacter(
  16550. "Jynx",
  16551. "Pokemon",
  16552. {
  16553. "Jynx": {
  16554. height: math.unit("55", "inches"),
  16555. weight: math.unit("89.5", "lbs"),
  16556. name: "Jynx",
  16557. image: {
  16558. source: "./media/pokemon/Jynx.svg"
  16559. },
  16560. rename: true
  16561. }
  16562. },
  16563. [
  16564. {
  16565. name: "Micro",
  16566. height: math.unit(5.5, "inches")
  16567. },
  16568. {
  16569. name: "Normal",
  16570. height: math.unit(55, "inches"),
  16571. default: true
  16572. },
  16573. {
  16574. name: "Macro",
  16575. height: math.unit(5500.0, "inches")
  16576. },
  16577. {
  16578. name: "Megamacro",
  16579. height: math.unit(275000.0, "inches")
  16580. },
  16581. {
  16582. name: "Gigamacro",
  16583. height: math.unit(550000000.0, "inches")
  16584. }
  16585. ]
  16586. )
  16587. };
  16588. pokemonMakers["Kabuto"] = () => {
  16589. return makeCharacter(
  16590. "Kabuto",
  16591. "Pokemon",
  16592. {
  16593. "Kabuto": {
  16594. height: math.unit("20", "inches"),
  16595. weight: math.unit("25.4", "lbs"),
  16596. name: "Kabuto",
  16597. image: {
  16598. source: "./media/pokemon/Kabuto.svg"
  16599. },
  16600. rename: true
  16601. }
  16602. },
  16603. [
  16604. {
  16605. name: "Micro",
  16606. height: math.unit(2.0, "inches")
  16607. },
  16608. {
  16609. name: "Normal",
  16610. height: math.unit(20, "inches"),
  16611. default: true
  16612. },
  16613. {
  16614. name: "Macro",
  16615. height: math.unit(2000.0, "inches")
  16616. },
  16617. {
  16618. name: "Megamacro",
  16619. height: math.unit(100000.0, "inches")
  16620. },
  16621. {
  16622. name: "Gigamacro",
  16623. height: math.unit(200000000.0, "inches")
  16624. }
  16625. ]
  16626. )
  16627. };
  16628. pokemonMakers["Kabutops"] = () => {
  16629. return makeCharacter(
  16630. "Kabutops",
  16631. "Pokemon",
  16632. {
  16633. "Kabutops": {
  16634. height: math.unit("51", "inches"),
  16635. weight: math.unit("89.3", "lbs"),
  16636. name: "Kabutops",
  16637. image: {
  16638. source: "./media/pokemon/Kabutops.svg"
  16639. },
  16640. rename: true
  16641. }
  16642. },
  16643. [
  16644. {
  16645. name: "Micro",
  16646. height: math.unit(5.1, "inches")
  16647. },
  16648. {
  16649. name: "Normal",
  16650. height: math.unit(51, "inches"),
  16651. default: true
  16652. },
  16653. {
  16654. name: "Macro",
  16655. height: math.unit(5100.0, "inches")
  16656. },
  16657. {
  16658. name: "Megamacro",
  16659. height: math.unit(255000.0, "inches")
  16660. },
  16661. {
  16662. name: "Gigamacro",
  16663. height: math.unit(510000000.0, "inches")
  16664. }
  16665. ]
  16666. )
  16667. };
  16668. pokemonMakers["Kadabra"] = () => {
  16669. return makeCharacter(
  16670. "Kadabra",
  16671. "Pokemon",
  16672. {
  16673. "Kadabra": {
  16674. height: math.unit("51", "inches"),
  16675. weight: math.unit("124.6", "lbs"),
  16676. name: "Kadabra",
  16677. image: {
  16678. source: "./media/pokemon/Kadabra.svg"
  16679. },
  16680. rename: true
  16681. }
  16682. },
  16683. [
  16684. {
  16685. name: "Micro",
  16686. height: math.unit(5.1, "inches")
  16687. },
  16688. {
  16689. name: "Normal",
  16690. height: math.unit(51, "inches"),
  16691. default: true
  16692. },
  16693. {
  16694. name: "Macro",
  16695. height: math.unit(5100.0, "inches")
  16696. },
  16697. {
  16698. name: "Megamacro",
  16699. height: math.unit(255000.0, "inches")
  16700. },
  16701. {
  16702. name: "Gigamacro",
  16703. height: math.unit(510000000.0, "inches")
  16704. }
  16705. ]
  16706. )
  16707. };
  16708. pokemonMakers["Kakuna"] = () => {
  16709. return makeCharacter(
  16710. "Kakuna",
  16711. "Pokemon",
  16712. {
  16713. "Kakuna": {
  16714. height: math.unit("24", "inches"),
  16715. weight: math.unit("22.0", "lbs"),
  16716. name: "Kakuna",
  16717. image: {
  16718. source: "./media/pokemon/Kakuna.svg"
  16719. },
  16720. rename: true
  16721. }
  16722. },
  16723. [
  16724. {
  16725. name: "Micro",
  16726. height: math.unit(2.4, "inches")
  16727. },
  16728. {
  16729. name: "Normal",
  16730. height: math.unit(24, "inches"),
  16731. default: true
  16732. },
  16733. {
  16734. name: "Macro",
  16735. height: math.unit(2400.0, "inches")
  16736. },
  16737. {
  16738. name: "Megamacro",
  16739. height: math.unit(120000.0, "inches")
  16740. },
  16741. {
  16742. name: "Gigamacro",
  16743. height: math.unit(240000000.0, "inches")
  16744. }
  16745. ]
  16746. )
  16747. };
  16748. pokemonMakers["Kangaskhan"] = () => {
  16749. return makeCharacter(
  16750. "Kangaskhan",
  16751. "Pokemon",
  16752. {
  16753. "Kangaskhan": {
  16754. height: math.unit("87", "inches"),
  16755. weight: math.unit("176.4", "lbs"),
  16756. name: "Kangaskhan",
  16757. image: {
  16758. source: "./media/pokemon/Kangaskhan.svg"
  16759. },
  16760. rename: true
  16761. },
  16762. "Mega Kangaskhan": {
  16763. height: math.unit("87", "inches"),
  16764. weight: math.unit("220.5", "lbs"),
  16765. name: "Mega Kangaskhan",
  16766. image: {
  16767. source: "./media/pokemon/Mega Kangaskhan.svg"
  16768. },
  16769. rename: true
  16770. }
  16771. },
  16772. [
  16773. {
  16774. name: "Micro",
  16775. height: math.unit(8.7, "inches")
  16776. },
  16777. {
  16778. name: "Normal",
  16779. height: math.unit(87, "inches"),
  16780. default: true
  16781. },
  16782. {
  16783. name: "Macro",
  16784. height: math.unit(8700.0, "inches")
  16785. },
  16786. {
  16787. name: "Megamacro",
  16788. height: math.unit(435000.0, "inches")
  16789. },
  16790. {
  16791. name: "Gigamacro",
  16792. height: math.unit(870000000.0, "inches")
  16793. }
  16794. ]
  16795. )
  16796. };
  16797. pokemonMakers["Karrablast"] = () => {
  16798. return makeCharacter(
  16799. "Karrablast",
  16800. "Pokemon",
  16801. {
  16802. "Karrablast": {
  16803. height: math.unit("20", "inches"),
  16804. weight: math.unit("13.0", "lbs"),
  16805. name: "Karrablast",
  16806. image: {
  16807. source: "./media/pokemon/Karrablast.svg"
  16808. },
  16809. rename: true
  16810. }
  16811. },
  16812. [
  16813. {
  16814. name: "Micro",
  16815. height: math.unit(2.0, "inches")
  16816. },
  16817. {
  16818. name: "Normal",
  16819. height: math.unit(20, "inches"),
  16820. default: true
  16821. },
  16822. {
  16823. name: "Macro",
  16824. height: math.unit(2000.0, "inches")
  16825. },
  16826. {
  16827. name: "Megamacro",
  16828. height: math.unit(100000.0, "inches")
  16829. },
  16830. {
  16831. name: "Gigamacro",
  16832. height: math.unit(200000000.0, "inches")
  16833. }
  16834. ]
  16835. )
  16836. };
  16837. pokemonMakers["Kartana"] = () => {
  16838. return makeCharacter(
  16839. "Kartana",
  16840. "Pokemon",
  16841. {
  16842. "Kartana": {
  16843. height: math.unit("12", "inches"),
  16844. weight: math.unit("0.2", "lbs"),
  16845. name: "Kartana",
  16846. image: {
  16847. source: "./media/pokemon/Kartana.svg"
  16848. },
  16849. rename: true
  16850. }
  16851. },
  16852. [
  16853. {
  16854. name: "Micro",
  16855. height: math.unit(1.2, "inches")
  16856. },
  16857. {
  16858. name: "Normal",
  16859. height: math.unit(12, "inches"),
  16860. default: true
  16861. },
  16862. {
  16863. name: "Macro",
  16864. height: math.unit(1200.0, "inches")
  16865. },
  16866. {
  16867. name: "Megamacro",
  16868. height: math.unit(60000.0, "inches")
  16869. },
  16870. {
  16871. name: "Gigamacro",
  16872. height: math.unit(120000000.0, "inches")
  16873. }
  16874. ]
  16875. )
  16876. };
  16877. pokemonMakers["Kecleon"] = () => {
  16878. return makeCharacter(
  16879. "Kecleon",
  16880. "Pokemon",
  16881. {
  16882. "Kecleon": {
  16883. height: math.unit("39", "inches"),
  16884. weight: math.unit("48.5", "lbs"),
  16885. name: "Kecleon",
  16886. image: {
  16887. source: "./media/pokemon/Kecleon.svg"
  16888. },
  16889. rename: true
  16890. }
  16891. },
  16892. [
  16893. {
  16894. name: "Micro",
  16895. height: math.unit(3.9, "inches")
  16896. },
  16897. {
  16898. name: "Normal",
  16899. height: math.unit(39, "inches"),
  16900. default: true
  16901. },
  16902. {
  16903. name: "Macro",
  16904. height: math.unit(3900.0, "inches")
  16905. },
  16906. {
  16907. name: "Megamacro",
  16908. height: math.unit(195000.0, "inches")
  16909. },
  16910. {
  16911. name: "Gigamacro",
  16912. height: math.unit(390000000.0, "inches")
  16913. }
  16914. ]
  16915. )
  16916. };
  16917. pokemonMakers["Keldeo"] = () => {
  16918. return makeCharacter(
  16919. "Keldeo",
  16920. "Pokemon",
  16921. {
  16922. "Ordinary Form": {
  16923. height: math.unit("55", "inches"),
  16924. weight: math.unit("106.9", "lbs"),
  16925. name: "Ordinary Form",
  16926. image: {
  16927. source: "./media/pokemon/Keldeo - Ordinary Form.svg"
  16928. },
  16929. rename: true
  16930. },
  16931. "Resolute Form": {
  16932. height: math.unit("55", "inches"),
  16933. weight: math.unit("106.9", "lbs"),
  16934. name: "Resolute Form",
  16935. image: {
  16936. source: "./media/pokemon/Keldeo - Resolute Form.svg"
  16937. },
  16938. rename: true
  16939. }
  16940. },
  16941. [
  16942. {
  16943. name: "Micro",
  16944. height: math.unit(5.5, "inches")
  16945. },
  16946. {
  16947. name: "Normal",
  16948. height: math.unit(55, "inches"),
  16949. default: true
  16950. },
  16951. {
  16952. name: "Macro",
  16953. height: math.unit(5500.0, "inches")
  16954. },
  16955. {
  16956. name: "Megamacro",
  16957. height: math.unit(275000.0, "inches")
  16958. },
  16959. {
  16960. name: "Gigamacro",
  16961. height: math.unit(550000000.0, "inches")
  16962. }
  16963. ]
  16964. )
  16965. };
  16966. pokemonMakers["Kingdra"] = () => {
  16967. return makeCharacter(
  16968. "Kingdra",
  16969. "Pokemon",
  16970. {
  16971. "Kingdra": {
  16972. height: math.unit("71", "inches"),
  16973. weight: math.unit("335.1", "lbs"),
  16974. name: "Kingdra",
  16975. image: {
  16976. source: "./media/pokemon/Kingdra.svg"
  16977. },
  16978. rename: true
  16979. }
  16980. },
  16981. [
  16982. {
  16983. name: "Micro",
  16984. height: math.unit(7.1, "inches")
  16985. },
  16986. {
  16987. name: "Normal",
  16988. height: math.unit(71, "inches"),
  16989. default: true
  16990. },
  16991. {
  16992. name: "Macro",
  16993. height: math.unit(7100.0, "inches")
  16994. },
  16995. {
  16996. name: "Megamacro",
  16997. height: math.unit(355000.0, "inches")
  16998. },
  16999. {
  17000. name: "Gigamacro",
  17001. height: math.unit(710000000.0, "inches")
  17002. }
  17003. ]
  17004. )
  17005. };
  17006. pokemonMakers["Kirlia"] = () => {
  17007. return makeCharacter(
  17008. "Kirlia",
  17009. "Pokemon",
  17010. {
  17011. "Kirlia": {
  17012. height: math.unit("31", "inches"),
  17013. weight: math.unit("44.5", "lbs"),
  17014. name: "Kirlia",
  17015. image: {
  17016. source: "./media/pokemon/Kirlia.svg"
  17017. },
  17018. rename: true
  17019. }
  17020. },
  17021. [
  17022. {
  17023. name: "Micro",
  17024. height: math.unit(3.1, "inches")
  17025. },
  17026. {
  17027. name: "Normal",
  17028. height: math.unit(31, "inches"),
  17029. default: true
  17030. },
  17031. {
  17032. name: "Macro",
  17033. height: math.unit(3100.0, "inches")
  17034. },
  17035. {
  17036. name: "Megamacro",
  17037. height: math.unit(155000.0, "inches")
  17038. },
  17039. {
  17040. name: "Gigamacro",
  17041. height: math.unit(310000000.0, "inches")
  17042. }
  17043. ]
  17044. )
  17045. };
  17046. pokemonMakers["Klang"] = () => {
  17047. return makeCharacter(
  17048. "Klang",
  17049. "Pokemon",
  17050. {
  17051. "Klang": {
  17052. height: math.unit("24", "inches"),
  17053. weight: math.unit("112.4", "lbs"),
  17054. name: "Klang",
  17055. image: {
  17056. source: "./media/pokemon/Klang.svg"
  17057. },
  17058. rename: true
  17059. }
  17060. },
  17061. [
  17062. {
  17063. name: "Micro",
  17064. height: math.unit(2.4, "inches")
  17065. },
  17066. {
  17067. name: "Normal",
  17068. height: math.unit(24, "inches"),
  17069. default: true
  17070. },
  17071. {
  17072. name: "Macro",
  17073. height: math.unit(2400.0, "inches")
  17074. },
  17075. {
  17076. name: "Megamacro",
  17077. height: math.unit(120000.0, "inches")
  17078. },
  17079. {
  17080. name: "Gigamacro",
  17081. height: math.unit(240000000.0, "inches")
  17082. }
  17083. ]
  17084. )
  17085. };
  17086. pokemonMakers["Klefki"] = () => {
  17087. return makeCharacter(
  17088. "Klefki",
  17089. "Pokemon",
  17090. {
  17091. "Klefki": {
  17092. height: math.unit("8", "inches"),
  17093. weight: math.unit("6.6", "lbs"),
  17094. name: "Klefki",
  17095. image: {
  17096. source: "./media/pokemon/Klefki.svg"
  17097. },
  17098. rename: true
  17099. }
  17100. },
  17101. [
  17102. {
  17103. name: "Micro",
  17104. height: math.unit(0.8, "inches")
  17105. },
  17106. {
  17107. name: "Normal",
  17108. height: math.unit(8, "inches"),
  17109. default: true
  17110. },
  17111. {
  17112. name: "Macro",
  17113. height: math.unit(800.0, "inches")
  17114. },
  17115. {
  17116. name: "Megamacro",
  17117. height: math.unit(40000.0, "inches")
  17118. },
  17119. {
  17120. name: "Gigamacro",
  17121. height: math.unit(80000000.0, "inches")
  17122. }
  17123. ]
  17124. )
  17125. };
  17126. pokemonMakers["Klink"] = () => {
  17127. return makeCharacter(
  17128. "Klink",
  17129. "Pokemon",
  17130. {
  17131. "Klink": {
  17132. height: math.unit("12", "inches"),
  17133. weight: math.unit("46.3", "lbs"),
  17134. name: "Klink",
  17135. image: {
  17136. source: "./media/pokemon/Klink.svg"
  17137. },
  17138. rename: true
  17139. }
  17140. },
  17141. [
  17142. {
  17143. name: "Micro",
  17144. height: math.unit(1.2, "inches")
  17145. },
  17146. {
  17147. name: "Normal",
  17148. height: math.unit(12, "inches"),
  17149. default: true
  17150. },
  17151. {
  17152. name: "Macro",
  17153. height: math.unit(1200.0, "inches")
  17154. },
  17155. {
  17156. name: "Megamacro",
  17157. height: math.unit(60000.0, "inches")
  17158. },
  17159. {
  17160. name: "Gigamacro",
  17161. height: math.unit(120000000.0, "inches")
  17162. }
  17163. ]
  17164. )
  17165. };
  17166. pokemonMakers["Klinklang"] = () => {
  17167. return makeCharacter(
  17168. "Klinklang",
  17169. "Pokemon",
  17170. {
  17171. "Klinklang": {
  17172. height: math.unit("24", "inches"),
  17173. weight: math.unit("178.6", "lbs"),
  17174. name: "Klinklang",
  17175. image: {
  17176. source: "./media/pokemon/Klinklang.svg"
  17177. },
  17178. rename: true
  17179. }
  17180. },
  17181. [
  17182. {
  17183. name: "Micro",
  17184. height: math.unit(2.4, "inches")
  17185. },
  17186. {
  17187. name: "Normal",
  17188. height: math.unit(24, "inches"),
  17189. default: true
  17190. },
  17191. {
  17192. name: "Macro",
  17193. height: math.unit(2400.0, "inches")
  17194. },
  17195. {
  17196. name: "Megamacro",
  17197. height: math.unit(120000.0, "inches")
  17198. },
  17199. {
  17200. name: "Gigamacro",
  17201. height: math.unit(240000000.0, "inches")
  17202. }
  17203. ]
  17204. )
  17205. };
  17206. pokemonMakers["Koffing"] = () => {
  17207. return makeCharacter(
  17208. "Koffing",
  17209. "Pokemon",
  17210. {
  17211. "Koffing": {
  17212. height: math.unit("24", "inches"),
  17213. weight: math.unit("2.2", "lbs"),
  17214. name: "Koffing",
  17215. image: {
  17216. source: "./media/pokemon/Koffing.svg"
  17217. },
  17218. rename: true
  17219. }
  17220. },
  17221. [
  17222. {
  17223. name: "Micro",
  17224. height: math.unit(2.4, "inches")
  17225. },
  17226. {
  17227. name: "Normal",
  17228. height: math.unit(24, "inches"),
  17229. default: true
  17230. },
  17231. {
  17232. name: "Macro",
  17233. height: math.unit(2400.0, "inches")
  17234. },
  17235. {
  17236. name: "Megamacro",
  17237. height: math.unit(120000.0, "inches")
  17238. },
  17239. {
  17240. name: "Gigamacro",
  17241. height: math.unit(240000000.0, "inches")
  17242. }
  17243. ]
  17244. )
  17245. };
  17246. pokemonMakers["Komala"] = () => {
  17247. return makeCharacter(
  17248. "Komala",
  17249. "Pokemon",
  17250. {
  17251. "Komala": {
  17252. height: math.unit("16", "inches"),
  17253. weight: math.unit("43.9", "lbs"),
  17254. name: "Komala",
  17255. image: {
  17256. source: "./media/pokemon/Komala.svg"
  17257. },
  17258. rename: true
  17259. }
  17260. },
  17261. [
  17262. {
  17263. name: "Micro",
  17264. height: math.unit(1.6, "inches")
  17265. },
  17266. {
  17267. name: "Normal",
  17268. height: math.unit(16, "inches"),
  17269. default: true
  17270. },
  17271. {
  17272. name: "Macro",
  17273. height: math.unit(1600.0, "inches")
  17274. },
  17275. {
  17276. name: "Megamacro",
  17277. height: math.unit(80000.0, "inches")
  17278. },
  17279. {
  17280. name: "Gigamacro",
  17281. height: math.unit(160000000.0, "inches")
  17282. }
  17283. ]
  17284. )
  17285. };
  17286. pokemonMakers["Kommo-o"] = () => {
  17287. return makeCharacter(
  17288. "Kommo-o",
  17289. "Pokemon",
  17290. {
  17291. "Kommo-o": {
  17292. height: math.unit("63", "inches"),
  17293. weight: math.unit("172.4", "lbs"),
  17294. name: "Kommo-o",
  17295. image: {
  17296. source: "./media/pokemon/Kommo-o.svg"
  17297. },
  17298. rename: true
  17299. }
  17300. },
  17301. [
  17302. {
  17303. name: "Micro",
  17304. height: math.unit(6.3, "inches")
  17305. },
  17306. {
  17307. name: "Normal",
  17308. height: math.unit(63, "inches"),
  17309. default: true
  17310. },
  17311. {
  17312. name: "Macro",
  17313. height: math.unit(6300.0, "inches")
  17314. },
  17315. {
  17316. name: "Megamacro",
  17317. height: math.unit(315000.0, "inches")
  17318. },
  17319. {
  17320. name: "Gigamacro",
  17321. height: math.unit(630000000.0, "inches")
  17322. }
  17323. ]
  17324. )
  17325. };
  17326. pokemonMakers["Krabby"] = () => {
  17327. return makeCharacter(
  17328. "Krabby",
  17329. "Pokemon",
  17330. {
  17331. "Krabby": {
  17332. height: math.unit("16", "inches"),
  17333. weight: math.unit("14.3", "lbs"),
  17334. name: "Krabby",
  17335. image: {
  17336. source: "./media/pokemon/Krabby.svg"
  17337. },
  17338. rename: true
  17339. }
  17340. },
  17341. [
  17342. {
  17343. name: "Micro",
  17344. height: math.unit(1.6, "inches")
  17345. },
  17346. {
  17347. name: "Normal",
  17348. height: math.unit(16, "inches"),
  17349. default: true
  17350. },
  17351. {
  17352. name: "Macro",
  17353. height: math.unit(1600.0, "inches")
  17354. },
  17355. {
  17356. name: "Megamacro",
  17357. height: math.unit(80000.0, "inches")
  17358. },
  17359. {
  17360. name: "Gigamacro",
  17361. height: math.unit(160000000.0, "inches")
  17362. }
  17363. ]
  17364. )
  17365. };
  17366. pokemonMakers["Kricketot"] = () => {
  17367. return makeCharacter(
  17368. "Kricketot",
  17369. "Pokemon",
  17370. {
  17371. "Kricketot": {
  17372. height: math.unit("12", "inches"),
  17373. weight: math.unit("4.9", "lbs"),
  17374. name: "Kricketot",
  17375. image: {
  17376. source: "./media/pokemon/Kricketot.svg"
  17377. },
  17378. rename: true
  17379. }
  17380. },
  17381. [
  17382. {
  17383. name: "Micro",
  17384. height: math.unit(1.2, "inches")
  17385. },
  17386. {
  17387. name: "Normal",
  17388. height: math.unit(12, "inches"),
  17389. default: true
  17390. },
  17391. {
  17392. name: "Macro",
  17393. height: math.unit(1200.0, "inches")
  17394. },
  17395. {
  17396. name: "Megamacro",
  17397. height: math.unit(60000.0, "inches")
  17398. },
  17399. {
  17400. name: "Gigamacro",
  17401. height: math.unit(120000000.0, "inches")
  17402. }
  17403. ]
  17404. )
  17405. };
  17406. pokemonMakers["Kricketune"] = () => {
  17407. return makeCharacter(
  17408. "Kricketune",
  17409. "Pokemon",
  17410. {
  17411. "Kricketune": {
  17412. height: math.unit("39", "inches"),
  17413. weight: math.unit("56.2", "lbs"),
  17414. name: "Kricketune",
  17415. image: {
  17416. source: "./media/pokemon/Kricketune.svg"
  17417. },
  17418. rename: true
  17419. }
  17420. },
  17421. [
  17422. {
  17423. name: "Micro",
  17424. height: math.unit(3.9, "inches")
  17425. },
  17426. {
  17427. name: "Normal",
  17428. height: math.unit(39, "inches"),
  17429. default: true
  17430. },
  17431. {
  17432. name: "Macro",
  17433. height: math.unit(3900.0, "inches")
  17434. },
  17435. {
  17436. name: "Megamacro",
  17437. height: math.unit(195000.0, "inches")
  17438. },
  17439. {
  17440. name: "Gigamacro",
  17441. height: math.unit(390000000.0, "inches")
  17442. }
  17443. ]
  17444. )
  17445. };
  17446. pokemonMakers["Krokorok"] = () => {
  17447. return makeCharacter(
  17448. "Krokorok",
  17449. "Pokemon",
  17450. {
  17451. "Krokorok": {
  17452. height: math.unit("39", "inches"),
  17453. weight: math.unit("73.6", "lbs"),
  17454. name: "Krokorok",
  17455. image: {
  17456. source: "./media/pokemon/Krokorok.svg"
  17457. },
  17458. rename: true
  17459. }
  17460. },
  17461. [
  17462. {
  17463. name: "Micro",
  17464. height: math.unit(3.9, "inches")
  17465. },
  17466. {
  17467. name: "Normal",
  17468. height: math.unit(39, "inches"),
  17469. default: true
  17470. },
  17471. {
  17472. name: "Macro",
  17473. height: math.unit(3900.0, "inches")
  17474. },
  17475. {
  17476. name: "Megamacro",
  17477. height: math.unit(195000.0, "inches")
  17478. },
  17479. {
  17480. name: "Gigamacro",
  17481. height: math.unit(390000000.0, "inches")
  17482. }
  17483. ]
  17484. )
  17485. };
  17486. pokemonMakers["Krookodile"] = () => {
  17487. return makeCharacter(
  17488. "Krookodile",
  17489. "Pokemon",
  17490. {
  17491. "Krookodile": {
  17492. height: math.unit("59", "inches"),
  17493. weight: math.unit("212.3", "lbs"),
  17494. name: "Krookodile",
  17495. image: {
  17496. source: "./media/pokemon/Krookodile.svg"
  17497. },
  17498. rename: true
  17499. }
  17500. },
  17501. [
  17502. {
  17503. name: "Micro",
  17504. height: math.unit(5.9, "inches")
  17505. },
  17506. {
  17507. name: "Normal",
  17508. height: math.unit(59, "inches"),
  17509. default: true
  17510. },
  17511. {
  17512. name: "Macro",
  17513. height: math.unit(5900.0, "inches")
  17514. },
  17515. {
  17516. name: "Megamacro",
  17517. height: math.unit(295000.0, "inches")
  17518. },
  17519. {
  17520. name: "Gigamacro",
  17521. height: math.unit(590000000.0, "inches")
  17522. }
  17523. ]
  17524. )
  17525. };
  17526. pokemonMakers["Kyogre"] = () => {
  17527. return makeCharacter(
  17528. "Kyogre",
  17529. "Pokemon",
  17530. {
  17531. "Kyogre": {
  17532. height: math.unit("177", "inches"),
  17533. weight: math.unit("776.0", "lbs"),
  17534. name: "Kyogre",
  17535. image: {
  17536. source: "./media/pokemon/Kyogre.svg"
  17537. },
  17538. rename: true
  17539. },
  17540. "Primal Kyogre": {
  17541. height: math.unit("386", "inches"),
  17542. weight: math.unit("948.0", "lbs"),
  17543. name: "Primal Kyogre",
  17544. image: {
  17545. source: "./media/pokemon/Primal Kyogre.svg"
  17546. },
  17547. rename: true
  17548. }
  17549. },
  17550. [
  17551. {
  17552. name: "Micro",
  17553. height: math.unit(17.7, "inches")
  17554. },
  17555. {
  17556. name: "Normal",
  17557. height: math.unit(177, "inches"),
  17558. default: true
  17559. },
  17560. {
  17561. name: "Macro",
  17562. height: math.unit(17700.0, "inches")
  17563. },
  17564. {
  17565. name: "Megamacro",
  17566. height: math.unit(885000.0, "inches")
  17567. },
  17568. {
  17569. name: "Gigamacro",
  17570. height: math.unit(1770000000.0, "inches")
  17571. }
  17572. ]
  17573. )
  17574. };
  17575. pokemonMakers["Lairon"] = () => {
  17576. return makeCharacter(
  17577. "Lairon",
  17578. "Pokemon",
  17579. {
  17580. "Lairon": {
  17581. height: math.unit("35", "inches"),
  17582. weight: math.unit("264.6", "lbs"),
  17583. name: "Lairon",
  17584. image: {
  17585. source: "./media/pokemon/Lairon.svg"
  17586. },
  17587. rename: true
  17588. }
  17589. },
  17590. [
  17591. {
  17592. name: "Micro",
  17593. height: math.unit(3.5, "inches")
  17594. },
  17595. {
  17596. name: "Normal",
  17597. height: math.unit(35, "inches"),
  17598. default: true
  17599. },
  17600. {
  17601. name: "Macro",
  17602. height: math.unit(3500.0, "inches")
  17603. },
  17604. {
  17605. name: "Megamacro",
  17606. height: math.unit(175000.0, "inches")
  17607. },
  17608. {
  17609. name: "Gigamacro",
  17610. height: math.unit(350000000.0, "inches")
  17611. }
  17612. ]
  17613. )
  17614. };
  17615. pokemonMakers["Lampent"] = () => {
  17616. return makeCharacter(
  17617. "Lampent",
  17618. "Pokemon",
  17619. {
  17620. "Lampent": {
  17621. height: math.unit("24", "inches"),
  17622. weight: math.unit("28.7", "lbs"),
  17623. name: "Lampent",
  17624. image: {
  17625. source: "./media/pokemon/Lampent.svg"
  17626. },
  17627. rename: true
  17628. }
  17629. },
  17630. [
  17631. {
  17632. name: "Micro",
  17633. height: math.unit(2.4, "inches")
  17634. },
  17635. {
  17636. name: "Normal",
  17637. height: math.unit(24, "inches"),
  17638. default: true
  17639. },
  17640. {
  17641. name: "Macro",
  17642. height: math.unit(2400.0, "inches")
  17643. },
  17644. {
  17645. name: "Megamacro",
  17646. height: math.unit(120000.0, "inches")
  17647. },
  17648. {
  17649. name: "Gigamacro",
  17650. height: math.unit(240000000.0, "inches")
  17651. }
  17652. ]
  17653. )
  17654. };
  17655. pokemonMakers["Landorus"] = () => {
  17656. return makeCharacter(
  17657. "Landorus",
  17658. "Pokemon",
  17659. {
  17660. "Incarnate Forme": {
  17661. height: math.unit("59", "inches"),
  17662. weight: math.unit("149.9", "lbs"),
  17663. name: "Incarnate Forme",
  17664. image: {
  17665. source: "./media/pokemon/Landorus - Incarnate Forme.svg"
  17666. },
  17667. rename: true
  17668. },
  17669. "Therian Forme": {
  17670. height: math.unit("51", "inches"),
  17671. weight: math.unit("149.9", "lbs"),
  17672. name: "Therian Forme",
  17673. image: {
  17674. source: "./media/pokemon/Landorus - Therian Forme.svg"
  17675. },
  17676. rename: true
  17677. }
  17678. },
  17679. [
  17680. {
  17681. name: "Micro",
  17682. height: math.unit(5.9, "inches")
  17683. },
  17684. {
  17685. name: "Normal",
  17686. height: math.unit(59, "inches"),
  17687. default: true
  17688. },
  17689. {
  17690. name: "Macro",
  17691. height: math.unit(5900.0, "inches")
  17692. },
  17693. {
  17694. name: "Megamacro",
  17695. height: math.unit(295000.0, "inches")
  17696. },
  17697. {
  17698. name: "Gigamacro",
  17699. height: math.unit(590000000.0, "inches")
  17700. }
  17701. ]
  17702. )
  17703. };
  17704. pokemonMakers["Lanturn"] = () => {
  17705. return makeCharacter(
  17706. "Lanturn",
  17707. "Pokemon",
  17708. {
  17709. "Lanturn": {
  17710. height: math.unit("47", "inches"),
  17711. weight: math.unit("49.6", "lbs"),
  17712. name: "Lanturn",
  17713. image: {
  17714. source: "./media/pokemon/Lanturn.svg"
  17715. },
  17716. rename: true
  17717. }
  17718. },
  17719. [
  17720. {
  17721. name: "Micro",
  17722. height: math.unit(4.7, "inches")
  17723. },
  17724. {
  17725. name: "Normal",
  17726. height: math.unit(47, "inches"),
  17727. default: true
  17728. },
  17729. {
  17730. name: "Macro",
  17731. height: math.unit(4700.0, "inches")
  17732. },
  17733. {
  17734. name: "Megamacro",
  17735. height: math.unit(235000.0, "inches")
  17736. },
  17737. {
  17738. name: "Gigamacro",
  17739. height: math.unit(470000000.0, "inches")
  17740. }
  17741. ]
  17742. )
  17743. };
  17744. pokemonMakers["Larvesta"] = () => {
  17745. return makeCharacter(
  17746. "Larvesta",
  17747. "Pokemon",
  17748. {
  17749. "Larvesta": {
  17750. height: math.unit("43", "inches"),
  17751. weight: math.unit("63.5", "lbs"),
  17752. name: "Larvesta",
  17753. image: {
  17754. source: "./media/pokemon/Larvesta.svg"
  17755. },
  17756. rename: true
  17757. }
  17758. },
  17759. [
  17760. {
  17761. name: "Micro",
  17762. height: math.unit(4.3, "inches")
  17763. },
  17764. {
  17765. name: "Normal",
  17766. height: math.unit(43, "inches"),
  17767. default: true
  17768. },
  17769. {
  17770. name: "Macro",
  17771. height: math.unit(4300.0, "inches")
  17772. },
  17773. {
  17774. name: "Megamacro",
  17775. height: math.unit(215000.0, "inches")
  17776. },
  17777. {
  17778. name: "Gigamacro",
  17779. height: math.unit(430000000.0, "inches")
  17780. }
  17781. ]
  17782. )
  17783. };
  17784. pokemonMakers["Larvitar"] = () => {
  17785. return makeCharacter(
  17786. "Larvitar",
  17787. "Pokemon",
  17788. {
  17789. "Larvitar": {
  17790. height: math.unit("24", "inches"),
  17791. weight: math.unit("158.7", "lbs"),
  17792. name: "Larvitar",
  17793. image: {
  17794. source: "./media/pokemon/Larvitar.svg"
  17795. },
  17796. rename: true
  17797. }
  17798. },
  17799. [
  17800. {
  17801. name: "Micro",
  17802. height: math.unit(2.4, "inches")
  17803. },
  17804. {
  17805. name: "Normal",
  17806. height: math.unit(24, "inches"),
  17807. default: true
  17808. },
  17809. {
  17810. name: "Macro",
  17811. height: math.unit(2400.0, "inches")
  17812. },
  17813. {
  17814. name: "Megamacro",
  17815. height: math.unit(120000.0, "inches")
  17816. },
  17817. {
  17818. name: "Gigamacro",
  17819. height: math.unit(240000000.0, "inches")
  17820. }
  17821. ]
  17822. )
  17823. };
  17824. pokemonMakers["Latias"] = () => {
  17825. return makeCharacter(
  17826. "Latias",
  17827. "Pokemon",
  17828. {
  17829. "Latias": {
  17830. height: math.unit("55", "inches"),
  17831. weight: math.unit("88.2", "lbs"),
  17832. name: "Latias",
  17833. image: {
  17834. source: "./media/pokemon/Latias.svg"
  17835. },
  17836. rename: true
  17837. },
  17838. "Mega Latias": {
  17839. height: math.unit("71", "inches"),
  17840. weight: math.unit("114.6", "lbs"),
  17841. name: "Mega Latias",
  17842. image: {
  17843. source: "./media/pokemon/Mega Latias.svg"
  17844. },
  17845. rename: true
  17846. }
  17847. },
  17848. [
  17849. {
  17850. name: "Micro",
  17851. height: math.unit(5.5, "inches")
  17852. },
  17853. {
  17854. name: "Normal",
  17855. height: math.unit(55, "inches"),
  17856. default: true
  17857. },
  17858. {
  17859. name: "Macro",
  17860. height: math.unit(5500.0, "inches")
  17861. },
  17862. {
  17863. name: "Megamacro",
  17864. height: math.unit(275000.0, "inches")
  17865. },
  17866. {
  17867. name: "Gigamacro",
  17868. height: math.unit(550000000.0, "inches")
  17869. }
  17870. ]
  17871. )
  17872. };
  17873. pokemonMakers["Latios"] = () => {
  17874. return makeCharacter(
  17875. "Latios",
  17876. "Pokemon",
  17877. {
  17878. "Latios": {
  17879. height: math.unit("79", "inches"),
  17880. weight: math.unit("132.3", "lbs"),
  17881. name: "Latios",
  17882. image: {
  17883. source: "./media/pokemon/Latios.svg"
  17884. },
  17885. rename: true
  17886. },
  17887. "Mega Latios": {
  17888. height: math.unit("91", "inches"),
  17889. weight: math.unit("154.3", "lbs"),
  17890. name: "Mega Latios",
  17891. image: {
  17892. source: "./media/pokemon/Mega Latios.svg"
  17893. },
  17894. rename: true
  17895. }
  17896. },
  17897. [
  17898. {
  17899. name: "Micro",
  17900. height: math.unit(7.9, "inches")
  17901. },
  17902. {
  17903. name: "Normal",
  17904. height: math.unit(79, "inches"),
  17905. default: true
  17906. },
  17907. {
  17908. name: "Macro",
  17909. height: math.unit(7900.0, "inches")
  17910. },
  17911. {
  17912. name: "Megamacro",
  17913. height: math.unit(395000.0, "inches")
  17914. },
  17915. {
  17916. name: "Gigamacro",
  17917. height: math.unit(790000000.0, "inches")
  17918. }
  17919. ]
  17920. )
  17921. };
  17922. pokemonMakers["Leafeon"] = () => {
  17923. return makeCharacter(
  17924. "Leafeon",
  17925. "Pokemon",
  17926. {
  17927. "Leafeon": {
  17928. height: math.unit("39", "inches"),
  17929. weight: math.unit("56.2", "lbs"),
  17930. name: "Leafeon",
  17931. image: {
  17932. source: "./media/pokemon/Leafeon.svg"
  17933. },
  17934. rename: true
  17935. }
  17936. },
  17937. [
  17938. {
  17939. name: "Micro",
  17940. height: math.unit(3.9, "inches")
  17941. },
  17942. {
  17943. name: "Normal",
  17944. height: math.unit(39, "inches"),
  17945. default: true
  17946. },
  17947. {
  17948. name: "Macro",
  17949. height: math.unit(3900.0, "inches")
  17950. },
  17951. {
  17952. name: "Megamacro",
  17953. height: math.unit(195000.0, "inches")
  17954. },
  17955. {
  17956. name: "Gigamacro",
  17957. height: math.unit(390000000.0, "inches")
  17958. }
  17959. ]
  17960. )
  17961. };
  17962. pokemonMakers["Leavanny"] = () => {
  17963. return makeCharacter(
  17964. "Leavanny",
  17965. "Pokemon",
  17966. {
  17967. "Leavanny": {
  17968. height: math.unit("47", "inches"),
  17969. weight: math.unit("45.2", "lbs"),
  17970. name: "Leavanny",
  17971. image: {
  17972. source: "./media/pokemon/Leavanny.svg"
  17973. },
  17974. rename: true
  17975. }
  17976. },
  17977. [
  17978. {
  17979. name: "Micro",
  17980. height: math.unit(4.7, "inches")
  17981. },
  17982. {
  17983. name: "Normal",
  17984. height: math.unit(47, "inches"),
  17985. default: true
  17986. },
  17987. {
  17988. name: "Macro",
  17989. height: math.unit(4700.0, "inches")
  17990. },
  17991. {
  17992. name: "Megamacro",
  17993. height: math.unit(235000.0, "inches")
  17994. },
  17995. {
  17996. name: "Gigamacro",
  17997. height: math.unit(470000000.0, "inches")
  17998. }
  17999. ]
  18000. )
  18001. };
  18002. pokemonMakers["Ledian"] = () => {
  18003. return makeCharacter(
  18004. "Ledian",
  18005. "Pokemon",
  18006. {
  18007. "Ledian": {
  18008. height: math.unit("55", "inches"),
  18009. weight: math.unit("78.5", "lbs"),
  18010. name: "Ledian",
  18011. image: {
  18012. source: "./media/pokemon/Ledian.svg"
  18013. },
  18014. rename: true
  18015. }
  18016. },
  18017. [
  18018. {
  18019. name: "Micro",
  18020. height: math.unit(5.5, "inches")
  18021. },
  18022. {
  18023. name: "Normal",
  18024. height: math.unit(55, "inches"),
  18025. default: true
  18026. },
  18027. {
  18028. name: "Macro",
  18029. height: math.unit(5500.0, "inches")
  18030. },
  18031. {
  18032. name: "Megamacro",
  18033. height: math.unit(275000.0, "inches")
  18034. },
  18035. {
  18036. name: "Gigamacro",
  18037. height: math.unit(550000000.0, "inches")
  18038. }
  18039. ]
  18040. )
  18041. };
  18042. pokemonMakers["Ledyba"] = () => {
  18043. return makeCharacter(
  18044. "Ledyba",
  18045. "Pokemon",
  18046. {
  18047. "Ledyba": {
  18048. height: math.unit("39", "inches"),
  18049. weight: math.unit("23.8", "lbs"),
  18050. name: "Ledyba",
  18051. image: {
  18052. source: "./media/pokemon/Ledyba.svg"
  18053. },
  18054. rename: true
  18055. }
  18056. },
  18057. [
  18058. {
  18059. name: "Micro",
  18060. height: math.unit(3.9, "inches")
  18061. },
  18062. {
  18063. name: "Normal",
  18064. height: math.unit(39, "inches"),
  18065. default: true
  18066. },
  18067. {
  18068. name: "Macro",
  18069. height: math.unit(3900.0, "inches")
  18070. },
  18071. {
  18072. name: "Megamacro",
  18073. height: math.unit(195000.0, "inches")
  18074. },
  18075. {
  18076. name: "Gigamacro",
  18077. height: math.unit(390000000.0, "inches")
  18078. }
  18079. ]
  18080. )
  18081. };
  18082. pokemonMakers["Lickilicky"] = () => {
  18083. return makeCharacter(
  18084. "Lickilicky",
  18085. "Pokemon",
  18086. {
  18087. "Lickilicky": {
  18088. height: math.unit("67", "inches"),
  18089. weight: math.unit("308.6", "lbs"),
  18090. name: "Lickilicky",
  18091. image: {
  18092. source: "./media/pokemon/Lickilicky.svg"
  18093. },
  18094. rename: true
  18095. }
  18096. },
  18097. [
  18098. {
  18099. name: "Micro",
  18100. height: math.unit(6.7, "inches")
  18101. },
  18102. {
  18103. name: "Normal",
  18104. height: math.unit(67, "inches"),
  18105. default: true
  18106. },
  18107. {
  18108. name: "Macro",
  18109. height: math.unit(6700.0, "inches")
  18110. },
  18111. {
  18112. name: "Megamacro",
  18113. height: math.unit(335000.0, "inches")
  18114. },
  18115. {
  18116. name: "Gigamacro",
  18117. height: math.unit(670000000.0, "inches")
  18118. }
  18119. ]
  18120. )
  18121. };
  18122. pokemonMakers["Lickitung"] = () => {
  18123. return makeCharacter(
  18124. "Lickitung",
  18125. "Pokemon",
  18126. {
  18127. "Lickitung": {
  18128. height: math.unit("47", "inches"),
  18129. weight: math.unit("144.4", "lbs"),
  18130. name: "Lickitung",
  18131. image: {
  18132. source: "./media/pokemon/Lickitung.svg"
  18133. },
  18134. rename: true
  18135. }
  18136. },
  18137. [
  18138. {
  18139. name: "Micro",
  18140. height: math.unit(4.7, "inches")
  18141. },
  18142. {
  18143. name: "Normal",
  18144. height: math.unit(47, "inches"),
  18145. default: true
  18146. },
  18147. {
  18148. name: "Macro",
  18149. height: math.unit(4700.0, "inches")
  18150. },
  18151. {
  18152. name: "Megamacro",
  18153. height: math.unit(235000.0, "inches")
  18154. },
  18155. {
  18156. name: "Gigamacro",
  18157. height: math.unit(470000000.0, "inches")
  18158. }
  18159. ]
  18160. )
  18161. };
  18162. pokemonMakers["Liepard"] = () => {
  18163. return makeCharacter(
  18164. "Liepard",
  18165. "Pokemon",
  18166. {
  18167. "Liepard": {
  18168. height: math.unit("43", "inches"),
  18169. weight: math.unit("82.7", "lbs"),
  18170. name: "Liepard",
  18171. image: {
  18172. source: "./media/pokemon/Liepard.svg"
  18173. },
  18174. rename: true
  18175. }
  18176. },
  18177. [
  18178. {
  18179. name: "Micro",
  18180. height: math.unit(4.3, "inches")
  18181. },
  18182. {
  18183. name: "Normal",
  18184. height: math.unit(43, "inches"),
  18185. default: true
  18186. },
  18187. {
  18188. name: "Macro",
  18189. height: math.unit(4300.0, "inches")
  18190. },
  18191. {
  18192. name: "Megamacro",
  18193. height: math.unit(215000.0, "inches")
  18194. },
  18195. {
  18196. name: "Gigamacro",
  18197. height: math.unit(430000000.0, "inches")
  18198. }
  18199. ]
  18200. )
  18201. };
  18202. pokemonMakers["Lileep"] = () => {
  18203. return makeCharacter(
  18204. "Lileep",
  18205. "Pokemon",
  18206. {
  18207. "Lileep": {
  18208. height: math.unit("39", "inches"),
  18209. weight: math.unit("52.5", "lbs"),
  18210. name: "Lileep",
  18211. image: {
  18212. source: "./media/pokemon/Lileep.svg"
  18213. },
  18214. rename: true
  18215. }
  18216. },
  18217. [
  18218. {
  18219. name: "Micro",
  18220. height: math.unit(3.9, "inches")
  18221. },
  18222. {
  18223. name: "Normal",
  18224. height: math.unit(39, "inches"),
  18225. default: true
  18226. },
  18227. {
  18228. name: "Macro",
  18229. height: math.unit(3900.0, "inches")
  18230. },
  18231. {
  18232. name: "Megamacro",
  18233. height: math.unit(195000.0, "inches")
  18234. },
  18235. {
  18236. name: "Gigamacro",
  18237. height: math.unit(390000000.0, "inches")
  18238. }
  18239. ]
  18240. )
  18241. };
  18242. pokemonMakers["Lilligant"] = () => {
  18243. return makeCharacter(
  18244. "Lilligant",
  18245. "Pokemon",
  18246. {
  18247. "Lilligant": {
  18248. height: math.unit("43", "inches"),
  18249. weight: math.unit("35.9", "lbs"),
  18250. name: "Lilligant",
  18251. image: {
  18252. source: "./media/pokemon/Lilligant.svg"
  18253. },
  18254. rename: true
  18255. }
  18256. },
  18257. [
  18258. {
  18259. name: "Micro",
  18260. height: math.unit(4.3, "inches")
  18261. },
  18262. {
  18263. name: "Normal",
  18264. height: math.unit(43, "inches"),
  18265. default: true
  18266. },
  18267. {
  18268. name: "Macro",
  18269. height: math.unit(4300.0, "inches")
  18270. },
  18271. {
  18272. name: "Megamacro",
  18273. height: math.unit(215000.0, "inches")
  18274. },
  18275. {
  18276. name: "Gigamacro",
  18277. height: math.unit(430000000.0, "inches")
  18278. }
  18279. ]
  18280. )
  18281. };
  18282. pokemonMakers["Lillipup"] = () => {
  18283. return makeCharacter(
  18284. "Lillipup",
  18285. "Pokemon",
  18286. {
  18287. "Lillipup": {
  18288. height: math.unit("16", "inches"),
  18289. weight: math.unit("9.0", "lbs"),
  18290. name: "Lillipup",
  18291. image: {
  18292. source: "./media/pokemon/Lillipup.svg"
  18293. },
  18294. rename: true
  18295. }
  18296. },
  18297. [
  18298. {
  18299. name: "Micro",
  18300. height: math.unit(1.6, "inches")
  18301. },
  18302. {
  18303. name: "Normal",
  18304. height: math.unit(16, "inches"),
  18305. default: true
  18306. },
  18307. {
  18308. name: "Macro",
  18309. height: math.unit(1600.0, "inches")
  18310. },
  18311. {
  18312. name: "Megamacro",
  18313. height: math.unit(80000.0, "inches")
  18314. },
  18315. {
  18316. name: "Gigamacro",
  18317. height: math.unit(160000000.0, "inches")
  18318. }
  18319. ]
  18320. )
  18321. };
  18322. pokemonMakers["Linoone"] = () => {
  18323. return makeCharacter(
  18324. "Linoone",
  18325. "Pokemon",
  18326. {
  18327. "Galarian Form": {
  18328. height: math.unit("20", "inches"),
  18329. weight: math.unit("71.7", "lbs"),
  18330. name: "Galarian Form",
  18331. image: {
  18332. source: "./media/pokemon/Linoone - Galarian Form.svg"
  18333. },
  18334. rename: true
  18335. },
  18336. "Linoone": {
  18337. height: math.unit("20", "inches"),
  18338. weight: math.unit("71.6", "lbs"),
  18339. name: "Linoone",
  18340. image: {
  18341. source: "./media/pokemon/Linoone.svg"
  18342. },
  18343. rename: true
  18344. }
  18345. },
  18346. [
  18347. {
  18348. name: "Micro",
  18349. height: math.unit(2.0, "inches")
  18350. },
  18351. {
  18352. name: "Normal",
  18353. height: math.unit(20, "inches"),
  18354. default: true
  18355. },
  18356. {
  18357. name: "Macro",
  18358. height: math.unit(2000.0, "inches")
  18359. },
  18360. {
  18361. name: "Megamacro",
  18362. height: math.unit(100000.0, "inches")
  18363. },
  18364. {
  18365. name: "Gigamacro",
  18366. height: math.unit(200000000.0, "inches")
  18367. }
  18368. ]
  18369. )
  18370. };
  18371. pokemonMakers["Litleo"] = () => {
  18372. return makeCharacter(
  18373. "Litleo",
  18374. "Pokemon",
  18375. {
  18376. "Litleo": {
  18377. height: math.unit("24", "inches"),
  18378. weight: math.unit("29.8", "lbs"),
  18379. name: "Litleo",
  18380. image: {
  18381. source: "./media/pokemon/Litleo.svg"
  18382. },
  18383. rename: true
  18384. }
  18385. },
  18386. [
  18387. {
  18388. name: "Micro",
  18389. height: math.unit(2.4, "inches")
  18390. },
  18391. {
  18392. name: "Normal",
  18393. height: math.unit(24, "inches"),
  18394. default: true
  18395. },
  18396. {
  18397. name: "Macro",
  18398. height: math.unit(2400.0, "inches")
  18399. },
  18400. {
  18401. name: "Megamacro",
  18402. height: math.unit(120000.0, "inches")
  18403. },
  18404. {
  18405. name: "Gigamacro",
  18406. height: math.unit(240000000.0, "inches")
  18407. }
  18408. ]
  18409. )
  18410. };
  18411. pokemonMakers["Litten"] = () => {
  18412. return makeCharacter(
  18413. "Litten",
  18414. "Pokemon",
  18415. {
  18416. "Litten": {
  18417. height: math.unit("16", "inches"),
  18418. weight: math.unit("9.5", "lbs"),
  18419. name: "Litten",
  18420. image: {
  18421. source: "./media/pokemon/Litten.svg"
  18422. },
  18423. rename: true
  18424. }
  18425. },
  18426. [
  18427. {
  18428. name: "Micro",
  18429. height: math.unit(1.6, "inches")
  18430. },
  18431. {
  18432. name: "Normal",
  18433. height: math.unit(16, "inches"),
  18434. default: true
  18435. },
  18436. {
  18437. name: "Macro",
  18438. height: math.unit(1600.0, "inches")
  18439. },
  18440. {
  18441. name: "Megamacro",
  18442. height: math.unit(80000.0, "inches")
  18443. },
  18444. {
  18445. name: "Gigamacro",
  18446. height: math.unit(160000000.0, "inches")
  18447. }
  18448. ]
  18449. )
  18450. };
  18451. pokemonMakers["Litwick"] = () => {
  18452. return makeCharacter(
  18453. "Litwick",
  18454. "Pokemon",
  18455. {
  18456. "Litwick": {
  18457. height: math.unit("12", "inches"),
  18458. weight: math.unit("6.8", "lbs"),
  18459. name: "Litwick",
  18460. image: {
  18461. source: "./media/pokemon/Litwick.svg"
  18462. },
  18463. rename: true
  18464. }
  18465. },
  18466. [
  18467. {
  18468. name: "Micro",
  18469. height: math.unit(1.2, "inches")
  18470. },
  18471. {
  18472. name: "Normal",
  18473. height: math.unit(12, "inches"),
  18474. default: true
  18475. },
  18476. {
  18477. name: "Macro",
  18478. height: math.unit(1200.0, "inches")
  18479. },
  18480. {
  18481. name: "Megamacro",
  18482. height: math.unit(60000.0, "inches")
  18483. },
  18484. {
  18485. name: "Gigamacro",
  18486. height: math.unit(120000000.0, "inches")
  18487. }
  18488. ]
  18489. )
  18490. };
  18491. pokemonMakers["Lombre"] = () => {
  18492. return makeCharacter(
  18493. "Lombre",
  18494. "Pokemon",
  18495. {
  18496. "Lombre": {
  18497. height: math.unit("47", "inches"),
  18498. weight: math.unit("71.6", "lbs"),
  18499. name: "Lombre",
  18500. image: {
  18501. source: "./media/pokemon/Lombre.svg"
  18502. },
  18503. rename: true
  18504. }
  18505. },
  18506. [
  18507. {
  18508. name: "Micro",
  18509. height: math.unit(4.7, "inches")
  18510. },
  18511. {
  18512. name: "Normal",
  18513. height: math.unit(47, "inches"),
  18514. default: true
  18515. },
  18516. {
  18517. name: "Macro",
  18518. height: math.unit(4700.0, "inches")
  18519. },
  18520. {
  18521. name: "Megamacro",
  18522. height: math.unit(235000.0, "inches")
  18523. },
  18524. {
  18525. name: "Gigamacro",
  18526. height: math.unit(470000000.0, "inches")
  18527. }
  18528. ]
  18529. )
  18530. };
  18531. pokemonMakers["Lopunny"] = () => {
  18532. return makeCharacter(
  18533. "Lopunny",
  18534. "Pokemon",
  18535. {
  18536. "Lopunny": {
  18537. height: math.unit("47", "inches"),
  18538. weight: math.unit("73.4", "lbs"),
  18539. name: "Lopunny",
  18540. image: {
  18541. source: "./media/pokemon/Lopunny.svg"
  18542. },
  18543. rename: true
  18544. },
  18545. "Mega Lopunny": {
  18546. height: math.unit("51", "inches"),
  18547. weight: math.unit("62.4", "lbs"),
  18548. name: "Mega Lopunny",
  18549. image: {
  18550. source: "./media/pokemon/Mega Lopunny.svg"
  18551. },
  18552. rename: true
  18553. }
  18554. },
  18555. [
  18556. {
  18557. name: "Micro",
  18558. height: math.unit(4.7, "inches")
  18559. },
  18560. {
  18561. name: "Normal",
  18562. height: math.unit(47, "inches"),
  18563. default: true
  18564. },
  18565. {
  18566. name: "Macro",
  18567. height: math.unit(4700.0, "inches")
  18568. },
  18569. {
  18570. name: "Megamacro",
  18571. height: math.unit(235000.0, "inches")
  18572. },
  18573. {
  18574. name: "Gigamacro",
  18575. height: math.unit(470000000.0, "inches")
  18576. }
  18577. ]
  18578. )
  18579. };
  18580. pokemonMakers["Lotad"] = () => {
  18581. return makeCharacter(
  18582. "Lotad",
  18583. "Pokemon",
  18584. {
  18585. "Lotad": {
  18586. height: math.unit("20", "inches"),
  18587. weight: math.unit("5.7", "lbs"),
  18588. name: "Lotad",
  18589. image: {
  18590. source: "./media/pokemon/Lotad.svg"
  18591. },
  18592. rename: true
  18593. }
  18594. },
  18595. [
  18596. {
  18597. name: "Micro",
  18598. height: math.unit(2.0, "inches")
  18599. },
  18600. {
  18601. name: "Normal",
  18602. height: math.unit(20, "inches"),
  18603. default: true
  18604. },
  18605. {
  18606. name: "Macro",
  18607. height: math.unit(2000.0, "inches")
  18608. },
  18609. {
  18610. name: "Megamacro",
  18611. height: math.unit(100000.0, "inches")
  18612. },
  18613. {
  18614. name: "Gigamacro",
  18615. height: math.unit(200000000.0, "inches")
  18616. }
  18617. ]
  18618. )
  18619. };
  18620. pokemonMakers["Loudred"] = () => {
  18621. return makeCharacter(
  18622. "Loudred",
  18623. "Pokemon",
  18624. {
  18625. "Loudred": {
  18626. height: math.unit("39", "inches"),
  18627. weight: math.unit("89.3", "lbs"),
  18628. name: "Loudred",
  18629. image: {
  18630. source: "./media/pokemon/Loudred.svg"
  18631. },
  18632. rename: true
  18633. }
  18634. },
  18635. [
  18636. {
  18637. name: "Micro",
  18638. height: math.unit(3.9, "inches")
  18639. },
  18640. {
  18641. name: "Normal",
  18642. height: math.unit(39, "inches"),
  18643. default: true
  18644. },
  18645. {
  18646. name: "Macro",
  18647. height: math.unit(3900.0, "inches")
  18648. },
  18649. {
  18650. name: "Megamacro",
  18651. height: math.unit(195000.0, "inches")
  18652. },
  18653. {
  18654. name: "Gigamacro",
  18655. height: math.unit(390000000.0, "inches")
  18656. }
  18657. ]
  18658. )
  18659. };
  18660. pokemonMakers["Lucario"] = () => {
  18661. return makeCharacter(
  18662. "Lucario",
  18663. "Pokemon",
  18664. {
  18665. "Lucario": {
  18666. height: math.unit("47", "inches"),
  18667. weight: math.unit("119.0", "lbs"),
  18668. name: "Lucario",
  18669. image: {
  18670. source: "./media/pokemon/Lucario.svg"
  18671. },
  18672. rename: true
  18673. },
  18674. "Mega Lucario": {
  18675. height: math.unit("51", "inches"),
  18676. weight: math.unit("126.8", "lbs"),
  18677. name: "Mega Lucario",
  18678. image: {
  18679. source: "./media/pokemon/Mega Lucario.svg"
  18680. },
  18681. rename: true
  18682. }
  18683. },
  18684. [
  18685. {
  18686. name: "Micro",
  18687. height: math.unit(4.7, "inches")
  18688. },
  18689. {
  18690. name: "Normal",
  18691. height: math.unit(47, "inches"),
  18692. default: true
  18693. },
  18694. {
  18695. name: "Macro",
  18696. height: math.unit(4700.0, "inches")
  18697. },
  18698. {
  18699. name: "Megamacro",
  18700. height: math.unit(235000.0, "inches")
  18701. },
  18702. {
  18703. name: "Gigamacro",
  18704. height: math.unit(470000000.0, "inches")
  18705. }
  18706. ]
  18707. )
  18708. };
  18709. pokemonMakers["Ludicolo"] = () => {
  18710. return makeCharacter(
  18711. "Ludicolo",
  18712. "Pokemon",
  18713. {
  18714. "Ludicolo": {
  18715. height: math.unit("59", "inches"),
  18716. weight: math.unit("121.3", "lbs"),
  18717. name: "Ludicolo",
  18718. image: {
  18719. source: "./media/pokemon/Ludicolo.svg"
  18720. },
  18721. rename: true
  18722. }
  18723. },
  18724. [
  18725. {
  18726. name: "Micro",
  18727. height: math.unit(5.9, "inches")
  18728. },
  18729. {
  18730. name: "Normal",
  18731. height: math.unit(59, "inches"),
  18732. default: true
  18733. },
  18734. {
  18735. name: "Macro",
  18736. height: math.unit(5900.0, "inches")
  18737. },
  18738. {
  18739. name: "Megamacro",
  18740. height: math.unit(295000.0, "inches")
  18741. },
  18742. {
  18743. name: "Gigamacro",
  18744. height: math.unit(590000000.0, "inches")
  18745. }
  18746. ]
  18747. )
  18748. };
  18749. pokemonMakers["Lugia"] = () => {
  18750. return makeCharacter(
  18751. "Lugia",
  18752. "Pokemon",
  18753. {
  18754. "Lugia": {
  18755. height: math.unit("205", "inches"),
  18756. weight: math.unit("476.2", "lbs"),
  18757. name: "Lugia",
  18758. image: {
  18759. source: "./media/pokemon/Lugia.svg"
  18760. },
  18761. rename: true
  18762. }
  18763. },
  18764. [
  18765. {
  18766. name: "Micro",
  18767. height: math.unit(20.5, "inches")
  18768. },
  18769. {
  18770. name: "Normal",
  18771. height: math.unit(205, "inches"),
  18772. default: true
  18773. },
  18774. {
  18775. name: "Macro",
  18776. height: math.unit(20500.0, "inches")
  18777. },
  18778. {
  18779. name: "Megamacro",
  18780. height: math.unit(1025000.0, "inches")
  18781. },
  18782. {
  18783. name: "Gigamacro",
  18784. height: math.unit(2050000000.0, "inches")
  18785. }
  18786. ]
  18787. )
  18788. };
  18789. pokemonMakers["Lumineon"] = () => {
  18790. return makeCharacter(
  18791. "Lumineon",
  18792. "Pokemon",
  18793. {
  18794. "Lumineon": {
  18795. height: math.unit("47", "inches"),
  18796. weight: math.unit("52.9", "lbs"),
  18797. name: "Lumineon",
  18798. image: {
  18799. source: "./media/pokemon/Lumineon.svg"
  18800. },
  18801. rename: true
  18802. }
  18803. },
  18804. [
  18805. {
  18806. name: "Micro",
  18807. height: math.unit(4.7, "inches")
  18808. },
  18809. {
  18810. name: "Normal",
  18811. height: math.unit(47, "inches"),
  18812. default: true
  18813. },
  18814. {
  18815. name: "Macro",
  18816. height: math.unit(4700.0, "inches")
  18817. },
  18818. {
  18819. name: "Megamacro",
  18820. height: math.unit(235000.0, "inches")
  18821. },
  18822. {
  18823. name: "Gigamacro",
  18824. height: math.unit(470000000.0, "inches")
  18825. }
  18826. ]
  18827. )
  18828. };
  18829. pokemonMakers["Lunala"] = () => {
  18830. return makeCharacter(
  18831. "Lunala",
  18832. "Pokemon",
  18833. {
  18834. "Lunala": {
  18835. height: math.unit("157", "inches"),
  18836. weight: math.unit("264.6", "lbs"),
  18837. name: "Lunala",
  18838. image: {
  18839. source: "./media/pokemon/Lunala.svg"
  18840. },
  18841. rename: true
  18842. }
  18843. },
  18844. [
  18845. {
  18846. name: "Micro",
  18847. height: math.unit(15.7, "inches")
  18848. },
  18849. {
  18850. name: "Normal",
  18851. height: math.unit(157, "inches"),
  18852. default: true
  18853. },
  18854. {
  18855. name: "Macro",
  18856. height: math.unit(15700.0, "inches")
  18857. },
  18858. {
  18859. name: "Megamacro",
  18860. height: math.unit(785000.0, "inches")
  18861. },
  18862. {
  18863. name: "Gigamacro",
  18864. height: math.unit(1570000000.0, "inches")
  18865. }
  18866. ]
  18867. )
  18868. };
  18869. pokemonMakers["Lunatone"] = () => {
  18870. return makeCharacter(
  18871. "Lunatone",
  18872. "Pokemon",
  18873. {
  18874. "Lunatone": {
  18875. height: math.unit("39", "inches"),
  18876. weight: math.unit("370.4", "lbs"),
  18877. name: "Lunatone",
  18878. image: {
  18879. source: "./media/pokemon/Lunatone.svg"
  18880. },
  18881. rename: true
  18882. }
  18883. },
  18884. [
  18885. {
  18886. name: "Micro",
  18887. height: math.unit(3.9, "inches")
  18888. },
  18889. {
  18890. name: "Normal",
  18891. height: math.unit(39, "inches"),
  18892. default: true
  18893. },
  18894. {
  18895. name: "Macro",
  18896. height: math.unit(3900.0, "inches")
  18897. },
  18898. {
  18899. name: "Megamacro",
  18900. height: math.unit(195000.0, "inches")
  18901. },
  18902. {
  18903. name: "Gigamacro",
  18904. height: math.unit(390000000.0, "inches")
  18905. }
  18906. ]
  18907. )
  18908. };
  18909. pokemonMakers["Lurantis"] = () => {
  18910. return makeCharacter(
  18911. "Lurantis",
  18912. "Pokemon",
  18913. {
  18914. "Lurantis": {
  18915. height: math.unit("35", "inches"),
  18916. weight: math.unit("40.8", "lbs"),
  18917. name: "Lurantis",
  18918. image: {
  18919. source: "./media/pokemon/Lurantis.svg"
  18920. },
  18921. rename: true
  18922. }
  18923. },
  18924. [
  18925. {
  18926. name: "Micro",
  18927. height: math.unit(3.5, "inches")
  18928. },
  18929. {
  18930. name: "Normal",
  18931. height: math.unit(35, "inches"),
  18932. default: true
  18933. },
  18934. {
  18935. name: "Macro",
  18936. height: math.unit(3500.0, "inches")
  18937. },
  18938. {
  18939. name: "Megamacro",
  18940. height: math.unit(175000.0, "inches")
  18941. },
  18942. {
  18943. name: "Gigamacro",
  18944. height: math.unit(350000000.0, "inches")
  18945. }
  18946. ]
  18947. )
  18948. };
  18949. pokemonMakers["Luvdisc"] = () => {
  18950. return makeCharacter(
  18951. "Luvdisc",
  18952. "Pokemon",
  18953. {
  18954. "Luvdisc": {
  18955. height: math.unit("24", "inches"),
  18956. weight: math.unit("19.2", "lbs"),
  18957. name: "Luvdisc",
  18958. image: {
  18959. source: "./media/pokemon/Luvdisc.svg"
  18960. },
  18961. rename: true
  18962. }
  18963. },
  18964. [
  18965. {
  18966. name: "Micro",
  18967. height: math.unit(2.4, "inches")
  18968. },
  18969. {
  18970. name: "Normal",
  18971. height: math.unit(24, "inches"),
  18972. default: true
  18973. },
  18974. {
  18975. name: "Macro",
  18976. height: math.unit(2400.0, "inches")
  18977. },
  18978. {
  18979. name: "Megamacro",
  18980. height: math.unit(120000.0, "inches")
  18981. },
  18982. {
  18983. name: "Gigamacro",
  18984. height: math.unit(240000000.0, "inches")
  18985. }
  18986. ]
  18987. )
  18988. };
  18989. pokemonMakers["Luxio"] = () => {
  18990. return makeCharacter(
  18991. "Luxio",
  18992. "Pokemon",
  18993. {
  18994. "Luxio": {
  18995. height: math.unit("35", "inches"),
  18996. weight: math.unit("67.2", "lbs"),
  18997. name: "Luxio",
  18998. image: {
  18999. source: "./media/pokemon/Luxio.svg"
  19000. },
  19001. rename: true
  19002. }
  19003. },
  19004. [
  19005. {
  19006. name: "Micro",
  19007. height: math.unit(3.5, "inches")
  19008. },
  19009. {
  19010. name: "Normal",
  19011. height: math.unit(35, "inches"),
  19012. default: true
  19013. },
  19014. {
  19015. name: "Macro",
  19016. height: math.unit(3500.0, "inches")
  19017. },
  19018. {
  19019. name: "Megamacro",
  19020. height: math.unit(175000.0, "inches")
  19021. },
  19022. {
  19023. name: "Gigamacro",
  19024. height: math.unit(350000000.0, "inches")
  19025. }
  19026. ]
  19027. )
  19028. };
  19029. pokemonMakers["Luxray"] = () => {
  19030. return makeCharacter(
  19031. "Luxray",
  19032. "Pokemon",
  19033. {
  19034. "Luxray": {
  19035. height: math.unit("55", "inches"),
  19036. weight: math.unit("92.6", "lbs"),
  19037. name: "Luxray",
  19038. image: {
  19039. source: "./media/pokemon/Luxray.svg"
  19040. },
  19041. rename: true
  19042. }
  19043. },
  19044. [
  19045. {
  19046. name: "Micro",
  19047. height: math.unit(5.5, "inches")
  19048. },
  19049. {
  19050. name: "Normal",
  19051. height: math.unit(55, "inches"),
  19052. default: true
  19053. },
  19054. {
  19055. name: "Macro",
  19056. height: math.unit(5500.0, "inches")
  19057. },
  19058. {
  19059. name: "Megamacro",
  19060. height: math.unit(275000.0, "inches")
  19061. },
  19062. {
  19063. name: "Gigamacro",
  19064. height: math.unit(550000000.0, "inches")
  19065. }
  19066. ]
  19067. )
  19068. };
  19069. pokemonMakers["Lycanroc"] = () => {
  19070. return makeCharacter(
  19071. "Lycanroc",
  19072. "Pokemon",
  19073. {
  19074. "Midday Form": {
  19075. height: math.unit("31", "inches"),
  19076. weight: math.unit("55.1", "lbs"),
  19077. name: "Midday Form",
  19078. image: {
  19079. source: "./media/pokemon/Lycanroc - Midday Form.svg"
  19080. },
  19081. rename: true
  19082. },
  19083. "Midnight Form": {
  19084. height: math.unit("43", "inches"),
  19085. weight: math.unit("55.1", "lbs"),
  19086. name: "Midnight Form",
  19087. image: {
  19088. source: "./media/pokemon/Lycanroc - Midnight Form.svg"
  19089. },
  19090. rename: true
  19091. }
  19092. },
  19093. [
  19094. {
  19095. name: "Micro",
  19096. height: math.unit(3.1, "inches")
  19097. },
  19098. {
  19099. name: "Normal",
  19100. height: math.unit(31, "inches"),
  19101. default: true
  19102. },
  19103. {
  19104. name: "Macro",
  19105. height: math.unit(3100.0, "inches")
  19106. },
  19107. {
  19108. name: "Megamacro",
  19109. height: math.unit(155000.0, "inches")
  19110. },
  19111. {
  19112. name: "Gigamacro",
  19113. height: math.unit(310000000.0, "inches")
  19114. }
  19115. ]
  19116. )
  19117. };
  19118. pokemonMakers["Machoke"] = () => {
  19119. return makeCharacter(
  19120. "Machoke",
  19121. "Pokemon",
  19122. {
  19123. "Machoke": {
  19124. height: math.unit("59", "inches"),
  19125. weight: math.unit("155.4", "lbs"),
  19126. name: "Machoke",
  19127. image: {
  19128. source: "./media/pokemon/Machoke.svg"
  19129. },
  19130. rename: true
  19131. }
  19132. },
  19133. [
  19134. {
  19135. name: "Micro",
  19136. height: math.unit(5.9, "inches")
  19137. },
  19138. {
  19139. name: "Normal",
  19140. height: math.unit(59, "inches"),
  19141. default: true
  19142. },
  19143. {
  19144. name: "Macro",
  19145. height: math.unit(5900.0, "inches")
  19146. },
  19147. {
  19148. name: "Megamacro",
  19149. height: math.unit(295000.0, "inches")
  19150. },
  19151. {
  19152. name: "Gigamacro",
  19153. height: math.unit(590000000.0, "inches")
  19154. }
  19155. ]
  19156. )
  19157. };
  19158. pokemonMakers["Machop"] = () => {
  19159. return makeCharacter(
  19160. "Machop",
  19161. "Pokemon",
  19162. {
  19163. "Machop": {
  19164. height: math.unit("31", "inches"),
  19165. weight: math.unit("43.0", "lbs"),
  19166. name: "Machop",
  19167. image: {
  19168. source: "./media/pokemon/Machop.svg"
  19169. },
  19170. rename: true
  19171. }
  19172. },
  19173. [
  19174. {
  19175. name: "Micro",
  19176. height: math.unit(3.1, "inches")
  19177. },
  19178. {
  19179. name: "Normal",
  19180. height: math.unit(31, "inches"),
  19181. default: true
  19182. },
  19183. {
  19184. name: "Macro",
  19185. height: math.unit(3100.0, "inches")
  19186. },
  19187. {
  19188. name: "Megamacro",
  19189. height: math.unit(155000.0, "inches")
  19190. },
  19191. {
  19192. name: "Gigamacro",
  19193. height: math.unit(310000000.0, "inches")
  19194. }
  19195. ]
  19196. )
  19197. };
  19198. pokemonMakers["Magby"] = () => {
  19199. return makeCharacter(
  19200. "Magby",
  19201. "Pokemon",
  19202. {
  19203. "Magby": {
  19204. height: math.unit("28", "inches"),
  19205. weight: math.unit("47.2", "lbs"),
  19206. name: "Magby",
  19207. image: {
  19208. source: "./media/pokemon/Magby.svg"
  19209. },
  19210. rename: true
  19211. }
  19212. },
  19213. [
  19214. {
  19215. name: "Micro",
  19216. height: math.unit(2.8, "inches")
  19217. },
  19218. {
  19219. name: "Normal",
  19220. height: math.unit(28, "inches"),
  19221. default: true
  19222. },
  19223. {
  19224. name: "Macro",
  19225. height: math.unit(2800.0, "inches")
  19226. },
  19227. {
  19228. name: "Megamacro",
  19229. height: math.unit(140000.0, "inches")
  19230. },
  19231. {
  19232. name: "Gigamacro",
  19233. height: math.unit(280000000.0, "inches")
  19234. }
  19235. ]
  19236. )
  19237. };
  19238. pokemonMakers["Magcargo"] = () => {
  19239. return makeCharacter(
  19240. "Magcargo",
  19241. "Pokemon",
  19242. {
  19243. "Magcargo": {
  19244. height: math.unit("31", "inches"),
  19245. weight: math.unit("121.3", "lbs"),
  19246. name: "Magcargo",
  19247. image: {
  19248. source: "./media/pokemon/Magcargo.svg"
  19249. },
  19250. rename: true
  19251. }
  19252. },
  19253. [
  19254. {
  19255. name: "Micro",
  19256. height: math.unit(3.1, "inches")
  19257. },
  19258. {
  19259. name: "Normal",
  19260. height: math.unit(31, "inches"),
  19261. default: true
  19262. },
  19263. {
  19264. name: "Macro",
  19265. height: math.unit(3100.0, "inches")
  19266. },
  19267. {
  19268. name: "Megamacro",
  19269. height: math.unit(155000.0, "inches")
  19270. },
  19271. {
  19272. name: "Gigamacro",
  19273. height: math.unit(310000000.0, "inches")
  19274. }
  19275. ]
  19276. )
  19277. };
  19278. pokemonMakers["Magearna"] = () => {
  19279. return makeCharacter(
  19280. "Magearna",
  19281. "Pokemon",
  19282. {
  19283. "Magearna": {
  19284. height: math.unit("39", "inches"),
  19285. weight: math.unit("177.5", "lbs"),
  19286. name: "Magearna",
  19287. image: {
  19288. source: "./media/pokemon/Magearna.svg"
  19289. },
  19290. rename: true
  19291. }
  19292. },
  19293. [
  19294. {
  19295. name: "Micro",
  19296. height: math.unit(3.9, "inches")
  19297. },
  19298. {
  19299. name: "Normal",
  19300. height: math.unit(39, "inches"),
  19301. default: true
  19302. },
  19303. {
  19304. name: "Macro",
  19305. height: math.unit(3900.0, "inches")
  19306. },
  19307. {
  19308. name: "Megamacro",
  19309. height: math.unit(195000.0, "inches")
  19310. },
  19311. {
  19312. name: "Gigamacro",
  19313. height: math.unit(390000000.0, "inches")
  19314. }
  19315. ]
  19316. )
  19317. };
  19318. pokemonMakers["Magikarp"] = () => {
  19319. return makeCharacter(
  19320. "Magikarp",
  19321. "Pokemon",
  19322. {
  19323. "Magikarp": {
  19324. height: math.unit("35", "inches"),
  19325. weight: math.unit("22.0", "lbs"),
  19326. name: "Magikarp",
  19327. image: {
  19328. source: "./media/pokemon/Magikarp.svg"
  19329. },
  19330. rename: true
  19331. }
  19332. },
  19333. [
  19334. {
  19335. name: "Micro",
  19336. height: math.unit(3.5, "inches")
  19337. },
  19338. {
  19339. name: "Normal",
  19340. height: math.unit(35, "inches"),
  19341. default: true
  19342. },
  19343. {
  19344. name: "Macro",
  19345. height: math.unit(3500.0, "inches")
  19346. },
  19347. {
  19348. name: "Megamacro",
  19349. height: math.unit(175000.0, "inches")
  19350. },
  19351. {
  19352. name: "Gigamacro",
  19353. height: math.unit(350000000.0, "inches")
  19354. }
  19355. ]
  19356. )
  19357. };
  19358. pokemonMakers["Magmar"] = () => {
  19359. return makeCharacter(
  19360. "Magmar",
  19361. "Pokemon",
  19362. {
  19363. "Magmar": {
  19364. height: math.unit("51", "inches"),
  19365. weight: math.unit("98.1", "lbs"),
  19366. name: "Magmar",
  19367. image: {
  19368. source: "./media/pokemon/Magmar.svg"
  19369. },
  19370. rename: true
  19371. }
  19372. },
  19373. [
  19374. {
  19375. name: "Micro",
  19376. height: math.unit(5.1, "inches")
  19377. },
  19378. {
  19379. name: "Normal",
  19380. height: math.unit(51, "inches"),
  19381. default: true
  19382. },
  19383. {
  19384. name: "Macro",
  19385. height: math.unit(5100.0, "inches")
  19386. },
  19387. {
  19388. name: "Megamacro",
  19389. height: math.unit(255000.0, "inches")
  19390. },
  19391. {
  19392. name: "Gigamacro",
  19393. height: math.unit(510000000.0, "inches")
  19394. }
  19395. ]
  19396. )
  19397. };
  19398. pokemonMakers["Magmortar"] = () => {
  19399. return makeCharacter(
  19400. "Magmortar",
  19401. "Pokemon",
  19402. {
  19403. "Magmortar": {
  19404. height: math.unit("63", "inches"),
  19405. weight: math.unit("149.9", "lbs"),
  19406. name: "Magmortar",
  19407. image: {
  19408. source: "./media/pokemon/Magmortar.svg"
  19409. },
  19410. rename: true
  19411. }
  19412. },
  19413. [
  19414. {
  19415. name: "Micro",
  19416. height: math.unit(6.3, "inches")
  19417. },
  19418. {
  19419. name: "Normal",
  19420. height: math.unit(63, "inches"),
  19421. default: true
  19422. },
  19423. {
  19424. name: "Macro",
  19425. height: math.unit(6300.0, "inches")
  19426. },
  19427. {
  19428. name: "Megamacro",
  19429. height: math.unit(315000.0, "inches")
  19430. },
  19431. {
  19432. name: "Gigamacro",
  19433. height: math.unit(630000000.0, "inches")
  19434. }
  19435. ]
  19436. )
  19437. };
  19438. pokemonMakers["Magnemite"] = () => {
  19439. return makeCharacter(
  19440. "Magnemite",
  19441. "Pokemon",
  19442. {
  19443. "Magnemite": {
  19444. height: math.unit("12", "inches"),
  19445. weight: math.unit("13.2", "lbs"),
  19446. name: "Magnemite",
  19447. image: {
  19448. source: "./media/pokemon/Magnemite.svg"
  19449. },
  19450. rename: true
  19451. }
  19452. },
  19453. [
  19454. {
  19455. name: "Micro",
  19456. height: math.unit(1.2, "inches")
  19457. },
  19458. {
  19459. name: "Normal",
  19460. height: math.unit(12, "inches"),
  19461. default: true
  19462. },
  19463. {
  19464. name: "Macro",
  19465. height: math.unit(1200.0, "inches")
  19466. },
  19467. {
  19468. name: "Megamacro",
  19469. height: math.unit(60000.0, "inches")
  19470. },
  19471. {
  19472. name: "Gigamacro",
  19473. height: math.unit(120000000.0, "inches")
  19474. }
  19475. ]
  19476. )
  19477. };
  19478. pokemonMakers["Magneton"] = () => {
  19479. return makeCharacter(
  19480. "Magneton",
  19481. "Pokemon",
  19482. {
  19483. "Magneton": {
  19484. height: math.unit("39", "inches"),
  19485. weight: math.unit("132.3", "lbs"),
  19486. name: "Magneton",
  19487. image: {
  19488. source: "./media/pokemon/Magneton.svg"
  19489. },
  19490. rename: true
  19491. }
  19492. },
  19493. [
  19494. {
  19495. name: "Micro",
  19496. height: math.unit(3.9, "inches")
  19497. },
  19498. {
  19499. name: "Normal",
  19500. height: math.unit(39, "inches"),
  19501. default: true
  19502. },
  19503. {
  19504. name: "Macro",
  19505. height: math.unit(3900.0, "inches")
  19506. },
  19507. {
  19508. name: "Megamacro",
  19509. height: math.unit(195000.0, "inches")
  19510. },
  19511. {
  19512. name: "Gigamacro",
  19513. height: math.unit(390000000.0, "inches")
  19514. }
  19515. ]
  19516. )
  19517. };
  19518. pokemonMakers["Magnezone"] = () => {
  19519. return makeCharacter(
  19520. "Magnezone",
  19521. "Pokemon",
  19522. {
  19523. "Magnezone": {
  19524. height: math.unit("47", "inches"),
  19525. weight: math.unit("396.8", "lbs"),
  19526. name: "Magnezone",
  19527. image: {
  19528. source: "./media/pokemon/Magnezone.svg"
  19529. },
  19530. rename: true
  19531. }
  19532. },
  19533. [
  19534. {
  19535. name: "Micro",
  19536. height: math.unit(4.7, "inches")
  19537. },
  19538. {
  19539. name: "Normal",
  19540. height: math.unit(47, "inches"),
  19541. default: true
  19542. },
  19543. {
  19544. name: "Macro",
  19545. height: math.unit(4700.0, "inches")
  19546. },
  19547. {
  19548. name: "Megamacro",
  19549. height: math.unit(235000.0, "inches")
  19550. },
  19551. {
  19552. name: "Gigamacro",
  19553. height: math.unit(470000000.0, "inches")
  19554. }
  19555. ]
  19556. )
  19557. };
  19558. pokemonMakers["Makuhita"] = () => {
  19559. return makeCharacter(
  19560. "Makuhita",
  19561. "Pokemon",
  19562. {
  19563. "Makuhita": {
  19564. height: math.unit("39", "inches"),
  19565. weight: math.unit("190.5", "lbs"),
  19566. name: "Makuhita",
  19567. image: {
  19568. source: "./media/pokemon/Makuhita.svg"
  19569. },
  19570. rename: true
  19571. }
  19572. },
  19573. [
  19574. {
  19575. name: "Micro",
  19576. height: math.unit(3.9, "inches")
  19577. },
  19578. {
  19579. name: "Normal",
  19580. height: math.unit(39, "inches"),
  19581. default: true
  19582. },
  19583. {
  19584. name: "Macro",
  19585. height: math.unit(3900.0, "inches")
  19586. },
  19587. {
  19588. name: "Megamacro",
  19589. height: math.unit(195000.0, "inches")
  19590. },
  19591. {
  19592. name: "Gigamacro",
  19593. height: math.unit(390000000.0, "inches")
  19594. }
  19595. ]
  19596. )
  19597. };
  19598. pokemonMakers["Malamar"] = () => {
  19599. return makeCharacter(
  19600. "Malamar",
  19601. "Pokemon",
  19602. {
  19603. "Malamar": {
  19604. height: math.unit("59", "inches"),
  19605. weight: math.unit("103.6", "lbs"),
  19606. name: "Malamar",
  19607. image: {
  19608. source: "./media/pokemon/Malamar.svg"
  19609. },
  19610. rename: true
  19611. }
  19612. },
  19613. [
  19614. {
  19615. name: "Micro",
  19616. height: math.unit(5.9, "inches")
  19617. },
  19618. {
  19619. name: "Normal",
  19620. height: math.unit(59, "inches"),
  19621. default: true
  19622. },
  19623. {
  19624. name: "Macro",
  19625. height: math.unit(5900.0, "inches")
  19626. },
  19627. {
  19628. name: "Megamacro",
  19629. height: math.unit(295000.0, "inches")
  19630. },
  19631. {
  19632. name: "Gigamacro",
  19633. height: math.unit(590000000.0, "inches")
  19634. }
  19635. ]
  19636. )
  19637. };
  19638. pokemonMakers["Mamoswine"] = () => {
  19639. return makeCharacter(
  19640. "Mamoswine",
  19641. "Pokemon",
  19642. {
  19643. "Mamoswine": {
  19644. height: math.unit("98", "inches"),
  19645. weight: math.unit("641.5", "lbs"),
  19646. name: "Mamoswine",
  19647. image: {
  19648. source: "./media/pokemon/Mamoswine.svg"
  19649. },
  19650. rename: true
  19651. }
  19652. },
  19653. [
  19654. {
  19655. name: "Micro",
  19656. height: math.unit(9.8, "inches")
  19657. },
  19658. {
  19659. name: "Normal",
  19660. height: math.unit(98, "inches"),
  19661. default: true
  19662. },
  19663. {
  19664. name: "Macro",
  19665. height: math.unit(9800.0, "inches")
  19666. },
  19667. {
  19668. name: "Megamacro",
  19669. height: math.unit(490000.0, "inches")
  19670. },
  19671. {
  19672. name: "Gigamacro",
  19673. height: math.unit(980000000.0, "inches")
  19674. }
  19675. ]
  19676. )
  19677. };
  19678. pokemonMakers["Manaphy"] = () => {
  19679. return makeCharacter(
  19680. "Manaphy",
  19681. "Pokemon",
  19682. {
  19683. "Manaphy": {
  19684. height: math.unit("12", "inches"),
  19685. weight: math.unit("3.1", "lbs"),
  19686. name: "Manaphy",
  19687. image: {
  19688. source: "./media/pokemon/Manaphy.svg"
  19689. },
  19690. rename: true
  19691. }
  19692. },
  19693. [
  19694. {
  19695. name: "Micro",
  19696. height: math.unit(1.2, "inches")
  19697. },
  19698. {
  19699. name: "Normal",
  19700. height: math.unit(12, "inches"),
  19701. default: true
  19702. },
  19703. {
  19704. name: "Macro",
  19705. height: math.unit(1200.0, "inches")
  19706. },
  19707. {
  19708. name: "Megamacro",
  19709. height: math.unit(60000.0, "inches")
  19710. },
  19711. {
  19712. name: "Gigamacro",
  19713. height: math.unit(120000000.0, "inches")
  19714. }
  19715. ]
  19716. )
  19717. };
  19718. pokemonMakers["Mandibuzz"] = () => {
  19719. return makeCharacter(
  19720. "Mandibuzz",
  19721. "Pokemon",
  19722. {
  19723. "Mandibuzz": {
  19724. height: math.unit("47", "inches"),
  19725. weight: math.unit("87.1", "lbs"),
  19726. name: "Mandibuzz",
  19727. image: {
  19728. source: "./media/pokemon/Mandibuzz.svg"
  19729. },
  19730. rename: true
  19731. }
  19732. },
  19733. [
  19734. {
  19735. name: "Micro",
  19736. height: math.unit(4.7, "inches")
  19737. },
  19738. {
  19739. name: "Normal",
  19740. height: math.unit(47, "inches"),
  19741. default: true
  19742. },
  19743. {
  19744. name: "Macro",
  19745. height: math.unit(4700.0, "inches")
  19746. },
  19747. {
  19748. name: "Megamacro",
  19749. height: math.unit(235000.0, "inches")
  19750. },
  19751. {
  19752. name: "Gigamacro",
  19753. height: math.unit(470000000.0, "inches")
  19754. }
  19755. ]
  19756. )
  19757. };
  19758. pokemonMakers["Manectric"] = () => {
  19759. return makeCharacter(
  19760. "Manectric",
  19761. "Pokemon",
  19762. {
  19763. "Manectric": {
  19764. height: math.unit("59", "inches"),
  19765. weight: math.unit("88.6", "lbs"),
  19766. name: "Manectric",
  19767. image: {
  19768. source: "./media/pokemon/Manectric.svg"
  19769. },
  19770. rename: true
  19771. },
  19772. "Mega Manectric": {
  19773. height: math.unit("71", "inches"),
  19774. weight: math.unit("97.0", "lbs"),
  19775. name: "Mega Manectric",
  19776. image: {
  19777. source: "./media/pokemon/Mega Manectric.svg"
  19778. },
  19779. rename: true
  19780. }
  19781. },
  19782. [
  19783. {
  19784. name: "Micro",
  19785. height: math.unit(5.9, "inches")
  19786. },
  19787. {
  19788. name: "Normal",
  19789. height: math.unit(59, "inches"),
  19790. default: true
  19791. },
  19792. {
  19793. name: "Macro",
  19794. height: math.unit(5900.0, "inches")
  19795. },
  19796. {
  19797. name: "Megamacro",
  19798. height: math.unit(295000.0, "inches")
  19799. },
  19800. {
  19801. name: "Gigamacro",
  19802. height: math.unit(590000000.0, "inches")
  19803. }
  19804. ]
  19805. )
  19806. };
  19807. pokemonMakers["Mankey"] = () => {
  19808. return makeCharacter(
  19809. "Mankey",
  19810. "Pokemon",
  19811. {
  19812. "Mankey": {
  19813. height: math.unit("20", "inches"),
  19814. weight: math.unit("61.7", "lbs"),
  19815. name: "Mankey",
  19816. image: {
  19817. source: "./media/pokemon/Mankey.svg"
  19818. },
  19819. rename: true
  19820. }
  19821. },
  19822. [
  19823. {
  19824. name: "Micro",
  19825. height: math.unit(2.0, "inches")
  19826. },
  19827. {
  19828. name: "Normal",
  19829. height: math.unit(20, "inches"),
  19830. default: true
  19831. },
  19832. {
  19833. name: "Macro",
  19834. height: math.unit(2000.0, "inches")
  19835. },
  19836. {
  19837. name: "Megamacro",
  19838. height: math.unit(100000.0, "inches")
  19839. },
  19840. {
  19841. name: "Gigamacro",
  19842. height: math.unit(200000000.0, "inches")
  19843. }
  19844. ]
  19845. )
  19846. };
  19847. pokemonMakers["Mantine"] = () => {
  19848. return makeCharacter(
  19849. "Mantine",
  19850. "Pokemon",
  19851. {
  19852. "Mantine": {
  19853. height: math.unit("83", "inches"),
  19854. weight: math.unit("485.0", "lbs"),
  19855. name: "Mantine",
  19856. image: {
  19857. source: "./media/pokemon/Mantine.svg"
  19858. },
  19859. rename: true
  19860. }
  19861. },
  19862. [
  19863. {
  19864. name: "Micro",
  19865. height: math.unit(8.3, "inches")
  19866. },
  19867. {
  19868. name: "Normal",
  19869. height: math.unit(83, "inches"),
  19870. default: true
  19871. },
  19872. {
  19873. name: "Macro",
  19874. height: math.unit(8300.0, "inches")
  19875. },
  19876. {
  19877. name: "Megamacro",
  19878. height: math.unit(415000.0, "inches")
  19879. },
  19880. {
  19881. name: "Gigamacro",
  19882. height: math.unit(830000000.0, "inches")
  19883. }
  19884. ]
  19885. )
  19886. };
  19887. pokemonMakers["Mantyke"] = () => {
  19888. return makeCharacter(
  19889. "Mantyke",
  19890. "Pokemon",
  19891. {
  19892. "Mantyke": {
  19893. height: math.unit("39", "inches"),
  19894. weight: math.unit("143.3", "lbs"),
  19895. name: "Mantyke",
  19896. image: {
  19897. source: "./media/pokemon/Mantyke.svg"
  19898. },
  19899. rename: true
  19900. }
  19901. },
  19902. [
  19903. {
  19904. name: "Micro",
  19905. height: math.unit(3.9, "inches")
  19906. },
  19907. {
  19908. name: "Normal",
  19909. height: math.unit(39, "inches"),
  19910. default: true
  19911. },
  19912. {
  19913. name: "Macro",
  19914. height: math.unit(3900.0, "inches")
  19915. },
  19916. {
  19917. name: "Megamacro",
  19918. height: math.unit(195000.0, "inches")
  19919. },
  19920. {
  19921. name: "Gigamacro",
  19922. height: math.unit(390000000.0, "inches")
  19923. }
  19924. ]
  19925. )
  19926. };
  19927. pokemonMakers["Maractus"] = () => {
  19928. return makeCharacter(
  19929. "Maractus",
  19930. "Pokemon",
  19931. {
  19932. "Maractus": {
  19933. height: math.unit("39", "inches"),
  19934. weight: math.unit("61.7", "lbs"),
  19935. name: "Maractus",
  19936. image: {
  19937. source: "./media/pokemon/Maractus.svg"
  19938. },
  19939. rename: true
  19940. }
  19941. },
  19942. [
  19943. {
  19944. name: "Micro",
  19945. height: math.unit(3.9, "inches")
  19946. },
  19947. {
  19948. name: "Normal",
  19949. height: math.unit(39, "inches"),
  19950. default: true
  19951. },
  19952. {
  19953. name: "Macro",
  19954. height: math.unit(3900.0, "inches")
  19955. },
  19956. {
  19957. name: "Megamacro",
  19958. height: math.unit(195000.0, "inches")
  19959. },
  19960. {
  19961. name: "Gigamacro",
  19962. height: math.unit(390000000.0, "inches")
  19963. }
  19964. ]
  19965. )
  19966. };
  19967. pokemonMakers["Mareanie"] = () => {
  19968. return makeCharacter(
  19969. "Mareanie",
  19970. "Pokemon",
  19971. {
  19972. "Mareanie": {
  19973. height: math.unit("16", "inches"),
  19974. weight: math.unit("17.6", "lbs"),
  19975. name: "Mareanie",
  19976. image: {
  19977. source: "./media/pokemon/Mareanie.svg"
  19978. },
  19979. rename: true
  19980. }
  19981. },
  19982. [
  19983. {
  19984. name: "Micro",
  19985. height: math.unit(1.6, "inches")
  19986. },
  19987. {
  19988. name: "Normal",
  19989. height: math.unit(16, "inches"),
  19990. default: true
  19991. },
  19992. {
  19993. name: "Macro",
  19994. height: math.unit(1600.0, "inches")
  19995. },
  19996. {
  19997. name: "Megamacro",
  19998. height: math.unit(80000.0, "inches")
  19999. },
  20000. {
  20001. name: "Gigamacro",
  20002. height: math.unit(160000000.0, "inches")
  20003. }
  20004. ]
  20005. )
  20006. };
  20007. pokemonMakers["Mareep"] = () => {
  20008. return makeCharacter(
  20009. "Mareep",
  20010. "Pokemon",
  20011. {
  20012. "Mareep": {
  20013. height: math.unit("24", "inches"),
  20014. weight: math.unit("17.2", "lbs"),
  20015. name: "Mareep",
  20016. image: {
  20017. source: "./media/pokemon/Mareep.svg"
  20018. },
  20019. rename: true
  20020. }
  20021. },
  20022. [
  20023. {
  20024. name: "Micro",
  20025. height: math.unit(2.4, "inches")
  20026. },
  20027. {
  20028. name: "Normal",
  20029. height: math.unit(24, "inches"),
  20030. default: true
  20031. },
  20032. {
  20033. name: "Macro",
  20034. height: math.unit(2400.0, "inches")
  20035. },
  20036. {
  20037. name: "Megamacro",
  20038. height: math.unit(120000.0, "inches")
  20039. },
  20040. {
  20041. name: "Gigamacro",
  20042. height: math.unit(240000000.0, "inches")
  20043. }
  20044. ]
  20045. )
  20046. };
  20047. pokemonMakers["Marill"] = () => {
  20048. return makeCharacter(
  20049. "Marill",
  20050. "Pokemon",
  20051. {
  20052. "Marill": {
  20053. height: math.unit("16", "inches"),
  20054. weight: math.unit("18.7", "lbs"),
  20055. name: "Marill",
  20056. image: {
  20057. source: "./media/pokemon/Marill.svg"
  20058. },
  20059. rename: true
  20060. }
  20061. },
  20062. [
  20063. {
  20064. name: "Micro",
  20065. height: math.unit(1.6, "inches")
  20066. },
  20067. {
  20068. name: "Normal",
  20069. height: math.unit(16, "inches"),
  20070. default: true
  20071. },
  20072. {
  20073. name: "Macro",
  20074. height: math.unit(1600.0, "inches")
  20075. },
  20076. {
  20077. name: "Megamacro",
  20078. height: math.unit(80000.0, "inches")
  20079. },
  20080. {
  20081. name: "Gigamacro",
  20082. height: math.unit(160000000.0, "inches")
  20083. }
  20084. ]
  20085. )
  20086. };
  20087. pokemonMakers["Marowak"] = () => {
  20088. return makeCharacter(
  20089. "Marowak",
  20090. "Pokemon",
  20091. {
  20092. "Alola Form": {
  20093. height: math.unit("39", "inches"),
  20094. weight: math.unit("75.0", "lbs"),
  20095. name: "Alola Form",
  20096. image: {
  20097. source: "./media/pokemon/Marowak - Alola Form.svg"
  20098. },
  20099. rename: true
  20100. },
  20101. "Marowak": {
  20102. height: math.unit("39", "inches"),
  20103. weight: math.unit("99.2", "lbs"),
  20104. name: "Marowak",
  20105. image: {
  20106. source: "./media/pokemon/Marowak.svg"
  20107. },
  20108. rename: true
  20109. }
  20110. },
  20111. [
  20112. {
  20113. name: "Micro",
  20114. height: math.unit(3.9, "inches")
  20115. },
  20116. {
  20117. name: "Normal",
  20118. height: math.unit(39, "inches"),
  20119. default: true
  20120. },
  20121. {
  20122. name: "Macro",
  20123. height: math.unit(3900.0, "inches")
  20124. },
  20125. {
  20126. name: "Megamacro",
  20127. height: math.unit(195000.0, "inches")
  20128. },
  20129. {
  20130. name: "Gigamacro",
  20131. height: math.unit(390000000.0, "inches")
  20132. }
  20133. ]
  20134. )
  20135. };
  20136. pokemonMakers["Marshadow"] = () => {
  20137. return makeCharacter(
  20138. "Marshadow",
  20139. "Pokemon",
  20140. {
  20141. "Marshadow": {
  20142. height: math.unit("28", "inches"),
  20143. weight: math.unit("48.9", "lbs"),
  20144. name: "Marshadow",
  20145. image: {
  20146. source: "./media/pokemon/Marshadow.svg"
  20147. },
  20148. rename: true
  20149. }
  20150. },
  20151. [
  20152. {
  20153. name: "Micro",
  20154. height: math.unit(2.8, "inches")
  20155. },
  20156. {
  20157. name: "Normal",
  20158. height: math.unit(28, "inches"),
  20159. default: true
  20160. },
  20161. {
  20162. name: "Macro",
  20163. height: math.unit(2800.0, "inches")
  20164. },
  20165. {
  20166. name: "Megamacro",
  20167. height: math.unit(140000.0, "inches")
  20168. },
  20169. {
  20170. name: "Gigamacro",
  20171. height: math.unit(280000000.0, "inches")
  20172. }
  20173. ]
  20174. )
  20175. };
  20176. pokemonMakers["Marshtomp"] = () => {
  20177. return makeCharacter(
  20178. "Marshtomp",
  20179. "Pokemon",
  20180. {
  20181. "Marshtomp": {
  20182. height: math.unit("28", "inches"),
  20183. weight: math.unit("61.7", "lbs"),
  20184. name: "Marshtomp",
  20185. image: {
  20186. source: "./media/pokemon/Marshtomp.svg"
  20187. },
  20188. rename: true
  20189. }
  20190. },
  20191. [
  20192. {
  20193. name: "Micro",
  20194. height: math.unit(2.8, "inches")
  20195. },
  20196. {
  20197. name: "Normal",
  20198. height: math.unit(28, "inches"),
  20199. default: true
  20200. },
  20201. {
  20202. name: "Macro",
  20203. height: math.unit(2800.0, "inches")
  20204. },
  20205. {
  20206. name: "Megamacro",
  20207. height: math.unit(140000.0, "inches")
  20208. },
  20209. {
  20210. name: "Gigamacro",
  20211. height: math.unit(280000000.0, "inches")
  20212. }
  20213. ]
  20214. )
  20215. };
  20216. pokemonMakers["Masquerain"] = () => {
  20217. return makeCharacter(
  20218. "Masquerain",
  20219. "Pokemon",
  20220. {
  20221. "Masquerain": {
  20222. height: math.unit("31", "inches"),
  20223. weight: math.unit("7.9", "lbs"),
  20224. name: "Masquerain",
  20225. image: {
  20226. source: "./media/pokemon/Masquerain.svg"
  20227. },
  20228. rename: true
  20229. }
  20230. },
  20231. [
  20232. {
  20233. name: "Micro",
  20234. height: math.unit(3.1, "inches")
  20235. },
  20236. {
  20237. name: "Normal",
  20238. height: math.unit(31, "inches"),
  20239. default: true
  20240. },
  20241. {
  20242. name: "Macro",
  20243. height: math.unit(3100.0, "inches")
  20244. },
  20245. {
  20246. name: "Megamacro",
  20247. height: math.unit(155000.0, "inches")
  20248. },
  20249. {
  20250. name: "Gigamacro",
  20251. height: math.unit(310000000.0, "inches")
  20252. }
  20253. ]
  20254. )
  20255. };
  20256. pokemonMakers["Mawile"] = () => {
  20257. return makeCharacter(
  20258. "Mawile",
  20259. "Pokemon",
  20260. {
  20261. "Mawile": {
  20262. height: math.unit("24", "inches"),
  20263. weight: math.unit("25.4", "lbs"),
  20264. name: "Mawile",
  20265. image: {
  20266. source: "./media/pokemon/Mawile.svg"
  20267. },
  20268. rename: true
  20269. },
  20270. "Mega Mawile": {
  20271. height: math.unit("39", "inches"),
  20272. weight: math.unit("51.8", "lbs"),
  20273. name: "Mega Mawile",
  20274. image: {
  20275. source: "./media/pokemon/Mega Mawile.svg"
  20276. },
  20277. rename: true
  20278. }
  20279. },
  20280. [
  20281. {
  20282. name: "Micro",
  20283. height: math.unit(2.4, "inches")
  20284. },
  20285. {
  20286. name: "Normal",
  20287. height: math.unit(24, "inches"),
  20288. default: true
  20289. },
  20290. {
  20291. name: "Macro",
  20292. height: math.unit(2400.0, "inches")
  20293. },
  20294. {
  20295. name: "Megamacro",
  20296. height: math.unit(120000.0, "inches")
  20297. },
  20298. {
  20299. name: "Gigamacro",
  20300. height: math.unit(240000000.0, "inches")
  20301. }
  20302. ]
  20303. )
  20304. };
  20305. pokemonMakers["Medicham"] = () => {
  20306. return makeCharacter(
  20307. "Medicham",
  20308. "Pokemon",
  20309. {
  20310. "Medicham": {
  20311. height: math.unit("51", "inches"),
  20312. weight: math.unit("69.4", "lbs"),
  20313. name: "Medicham",
  20314. image: {
  20315. source: "./media/pokemon/Medicham.svg"
  20316. },
  20317. rename: true
  20318. },
  20319. "Mega Medicham": {
  20320. height: math.unit("51", "inches"),
  20321. weight: math.unit("69.4", "lbs"),
  20322. name: "Mega Medicham",
  20323. image: {
  20324. source: "./media/pokemon/Mega Medicham.svg"
  20325. },
  20326. rename: true
  20327. }
  20328. },
  20329. [
  20330. {
  20331. name: "Micro",
  20332. height: math.unit(5.1, "inches")
  20333. },
  20334. {
  20335. name: "Normal",
  20336. height: math.unit(51, "inches"),
  20337. default: true
  20338. },
  20339. {
  20340. name: "Macro",
  20341. height: math.unit(5100.0, "inches")
  20342. },
  20343. {
  20344. name: "Megamacro",
  20345. height: math.unit(255000.0, "inches")
  20346. },
  20347. {
  20348. name: "Gigamacro",
  20349. height: math.unit(510000000.0, "inches")
  20350. }
  20351. ]
  20352. )
  20353. };
  20354. pokemonMakers["Meditite"] = () => {
  20355. return makeCharacter(
  20356. "Meditite",
  20357. "Pokemon",
  20358. {
  20359. "Meditite": {
  20360. height: math.unit("24", "inches"),
  20361. weight: math.unit("24.7", "lbs"),
  20362. name: "Meditite",
  20363. image: {
  20364. source: "./media/pokemon/Meditite.svg"
  20365. },
  20366. rename: true
  20367. }
  20368. },
  20369. [
  20370. {
  20371. name: "Micro",
  20372. height: math.unit(2.4, "inches")
  20373. },
  20374. {
  20375. name: "Normal",
  20376. height: math.unit(24, "inches"),
  20377. default: true
  20378. },
  20379. {
  20380. name: "Macro",
  20381. height: math.unit(2400.0, "inches")
  20382. },
  20383. {
  20384. name: "Megamacro",
  20385. height: math.unit(120000.0, "inches")
  20386. },
  20387. {
  20388. name: "Gigamacro",
  20389. height: math.unit(240000000.0, "inches")
  20390. }
  20391. ]
  20392. )
  20393. };
  20394. pokemonMakers["Metagross"] = () => {
  20395. return makeCharacter(
  20396. "Metagross",
  20397. "Pokemon",
  20398. {
  20399. "Mega Metagross": {
  20400. height: math.unit("98", "inches"),
  20401. weight: math.unit("2078.7", "lbs"),
  20402. name: "Mega Metagross",
  20403. image: {
  20404. source: "./media/pokemon/Mega Metagross.svg"
  20405. },
  20406. rename: true
  20407. },
  20408. "Metagross": {
  20409. height: math.unit("63", "inches"),
  20410. weight: math.unit("1212.5", "lbs"),
  20411. name: "Metagross",
  20412. image: {
  20413. source: "./media/pokemon/Metagross.svg"
  20414. },
  20415. rename: true
  20416. }
  20417. },
  20418. [
  20419. {
  20420. name: "Micro",
  20421. height: math.unit(9.8, "inches")
  20422. },
  20423. {
  20424. name: "Normal",
  20425. height: math.unit(98, "inches"),
  20426. default: true
  20427. },
  20428. {
  20429. name: "Macro",
  20430. height: math.unit(9800.0, "inches")
  20431. },
  20432. {
  20433. name: "Megamacro",
  20434. height: math.unit(490000.0, "inches")
  20435. },
  20436. {
  20437. name: "Gigamacro",
  20438. height: math.unit(980000000.0, "inches")
  20439. }
  20440. ]
  20441. )
  20442. };
  20443. pokemonMakers["Mewtwo"] = () => {
  20444. return makeCharacter(
  20445. "Mewtwo",
  20446. "Pokemon",
  20447. {
  20448. "Mega Mewtwo X": {
  20449. height: math.unit("91", "inches"),
  20450. weight: math.unit("280.0", "lbs"),
  20451. name: "Mega Mewtwo X",
  20452. image: {
  20453. source: "./media/pokemon/Mega Mewtwo X.svg"
  20454. },
  20455. rename: true
  20456. },
  20457. "Mega Mewtwo Y": {
  20458. height: math.unit("59", "inches"),
  20459. weight: math.unit("72.8", "lbs"),
  20460. name: "Mega Mewtwo Y",
  20461. image: {
  20462. source: "./media/pokemon/Mega Mewtwo Y.svg"
  20463. },
  20464. rename: true
  20465. },
  20466. "Mewtwo": {
  20467. height: math.unit("79", "inches"),
  20468. weight: math.unit("269.0", "lbs"),
  20469. name: "Mewtwo",
  20470. image: {
  20471. source: "./media/pokemon/Mewtwo.svg"
  20472. },
  20473. rename: true
  20474. }
  20475. },
  20476. [
  20477. {
  20478. name: "Micro",
  20479. height: math.unit(9.1, "inches")
  20480. },
  20481. {
  20482. name: "Normal",
  20483. height: math.unit(91, "inches"),
  20484. default: true
  20485. },
  20486. {
  20487. name: "Macro",
  20488. height: math.unit(9100.0, "inches")
  20489. },
  20490. {
  20491. name: "Megamacro",
  20492. height: math.unit(455000.0, "inches")
  20493. },
  20494. {
  20495. name: "Gigamacro",
  20496. height: math.unit(910000000.0, "inches")
  20497. }
  20498. ]
  20499. )
  20500. };
  20501. pokemonMakers["Pidgeot"] = () => {
  20502. return makeCharacter(
  20503. "Pidgeot",
  20504. "Pokemon",
  20505. {
  20506. "Mega Pidgeot": {
  20507. height: math.unit("87", "inches"),
  20508. weight: math.unit("111.3", "lbs"),
  20509. name: "Mega Pidgeot",
  20510. image: {
  20511. source: "./media/pokemon/Mega Pidgeot.svg"
  20512. },
  20513. rename: true
  20514. },
  20515. "Pidgeot": {
  20516. height: math.unit("59", "inches"),
  20517. weight: math.unit("87.1", "lbs"),
  20518. name: "Pidgeot",
  20519. image: {
  20520. source: "./media/pokemon/Pidgeot.svg"
  20521. },
  20522. rename: true
  20523. }
  20524. },
  20525. [
  20526. {
  20527. name: "Micro",
  20528. height: math.unit(8.7, "inches")
  20529. },
  20530. {
  20531. name: "Normal",
  20532. height: math.unit(87, "inches"),
  20533. default: true
  20534. },
  20535. {
  20536. name: "Macro",
  20537. height: math.unit(8700.0, "inches")
  20538. },
  20539. {
  20540. name: "Megamacro",
  20541. height: math.unit(435000.0, "inches")
  20542. },
  20543. {
  20544. name: "Gigamacro",
  20545. height: math.unit(870000000.0, "inches")
  20546. }
  20547. ]
  20548. )
  20549. };
  20550. pokemonMakers["Pinsir"] = () => {
  20551. return makeCharacter(
  20552. "Pinsir",
  20553. "Pokemon",
  20554. {
  20555. "Mega Pinsir": {
  20556. height: math.unit("67", "inches"),
  20557. weight: math.unit("130.1", "lbs"),
  20558. name: "Mega Pinsir",
  20559. image: {
  20560. source: "./media/pokemon/Mega Pinsir.svg"
  20561. },
  20562. rename: true
  20563. },
  20564. "Pinsir": {
  20565. height: math.unit("59", "inches"),
  20566. weight: math.unit("121.3", "lbs"),
  20567. name: "Pinsir",
  20568. image: {
  20569. source: "./media/pokemon/Pinsir.svg"
  20570. },
  20571. rename: true
  20572. }
  20573. },
  20574. [
  20575. {
  20576. name: "Micro",
  20577. height: math.unit(6.7, "inches")
  20578. },
  20579. {
  20580. name: "Normal",
  20581. height: math.unit(67, "inches"),
  20582. default: true
  20583. },
  20584. {
  20585. name: "Macro",
  20586. height: math.unit(6700.0, "inches")
  20587. },
  20588. {
  20589. name: "Megamacro",
  20590. height: math.unit(335000.0, "inches")
  20591. },
  20592. {
  20593. name: "Gigamacro",
  20594. height: math.unit(670000000.0, "inches")
  20595. }
  20596. ]
  20597. )
  20598. };
  20599. pokemonMakers["Rayquaza"] = () => {
  20600. return makeCharacter(
  20601. "Rayquaza",
  20602. "Pokemon",
  20603. {
  20604. "Mega Rayquaza": {
  20605. height: math.unit("425", "inches"),
  20606. weight: math.unit("864.2", "lbs"),
  20607. name: "Mega Rayquaza",
  20608. image: {
  20609. source: "./media/pokemon/Mega Rayquaza.svg"
  20610. },
  20611. rename: true
  20612. },
  20613. "Rayquaza": {
  20614. height: math.unit("276", "inches"),
  20615. weight: math.unit("455.2", "lbs"),
  20616. name: "Rayquaza",
  20617. image: {
  20618. source: "./media/pokemon/Rayquaza.svg"
  20619. },
  20620. rename: true
  20621. }
  20622. },
  20623. [
  20624. {
  20625. name: "Micro",
  20626. height: math.unit(42.5, "inches")
  20627. },
  20628. {
  20629. name: "Normal",
  20630. height: math.unit(425, "inches"),
  20631. default: true
  20632. },
  20633. {
  20634. name: "Macro",
  20635. height: math.unit(42500.0, "inches")
  20636. },
  20637. {
  20638. name: "Megamacro",
  20639. height: math.unit(2125000.0, "inches")
  20640. },
  20641. {
  20642. name: "Gigamacro",
  20643. height: math.unit(4250000000.0, "inches")
  20644. }
  20645. ]
  20646. )
  20647. };
  20648. pokemonMakers["Sableye"] = () => {
  20649. return makeCharacter(
  20650. "Sableye",
  20651. "Pokemon",
  20652. {
  20653. "Mega Sableye": {
  20654. height: math.unit("20", "inches"),
  20655. weight: math.unit("354.9", "lbs"),
  20656. name: "Mega Sableye",
  20657. image: {
  20658. source: "./media/pokemon/Mega Sableye.svg"
  20659. },
  20660. rename: true
  20661. },
  20662. "Sableye": {
  20663. height: math.unit("20", "inches"),
  20664. weight: math.unit("24.3", "lbs"),
  20665. name: "Sableye",
  20666. image: {
  20667. source: "./media/pokemon/Sableye.svg"
  20668. },
  20669. rename: true
  20670. }
  20671. },
  20672. [
  20673. {
  20674. name: "Micro",
  20675. height: math.unit(2.0, "inches")
  20676. },
  20677. {
  20678. name: "Normal",
  20679. height: math.unit(20, "inches"),
  20680. default: true
  20681. },
  20682. {
  20683. name: "Macro",
  20684. height: math.unit(2000.0, "inches")
  20685. },
  20686. {
  20687. name: "Megamacro",
  20688. height: math.unit(100000.0, "inches")
  20689. },
  20690. {
  20691. name: "Gigamacro",
  20692. height: math.unit(200000000.0, "inches")
  20693. }
  20694. ]
  20695. )
  20696. };
  20697. pokemonMakers["Salamence"] = () => {
  20698. return makeCharacter(
  20699. "Salamence",
  20700. "Pokemon",
  20701. {
  20702. "Mega Salamence": {
  20703. height: math.unit("71", "inches"),
  20704. weight: math.unit("248.2", "lbs"),
  20705. name: "Mega Salamence",
  20706. image: {
  20707. source: "./media/pokemon/Mega Salamence.svg"
  20708. },
  20709. rename: true
  20710. },
  20711. "Salamence": {
  20712. height: math.unit("59", "inches"),
  20713. weight: math.unit("226.2", "lbs"),
  20714. name: "Salamence",
  20715. image: {
  20716. source: "./media/pokemon/Salamence.svg"
  20717. },
  20718. rename: true
  20719. }
  20720. },
  20721. [
  20722. {
  20723. name: "Micro",
  20724. height: math.unit(7.1, "inches")
  20725. },
  20726. {
  20727. name: "Normal",
  20728. height: math.unit(71, "inches"),
  20729. default: true
  20730. },
  20731. {
  20732. name: "Macro",
  20733. height: math.unit(7100.0, "inches")
  20734. },
  20735. {
  20736. name: "Megamacro",
  20737. height: math.unit(355000.0, "inches")
  20738. },
  20739. {
  20740. name: "Gigamacro",
  20741. height: math.unit(710000000.0, "inches")
  20742. }
  20743. ]
  20744. )
  20745. };
  20746. pokemonMakers["Sceptile"] = () => {
  20747. return makeCharacter(
  20748. "Sceptile",
  20749. "Pokemon",
  20750. {
  20751. "Mega Sceptile": {
  20752. height: math.unit("75", "inches"),
  20753. weight: math.unit("121.7", "lbs"),
  20754. name: "Mega Sceptile",
  20755. image: {
  20756. source: "./media/pokemon/Mega Sceptile.svg"
  20757. },
  20758. rename: true
  20759. },
  20760. "Sceptile": {
  20761. height: math.unit("67", "inches"),
  20762. weight: math.unit("115.1", "lbs"),
  20763. name: "Sceptile",
  20764. image: {
  20765. source: "./media/pokemon/Sceptile.svg"
  20766. },
  20767. rename: true
  20768. }
  20769. },
  20770. [
  20771. {
  20772. name: "Micro",
  20773. height: math.unit(7.5, "inches")
  20774. },
  20775. {
  20776. name: "Normal",
  20777. height: math.unit(75, "inches"),
  20778. default: true
  20779. },
  20780. {
  20781. name: "Macro",
  20782. height: math.unit(7500.0, "inches")
  20783. },
  20784. {
  20785. name: "Megamacro",
  20786. height: math.unit(375000.0, "inches")
  20787. },
  20788. {
  20789. name: "Gigamacro",
  20790. height: math.unit(750000000.0, "inches")
  20791. }
  20792. ]
  20793. )
  20794. };
  20795. pokemonMakers["Scizor"] = () => {
  20796. return makeCharacter(
  20797. "Scizor",
  20798. "Pokemon",
  20799. {
  20800. "Mega Scizor": {
  20801. height: math.unit("79", "inches"),
  20802. weight: math.unit("275.6", "lbs"),
  20803. name: "Mega Scizor",
  20804. image: {
  20805. source: "./media/pokemon/Mega Scizor.svg"
  20806. },
  20807. rename: true
  20808. },
  20809. "Scizor": {
  20810. height: math.unit("71", "inches"),
  20811. weight: math.unit("260.1", "lbs"),
  20812. name: "Scizor",
  20813. image: {
  20814. source: "./media/pokemon/Scizor.svg"
  20815. },
  20816. rename: true
  20817. }
  20818. },
  20819. [
  20820. {
  20821. name: "Micro",
  20822. height: math.unit(7.9, "inches")
  20823. },
  20824. {
  20825. name: "Normal",
  20826. height: math.unit(79, "inches"),
  20827. default: true
  20828. },
  20829. {
  20830. name: "Macro",
  20831. height: math.unit(7900.0, "inches")
  20832. },
  20833. {
  20834. name: "Megamacro",
  20835. height: math.unit(395000.0, "inches")
  20836. },
  20837. {
  20838. name: "Gigamacro",
  20839. height: math.unit(790000000.0, "inches")
  20840. }
  20841. ]
  20842. )
  20843. };
  20844. pokemonMakers["Sharpedo"] = () => {
  20845. return makeCharacter(
  20846. "Sharpedo",
  20847. "Pokemon",
  20848. {
  20849. "Mega Sharpedo": {
  20850. height: math.unit("98", "inches"),
  20851. weight: math.unit("287.3", "lbs"),
  20852. name: "Mega Sharpedo",
  20853. image: {
  20854. source: "./media/pokemon/Mega Sharpedo.svg"
  20855. },
  20856. rename: true
  20857. },
  20858. "Sharpedo": {
  20859. height: math.unit("71", "inches"),
  20860. weight: math.unit("195.8", "lbs"),
  20861. name: "Sharpedo",
  20862. image: {
  20863. source: "./media/pokemon/Sharpedo.svg"
  20864. },
  20865. rename: true
  20866. }
  20867. },
  20868. [
  20869. {
  20870. name: "Micro",
  20871. height: math.unit(9.8, "inches")
  20872. },
  20873. {
  20874. name: "Normal",
  20875. height: math.unit(98, "inches"),
  20876. default: true
  20877. },
  20878. {
  20879. name: "Macro",
  20880. height: math.unit(9800.0, "inches")
  20881. },
  20882. {
  20883. name: "Megamacro",
  20884. height: math.unit(490000.0, "inches")
  20885. },
  20886. {
  20887. name: "Gigamacro",
  20888. height: math.unit(980000000.0, "inches")
  20889. }
  20890. ]
  20891. )
  20892. };
  20893. pokemonMakers["Slowbro"] = () => {
  20894. return makeCharacter(
  20895. "Slowbro",
  20896. "Pokemon",
  20897. {
  20898. "Mega Slowbro": {
  20899. height: math.unit("79", "inches"),
  20900. weight: math.unit("264.6", "lbs"),
  20901. name: "Mega Slowbro",
  20902. image: {
  20903. source: "./media/pokemon/Mega Slowbro.svg"
  20904. },
  20905. rename: true
  20906. },
  20907. "Slowbro": {
  20908. height: math.unit("63", "inches"),
  20909. weight: math.unit("173.1", "lbs"),
  20910. name: "Slowbro",
  20911. image: {
  20912. source: "./media/pokemon/Slowbro.svg"
  20913. },
  20914. rename: true
  20915. }
  20916. },
  20917. [
  20918. {
  20919. name: "Micro",
  20920. height: math.unit(7.9, "inches")
  20921. },
  20922. {
  20923. name: "Normal",
  20924. height: math.unit(79, "inches"),
  20925. default: true
  20926. },
  20927. {
  20928. name: "Macro",
  20929. height: math.unit(7900.0, "inches")
  20930. },
  20931. {
  20932. name: "Megamacro",
  20933. height: math.unit(395000.0, "inches")
  20934. },
  20935. {
  20936. name: "Gigamacro",
  20937. height: math.unit(790000000.0, "inches")
  20938. }
  20939. ]
  20940. )
  20941. };
  20942. pokemonMakers["Steelix"] = () => {
  20943. return makeCharacter(
  20944. "Steelix",
  20945. "Pokemon",
  20946. {
  20947. "Mega Steelix": {
  20948. height: math.unit("413", "inches"),
  20949. weight: math.unit("1631.4", "lbs"),
  20950. name: "Mega Steelix",
  20951. image: {
  20952. source: "./media/pokemon/Mega Steelix.svg"
  20953. },
  20954. rename: true
  20955. },
  20956. "Steelix": {
  20957. height: math.unit("362", "inches"),
  20958. weight: math.unit("881.8", "lbs"),
  20959. name: "Steelix",
  20960. image: {
  20961. source: "./media/pokemon/Steelix.svg"
  20962. },
  20963. rename: true
  20964. }
  20965. },
  20966. [
  20967. {
  20968. name: "Micro",
  20969. height: math.unit(41.3, "inches")
  20970. },
  20971. {
  20972. name: "Normal",
  20973. height: math.unit(413, "inches"),
  20974. default: true
  20975. },
  20976. {
  20977. name: "Macro",
  20978. height: math.unit(41300.0, "inches")
  20979. },
  20980. {
  20981. name: "Megamacro",
  20982. height: math.unit(2065000.0, "inches")
  20983. },
  20984. {
  20985. name: "Gigamacro",
  20986. height: math.unit(4130000000.0, "inches")
  20987. }
  20988. ]
  20989. )
  20990. };
  20991. pokemonMakers["Swampert"] = () => {
  20992. return makeCharacter(
  20993. "Swampert",
  20994. "Pokemon",
  20995. {
  20996. "Mega Swampert": {
  20997. height: math.unit("75", "inches"),
  20998. weight: math.unit("224.9", "lbs"),
  20999. name: "Mega Swampert",
  21000. image: {
  21001. source: "./media/pokemon/Mega Swampert.svg"
  21002. },
  21003. rename: true
  21004. },
  21005. "Swampert": {
  21006. height: math.unit("59", "inches"),
  21007. weight: math.unit("180.6", "lbs"),
  21008. name: "Swampert",
  21009. image: {
  21010. source: "./media/pokemon/Swampert.svg"
  21011. },
  21012. rename: true
  21013. }
  21014. },
  21015. [
  21016. {
  21017. name: "Micro",
  21018. height: math.unit(7.5, "inches")
  21019. },
  21020. {
  21021. name: "Normal",
  21022. height: math.unit(75, "inches"),
  21023. default: true
  21024. },
  21025. {
  21026. name: "Macro",
  21027. height: math.unit(7500.0, "inches")
  21028. },
  21029. {
  21030. name: "Megamacro",
  21031. height: math.unit(375000.0, "inches")
  21032. },
  21033. {
  21034. name: "Gigamacro",
  21035. height: math.unit(750000000.0, "inches")
  21036. }
  21037. ]
  21038. )
  21039. };
  21040. pokemonMakers["Tyranitar"] = () => {
  21041. return makeCharacter(
  21042. "Tyranitar",
  21043. "Pokemon",
  21044. {
  21045. "Mega Tyranitar": {
  21046. height: math.unit("98", "inches"),
  21047. weight: math.unit("562.2", "lbs"),
  21048. name: "Mega Tyranitar",
  21049. image: {
  21050. source: "./media/pokemon/Mega Tyranitar.svg"
  21051. },
  21052. rename: true
  21053. },
  21054. "Tyranitar": {
  21055. height: math.unit("79", "inches"),
  21056. weight: math.unit("445.3", "lbs"),
  21057. name: "Tyranitar",
  21058. image: {
  21059. source: "./media/pokemon/Tyranitar.svg"
  21060. },
  21061. rename: true
  21062. }
  21063. },
  21064. [
  21065. {
  21066. name: "Micro",
  21067. height: math.unit(9.8, "inches")
  21068. },
  21069. {
  21070. name: "Normal",
  21071. height: math.unit(98, "inches"),
  21072. default: true
  21073. },
  21074. {
  21075. name: "Macro",
  21076. height: math.unit(9800.0, "inches")
  21077. },
  21078. {
  21079. name: "Megamacro",
  21080. height: math.unit(490000.0, "inches")
  21081. },
  21082. {
  21083. name: "Gigamacro",
  21084. height: math.unit(980000000.0, "inches")
  21085. }
  21086. ]
  21087. )
  21088. };
  21089. pokemonMakers["Venusaur"] = () => {
  21090. return makeCharacter(
  21091. "Venusaur",
  21092. "Pokemon",
  21093. {
  21094. "Mega Venusaur": {
  21095. height: math.unit("94", "inches"),
  21096. weight: math.unit("342.8", "lbs"),
  21097. name: "Mega Venusaur",
  21098. image: {
  21099. source: "./media/pokemon/Mega Venusaur.svg"
  21100. },
  21101. rename: true
  21102. },
  21103. "Venusaur": {
  21104. height: math.unit("79", "inches"),
  21105. weight: math.unit("220.5", "lbs"),
  21106. name: "Venusaur",
  21107. image: {
  21108. source: "./media/pokemon/Venusaur.svg"
  21109. },
  21110. rename: true
  21111. }
  21112. },
  21113. [
  21114. {
  21115. name: "Micro",
  21116. height: math.unit(9.4, "inches")
  21117. },
  21118. {
  21119. name: "Normal",
  21120. height: math.unit(94, "inches"),
  21121. default: true
  21122. },
  21123. {
  21124. name: "Macro",
  21125. height: math.unit(9400.0, "inches")
  21126. },
  21127. {
  21128. name: "Megamacro",
  21129. height: math.unit(470000.0, "inches")
  21130. },
  21131. {
  21132. name: "Gigamacro",
  21133. height: math.unit(940000000.0, "inches")
  21134. }
  21135. ]
  21136. )
  21137. };
  21138. pokemonMakers["Meganium"] = () => {
  21139. return makeCharacter(
  21140. "Meganium",
  21141. "Pokemon",
  21142. {
  21143. "Meganium": {
  21144. height: math.unit("71", "inches"),
  21145. weight: math.unit("221.6", "lbs"),
  21146. name: "Meganium",
  21147. image: {
  21148. source: "./media/pokemon/Meganium.svg"
  21149. },
  21150. rename: true
  21151. }
  21152. },
  21153. [
  21154. {
  21155. name: "Micro",
  21156. height: math.unit(7.1, "inches")
  21157. },
  21158. {
  21159. name: "Normal",
  21160. height: math.unit(71, "inches"),
  21161. default: true
  21162. },
  21163. {
  21164. name: "Macro",
  21165. height: math.unit(7100.0, "inches")
  21166. },
  21167. {
  21168. name: "Megamacro",
  21169. height: math.unit(355000.0, "inches")
  21170. },
  21171. {
  21172. name: "Gigamacro",
  21173. height: math.unit(710000000.0, "inches")
  21174. }
  21175. ]
  21176. )
  21177. };
  21178. pokemonMakers["Melmetal"] = () => {
  21179. return makeCharacter(
  21180. "Melmetal",
  21181. "Pokemon",
  21182. {
  21183. "Melmetal": {
  21184. height: math.unit("98", "inches"),
  21185. weight: math.unit("1763.7", "lbs"),
  21186. name: "Melmetal",
  21187. image: {
  21188. source: "./media/pokemon/Melmetal.svg"
  21189. },
  21190. rename: true
  21191. }
  21192. },
  21193. [
  21194. {
  21195. name: "Micro",
  21196. height: math.unit(9.8, "inches")
  21197. },
  21198. {
  21199. name: "Normal",
  21200. height: math.unit(98, "inches"),
  21201. default: true
  21202. },
  21203. {
  21204. name: "Macro",
  21205. height: math.unit(9800.0, "inches")
  21206. },
  21207. {
  21208. name: "Megamacro",
  21209. height: math.unit(490000.0, "inches")
  21210. },
  21211. {
  21212. name: "Gigamacro",
  21213. height: math.unit(980000000.0, "inches")
  21214. }
  21215. ]
  21216. )
  21217. };
  21218. pokemonMakers["Meloetta"] = () => {
  21219. return makeCharacter(
  21220. "Meloetta",
  21221. "Pokemon",
  21222. {
  21223. "Aria Forme": {
  21224. height: math.unit("24", "inches"),
  21225. weight: math.unit("14.3", "lbs"),
  21226. name: "Aria Forme",
  21227. image: {
  21228. source: "./media/pokemon/Meloetta - Aria Forme.svg"
  21229. },
  21230. rename: true
  21231. },
  21232. "Pirouette Forme": {
  21233. height: math.unit("24", "inches"),
  21234. weight: math.unit("14.3", "lbs"),
  21235. name: "Pirouette Forme",
  21236. image: {
  21237. source: "./media/pokemon/Meloetta - Pirouette Forme.svg"
  21238. },
  21239. rename: true
  21240. }
  21241. },
  21242. [
  21243. {
  21244. name: "Micro",
  21245. height: math.unit(2.4, "inches")
  21246. },
  21247. {
  21248. name: "Normal",
  21249. height: math.unit(24, "inches"),
  21250. default: true
  21251. },
  21252. {
  21253. name: "Macro",
  21254. height: math.unit(2400.0, "inches")
  21255. },
  21256. {
  21257. name: "Megamacro",
  21258. height: math.unit(120000.0, "inches")
  21259. },
  21260. {
  21261. name: "Gigamacro",
  21262. height: math.unit(240000000.0, "inches")
  21263. }
  21264. ]
  21265. )
  21266. };
  21267. pokemonMakers["Meltan"] = () => {
  21268. return makeCharacter(
  21269. "Meltan",
  21270. "Pokemon",
  21271. {
  21272. "Meltan": {
  21273. height: math.unit("8", "inches"),
  21274. weight: math.unit("17.6", "lbs"),
  21275. name: "Meltan",
  21276. image: {
  21277. source: "./media/pokemon/Meltan.svg"
  21278. },
  21279. rename: true
  21280. }
  21281. },
  21282. [
  21283. {
  21284. name: "Micro",
  21285. height: math.unit(0.8, "inches")
  21286. },
  21287. {
  21288. name: "Normal",
  21289. height: math.unit(8, "inches"),
  21290. default: true
  21291. },
  21292. {
  21293. name: "Macro",
  21294. height: math.unit(800.0, "inches")
  21295. },
  21296. {
  21297. name: "Megamacro",
  21298. height: math.unit(40000.0, "inches")
  21299. },
  21300. {
  21301. name: "Gigamacro",
  21302. height: math.unit(80000000.0, "inches")
  21303. }
  21304. ]
  21305. )
  21306. };
  21307. pokemonMakers["Meowstic"] = () => {
  21308. return makeCharacter(
  21309. "Meowstic",
  21310. "Pokemon",
  21311. {
  21312. "Female": {
  21313. height: math.unit("24", "inches"),
  21314. weight: math.unit("18.7", "lbs"),
  21315. name: "Female",
  21316. image: {
  21317. source: "./media/pokemon/Meowstic - Female.svg"
  21318. },
  21319. rename: true
  21320. },
  21321. "Male": {
  21322. height: math.unit("24", "inches"),
  21323. weight: math.unit("18.7", "lbs"),
  21324. name: "Male",
  21325. image: {
  21326. source: "./media/pokemon/Meowstic - Male.svg"
  21327. },
  21328. rename: true
  21329. }
  21330. },
  21331. [
  21332. {
  21333. name: "Micro",
  21334. height: math.unit(2.4, "inches")
  21335. },
  21336. {
  21337. name: "Normal",
  21338. height: math.unit(24, "inches"),
  21339. default: true
  21340. },
  21341. {
  21342. name: "Macro",
  21343. height: math.unit(2400.0, "inches")
  21344. },
  21345. {
  21346. name: "Megamacro",
  21347. height: math.unit(120000.0, "inches")
  21348. },
  21349. {
  21350. name: "Gigamacro",
  21351. height: math.unit(240000000.0, "inches")
  21352. }
  21353. ]
  21354. )
  21355. };
  21356. pokemonMakers["Mesprit"] = () => {
  21357. return makeCharacter(
  21358. "Mesprit",
  21359. "Pokemon",
  21360. {
  21361. "Mesprit": {
  21362. height: math.unit("12", "inches"),
  21363. weight: math.unit("0.7", "lbs"),
  21364. name: "Mesprit",
  21365. image: {
  21366. source: "./media/pokemon/Mesprit.svg"
  21367. },
  21368. rename: true
  21369. }
  21370. },
  21371. [
  21372. {
  21373. name: "Micro",
  21374. height: math.unit(1.2, "inches")
  21375. },
  21376. {
  21377. name: "Normal",
  21378. height: math.unit(12, "inches"),
  21379. default: true
  21380. },
  21381. {
  21382. name: "Macro",
  21383. height: math.unit(1200.0, "inches")
  21384. },
  21385. {
  21386. name: "Megamacro",
  21387. height: math.unit(60000.0, "inches")
  21388. },
  21389. {
  21390. name: "Gigamacro",
  21391. height: math.unit(120000000.0, "inches")
  21392. }
  21393. ]
  21394. )
  21395. };
  21396. pokemonMakers["Metang"] = () => {
  21397. return makeCharacter(
  21398. "Metang",
  21399. "Pokemon",
  21400. {
  21401. "Metang": {
  21402. height: math.unit("47", "inches"),
  21403. weight: math.unit("446.4", "lbs"),
  21404. name: "Metang",
  21405. image: {
  21406. source: "./media/pokemon/Metang.svg"
  21407. },
  21408. rename: true
  21409. }
  21410. },
  21411. [
  21412. {
  21413. name: "Micro",
  21414. height: math.unit(4.7, "inches")
  21415. },
  21416. {
  21417. name: "Normal",
  21418. height: math.unit(47, "inches"),
  21419. default: true
  21420. },
  21421. {
  21422. name: "Macro",
  21423. height: math.unit(4700.0, "inches")
  21424. },
  21425. {
  21426. name: "Megamacro",
  21427. height: math.unit(235000.0, "inches")
  21428. },
  21429. {
  21430. name: "Gigamacro",
  21431. height: math.unit(470000000.0, "inches")
  21432. }
  21433. ]
  21434. )
  21435. };
  21436. pokemonMakers["Metapod"] = () => {
  21437. return makeCharacter(
  21438. "Metapod",
  21439. "Pokemon",
  21440. {
  21441. "Metapod": {
  21442. height: math.unit("28", "inches"),
  21443. weight: math.unit("21.8", "lbs"),
  21444. name: "Metapod",
  21445. image: {
  21446. source: "./media/pokemon/Metapod.svg"
  21447. },
  21448. rename: true
  21449. }
  21450. },
  21451. [
  21452. {
  21453. name: "Micro",
  21454. height: math.unit(2.8, "inches")
  21455. },
  21456. {
  21457. name: "Normal",
  21458. height: math.unit(28, "inches"),
  21459. default: true
  21460. },
  21461. {
  21462. name: "Macro",
  21463. height: math.unit(2800.0, "inches")
  21464. },
  21465. {
  21466. name: "Megamacro",
  21467. height: math.unit(140000.0, "inches")
  21468. },
  21469. {
  21470. name: "Gigamacro",
  21471. height: math.unit(280000000.0, "inches")
  21472. }
  21473. ]
  21474. )
  21475. };
  21476. pokemonMakers["Mew"] = () => {
  21477. return makeCharacter(
  21478. "Mew",
  21479. "Pokemon",
  21480. {
  21481. "Mew": {
  21482. height: math.unit("16", "inches"),
  21483. weight: math.unit("8.8", "lbs"),
  21484. name: "Mew",
  21485. image: {
  21486. source: "./media/pokemon/Mew.svg"
  21487. },
  21488. rename: true
  21489. }
  21490. },
  21491. [
  21492. {
  21493. name: "Micro",
  21494. height: math.unit(1.6, "inches")
  21495. },
  21496. {
  21497. name: "Normal",
  21498. height: math.unit(16, "inches"),
  21499. default: true
  21500. },
  21501. {
  21502. name: "Macro",
  21503. height: math.unit(1600.0, "inches")
  21504. },
  21505. {
  21506. name: "Megamacro",
  21507. height: math.unit(80000.0, "inches")
  21508. },
  21509. {
  21510. name: "Gigamacro",
  21511. height: math.unit(160000000.0, "inches")
  21512. }
  21513. ]
  21514. )
  21515. };
  21516. pokemonMakers["Mienfoo"] = () => {
  21517. return makeCharacter(
  21518. "Mienfoo",
  21519. "Pokemon",
  21520. {
  21521. "Mienfoo": {
  21522. height: math.unit("35", "inches"),
  21523. weight: math.unit("44.1", "lbs"),
  21524. name: "Mienfoo",
  21525. image: {
  21526. source: "./media/pokemon/Mienfoo.svg"
  21527. },
  21528. rename: true
  21529. }
  21530. },
  21531. [
  21532. {
  21533. name: "Micro",
  21534. height: math.unit(3.5, "inches")
  21535. },
  21536. {
  21537. name: "Normal",
  21538. height: math.unit(35, "inches"),
  21539. default: true
  21540. },
  21541. {
  21542. name: "Macro",
  21543. height: math.unit(3500.0, "inches")
  21544. },
  21545. {
  21546. name: "Megamacro",
  21547. height: math.unit(175000.0, "inches")
  21548. },
  21549. {
  21550. name: "Gigamacro",
  21551. height: math.unit(350000000.0, "inches")
  21552. }
  21553. ]
  21554. )
  21555. };
  21556. pokemonMakers["Mienshao"] = () => {
  21557. return makeCharacter(
  21558. "Mienshao",
  21559. "Pokemon",
  21560. {
  21561. "Mienshao": {
  21562. height: math.unit("55", "inches"),
  21563. weight: math.unit("78.3", "lbs"),
  21564. name: "Mienshao",
  21565. image: {
  21566. source: "./media/pokemon/Mienshao.svg"
  21567. },
  21568. rename: true
  21569. }
  21570. },
  21571. [
  21572. {
  21573. name: "Micro",
  21574. height: math.unit(5.5, "inches")
  21575. },
  21576. {
  21577. name: "Normal",
  21578. height: math.unit(55, "inches"),
  21579. default: true
  21580. },
  21581. {
  21582. name: "Macro",
  21583. height: math.unit(5500.0, "inches")
  21584. },
  21585. {
  21586. name: "Megamacro",
  21587. height: math.unit(275000.0, "inches")
  21588. },
  21589. {
  21590. name: "Gigamacro",
  21591. height: math.unit(550000000.0, "inches")
  21592. }
  21593. ]
  21594. )
  21595. };
  21596. pokemonMakers["Mightyena"] = () => {
  21597. return makeCharacter(
  21598. "Mightyena",
  21599. "Pokemon",
  21600. {
  21601. "Mightyena": {
  21602. height: math.unit("39", "inches"),
  21603. weight: math.unit("81.6", "lbs"),
  21604. name: "Mightyena",
  21605. image: {
  21606. source: "./media/pokemon/Mightyena.svg"
  21607. },
  21608. rename: true
  21609. }
  21610. },
  21611. [
  21612. {
  21613. name: "Micro",
  21614. height: math.unit(3.9, "inches")
  21615. },
  21616. {
  21617. name: "Normal",
  21618. height: math.unit(39, "inches"),
  21619. default: true
  21620. },
  21621. {
  21622. name: "Macro",
  21623. height: math.unit(3900.0, "inches")
  21624. },
  21625. {
  21626. name: "Megamacro",
  21627. height: math.unit(195000.0, "inches")
  21628. },
  21629. {
  21630. name: "Gigamacro",
  21631. height: math.unit(390000000.0, "inches")
  21632. }
  21633. ]
  21634. )
  21635. };
  21636. pokemonMakers["Milcery"] = () => {
  21637. return makeCharacter(
  21638. "Milcery",
  21639. "Pokemon",
  21640. {
  21641. "Milcery": {
  21642. height: math.unit("8", "inches"),
  21643. weight: math.unit("0.7", "lbs"),
  21644. name: "Milcery",
  21645. image: {
  21646. source: "./media/pokemon/Milcery.svg"
  21647. },
  21648. rename: true
  21649. }
  21650. },
  21651. [
  21652. {
  21653. name: "Micro",
  21654. height: math.unit(0.8, "inches")
  21655. },
  21656. {
  21657. name: "Normal",
  21658. height: math.unit(8, "inches"),
  21659. default: true
  21660. },
  21661. {
  21662. name: "Macro",
  21663. height: math.unit(800.0, "inches")
  21664. },
  21665. {
  21666. name: "Megamacro",
  21667. height: math.unit(40000.0, "inches")
  21668. },
  21669. {
  21670. name: "Gigamacro",
  21671. height: math.unit(80000000.0, "inches")
  21672. }
  21673. ]
  21674. )
  21675. };
  21676. pokemonMakers["Milotic"] = () => {
  21677. return makeCharacter(
  21678. "Milotic",
  21679. "Pokemon",
  21680. {
  21681. "Milotic": {
  21682. height: math.unit("244", "inches"),
  21683. weight: math.unit("357.1", "lbs"),
  21684. name: "Milotic",
  21685. image: {
  21686. source: "./media/pokemon/Milotic.svg"
  21687. },
  21688. rename: true
  21689. }
  21690. },
  21691. [
  21692. {
  21693. name: "Micro",
  21694. height: math.unit(24.4, "inches")
  21695. },
  21696. {
  21697. name: "Normal",
  21698. height: math.unit(244, "inches"),
  21699. default: true
  21700. },
  21701. {
  21702. name: "Macro",
  21703. height: math.unit(24400.0, "inches")
  21704. },
  21705. {
  21706. name: "Megamacro",
  21707. height: math.unit(1220000.0, "inches")
  21708. },
  21709. {
  21710. name: "Gigamacro",
  21711. height: math.unit(2440000000.0, "inches")
  21712. }
  21713. ]
  21714. )
  21715. };
  21716. pokemonMakers["Miltank"] = () => {
  21717. return makeCharacter(
  21718. "Miltank",
  21719. "Pokemon",
  21720. {
  21721. "Miltank": {
  21722. height: math.unit("47", "inches"),
  21723. weight: math.unit("166.4", "lbs"),
  21724. name: "Miltank",
  21725. image: {
  21726. source: "./media/pokemon/Miltank.svg"
  21727. },
  21728. rename: true
  21729. }
  21730. },
  21731. [
  21732. {
  21733. name: "Micro",
  21734. height: math.unit(4.7, "inches")
  21735. },
  21736. {
  21737. name: "Normal",
  21738. height: math.unit(47, "inches"),
  21739. default: true
  21740. },
  21741. {
  21742. name: "Macro",
  21743. height: math.unit(4700.0, "inches")
  21744. },
  21745. {
  21746. name: "Megamacro",
  21747. height: math.unit(235000.0, "inches")
  21748. },
  21749. {
  21750. name: "Gigamacro",
  21751. height: math.unit(470000000.0, "inches")
  21752. }
  21753. ]
  21754. )
  21755. };
  21756. pokemonMakers["Mime Jr."] = () => {
  21757. return makeCharacter(
  21758. "Mime Jr.",
  21759. "Pokemon",
  21760. {
  21761. "Mime Jr.": {
  21762. height: math.unit("24", "inches"),
  21763. weight: math.unit("28.7", "lbs"),
  21764. name: "Mime Jr.",
  21765. image: {
  21766. source: "./media/pokemon/Mime Jr..svg"
  21767. },
  21768. rename: true
  21769. }
  21770. },
  21771. [
  21772. {
  21773. name: "Micro",
  21774. height: math.unit(2.4, "inches")
  21775. },
  21776. {
  21777. name: "Normal",
  21778. height: math.unit(24, "inches"),
  21779. default: true
  21780. },
  21781. {
  21782. name: "Macro",
  21783. height: math.unit(2400.0, "inches")
  21784. },
  21785. {
  21786. name: "Megamacro",
  21787. height: math.unit(120000.0, "inches")
  21788. },
  21789. {
  21790. name: "Gigamacro",
  21791. height: math.unit(240000000.0, "inches")
  21792. }
  21793. ]
  21794. )
  21795. };
  21796. pokemonMakers["Mimikyu"] = () => {
  21797. return makeCharacter(
  21798. "Mimikyu",
  21799. "Pokemon",
  21800. {
  21801. "Mimikyu": {
  21802. height: math.unit("8", "inches"),
  21803. weight: math.unit("1.5", "lbs"),
  21804. name: "Mimikyu",
  21805. image: {
  21806. source: "./media/pokemon/Mimikyu.svg"
  21807. },
  21808. rename: true
  21809. }
  21810. },
  21811. [
  21812. {
  21813. name: "Micro",
  21814. height: math.unit(0.8, "inches")
  21815. },
  21816. {
  21817. name: "Normal",
  21818. height: math.unit(8, "inches"),
  21819. default: true
  21820. },
  21821. {
  21822. name: "Macro",
  21823. height: math.unit(800.0, "inches")
  21824. },
  21825. {
  21826. name: "Megamacro",
  21827. height: math.unit(40000.0, "inches")
  21828. },
  21829. {
  21830. name: "Gigamacro",
  21831. height: math.unit(80000000.0, "inches")
  21832. }
  21833. ]
  21834. )
  21835. };
  21836. pokemonMakers["Minccino"] = () => {
  21837. return makeCharacter(
  21838. "Minccino",
  21839. "Pokemon",
  21840. {
  21841. "Minccino": {
  21842. height: math.unit("16", "inches"),
  21843. weight: math.unit("12.8", "lbs"),
  21844. name: "Minccino",
  21845. image: {
  21846. source: "./media/pokemon/Minccino.svg"
  21847. },
  21848. rename: true
  21849. }
  21850. },
  21851. [
  21852. {
  21853. name: "Micro",
  21854. height: math.unit(1.6, "inches")
  21855. },
  21856. {
  21857. name: "Normal",
  21858. height: math.unit(16, "inches"),
  21859. default: true
  21860. },
  21861. {
  21862. name: "Macro",
  21863. height: math.unit(1600.0, "inches")
  21864. },
  21865. {
  21866. name: "Megamacro",
  21867. height: math.unit(80000.0, "inches")
  21868. },
  21869. {
  21870. name: "Gigamacro",
  21871. height: math.unit(160000000.0, "inches")
  21872. }
  21873. ]
  21874. )
  21875. };
  21876. pokemonMakers["Minior"] = () => {
  21877. return makeCharacter(
  21878. "Minior",
  21879. "Pokemon",
  21880. {
  21881. "Meteor Form": {
  21882. height: math.unit("12", "inches"),
  21883. weight: math.unit("88.2", "lbs"),
  21884. name: "Meteor Form",
  21885. image: {
  21886. source: "./media/pokemon/Minior - Meteor Form.svg"
  21887. },
  21888. rename: true
  21889. },
  21890. "Red Core": {
  21891. height: math.unit("12", "inches"),
  21892. weight: math.unit("0.7", "lbs"),
  21893. name: "Red Core",
  21894. image: {
  21895. source: "./media/pokemon/Minior - Red Core.svg"
  21896. },
  21897. rename: true
  21898. }
  21899. },
  21900. [
  21901. {
  21902. name: "Micro",
  21903. height: math.unit(1.2, "inches")
  21904. },
  21905. {
  21906. name: "Normal",
  21907. height: math.unit(12, "inches"),
  21908. default: true
  21909. },
  21910. {
  21911. name: "Macro",
  21912. height: math.unit(1200.0, "inches")
  21913. },
  21914. {
  21915. name: "Megamacro",
  21916. height: math.unit(60000.0, "inches")
  21917. },
  21918. {
  21919. name: "Gigamacro",
  21920. height: math.unit(120000000.0, "inches")
  21921. }
  21922. ]
  21923. )
  21924. };
  21925. pokemonMakers["Minun"] = () => {
  21926. return makeCharacter(
  21927. "Minun",
  21928. "Pokemon",
  21929. {
  21930. "Minun": {
  21931. height: math.unit("16", "inches"),
  21932. weight: math.unit("9.3", "lbs"),
  21933. name: "Minun",
  21934. image: {
  21935. source: "./media/pokemon/Minun.svg"
  21936. },
  21937. rename: true
  21938. }
  21939. },
  21940. [
  21941. {
  21942. name: "Micro",
  21943. height: math.unit(1.6, "inches")
  21944. },
  21945. {
  21946. name: "Normal",
  21947. height: math.unit(16, "inches"),
  21948. default: true
  21949. },
  21950. {
  21951. name: "Macro",
  21952. height: math.unit(1600.0, "inches")
  21953. },
  21954. {
  21955. name: "Megamacro",
  21956. height: math.unit(80000.0, "inches")
  21957. },
  21958. {
  21959. name: "Gigamacro",
  21960. height: math.unit(160000000.0, "inches")
  21961. }
  21962. ]
  21963. )
  21964. };
  21965. pokemonMakers["Misdreavus"] = () => {
  21966. return makeCharacter(
  21967. "Misdreavus",
  21968. "Pokemon",
  21969. {
  21970. "Misdreavus": {
  21971. height: math.unit("28", "inches"),
  21972. weight: math.unit("2.2", "lbs"),
  21973. name: "Misdreavus",
  21974. image: {
  21975. source: "./media/pokemon/Misdreavus.svg"
  21976. },
  21977. rename: true
  21978. }
  21979. },
  21980. [
  21981. {
  21982. name: "Micro",
  21983. height: math.unit(2.8, "inches")
  21984. },
  21985. {
  21986. name: "Normal",
  21987. height: math.unit(28, "inches"),
  21988. default: true
  21989. },
  21990. {
  21991. name: "Macro",
  21992. height: math.unit(2800.0, "inches")
  21993. },
  21994. {
  21995. name: "Megamacro",
  21996. height: math.unit(140000.0, "inches")
  21997. },
  21998. {
  21999. name: "Gigamacro",
  22000. height: math.unit(280000000.0, "inches")
  22001. }
  22002. ]
  22003. )
  22004. };
  22005. pokemonMakers["Mismagius"] = () => {
  22006. return makeCharacter(
  22007. "Mismagius",
  22008. "Pokemon",
  22009. {
  22010. "Mismagius": {
  22011. height: math.unit("35", "inches"),
  22012. weight: math.unit("9.7", "lbs"),
  22013. name: "Mismagius",
  22014. image: {
  22015. source: "./media/pokemon/Mismagius.svg"
  22016. },
  22017. rename: true
  22018. }
  22019. },
  22020. [
  22021. {
  22022. name: "Micro",
  22023. height: math.unit(3.5, "inches")
  22024. },
  22025. {
  22026. name: "Normal",
  22027. height: math.unit(35, "inches"),
  22028. default: true
  22029. },
  22030. {
  22031. name: "Macro",
  22032. height: math.unit(3500.0, "inches")
  22033. },
  22034. {
  22035. name: "Megamacro",
  22036. height: math.unit(175000.0, "inches")
  22037. },
  22038. {
  22039. name: "Gigamacro",
  22040. height: math.unit(350000000.0, "inches")
  22041. }
  22042. ]
  22043. )
  22044. };
  22045. pokemonMakers["Moltres"] = () => {
  22046. return makeCharacter(
  22047. "Moltres",
  22048. "Pokemon",
  22049. {
  22050. "Moltres": {
  22051. height: math.unit("79", "inches"),
  22052. weight: math.unit("132.3", "lbs"),
  22053. name: "Moltres",
  22054. image: {
  22055. source: "./media/pokemon/Moltres.svg"
  22056. },
  22057. rename: true
  22058. }
  22059. },
  22060. [
  22061. {
  22062. name: "Micro",
  22063. height: math.unit(7.9, "inches")
  22064. },
  22065. {
  22066. name: "Normal",
  22067. height: math.unit(79, "inches"),
  22068. default: true
  22069. },
  22070. {
  22071. name: "Macro",
  22072. height: math.unit(7900.0, "inches")
  22073. },
  22074. {
  22075. name: "Megamacro",
  22076. height: math.unit(395000.0, "inches")
  22077. },
  22078. {
  22079. name: "Gigamacro",
  22080. height: math.unit(790000000.0, "inches")
  22081. }
  22082. ]
  22083. )
  22084. };
  22085. pokemonMakers["Monferno"] = () => {
  22086. return makeCharacter(
  22087. "Monferno",
  22088. "Pokemon",
  22089. {
  22090. "Monferno": {
  22091. height: math.unit("35", "inches"),
  22092. weight: math.unit("48.5", "lbs"),
  22093. name: "Monferno",
  22094. image: {
  22095. source: "./media/pokemon/Monferno.svg"
  22096. },
  22097. rename: true
  22098. }
  22099. },
  22100. [
  22101. {
  22102. name: "Micro",
  22103. height: math.unit(3.5, "inches")
  22104. },
  22105. {
  22106. name: "Normal",
  22107. height: math.unit(35, "inches"),
  22108. default: true
  22109. },
  22110. {
  22111. name: "Macro",
  22112. height: math.unit(3500.0, "inches")
  22113. },
  22114. {
  22115. name: "Megamacro",
  22116. height: math.unit(175000.0, "inches")
  22117. },
  22118. {
  22119. name: "Gigamacro",
  22120. height: math.unit(350000000.0, "inches")
  22121. }
  22122. ]
  22123. )
  22124. };
  22125. pokemonMakers["Morelull"] = () => {
  22126. return makeCharacter(
  22127. "Morelull",
  22128. "Pokemon",
  22129. {
  22130. "Morelull": {
  22131. height: math.unit("8", "inches"),
  22132. weight: math.unit("3.3", "lbs"),
  22133. name: "Morelull",
  22134. image: {
  22135. source: "./media/pokemon/Morelull.svg"
  22136. },
  22137. rename: true
  22138. }
  22139. },
  22140. [
  22141. {
  22142. name: "Micro",
  22143. height: math.unit(0.8, "inches")
  22144. },
  22145. {
  22146. name: "Normal",
  22147. height: math.unit(8, "inches"),
  22148. default: true
  22149. },
  22150. {
  22151. name: "Macro",
  22152. height: math.unit(800.0, "inches")
  22153. },
  22154. {
  22155. name: "Megamacro",
  22156. height: math.unit(40000.0, "inches")
  22157. },
  22158. {
  22159. name: "Gigamacro",
  22160. height: math.unit(80000000.0, "inches")
  22161. }
  22162. ]
  22163. )
  22164. };
  22165. pokemonMakers["Morgrem"] = () => {
  22166. return makeCharacter(
  22167. "Morgrem",
  22168. "Pokemon",
  22169. {
  22170. "Morgrem": {
  22171. height: math.unit("31", "inches"),
  22172. weight: math.unit("27.6", "lbs"),
  22173. name: "Morgrem",
  22174. image: {
  22175. source: "./media/pokemon/Morgrem.svg"
  22176. },
  22177. rename: true
  22178. }
  22179. },
  22180. [
  22181. {
  22182. name: "Micro",
  22183. height: math.unit(3.1, "inches")
  22184. },
  22185. {
  22186. name: "Normal",
  22187. height: math.unit(31, "inches"),
  22188. default: true
  22189. },
  22190. {
  22191. name: "Macro",
  22192. height: math.unit(3100.0, "inches")
  22193. },
  22194. {
  22195. name: "Megamacro",
  22196. height: math.unit(155000.0, "inches")
  22197. },
  22198. {
  22199. name: "Gigamacro",
  22200. height: math.unit(310000000.0, "inches")
  22201. }
  22202. ]
  22203. )
  22204. };
  22205. pokemonMakers["Morpeko"] = () => {
  22206. return makeCharacter(
  22207. "Morpeko",
  22208. "Pokemon",
  22209. {
  22210. "Full Belly Mode": {
  22211. height: math.unit("12", "inches"),
  22212. weight: math.unit("6.6", "lbs"),
  22213. name: "Full Belly Mode",
  22214. image: {
  22215. source: "./media/pokemon/Morpeko - Full Belly Mode.svg"
  22216. },
  22217. rename: true
  22218. },
  22219. "Hangry Mode": {
  22220. height: math.unit("12", "inches"),
  22221. weight: math.unit("6.6", "lbs"),
  22222. name: "Hangry Mode",
  22223. image: {
  22224. source: "./media/pokemon/Morpeko - Hangry Mode.svg"
  22225. },
  22226. rename: true
  22227. }
  22228. },
  22229. [
  22230. {
  22231. name: "Micro",
  22232. height: math.unit(1.2, "inches")
  22233. },
  22234. {
  22235. name: "Normal",
  22236. height: math.unit(12, "inches"),
  22237. default: true
  22238. },
  22239. {
  22240. name: "Macro",
  22241. height: math.unit(1200.0, "inches")
  22242. },
  22243. {
  22244. name: "Megamacro",
  22245. height: math.unit(60000.0, "inches")
  22246. },
  22247. {
  22248. name: "Gigamacro",
  22249. height: math.unit(120000000.0, "inches")
  22250. }
  22251. ]
  22252. )
  22253. };
  22254. pokemonMakers["Mothim"] = () => {
  22255. return makeCharacter(
  22256. "Mothim",
  22257. "Pokemon",
  22258. {
  22259. "Mothim": {
  22260. height: math.unit("35", "inches"),
  22261. weight: math.unit("51.4", "lbs"),
  22262. name: "Mothim",
  22263. image: {
  22264. source: "./media/pokemon/Mothim.svg"
  22265. },
  22266. rename: true
  22267. }
  22268. },
  22269. [
  22270. {
  22271. name: "Micro",
  22272. height: math.unit(3.5, "inches")
  22273. },
  22274. {
  22275. name: "Normal",
  22276. height: math.unit(35, "inches"),
  22277. default: true
  22278. },
  22279. {
  22280. name: "Macro",
  22281. height: math.unit(3500.0, "inches")
  22282. },
  22283. {
  22284. name: "Megamacro",
  22285. height: math.unit(175000.0, "inches")
  22286. },
  22287. {
  22288. name: "Gigamacro",
  22289. height: math.unit(350000000.0, "inches")
  22290. }
  22291. ]
  22292. )
  22293. };
  22294. pokemonMakers["Mr. Mime"] = () => {
  22295. return makeCharacter(
  22296. "Mr. Mime",
  22297. "Pokemon",
  22298. {
  22299. "Galarian Form": {
  22300. height: math.unit("55", "inches"),
  22301. weight: math.unit("125.2", "lbs"),
  22302. name: "Galarian Form",
  22303. image: {
  22304. source: "./media/pokemon/Mr. - Galarian Form.svg"
  22305. },
  22306. rename: true
  22307. },
  22308. "Mr. Mime": {
  22309. height: math.unit("51", "inches"),
  22310. weight: math.unit("120.1", "lbs"),
  22311. name: "Mr. Mime",
  22312. image: {
  22313. source: "./media/pokemon/Mr. Mime.svg"
  22314. },
  22315. rename: true
  22316. },
  22317. "Mr. Rime": {
  22318. height: math.unit("59", "inches"),
  22319. weight: math.unit("128.3", "lbs"),
  22320. name: "Mr. Rime",
  22321. image: {
  22322. source: "./media/pokemon/Mr. Rime.svg"
  22323. },
  22324. rename: true
  22325. }
  22326. },
  22327. [
  22328. {
  22329. name: "Micro",
  22330. height: math.unit(5.5, "inches")
  22331. },
  22332. {
  22333. name: "Normal",
  22334. height: math.unit(55, "inches"),
  22335. default: true
  22336. },
  22337. {
  22338. name: "Macro",
  22339. height: math.unit(5500.0, "inches")
  22340. },
  22341. {
  22342. name: "Megamacro",
  22343. height: math.unit(275000.0, "inches")
  22344. },
  22345. {
  22346. name: "Gigamacro",
  22347. height: math.unit(550000000.0, "inches")
  22348. }
  22349. ]
  22350. )
  22351. };
  22352. pokemonMakers["Mudbray"] = () => {
  22353. return makeCharacter(
  22354. "Mudbray",
  22355. "Pokemon",
  22356. {
  22357. "Mudbray": {
  22358. height: math.unit("39", "inches"),
  22359. weight: math.unit("242.5", "lbs"),
  22360. name: "Mudbray",
  22361. image: {
  22362. source: "./media/pokemon/Mudbray.svg"
  22363. },
  22364. rename: true
  22365. }
  22366. },
  22367. [
  22368. {
  22369. name: "Micro",
  22370. height: math.unit(3.9, "inches")
  22371. },
  22372. {
  22373. name: "Normal",
  22374. height: math.unit(39, "inches"),
  22375. default: true
  22376. },
  22377. {
  22378. name: "Macro",
  22379. height: math.unit(3900.0, "inches")
  22380. },
  22381. {
  22382. name: "Megamacro",
  22383. height: math.unit(195000.0, "inches")
  22384. },
  22385. {
  22386. name: "Gigamacro",
  22387. height: math.unit(390000000.0, "inches")
  22388. }
  22389. ]
  22390. )
  22391. };
  22392. pokemonMakers["Mudkip"] = () => {
  22393. return makeCharacter(
  22394. "Mudkip",
  22395. "Pokemon",
  22396. {
  22397. "Mudkip": {
  22398. height: math.unit("16", "inches"),
  22399. weight: math.unit("16.8", "lbs"),
  22400. name: "Mudkip",
  22401. image: {
  22402. source: "./media/pokemon/Mudkip.svg"
  22403. },
  22404. rename: true
  22405. }
  22406. },
  22407. [
  22408. {
  22409. name: "Micro",
  22410. height: math.unit(1.6, "inches")
  22411. },
  22412. {
  22413. name: "Normal",
  22414. height: math.unit(16, "inches"),
  22415. default: true
  22416. },
  22417. {
  22418. name: "Macro",
  22419. height: math.unit(1600.0, "inches")
  22420. },
  22421. {
  22422. name: "Megamacro",
  22423. height: math.unit(80000.0, "inches")
  22424. },
  22425. {
  22426. name: "Gigamacro",
  22427. height: math.unit(160000000.0, "inches")
  22428. }
  22429. ]
  22430. )
  22431. };
  22432. pokemonMakers["Mudsdale"] = () => {
  22433. return makeCharacter(
  22434. "Mudsdale",
  22435. "Pokemon",
  22436. {
  22437. "Mudsdale": {
  22438. height: math.unit("98", "inches"),
  22439. weight: math.unit("2028.3", "lbs"),
  22440. name: "Mudsdale",
  22441. image: {
  22442. source: "./media/pokemon/Mudsdale.svg"
  22443. },
  22444. rename: true
  22445. }
  22446. },
  22447. [
  22448. {
  22449. name: "Micro",
  22450. height: math.unit(9.8, "inches")
  22451. },
  22452. {
  22453. name: "Normal",
  22454. height: math.unit(98, "inches"),
  22455. default: true
  22456. },
  22457. {
  22458. name: "Macro",
  22459. height: math.unit(9800.0, "inches")
  22460. },
  22461. {
  22462. name: "Megamacro",
  22463. height: math.unit(490000.0, "inches")
  22464. },
  22465. {
  22466. name: "Gigamacro",
  22467. height: math.unit(980000000.0, "inches")
  22468. }
  22469. ]
  22470. )
  22471. };
  22472. pokemonMakers["Muk"] = () => {
  22473. return makeCharacter(
  22474. "Muk",
  22475. "Pokemon",
  22476. {
  22477. "Alola Form": {
  22478. height: math.unit("39", "inches"),
  22479. weight: math.unit("114.6", "lbs"),
  22480. name: "Alola Form",
  22481. image: {
  22482. source: "./media/pokemon/Muk - Alola Form.svg"
  22483. },
  22484. rename: true
  22485. },
  22486. "Muk": {
  22487. height: math.unit("47", "inches"),
  22488. weight: math.unit("66.1", "lbs"),
  22489. name: "Muk",
  22490. image: {
  22491. source: "./media/pokemon/Muk.svg"
  22492. },
  22493. rename: true
  22494. }
  22495. },
  22496. [
  22497. {
  22498. name: "Micro",
  22499. height: math.unit(3.9, "inches")
  22500. },
  22501. {
  22502. name: "Normal",
  22503. height: math.unit(39, "inches"),
  22504. default: true
  22505. },
  22506. {
  22507. name: "Macro",
  22508. height: math.unit(3900.0, "inches")
  22509. },
  22510. {
  22511. name: "Megamacro",
  22512. height: math.unit(195000.0, "inches")
  22513. },
  22514. {
  22515. name: "Gigamacro",
  22516. height: math.unit(390000000.0, "inches")
  22517. }
  22518. ]
  22519. )
  22520. };
  22521. pokemonMakers["Munchlax"] = () => {
  22522. return makeCharacter(
  22523. "Munchlax",
  22524. "Pokemon",
  22525. {
  22526. "Munchlax": {
  22527. height: math.unit("24", "inches"),
  22528. weight: math.unit("231.5", "lbs"),
  22529. name: "Munchlax",
  22530. image: {
  22531. source: "./media/pokemon/Munchlax.svg"
  22532. },
  22533. rename: true
  22534. }
  22535. },
  22536. [
  22537. {
  22538. name: "Micro",
  22539. height: math.unit(2.4, "inches")
  22540. },
  22541. {
  22542. name: "Normal",
  22543. height: math.unit(24, "inches"),
  22544. default: true
  22545. },
  22546. {
  22547. name: "Macro",
  22548. height: math.unit(2400.0, "inches")
  22549. },
  22550. {
  22551. name: "Megamacro",
  22552. height: math.unit(120000.0, "inches")
  22553. },
  22554. {
  22555. name: "Gigamacro",
  22556. height: math.unit(240000000.0, "inches")
  22557. }
  22558. ]
  22559. )
  22560. };
  22561. pokemonMakers["Munna"] = () => {
  22562. return makeCharacter(
  22563. "Munna",
  22564. "Pokemon",
  22565. {
  22566. "Munna": {
  22567. height: math.unit("24", "inches"),
  22568. weight: math.unit("51.4", "lbs"),
  22569. name: "Munna",
  22570. image: {
  22571. source: "./media/pokemon/Munna.svg"
  22572. },
  22573. rename: true
  22574. }
  22575. },
  22576. [
  22577. {
  22578. name: "Micro",
  22579. height: math.unit(2.4, "inches")
  22580. },
  22581. {
  22582. name: "Normal",
  22583. height: math.unit(24, "inches"),
  22584. default: true
  22585. },
  22586. {
  22587. name: "Macro",
  22588. height: math.unit(2400.0, "inches")
  22589. },
  22590. {
  22591. name: "Megamacro",
  22592. height: math.unit(120000.0, "inches")
  22593. },
  22594. {
  22595. name: "Gigamacro",
  22596. height: math.unit(240000000.0, "inches")
  22597. }
  22598. ]
  22599. )
  22600. };
  22601. pokemonMakers["Murkrow"] = () => {
  22602. return makeCharacter(
  22603. "Murkrow",
  22604. "Pokemon",
  22605. {
  22606. "Murkrow": {
  22607. height: math.unit("20", "inches"),
  22608. weight: math.unit("4.6", "lbs"),
  22609. name: "Murkrow",
  22610. image: {
  22611. source: "./media/pokemon/Murkrow.svg"
  22612. },
  22613. rename: true
  22614. }
  22615. },
  22616. [
  22617. {
  22618. name: "Micro",
  22619. height: math.unit(2.0, "inches")
  22620. },
  22621. {
  22622. name: "Normal",
  22623. height: math.unit(20, "inches"),
  22624. default: true
  22625. },
  22626. {
  22627. name: "Macro",
  22628. height: math.unit(2000.0, "inches")
  22629. },
  22630. {
  22631. name: "Megamacro",
  22632. height: math.unit(100000.0, "inches")
  22633. },
  22634. {
  22635. name: "Gigamacro",
  22636. height: math.unit(200000000.0, "inches")
  22637. }
  22638. ]
  22639. )
  22640. };
  22641. pokemonMakers["Musharna"] = () => {
  22642. return makeCharacter(
  22643. "Musharna",
  22644. "Pokemon",
  22645. {
  22646. "Musharna": {
  22647. height: math.unit("43", "inches"),
  22648. weight: math.unit("133.4", "lbs"),
  22649. name: "Musharna",
  22650. image: {
  22651. source: "./media/pokemon/Musharna.svg"
  22652. },
  22653. rename: true
  22654. }
  22655. },
  22656. [
  22657. {
  22658. name: "Micro",
  22659. height: math.unit(4.3, "inches")
  22660. },
  22661. {
  22662. name: "Normal",
  22663. height: math.unit(43, "inches"),
  22664. default: true
  22665. },
  22666. {
  22667. name: "Macro",
  22668. height: math.unit(4300.0, "inches")
  22669. },
  22670. {
  22671. name: "Megamacro",
  22672. height: math.unit(215000.0, "inches")
  22673. },
  22674. {
  22675. name: "Gigamacro",
  22676. height: math.unit(430000000.0, "inches")
  22677. }
  22678. ]
  22679. )
  22680. };
  22681. pokemonMakers["Naganadel"] = () => {
  22682. return makeCharacter(
  22683. "Naganadel",
  22684. "Pokemon",
  22685. {
  22686. "Naganadel": {
  22687. height: math.unit("142", "inches"),
  22688. weight: math.unit("330.7", "lbs"),
  22689. name: "Naganadel",
  22690. image: {
  22691. source: "./media/pokemon/Naganadel.svg"
  22692. },
  22693. rename: true
  22694. }
  22695. },
  22696. [
  22697. {
  22698. name: "Micro",
  22699. height: math.unit(14.2, "inches")
  22700. },
  22701. {
  22702. name: "Normal",
  22703. height: math.unit(142, "inches"),
  22704. default: true
  22705. },
  22706. {
  22707. name: "Macro",
  22708. height: math.unit(14200.0, "inches")
  22709. },
  22710. {
  22711. name: "Megamacro",
  22712. height: math.unit(710000.0, "inches")
  22713. },
  22714. {
  22715. name: "Gigamacro",
  22716. height: math.unit(1420000000.0, "inches")
  22717. }
  22718. ]
  22719. )
  22720. };
  22721. pokemonMakers["Natu"] = () => {
  22722. return makeCharacter(
  22723. "Natu",
  22724. "Pokemon",
  22725. {
  22726. "Natu": {
  22727. height: math.unit("8", "inches"),
  22728. weight: math.unit("4.4", "lbs"),
  22729. name: "Natu",
  22730. image: {
  22731. source: "./media/pokemon/Natu.svg"
  22732. },
  22733. rename: true
  22734. }
  22735. },
  22736. [
  22737. {
  22738. name: "Micro",
  22739. height: math.unit(0.8, "inches")
  22740. },
  22741. {
  22742. name: "Normal",
  22743. height: math.unit(8, "inches"),
  22744. default: true
  22745. },
  22746. {
  22747. name: "Macro",
  22748. height: math.unit(800.0, "inches")
  22749. },
  22750. {
  22751. name: "Megamacro",
  22752. height: math.unit(40000.0, "inches")
  22753. },
  22754. {
  22755. name: "Gigamacro",
  22756. height: math.unit(80000000.0, "inches")
  22757. }
  22758. ]
  22759. )
  22760. };
  22761. pokemonMakers["Necrozma"] = () => {
  22762. return makeCharacter(
  22763. "Necrozma",
  22764. "Pokemon",
  22765. {
  22766. "Dawn Wings": {
  22767. height: math.unit("165", "inches"),
  22768. weight: math.unit("771.6", "lbs"),
  22769. name: "Dawn Wings",
  22770. image: {
  22771. source: "./media/pokemon/Necrozma - Dawn Wings.svg"
  22772. },
  22773. rename: true
  22774. },
  22775. "Dusk Mane": {
  22776. height: math.unit("150", "inches"),
  22777. weight: math.unit("1014.1", "lbs"),
  22778. name: "Dusk Mane",
  22779. image: {
  22780. source: "./media/pokemon/Necrozma - Dusk Mane.svg"
  22781. },
  22782. rename: true
  22783. },
  22784. "Necrozma": {
  22785. height: math.unit("94", "inches"),
  22786. weight: math.unit("507.1", "lbs"),
  22787. name: "Necrozma",
  22788. image: {
  22789. source: "./media/pokemon/Necrozma.svg"
  22790. },
  22791. rename: true
  22792. },
  22793. "Ultra Necrozma": {
  22794. height: math.unit("295", "inches"),
  22795. weight: math.unit("507.1", "lbs"),
  22796. name: "Ultra Necrozma",
  22797. image: {
  22798. source: "./media/pokemon/Ultra Necrozma.svg"
  22799. },
  22800. rename: true
  22801. }
  22802. },
  22803. [
  22804. {
  22805. name: "Micro",
  22806. height: math.unit(16.5, "inches")
  22807. },
  22808. {
  22809. name: "Normal",
  22810. height: math.unit(165, "inches"),
  22811. default: true
  22812. },
  22813. {
  22814. name: "Macro",
  22815. height: math.unit(16500.0, "inches")
  22816. },
  22817. {
  22818. name: "Megamacro",
  22819. height: math.unit(825000.0, "inches")
  22820. },
  22821. {
  22822. name: "Gigamacro",
  22823. height: math.unit(1650000000.0, "inches")
  22824. }
  22825. ]
  22826. )
  22827. };
  22828. pokemonMakers["Nickit"] = () => {
  22829. return makeCharacter(
  22830. "Nickit",
  22831. "Pokemon",
  22832. {
  22833. "Nickit": {
  22834. height: math.unit("24", "inches"),
  22835. weight: math.unit("19.6", "lbs"),
  22836. name: "Nickit",
  22837. image: {
  22838. source: "./media/pokemon/Nickit.svg"
  22839. },
  22840. rename: true
  22841. }
  22842. },
  22843. [
  22844. {
  22845. name: "Micro",
  22846. height: math.unit(2.4, "inches")
  22847. },
  22848. {
  22849. name: "Normal",
  22850. height: math.unit(24, "inches"),
  22851. default: true
  22852. },
  22853. {
  22854. name: "Macro",
  22855. height: math.unit(2400.0, "inches")
  22856. },
  22857. {
  22858. name: "Megamacro",
  22859. height: math.unit(120000.0, "inches")
  22860. },
  22861. {
  22862. name: "Gigamacro",
  22863. height: math.unit(240000000.0, "inches")
  22864. }
  22865. ]
  22866. )
  22867. };
  22868. pokemonMakers["Nidoking"] = () => {
  22869. return makeCharacter(
  22870. "Nidoking",
  22871. "Pokemon",
  22872. {
  22873. "Nidoking": {
  22874. height: math.unit("55", "inches"),
  22875. weight: math.unit("136.7", "lbs"),
  22876. name: "Nidoking",
  22877. image: {
  22878. source: "./media/pokemon/Nidoking.svg"
  22879. },
  22880. rename: true
  22881. }
  22882. },
  22883. [
  22884. {
  22885. name: "Micro",
  22886. height: math.unit(5.5, "inches")
  22887. },
  22888. {
  22889. name: "Normal",
  22890. height: math.unit(55, "inches"),
  22891. default: true
  22892. },
  22893. {
  22894. name: "Macro",
  22895. height: math.unit(5500.0, "inches")
  22896. },
  22897. {
  22898. name: "Megamacro",
  22899. height: math.unit(275000.0, "inches")
  22900. },
  22901. {
  22902. name: "Gigamacro",
  22903. height: math.unit(550000000.0, "inches")
  22904. }
  22905. ]
  22906. )
  22907. };
  22908. pokemonMakers["Nidoqueen"] = () => {
  22909. return makeCharacter(
  22910. "Nidoqueen",
  22911. "Pokemon",
  22912. {
  22913. "Nidoqueen": {
  22914. height: math.unit("51", "inches"),
  22915. weight: math.unit("132.3", "lbs"),
  22916. name: "Nidoqueen",
  22917. image: {
  22918. source: "./media/pokemon/Nidoqueen.svg"
  22919. },
  22920. rename: true
  22921. }
  22922. },
  22923. [
  22924. {
  22925. name: "Micro",
  22926. height: math.unit(5.1, "inches")
  22927. },
  22928. {
  22929. name: "Normal",
  22930. height: math.unit(51, "inches"),
  22931. default: true
  22932. },
  22933. {
  22934. name: "Macro",
  22935. height: math.unit(5100.0, "inches")
  22936. },
  22937. {
  22938. name: "Megamacro",
  22939. height: math.unit(255000.0, "inches")
  22940. },
  22941. {
  22942. name: "Gigamacro",
  22943. height: math.unit(510000000.0, "inches")
  22944. }
  22945. ]
  22946. )
  22947. };
  22948. pokemonMakers["Nidoran♀"] = () => {
  22949. return makeCharacter(
  22950. "Nidoran♀",
  22951. "Pokemon",
  22952. {
  22953. "Nidoran♀": {
  22954. height: math.unit("16", "inches"),
  22955. weight: math.unit("15.4", "lbs"),
  22956. name: "Nidoran♀",
  22957. image: {
  22958. source: "./media/pokemon/Nidoran♀.svg"
  22959. },
  22960. rename: true
  22961. }
  22962. },
  22963. [
  22964. {
  22965. name: "Micro",
  22966. height: math.unit(1.6, "inches")
  22967. },
  22968. {
  22969. name: "Normal",
  22970. height: math.unit(16, "inches"),
  22971. default: true
  22972. },
  22973. {
  22974. name: "Macro",
  22975. height: math.unit(1600.0, "inches")
  22976. },
  22977. {
  22978. name: "Megamacro",
  22979. height: math.unit(80000.0, "inches")
  22980. },
  22981. {
  22982. name: "Gigamacro",
  22983. height: math.unit(160000000.0, "inches")
  22984. }
  22985. ]
  22986. )
  22987. };
  22988. pokemonMakers["Nidoran♂"] = () => {
  22989. return makeCharacter(
  22990. "Nidoran♂",
  22991. "Pokemon",
  22992. {
  22993. "Nidoran♂": {
  22994. height: math.unit("20", "inches"),
  22995. weight: math.unit("19.8", "lbs"),
  22996. name: "Nidoran♂",
  22997. image: {
  22998. source: "./media/pokemon/Nidoran♂.svg"
  22999. },
  23000. rename: true
  23001. }
  23002. },
  23003. [
  23004. {
  23005. name: "Micro",
  23006. height: math.unit(2.0, "inches")
  23007. },
  23008. {
  23009. name: "Normal",
  23010. height: math.unit(20, "inches"),
  23011. default: true
  23012. },
  23013. {
  23014. name: "Macro",
  23015. height: math.unit(2000.0, "inches")
  23016. },
  23017. {
  23018. name: "Megamacro",
  23019. height: math.unit(100000.0, "inches")
  23020. },
  23021. {
  23022. name: "Gigamacro",
  23023. height: math.unit(200000000.0, "inches")
  23024. }
  23025. ]
  23026. )
  23027. };
  23028. pokemonMakers["Nidorina"] = () => {
  23029. return makeCharacter(
  23030. "Nidorina",
  23031. "Pokemon",
  23032. {
  23033. "Nidorina": {
  23034. height: math.unit("31", "inches"),
  23035. weight: math.unit("44.1", "lbs"),
  23036. name: "Nidorina",
  23037. image: {
  23038. source: "./media/pokemon/Nidorina.svg"
  23039. },
  23040. rename: true
  23041. }
  23042. },
  23043. [
  23044. {
  23045. name: "Micro",
  23046. height: math.unit(3.1, "inches")
  23047. },
  23048. {
  23049. name: "Normal",
  23050. height: math.unit(31, "inches"),
  23051. default: true
  23052. },
  23053. {
  23054. name: "Macro",
  23055. height: math.unit(3100.0, "inches")
  23056. },
  23057. {
  23058. name: "Megamacro",
  23059. height: math.unit(155000.0, "inches")
  23060. },
  23061. {
  23062. name: "Gigamacro",
  23063. height: math.unit(310000000.0, "inches")
  23064. }
  23065. ]
  23066. )
  23067. };
  23068. pokemonMakers["Nidorino"] = () => {
  23069. return makeCharacter(
  23070. "Nidorino",
  23071. "Pokemon",
  23072. {
  23073. "Nidorino": {
  23074. height: math.unit("35", "inches"),
  23075. weight: math.unit("43.0", "lbs"),
  23076. name: "Nidorino",
  23077. image: {
  23078. source: "./media/pokemon/Nidorino.svg"
  23079. },
  23080. rename: true
  23081. }
  23082. },
  23083. [
  23084. {
  23085. name: "Micro",
  23086. height: math.unit(3.5, "inches")
  23087. },
  23088. {
  23089. name: "Normal",
  23090. height: math.unit(35, "inches"),
  23091. default: true
  23092. },
  23093. {
  23094. name: "Macro",
  23095. height: math.unit(3500.0, "inches")
  23096. },
  23097. {
  23098. name: "Megamacro",
  23099. height: math.unit(175000.0, "inches")
  23100. },
  23101. {
  23102. name: "Gigamacro",
  23103. height: math.unit(350000000.0, "inches")
  23104. }
  23105. ]
  23106. )
  23107. };
  23108. pokemonMakers["Nihilego"] = () => {
  23109. return makeCharacter(
  23110. "Nihilego",
  23111. "Pokemon",
  23112. {
  23113. "Nihilego": {
  23114. height: math.unit("47", "inches"),
  23115. weight: math.unit("122.4", "lbs"),
  23116. name: "Nihilego",
  23117. image: {
  23118. source: "./media/pokemon/Nihilego.svg"
  23119. },
  23120. rename: true
  23121. }
  23122. },
  23123. [
  23124. {
  23125. name: "Micro",
  23126. height: math.unit(4.7, "inches")
  23127. },
  23128. {
  23129. name: "Normal",
  23130. height: math.unit(47, "inches"),
  23131. default: true
  23132. },
  23133. {
  23134. name: "Macro",
  23135. height: math.unit(4700.0, "inches")
  23136. },
  23137. {
  23138. name: "Megamacro",
  23139. height: math.unit(235000.0, "inches")
  23140. },
  23141. {
  23142. name: "Gigamacro",
  23143. height: math.unit(470000000.0, "inches")
  23144. }
  23145. ]
  23146. )
  23147. };
  23148. pokemonMakers["Nincada"] = () => {
  23149. return makeCharacter(
  23150. "Nincada",
  23151. "Pokemon",
  23152. {
  23153. "Nincada": {
  23154. height: math.unit("20", "inches"),
  23155. weight: math.unit("12.1", "lbs"),
  23156. name: "Nincada",
  23157. image: {
  23158. source: "./media/pokemon/Nincada.svg"
  23159. },
  23160. rename: true
  23161. }
  23162. },
  23163. [
  23164. {
  23165. name: "Micro",
  23166. height: math.unit(2.0, "inches")
  23167. },
  23168. {
  23169. name: "Normal",
  23170. height: math.unit(20, "inches"),
  23171. default: true
  23172. },
  23173. {
  23174. name: "Macro",
  23175. height: math.unit(2000.0, "inches")
  23176. },
  23177. {
  23178. name: "Megamacro",
  23179. height: math.unit(100000.0, "inches")
  23180. },
  23181. {
  23182. name: "Gigamacro",
  23183. height: math.unit(200000000.0, "inches")
  23184. }
  23185. ]
  23186. )
  23187. };
  23188. pokemonMakers["Ninetales"] = () => {
  23189. return makeCharacter(
  23190. "Ninetales",
  23191. "Pokemon",
  23192. {
  23193. "Alola Form": {
  23194. height: math.unit("43", "inches"),
  23195. weight: math.unit("43.9", "lbs"),
  23196. name: "Alola Form",
  23197. image: {
  23198. source: "./media/pokemon/Ninetales - Alola Form.svg"
  23199. },
  23200. rename: true
  23201. },
  23202. "Ninetales": {
  23203. height: math.unit("43", "inches"),
  23204. weight: math.unit("43.9", "lbs"),
  23205. name: "Ninetales",
  23206. image: {
  23207. source: "./media/pokemon/Ninetales.svg"
  23208. },
  23209. rename: true
  23210. }
  23211. },
  23212. [
  23213. {
  23214. name: "Micro",
  23215. height: math.unit(4.3, "inches")
  23216. },
  23217. {
  23218. name: "Normal",
  23219. height: math.unit(43, "inches"),
  23220. default: true
  23221. },
  23222. {
  23223. name: "Macro",
  23224. height: math.unit(4300.0, "inches")
  23225. },
  23226. {
  23227. name: "Megamacro",
  23228. height: math.unit(215000.0, "inches")
  23229. },
  23230. {
  23231. name: "Gigamacro",
  23232. height: math.unit(430000000.0, "inches")
  23233. }
  23234. ]
  23235. )
  23236. };
  23237. pokemonMakers["Ninjask"] = () => {
  23238. return makeCharacter(
  23239. "Ninjask",
  23240. "Pokemon",
  23241. {
  23242. "Ninjask": {
  23243. height: math.unit("31", "inches"),
  23244. weight: math.unit("26.5", "lbs"),
  23245. name: "Ninjask",
  23246. image: {
  23247. source: "./media/pokemon/Ninjask.svg"
  23248. },
  23249. rename: true
  23250. }
  23251. },
  23252. [
  23253. {
  23254. name: "Micro",
  23255. height: math.unit(3.1, "inches")
  23256. },
  23257. {
  23258. name: "Normal",
  23259. height: math.unit(31, "inches"),
  23260. default: true
  23261. },
  23262. {
  23263. name: "Macro",
  23264. height: math.unit(3100.0, "inches")
  23265. },
  23266. {
  23267. name: "Megamacro",
  23268. height: math.unit(155000.0, "inches")
  23269. },
  23270. {
  23271. name: "Gigamacro",
  23272. height: math.unit(310000000.0, "inches")
  23273. }
  23274. ]
  23275. )
  23276. };
  23277. pokemonMakers["Noctowl"] = () => {
  23278. return makeCharacter(
  23279. "Noctowl",
  23280. "Pokemon",
  23281. {
  23282. "Noctowl": {
  23283. height: math.unit("63", "inches"),
  23284. weight: math.unit("89.9", "lbs"),
  23285. name: "Noctowl",
  23286. image: {
  23287. source: "./media/pokemon/Noctowl.svg"
  23288. },
  23289. rename: true
  23290. }
  23291. },
  23292. [
  23293. {
  23294. name: "Micro",
  23295. height: math.unit(6.3, "inches")
  23296. },
  23297. {
  23298. name: "Normal",
  23299. height: math.unit(63, "inches"),
  23300. default: true
  23301. },
  23302. {
  23303. name: "Macro",
  23304. height: math.unit(6300.0, "inches")
  23305. },
  23306. {
  23307. name: "Megamacro",
  23308. height: math.unit(315000.0, "inches")
  23309. },
  23310. {
  23311. name: "Gigamacro",
  23312. height: math.unit(630000000.0, "inches")
  23313. }
  23314. ]
  23315. )
  23316. };
  23317. pokemonMakers["Noibat"] = () => {
  23318. return makeCharacter(
  23319. "Noibat",
  23320. "Pokemon",
  23321. {
  23322. "Noibat": {
  23323. height: math.unit("20", "inches"),
  23324. weight: math.unit("17.6", "lbs"),
  23325. name: "Noibat",
  23326. image: {
  23327. source: "./media/pokemon/Noibat.svg"
  23328. },
  23329. rename: true
  23330. }
  23331. },
  23332. [
  23333. {
  23334. name: "Micro",
  23335. height: math.unit(2.0, "inches")
  23336. },
  23337. {
  23338. name: "Normal",
  23339. height: math.unit(20, "inches"),
  23340. default: true
  23341. },
  23342. {
  23343. name: "Macro",
  23344. height: math.unit(2000.0, "inches")
  23345. },
  23346. {
  23347. name: "Megamacro",
  23348. height: math.unit(100000.0, "inches")
  23349. },
  23350. {
  23351. name: "Gigamacro",
  23352. height: math.unit(200000000.0, "inches")
  23353. }
  23354. ]
  23355. )
  23356. };
  23357. pokemonMakers["Noivern"] = () => {
  23358. return makeCharacter(
  23359. "Noivern",
  23360. "Pokemon",
  23361. {
  23362. "Noivern": {
  23363. height: math.unit("59", "inches"),
  23364. weight: math.unit("187.4", "lbs"),
  23365. name: "Noivern",
  23366. image: {
  23367. source: "./media/pokemon/Noivern.svg"
  23368. },
  23369. rename: true
  23370. }
  23371. },
  23372. [
  23373. {
  23374. name: "Micro",
  23375. height: math.unit(5.9, "inches")
  23376. },
  23377. {
  23378. name: "Normal",
  23379. height: math.unit(59, "inches"),
  23380. default: true
  23381. },
  23382. {
  23383. name: "Macro",
  23384. height: math.unit(5900.0, "inches")
  23385. },
  23386. {
  23387. name: "Megamacro",
  23388. height: math.unit(295000.0, "inches")
  23389. },
  23390. {
  23391. name: "Gigamacro",
  23392. height: math.unit(590000000.0, "inches")
  23393. }
  23394. ]
  23395. )
  23396. };
  23397. pokemonMakers["Nosepass"] = () => {
  23398. return makeCharacter(
  23399. "Nosepass",
  23400. "Pokemon",
  23401. {
  23402. "Nosepass": {
  23403. height: math.unit("39", "inches"),
  23404. weight: math.unit("213.8", "lbs"),
  23405. name: "Nosepass",
  23406. image: {
  23407. source: "./media/pokemon/Nosepass.svg"
  23408. },
  23409. rename: true
  23410. }
  23411. },
  23412. [
  23413. {
  23414. name: "Micro",
  23415. height: math.unit(3.9, "inches")
  23416. },
  23417. {
  23418. name: "Normal",
  23419. height: math.unit(39, "inches"),
  23420. default: true
  23421. },
  23422. {
  23423. name: "Macro",
  23424. height: math.unit(3900.0, "inches")
  23425. },
  23426. {
  23427. name: "Megamacro",
  23428. height: math.unit(195000.0, "inches")
  23429. },
  23430. {
  23431. name: "Gigamacro",
  23432. height: math.unit(390000000.0, "inches")
  23433. }
  23434. ]
  23435. )
  23436. };
  23437. pokemonMakers["Numel"] = () => {
  23438. return makeCharacter(
  23439. "Numel",
  23440. "Pokemon",
  23441. {
  23442. "Numel": {
  23443. height: math.unit("28", "inches"),
  23444. weight: math.unit("52.9", "lbs"),
  23445. name: "Numel",
  23446. image: {
  23447. source: "./media/pokemon/Numel.svg"
  23448. },
  23449. rename: true
  23450. }
  23451. },
  23452. [
  23453. {
  23454. name: "Micro",
  23455. height: math.unit(2.8, "inches")
  23456. },
  23457. {
  23458. name: "Normal",
  23459. height: math.unit(28, "inches"),
  23460. default: true
  23461. },
  23462. {
  23463. name: "Macro",
  23464. height: math.unit(2800.0, "inches")
  23465. },
  23466. {
  23467. name: "Megamacro",
  23468. height: math.unit(140000.0, "inches")
  23469. },
  23470. {
  23471. name: "Gigamacro",
  23472. height: math.unit(280000000.0, "inches")
  23473. }
  23474. ]
  23475. )
  23476. };
  23477. pokemonMakers["Nuzleaf"] = () => {
  23478. return makeCharacter(
  23479. "Nuzleaf",
  23480. "Pokemon",
  23481. {
  23482. "Nuzleaf": {
  23483. height: math.unit("39", "inches"),
  23484. weight: math.unit("61.7", "lbs"),
  23485. name: "Nuzleaf",
  23486. image: {
  23487. source: "./media/pokemon/Nuzleaf.svg"
  23488. },
  23489. rename: true
  23490. }
  23491. },
  23492. [
  23493. {
  23494. name: "Micro",
  23495. height: math.unit(3.9, "inches")
  23496. },
  23497. {
  23498. name: "Normal",
  23499. height: math.unit(39, "inches"),
  23500. default: true
  23501. },
  23502. {
  23503. name: "Macro",
  23504. height: math.unit(3900.0, "inches")
  23505. },
  23506. {
  23507. name: "Megamacro",
  23508. height: math.unit(195000.0, "inches")
  23509. },
  23510. {
  23511. name: "Gigamacro",
  23512. height: math.unit(390000000.0, "inches")
  23513. }
  23514. ]
  23515. )
  23516. };
  23517. pokemonMakers["Obstagoon"] = () => {
  23518. return makeCharacter(
  23519. "Obstagoon",
  23520. "Pokemon",
  23521. {
  23522. "Obstagoon": {
  23523. height: math.unit("63", "inches"),
  23524. weight: math.unit("101.4", "lbs"),
  23525. name: "Obstagoon",
  23526. image: {
  23527. source: "./media/pokemon/Obstagoon.svg"
  23528. },
  23529. rename: true
  23530. }
  23531. },
  23532. [
  23533. {
  23534. name: "Micro",
  23535. height: math.unit(6.3, "inches")
  23536. },
  23537. {
  23538. name: "Normal",
  23539. height: math.unit(63, "inches"),
  23540. default: true
  23541. },
  23542. {
  23543. name: "Macro",
  23544. height: math.unit(6300.0, "inches")
  23545. },
  23546. {
  23547. name: "Megamacro",
  23548. height: math.unit(315000.0, "inches")
  23549. },
  23550. {
  23551. name: "Gigamacro",
  23552. height: math.unit(630000000.0, "inches")
  23553. }
  23554. ]
  23555. )
  23556. };
  23557. pokemonMakers["Octillery"] = () => {
  23558. return makeCharacter(
  23559. "Octillery",
  23560. "Pokemon",
  23561. {
  23562. "Octillery": {
  23563. height: math.unit("35", "inches"),
  23564. weight: math.unit("62.8", "lbs"),
  23565. name: "Octillery",
  23566. image: {
  23567. source: "./media/pokemon/Octillery.svg"
  23568. },
  23569. rename: true
  23570. }
  23571. },
  23572. [
  23573. {
  23574. name: "Micro",
  23575. height: math.unit(3.5, "inches")
  23576. },
  23577. {
  23578. name: "Normal",
  23579. height: math.unit(35, "inches"),
  23580. default: true
  23581. },
  23582. {
  23583. name: "Macro",
  23584. height: math.unit(3500.0, "inches")
  23585. },
  23586. {
  23587. name: "Megamacro",
  23588. height: math.unit(175000.0, "inches")
  23589. },
  23590. {
  23591. name: "Gigamacro",
  23592. height: math.unit(350000000.0, "inches")
  23593. }
  23594. ]
  23595. )
  23596. };
  23597. pokemonMakers["Oddish"] = () => {
  23598. return makeCharacter(
  23599. "Oddish",
  23600. "Pokemon",
  23601. {
  23602. "Oddish": {
  23603. height: math.unit("20", "inches"),
  23604. weight: math.unit("11.9", "lbs"),
  23605. name: "Oddish",
  23606. image: {
  23607. source: "./media/pokemon/Oddish.svg"
  23608. },
  23609. rename: true
  23610. }
  23611. },
  23612. [
  23613. {
  23614. name: "Micro",
  23615. height: math.unit(2.0, "inches")
  23616. },
  23617. {
  23618. name: "Normal",
  23619. height: math.unit(20, "inches"),
  23620. default: true
  23621. },
  23622. {
  23623. name: "Macro",
  23624. height: math.unit(2000.0, "inches")
  23625. },
  23626. {
  23627. name: "Megamacro",
  23628. height: math.unit(100000.0, "inches")
  23629. },
  23630. {
  23631. name: "Gigamacro",
  23632. height: math.unit(200000000.0, "inches")
  23633. }
  23634. ]
  23635. )
  23636. };
  23637. pokemonMakers["Omanyte"] = () => {
  23638. return makeCharacter(
  23639. "Omanyte",
  23640. "Pokemon",
  23641. {
  23642. "Omanyte": {
  23643. height: math.unit("16", "inches"),
  23644. weight: math.unit("16.5", "lbs"),
  23645. name: "Omanyte",
  23646. image: {
  23647. source: "./media/pokemon/Omanyte.svg"
  23648. },
  23649. rename: true
  23650. }
  23651. },
  23652. [
  23653. {
  23654. name: "Micro",
  23655. height: math.unit(1.6, "inches")
  23656. },
  23657. {
  23658. name: "Normal",
  23659. height: math.unit(16, "inches"),
  23660. default: true
  23661. },
  23662. {
  23663. name: "Macro",
  23664. height: math.unit(1600.0, "inches")
  23665. },
  23666. {
  23667. name: "Megamacro",
  23668. height: math.unit(80000.0, "inches")
  23669. },
  23670. {
  23671. name: "Gigamacro",
  23672. height: math.unit(160000000.0, "inches")
  23673. }
  23674. ]
  23675. )
  23676. };
  23677. pokemonMakers["Omastar"] = () => {
  23678. return makeCharacter(
  23679. "Omastar",
  23680. "Pokemon",
  23681. {
  23682. "Omastar": {
  23683. height: math.unit("39", "inches"),
  23684. weight: math.unit("77.2", "lbs"),
  23685. name: "Omastar",
  23686. image: {
  23687. source: "./media/pokemon/Omastar.svg"
  23688. },
  23689. rename: true
  23690. }
  23691. },
  23692. [
  23693. {
  23694. name: "Micro",
  23695. height: math.unit(3.9, "inches")
  23696. },
  23697. {
  23698. name: "Normal",
  23699. height: math.unit(39, "inches"),
  23700. default: true
  23701. },
  23702. {
  23703. name: "Macro",
  23704. height: math.unit(3900.0, "inches")
  23705. },
  23706. {
  23707. name: "Megamacro",
  23708. height: math.unit(195000.0, "inches")
  23709. },
  23710. {
  23711. name: "Gigamacro",
  23712. height: math.unit(390000000.0, "inches")
  23713. }
  23714. ]
  23715. )
  23716. };
  23717. pokemonMakers["Onix"] = () => {
  23718. return makeCharacter(
  23719. "Onix",
  23720. "Pokemon",
  23721. {
  23722. "Onix": {
  23723. height: math.unit("346", "inches"),
  23724. weight: math.unit("463.0", "lbs"),
  23725. name: "Onix",
  23726. image: {
  23727. source: "./media/pokemon/Onix.svg"
  23728. },
  23729. rename: true
  23730. }
  23731. },
  23732. [
  23733. {
  23734. name: "Micro",
  23735. height: math.unit(34.6, "inches")
  23736. },
  23737. {
  23738. name: "Normal",
  23739. height: math.unit(346, "inches"),
  23740. default: true
  23741. },
  23742. {
  23743. name: "Macro",
  23744. height: math.unit(34600.0, "inches")
  23745. },
  23746. {
  23747. name: "Megamacro",
  23748. height: math.unit(1730000.0, "inches")
  23749. },
  23750. {
  23751. name: "Gigamacro",
  23752. height: math.unit(3460000000.0, "inches")
  23753. }
  23754. ]
  23755. )
  23756. };
  23757. pokemonMakers["Oranguru"] = () => {
  23758. return makeCharacter(
  23759. "Oranguru",
  23760. "Pokemon",
  23761. {
  23762. "Oranguru": {
  23763. height: math.unit("59", "inches"),
  23764. weight: math.unit("167.6", "lbs"),
  23765. name: "Oranguru",
  23766. image: {
  23767. source: "./media/pokemon/Oranguru.svg"
  23768. },
  23769. rename: true
  23770. }
  23771. },
  23772. [
  23773. {
  23774. name: "Micro",
  23775. height: math.unit(5.9, "inches")
  23776. },
  23777. {
  23778. name: "Normal",
  23779. height: math.unit(59, "inches"),
  23780. default: true
  23781. },
  23782. {
  23783. name: "Macro",
  23784. height: math.unit(5900.0, "inches")
  23785. },
  23786. {
  23787. name: "Megamacro",
  23788. height: math.unit(295000.0, "inches")
  23789. },
  23790. {
  23791. name: "Gigamacro",
  23792. height: math.unit(590000000.0, "inches")
  23793. }
  23794. ]
  23795. )
  23796. };
  23797. pokemonMakers["Oricorio"] = () => {
  23798. return makeCharacter(
  23799. "Oricorio",
  23800. "Pokemon",
  23801. {
  23802. "Baile Style": {
  23803. height: math.unit("24", "inches"),
  23804. weight: math.unit("7.5", "lbs"),
  23805. name: "Baile Style",
  23806. image: {
  23807. source: "./media/pokemon/Oricorio - Baile Style.svg"
  23808. },
  23809. rename: true
  23810. },
  23811. "Pa'u Style": {
  23812. height: math.unit("24", "inches"),
  23813. weight: math.unit("7.5", "lbs"),
  23814. name: "Pa'u Style",
  23815. image: {
  23816. source: "./media/pokemon/Oricorio - Pa'u Style.svg"
  23817. },
  23818. rename: true
  23819. },
  23820. "Pom-Pom Style": {
  23821. height: math.unit("24", "inches"),
  23822. weight: math.unit("7.5", "lbs"),
  23823. name: "Pom-Pom Style",
  23824. image: {
  23825. source: "./media/pokemon/Oricorio - Pom-Pom Style.svg"
  23826. },
  23827. rename: true
  23828. },
  23829. "Sensu Style": {
  23830. height: math.unit("24", "inches"),
  23831. weight: math.unit("7.5", "lbs"),
  23832. name: "Sensu Style",
  23833. image: {
  23834. source: "./media/pokemon/Oricorio - Sensu Style.svg"
  23835. },
  23836. rename: true
  23837. }
  23838. },
  23839. [
  23840. {
  23841. name: "Micro",
  23842. height: math.unit(2.4, "inches")
  23843. },
  23844. {
  23845. name: "Normal",
  23846. height: math.unit(24, "inches"),
  23847. default: true
  23848. },
  23849. {
  23850. name: "Macro",
  23851. height: math.unit(2400.0, "inches")
  23852. },
  23853. {
  23854. name: "Megamacro",
  23855. height: math.unit(120000.0, "inches")
  23856. },
  23857. {
  23858. name: "Gigamacro",
  23859. height: math.unit(240000000.0, "inches")
  23860. }
  23861. ]
  23862. )
  23863. };
  23864. pokemonMakers["Oshawott"] = () => {
  23865. return makeCharacter(
  23866. "Oshawott",
  23867. "Pokemon",
  23868. {
  23869. "Oshawott": {
  23870. height: math.unit("20", "inches"),
  23871. weight: math.unit("13.0", "lbs"),
  23872. name: "Oshawott",
  23873. image: {
  23874. source: "./media/pokemon/Oshawott.svg"
  23875. },
  23876. rename: true
  23877. }
  23878. },
  23879. [
  23880. {
  23881. name: "Micro",
  23882. height: math.unit(2.0, "inches")
  23883. },
  23884. {
  23885. name: "Normal",
  23886. height: math.unit(20, "inches"),
  23887. default: true
  23888. },
  23889. {
  23890. name: "Macro",
  23891. height: math.unit(2000.0, "inches")
  23892. },
  23893. {
  23894. name: "Megamacro",
  23895. height: math.unit(100000.0, "inches")
  23896. },
  23897. {
  23898. name: "Gigamacro",
  23899. height: math.unit(200000000.0, "inches")
  23900. }
  23901. ]
  23902. )
  23903. };
  23904. pokemonMakers["Pachirisu"] = () => {
  23905. return makeCharacter(
  23906. "Pachirisu",
  23907. "Pokemon",
  23908. {
  23909. "Pachirisu": {
  23910. height: math.unit("16", "inches"),
  23911. weight: math.unit("8.6", "lbs"),
  23912. name: "Pachirisu",
  23913. image: {
  23914. source: "./media/pokemon/Pachirisu.svg"
  23915. },
  23916. rename: true
  23917. }
  23918. },
  23919. [
  23920. {
  23921. name: "Micro",
  23922. height: math.unit(1.6, "inches")
  23923. },
  23924. {
  23925. name: "Normal",
  23926. height: math.unit(16, "inches"),
  23927. default: true
  23928. },
  23929. {
  23930. name: "Macro",
  23931. height: math.unit(1600.0, "inches")
  23932. },
  23933. {
  23934. name: "Megamacro",
  23935. height: math.unit(80000.0, "inches")
  23936. },
  23937. {
  23938. name: "Gigamacro",
  23939. height: math.unit(160000000.0, "inches")
  23940. }
  23941. ]
  23942. )
  23943. };
  23944. pokemonMakers["Palkia"] = () => {
  23945. return makeCharacter(
  23946. "Palkia",
  23947. "Pokemon",
  23948. {
  23949. "Palkia": {
  23950. height: math.unit("165", "inches"),
  23951. weight: math.unit("740.8", "lbs"),
  23952. name: "Palkia",
  23953. image: {
  23954. source: "./media/pokemon/Palkia.svg"
  23955. },
  23956. rename: true
  23957. }
  23958. },
  23959. [
  23960. {
  23961. name: "Micro",
  23962. height: math.unit(16.5, "inches")
  23963. },
  23964. {
  23965. name: "Normal",
  23966. height: math.unit(165, "inches"),
  23967. default: true
  23968. },
  23969. {
  23970. name: "Macro",
  23971. height: math.unit(16500.0, "inches")
  23972. },
  23973. {
  23974. name: "Megamacro",
  23975. height: math.unit(825000.0, "inches")
  23976. },
  23977. {
  23978. name: "Gigamacro",
  23979. height: math.unit(1650000000.0, "inches")
  23980. }
  23981. ]
  23982. )
  23983. };
  23984. pokemonMakers["Palossand"] = () => {
  23985. return makeCharacter(
  23986. "Palossand",
  23987. "Pokemon",
  23988. {
  23989. "Palossand": {
  23990. height: math.unit("51", "inches"),
  23991. weight: math.unit("551.2", "lbs"),
  23992. name: "Palossand",
  23993. image: {
  23994. source: "./media/pokemon/Palossand.svg"
  23995. },
  23996. rename: true
  23997. }
  23998. },
  23999. [
  24000. {
  24001. name: "Micro",
  24002. height: math.unit(5.1, "inches")
  24003. },
  24004. {
  24005. name: "Normal",
  24006. height: math.unit(51, "inches"),
  24007. default: true
  24008. },
  24009. {
  24010. name: "Macro",
  24011. height: math.unit(5100.0, "inches")
  24012. },
  24013. {
  24014. name: "Megamacro",
  24015. height: math.unit(255000.0, "inches")
  24016. },
  24017. {
  24018. name: "Gigamacro",
  24019. height: math.unit(510000000.0, "inches")
  24020. }
  24021. ]
  24022. )
  24023. };
  24024. pokemonMakers["Palpitoad"] = () => {
  24025. return makeCharacter(
  24026. "Palpitoad",
  24027. "Pokemon",
  24028. {
  24029. "Palpitoad": {
  24030. height: math.unit("31", "inches"),
  24031. weight: math.unit("37.5", "lbs"),
  24032. name: "Palpitoad",
  24033. image: {
  24034. source: "./media/pokemon/Palpitoad.svg"
  24035. },
  24036. rename: true
  24037. }
  24038. },
  24039. [
  24040. {
  24041. name: "Micro",
  24042. height: math.unit(3.1, "inches")
  24043. },
  24044. {
  24045. name: "Normal",
  24046. height: math.unit(31, "inches"),
  24047. default: true
  24048. },
  24049. {
  24050. name: "Macro",
  24051. height: math.unit(3100.0, "inches")
  24052. },
  24053. {
  24054. name: "Megamacro",
  24055. height: math.unit(155000.0, "inches")
  24056. },
  24057. {
  24058. name: "Gigamacro",
  24059. height: math.unit(310000000.0, "inches")
  24060. }
  24061. ]
  24062. )
  24063. };
  24064. pokemonMakers["Pancham"] = () => {
  24065. return makeCharacter(
  24066. "Pancham",
  24067. "Pokemon",
  24068. {
  24069. "Pancham": {
  24070. height: math.unit("24", "inches"),
  24071. weight: math.unit("17.6", "lbs"),
  24072. name: "Pancham",
  24073. image: {
  24074. source: "./media/pokemon/Pancham.svg"
  24075. },
  24076. rename: true
  24077. }
  24078. },
  24079. [
  24080. {
  24081. name: "Micro",
  24082. height: math.unit(2.4, "inches")
  24083. },
  24084. {
  24085. name: "Normal",
  24086. height: math.unit(24, "inches"),
  24087. default: true
  24088. },
  24089. {
  24090. name: "Macro",
  24091. height: math.unit(2400.0, "inches")
  24092. },
  24093. {
  24094. name: "Megamacro",
  24095. height: math.unit(120000.0, "inches")
  24096. },
  24097. {
  24098. name: "Gigamacro",
  24099. height: math.unit(240000000.0, "inches")
  24100. }
  24101. ]
  24102. )
  24103. };
  24104. pokemonMakers["Pangoro"] = () => {
  24105. return makeCharacter(
  24106. "Pangoro",
  24107. "Pokemon",
  24108. {
  24109. "Pangoro": {
  24110. height: math.unit("83", "inches"),
  24111. weight: math.unit("299.8", "lbs"),
  24112. name: "Pangoro",
  24113. image: {
  24114. source: "./media/pokemon/Pangoro.svg"
  24115. },
  24116. rename: true
  24117. }
  24118. },
  24119. [
  24120. {
  24121. name: "Micro",
  24122. height: math.unit(8.3, "inches")
  24123. },
  24124. {
  24125. name: "Normal",
  24126. height: math.unit(83, "inches"),
  24127. default: true
  24128. },
  24129. {
  24130. name: "Macro",
  24131. height: math.unit(8300.0, "inches")
  24132. },
  24133. {
  24134. name: "Megamacro",
  24135. height: math.unit(415000.0, "inches")
  24136. },
  24137. {
  24138. name: "Gigamacro",
  24139. height: math.unit(830000000.0, "inches")
  24140. }
  24141. ]
  24142. )
  24143. };
  24144. pokemonMakers["Panpour"] = () => {
  24145. return makeCharacter(
  24146. "Panpour",
  24147. "Pokemon",
  24148. {
  24149. "Panpour": {
  24150. height: math.unit("24", "inches"),
  24151. weight: math.unit("29.8", "lbs"),
  24152. name: "Panpour",
  24153. image: {
  24154. source: "./media/pokemon/Panpour.svg"
  24155. },
  24156. rename: true
  24157. }
  24158. },
  24159. [
  24160. {
  24161. name: "Micro",
  24162. height: math.unit(2.4, "inches")
  24163. },
  24164. {
  24165. name: "Normal",
  24166. height: math.unit(24, "inches"),
  24167. default: true
  24168. },
  24169. {
  24170. name: "Macro",
  24171. height: math.unit(2400.0, "inches")
  24172. },
  24173. {
  24174. name: "Megamacro",
  24175. height: math.unit(120000.0, "inches")
  24176. },
  24177. {
  24178. name: "Gigamacro",
  24179. height: math.unit(240000000.0, "inches")
  24180. }
  24181. ]
  24182. )
  24183. };
  24184. pokemonMakers["Pansage"] = () => {
  24185. return makeCharacter(
  24186. "Pansage",
  24187. "Pokemon",
  24188. {
  24189. "Pansage": {
  24190. height: math.unit("24", "inches"),
  24191. weight: math.unit("23.1", "lbs"),
  24192. name: "Pansage",
  24193. image: {
  24194. source: "./media/pokemon/Pansage.svg"
  24195. },
  24196. rename: true
  24197. }
  24198. },
  24199. [
  24200. {
  24201. name: "Micro",
  24202. height: math.unit(2.4, "inches")
  24203. },
  24204. {
  24205. name: "Normal",
  24206. height: math.unit(24, "inches"),
  24207. default: true
  24208. },
  24209. {
  24210. name: "Macro",
  24211. height: math.unit(2400.0, "inches")
  24212. },
  24213. {
  24214. name: "Megamacro",
  24215. height: math.unit(120000.0, "inches")
  24216. },
  24217. {
  24218. name: "Gigamacro",
  24219. height: math.unit(240000000.0, "inches")
  24220. }
  24221. ]
  24222. )
  24223. };
  24224. pokemonMakers["Pansear"] = () => {
  24225. return makeCharacter(
  24226. "Pansear",
  24227. "Pokemon",
  24228. {
  24229. "Pansear": {
  24230. height: math.unit("24", "inches"),
  24231. weight: math.unit("24.3", "lbs"),
  24232. name: "Pansear",
  24233. image: {
  24234. source: "./media/pokemon/Pansear.svg"
  24235. },
  24236. rename: true
  24237. }
  24238. },
  24239. [
  24240. {
  24241. name: "Micro",
  24242. height: math.unit(2.4, "inches")
  24243. },
  24244. {
  24245. name: "Normal",
  24246. height: math.unit(24, "inches"),
  24247. default: true
  24248. },
  24249. {
  24250. name: "Macro",
  24251. height: math.unit(2400.0, "inches")
  24252. },
  24253. {
  24254. name: "Megamacro",
  24255. height: math.unit(120000.0, "inches")
  24256. },
  24257. {
  24258. name: "Gigamacro",
  24259. height: math.unit(240000000.0, "inches")
  24260. }
  24261. ]
  24262. )
  24263. };
  24264. pokemonMakers["Paras"] = () => {
  24265. return makeCharacter(
  24266. "Paras",
  24267. "Pokemon",
  24268. {
  24269. "Paras": {
  24270. height: math.unit("12", "inches"),
  24271. weight: math.unit("11.9", "lbs"),
  24272. name: "Paras",
  24273. image: {
  24274. source: "./media/pokemon/Paras.svg"
  24275. },
  24276. rename: true
  24277. }
  24278. },
  24279. [
  24280. {
  24281. name: "Micro",
  24282. height: math.unit(1.2, "inches")
  24283. },
  24284. {
  24285. name: "Normal",
  24286. height: math.unit(12, "inches"),
  24287. default: true
  24288. },
  24289. {
  24290. name: "Macro",
  24291. height: math.unit(1200.0, "inches")
  24292. },
  24293. {
  24294. name: "Megamacro",
  24295. height: math.unit(60000.0, "inches")
  24296. },
  24297. {
  24298. name: "Gigamacro",
  24299. height: math.unit(120000000.0, "inches")
  24300. }
  24301. ]
  24302. )
  24303. };
  24304. pokemonMakers["Parasect"] = () => {
  24305. return makeCharacter(
  24306. "Parasect",
  24307. "Pokemon",
  24308. {
  24309. "Parasect": {
  24310. height: math.unit("39", "inches"),
  24311. weight: math.unit("65.0", "lbs"),
  24312. name: "Parasect",
  24313. image: {
  24314. source: "./media/pokemon/Parasect.svg"
  24315. },
  24316. rename: true
  24317. }
  24318. },
  24319. [
  24320. {
  24321. name: "Micro",
  24322. height: math.unit(3.9, "inches")
  24323. },
  24324. {
  24325. name: "Normal",
  24326. height: math.unit(39, "inches"),
  24327. default: true
  24328. },
  24329. {
  24330. name: "Macro",
  24331. height: math.unit(3900.0, "inches")
  24332. },
  24333. {
  24334. name: "Megamacro",
  24335. height: math.unit(195000.0, "inches")
  24336. },
  24337. {
  24338. name: "Gigamacro",
  24339. height: math.unit(390000000.0, "inches")
  24340. }
  24341. ]
  24342. )
  24343. };
  24344. pokemonMakers["Passimian"] = () => {
  24345. return makeCharacter(
  24346. "Passimian",
  24347. "Pokemon",
  24348. {
  24349. "Passimian": {
  24350. height: math.unit("79", "inches"),
  24351. weight: math.unit("182.5", "lbs"),
  24352. name: "Passimian",
  24353. image: {
  24354. source: "./media/pokemon/Passimian.svg"
  24355. },
  24356. rename: true
  24357. }
  24358. },
  24359. [
  24360. {
  24361. name: "Micro",
  24362. height: math.unit(7.9, "inches")
  24363. },
  24364. {
  24365. name: "Normal",
  24366. height: math.unit(79, "inches"),
  24367. default: true
  24368. },
  24369. {
  24370. name: "Macro",
  24371. height: math.unit(7900.0, "inches")
  24372. },
  24373. {
  24374. name: "Megamacro",
  24375. height: math.unit(395000.0, "inches")
  24376. },
  24377. {
  24378. name: "Gigamacro",
  24379. height: math.unit(790000000.0, "inches")
  24380. }
  24381. ]
  24382. )
  24383. };
  24384. pokemonMakers["Patrat"] = () => {
  24385. return makeCharacter(
  24386. "Patrat",
  24387. "Pokemon",
  24388. {
  24389. "Patrat": {
  24390. height: math.unit("20", "inches"),
  24391. weight: math.unit("25.6", "lbs"),
  24392. name: "Patrat",
  24393. image: {
  24394. source: "./media/pokemon/Patrat.svg"
  24395. },
  24396. rename: true
  24397. }
  24398. },
  24399. [
  24400. {
  24401. name: "Micro",
  24402. height: math.unit(2.0, "inches")
  24403. },
  24404. {
  24405. name: "Normal",
  24406. height: math.unit(20, "inches"),
  24407. default: true
  24408. },
  24409. {
  24410. name: "Macro",
  24411. height: math.unit(2000.0, "inches")
  24412. },
  24413. {
  24414. name: "Megamacro",
  24415. height: math.unit(100000.0, "inches")
  24416. },
  24417. {
  24418. name: "Gigamacro",
  24419. height: math.unit(200000000.0, "inches")
  24420. }
  24421. ]
  24422. )
  24423. };
  24424. pokemonMakers["Pawniard"] = () => {
  24425. return makeCharacter(
  24426. "Pawniard",
  24427. "Pokemon",
  24428. {
  24429. "Pawniard": {
  24430. height: math.unit("20", "inches"),
  24431. weight: math.unit("22.5", "lbs"),
  24432. name: "Pawniard",
  24433. image: {
  24434. source: "./media/pokemon/Pawniard.svg"
  24435. },
  24436. rename: true
  24437. }
  24438. },
  24439. [
  24440. {
  24441. name: "Micro",
  24442. height: math.unit(2.0, "inches")
  24443. },
  24444. {
  24445. name: "Normal",
  24446. height: math.unit(20, "inches"),
  24447. default: true
  24448. },
  24449. {
  24450. name: "Macro",
  24451. height: math.unit(2000.0, "inches")
  24452. },
  24453. {
  24454. name: "Megamacro",
  24455. height: math.unit(100000.0, "inches")
  24456. },
  24457. {
  24458. name: "Gigamacro",
  24459. height: math.unit(200000000.0, "inches")
  24460. }
  24461. ]
  24462. )
  24463. };
  24464. pokemonMakers["Pelipper"] = () => {
  24465. return makeCharacter(
  24466. "Pelipper",
  24467. "Pokemon",
  24468. {
  24469. "Pelipper": {
  24470. height: math.unit("47", "inches"),
  24471. weight: math.unit("61.7", "lbs"),
  24472. name: "Pelipper",
  24473. image: {
  24474. source: "./media/pokemon/Pelipper.svg"
  24475. },
  24476. rename: true
  24477. }
  24478. },
  24479. [
  24480. {
  24481. name: "Micro",
  24482. height: math.unit(4.7, "inches")
  24483. },
  24484. {
  24485. name: "Normal",
  24486. height: math.unit(47, "inches"),
  24487. default: true
  24488. },
  24489. {
  24490. name: "Macro",
  24491. height: math.unit(4700.0, "inches")
  24492. },
  24493. {
  24494. name: "Megamacro",
  24495. height: math.unit(235000.0, "inches")
  24496. },
  24497. {
  24498. name: "Gigamacro",
  24499. height: math.unit(470000000.0, "inches")
  24500. }
  24501. ]
  24502. )
  24503. };
  24504. pokemonMakers["Perrserker"] = () => {
  24505. return makeCharacter(
  24506. "Perrserker",
  24507. "Pokemon",
  24508. {
  24509. "Perrserker": {
  24510. height: math.unit("31", "inches"),
  24511. weight: math.unit("61.7", "lbs"),
  24512. name: "Perrserker",
  24513. image: {
  24514. source: "./media/pokemon/Perrserker.svg"
  24515. },
  24516. rename: true
  24517. }
  24518. },
  24519. [
  24520. {
  24521. name: "Micro",
  24522. height: math.unit(3.1, "inches")
  24523. },
  24524. {
  24525. name: "Normal",
  24526. height: math.unit(31, "inches"),
  24527. default: true
  24528. },
  24529. {
  24530. name: "Macro",
  24531. height: math.unit(3100.0, "inches")
  24532. },
  24533. {
  24534. name: "Megamacro",
  24535. height: math.unit(155000.0, "inches")
  24536. },
  24537. {
  24538. name: "Gigamacro",
  24539. height: math.unit(310000000.0, "inches")
  24540. }
  24541. ]
  24542. )
  24543. };
  24544. pokemonMakers["Persian"] = () => {
  24545. return makeCharacter(
  24546. "Persian",
  24547. "Pokemon",
  24548. {
  24549. "Alola Form": {
  24550. height: math.unit("43", "inches"),
  24551. weight: math.unit("72.8", "lbs"),
  24552. name: "Alola Form",
  24553. image: {
  24554. source: "./media/pokemon/Persian - Alola Form.svg"
  24555. },
  24556. rename: true
  24557. },
  24558. "Persian": {
  24559. height: math.unit("39", "inches"),
  24560. weight: math.unit("70.5", "lbs"),
  24561. name: "Persian",
  24562. image: {
  24563. source: "./media/pokemon/Persian.svg"
  24564. },
  24565. rename: true
  24566. }
  24567. },
  24568. [
  24569. {
  24570. name: "Micro",
  24571. height: math.unit(4.3, "inches")
  24572. },
  24573. {
  24574. name: "Normal",
  24575. height: math.unit(43, "inches"),
  24576. default: true
  24577. },
  24578. {
  24579. name: "Macro",
  24580. height: math.unit(4300.0, "inches")
  24581. },
  24582. {
  24583. name: "Megamacro",
  24584. height: math.unit(215000.0, "inches")
  24585. },
  24586. {
  24587. name: "Gigamacro",
  24588. height: math.unit(430000000.0, "inches")
  24589. }
  24590. ]
  24591. )
  24592. };
  24593. pokemonMakers["Petilil"] = () => {
  24594. return makeCharacter(
  24595. "Petilil",
  24596. "Pokemon",
  24597. {
  24598. "Petilil": {
  24599. height: math.unit("20", "inches"),
  24600. weight: math.unit("14.6", "lbs"),
  24601. name: "Petilil",
  24602. image: {
  24603. source: "./media/pokemon/Petilil.svg"
  24604. },
  24605. rename: true
  24606. }
  24607. },
  24608. [
  24609. {
  24610. name: "Micro",
  24611. height: math.unit(2.0, "inches")
  24612. },
  24613. {
  24614. name: "Normal",
  24615. height: math.unit(20, "inches"),
  24616. default: true
  24617. },
  24618. {
  24619. name: "Macro",
  24620. height: math.unit(2000.0, "inches")
  24621. },
  24622. {
  24623. name: "Megamacro",
  24624. height: math.unit(100000.0, "inches")
  24625. },
  24626. {
  24627. name: "Gigamacro",
  24628. height: math.unit(200000000.0, "inches")
  24629. }
  24630. ]
  24631. )
  24632. };
  24633. pokemonMakers["Phanpy"] = () => {
  24634. return makeCharacter(
  24635. "Phanpy",
  24636. "Pokemon",
  24637. {
  24638. "Phanpy": {
  24639. height: math.unit("20", "inches"),
  24640. weight: math.unit("73.9", "lbs"),
  24641. name: "Phanpy",
  24642. image: {
  24643. source: "./media/pokemon/Phanpy.svg"
  24644. },
  24645. rename: true
  24646. }
  24647. },
  24648. [
  24649. {
  24650. name: "Micro",
  24651. height: math.unit(2.0, "inches")
  24652. },
  24653. {
  24654. name: "Normal",
  24655. height: math.unit(20, "inches"),
  24656. default: true
  24657. },
  24658. {
  24659. name: "Macro",
  24660. height: math.unit(2000.0, "inches")
  24661. },
  24662. {
  24663. name: "Megamacro",
  24664. height: math.unit(100000.0, "inches")
  24665. },
  24666. {
  24667. name: "Gigamacro",
  24668. height: math.unit(200000000.0, "inches")
  24669. }
  24670. ]
  24671. )
  24672. };
  24673. pokemonMakers["Phantump"] = () => {
  24674. return makeCharacter(
  24675. "Phantump",
  24676. "Pokemon",
  24677. {
  24678. "Phantump": {
  24679. height: math.unit("16", "inches"),
  24680. weight: math.unit("15.4", "lbs"),
  24681. name: "Phantump",
  24682. image: {
  24683. source: "./media/pokemon/Phantump.svg"
  24684. },
  24685. rename: true
  24686. }
  24687. },
  24688. [
  24689. {
  24690. name: "Micro",
  24691. height: math.unit(1.6, "inches")
  24692. },
  24693. {
  24694. name: "Normal",
  24695. height: math.unit(16, "inches"),
  24696. default: true
  24697. },
  24698. {
  24699. name: "Macro",
  24700. height: math.unit(1600.0, "inches")
  24701. },
  24702. {
  24703. name: "Megamacro",
  24704. height: math.unit(80000.0, "inches")
  24705. },
  24706. {
  24707. name: "Gigamacro",
  24708. height: math.unit(160000000.0, "inches")
  24709. }
  24710. ]
  24711. )
  24712. };
  24713. pokemonMakers["Pheromosa"] = () => {
  24714. return makeCharacter(
  24715. "Pheromosa",
  24716. "Pokemon",
  24717. {
  24718. "Pheromosa": {
  24719. height: math.unit("71", "inches"),
  24720. weight: math.unit("55.1", "lbs"),
  24721. name: "Pheromosa",
  24722. image: {
  24723. source: "./media/pokemon/Pheromosa.svg"
  24724. },
  24725. rename: true
  24726. }
  24727. },
  24728. [
  24729. {
  24730. name: "Micro",
  24731. height: math.unit(7.1, "inches")
  24732. },
  24733. {
  24734. name: "Normal",
  24735. height: math.unit(71, "inches"),
  24736. default: true
  24737. },
  24738. {
  24739. name: "Macro",
  24740. height: math.unit(7100.0, "inches")
  24741. },
  24742. {
  24743. name: "Megamacro",
  24744. height: math.unit(355000.0, "inches")
  24745. },
  24746. {
  24747. name: "Gigamacro",
  24748. height: math.unit(710000000.0, "inches")
  24749. }
  24750. ]
  24751. )
  24752. };
  24753. pokemonMakers["Phione"] = () => {
  24754. return makeCharacter(
  24755. "Phione",
  24756. "Pokemon",
  24757. {
  24758. "Phione": {
  24759. height: math.unit("16", "inches"),
  24760. weight: math.unit("6.8", "lbs"),
  24761. name: "Phione",
  24762. image: {
  24763. source: "./media/pokemon/Phione.svg"
  24764. },
  24765. rename: true
  24766. }
  24767. },
  24768. [
  24769. {
  24770. name: "Micro",
  24771. height: math.unit(1.6, "inches")
  24772. },
  24773. {
  24774. name: "Normal",
  24775. height: math.unit(16, "inches"),
  24776. default: true
  24777. },
  24778. {
  24779. name: "Macro",
  24780. height: math.unit(1600.0, "inches")
  24781. },
  24782. {
  24783. name: "Megamacro",
  24784. height: math.unit(80000.0, "inches")
  24785. },
  24786. {
  24787. name: "Gigamacro",
  24788. height: math.unit(160000000.0, "inches")
  24789. }
  24790. ]
  24791. )
  24792. };
  24793. pokemonMakers["Pichu"] = () => {
  24794. return makeCharacter(
  24795. "Pichu",
  24796. "Pokemon",
  24797. {
  24798. "Pichu": {
  24799. height: math.unit("12", "inches"),
  24800. weight: math.unit("4.4", "lbs"),
  24801. name: "Pichu",
  24802. image: {
  24803. source: "./media/pokemon/Pichu.svg"
  24804. },
  24805. rename: true
  24806. }
  24807. },
  24808. [
  24809. {
  24810. name: "Micro",
  24811. height: math.unit(1.2, "inches")
  24812. },
  24813. {
  24814. name: "Normal",
  24815. height: math.unit(12, "inches"),
  24816. default: true
  24817. },
  24818. {
  24819. name: "Macro",
  24820. height: math.unit(1200.0, "inches")
  24821. },
  24822. {
  24823. name: "Megamacro",
  24824. height: math.unit(60000.0, "inches")
  24825. },
  24826. {
  24827. name: "Gigamacro",
  24828. height: math.unit(120000000.0, "inches")
  24829. }
  24830. ]
  24831. )
  24832. };
  24833. pokemonMakers["Pidgeotto"] = () => {
  24834. return makeCharacter(
  24835. "Pidgeotto",
  24836. "Pokemon",
  24837. {
  24838. "Pidgeotto": {
  24839. height: math.unit("43", "inches"),
  24840. weight: math.unit("66.1", "lbs"),
  24841. name: "Pidgeotto",
  24842. image: {
  24843. source: "./media/pokemon/Pidgeotto.svg"
  24844. },
  24845. rename: true
  24846. }
  24847. },
  24848. [
  24849. {
  24850. name: "Micro",
  24851. height: math.unit(4.3, "inches")
  24852. },
  24853. {
  24854. name: "Normal",
  24855. height: math.unit(43, "inches"),
  24856. default: true
  24857. },
  24858. {
  24859. name: "Macro",
  24860. height: math.unit(4300.0, "inches")
  24861. },
  24862. {
  24863. name: "Megamacro",
  24864. height: math.unit(215000.0, "inches")
  24865. },
  24866. {
  24867. name: "Gigamacro",
  24868. height: math.unit(430000000.0, "inches")
  24869. }
  24870. ]
  24871. )
  24872. };
  24873. pokemonMakers["Pidgey"] = () => {
  24874. return makeCharacter(
  24875. "Pidgey",
  24876. "Pokemon",
  24877. {
  24878. "Pidgey": {
  24879. height: math.unit("12", "inches"),
  24880. weight: math.unit("4.0", "lbs"),
  24881. name: "Pidgey",
  24882. image: {
  24883. source: "./media/pokemon/Pidgey.svg"
  24884. },
  24885. rename: true
  24886. }
  24887. },
  24888. [
  24889. {
  24890. name: "Micro",
  24891. height: math.unit(1.2, "inches")
  24892. },
  24893. {
  24894. name: "Normal",
  24895. height: math.unit(12, "inches"),
  24896. default: true
  24897. },
  24898. {
  24899. name: "Macro",
  24900. height: math.unit(1200.0, "inches")
  24901. },
  24902. {
  24903. name: "Megamacro",
  24904. height: math.unit(60000.0, "inches")
  24905. },
  24906. {
  24907. name: "Gigamacro",
  24908. height: math.unit(120000000.0, "inches")
  24909. }
  24910. ]
  24911. )
  24912. };
  24913. pokemonMakers["Pidove"] = () => {
  24914. return makeCharacter(
  24915. "Pidove",
  24916. "Pokemon",
  24917. {
  24918. "Pidove": {
  24919. height: math.unit("12", "inches"),
  24920. weight: math.unit("4.6", "lbs"),
  24921. name: "Pidove",
  24922. image: {
  24923. source: "./media/pokemon/Pidove.svg"
  24924. },
  24925. rename: true
  24926. }
  24927. },
  24928. [
  24929. {
  24930. name: "Micro",
  24931. height: math.unit(1.2, "inches")
  24932. },
  24933. {
  24934. name: "Normal",
  24935. height: math.unit(12, "inches"),
  24936. default: true
  24937. },
  24938. {
  24939. name: "Macro",
  24940. height: math.unit(1200.0, "inches")
  24941. },
  24942. {
  24943. name: "Megamacro",
  24944. height: math.unit(60000.0, "inches")
  24945. },
  24946. {
  24947. name: "Gigamacro",
  24948. height: math.unit(120000000.0, "inches")
  24949. }
  24950. ]
  24951. )
  24952. };
  24953. pokemonMakers["Pignite"] = () => {
  24954. return makeCharacter(
  24955. "Pignite",
  24956. "Pokemon",
  24957. {
  24958. "Pignite": {
  24959. height: math.unit("39", "inches"),
  24960. weight: math.unit("122.4", "lbs"),
  24961. name: "Pignite",
  24962. image: {
  24963. source: "./media/pokemon/Pignite.svg"
  24964. },
  24965. rename: true
  24966. }
  24967. },
  24968. [
  24969. {
  24970. name: "Micro",
  24971. height: math.unit(3.9, "inches")
  24972. },
  24973. {
  24974. name: "Normal",
  24975. height: math.unit(39, "inches"),
  24976. default: true
  24977. },
  24978. {
  24979. name: "Macro",
  24980. height: math.unit(3900.0, "inches")
  24981. },
  24982. {
  24983. name: "Megamacro",
  24984. height: math.unit(195000.0, "inches")
  24985. },
  24986. {
  24987. name: "Gigamacro",
  24988. height: math.unit(390000000.0, "inches")
  24989. }
  24990. ]
  24991. )
  24992. };
  24993. pokemonMakers["Pikipek"] = () => {
  24994. return makeCharacter(
  24995. "Pikipek",
  24996. "Pokemon",
  24997. {
  24998. "Pikipek": {
  24999. height: math.unit("12", "inches"),
  25000. weight: math.unit("2.6", "lbs"),
  25001. name: "Pikipek",
  25002. image: {
  25003. source: "./media/pokemon/Pikipek.svg"
  25004. },
  25005. rename: true
  25006. }
  25007. },
  25008. [
  25009. {
  25010. name: "Micro",
  25011. height: math.unit(1.2, "inches")
  25012. },
  25013. {
  25014. name: "Normal",
  25015. height: math.unit(12, "inches"),
  25016. default: true
  25017. },
  25018. {
  25019. name: "Macro",
  25020. height: math.unit(1200.0, "inches")
  25021. },
  25022. {
  25023. name: "Megamacro",
  25024. height: math.unit(60000.0, "inches")
  25025. },
  25026. {
  25027. name: "Gigamacro",
  25028. height: math.unit(120000000.0, "inches")
  25029. }
  25030. ]
  25031. )
  25032. };
  25033. pokemonMakers["Piloswine"] = () => {
  25034. return makeCharacter(
  25035. "Piloswine",
  25036. "Pokemon",
  25037. {
  25038. "Piloswine": {
  25039. height: math.unit("43", "inches"),
  25040. weight: math.unit("123.0", "lbs"),
  25041. name: "Piloswine",
  25042. image: {
  25043. source: "./media/pokemon/Piloswine.svg"
  25044. },
  25045. rename: true
  25046. }
  25047. },
  25048. [
  25049. {
  25050. name: "Micro",
  25051. height: math.unit(4.3, "inches")
  25052. },
  25053. {
  25054. name: "Normal",
  25055. height: math.unit(43, "inches"),
  25056. default: true
  25057. },
  25058. {
  25059. name: "Macro",
  25060. height: math.unit(4300.0, "inches")
  25061. },
  25062. {
  25063. name: "Megamacro",
  25064. height: math.unit(215000.0, "inches")
  25065. },
  25066. {
  25067. name: "Gigamacro",
  25068. height: math.unit(430000000.0, "inches")
  25069. }
  25070. ]
  25071. )
  25072. };
  25073. pokemonMakers["Pincurchin"] = () => {
  25074. return makeCharacter(
  25075. "Pincurchin",
  25076. "Pokemon",
  25077. {
  25078. "Pincurchin": {
  25079. height: math.unit("12", "inches"),
  25080. weight: math.unit("2.2", "lbs"),
  25081. name: "Pincurchin",
  25082. image: {
  25083. source: "./media/pokemon/Pincurchin.svg"
  25084. },
  25085. rename: true
  25086. }
  25087. },
  25088. [
  25089. {
  25090. name: "Micro",
  25091. height: math.unit(1.2, "inches")
  25092. },
  25093. {
  25094. name: "Normal",
  25095. height: math.unit(12, "inches"),
  25096. default: true
  25097. },
  25098. {
  25099. name: "Macro",
  25100. height: math.unit(1200.0, "inches")
  25101. },
  25102. {
  25103. name: "Megamacro",
  25104. height: math.unit(60000.0, "inches")
  25105. },
  25106. {
  25107. name: "Gigamacro",
  25108. height: math.unit(120000000.0, "inches")
  25109. }
  25110. ]
  25111. )
  25112. };
  25113. pokemonMakers["Pineco"] = () => {
  25114. return makeCharacter(
  25115. "Pineco",
  25116. "Pokemon",
  25117. {
  25118. "Pineco": {
  25119. height: math.unit("24", "inches"),
  25120. weight: math.unit("15.9", "lbs"),
  25121. name: "Pineco",
  25122. image: {
  25123. source: "./media/pokemon/Pineco.svg"
  25124. },
  25125. rename: true
  25126. }
  25127. },
  25128. [
  25129. {
  25130. name: "Micro",
  25131. height: math.unit(2.4, "inches")
  25132. },
  25133. {
  25134. name: "Normal",
  25135. height: math.unit(24, "inches"),
  25136. default: true
  25137. },
  25138. {
  25139. name: "Macro",
  25140. height: math.unit(2400.0, "inches")
  25141. },
  25142. {
  25143. name: "Megamacro",
  25144. height: math.unit(120000.0, "inches")
  25145. },
  25146. {
  25147. name: "Gigamacro",
  25148. height: math.unit(240000000.0, "inches")
  25149. }
  25150. ]
  25151. )
  25152. };
  25153. pokemonMakers["Piplup"] = () => {
  25154. return makeCharacter(
  25155. "Piplup",
  25156. "Pokemon",
  25157. {
  25158. "Piplup": {
  25159. height: math.unit("16", "inches"),
  25160. weight: math.unit("11.5", "lbs"),
  25161. name: "Piplup",
  25162. image: {
  25163. source: "./media/pokemon/Piplup.svg"
  25164. },
  25165. rename: true
  25166. }
  25167. },
  25168. [
  25169. {
  25170. name: "Micro",
  25171. height: math.unit(1.6, "inches")
  25172. },
  25173. {
  25174. name: "Normal",
  25175. height: math.unit(16, "inches"),
  25176. default: true
  25177. },
  25178. {
  25179. name: "Macro",
  25180. height: math.unit(1600.0, "inches")
  25181. },
  25182. {
  25183. name: "Megamacro",
  25184. height: math.unit(80000.0, "inches")
  25185. },
  25186. {
  25187. name: "Gigamacro",
  25188. height: math.unit(160000000.0, "inches")
  25189. }
  25190. ]
  25191. )
  25192. };
  25193. pokemonMakers["Plusle"] = () => {
  25194. return makeCharacter(
  25195. "Plusle",
  25196. "Pokemon",
  25197. {
  25198. "Plusle": {
  25199. height: math.unit("16", "inches"),
  25200. weight: math.unit("9.3", "lbs"),
  25201. name: "Plusle",
  25202. image: {
  25203. source: "./media/pokemon/Plusle.svg"
  25204. },
  25205. rename: true
  25206. }
  25207. },
  25208. [
  25209. {
  25210. name: "Micro",
  25211. height: math.unit(1.6, "inches")
  25212. },
  25213. {
  25214. name: "Normal",
  25215. height: math.unit(16, "inches"),
  25216. default: true
  25217. },
  25218. {
  25219. name: "Macro",
  25220. height: math.unit(1600.0, "inches")
  25221. },
  25222. {
  25223. name: "Megamacro",
  25224. height: math.unit(80000.0, "inches")
  25225. },
  25226. {
  25227. name: "Gigamacro",
  25228. height: math.unit(160000000.0, "inches")
  25229. }
  25230. ]
  25231. )
  25232. };
  25233. pokemonMakers["Poipole"] = () => {
  25234. return makeCharacter(
  25235. "Poipole",
  25236. "Pokemon",
  25237. {
  25238. "Poipole": {
  25239. height: math.unit("24", "inches"),
  25240. weight: math.unit("4.0", "lbs"),
  25241. name: "Poipole",
  25242. image: {
  25243. source: "./media/pokemon/Poipole.svg"
  25244. },
  25245. rename: true
  25246. }
  25247. },
  25248. [
  25249. {
  25250. name: "Micro",
  25251. height: math.unit(2.4, "inches")
  25252. },
  25253. {
  25254. name: "Normal",
  25255. height: math.unit(24, "inches"),
  25256. default: true
  25257. },
  25258. {
  25259. name: "Macro",
  25260. height: math.unit(2400.0, "inches")
  25261. },
  25262. {
  25263. name: "Megamacro",
  25264. height: math.unit(120000.0, "inches")
  25265. },
  25266. {
  25267. name: "Gigamacro",
  25268. height: math.unit(240000000.0, "inches")
  25269. }
  25270. ]
  25271. )
  25272. };
  25273. pokemonMakers["Politoed"] = () => {
  25274. return makeCharacter(
  25275. "Politoed",
  25276. "Pokemon",
  25277. {
  25278. "Politoed": {
  25279. height: math.unit("43", "inches"),
  25280. weight: math.unit("74.7", "lbs"),
  25281. name: "Politoed",
  25282. image: {
  25283. source: "./media/pokemon/Politoed.svg"
  25284. },
  25285. rename: true
  25286. }
  25287. },
  25288. [
  25289. {
  25290. name: "Micro",
  25291. height: math.unit(4.3, "inches")
  25292. },
  25293. {
  25294. name: "Normal",
  25295. height: math.unit(43, "inches"),
  25296. default: true
  25297. },
  25298. {
  25299. name: "Macro",
  25300. height: math.unit(4300.0, "inches")
  25301. },
  25302. {
  25303. name: "Megamacro",
  25304. height: math.unit(215000.0, "inches")
  25305. },
  25306. {
  25307. name: "Gigamacro",
  25308. height: math.unit(430000000.0, "inches")
  25309. }
  25310. ]
  25311. )
  25312. };
  25313. pokemonMakers["Poliwag"] = () => {
  25314. return makeCharacter(
  25315. "Poliwag",
  25316. "Pokemon",
  25317. {
  25318. "Poliwag": {
  25319. height: math.unit("24", "inches"),
  25320. weight: math.unit("27.3", "lbs"),
  25321. name: "Poliwag",
  25322. image: {
  25323. source: "./media/pokemon/Poliwag.svg"
  25324. },
  25325. rename: true
  25326. }
  25327. },
  25328. [
  25329. {
  25330. name: "Micro",
  25331. height: math.unit(2.4, "inches")
  25332. },
  25333. {
  25334. name: "Normal",
  25335. height: math.unit(24, "inches"),
  25336. default: true
  25337. },
  25338. {
  25339. name: "Macro",
  25340. height: math.unit(2400.0, "inches")
  25341. },
  25342. {
  25343. name: "Megamacro",
  25344. height: math.unit(120000.0, "inches")
  25345. },
  25346. {
  25347. name: "Gigamacro",
  25348. height: math.unit(240000000.0, "inches")
  25349. }
  25350. ]
  25351. )
  25352. };
  25353. pokemonMakers["Poliwhirl"] = () => {
  25354. return makeCharacter(
  25355. "Poliwhirl",
  25356. "Pokemon",
  25357. {
  25358. "Poliwhirl": {
  25359. height: math.unit("39", "inches"),
  25360. weight: math.unit("44.1", "lbs"),
  25361. name: "Poliwhirl",
  25362. image: {
  25363. source: "./media/pokemon/Poliwhirl.svg"
  25364. },
  25365. rename: true
  25366. }
  25367. },
  25368. [
  25369. {
  25370. name: "Micro",
  25371. height: math.unit(3.9, "inches")
  25372. },
  25373. {
  25374. name: "Normal",
  25375. height: math.unit(39, "inches"),
  25376. default: true
  25377. },
  25378. {
  25379. name: "Macro",
  25380. height: math.unit(3900.0, "inches")
  25381. },
  25382. {
  25383. name: "Megamacro",
  25384. height: math.unit(195000.0, "inches")
  25385. },
  25386. {
  25387. name: "Gigamacro",
  25388. height: math.unit(390000000.0, "inches")
  25389. }
  25390. ]
  25391. )
  25392. };
  25393. pokemonMakers["Poliwrath"] = () => {
  25394. return makeCharacter(
  25395. "Poliwrath",
  25396. "Pokemon",
  25397. {
  25398. "Poliwrath": {
  25399. height: math.unit("51", "inches"),
  25400. weight: math.unit("119.0", "lbs"),
  25401. name: "Poliwrath",
  25402. image: {
  25403. source: "./media/pokemon/Poliwrath.svg"
  25404. },
  25405. rename: true
  25406. }
  25407. },
  25408. [
  25409. {
  25410. name: "Micro",
  25411. height: math.unit(5.1, "inches")
  25412. },
  25413. {
  25414. name: "Normal",
  25415. height: math.unit(51, "inches"),
  25416. default: true
  25417. },
  25418. {
  25419. name: "Macro",
  25420. height: math.unit(5100.0, "inches")
  25421. },
  25422. {
  25423. name: "Megamacro",
  25424. height: math.unit(255000.0, "inches")
  25425. },
  25426. {
  25427. name: "Gigamacro",
  25428. height: math.unit(510000000.0, "inches")
  25429. }
  25430. ]
  25431. )
  25432. };
  25433. pokemonMakers["Polteageist"] = () => {
  25434. return makeCharacter(
  25435. "Polteageist",
  25436. "Pokemon",
  25437. {
  25438. "Polteageist": {
  25439. height: math.unit("8", "inches"),
  25440. weight: math.unit("0.9", "lbs"),
  25441. name: "Polteageist",
  25442. image: {
  25443. source: "./media/pokemon/Polteageist.svg"
  25444. },
  25445. rename: true
  25446. }
  25447. },
  25448. [
  25449. {
  25450. name: "Micro",
  25451. height: math.unit(0.8, "inches")
  25452. },
  25453. {
  25454. name: "Normal",
  25455. height: math.unit(8, "inches"),
  25456. default: true
  25457. },
  25458. {
  25459. name: "Macro",
  25460. height: math.unit(800.0, "inches")
  25461. },
  25462. {
  25463. name: "Megamacro",
  25464. height: math.unit(40000.0, "inches")
  25465. },
  25466. {
  25467. name: "Gigamacro",
  25468. height: math.unit(80000000.0, "inches")
  25469. }
  25470. ]
  25471. )
  25472. };
  25473. pokemonMakers["Ponyta"] = () => {
  25474. return makeCharacter(
  25475. "Ponyta",
  25476. "Pokemon",
  25477. {
  25478. "Galarian Form": {
  25479. height: math.unit("31", "inches"),
  25480. weight: math.unit("52.9", "lbs"),
  25481. name: "Galarian Form",
  25482. image: {
  25483. source: "./media/pokemon/Ponyta - Galarian Form.svg"
  25484. },
  25485. rename: true
  25486. },
  25487. "Ponyta": {
  25488. height: math.unit("39", "inches"),
  25489. weight: math.unit("66.1", "lbs"),
  25490. name: "Ponyta",
  25491. image: {
  25492. source: "./media/pokemon/Ponyta.svg"
  25493. },
  25494. rename: true
  25495. }
  25496. },
  25497. [
  25498. {
  25499. name: "Micro",
  25500. height: math.unit(3.1, "inches")
  25501. },
  25502. {
  25503. name: "Normal",
  25504. height: math.unit(31, "inches"),
  25505. default: true
  25506. },
  25507. {
  25508. name: "Macro",
  25509. height: math.unit(3100.0, "inches")
  25510. },
  25511. {
  25512. name: "Megamacro",
  25513. height: math.unit(155000.0, "inches")
  25514. },
  25515. {
  25516. name: "Gigamacro",
  25517. height: math.unit(310000000.0, "inches")
  25518. }
  25519. ]
  25520. )
  25521. };
  25522. pokemonMakers["Poochyena"] = () => {
  25523. return makeCharacter(
  25524. "Poochyena",
  25525. "Pokemon",
  25526. {
  25527. "Poochyena": {
  25528. height: math.unit("20", "inches"),
  25529. weight: math.unit("30.0", "lbs"),
  25530. name: "Poochyena",
  25531. image: {
  25532. source: "./media/pokemon/Poochyena.svg"
  25533. },
  25534. rename: true
  25535. }
  25536. },
  25537. [
  25538. {
  25539. name: "Micro",
  25540. height: math.unit(2.0, "inches")
  25541. },
  25542. {
  25543. name: "Normal",
  25544. height: math.unit(20, "inches"),
  25545. default: true
  25546. },
  25547. {
  25548. name: "Macro",
  25549. height: math.unit(2000.0, "inches")
  25550. },
  25551. {
  25552. name: "Megamacro",
  25553. height: math.unit(100000.0, "inches")
  25554. },
  25555. {
  25556. name: "Gigamacro",
  25557. height: math.unit(200000000.0, "inches")
  25558. }
  25559. ]
  25560. )
  25561. };
  25562. pokemonMakers["Popplio"] = () => {
  25563. return makeCharacter(
  25564. "Popplio",
  25565. "Pokemon",
  25566. {
  25567. "Popplio": {
  25568. height: math.unit("16", "inches"),
  25569. weight: math.unit("16.5", "lbs"),
  25570. name: "Popplio",
  25571. image: {
  25572. source: "./media/pokemon/Popplio.svg"
  25573. },
  25574. rename: true
  25575. }
  25576. },
  25577. [
  25578. {
  25579. name: "Micro",
  25580. height: math.unit(1.6, "inches")
  25581. },
  25582. {
  25583. name: "Normal",
  25584. height: math.unit(16, "inches"),
  25585. default: true
  25586. },
  25587. {
  25588. name: "Macro",
  25589. height: math.unit(1600.0, "inches")
  25590. },
  25591. {
  25592. name: "Megamacro",
  25593. height: math.unit(80000.0, "inches")
  25594. },
  25595. {
  25596. name: "Gigamacro",
  25597. height: math.unit(160000000.0, "inches")
  25598. }
  25599. ]
  25600. )
  25601. };
  25602. pokemonMakers["Porygon-Z"] = () => {
  25603. return makeCharacter(
  25604. "Porygon-Z",
  25605. "Pokemon",
  25606. {
  25607. "Porygon-Z": {
  25608. height: math.unit("35", "inches"),
  25609. weight: math.unit("75.0", "lbs"),
  25610. name: "Porygon-Z",
  25611. image: {
  25612. source: "./media/pokemon/Porygon-Z.svg"
  25613. },
  25614. rename: true
  25615. }
  25616. },
  25617. [
  25618. {
  25619. name: "Micro",
  25620. height: math.unit(3.5, "inches")
  25621. },
  25622. {
  25623. name: "Normal",
  25624. height: math.unit(35, "inches"),
  25625. default: true
  25626. },
  25627. {
  25628. name: "Macro",
  25629. height: math.unit(3500.0, "inches")
  25630. },
  25631. {
  25632. name: "Megamacro",
  25633. height: math.unit(175000.0, "inches")
  25634. },
  25635. {
  25636. name: "Gigamacro",
  25637. height: math.unit(350000000.0, "inches")
  25638. }
  25639. ]
  25640. )
  25641. };
  25642. pokemonMakers["Porygon"] = () => {
  25643. return makeCharacter(
  25644. "Porygon",
  25645. "Pokemon",
  25646. {
  25647. "Porygon": {
  25648. height: math.unit("31", "inches"),
  25649. weight: math.unit("80.5", "lbs"),
  25650. name: "Porygon",
  25651. image: {
  25652. source: "./media/pokemon/Porygon.svg"
  25653. },
  25654. rename: true
  25655. }
  25656. },
  25657. [
  25658. {
  25659. name: "Micro",
  25660. height: math.unit(3.1, "inches")
  25661. },
  25662. {
  25663. name: "Normal",
  25664. height: math.unit(31, "inches"),
  25665. default: true
  25666. },
  25667. {
  25668. name: "Macro",
  25669. height: math.unit(3100.0, "inches")
  25670. },
  25671. {
  25672. name: "Megamacro",
  25673. height: math.unit(155000.0, "inches")
  25674. },
  25675. {
  25676. name: "Gigamacro",
  25677. height: math.unit(310000000.0, "inches")
  25678. }
  25679. ]
  25680. )
  25681. };
  25682. pokemonMakers["Porygon2"] = () => {
  25683. return makeCharacter(
  25684. "Porygon2",
  25685. "Pokemon",
  25686. {
  25687. "Porygon2": {
  25688. height: math.unit("24", "inches"),
  25689. weight: math.unit("71.6", "lbs"),
  25690. name: "Porygon2",
  25691. image: {
  25692. source: "./media/pokemon/Porygon2.svg"
  25693. },
  25694. rename: true
  25695. }
  25696. },
  25697. [
  25698. {
  25699. name: "Micro",
  25700. height: math.unit(2.4, "inches")
  25701. },
  25702. {
  25703. name: "Normal",
  25704. height: math.unit(24, "inches"),
  25705. default: true
  25706. },
  25707. {
  25708. name: "Macro",
  25709. height: math.unit(2400.0, "inches")
  25710. },
  25711. {
  25712. name: "Megamacro",
  25713. height: math.unit(120000.0, "inches")
  25714. },
  25715. {
  25716. name: "Gigamacro",
  25717. height: math.unit(240000000.0, "inches")
  25718. }
  25719. ]
  25720. )
  25721. };
  25722. pokemonMakers["Primarina"] = () => {
  25723. return makeCharacter(
  25724. "Primarina",
  25725. "Pokemon",
  25726. {
  25727. "Primarina": {
  25728. height: math.unit("71", "inches"),
  25729. weight: math.unit("97.0", "lbs"),
  25730. name: "Primarina",
  25731. image: {
  25732. source: "./media/pokemon/Primarina.svg"
  25733. },
  25734. rename: true
  25735. }
  25736. },
  25737. [
  25738. {
  25739. name: "Micro",
  25740. height: math.unit(7.1, "inches")
  25741. },
  25742. {
  25743. name: "Normal",
  25744. height: math.unit(71, "inches"),
  25745. default: true
  25746. },
  25747. {
  25748. name: "Macro",
  25749. height: math.unit(7100.0, "inches")
  25750. },
  25751. {
  25752. name: "Megamacro",
  25753. height: math.unit(355000.0, "inches")
  25754. },
  25755. {
  25756. name: "Gigamacro",
  25757. height: math.unit(710000000.0, "inches")
  25758. }
  25759. ]
  25760. )
  25761. };
  25762. pokemonMakers["Primeape"] = () => {
  25763. return makeCharacter(
  25764. "Primeape",
  25765. "Pokemon",
  25766. {
  25767. "Primeape": {
  25768. height: math.unit("39", "inches"),
  25769. weight: math.unit("70.5", "lbs"),
  25770. name: "Primeape",
  25771. image: {
  25772. source: "./media/pokemon/Primeape.svg"
  25773. },
  25774. rename: true
  25775. }
  25776. },
  25777. [
  25778. {
  25779. name: "Micro",
  25780. height: math.unit(3.9, "inches")
  25781. },
  25782. {
  25783. name: "Normal",
  25784. height: math.unit(39, "inches"),
  25785. default: true
  25786. },
  25787. {
  25788. name: "Macro",
  25789. height: math.unit(3900.0, "inches")
  25790. },
  25791. {
  25792. name: "Megamacro",
  25793. height: math.unit(195000.0, "inches")
  25794. },
  25795. {
  25796. name: "Gigamacro",
  25797. height: math.unit(390000000.0, "inches")
  25798. }
  25799. ]
  25800. )
  25801. };
  25802. pokemonMakers["Prinplup"] = () => {
  25803. return makeCharacter(
  25804. "Prinplup",
  25805. "Pokemon",
  25806. {
  25807. "Prinplup": {
  25808. height: math.unit("31", "inches"),
  25809. weight: math.unit("50.7", "lbs"),
  25810. name: "Prinplup",
  25811. image: {
  25812. source: "./media/pokemon/Prinplup.svg"
  25813. },
  25814. rename: true
  25815. }
  25816. },
  25817. [
  25818. {
  25819. name: "Micro",
  25820. height: math.unit(3.1, "inches")
  25821. },
  25822. {
  25823. name: "Normal",
  25824. height: math.unit(31, "inches"),
  25825. default: true
  25826. },
  25827. {
  25828. name: "Macro",
  25829. height: math.unit(3100.0, "inches")
  25830. },
  25831. {
  25832. name: "Megamacro",
  25833. height: math.unit(155000.0, "inches")
  25834. },
  25835. {
  25836. name: "Gigamacro",
  25837. height: math.unit(310000000.0, "inches")
  25838. }
  25839. ]
  25840. )
  25841. };
  25842. pokemonMakers["Probopass"] = () => {
  25843. return makeCharacter(
  25844. "Probopass",
  25845. "Pokemon",
  25846. {
  25847. "Probopass": {
  25848. height: math.unit("55", "inches"),
  25849. weight: math.unit("749.6", "lbs"),
  25850. name: "Probopass",
  25851. image: {
  25852. source: "./media/pokemon/Probopass.svg"
  25853. },
  25854. rename: true
  25855. }
  25856. },
  25857. [
  25858. {
  25859. name: "Micro",
  25860. height: math.unit(5.5, "inches")
  25861. },
  25862. {
  25863. name: "Normal",
  25864. height: math.unit(55, "inches"),
  25865. default: true
  25866. },
  25867. {
  25868. name: "Macro",
  25869. height: math.unit(5500.0, "inches")
  25870. },
  25871. {
  25872. name: "Megamacro",
  25873. height: math.unit(275000.0, "inches")
  25874. },
  25875. {
  25876. name: "Gigamacro",
  25877. height: math.unit(550000000.0, "inches")
  25878. }
  25879. ]
  25880. )
  25881. };
  25882. pokemonMakers["Psyduck"] = () => {
  25883. return makeCharacter(
  25884. "Psyduck",
  25885. "Pokemon",
  25886. {
  25887. "Psyduck": {
  25888. height: math.unit("31", "inches"),
  25889. weight: math.unit("43.2", "lbs"),
  25890. name: "Psyduck",
  25891. image: {
  25892. source: "./media/pokemon/Psyduck.svg"
  25893. },
  25894. rename: true
  25895. }
  25896. },
  25897. [
  25898. {
  25899. name: "Micro",
  25900. height: math.unit(3.1, "inches")
  25901. },
  25902. {
  25903. name: "Normal",
  25904. height: math.unit(31, "inches"),
  25905. default: true
  25906. },
  25907. {
  25908. name: "Macro",
  25909. height: math.unit(3100.0, "inches")
  25910. },
  25911. {
  25912. name: "Megamacro",
  25913. height: math.unit(155000.0, "inches")
  25914. },
  25915. {
  25916. name: "Gigamacro",
  25917. height: math.unit(310000000.0, "inches")
  25918. }
  25919. ]
  25920. )
  25921. };
  25922. pokemonMakers["Pumpkaboo"] = () => {
  25923. return makeCharacter(
  25924. "Pumpkaboo",
  25925. "Pokemon",
  25926. {
  25927. "Large Size": {
  25928. height: math.unit("20", "inches"),
  25929. weight: math.unit("16.5", "lbs"),
  25930. name: "Large Size",
  25931. image: {
  25932. source: "./media/pokemon/Pumpkaboo - Large Size.svg"
  25933. },
  25934. rename: true
  25935. },
  25936. "Small Size": {
  25937. height: math.unit("12", "inches"),
  25938. weight: math.unit("7.7", "lbs"),
  25939. name: "Small Size",
  25940. image: {
  25941. source: "./media/pokemon/Pumpkaboo - Small Size.svg"
  25942. },
  25943. rename: true
  25944. },
  25945. "Super Size": {
  25946. height: math.unit("31", "inches"),
  25947. weight: math.unit("33.1", "lbs"),
  25948. name: "Super Size",
  25949. image: {
  25950. source: "./media/pokemon/Pumpkaboo - Super Size.svg"
  25951. },
  25952. rename: true
  25953. },
  25954. "Pumpkaboo": {
  25955. height: math.unit("16", "inches"),
  25956. weight: math.unit("11.0", "lbs"),
  25957. name: "Pumpkaboo",
  25958. image: {
  25959. source: "./media/pokemon/Pumpkaboo.svg"
  25960. },
  25961. rename: true
  25962. }
  25963. },
  25964. [
  25965. {
  25966. name: "Micro",
  25967. height: math.unit(2.0, "inches")
  25968. },
  25969. {
  25970. name: "Normal",
  25971. height: math.unit(20, "inches"),
  25972. default: true
  25973. },
  25974. {
  25975. name: "Macro",
  25976. height: math.unit(2000.0, "inches")
  25977. },
  25978. {
  25979. name: "Megamacro",
  25980. height: math.unit(100000.0, "inches")
  25981. },
  25982. {
  25983. name: "Gigamacro",
  25984. height: math.unit(200000000.0, "inches")
  25985. }
  25986. ]
  25987. )
  25988. };
  25989. pokemonMakers["Pupitar"] = () => {
  25990. return makeCharacter(
  25991. "Pupitar",
  25992. "Pokemon",
  25993. {
  25994. "Pupitar": {
  25995. height: math.unit("47", "inches"),
  25996. weight: math.unit("335.1", "lbs"),
  25997. name: "Pupitar",
  25998. image: {
  25999. source: "./media/pokemon/Pupitar.svg"
  26000. },
  26001. rename: true
  26002. }
  26003. },
  26004. [
  26005. {
  26006. name: "Micro",
  26007. height: math.unit(4.7, "inches")
  26008. },
  26009. {
  26010. name: "Normal",
  26011. height: math.unit(47, "inches"),
  26012. default: true
  26013. },
  26014. {
  26015. name: "Macro",
  26016. height: math.unit(4700.0, "inches")
  26017. },
  26018. {
  26019. name: "Megamacro",
  26020. height: math.unit(235000.0, "inches")
  26021. },
  26022. {
  26023. name: "Gigamacro",
  26024. height: math.unit(470000000.0, "inches")
  26025. }
  26026. ]
  26027. )
  26028. };
  26029. pokemonMakers["Purrloin"] = () => {
  26030. return makeCharacter(
  26031. "Purrloin",
  26032. "Pokemon",
  26033. {
  26034. "Purrloin": {
  26035. height: math.unit("16", "inches"),
  26036. weight: math.unit("22.3", "lbs"),
  26037. name: "Purrloin",
  26038. image: {
  26039. source: "./media/pokemon/Purrloin.svg"
  26040. },
  26041. rename: true
  26042. }
  26043. },
  26044. [
  26045. {
  26046. name: "Micro",
  26047. height: math.unit(1.6, "inches")
  26048. },
  26049. {
  26050. name: "Normal",
  26051. height: math.unit(16, "inches"),
  26052. default: true
  26053. },
  26054. {
  26055. name: "Macro",
  26056. height: math.unit(1600.0, "inches")
  26057. },
  26058. {
  26059. name: "Megamacro",
  26060. height: math.unit(80000.0, "inches")
  26061. },
  26062. {
  26063. name: "Gigamacro",
  26064. height: math.unit(160000000.0, "inches")
  26065. }
  26066. ]
  26067. )
  26068. };
  26069. pokemonMakers["Purugly"] = () => {
  26070. return makeCharacter(
  26071. "Purugly",
  26072. "Pokemon",
  26073. {
  26074. "Purugly": {
  26075. height: math.unit("39", "inches"),
  26076. weight: math.unit("96.6", "lbs"),
  26077. name: "Purugly",
  26078. image: {
  26079. source: "./media/pokemon/Purugly.svg"
  26080. },
  26081. rename: true
  26082. }
  26083. },
  26084. [
  26085. {
  26086. name: "Micro",
  26087. height: math.unit(3.9, "inches")
  26088. },
  26089. {
  26090. name: "Normal",
  26091. height: math.unit(39, "inches"),
  26092. default: true
  26093. },
  26094. {
  26095. name: "Macro",
  26096. height: math.unit(3900.0, "inches")
  26097. },
  26098. {
  26099. name: "Megamacro",
  26100. height: math.unit(195000.0, "inches")
  26101. },
  26102. {
  26103. name: "Gigamacro",
  26104. height: math.unit(390000000.0, "inches")
  26105. }
  26106. ]
  26107. )
  26108. };
  26109. pokemonMakers["Pyroar"] = () => {
  26110. return makeCharacter(
  26111. "Pyroar",
  26112. "Pokemon",
  26113. {
  26114. "Female": {
  26115. height: math.unit("59", "inches"),
  26116. weight: math.unit("179.7", "lbs"),
  26117. name: "Female",
  26118. image: {
  26119. source: "./media/pokemon/Pyroar - Female.svg"
  26120. },
  26121. rename: true
  26122. },
  26123. "Male": {
  26124. height: math.unit("59", "inches"),
  26125. weight: math.unit("179.7", "lbs"),
  26126. name: "Male",
  26127. image: {
  26128. source: "./media/pokemon/Pyroar - Male.svg"
  26129. },
  26130. rename: true
  26131. }
  26132. },
  26133. [
  26134. {
  26135. name: "Micro",
  26136. height: math.unit(5.9, "inches")
  26137. },
  26138. {
  26139. name: "Normal",
  26140. height: math.unit(59, "inches"),
  26141. default: true
  26142. },
  26143. {
  26144. name: "Macro",
  26145. height: math.unit(5900.0, "inches")
  26146. },
  26147. {
  26148. name: "Megamacro",
  26149. height: math.unit(295000.0, "inches")
  26150. },
  26151. {
  26152. name: "Gigamacro",
  26153. height: math.unit(590000000.0, "inches")
  26154. }
  26155. ]
  26156. )
  26157. };
  26158. pokemonMakers["Pyukumuku"] = () => {
  26159. return makeCharacter(
  26160. "Pyukumuku",
  26161. "Pokemon",
  26162. {
  26163. "Pyukumuku": {
  26164. height: math.unit("12", "inches"),
  26165. weight: math.unit("2.6", "lbs"),
  26166. name: "Pyukumuku",
  26167. image: {
  26168. source: "./media/pokemon/Pyukumuku.svg"
  26169. },
  26170. rename: true
  26171. }
  26172. },
  26173. [
  26174. {
  26175. name: "Micro",
  26176. height: math.unit(1.2, "inches")
  26177. },
  26178. {
  26179. name: "Normal",
  26180. height: math.unit(12, "inches"),
  26181. default: true
  26182. },
  26183. {
  26184. name: "Macro",
  26185. height: math.unit(1200.0, "inches")
  26186. },
  26187. {
  26188. name: "Megamacro",
  26189. height: math.unit(60000.0, "inches")
  26190. },
  26191. {
  26192. name: "Gigamacro",
  26193. height: math.unit(120000000.0, "inches")
  26194. }
  26195. ]
  26196. )
  26197. };
  26198. pokemonMakers["Quagsire"] = () => {
  26199. return makeCharacter(
  26200. "Quagsire",
  26201. "Pokemon",
  26202. {
  26203. "Quagsire": {
  26204. height: math.unit("55", "inches"),
  26205. weight: math.unit("165.3", "lbs"),
  26206. name: "Quagsire",
  26207. image: {
  26208. source: "./media/pokemon/Quagsire.svg"
  26209. },
  26210. rename: true
  26211. }
  26212. },
  26213. [
  26214. {
  26215. name: "Micro",
  26216. height: math.unit(5.5, "inches")
  26217. },
  26218. {
  26219. name: "Normal",
  26220. height: math.unit(55, "inches"),
  26221. default: true
  26222. },
  26223. {
  26224. name: "Macro",
  26225. height: math.unit(5500.0, "inches")
  26226. },
  26227. {
  26228. name: "Megamacro",
  26229. height: math.unit(275000.0, "inches")
  26230. },
  26231. {
  26232. name: "Gigamacro",
  26233. height: math.unit(550000000.0, "inches")
  26234. }
  26235. ]
  26236. )
  26237. };
  26238. pokemonMakers["Quilava"] = () => {
  26239. return makeCharacter(
  26240. "Quilava",
  26241. "Pokemon",
  26242. {
  26243. "Quilava": {
  26244. height: math.unit("35", "inches"),
  26245. weight: math.unit("41.9", "lbs"),
  26246. name: "Quilava",
  26247. image: {
  26248. source: "./media/pokemon/Quilava.svg"
  26249. },
  26250. rename: true
  26251. }
  26252. },
  26253. [
  26254. {
  26255. name: "Micro",
  26256. height: math.unit(3.5, "inches")
  26257. },
  26258. {
  26259. name: "Normal",
  26260. height: math.unit(35, "inches"),
  26261. default: true
  26262. },
  26263. {
  26264. name: "Macro",
  26265. height: math.unit(3500.0, "inches")
  26266. },
  26267. {
  26268. name: "Megamacro",
  26269. height: math.unit(175000.0, "inches")
  26270. },
  26271. {
  26272. name: "Gigamacro",
  26273. height: math.unit(350000000.0, "inches")
  26274. }
  26275. ]
  26276. )
  26277. };
  26278. pokemonMakers["Quilladin"] = () => {
  26279. return makeCharacter(
  26280. "Quilladin",
  26281. "Pokemon",
  26282. {
  26283. "Quilladin": {
  26284. height: math.unit("28", "inches"),
  26285. weight: math.unit("63.9", "lbs"),
  26286. name: "Quilladin",
  26287. image: {
  26288. source: "./media/pokemon/Quilladin.svg"
  26289. },
  26290. rename: true
  26291. }
  26292. },
  26293. [
  26294. {
  26295. name: "Micro",
  26296. height: math.unit(2.8, "inches")
  26297. },
  26298. {
  26299. name: "Normal",
  26300. height: math.unit(28, "inches"),
  26301. default: true
  26302. },
  26303. {
  26304. name: "Macro",
  26305. height: math.unit(2800.0, "inches")
  26306. },
  26307. {
  26308. name: "Megamacro",
  26309. height: math.unit(140000.0, "inches")
  26310. },
  26311. {
  26312. name: "Gigamacro",
  26313. height: math.unit(280000000.0, "inches")
  26314. }
  26315. ]
  26316. )
  26317. };
  26318. pokemonMakers["Qwilfish"] = () => {
  26319. return makeCharacter(
  26320. "Qwilfish",
  26321. "Pokemon",
  26322. {
  26323. "Qwilfish": {
  26324. height: math.unit("20", "inches"),
  26325. weight: math.unit("8.6", "lbs"),
  26326. name: "Qwilfish",
  26327. image: {
  26328. source: "./media/pokemon/Qwilfish.svg"
  26329. },
  26330. rename: true
  26331. }
  26332. },
  26333. [
  26334. {
  26335. name: "Micro",
  26336. height: math.unit(2.0, "inches")
  26337. },
  26338. {
  26339. name: "Normal",
  26340. height: math.unit(20, "inches"),
  26341. default: true
  26342. },
  26343. {
  26344. name: "Macro",
  26345. height: math.unit(2000.0, "inches")
  26346. },
  26347. {
  26348. name: "Megamacro",
  26349. height: math.unit(100000.0, "inches")
  26350. },
  26351. {
  26352. name: "Gigamacro",
  26353. height: math.unit(200000000.0, "inches")
  26354. }
  26355. ]
  26356. )
  26357. };
  26358. pokemonMakers["Raboot"] = () => {
  26359. return makeCharacter(
  26360. "Raboot",
  26361. "Pokemon",
  26362. {
  26363. "Raboot": {
  26364. height: math.unit("24", "inches"),
  26365. weight: math.unit("19.8", "lbs"),
  26366. name: "Raboot",
  26367. image: {
  26368. source: "./media/pokemon/Raboot.svg"
  26369. },
  26370. rename: true
  26371. }
  26372. },
  26373. [
  26374. {
  26375. name: "Micro",
  26376. height: math.unit(2.4, "inches")
  26377. },
  26378. {
  26379. name: "Normal",
  26380. height: math.unit(24, "inches"),
  26381. default: true
  26382. },
  26383. {
  26384. name: "Macro",
  26385. height: math.unit(2400.0, "inches")
  26386. },
  26387. {
  26388. name: "Megamacro",
  26389. height: math.unit(120000.0, "inches")
  26390. },
  26391. {
  26392. name: "Gigamacro",
  26393. height: math.unit(240000000.0, "inches")
  26394. }
  26395. ]
  26396. )
  26397. };
  26398. pokemonMakers["Raichu"] = () => {
  26399. return makeCharacter(
  26400. "Raichu",
  26401. "Pokemon",
  26402. {
  26403. "Alola Form": {
  26404. height: math.unit("28", "inches"),
  26405. weight: math.unit("46.3", "lbs"),
  26406. name: "Alola Form",
  26407. image: {
  26408. source: "./media/pokemon/Raichu - Alola Form.svg"
  26409. },
  26410. rename: true
  26411. },
  26412. "Raichu": {
  26413. height: math.unit("31", "inches"),
  26414. weight: math.unit("66.1", "lbs"),
  26415. name: "Raichu",
  26416. image: {
  26417. source: "./media/pokemon/Raichu.svg"
  26418. },
  26419. rename: true
  26420. }
  26421. },
  26422. [
  26423. {
  26424. name: "Micro",
  26425. height: math.unit(2.8, "inches")
  26426. },
  26427. {
  26428. name: "Normal",
  26429. height: math.unit(28, "inches"),
  26430. default: true
  26431. },
  26432. {
  26433. name: "Macro",
  26434. height: math.unit(2800.0, "inches")
  26435. },
  26436. {
  26437. name: "Megamacro",
  26438. height: math.unit(140000.0, "inches")
  26439. },
  26440. {
  26441. name: "Gigamacro",
  26442. height: math.unit(280000000.0, "inches")
  26443. }
  26444. ]
  26445. )
  26446. };
  26447. pokemonMakers["Raikou"] = () => {
  26448. return makeCharacter(
  26449. "Raikou",
  26450. "Pokemon",
  26451. {
  26452. "Raikou": {
  26453. height: math.unit("75", "inches"),
  26454. weight: math.unit("392.4", "lbs"),
  26455. name: "Raikou",
  26456. image: {
  26457. source: "./media/pokemon/Raikou.svg"
  26458. },
  26459. rename: true
  26460. }
  26461. },
  26462. [
  26463. {
  26464. name: "Micro",
  26465. height: math.unit(7.5, "inches")
  26466. },
  26467. {
  26468. name: "Normal",
  26469. height: math.unit(75, "inches"),
  26470. default: true
  26471. },
  26472. {
  26473. name: "Macro",
  26474. height: math.unit(7500.0, "inches")
  26475. },
  26476. {
  26477. name: "Megamacro",
  26478. height: math.unit(375000.0, "inches")
  26479. },
  26480. {
  26481. name: "Gigamacro",
  26482. height: math.unit(750000000.0, "inches")
  26483. }
  26484. ]
  26485. )
  26486. };
  26487. pokemonMakers["Ralts"] = () => {
  26488. return makeCharacter(
  26489. "Ralts",
  26490. "Pokemon",
  26491. {
  26492. "Ralts": {
  26493. height: math.unit("16", "inches"),
  26494. weight: math.unit("14.6", "lbs"),
  26495. name: "Ralts",
  26496. image: {
  26497. source: "./media/pokemon/Ralts.svg"
  26498. },
  26499. rename: true
  26500. }
  26501. },
  26502. [
  26503. {
  26504. name: "Micro",
  26505. height: math.unit(1.6, "inches")
  26506. },
  26507. {
  26508. name: "Normal",
  26509. height: math.unit(16, "inches"),
  26510. default: true
  26511. },
  26512. {
  26513. name: "Macro",
  26514. height: math.unit(1600.0, "inches")
  26515. },
  26516. {
  26517. name: "Megamacro",
  26518. height: math.unit(80000.0, "inches")
  26519. },
  26520. {
  26521. name: "Gigamacro",
  26522. height: math.unit(160000000.0, "inches")
  26523. }
  26524. ]
  26525. )
  26526. };
  26527. pokemonMakers["Rampardos"] = () => {
  26528. return makeCharacter(
  26529. "Rampardos",
  26530. "Pokemon",
  26531. {
  26532. "Rampardos": {
  26533. height: math.unit("63", "inches"),
  26534. weight: math.unit("226.0", "lbs"),
  26535. name: "Rampardos",
  26536. image: {
  26537. source: "./media/pokemon/Rampardos.svg"
  26538. },
  26539. rename: true
  26540. }
  26541. },
  26542. [
  26543. {
  26544. name: "Micro",
  26545. height: math.unit(6.3, "inches")
  26546. },
  26547. {
  26548. name: "Normal",
  26549. height: math.unit(63, "inches"),
  26550. default: true
  26551. },
  26552. {
  26553. name: "Macro",
  26554. height: math.unit(6300.0, "inches")
  26555. },
  26556. {
  26557. name: "Megamacro",
  26558. height: math.unit(315000.0, "inches")
  26559. },
  26560. {
  26561. name: "Gigamacro",
  26562. height: math.unit(630000000.0, "inches")
  26563. }
  26564. ]
  26565. )
  26566. };
  26567. pokemonMakers["Rapidash"] = () => {
  26568. return makeCharacter(
  26569. "Rapidash",
  26570. "Pokemon",
  26571. {
  26572. "Galarian Form": {
  26573. height: math.unit("67", "inches"),
  26574. weight: math.unit("176.4", "lbs"),
  26575. name: "Galarian Form",
  26576. image: {
  26577. source: "./media/pokemon/Rapidash - Galarian Form.svg"
  26578. },
  26579. rename: true
  26580. },
  26581. "Rapidash": {
  26582. height: math.unit("67", "inches"),
  26583. weight: math.unit("209.4", "lbs"),
  26584. name: "Rapidash",
  26585. image: {
  26586. source: "./media/pokemon/Rapidash.svg"
  26587. },
  26588. rename: true
  26589. }
  26590. },
  26591. [
  26592. {
  26593. name: "Micro",
  26594. height: math.unit(6.7, "inches")
  26595. },
  26596. {
  26597. name: "Normal",
  26598. height: math.unit(67, "inches"),
  26599. default: true
  26600. },
  26601. {
  26602. name: "Macro",
  26603. height: math.unit(6700.0, "inches")
  26604. },
  26605. {
  26606. name: "Megamacro",
  26607. height: math.unit(335000.0, "inches")
  26608. },
  26609. {
  26610. name: "Gigamacro",
  26611. height: math.unit(670000000.0, "inches")
  26612. }
  26613. ]
  26614. )
  26615. };
  26616. pokemonMakers["Raticate"] = () => {
  26617. return makeCharacter(
  26618. "Raticate",
  26619. "Pokemon",
  26620. {
  26621. "Alola Form": {
  26622. height: math.unit("28", "inches"),
  26623. weight: math.unit("56.2", "lbs"),
  26624. name: "Alola Form",
  26625. image: {
  26626. source: "./media/pokemon/Raticate - Alola Form.svg"
  26627. },
  26628. rename: true
  26629. },
  26630. "Raticate": {
  26631. height: math.unit("28", "inches"),
  26632. weight: math.unit("40.8", "lbs"),
  26633. name: "Raticate",
  26634. image: {
  26635. source: "./media/pokemon/Raticate.svg"
  26636. },
  26637. rename: true
  26638. }
  26639. },
  26640. [
  26641. {
  26642. name: "Micro",
  26643. height: math.unit(2.8, "inches")
  26644. },
  26645. {
  26646. name: "Normal",
  26647. height: math.unit(28, "inches"),
  26648. default: true
  26649. },
  26650. {
  26651. name: "Macro",
  26652. height: math.unit(2800.0, "inches")
  26653. },
  26654. {
  26655. name: "Megamacro",
  26656. height: math.unit(140000.0, "inches")
  26657. },
  26658. {
  26659. name: "Gigamacro",
  26660. height: math.unit(280000000.0, "inches")
  26661. }
  26662. ]
  26663. )
  26664. };
  26665. pokemonMakers["Rattata"] = () => {
  26666. return makeCharacter(
  26667. "Rattata",
  26668. "Pokemon",
  26669. {
  26670. "Alola Form": {
  26671. height: math.unit("12", "inches"),
  26672. weight: math.unit("8.4", "lbs"),
  26673. name: "Alola Form",
  26674. image: {
  26675. source: "./media/pokemon/Rattata - Alola Form.svg"
  26676. },
  26677. rename: true
  26678. },
  26679. "Rattata": {
  26680. height: math.unit("12", "inches"),
  26681. weight: math.unit("7.7", "lbs"),
  26682. name: "Rattata",
  26683. image: {
  26684. source: "./media/pokemon/Rattata.svg"
  26685. },
  26686. rename: true
  26687. }
  26688. },
  26689. [
  26690. {
  26691. name: "Micro",
  26692. height: math.unit(1.2, "inches")
  26693. },
  26694. {
  26695. name: "Normal",
  26696. height: math.unit(12, "inches"),
  26697. default: true
  26698. },
  26699. {
  26700. name: "Macro",
  26701. height: math.unit(1200.0, "inches")
  26702. },
  26703. {
  26704. name: "Megamacro",
  26705. height: math.unit(60000.0, "inches")
  26706. },
  26707. {
  26708. name: "Gigamacro",
  26709. height: math.unit(120000000.0, "inches")
  26710. }
  26711. ]
  26712. )
  26713. };
  26714. pokemonMakers["Regice"] = () => {
  26715. return makeCharacter(
  26716. "Regice",
  26717. "Pokemon",
  26718. {
  26719. "Regice": {
  26720. height: math.unit("71", "inches"),
  26721. weight: math.unit("385.8", "lbs"),
  26722. name: "Regice",
  26723. image: {
  26724. source: "./media/pokemon/Regice.svg"
  26725. },
  26726. rename: true
  26727. }
  26728. },
  26729. [
  26730. {
  26731. name: "Micro",
  26732. height: math.unit(7.1, "inches")
  26733. },
  26734. {
  26735. name: "Normal",
  26736. height: math.unit(71, "inches"),
  26737. default: true
  26738. },
  26739. {
  26740. name: "Macro",
  26741. height: math.unit(7100.0, "inches")
  26742. },
  26743. {
  26744. name: "Megamacro",
  26745. height: math.unit(355000.0, "inches")
  26746. },
  26747. {
  26748. name: "Gigamacro",
  26749. height: math.unit(710000000.0, "inches")
  26750. }
  26751. ]
  26752. )
  26753. };
  26754. pokemonMakers["Regigigas"] = () => {
  26755. return makeCharacter(
  26756. "Regigigas",
  26757. "Pokemon",
  26758. {
  26759. "Regigigas": {
  26760. height: math.unit("146", "inches"),
  26761. weight: math.unit("925.9", "lbs"),
  26762. name: "Regigigas",
  26763. image: {
  26764. source: "./media/pokemon/Regigigas.svg"
  26765. },
  26766. rename: true
  26767. }
  26768. },
  26769. [
  26770. {
  26771. name: "Micro",
  26772. height: math.unit(14.6, "inches")
  26773. },
  26774. {
  26775. name: "Normal",
  26776. height: math.unit(146, "inches"),
  26777. default: true
  26778. },
  26779. {
  26780. name: "Macro",
  26781. height: math.unit(14600.0, "inches")
  26782. },
  26783. {
  26784. name: "Megamacro",
  26785. height: math.unit(730000.0, "inches")
  26786. },
  26787. {
  26788. name: "Gigamacro",
  26789. height: math.unit(1460000000.0, "inches")
  26790. }
  26791. ]
  26792. )
  26793. };
  26794. pokemonMakers["Regirock"] = () => {
  26795. return makeCharacter(
  26796. "Regirock",
  26797. "Pokemon",
  26798. {
  26799. "Regirock": {
  26800. height: math.unit("67", "inches"),
  26801. weight: math.unit("507.1", "lbs"),
  26802. name: "Regirock",
  26803. image: {
  26804. source: "./media/pokemon/Regirock.svg"
  26805. },
  26806. rename: true
  26807. }
  26808. },
  26809. [
  26810. {
  26811. name: "Micro",
  26812. height: math.unit(6.7, "inches")
  26813. },
  26814. {
  26815. name: "Normal",
  26816. height: math.unit(67, "inches"),
  26817. default: true
  26818. },
  26819. {
  26820. name: "Macro",
  26821. height: math.unit(6700.0, "inches")
  26822. },
  26823. {
  26824. name: "Megamacro",
  26825. height: math.unit(335000.0, "inches")
  26826. },
  26827. {
  26828. name: "Gigamacro",
  26829. height: math.unit(670000000.0, "inches")
  26830. }
  26831. ]
  26832. )
  26833. };
  26834. pokemonMakers["Registeel"] = () => {
  26835. return makeCharacter(
  26836. "Registeel",
  26837. "Pokemon",
  26838. {
  26839. "Registeel": {
  26840. height: math.unit("75", "inches"),
  26841. weight: math.unit("451.9", "lbs"),
  26842. name: "Registeel",
  26843. image: {
  26844. source: "./media/pokemon/Registeel.svg"
  26845. },
  26846. rename: true
  26847. }
  26848. },
  26849. [
  26850. {
  26851. name: "Micro",
  26852. height: math.unit(7.5, "inches")
  26853. },
  26854. {
  26855. name: "Normal",
  26856. height: math.unit(75, "inches"),
  26857. default: true
  26858. },
  26859. {
  26860. name: "Macro",
  26861. height: math.unit(7500.0, "inches")
  26862. },
  26863. {
  26864. name: "Megamacro",
  26865. height: math.unit(375000.0, "inches")
  26866. },
  26867. {
  26868. name: "Gigamacro",
  26869. height: math.unit(750000000.0, "inches")
  26870. }
  26871. ]
  26872. )
  26873. };
  26874. pokemonMakers["Relicanth"] = () => {
  26875. return makeCharacter(
  26876. "Relicanth",
  26877. "Pokemon",
  26878. {
  26879. "Relicanth": {
  26880. height: math.unit("39", "inches"),
  26881. weight: math.unit("51.6", "lbs"),
  26882. name: "Relicanth",
  26883. image: {
  26884. source: "./media/pokemon/Relicanth.svg"
  26885. },
  26886. rename: true
  26887. }
  26888. },
  26889. [
  26890. {
  26891. name: "Micro",
  26892. height: math.unit(3.9, "inches")
  26893. },
  26894. {
  26895. name: "Normal",
  26896. height: math.unit(39, "inches"),
  26897. default: true
  26898. },
  26899. {
  26900. name: "Macro",
  26901. height: math.unit(3900.0, "inches")
  26902. },
  26903. {
  26904. name: "Megamacro",
  26905. height: math.unit(195000.0, "inches")
  26906. },
  26907. {
  26908. name: "Gigamacro",
  26909. height: math.unit(390000000.0, "inches")
  26910. }
  26911. ]
  26912. )
  26913. };
  26914. pokemonMakers["Remoraid"] = () => {
  26915. return makeCharacter(
  26916. "Remoraid",
  26917. "Pokemon",
  26918. {
  26919. "Remoraid": {
  26920. height: math.unit("24", "inches"),
  26921. weight: math.unit("26.5", "lbs"),
  26922. name: "Remoraid",
  26923. image: {
  26924. source: "./media/pokemon/Remoraid.svg"
  26925. },
  26926. rename: true
  26927. }
  26928. },
  26929. [
  26930. {
  26931. name: "Micro",
  26932. height: math.unit(2.4, "inches")
  26933. },
  26934. {
  26935. name: "Normal",
  26936. height: math.unit(24, "inches"),
  26937. default: true
  26938. },
  26939. {
  26940. name: "Macro",
  26941. height: math.unit(2400.0, "inches")
  26942. },
  26943. {
  26944. name: "Megamacro",
  26945. height: math.unit(120000.0, "inches")
  26946. },
  26947. {
  26948. name: "Gigamacro",
  26949. height: math.unit(240000000.0, "inches")
  26950. }
  26951. ]
  26952. )
  26953. };
  26954. pokemonMakers["Reshiram"] = () => {
  26955. return makeCharacter(
  26956. "Reshiram",
  26957. "Pokemon",
  26958. {
  26959. "Reshiram": {
  26960. height: math.unit("126", "inches"),
  26961. weight: math.unit("727.5", "lbs"),
  26962. name: "Reshiram",
  26963. image: {
  26964. source: "./media/pokemon/Reshiram.svg"
  26965. },
  26966. rename: true
  26967. }
  26968. },
  26969. [
  26970. {
  26971. name: "Micro",
  26972. height: math.unit(12.6, "inches")
  26973. },
  26974. {
  26975. name: "Normal",
  26976. height: math.unit(126, "inches"),
  26977. default: true
  26978. },
  26979. {
  26980. name: "Macro",
  26981. height: math.unit(12600.0, "inches")
  26982. },
  26983. {
  26984. name: "Megamacro",
  26985. height: math.unit(630000.0, "inches")
  26986. },
  26987. {
  26988. name: "Gigamacro",
  26989. height: math.unit(1260000000.0, "inches")
  26990. }
  26991. ]
  26992. )
  26993. };
  26994. pokemonMakers["Reuniclus"] = () => {
  26995. return makeCharacter(
  26996. "Reuniclus",
  26997. "Pokemon",
  26998. {
  26999. "Reuniclus": {
  27000. height: math.unit("39", "inches"),
  27001. weight: math.unit("44.3", "lbs"),
  27002. name: "Reuniclus",
  27003. image: {
  27004. source: "./media/pokemon/Reuniclus.svg"
  27005. },
  27006. rename: true
  27007. }
  27008. },
  27009. [
  27010. {
  27011. name: "Micro",
  27012. height: math.unit(3.9, "inches")
  27013. },
  27014. {
  27015. name: "Normal",
  27016. height: math.unit(39, "inches"),
  27017. default: true
  27018. },
  27019. {
  27020. name: "Macro",
  27021. height: math.unit(3900.0, "inches")
  27022. },
  27023. {
  27024. name: "Megamacro",
  27025. height: math.unit(195000.0, "inches")
  27026. },
  27027. {
  27028. name: "Gigamacro",
  27029. height: math.unit(390000000.0, "inches")
  27030. }
  27031. ]
  27032. )
  27033. };
  27034. pokemonMakers["Rhydon"] = () => {
  27035. return makeCharacter(
  27036. "Rhydon",
  27037. "Pokemon",
  27038. {
  27039. "Rhydon": {
  27040. height: math.unit("75", "inches"),
  27041. weight: math.unit("264.6", "lbs"),
  27042. name: "Rhydon",
  27043. image: {
  27044. source: "./media/pokemon/Rhydon.svg"
  27045. },
  27046. rename: true
  27047. }
  27048. },
  27049. [
  27050. {
  27051. name: "Micro",
  27052. height: math.unit(7.5, "inches")
  27053. },
  27054. {
  27055. name: "Normal",
  27056. height: math.unit(75, "inches"),
  27057. default: true
  27058. },
  27059. {
  27060. name: "Macro",
  27061. height: math.unit(7500.0, "inches")
  27062. },
  27063. {
  27064. name: "Megamacro",
  27065. height: math.unit(375000.0, "inches")
  27066. },
  27067. {
  27068. name: "Gigamacro",
  27069. height: math.unit(750000000.0, "inches")
  27070. }
  27071. ]
  27072. )
  27073. };
  27074. pokemonMakers["Rhyhorn"] = () => {
  27075. return makeCharacter(
  27076. "Rhyhorn",
  27077. "Pokemon",
  27078. {
  27079. "Rhyhorn": {
  27080. height: math.unit("39", "inches"),
  27081. weight: math.unit("253.5", "lbs"),
  27082. name: "Rhyhorn",
  27083. image: {
  27084. source: "./media/pokemon/Rhyhorn.svg"
  27085. },
  27086. rename: true
  27087. }
  27088. },
  27089. [
  27090. {
  27091. name: "Micro",
  27092. height: math.unit(3.9, "inches")
  27093. },
  27094. {
  27095. name: "Normal",
  27096. height: math.unit(39, "inches"),
  27097. default: true
  27098. },
  27099. {
  27100. name: "Macro",
  27101. height: math.unit(3900.0, "inches")
  27102. },
  27103. {
  27104. name: "Megamacro",
  27105. height: math.unit(195000.0, "inches")
  27106. },
  27107. {
  27108. name: "Gigamacro",
  27109. height: math.unit(390000000.0, "inches")
  27110. }
  27111. ]
  27112. )
  27113. };
  27114. pokemonMakers["Rhyperior"] = () => {
  27115. return makeCharacter(
  27116. "Rhyperior",
  27117. "Pokemon",
  27118. {
  27119. "Rhyperior": {
  27120. height: math.unit("94", "inches"),
  27121. weight: math.unit("623.5", "lbs"),
  27122. name: "Rhyperior",
  27123. image: {
  27124. source: "./media/pokemon/Rhyperior.svg"
  27125. },
  27126. rename: true
  27127. }
  27128. },
  27129. [
  27130. {
  27131. name: "Micro",
  27132. height: math.unit(9.4, "inches")
  27133. },
  27134. {
  27135. name: "Normal",
  27136. height: math.unit(94, "inches"),
  27137. default: true
  27138. },
  27139. {
  27140. name: "Macro",
  27141. height: math.unit(9400.0, "inches")
  27142. },
  27143. {
  27144. name: "Megamacro",
  27145. height: math.unit(470000.0, "inches")
  27146. },
  27147. {
  27148. name: "Gigamacro",
  27149. height: math.unit(940000000.0, "inches")
  27150. }
  27151. ]
  27152. )
  27153. };
  27154. pokemonMakers["Ribombee"] = () => {
  27155. return makeCharacter(
  27156. "Ribombee",
  27157. "Pokemon",
  27158. {
  27159. "Ribombee": {
  27160. height: math.unit("8", "inches"),
  27161. weight: math.unit("1.1", "lbs"),
  27162. name: "Ribombee",
  27163. image: {
  27164. source: "./media/pokemon/Ribombee.svg"
  27165. },
  27166. rename: true
  27167. }
  27168. },
  27169. [
  27170. {
  27171. name: "Micro",
  27172. height: math.unit(0.8, "inches")
  27173. },
  27174. {
  27175. name: "Normal",
  27176. height: math.unit(8, "inches"),
  27177. default: true
  27178. },
  27179. {
  27180. name: "Macro",
  27181. height: math.unit(800.0, "inches")
  27182. },
  27183. {
  27184. name: "Megamacro",
  27185. height: math.unit(40000.0, "inches")
  27186. },
  27187. {
  27188. name: "Gigamacro",
  27189. height: math.unit(80000000.0, "inches")
  27190. }
  27191. ]
  27192. )
  27193. };
  27194. pokemonMakers["Rillaboom"] = () => {
  27195. return makeCharacter(
  27196. "Rillaboom",
  27197. "Pokemon",
  27198. {
  27199. "Rillaboom": {
  27200. height: math.unit("83", "inches"),
  27201. weight: math.unit("198.4", "lbs"),
  27202. name: "Rillaboom",
  27203. image: {
  27204. source: "./media/pokemon/Rillaboom.svg"
  27205. },
  27206. rename: true
  27207. }
  27208. },
  27209. [
  27210. {
  27211. name: "Micro",
  27212. height: math.unit(8.3, "inches")
  27213. },
  27214. {
  27215. name: "Normal",
  27216. height: math.unit(83, "inches"),
  27217. default: true
  27218. },
  27219. {
  27220. name: "Macro",
  27221. height: math.unit(8300.0, "inches")
  27222. },
  27223. {
  27224. name: "Megamacro",
  27225. height: math.unit(415000.0, "inches")
  27226. },
  27227. {
  27228. name: "Gigamacro",
  27229. height: math.unit(830000000.0, "inches")
  27230. }
  27231. ]
  27232. )
  27233. };
  27234. pokemonMakers["Riolu"] = () => {
  27235. return makeCharacter(
  27236. "Riolu",
  27237. "Pokemon",
  27238. {
  27239. "Riolu": {
  27240. height: math.unit("28", "inches"),
  27241. weight: math.unit("44.5", "lbs"),
  27242. name: "Riolu",
  27243. image: {
  27244. source: "./media/pokemon/Riolu.svg"
  27245. },
  27246. rename: true
  27247. }
  27248. },
  27249. [
  27250. {
  27251. name: "Micro",
  27252. height: math.unit(2.8, "inches")
  27253. },
  27254. {
  27255. name: "Normal",
  27256. height: math.unit(28, "inches"),
  27257. default: true
  27258. },
  27259. {
  27260. name: "Macro",
  27261. height: math.unit(2800.0, "inches")
  27262. },
  27263. {
  27264. name: "Megamacro",
  27265. height: math.unit(140000.0, "inches")
  27266. },
  27267. {
  27268. name: "Gigamacro",
  27269. height: math.unit(280000000.0, "inches")
  27270. }
  27271. ]
  27272. )
  27273. };
  27274. pokemonMakers["Rockruff"] = () => {
  27275. return makeCharacter(
  27276. "Rockruff",
  27277. "Pokemon",
  27278. {
  27279. "Rockruff": {
  27280. height: math.unit("20", "inches"),
  27281. weight: math.unit("20.3", "lbs"),
  27282. name: "Rockruff",
  27283. image: {
  27284. source: "./media/pokemon/Rockruff.svg"
  27285. },
  27286. rename: true
  27287. }
  27288. },
  27289. [
  27290. {
  27291. name: "Micro",
  27292. height: math.unit(2.0, "inches")
  27293. },
  27294. {
  27295. name: "Normal",
  27296. height: math.unit(20, "inches"),
  27297. default: true
  27298. },
  27299. {
  27300. name: "Macro",
  27301. height: math.unit(2000.0, "inches")
  27302. },
  27303. {
  27304. name: "Megamacro",
  27305. height: math.unit(100000.0, "inches")
  27306. },
  27307. {
  27308. name: "Gigamacro",
  27309. height: math.unit(200000000.0, "inches")
  27310. }
  27311. ]
  27312. )
  27313. };
  27314. pokemonMakers["Roggenrola"] = () => {
  27315. return makeCharacter(
  27316. "Roggenrola",
  27317. "Pokemon",
  27318. {
  27319. "Roggenrola": {
  27320. height: math.unit("16", "inches"),
  27321. weight: math.unit("39.7", "lbs"),
  27322. name: "Roggenrola",
  27323. image: {
  27324. source: "./media/pokemon/Roggenrola.svg"
  27325. },
  27326. rename: true
  27327. }
  27328. },
  27329. [
  27330. {
  27331. name: "Micro",
  27332. height: math.unit(1.6, "inches")
  27333. },
  27334. {
  27335. name: "Normal",
  27336. height: math.unit(16, "inches"),
  27337. default: true
  27338. },
  27339. {
  27340. name: "Macro",
  27341. height: math.unit(1600.0, "inches")
  27342. },
  27343. {
  27344. name: "Megamacro",
  27345. height: math.unit(80000.0, "inches")
  27346. },
  27347. {
  27348. name: "Gigamacro",
  27349. height: math.unit(160000000.0, "inches")
  27350. }
  27351. ]
  27352. )
  27353. };
  27354. pokemonMakers["Rolycoly"] = () => {
  27355. return makeCharacter(
  27356. "Rolycoly",
  27357. "Pokemon",
  27358. {
  27359. "Rolycoly": {
  27360. height: math.unit("12", "inches"),
  27361. weight: math.unit("26.5", "lbs"),
  27362. name: "Rolycoly",
  27363. image: {
  27364. source: "./media/pokemon/Rolycoly.svg"
  27365. },
  27366. rename: true
  27367. }
  27368. },
  27369. [
  27370. {
  27371. name: "Micro",
  27372. height: math.unit(1.2, "inches")
  27373. },
  27374. {
  27375. name: "Normal",
  27376. height: math.unit(12, "inches"),
  27377. default: true
  27378. },
  27379. {
  27380. name: "Macro",
  27381. height: math.unit(1200.0, "inches")
  27382. },
  27383. {
  27384. name: "Megamacro",
  27385. height: math.unit(60000.0, "inches")
  27386. },
  27387. {
  27388. name: "Gigamacro",
  27389. height: math.unit(120000000.0, "inches")
  27390. }
  27391. ]
  27392. )
  27393. };
  27394. pokemonMakers["Rookidee"] = () => {
  27395. return makeCharacter(
  27396. "Rookidee",
  27397. "Pokemon",
  27398. {
  27399. "Rookidee": {
  27400. height: math.unit("8", "inches"),
  27401. weight: math.unit("4.0", "lbs"),
  27402. name: "Rookidee",
  27403. image: {
  27404. source: "./media/pokemon/Rookidee.svg"
  27405. },
  27406. rename: true
  27407. }
  27408. },
  27409. [
  27410. {
  27411. name: "Micro",
  27412. height: math.unit(0.8, "inches")
  27413. },
  27414. {
  27415. name: "Normal",
  27416. height: math.unit(8, "inches"),
  27417. default: true
  27418. },
  27419. {
  27420. name: "Macro",
  27421. height: math.unit(800.0, "inches")
  27422. },
  27423. {
  27424. name: "Megamacro",
  27425. height: math.unit(40000.0, "inches")
  27426. },
  27427. {
  27428. name: "Gigamacro",
  27429. height: math.unit(80000000.0, "inches")
  27430. }
  27431. ]
  27432. )
  27433. };
  27434. pokemonMakers["Roselia"] = () => {
  27435. return makeCharacter(
  27436. "Roselia",
  27437. "Pokemon",
  27438. {
  27439. "Roselia": {
  27440. height: math.unit("12", "inches"),
  27441. weight: math.unit("4.4", "lbs"),
  27442. name: "Roselia",
  27443. image: {
  27444. source: "./media/pokemon/Roselia.svg"
  27445. },
  27446. rename: true
  27447. }
  27448. },
  27449. [
  27450. {
  27451. name: "Micro",
  27452. height: math.unit(1.2, "inches")
  27453. },
  27454. {
  27455. name: "Normal",
  27456. height: math.unit(12, "inches"),
  27457. default: true
  27458. },
  27459. {
  27460. name: "Macro",
  27461. height: math.unit(1200.0, "inches")
  27462. },
  27463. {
  27464. name: "Megamacro",
  27465. height: math.unit(60000.0, "inches")
  27466. },
  27467. {
  27468. name: "Gigamacro",
  27469. height: math.unit(120000000.0, "inches")
  27470. }
  27471. ]
  27472. )
  27473. };
  27474. pokemonMakers["Roserade"] = () => {
  27475. return makeCharacter(
  27476. "Roserade",
  27477. "Pokemon",
  27478. {
  27479. "Roserade": {
  27480. height: math.unit("35", "inches"),
  27481. weight: math.unit("32.0", "lbs"),
  27482. name: "Roserade",
  27483. image: {
  27484. source: "./media/pokemon/Roserade.svg"
  27485. },
  27486. rename: true
  27487. }
  27488. },
  27489. [
  27490. {
  27491. name: "Micro",
  27492. height: math.unit(3.5, "inches")
  27493. },
  27494. {
  27495. name: "Normal",
  27496. height: math.unit(35, "inches"),
  27497. default: true
  27498. },
  27499. {
  27500. name: "Macro",
  27501. height: math.unit(3500.0, "inches")
  27502. },
  27503. {
  27504. name: "Megamacro",
  27505. height: math.unit(175000.0, "inches")
  27506. },
  27507. {
  27508. name: "Gigamacro",
  27509. height: math.unit(350000000.0, "inches")
  27510. }
  27511. ]
  27512. )
  27513. };
  27514. pokemonMakers["Rowlet"] = () => {
  27515. return makeCharacter(
  27516. "Rowlet",
  27517. "Pokemon",
  27518. {
  27519. "Rowlet": {
  27520. height: math.unit("12", "inches"),
  27521. weight: math.unit("3.3", "lbs"),
  27522. name: "Rowlet",
  27523. image: {
  27524. source: "./media/pokemon/Rowlet.svg"
  27525. },
  27526. rename: true
  27527. }
  27528. },
  27529. [
  27530. {
  27531. name: "Micro",
  27532. height: math.unit(1.2, "inches")
  27533. },
  27534. {
  27535. name: "Normal",
  27536. height: math.unit(12, "inches"),
  27537. default: true
  27538. },
  27539. {
  27540. name: "Macro",
  27541. height: math.unit(1200.0, "inches")
  27542. },
  27543. {
  27544. name: "Megamacro",
  27545. height: math.unit(60000.0, "inches")
  27546. },
  27547. {
  27548. name: "Gigamacro",
  27549. height: math.unit(120000000.0, "inches")
  27550. }
  27551. ]
  27552. )
  27553. };
  27554. pokemonMakers["Rufflet"] = () => {
  27555. return makeCharacter(
  27556. "Rufflet",
  27557. "Pokemon",
  27558. {
  27559. "Rufflet": {
  27560. height: math.unit("20", "inches"),
  27561. weight: math.unit("23.1", "lbs"),
  27562. name: "Rufflet",
  27563. image: {
  27564. source: "./media/pokemon/Rufflet.svg"
  27565. },
  27566. rename: true
  27567. }
  27568. },
  27569. [
  27570. {
  27571. name: "Micro",
  27572. height: math.unit(2.0, "inches")
  27573. },
  27574. {
  27575. name: "Normal",
  27576. height: math.unit(20, "inches"),
  27577. default: true
  27578. },
  27579. {
  27580. name: "Macro",
  27581. height: math.unit(2000.0, "inches")
  27582. },
  27583. {
  27584. name: "Megamacro",
  27585. height: math.unit(100000.0, "inches")
  27586. },
  27587. {
  27588. name: "Gigamacro",
  27589. height: math.unit(200000000.0, "inches")
  27590. }
  27591. ]
  27592. )
  27593. };
  27594. pokemonMakers["Runerigus"] = () => {
  27595. return makeCharacter(
  27596. "Runerigus",
  27597. "Pokemon",
  27598. {
  27599. "Runerigus": {
  27600. height: math.unit("63", "inches"),
  27601. weight: math.unit("146.8", "lbs"),
  27602. name: "Runerigus",
  27603. image: {
  27604. source: "./media/pokemon/Runerigus.svg"
  27605. },
  27606. rename: true
  27607. }
  27608. },
  27609. [
  27610. {
  27611. name: "Micro",
  27612. height: math.unit(6.3, "inches")
  27613. },
  27614. {
  27615. name: "Normal",
  27616. height: math.unit(63, "inches"),
  27617. default: true
  27618. },
  27619. {
  27620. name: "Macro",
  27621. height: math.unit(6300.0, "inches")
  27622. },
  27623. {
  27624. name: "Megamacro",
  27625. height: math.unit(315000.0, "inches")
  27626. },
  27627. {
  27628. name: "Gigamacro",
  27629. height: math.unit(630000000.0, "inches")
  27630. }
  27631. ]
  27632. )
  27633. };
  27634. pokemonMakers["Salandit"] = () => {
  27635. return makeCharacter(
  27636. "Salandit",
  27637. "Pokemon",
  27638. {
  27639. "Salandit": {
  27640. height: math.unit("24", "inches"),
  27641. weight: math.unit("10.6", "lbs"),
  27642. name: "Salandit",
  27643. image: {
  27644. source: "./media/pokemon/Salandit.svg"
  27645. },
  27646. rename: true
  27647. }
  27648. },
  27649. [
  27650. {
  27651. name: "Micro",
  27652. height: math.unit(2.4, "inches")
  27653. },
  27654. {
  27655. name: "Normal",
  27656. height: math.unit(24, "inches"),
  27657. default: true
  27658. },
  27659. {
  27660. name: "Macro",
  27661. height: math.unit(2400.0, "inches")
  27662. },
  27663. {
  27664. name: "Megamacro",
  27665. height: math.unit(120000.0, "inches")
  27666. },
  27667. {
  27668. name: "Gigamacro",
  27669. height: math.unit(240000000.0, "inches")
  27670. }
  27671. ]
  27672. )
  27673. };
  27674. pokemonMakers["Salazzle"] = () => {
  27675. return makeCharacter(
  27676. "Salazzle",
  27677. "Pokemon",
  27678. {
  27679. "Salazzle": {
  27680. height: math.unit("47", "inches"),
  27681. weight: math.unit("48.9", "lbs"),
  27682. name: "Salazzle",
  27683. image: {
  27684. source: "./media/pokemon/Salazzle.svg"
  27685. },
  27686. rename: true
  27687. }
  27688. },
  27689. [
  27690. {
  27691. name: "Micro",
  27692. height: math.unit(4.7, "inches")
  27693. },
  27694. {
  27695. name: "Normal",
  27696. height: math.unit(47, "inches"),
  27697. default: true
  27698. },
  27699. {
  27700. name: "Macro",
  27701. height: math.unit(4700.0, "inches")
  27702. },
  27703. {
  27704. name: "Megamacro",
  27705. height: math.unit(235000.0, "inches")
  27706. },
  27707. {
  27708. name: "Gigamacro",
  27709. height: math.unit(470000000.0, "inches")
  27710. }
  27711. ]
  27712. )
  27713. };
  27714. pokemonMakers["Samurott"] = () => {
  27715. return makeCharacter(
  27716. "Samurott",
  27717. "Pokemon",
  27718. {
  27719. "Samurott": {
  27720. height: math.unit("59", "inches"),
  27721. weight: math.unit("208.6", "lbs"),
  27722. name: "Samurott",
  27723. image: {
  27724. source: "./media/pokemon/Samurott.svg"
  27725. },
  27726. rename: true
  27727. }
  27728. },
  27729. [
  27730. {
  27731. name: "Micro",
  27732. height: math.unit(5.9, "inches")
  27733. },
  27734. {
  27735. name: "Normal",
  27736. height: math.unit(59, "inches"),
  27737. default: true
  27738. },
  27739. {
  27740. name: "Macro",
  27741. height: math.unit(5900.0, "inches")
  27742. },
  27743. {
  27744. name: "Megamacro",
  27745. height: math.unit(295000.0, "inches")
  27746. },
  27747. {
  27748. name: "Gigamacro",
  27749. height: math.unit(590000000.0, "inches")
  27750. }
  27751. ]
  27752. )
  27753. };
  27754. pokemonMakers["Sandile"] = () => {
  27755. return makeCharacter(
  27756. "Sandile",
  27757. "Pokemon",
  27758. {
  27759. "Sandile": {
  27760. height: math.unit("28", "inches"),
  27761. weight: math.unit("33.5", "lbs"),
  27762. name: "Sandile",
  27763. image: {
  27764. source: "./media/pokemon/Sandile.svg"
  27765. },
  27766. rename: true
  27767. }
  27768. },
  27769. [
  27770. {
  27771. name: "Micro",
  27772. height: math.unit(2.8, "inches")
  27773. },
  27774. {
  27775. name: "Normal",
  27776. height: math.unit(28, "inches"),
  27777. default: true
  27778. },
  27779. {
  27780. name: "Macro",
  27781. height: math.unit(2800.0, "inches")
  27782. },
  27783. {
  27784. name: "Megamacro",
  27785. height: math.unit(140000.0, "inches")
  27786. },
  27787. {
  27788. name: "Gigamacro",
  27789. height: math.unit(280000000.0, "inches")
  27790. }
  27791. ]
  27792. )
  27793. };
  27794. pokemonMakers["Sandshrew"] = () => {
  27795. return makeCharacter(
  27796. "Sandshrew",
  27797. "Pokemon",
  27798. {
  27799. "Alola Form": {
  27800. height: math.unit("28", "inches"),
  27801. weight: math.unit("88.2", "lbs"),
  27802. name: "Alola Form",
  27803. image: {
  27804. source: "./media/pokemon/Sandshrew - Alola Form.svg"
  27805. },
  27806. rename: true
  27807. },
  27808. "Sandshrew": {
  27809. height: math.unit("24", "inches"),
  27810. weight: math.unit("26.5", "lbs"),
  27811. name: "Sandshrew",
  27812. image: {
  27813. source: "./media/pokemon/Sandshrew.svg"
  27814. },
  27815. rename: true
  27816. }
  27817. },
  27818. [
  27819. {
  27820. name: "Micro",
  27821. height: math.unit(2.8, "inches")
  27822. },
  27823. {
  27824. name: "Normal",
  27825. height: math.unit(28, "inches"),
  27826. default: true
  27827. },
  27828. {
  27829. name: "Macro",
  27830. height: math.unit(2800.0, "inches")
  27831. },
  27832. {
  27833. name: "Megamacro",
  27834. height: math.unit(140000.0, "inches")
  27835. },
  27836. {
  27837. name: "Gigamacro",
  27838. height: math.unit(280000000.0, "inches")
  27839. }
  27840. ]
  27841. )
  27842. };
  27843. pokemonMakers["Sandslash"] = () => {
  27844. return makeCharacter(
  27845. "Sandslash",
  27846. "Pokemon",
  27847. {
  27848. "Alola Form": {
  27849. height: math.unit("47", "inches"),
  27850. weight: math.unit("121.3", "lbs"),
  27851. name: "Alola Form",
  27852. image: {
  27853. source: "./media/pokemon/Sandslash - Alola Form.svg"
  27854. },
  27855. rename: true
  27856. },
  27857. "Sandslash": {
  27858. height: math.unit("39", "inches"),
  27859. weight: math.unit("65.0", "lbs"),
  27860. name: "Sandslash",
  27861. image: {
  27862. source: "./media/pokemon/Sandslash.svg"
  27863. },
  27864. rename: true
  27865. }
  27866. },
  27867. [
  27868. {
  27869. name: "Micro",
  27870. height: math.unit(4.7, "inches")
  27871. },
  27872. {
  27873. name: "Normal",
  27874. height: math.unit(47, "inches"),
  27875. default: true
  27876. },
  27877. {
  27878. name: "Macro",
  27879. height: math.unit(4700.0, "inches")
  27880. },
  27881. {
  27882. name: "Megamacro",
  27883. height: math.unit(235000.0, "inches")
  27884. },
  27885. {
  27886. name: "Gigamacro",
  27887. height: math.unit(470000000.0, "inches")
  27888. }
  27889. ]
  27890. )
  27891. };
  27892. pokemonMakers["Sandygast"] = () => {
  27893. return makeCharacter(
  27894. "Sandygast",
  27895. "Pokemon",
  27896. {
  27897. "Sandygast": {
  27898. height: math.unit("20", "inches"),
  27899. weight: math.unit("154.3", "lbs"),
  27900. name: "Sandygast",
  27901. image: {
  27902. source: "./media/pokemon/Sandygast.svg"
  27903. },
  27904. rename: true
  27905. }
  27906. },
  27907. [
  27908. {
  27909. name: "Micro",
  27910. height: math.unit(2.0, "inches")
  27911. },
  27912. {
  27913. name: "Normal",
  27914. height: math.unit(20, "inches"),
  27915. default: true
  27916. },
  27917. {
  27918. name: "Macro",
  27919. height: math.unit(2000.0, "inches")
  27920. },
  27921. {
  27922. name: "Megamacro",
  27923. height: math.unit(100000.0, "inches")
  27924. },
  27925. {
  27926. name: "Gigamacro",
  27927. height: math.unit(200000000.0, "inches")
  27928. }
  27929. ]
  27930. )
  27931. };
  27932. pokemonMakers["Sawk"] = () => {
  27933. return makeCharacter(
  27934. "Sawk",
  27935. "Pokemon",
  27936. {
  27937. "Sawk": {
  27938. height: math.unit("55", "inches"),
  27939. weight: math.unit("112.4", "lbs"),
  27940. name: "Sawk",
  27941. image: {
  27942. source: "./media/pokemon/Sawk.svg"
  27943. },
  27944. rename: true
  27945. }
  27946. },
  27947. [
  27948. {
  27949. name: "Micro",
  27950. height: math.unit(5.5, "inches")
  27951. },
  27952. {
  27953. name: "Normal",
  27954. height: math.unit(55, "inches"),
  27955. default: true
  27956. },
  27957. {
  27958. name: "Macro",
  27959. height: math.unit(5500.0, "inches")
  27960. },
  27961. {
  27962. name: "Megamacro",
  27963. height: math.unit(275000.0, "inches")
  27964. },
  27965. {
  27966. name: "Gigamacro",
  27967. height: math.unit(550000000.0, "inches")
  27968. }
  27969. ]
  27970. )
  27971. };
  27972. pokemonMakers["Sawsbuck"] = () => {
  27973. return makeCharacter(
  27974. "Sawsbuck",
  27975. "Pokemon",
  27976. {
  27977. "Autumn Form": {
  27978. height: math.unit("75", "inches"),
  27979. weight: math.unit("203.9", "lbs"),
  27980. name: "Autumn Form",
  27981. image: {
  27982. source: "./media/pokemon/Sawsbuck - Autumn Form.svg"
  27983. },
  27984. rename: true
  27985. },
  27986. "Spring Form": {
  27987. height: math.unit("75", "inches"),
  27988. weight: math.unit("203.9", "lbs"),
  27989. name: "Spring Form",
  27990. image: {
  27991. source: "./media/pokemon/Sawsbuck - Spring Form.svg"
  27992. },
  27993. rename: true
  27994. },
  27995. "Summer Form": {
  27996. height: math.unit("75", "inches"),
  27997. weight: math.unit("203.9", "lbs"),
  27998. name: "Summer Form",
  27999. image: {
  28000. source: "./media/pokemon/Sawsbuck - Summer Form.svg"
  28001. },
  28002. rename: true
  28003. },
  28004. "Winter Form": {
  28005. height: math.unit("75", "inches"),
  28006. weight: math.unit("203.9", "lbs"),
  28007. name: "Winter Form",
  28008. image: {
  28009. source: "./media/pokemon/Sawsbuck - Winter Form.svg"
  28010. },
  28011. rename: true
  28012. }
  28013. },
  28014. [
  28015. {
  28016. name: "Micro",
  28017. height: math.unit(7.5, "inches")
  28018. },
  28019. {
  28020. name: "Normal",
  28021. height: math.unit(75, "inches"),
  28022. default: true
  28023. },
  28024. {
  28025. name: "Macro",
  28026. height: math.unit(7500.0, "inches")
  28027. },
  28028. {
  28029. name: "Megamacro",
  28030. height: math.unit(375000.0, "inches")
  28031. },
  28032. {
  28033. name: "Gigamacro",
  28034. height: math.unit(750000000.0, "inches")
  28035. }
  28036. ]
  28037. )
  28038. };
  28039. pokemonMakers["Scatterbug"] = () => {
  28040. return makeCharacter(
  28041. "Scatterbug",
  28042. "Pokemon",
  28043. {
  28044. "Scatterbug": {
  28045. height: math.unit("12", "inches"),
  28046. weight: math.unit("5.5", "lbs"),
  28047. name: "Scatterbug",
  28048. image: {
  28049. source: "./media/pokemon/Scatterbug.svg"
  28050. },
  28051. rename: true
  28052. }
  28053. },
  28054. [
  28055. {
  28056. name: "Micro",
  28057. height: math.unit(1.2, "inches")
  28058. },
  28059. {
  28060. name: "Normal",
  28061. height: math.unit(12, "inches"),
  28062. default: true
  28063. },
  28064. {
  28065. name: "Macro",
  28066. height: math.unit(1200.0, "inches")
  28067. },
  28068. {
  28069. name: "Megamacro",
  28070. height: math.unit(60000.0, "inches")
  28071. },
  28072. {
  28073. name: "Gigamacro",
  28074. height: math.unit(120000000.0, "inches")
  28075. }
  28076. ]
  28077. )
  28078. };
  28079. pokemonMakers["Scolipede"] = () => {
  28080. return makeCharacter(
  28081. "Scolipede",
  28082. "Pokemon",
  28083. {
  28084. "Scolipede": {
  28085. height: math.unit("98", "inches"),
  28086. weight: math.unit("442.0", "lbs"),
  28087. name: "Scolipede",
  28088. image: {
  28089. source: "./media/pokemon/Scolipede.svg"
  28090. },
  28091. rename: true
  28092. }
  28093. },
  28094. [
  28095. {
  28096. name: "Micro",
  28097. height: math.unit(9.8, "inches")
  28098. },
  28099. {
  28100. name: "Normal",
  28101. height: math.unit(98, "inches"),
  28102. default: true
  28103. },
  28104. {
  28105. name: "Macro",
  28106. height: math.unit(9800.0, "inches")
  28107. },
  28108. {
  28109. name: "Megamacro",
  28110. height: math.unit(490000.0, "inches")
  28111. },
  28112. {
  28113. name: "Gigamacro",
  28114. height: math.unit(980000000.0, "inches")
  28115. }
  28116. ]
  28117. )
  28118. };
  28119. pokemonMakers["Scorbunny"] = () => {
  28120. return makeCharacter(
  28121. "Scorbunny",
  28122. "Pokemon",
  28123. {
  28124. "Scorbunny": {
  28125. height: math.unit("12", "inches"),
  28126. weight: math.unit("9.9", "lbs"),
  28127. name: "Scorbunny",
  28128. image: {
  28129. source: "./media/pokemon/Scorbunny.svg"
  28130. },
  28131. rename: true
  28132. }
  28133. },
  28134. [
  28135. {
  28136. name: "Micro",
  28137. height: math.unit(1.2, "inches")
  28138. },
  28139. {
  28140. name: "Normal",
  28141. height: math.unit(12, "inches"),
  28142. default: true
  28143. },
  28144. {
  28145. name: "Macro",
  28146. height: math.unit(1200.0, "inches")
  28147. },
  28148. {
  28149. name: "Megamacro",
  28150. height: math.unit(60000.0, "inches")
  28151. },
  28152. {
  28153. name: "Gigamacro",
  28154. height: math.unit(120000000.0, "inches")
  28155. }
  28156. ]
  28157. )
  28158. };
  28159. pokemonMakers["Scrafty"] = () => {
  28160. return makeCharacter(
  28161. "Scrafty",
  28162. "Pokemon",
  28163. {
  28164. "Scrafty": {
  28165. height: math.unit("43", "inches"),
  28166. weight: math.unit("66.1", "lbs"),
  28167. name: "Scrafty",
  28168. image: {
  28169. source: "./media/pokemon/Scrafty.svg"
  28170. },
  28171. rename: true
  28172. }
  28173. },
  28174. [
  28175. {
  28176. name: "Micro",
  28177. height: math.unit(4.3, "inches")
  28178. },
  28179. {
  28180. name: "Normal",
  28181. height: math.unit(43, "inches"),
  28182. default: true
  28183. },
  28184. {
  28185. name: "Macro",
  28186. height: math.unit(4300.0, "inches")
  28187. },
  28188. {
  28189. name: "Megamacro",
  28190. height: math.unit(215000.0, "inches")
  28191. },
  28192. {
  28193. name: "Gigamacro",
  28194. height: math.unit(430000000.0, "inches")
  28195. }
  28196. ]
  28197. )
  28198. };
  28199. pokemonMakers["Scraggy"] = () => {
  28200. return makeCharacter(
  28201. "Scraggy",
  28202. "Pokemon",
  28203. {
  28204. "Scraggy": {
  28205. height: math.unit("24", "inches"),
  28206. weight: math.unit("26.0", "lbs"),
  28207. name: "Scraggy",
  28208. image: {
  28209. source: "./media/pokemon/Scraggy.svg"
  28210. },
  28211. rename: true
  28212. }
  28213. },
  28214. [
  28215. {
  28216. name: "Micro",
  28217. height: math.unit(2.4, "inches")
  28218. },
  28219. {
  28220. name: "Normal",
  28221. height: math.unit(24, "inches"),
  28222. default: true
  28223. },
  28224. {
  28225. name: "Macro",
  28226. height: math.unit(2400.0, "inches")
  28227. },
  28228. {
  28229. name: "Megamacro",
  28230. height: math.unit(120000.0, "inches")
  28231. },
  28232. {
  28233. name: "Gigamacro",
  28234. height: math.unit(240000000.0, "inches")
  28235. }
  28236. ]
  28237. )
  28238. };
  28239. pokemonMakers["Scyther"] = () => {
  28240. return makeCharacter(
  28241. "Scyther",
  28242. "Pokemon",
  28243. {
  28244. "Scyther": {
  28245. height: math.unit("59", "inches"),
  28246. weight: math.unit("123.5", "lbs"),
  28247. name: "Scyther",
  28248. image: {
  28249. source: "./media/pokemon/Scyther.svg"
  28250. },
  28251. rename: true
  28252. }
  28253. },
  28254. [
  28255. {
  28256. name: "Micro",
  28257. height: math.unit(5.9, "inches")
  28258. },
  28259. {
  28260. name: "Normal",
  28261. height: math.unit(59, "inches"),
  28262. default: true
  28263. },
  28264. {
  28265. name: "Macro",
  28266. height: math.unit(5900.0, "inches")
  28267. },
  28268. {
  28269. name: "Megamacro",
  28270. height: math.unit(295000.0, "inches")
  28271. },
  28272. {
  28273. name: "Gigamacro",
  28274. height: math.unit(590000000.0, "inches")
  28275. }
  28276. ]
  28277. )
  28278. };
  28279. pokemonMakers["Seadra"] = () => {
  28280. return makeCharacter(
  28281. "Seadra",
  28282. "Pokemon",
  28283. {
  28284. "Seadra": {
  28285. height: math.unit("47", "inches"),
  28286. weight: math.unit("55.1", "lbs"),
  28287. name: "Seadra",
  28288. image: {
  28289. source: "./media/pokemon/Seadra.svg"
  28290. },
  28291. rename: true
  28292. }
  28293. },
  28294. [
  28295. {
  28296. name: "Micro",
  28297. height: math.unit(4.7, "inches")
  28298. },
  28299. {
  28300. name: "Normal",
  28301. height: math.unit(47, "inches"),
  28302. default: true
  28303. },
  28304. {
  28305. name: "Macro",
  28306. height: math.unit(4700.0, "inches")
  28307. },
  28308. {
  28309. name: "Megamacro",
  28310. height: math.unit(235000.0, "inches")
  28311. },
  28312. {
  28313. name: "Gigamacro",
  28314. height: math.unit(470000000.0, "inches")
  28315. }
  28316. ]
  28317. )
  28318. };
  28319. pokemonMakers["Seaking"] = () => {
  28320. return makeCharacter(
  28321. "Seaking",
  28322. "Pokemon",
  28323. {
  28324. "Seaking": {
  28325. height: math.unit("51", "inches"),
  28326. weight: math.unit("86.0", "lbs"),
  28327. name: "Seaking",
  28328. image: {
  28329. source: "./media/pokemon/Seaking.svg"
  28330. },
  28331. rename: true
  28332. }
  28333. },
  28334. [
  28335. {
  28336. name: "Micro",
  28337. height: math.unit(5.1, "inches")
  28338. },
  28339. {
  28340. name: "Normal",
  28341. height: math.unit(51, "inches"),
  28342. default: true
  28343. },
  28344. {
  28345. name: "Macro",
  28346. height: math.unit(5100.0, "inches")
  28347. },
  28348. {
  28349. name: "Megamacro",
  28350. height: math.unit(255000.0, "inches")
  28351. },
  28352. {
  28353. name: "Gigamacro",
  28354. height: math.unit(510000000.0, "inches")
  28355. }
  28356. ]
  28357. )
  28358. };
  28359. pokemonMakers["Sealeo"] = () => {
  28360. return makeCharacter(
  28361. "Sealeo",
  28362. "Pokemon",
  28363. {
  28364. "Sealeo": {
  28365. height: math.unit("43", "inches"),
  28366. weight: math.unit("193.1", "lbs"),
  28367. name: "Sealeo",
  28368. image: {
  28369. source: "./media/pokemon/Sealeo.svg"
  28370. },
  28371. rename: true
  28372. }
  28373. },
  28374. [
  28375. {
  28376. name: "Micro",
  28377. height: math.unit(4.3, "inches")
  28378. },
  28379. {
  28380. name: "Normal",
  28381. height: math.unit(43, "inches"),
  28382. default: true
  28383. },
  28384. {
  28385. name: "Macro",
  28386. height: math.unit(4300.0, "inches")
  28387. },
  28388. {
  28389. name: "Megamacro",
  28390. height: math.unit(215000.0, "inches")
  28391. },
  28392. {
  28393. name: "Gigamacro",
  28394. height: math.unit(430000000.0, "inches")
  28395. }
  28396. ]
  28397. )
  28398. };
  28399. pokemonMakers["Seedot"] = () => {
  28400. return makeCharacter(
  28401. "Seedot",
  28402. "Pokemon",
  28403. {
  28404. "Seedot": {
  28405. height: math.unit("20", "inches"),
  28406. weight: math.unit("8.8", "lbs"),
  28407. name: "Seedot",
  28408. image: {
  28409. source: "./media/pokemon/Seedot.svg"
  28410. },
  28411. rename: true
  28412. }
  28413. },
  28414. [
  28415. {
  28416. name: "Micro",
  28417. height: math.unit(2.0, "inches")
  28418. },
  28419. {
  28420. name: "Normal",
  28421. height: math.unit(20, "inches"),
  28422. default: true
  28423. },
  28424. {
  28425. name: "Macro",
  28426. height: math.unit(2000.0, "inches")
  28427. },
  28428. {
  28429. name: "Megamacro",
  28430. height: math.unit(100000.0, "inches")
  28431. },
  28432. {
  28433. name: "Gigamacro",
  28434. height: math.unit(200000000.0, "inches")
  28435. }
  28436. ]
  28437. )
  28438. };
  28439. pokemonMakers["Seel"] = () => {
  28440. return makeCharacter(
  28441. "Seel",
  28442. "Pokemon",
  28443. {
  28444. "Seel": {
  28445. height: math.unit("43", "inches"),
  28446. weight: math.unit("198.4", "lbs"),
  28447. name: "Seel",
  28448. image: {
  28449. source: "./media/pokemon/Seel.svg"
  28450. },
  28451. rename: true
  28452. }
  28453. },
  28454. [
  28455. {
  28456. name: "Micro",
  28457. height: math.unit(4.3, "inches")
  28458. },
  28459. {
  28460. name: "Normal",
  28461. height: math.unit(43, "inches"),
  28462. default: true
  28463. },
  28464. {
  28465. name: "Macro",
  28466. height: math.unit(4300.0, "inches")
  28467. },
  28468. {
  28469. name: "Megamacro",
  28470. height: math.unit(215000.0, "inches")
  28471. },
  28472. {
  28473. name: "Gigamacro",
  28474. height: math.unit(430000000.0, "inches")
  28475. }
  28476. ]
  28477. )
  28478. };
  28479. pokemonMakers["Seismitoad"] = () => {
  28480. return makeCharacter(
  28481. "Seismitoad",
  28482. "Pokemon",
  28483. {
  28484. "Seismitoad": {
  28485. height: math.unit("59", "inches"),
  28486. weight: math.unit("136.7", "lbs"),
  28487. name: "Seismitoad",
  28488. image: {
  28489. source: "./media/pokemon/Seismitoad.svg"
  28490. },
  28491. rename: true
  28492. }
  28493. },
  28494. [
  28495. {
  28496. name: "Micro",
  28497. height: math.unit(5.9, "inches")
  28498. },
  28499. {
  28500. name: "Normal",
  28501. height: math.unit(59, "inches"),
  28502. default: true
  28503. },
  28504. {
  28505. name: "Macro",
  28506. height: math.unit(5900.0, "inches")
  28507. },
  28508. {
  28509. name: "Megamacro",
  28510. height: math.unit(295000.0, "inches")
  28511. },
  28512. {
  28513. name: "Gigamacro",
  28514. height: math.unit(590000000.0, "inches")
  28515. }
  28516. ]
  28517. )
  28518. };
  28519. pokemonMakers["Sentret"] = () => {
  28520. return makeCharacter(
  28521. "Sentret",
  28522. "Pokemon",
  28523. {
  28524. "Sentret": {
  28525. height: math.unit("31", "inches"),
  28526. weight: math.unit("13.2", "lbs"),
  28527. name: "Sentret",
  28528. image: {
  28529. source: "./media/pokemon/Sentret.svg"
  28530. },
  28531. rename: true
  28532. }
  28533. },
  28534. [
  28535. {
  28536. name: "Micro",
  28537. height: math.unit(3.1, "inches")
  28538. },
  28539. {
  28540. name: "Normal",
  28541. height: math.unit(31, "inches"),
  28542. default: true
  28543. },
  28544. {
  28545. name: "Macro",
  28546. height: math.unit(3100.0, "inches")
  28547. },
  28548. {
  28549. name: "Megamacro",
  28550. height: math.unit(155000.0, "inches")
  28551. },
  28552. {
  28553. name: "Gigamacro",
  28554. height: math.unit(310000000.0, "inches")
  28555. }
  28556. ]
  28557. )
  28558. };
  28559. pokemonMakers["Serperior"] = () => {
  28560. return makeCharacter(
  28561. "Serperior",
  28562. "Pokemon",
  28563. {
  28564. "Serperior": {
  28565. height: math.unit("130", "inches"),
  28566. weight: math.unit("138.9", "lbs"),
  28567. name: "Serperior",
  28568. image: {
  28569. source: "./media/pokemon/Serperior.svg"
  28570. },
  28571. rename: true
  28572. }
  28573. },
  28574. [
  28575. {
  28576. name: "Micro",
  28577. height: math.unit(13.0, "inches")
  28578. },
  28579. {
  28580. name: "Normal",
  28581. height: math.unit(130, "inches"),
  28582. default: true
  28583. },
  28584. {
  28585. name: "Macro",
  28586. height: math.unit(13000.0, "inches")
  28587. },
  28588. {
  28589. name: "Megamacro",
  28590. height: math.unit(650000.0, "inches")
  28591. },
  28592. {
  28593. name: "Gigamacro",
  28594. height: math.unit(1300000000.0, "inches")
  28595. }
  28596. ]
  28597. )
  28598. };
  28599. pokemonMakers["Servine"] = () => {
  28600. return makeCharacter(
  28601. "Servine",
  28602. "Pokemon",
  28603. {
  28604. "Servine": {
  28605. height: math.unit("31", "inches"),
  28606. weight: math.unit("35.3", "lbs"),
  28607. name: "Servine",
  28608. image: {
  28609. source: "./media/pokemon/Servine.svg"
  28610. },
  28611. rename: true
  28612. }
  28613. },
  28614. [
  28615. {
  28616. name: "Micro",
  28617. height: math.unit(3.1, "inches")
  28618. },
  28619. {
  28620. name: "Normal",
  28621. height: math.unit(31, "inches"),
  28622. default: true
  28623. },
  28624. {
  28625. name: "Macro",
  28626. height: math.unit(3100.0, "inches")
  28627. },
  28628. {
  28629. name: "Megamacro",
  28630. height: math.unit(155000.0, "inches")
  28631. },
  28632. {
  28633. name: "Gigamacro",
  28634. height: math.unit(310000000.0, "inches")
  28635. }
  28636. ]
  28637. )
  28638. };
  28639. pokemonMakers["Seviper"] = () => {
  28640. return makeCharacter(
  28641. "Seviper",
  28642. "Pokemon",
  28643. {
  28644. "Seviper": {
  28645. height: math.unit("106", "inches"),
  28646. weight: math.unit("115.7", "lbs"),
  28647. name: "Seviper",
  28648. image: {
  28649. source: "./media/pokemon/Seviper.svg"
  28650. },
  28651. rename: true
  28652. }
  28653. },
  28654. [
  28655. {
  28656. name: "Micro",
  28657. height: math.unit(10.6, "inches")
  28658. },
  28659. {
  28660. name: "Normal",
  28661. height: math.unit(106, "inches"),
  28662. default: true
  28663. },
  28664. {
  28665. name: "Macro",
  28666. height: math.unit(10600.0, "inches")
  28667. },
  28668. {
  28669. name: "Megamacro",
  28670. height: math.unit(530000.0, "inches")
  28671. },
  28672. {
  28673. name: "Gigamacro",
  28674. height: math.unit(1060000000.0, "inches")
  28675. }
  28676. ]
  28677. )
  28678. };
  28679. pokemonMakers["Sewaddle"] = () => {
  28680. return makeCharacter(
  28681. "Sewaddle",
  28682. "Pokemon",
  28683. {
  28684. "Sewaddle": {
  28685. height: math.unit("12", "inches"),
  28686. weight: math.unit("5.5", "lbs"),
  28687. name: "Sewaddle",
  28688. image: {
  28689. source: "./media/pokemon/Sewaddle.svg"
  28690. },
  28691. rename: true
  28692. }
  28693. },
  28694. [
  28695. {
  28696. name: "Micro",
  28697. height: math.unit(1.2, "inches")
  28698. },
  28699. {
  28700. name: "Normal",
  28701. height: math.unit(12, "inches"),
  28702. default: true
  28703. },
  28704. {
  28705. name: "Macro",
  28706. height: math.unit(1200.0, "inches")
  28707. },
  28708. {
  28709. name: "Megamacro",
  28710. height: math.unit(60000.0, "inches")
  28711. },
  28712. {
  28713. name: "Gigamacro",
  28714. height: math.unit(120000000.0, "inches")
  28715. }
  28716. ]
  28717. )
  28718. };
  28719. pokemonMakers["Shaymin"] = () => {
  28720. return makeCharacter(
  28721. "Shaymin",
  28722. "Pokemon",
  28723. {
  28724. "Land Forme": {
  28725. height: math.unit("8", "inches"),
  28726. weight: math.unit("4.6", "lbs"),
  28727. name: "Land Forme",
  28728. image: {
  28729. source: "./media/pokemon/Shaymin - Land Forme.svg"
  28730. },
  28731. rename: true
  28732. },
  28733. "Sky Forme": {
  28734. height: math.unit("16", "inches"),
  28735. weight: math.unit("11.5", "lbs"),
  28736. name: "Sky Forme",
  28737. image: {
  28738. source: "./media/pokemon/Shaymin - Sky Forme.svg"
  28739. },
  28740. rename: true
  28741. }
  28742. },
  28743. [
  28744. {
  28745. name: "Micro",
  28746. height: math.unit(0.8, "inches")
  28747. },
  28748. {
  28749. name: "Normal",
  28750. height: math.unit(8, "inches"),
  28751. default: true
  28752. },
  28753. {
  28754. name: "Macro",
  28755. height: math.unit(800.0, "inches")
  28756. },
  28757. {
  28758. name: "Megamacro",
  28759. height: math.unit(40000.0, "inches")
  28760. },
  28761. {
  28762. name: "Gigamacro",
  28763. height: math.unit(80000000.0, "inches")
  28764. }
  28765. ]
  28766. )
  28767. };
  28768. pokemonMakers["Shedinja"] = () => {
  28769. return makeCharacter(
  28770. "Shedinja",
  28771. "Pokemon",
  28772. {
  28773. "Shedinja": {
  28774. height: math.unit("31", "inches"),
  28775. weight: math.unit("2.6", "lbs"),
  28776. name: "Shedinja",
  28777. image: {
  28778. source: "./media/pokemon/Shedinja.svg"
  28779. },
  28780. rename: true
  28781. }
  28782. },
  28783. [
  28784. {
  28785. name: "Micro",
  28786. height: math.unit(3.1, "inches")
  28787. },
  28788. {
  28789. name: "Normal",
  28790. height: math.unit(31, "inches"),
  28791. default: true
  28792. },
  28793. {
  28794. name: "Macro",
  28795. height: math.unit(3100.0, "inches")
  28796. },
  28797. {
  28798. name: "Megamacro",
  28799. height: math.unit(155000.0, "inches")
  28800. },
  28801. {
  28802. name: "Gigamacro",
  28803. height: math.unit(310000000.0, "inches")
  28804. }
  28805. ]
  28806. )
  28807. };
  28808. pokemonMakers["Shelgon"] = () => {
  28809. return makeCharacter(
  28810. "Shelgon",
  28811. "Pokemon",
  28812. {
  28813. "Shelgon": {
  28814. height: math.unit("43", "inches"),
  28815. weight: math.unit("243.6", "lbs"),
  28816. name: "Shelgon",
  28817. image: {
  28818. source: "./media/pokemon/Shelgon.svg"
  28819. },
  28820. rename: true
  28821. }
  28822. },
  28823. [
  28824. {
  28825. name: "Micro",
  28826. height: math.unit(4.3, "inches")
  28827. },
  28828. {
  28829. name: "Normal",
  28830. height: math.unit(43, "inches"),
  28831. default: true
  28832. },
  28833. {
  28834. name: "Macro",
  28835. height: math.unit(4300.0, "inches")
  28836. },
  28837. {
  28838. name: "Megamacro",
  28839. height: math.unit(215000.0, "inches")
  28840. },
  28841. {
  28842. name: "Gigamacro",
  28843. height: math.unit(430000000.0, "inches")
  28844. }
  28845. ]
  28846. )
  28847. };
  28848. pokemonMakers["Shellder"] = () => {
  28849. return makeCharacter(
  28850. "Shellder",
  28851. "Pokemon",
  28852. {
  28853. "Shellder": {
  28854. height: math.unit("12", "inches"),
  28855. weight: math.unit("8.8", "lbs"),
  28856. name: "Shellder",
  28857. image: {
  28858. source: "./media/pokemon/Shellder.svg"
  28859. },
  28860. rename: true
  28861. }
  28862. },
  28863. [
  28864. {
  28865. name: "Micro",
  28866. height: math.unit(1.2, "inches")
  28867. },
  28868. {
  28869. name: "Normal",
  28870. height: math.unit(12, "inches"),
  28871. default: true
  28872. },
  28873. {
  28874. name: "Macro",
  28875. height: math.unit(1200.0, "inches")
  28876. },
  28877. {
  28878. name: "Megamacro",
  28879. height: math.unit(60000.0, "inches")
  28880. },
  28881. {
  28882. name: "Gigamacro",
  28883. height: math.unit(120000000.0, "inches")
  28884. }
  28885. ]
  28886. )
  28887. };
  28888. pokemonMakers["Shellos"] = () => {
  28889. return makeCharacter(
  28890. "Shellos",
  28891. "Pokemon",
  28892. {
  28893. "East Sea": {
  28894. height: math.unit("12", "inches"),
  28895. weight: math.unit("13.9", "lbs"),
  28896. name: "East Sea",
  28897. image: {
  28898. source: "./media/pokemon/Shellos - East Sea.svg"
  28899. },
  28900. rename: true
  28901. },
  28902. "West Sea": {
  28903. height: math.unit("12", "inches"),
  28904. weight: math.unit("13.9", "lbs"),
  28905. name: "West Sea",
  28906. image: {
  28907. source: "./media/pokemon/Shellos - West Sea.svg"
  28908. },
  28909. rename: true
  28910. }
  28911. },
  28912. [
  28913. {
  28914. name: "Micro",
  28915. height: math.unit(1.2, "inches")
  28916. },
  28917. {
  28918. name: "Normal",
  28919. height: math.unit(12, "inches"),
  28920. default: true
  28921. },
  28922. {
  28923. name: "Macro",
  28924. height: math.unit(1200.0, "inches")
  28925. },
  28926. {
  28927. name: "Megamacro",
  28928. height: math.unit(60000.0, "inches")
  28929. },
  28930. {
  28931. name: "Gigamacro",
  28932. height: math.unit(120000000.0, "inches")
  28933. }
  28934. ]
  28935. )
  28936. };
  28937. pokemonMakers["Shelmet"] = () => {
  28938. return makeCharacter(
  28939. "Shelmet",
  28940. "Pokemon",
  28941. {
  28942. "Shelmet": {
  28943. height: math.unit("16", "inches"),
  28944. weight: math.unit("17.0", "lbs"),
  28945. name: "Shelmet",
  28946. image: {
  28947. source: "./media/pokemon/Shelmet.svg"
  28948. },
  28949. rename: true
  28950. }
  28951. },
  28952. [
  28953. {
  28954. name: "Micro",
  28955. height: math.unit(1.6, "inches")
  28956. },
  28957. {
  28958. name: "Normal",
  28959. height: math.unit(16, "inches"),
  28960. default: true
  28961. },
  28962. {
  28963. name: "Macro",
  28964. height: math.unit(1600.0, "inches")
  28965. },
  28966. {
  28967. name: "Megamacro",
  28968. height: math.unit(80000.0, "inches")
  28969. },
  28970. {
  28971. name: "Gigamacro",
  28972. height: math.unit(160000000.0, "inches")
  28973. }
  28974. ]
  28975. )
  28976. };
  28977. pokemonMakers["Shieldon"] = () => {
  28978. return makeCharacter(
  28979. "Shieldon",
  28980. "Pokemon",
  28981. {
  28982. "Shieldon": {
  28983. height: math.unit("20", "inches"),
  28984. weight: math.unit("125.7", "lbs"),
  28985. name: "Shieldon",
  28986. image: {
  28987. source: "./media/pokemon/Shieldon.svg"
  28988. },
  28989. rename: true
  28990. }
  28991. },
  28992. [
  28993. {
  28994. name: "Micro",
  28995. height: math.unit(2.0, "inches")
  28996. },
  28997. {
  28998. name: "Normal",
  28999. height: math.unit(20, "inches"),
  29000. default: true
  29001. },
  29002. {
  29003. name: "Macro",
  29004. height: math.unit(2000.0, "inches")
  29005. },
  29006. {
  29007. name: "Megamacro",
  29008. height: math.unit(100000.0, "inches")
  29009. },
  29010. {
  29011. name: "Gigamacro",
  29012. height: math.unit(200000000.0, "inches")
  29013. }
  29014. ]
  29015. )
  29016. };
  29017. pokemonMakers["Shiftry"] = () => {
  29018. return makeCharacter(
  29019. "Shiftry",
  29020. "Pokemon",
  29021. {
  29022. "Shiftry": {
  29023. height: math.unit("51", "inches"),
  29024. weight: math.unit("131.4", "lbs"),
  29025. name: "Shiftry",
  29026. image: {
  29027. source: "./media/pokemon/Shiftry.svg"
  29028. },
  29029. rename: true
  29030. }
  29031. },
  29032. [
  29033. {
  29034. name: "Micro",
  29035. height: math.unit(5.1, "inches")
  29036. },
  29037. {
  29038. name: "Normal",
  29039. height: math.unit(51, "inches"),
  29040. default: true
  29041. },
  29042. {
  29043. name: "Macro",
  29044. height: math.unit(5100.0, "inches")
  29045. },
  29046. {
  29047. name: "Megamacro",
  29048. height: math.unit(255000.0, "inches")
  29049. },
  29050. {
  29051. name: "Gigamacro",
  29052. height: math.unit(510000000.0, "inches")
  29053. }
  29054. ]
  29055. )
  29056. };
  29057. pokemonMakers["Shiinotic"] = () => {
  29058. return makeCharacter(
  29059. "Shiinotic",
  29060. "Pokemon",
  29061. {
  29062. "Shiinotic": {
  29063. height: math.unit("39", "inches"),
  29064. weight: math.unit("25.4", "lbs"),
  29065. name: "Shiinotic",
  29066. image: {
  29067. source: "./media/pokemon/Shiinotic.svg"
  29068. },
  29069. rename: true
  29070. }
  29071. },
  29072. [
  29073. {
  29074. name: "Micro",
  29075. height: math.unit(3.9, "inches")
  29076. },
  29077. {
  29078. name: "Normal",
  29079. height: math.unit(39, "inches"),
  29080. default: true
  29081. },
  29082. {
  29083. name: "Macro",
  29084. height: math.unit(3900.0, "inches")
  29085. },
  29086. {
  29087. name: "Megamacro",
  29088. height: math.unit(195000.0, "inches")
  29089. },
  29090. {
  29091. name: "Gigamacro",
  29092. height: math.unit(390000000.0, "inches")
  29093. }
  29094. ]
  29095. )
  29096. };
  29097. pokemonMakers["Shinx"] = () => {
  29098. return makeCharacter(
  29099. "Shinx",
  29100. "Pokemon",
  29101. {
  29102. "Shinx": {
  29103. height: math.unit("20", "inches"),
  29104. weight: math.unit("20.9", "lbs"),
  29105. name: "Shinx",
  29106. image: {
  29107. source: "./media/pokemon/Shinx.svg"
  29108. },
  29109. rename: true
  29110. }
  29111. },
  29112. [
  29113. {
  29114. name: "Micro",
  29115. height: math.unit(2.0, "inches")
  29116. },
  29117. {
  29118. name: "Normal",
  29119. height: math.unit(20, "inches"),
  29120. default: true
  29121. },
  29122. {
  29123. name: "Macro",
  29124. height: math.unit(2000.0, "inches")
  29125. },
  29126. {
  29127. name: "Megamacro",
  29128. height: math.unit(100000.0, "inches")
  29129. },
  29130. {
  29131. name: "Gigamacro",
  29132. height: math.unit(200000000.0, "inches")
  29133. }
  29134. ]
  29135. )
  29136. };
  29137. pokemonMakers["Shroomish"] = () => {
  29138. return makeCharacter(
  29139. "Shroomish",
  29140. "Pokemon",
  29141. {
  29142. "Shroomish": {
  29143. height: math.unit("16", "inches"),
  29144. weight: math.unit("9.9", "lbs"),
  29145. name: "Shroomish",
  29146. image: {
  29147. source: "./media/pokemon/Shroomish.svg"
  29148. },
  29149. rename: true
  29150. }
  29151. },
  29152. [
  29153. {
  29154. name: "Micro",
  29155. height: math.unit(1.6, "inches")
  29156. },
  29157. {
  29158. name: "Normal",
  29159. height: math.unit(16, "inches"),
  29160. default: true
  29161. },
  29162. {
  29163. name: "Macro",
  29164. height: math.unit(1600.0, "inches")
  29165. },
  29166. {
  29167. name: "Megamacro",
  29168. height: math.unit(80000.0, "inches")
  29169. },
  29170. {
  29171. name: "Gigamacro",
  29172. height: math.unit(160000000.0, "inches")
  29173. }
  29174. ]
  29175. )
  29176. };
  29177. pokemonMakers["Shuckle"] = () => {
  29178. return makeCharacter(
  29179. "Shuckle",
  29180. "Pokemon",
  29181. {
  29182. "Shuckle": {
  29183. height: math.unit("24", "inches"),
  29184. weight: math.unit("45.2", "lbs"),
  29185. name: "Shuckle",
  29186. image: {
  29187. source: "./media/pokemon/Shuckle.svg"
  29188. },
  29189. rename: true
  29190. }
  29191. },
  29192. [
  29193. {
  29194. name: "Micro",
  29195. height: math.unit(2.4, "inches")
  29196. },
  29197. {
  29198. name: "Normal",
  29199. height: math.unit(24, "inches"),
  29200. default: true
  29201. },
  29202. {
  29203. name: "Macro",
  29204. height: math.unit(2400.0, "inches")
  29205. },
  29206. {
  29207. name: "Megamacro",
  29208. height: math.unit(120000.0, "inches")
  29209. },
  29210. {
  29211. name: "Gigamacro",
  29212. height: math.unit(240000000.0, "inches")
  29213. }
  29214. ]
  29215. )
  29216. };
  29217. pokemonMakers["Shuppet"] = () => {
  29218. return makeCharacter(
  29219. "Shuppet",
  29220. "Pokemon",
  29221. {
  29222. "Shuppet": {
  29223. height: math.unit("24", "inches"),
  29224. weight: math.unit("5.1", "lbs"),
  29225. name: "Shuppet",
  29226. image: {
  29227. source: "./media/pokemon/Shuppet.svg"
  29228. },
  29229. rename: true
  29230. }
  29231. },
  29232. [
  29233. {
  29234. name: "Micro",
  29235. height: math.unit(2.4, "inches")
  29236. },
  29237. {
  29238. name: "Normal",
  29239. height: math.unit(24, "inches"),
  29240. default: true
  29241. },
  29242. {
  29243. name: "Macro",
  29244. height: math.unit(2400.0, "inches")
  29245. },
  29246. {
  29247. name: "Megamacro",
  29248. height: math.unit(120000.0, "inches")
  29249. },
  29250. {
  29251. name: "Gigamacro",
  29252. height: math.unit(240000000.0, "inches")
  29253. }
  29254. ]
  29255. )
  29256. };
  29257. pokemonMakers["Sigilyph"] = () => {
  29258. return makeCharacter(
  29259. "Sigilyph",
  29260. "Pokemon",
  29261. {
  29262. "Sigilyph": {
  29263. height: math.unit("55", "inches"),
  29264. weight: math.unit("30.9", "lbs"),
  29265. name: "Sigilyph",
  29266. image: {
  29267. source: "./media/pokemon/Sigilyph.svg"
  29268. },
  29269. rename: true
  29270. }
  29271. },
  29272. [
  29273. {
  29274. name: "Micro",
  29275. height: math.unit(5.5, "inches")
  29276. },
  29277. {
  29278. name: "Normal",
  29279. height: math.unit(55, "inches"),
  29280. default: true
  29281. },
  29282. {
  29283. name: "Macro",
  29284. height: math.unit(5500.0, "inches")
  29285. },
  29286. {
  29287. name: "Megamacro",
  29288. height: math.unit(275000.0, "inches")
  29289. },
  29290. {
  29291. name: "Gigamacro",
  29292. height: math.unit(550000000.0, "inches")
  29293. }
  29294. ]
  29295. )
  29296. };
  29297. pokemonMakers["Silcoon"] = () => {
  29298. return makeCharacter(
  29299. "Silcoon",
  29300. "Pokemon",
  29301. {
  29302. "Silcoon": {
  29303. height: math.unit("24", "inches"),
  29304. weight: math.unit("22.0", "lbs"),
  29305. name: "Silcoon",
  29306. image: {
  29307. source: "./media/pokemon/Silcoon.svg"
  29308. },
  29309. rename: true
  29310. }
  29311. },
  29312. [
  29313. {
  29314. name: "Micro",
  29315. height: math.unit(2.4, "inches")
  29316. },
  29317. {
  29318. name: "Normal",
  29319. height: math.unit(24, "inches"),
  29320. default: true
  29321. },
  29322. {
  29323. name: "Macro",
  29324. height: math.unit(2400.0, "inches")
  29325. },
  29326. {
  29327. name: "Megamacro",
  29328. height: math.unit(120000.0, "inches")
  29329. },
  29330. {
  29331. name: "Gigamacro",
  29332. height: math.unit(240000000.0, "inches")
  29333. }
  29334. ]
  29335. )
  29336. };
  29337. pokemonMakers["Silicobra"] = () => {
  29338. return makeCharacter(
  29339. "Silicobra",
  29340. "Pokemon",
  29341. {
  29342. "Silicobra": {
  29343. height: math.unit("87", "inches"),
  29344. weight: math.unit("16.8", "lbs"),
  29345. name: "Silicobra",
  29346. image: {
  29347. source: "./media/pokemon/Silicobra.svg"
  29348. },
  29349. rename: true
  29350. }
  29351. },
  29352. [
  29353. {
  29354. name: "Micro",
  29355. height: math.unit(8.7, "inches")
  29356. },
  29357. {
  29358. name: "Normal",
  29359. height: math.unit(87, "inches"),
  29360. default: true
  29361. },
  29362. {
  29363. name: "Macro",
  29364. height: math.unit(8700.0, "inches")
  29365. },
  29366. {
  29367. name: "Megamacro",
  29368. height: math.unit(435000.0, "inches")
  29369. },
  29370. {
  29371. name: "Gigamacro",
  29372. height: math.unit(870000000.0, "inches")
  29373. }
  29374. ]
  29375. )
  29376. };
  29377. pokemonMakers["Simipour"] = () => {
  29378. return makeCharacter(
  29379. "Simipour",
  29380. "Pokemon",
  29381. {
  29382. "Simipour": {
  29383. height: math.unit("39", "inches"),
  29384. weight: math.unit("63.9", "lbs"),
  29385. name: "Simipour",
  29386. image: {
  29387. source: "./media/pokemon/Simipour.svg"
  29388. },
  29389. rename: true
  29390. }
  29391. },
  29392. [
  29393. {
  29394. name: "Micro",
  29395. height: math.unit(3.9, "inches")
  29396. },
  29397. {
  29398. name: "Normal",
  29399. height: math.unit(39, "inches"),
  29400. default: true
  29401. },
  29402. {
  29403. name: "Macro",
  29404. height: math.unit(3900.0, "inches")
  29405. },
  29406. {
  29407. name: "Megamacro",
  29408. height: math.unit(195000.0, "inches")
  29409. },
  29410. {
  29411. name: "Gigamacro",
  29412. height: math.unit(390000000.0, "inches")
  29413. }
  29414. ]
  29415. )
  29416. };
  29417. pokemonMakers["Simisage"] = () => {
  29418. return makeCharacter(
  29419. "Simisage",
  29420. "Pokemon",
  29421. {
  29422. "Simisage": {
  29423. height: math.unit("43", "inches"),
  29424. weight: math.unit("67.2", "lbs"),
  29425. name: "Simisage",
  29426. image: {
  29427. source: "./media/pokemon/Simisage.svg"
  29428. },
  29429. rename: true
  29430. }
  29431. },
  29432. [
  29433. {
  29434. name: "Micro",
  29435. height: math.unit(4.3, "inches")
  29436. },
  29437. {
  29438. name: "Normal",
  29439. height: math.unit(43, "inches"),
  29440. default: true
  29441. },
  29442. {
  29443. name: "Macro",
  29444. height: math.unit(4300.0, "inches")
  29445. },
  29446. {
  29447. name: "Megamacro",
  29448. height: math.unit(215000.0, "inches")
  29449. },
  29450. {
  29451. name: "Gigamacro",
  29452. height: math.unit(430000000.0, "inches")
  29453. }
  29454. ]
  29455. )
  29456. };
  29457. pokemonMakers["Simisear"] = () => {
  29458. return makeCharacter(
  29459. "Simisear",
  29460. "Pokemon",
  29461. {
  29462. "Simisear": {
  29463. height: math.unit("39", "inches"),
  29464. weight: math.unit("61.7", "lbs"),
  29465. name: "Simisear",
  29466. image: {
  29467. source: "./media/pokemon/Simisear.svg"
  29468. },
  29469. rename: true
  29470. }
  29471. },
  29472. [
  29473. {
  29474. name: "Micro",
  29475. height: math.unit(3.9, "inches")
  29476. },
  29477. {
  29478. name: "Normal",
  29479. height: math.unit(39, "inches"),
  29480. default: true
  29481. },
  29482. {
  29483. name: "Macro",
  29484. height: math.unit(3900.0, "inches")
  29485. },
  29486. {
  29487. name: "Megamacro",
  29488. height: math.unit(195000.0, "inches")
  29489. },
  29490. {
  29491. name: "Gigamacro",
  29492. height: math.unit(390000000.0, "inches")
  29493. }
  29494. ]
  29495. )
  29496. };
  29497. pokemonMakers["Sinistea"] = () => {
  29498. return makeCharacter(
  29499. "Sinistea",
  29500. "Pokemon",
  29501. {
  29502. "Sinistea": {
  29503. height: math.unit("4", "inches"),
  29504. weight: math.unit("0.4", "lbs"),
  29505. name: "Sinistea",
  29506. image: {
  29507. source: "./media/pokemon/Sinistea.svg"
  29508. },
  29509. rename: true
  29510. }
  29511. },
  29512. [
  29513. {
  29514. name: "Micro",
  29515. height: math.unit(0.4, "inches")
  29516. },
  29517. {
  29518. name: "Normal",
  29519. height: math.unit(4, "inches"),
  29520. default: true
  29521. },
  29522. {
  29523. name: "Macro",
  29524. height: math.unit(400.0, "inches")
  29525. },
  29526. {
  29527. name: "Megamacro",
  29528. height: math.unit(20000.0, "inches")
  29529. },
  29530. {
  29531. name: "Gigamacro",
  29532. height: math.unit(40000000.0, "inches")
  29533. }
  29534. ]
  29535. )
  29536. };
  29537. pokemonMakers["Sirfetch'd"] = () => {
  29538. return makeCharacter(
  29539. "Sirfetch'd",
  29540. "Pokemon",
  29541. {
  29542. "Sirfetch'd": {
  29543. height: math.unit("31", "inches"),
  29544. weight: math.unit("257.9", "lbs"),
  29545. name: "Sirfetch'd",
  29546. image: {
  29547. source: "./media/pokemon/Sirfetch'd.svg"
  29548. },
  29549. rename: true
  29550. }
  29551. },
  29552. [
  29553. {
  29554. name: "Micro",
  29555. height: math.unit(3.1, "inches")
  29556. },
  29557. {
  29558. name: "Normal",
  29559. height: math.unit(31, "inches"),
  29560. default: true
  29561. },
  29562. {
  29563. name: "Macro",
  29564. height: math.unit(3100.0, "inches")
  29565. },
  29566. {
  29567. name: "Megamacro",
  29568. height: math.unit(155000.0, "inches")
  29569. },
  29570. {
  29571. name: "Gigamacro",
  29572. height: math.unit(310000000.0, "inches")
  29573. }
  29574. ]
  29575. )
  29576. };
  29577. pokemonMakers["Sizzlipede"] = () => {
  29578. return makeCharacter(
  29579. "Sizzlipede",
  29580. "Pokemon",
  29581. {
  29582. "Sizzlipede": {
  29583. height: math.unit("28", "inches"),
  29584. weight: math.unit("2.2", "lbs"),
  29585. name: "Sizzlipede",
  29586. image: {
  29587. source: "./media/pokemon/Sizzlipede.svg"
  29588. },
  29589. rename: true
  29590. }
  29591. },
  29592. [
  29593. {
  29594. name: "Micro",
  29595. height: math.unit(2.8, "inches")
  29596. },
  29597. {
  29598. name: "Normal",
  29599. height: math.unit(28, "inches"),
  29600. default: true
  29601. },
  29602. {
  29603. name: "Macro",
  29604. height: math.unit(2800.0, "inches")
  29605. },
  29606. {
  29607. name: "Megamacro",
  29608. height: math.unit(140000.0, "inches")
  29609. },
  29610. {
  29611. name: "Gigamacro",
  29612. height: math.unit(280000000.0, "inches")
  29613. }
  29614. ]
  29615. )
  29616. };
  29617. pokemonMakers["Skarmory"] = () => {
  29618. return makeCharacter(
  29619. "Skarmory",
  29620. "Pokemon",
  29621. {
  29622. "Skarmory": {
  29623. height: math.unit("67", "inches"),
  29624. weight: math.unit("111.3", "lbs"),
  29625. name: "Skarmory",
  29626. image: {
  29627. source: "./media/pokemon/Skarmory.svg"
  29628. },
  29629. rename: true
  29630. }
  29631. },
  29632. [
  29633. {
  29634. name: "Micro",
  29635. height: math.unit(6.7, "inches")
  29636. },
  29637. {
  29638. name: "Normal",
  29639. height: math.unit(67, "inches"),
  29640. default: true
  29641. },
  29642. {
  29643. name: "Macro",
  29644. height: math.unit(6700.0, "inches")
  29645. },
  29646. {
  29647. name: "Megamacro",
  29648. height: math.unit(335000.0, "inches")
  29649. },
  29650. {
  29651. name: "Gigamacro",
  29652. height: math.unit(670000000.0, "inches")
  29653. }
  29654. ]
  29655. )
  29656. };
  29657. pokemonMakers["Skiddo"] = () => {
  29658. return makeCharacter(
  29659. "Skiddo",
  29660. "Pokemon",
  29661. {
  29662. "Skiddo": {
  29663. height: math.unit("35", "inches"),
  29664. weight: math.unit("68.3", "lbs"),
  29665. name: "Skiddo",
  29666. image: {
  29667. source: "./media/pokemon/Skiddo.svg"
  29668. },
  29669. rename: true
  29670. }
  29671. },
  29672. [
  29673. {
  29674. name: "Micro",
  29675. height: math.unit(3.5, "inches")
  29676. },
  29677. {
  29678. name: "Normal",
  29679. height: math.unit(35, "inches"),
  29680. default: true
  29681. },
  29682. {
  29683. name: "Macro",
  29684. height: math.unit(3500.0, "inches")
  29685. },
  29686. {
  29687. name: "Megamacro",
  29688. height: math.unit(175000.0, "inches")
  29689. },
  29690. {
  29691. name: "Gigamacro",
  29692. height: math.unit(350000000.0, "inches")
  29693. }
  29694. ]
  29695. )
  29696. };
  29697. pokemonMakers["Skiploom"] = () => {
  29698. return makeCharacter(
  29699. "Skiploom",
  29700. "Pokemon",
  29701. {
  29702. "Skiploom": {
  29703. height: math.unit("24", "inches"),
  29704. weight: math.unit("2.2", "lbs"),
  29705. name: "Skiploom",
  29706. image: {
  29707. source: "./media/pokemon/Skiploom.svg"
  29708. },
  29709. rename: true
  29710. }
  29711. },
  29712. [
  29713. {
  29714. name: "Micro",
  29715. height: math.unit(2.4, "inches")
  29716. },
  29717. {
  29718. name: "Normal",
  29719. height: math.unit(24, "inches"),
  29720. default: true
  29721. },
  29722. {
  29723. name: "Macro",
  29724. height: math.unit(2400.0, "inches")
  29725. },
  29726. {
  29727. name: "Megamacro",
  29728. height: math.unit(120000.0, "inches")
  29729. },
  29730. {
  29731. name: "Gigamacro",
  29732. height: math.unit(240000000.0, "inches")
  29733. }
  29734. ]
  29735. )
  29736. };
  29737. pokemonMakers["Skitty"] = () => {
  29738. return makeCharacter(
  29739. "Skitty",
  29740. "Pokemon",
  29741. {
  29742. "Skitty": {
  29743. height: math.unit("24", "inches"),
  29744. weight: math.unit("24.3", "lbs"),
  29745. name: "Skitty",
  29746. image: {
  29747. source: "./media/pokemon/Skitty.svg"
  29748. },
  29749. rename: true
  29750. }
  29751. },
  29752. [
  29753. {
  29754. name: "Micro",
  29755. height: math.unit(2.4, "inches")
  29756. },
  29757. {
  29758. name: "Normal",
  29759. height: math.unit(24, "inches"),
  29760. default: true
  29761. },
  29762. {
  29763. name: "Macro",
  29764. height: math.unit(2400.0, "inches")
  29765. },
  29766. {
  29767. name: "Megamacro",
  29768. height: math.unit(120000.0, "inches")
  29769. },
  29770. {
  29771. name: "Gigamacro",
  29772. height: math.unit(240000000.0, "inches")
  29773. }
  29774. ]
  29775. )
  29776. };
  29777. pokemonMakers["Skorupi"] = () => {
  29778. return makeCharacter(
  29779. "Skorupi",
  29780. "Pokemon",
  29781. {
  29782. "Skorupi": {
  29783. height: math.unit("31", "inches"),
  29784. weight: math.unit("26.5", "lbs"),
  29785. name: "Skorupi",
  29786. image: {
  29787. source: "./media/pokemon/Skorupi.svg"
  29788. },
  29789. rename: true
  29790. }
  29791. },
  29792. [
  29793. {
  29794. name: "Micro",
  29795. height: math.unit(3.1, "inches")
  29796. },
  29797. {
  29798. name: "Normal",
  29799. height: math.unit(31, "inches"),
  29800. default: true
  29801. },
  29802. {
  29803. name: "Macro",
  29804. height: math.unit(3100.0, "inches")
  29805. },
  29806. {
  29807. name: "Megamacro",
  29808. height: math.unit(155000.0, "inches")
  29809. },
  29810. {
  29811. name: "Gigamacro",
  29812. height: math.unit(310000000.0, "inches")
  29813. }
  29814. ]
  29815. )
  29816. };
  29817. pokemonMakers["Skrelp"] = () => {
  29818. return makeCharacter(
  29819. "Skrelp",
  29820. "Pokemon",
  29821. {
  29822. "Skrelp": {
  29823. height: math.unit("20", "inches"),
  29824. weight: math.unit("16.1", "lbs"),
  29825. name: "Skrelp",
  29826. image: {
  29827. source: "./media/pokemon/Skrelp.svg"
  29828. },
  29829. rename: true
  29830. }
  29831. },
  29832. [
  29833. {
  29834. name: "Micro",
  29835. height: math.unit(2.0, "inches")
  29836. },
  29837. {
  29838. name: "Normal",
  29839. height: math.unit(20, "inches"),
  29840. default: true
  29841. },
  29842. {
  29843. name: "Macro",
  29844. height: math.unit(2000.0, "inches")
  29845. },
  29846. {
  29847. name: "Megamacro",
  29848. height: math.unit(100000.0, "inches")
  29849. },
  29850. {
  29851. name: "Gigamacro",
  29852. height: math.unit(200000000.0, "inches")
  29853. }
  29854. ]
  29855. )
  29856. };
  29857. pokemonMakers["Skuntank"] = () => {
  29858. return makeCharacter(
  29859. "Skuntank",
  29860. "Pokemon",
  29861. {
  29862. "Skuntank": {
  29863. height: math.unit("39", "inches"),
  29864. weight: math.unit("83.8", "lbs"),
  29865. name: "Skuntank",
  29866. image: {
  29867. source: "./media/pokemon/Skuntank.svg"
  29868. },
  29869. rename: true
  29870. }
  29871. },
  29872. [
  29873. {
  29874. name: "Micro",
  29875. height: math.unit(3.9, "inches")
  29876. },
  29877. {
  29878. name: "Normal",
  29879. height: math.unit(39, "inches"),
  29880. default: true
  29881. },
  29882. {
  29883. name: "Macro",
  29884. height: math.unit(3900.0, "inches")
  29885. },
  29886. {
  29887. name: "Megamacro",
  29888. height: math.unit(195000.0, "inches")
  29889. },
  29890. {
  29891. name: "Gigamacro",
  29892. height: math.unit(390000000.0, "inches")
  29893. }
  29894. ]
  29895. )
  29896. };
  29897. pokemonMakers["Skwovet"] = () => {
  29898. return makeCharacter(
  29899. "Skwovet",
  29900. "Pokemon",
  29901. {
  29902. "Skwovet": {
  29903. height: math.unit("12", "inches"),
  29904. weight: math.unit("5.5", "lbs"),
  29905. name: "Skwovet",
  29906. image: {
  29907. source: "./media/pokemon/Skwovet.svg"
  29908. },
  29909. rename: true
  29910. }
  29911. },
  29912. [
  29913. {
  29914. name: "Micro",
  29915. height: math.unit(1.2, "inches")
  29916. },
  29917. {
  29918. name: "Normal",
  29919. height: math.unit(12, "inches"),
  29920. default: true
  29921. },
  29922. {
  29923. name: "Macro",
  29924. height: math.unit(1200.0, "inches")
  29925. },
  29926. {
  29927. name: "Megamacro",
  29928. height: math.unit(60000.0, "inches")
  29929. },
  29930. {
  29931. name: "Gigamacro",
  29932. height: math.unit(120000000.0, "inches")
  29933. }
  29934. ]
  29935. )
  29936. };
  29937. pokemonMakers["Slaking"] = () => {
  29938. return makeCharacter(
  29939. "Slaking",
  29940. "Pokemon",
  29941. {
  29942. "Slaking": {
  29943. height: math.unit("79", "inches"),
  29944. weight: math.unit("287.7", "lbs"),
  29945. name: "Slaking",
  29946. image: {
  29947. source: "./media/pokemon/Slaking.svg"
  29948. },
  29949. rename: true
  29950. }
  29951. },
  29952. [
  29953. {
  29954. name: "Micro",
  29955. height: math.unit(7.9, "inches")
  29956. },
  29957. {
  29958. name: "Normal",
  29959. height: math.unit(79, "inches"),
  29960. default: true
  29961. },
  29962. {
  29963. name: "Macro",
  29964. height: math.unit(7900.0, "inches")
  29965. },
  29966. {
  29967. name: "Megamacro",
  29968. height: math.unit(395000.0, "inches")
  29969. },
  29970. {
  29971. name: "Gigamacro",
  29972. height: math.unit(790000000.0, "inches")
  29973. }
  29974. ]
  29975. )
  29976. };
  29977. pokemonMakers["Slakoth"] = () => {
  29978. return makeCharacter(
  29979. "Slakoth",
  29980. "Pokemon",
  29981. {
  29982. "Slakoth": {
  29983. height: math.unit("31", "inches"),
  29984. weight: math.unit("52.9", "lbs"),
  29985. name: "Slakoth",
  29986. image: {
  29987. source: "./media/pokemon/Slakoth.svg"
  29988. },
  29989. rename: true
  29990. }
  29991. },
  29992. [
  29993. {
  29994. name: "Micro",
  29995. height: math.unit(3.1, "inches")
  29996. },
  29997. {
  29998. name: "Normal",
  29999. height: math.unit(31, "inches"),
  30000. default: true
  30001. },
  30002. {
  30003. name: "Macro",
  30004. height: math.unit(3100.0, "inches")
  30005. },
  30006. {
  30007. name: "Megamacro",
  30008. height: math.unit(155000.0, "inches")
  30009. },
  30010. {
  30011. name: "Gigamacro",
  30012. height: math.unit(310000000.0, "inches")
  30013. }
  30014. ]
  30015. )
  30016. };
  30017. pokemonMakers["Sliggoo"] = () => {
  30018. return makeCharacter(
  30019. "Sliggoo",
  30020. "Pokemon",
  30021. {
  30022. "Sliggoo": {
  30023. height: math.unit("31", "inches"),
  30024. weight: math.unit("38.6", "lbs"),
  30025. name: "Sliggoo",
  30026. image: {
  30027. source: "./media/pokemon/Sliggoo.svg"
  30028. },
  30029. rename: true
  30030. }
  30031. },
  30032. [
  30033. {
  30034. name: "Micro",
  30035. height: math.unit(3.1, "inches")
  30036. },
  30037. {
  30038. name: "Normal",
  30039. height: math.unit(31, "inches"),
  30040. default: true
  30041. },
  30042. {
  30043. name: "Macro",
  30044. height: math.unit(3100.0, "inches")
  30045. },
  30046. {
  30047. name: "Megamacro",
  30048. height: math.unit(155000.0, "inches")
  30049. },
  30050. {
  30051. name: "Gigamacro",
  30052. height: math.unit(310000000.0, "inches")
  30053. }
  30054. ]
  30055. )
  30056. };
  30057. pokemonMakers["Slowking"] = () => {
  30058. return makeCharacter(
  30059. "Slowking",
  30060. "Pokemon",
  30061. {
  30062. "Slowking": {
  30063. height: math.unit("79", "inches"),
  30064. weight: math.unit("175.3", "lbs"),
  30065. name: "Slowking",
  30066. image: {
  30067. source: "./media/pokemon/Slowking.svg"
  30068. },
  30069. rename: true
  30070. }
  30071. },
  30072. [
  30073. {
  30074. name: "Micro",
  30075. height: math.unit(7.9, "inches")
  30076. },
  30077. {
  30078. name: "Normal",
  30079. height: math.unit(79, "inches"),
  30080. default: true
  30081. },
  30082. {
  30083. name: "Macro",
  30084. height: math.unit(7900.0, "inches")
  30085. },
  30086. {
  30087. name: "Megamacro",
  30088. height: math.unit(395000.0, "inches")
  30089. },
  30090. {
  30091. name: "Gigamacro",
  30092. height: math.unit(790000000.0, "inches")
  30093. }
  30094. ]
  30095. )
  30096. };
  30097. pokemonMakers["Slowpoke"] = () => {
  30098. return makeCharacter(
  30099. "Slowpoke",
  30100. "Pokemon",
  30101. {
  30102. "Slowpoke": {
  30103. height: math.unit("47", "inches"),
  30104. weight: math.unit("79.4", "lbs"),
  30105. name: "Slowpoke",
  30106. image: {
  30107. source: "./media/pokemon/Slowpoke.svg"
  30108. },
  30109. rename: true
  30110. }
  30111. },
  30112. [
  30113. {
  30114. name: "Micro",
  30115. height: math.unit(4.7, "inches")
  30116. },
  30117. {
  30118. name: "Normal",
  30119. height: math.unit(47, "inches"),
  30120. default: true
  30121. },
  30122. {
  30123. name: "Macro",
  30124. height: math.unit(4700.0, "inches")
  30125. },
  30126. {
  30127. name: "Megamacro",
  30128. height: math.unit(235000.0, "inches")
  30129. },
  30130. {
  30131. name: "Gigamacro",
  30132. height: math.unit(470000000.0, "inches")
  30133. }
  30134. ]
  30135. )
  30136. };
  30137. pokemonMakers["Slugma"] = () => {
  30138. return makeCharacter(
  30139. "Slugma",
  30140. "Pokemon",
  30141. {
  30142. "Slugma": {
  30143. height: math.unit("28", "inches"),
  30144. weight: math.unit("77.2", "lbs"),
  30145. name: "Slugma",
  30146. image: {
  30147. source: "./media/pokemon/Slugma.svg"
  30148. },
  30149. rename: true
  30150. }
  30151. },
  30152. [
  30153. {
  30154. name: "Micro",
  30155. height: math.unit(2.8, "inches")
  30156. },
  30157. {
  30158. name: "Normal",
  30159. height: math.unit(28, "inches"),
  30160. default: true
  30161. },
  30162. {
  30163. name: "Macro",
  30164. height: math.unit(2800.0, "inches")
  30165. },
  30166. {
  30167. name: "Megamacro",
  30168. height: math.unit(140000.0, "inches")
  30169. },
  30170. {
  30171. name: "Gigamacro",
  30172. height: math.unit(280000000.0, "inches")
  30173. }
  30174. ]
  30175. )
  30176. };
  30177. pokemonMakers["Slurpuff"] = () => {
  30178. return makeCharacter(
  30179. "Slurpuff",
  30180. "Pokemon",
  30181. {
  30182. "Slurpuff": {
  30183. height: math.unit("31", "inches"),
  30184. weight: math.unit("11.0", "lbs"),
  30185. name: "Slurpuff",
  30186. image: {
  30187. source: "./media/pokemon/Slurpuff.svg"
  30188. },
  30189. rename: true
  30190. }
  30191. },
  30192. [
  30193. {
  30194. name: "Micro",
  30195. height: math.unit(3.1, "inches")
  30196. },
  30197. {
  30198. name: "Normal",
  30199. height: math.unit(31, "inches"),
  30200. default: true
  30201. },
  30202. {
  30203. name: "Macro",
  30204. height: math.unit(3100.0, "inches")
  30205. },
  30206. {
  30207. name: "Megamacro",
  30208. height: math.unit(155000.0, "inches")
  30209. },
  30210. {
  30211. name: "Gigamacro",
  30212. height: math.unit(310000000.0, "inches")
  30213. }
  30214. ]
  30215. )
  30216. };
  30217. pokemonMakers["Smeargle"] = () => {
  30218. return makeCharacter(
  30219. "Smeargle",
  30220. "Pokemon",
  30221. {
  30222. "Smeargle": {
  30223. height: math.unit("47", "inches"),
  30224. weight: math.unit("127.9", "lbs"),
  30225. name: "Smeargle",
  30226. image: {
  30227. source: "./media/pokemon/Smeargle.svg"
  30228. },
  30229. rename: true
  30230. }
  30231. },
  30232. [
  30233. {
  30234. name: "Micro",
  30235. height: math.unit(4.7, "inches")
  30236. },
  30237. {
  30238. name: "Normal",
  30239. height: math.unit(47, "inches"),
  30240. default: true
  30241. },
  30242. {
  30243. name: "Macro",
  30244. height: math.unit(4700.0, "inches")
  30245. },
  30246. {
  30247. name: "Megamacro",
  30248. height: math.unit(235000.0, "inches")
  30249. },
  30250. {
  30251. name: "Gigamacro",
  30252. height: math.unit(470000000.0, "inches")
  30253. }
  30254. ]
  30255. )
  30256. };
  30257. pokemonMakers["Smoochum"] = () => {
  30258. return makeCharacter(
  30259. "Smoochum",
  30260. "Pokemon",
  30261. {
  30262. "Smoochum": {
  30263. height: math.unit("16", "inches"),
  30264. weight: math.unit("13.2", "lbs"),
  30265. name: "Smoochum",
  30266. image: {
  30267. source: "./media/pokemon/Smoochum.svg"
  30268. },
  30269. rename: true
  30270. }
  30271. },
  30272. [
  30273. {
  30274. name: "Micro",
  30275. height: math.unit(1.6, "inches")
  30276. },
  30277. {
  30278. name: "Normal",
  30279. height: math.unit(16, "inches"),
  30280. default: true
  30281. },
  30282. {
  30283. name: "Macro",
  30284. height: math.unit(1600.0, "inches")
  30285. },
  30286. {
  30287. name: "Megamacro",
  30288. height: math.unit(80000.0, "inches")
  30289. },
  30290. {
  30291. name: "Gigamacro",
  30292. height: math.unit(160000000.0, "inches")
  30293. }
  30294. ]
  30295. )
  30296. };
  30297. pokemonMakers["Sneasel"] = () => {
  30298. return makeCharacter(
  30299. "Sneasel",
  30300. "Pokemon",
  30301. {
  30302. "Sneasel": {
  30303. height: math.unit("35", "inches"),
  30304. weight: math.unit("61.7", "lbs"),
  30305. name: "Sneasel",
  30306. image: {
  30307. source: "./media/pokemon/Sneasel.svg"
  30308. },
  30309. rename: true
  30310. }
  30311. },
  30312. [
  30313. {
  30314. name: "Micro",
  30315. height: math.unit(3.5, "inches")
  30316. },
  30317. {
  30318. name: "Normal",
  30319. height: math.unit(35, "inches"),
  30320. default: true
  30321. },
  30322. {
  30323. name: "Macro",
  30324. height: math.unit(3500.0, "inches")
  30325. },
  30326. {
  30327. name: "Megamacro",
  30328. height: math.unit(175000.0, "inches")
  30329. },
  30330. {
  30331. name: "Gigamacro",
  30332. height: math.unit(350000000.0, "inches")
  30333. }
  30334. ]
  30335. )
  30336. };
  30337. pokemonMakers["Snivy"] = () => {
  30338. return makeCharacter(
  30339. "Snivy",
  30340. "Pokemon",
  30341. {
  30342. "Snivy": {
  30343. height: math.unit("24", "inches"),
  30344. weight: math.unit("17.9", "lbs"),
  30345. name: "Snivy",
  30346. image: {
  30347. source: "./media/pokemon/Snivy.svg"
  30348. },
  30349. rename: true
  30350. }
  30351. },
  30352. [
  30353. {
  30354. name: "Micro",
  30355. height: math.unit(2.4, "inches")
  30356. },
  30357. {
  30358. name: "Normal",
  30359. height: math.unit(24, "inches"),
  30360. default: true
  30361. },
  30362. {
  30363. name: "Macro",
  30364. height: math.unit(2400.0, "inches")
  30365. },
  30366. {
  30367. name: "Megamacro",
  30368. height: math.unit(120000.0, "inches")
  30369. },
  30370. {
  30371. name: "Gigamacro",
  30372. height: math.unit(240000000.0, "inches")
  30373. }
  30374. ]
  30375. )
  30376. };
  30377. pokemonMakers["Snom"] = () => {
  30378. return makeCharacter(
  30379. "Snom",
  30380. "Pokemon",
  30381. {
  30382. "Snom": {
  30383. height: math.unit("12", "inches"),
  30384. weight: math.unit("8.4", "lbs"),
  30385. name: "Snom",
  30386. image: {
  30387. source: "./media/pokemon/Snom.svg"
  30388. },
  30389. rename: true
  30390. }
  30391. },
  30392. [
  30393. {
  30394. name: "Micro",
  30395. height: math.unit(1.2, "inches")
  30396. },
  30397. {
  30398. name: "Normal",
  30399. height: math.unit(12, "inches"),
  30400. default: true
  30401. },
  30402. {
  30403. name: "Macro",
  30404. height: math.unit(1200.0, "inches")
  30405. },
  30406. {
  30407. name: "Megamacro",
  30408. height: math.unit(60000.0, "inches")
  30409. },
  30410. {
  30411. name: "Gigamacro",
  30412. height: math.unit(120000000.0, "inches")
  30413. }
  30414. ]
  30415. )
  30416. };
  30417. pokemonMakers["Snorunt"] = () => {
  30418. return makeCharacter(
  30419. "Snorunt",
  30420. "Pokemon",
  30421. {
  30422. "Snorunt": {
  30423. height: math.unit("28", "inches"),
  30424. weight: math.unit("37.0", "lbs"),
  30425. name: "Snorunt",
  30426. image: {
  30427. source: "./media/pokemon/Snorunt.svg"
  30428. },
  30429. rename: true
  30430. }
  30431. },
  30432. [
  30433. {
  30434. name: "Micro",
  30435. height: math.unit(2.8, "inches")
  30436. },
  30437. {
  30438. name: "Normal",
  30439. height: math.unit(28, "inches"),
  30440. default: true
  30441. },
  30442. {
  30443. name: "Macro",
  30444. height: math.unit(2800.0, "inches")
  30445. },
  30446. {
  30447. name: "Megamacro",
  30448. height: math.unit(140000.0, "inches")
  30449. },
  30450. {
  30451. name: "Gigamacro",
  30452. height: math.unit(280000000.0, "inches")
  30453. }
  30454. ]
  30455. )
  30456. };
  30457. pokemonMakers["Snover"] = () => {
  30458. return makeCharacter(
  30459. "Snover",
  30460. "Pokemon",
  30461. {
  30462. "Snover": {
  30463. height: math.unit("39", "inches"),
  30464. weight: math.unit("111.3", "lbs"),
  30465. name: "Snover",
  30466. image: {
  30467. source: "./media/pokemon/Snover.svg"
  30468. },
  30469. rename: true
  30470. }
  30471. },
  30472. [
  30473. {
  30474. name: "Micro",
  30475. height: math.unit(3.9, "inches")
  30476. },
  30477. {
  30478. name: "Normal",
  30479. height: math.unit(39, "inches"),
  30480. default: true
  30481. },
  30482. {
  30483. name: "Macro",
  30484. height: math.unit(3900.0, "inches")
  30485. },
  30486. {
  30487. name: "Megamacro",
  30488. height: math.unit(195000.0, "inches")
  30489. },
  30490. {
  30491. name: "Gigamacro",
  30492. height: math.unit(390000000.0, "inches")
  30493. }
  30494. ]
  30495. )
  30496. };
  30497. pokemonMakers["Snubbull"] = () => {
  30498. return makeCharacter(
  30499. "Snubbull",
  30500. "Pokemon",
  30501. {
  30502. "Snubbull": {
  30503. height: math.unit("24", "inches"),
  30504. weight: math.unit("17.2", "lbs"),
  30505. name: "Snubbull",
  30506. image: {
  30507. source: "./media/pokemon/Snubbull.svg"
  30508. },
  30509. rename: true
  30510. }
  30511. },
  30512. [
  30513. {
  30514. name: "Micro",
  30515. height: math.unit(2.4, "inches")
  30516. },
  30517. {
  30518. name: "Normal",
  30519. height: math.unit(24, "inches"),
  30520. default: true
  30521. },
  30522. {
  30523. name: "Macro",
  30524. height: math.unit(2400.0, "inches")
  30525. },
  30526. {
  30527. name: "Megamacro",
  30528. height: math.unit(120000.0, "inches")
  30529. },
  30530. {
  30531. name: "Gigamacro",
  30532. height: math.unit(240000000.0, "inches")
  30533. }
  30534. ]
  30535. )
  30536. };
  30537. pokemonMakers["Sobble"] = () => {
  30538. return makeCharacter(
  30539. "Sobble",
  30540. "Pokemon",
  30541. {
  30542. "Sobble": {
  30543. height: math.unit("12", "inches"),
  30544. weight: math.unit("8.8", "lbs"),
  30545. name: "Sobble",
  30546. image: {
  30547. source: "./media/pokemon/Sobble.svg"
  30548. },
  30549. rename: true
  30550. }
  30551. },
  30552. [
  30553. {
  30554. name: "Micro",
  30555. height: math.unit(1.2, "inches")
  30556. },
  30557. {
  30558. name: "Normal",
  30559. height: math.unit(12, "inches"),
  30560. default: true
  30561. },
  30562. {
  30563. name: "Macro",
  30564. height: math.unit(1200.0, "inches")
  30565. },
  30566. {
  30567. name: "Megamacro",
  30568. height: math.unit(60000.0, "inches")
  30569. },
  30570. {
  30571. name: "Gigamacro",
  30572. height: math.unit(120000000.0, "inches")
  30573. }
  30574. ]
  30575. )
  30576. };
  30577. pokemonMakers["Solgaleo"] = () => {
  30578. return makeCharacter(
  30579. "Solgaleo",
  30580. "Pokemon",
  30581. {
  30582. "Solgaleo": {
  30583. height: math.unit("134", "inches"),
  30584. weight: math.unit("507.1", "lbs"),
  30585. name: "Solgaleo",
  30586. image: {
  30587. source: "./media/pokemon/Solgaleo.svg"
  30588. },
  30589. rename: true
  30590. }
  30591. },
  30592. [
  30593. {
  30594. name: "Micro",
  30595. height: math.unit(13.4, "inches")
  30596. },
  30597. {
  30598. name: "Normal",
  30599. height: math.unit(134, "inches"),
  30600. default: true
  30601. },
  30602. {
  30603. name: "Macro",
  30604. height: math.unit(13400.0, "inches")
  30605. },
  30606. {
  30607. name: "Megamacro",
  30608. height: math.unit(670000.0, "inches")
  30609. },
  30610. {
  30611. name: "Gigamacro",
  30612. height: math.unit(1340000000.0, "inches")
  30613. }
  30614. ]
  30615. )
  30616. };
  30617. pokemonMakers["Solosis"] = () => {
  30618. return makeCharacter(
  30619. "Solosis",
  30620. "Pokemon",
  30621. {
  30622. "Solosis ": {
  30623. height: math.unit("12", "inches"),
  30624. weight: math.unit("2.2", "lbs"),
  30625. name: "Solosis ",
  30626. image: {
  30627. source: "./media/pokemon/Solosis .svg"
  30628. },
  30629. rename: true
  30630. }
  30631. },
  30632. [
  30633. {
  30634. name: "Micro",
  30635. height: math.unit(1.2, "inches")
  30636. },
  30637. {
  30638. name: "Normal",
  30639. height: math.unit(12, "inches"),
  30640. default: true
  30641. },
  30642. {
  30643. name: "Macro",
  30644. height: math.unit(1200.0, "inches")
  30645. },
  30646. {
  30647. name: "Megamacro",
  30648. height: math.unit(60000.0, "inches")
  30649. },
  30650. {
  30651. name: "Gigamacro",
  30652. height: math.unit(120000000.0, "inches")
  30653. }
  30654. ]
  30655. )
  30656. };
  30657. pokemonMakers["Solrock"] = () => {
  30658. return makeCharacter(
  30659. "Solrock",
  30660. "Pokemon",
  30661. {
  30662. "Solrock": {
  30663. height: math.unit("47", "inches"),
  30664. weight: math.unit("339.5", "lbs"),
  30665. name: "Solrock",
  30666. image: {
  30667. source: "./media/pokemon/Solrock.svg"
  30668. },
  30669. rename: true
  30670. }
  30671. },
  30672. [
  30673. {
  30674. name: "Micro",
  30675. height: math.unit(4.7, "inches")
  30676. },
  30677. {
  30678. name: "Normal",
  30679. height: math.unit(47, "inches"),
  30680. default: true
  30681. },
  30682. {
  30683. name: "Macro",
  30684. height: math.unit(4700.0, "inches")
  30685. },
  30686. {
  30687. name: "Megamacro",
  30688. height: math.unit(235000.0, "inches")
  30689. },
  30690. {
  30691. name: "Gigamacro",
  30692. height: math.unit(470000000.0, "inches")
  30693. }
  30694. ]
  30695. )
  30696. };
  30697. pokemonMakers["Spearow"] = () => {
  30698. return makeCharacter(
  30699. "Spearow",
  30700. "Pokemon",
  30701. {
  30702. "Spearow": {
  30703. height: math.unit("12", "inches"),
  30704. weight: math.unit("4.4", "lbs"),
  30705. name: "Spearow",
  30706. image: {
  30707. source: "./media/pokemon/Spearow.svg"
  30708. },
  30709. rename: true
  30710. }
  30711. },
  30712. [
  30713. {
  30714. name: "Micro",
  30715. height: math.unit(1.2, "inches")
  30716. },
  30717. {
  30718. name: "Normal",
  30719. height: math.unit(12, "inches"),
  30720. default: true
  30721. },
  30722. {
  30723. name: "Macro",
  30724. height: math.unit(1200.0, "inches")
  30725. },
  30726. {
  30727. name: "Megamacro",
  30728. height: math.unit(60000.0, "inches")
  30729. },
  30730. {
  30731. name: "Gigamacro",
  30732. height: math.unit(120000000.0, "inches")
  30733. }
  30734. ]
  30735. )
  30736. };
  30737. pokemonMakers["Spewpa"] = () => {
  30738. return makeCharacter(
  30739. "Spewpa",
  30740. "Pokemon",
  30741. {
  30742. "Spewpa": {
  30743. height: math.unit("12", "inches"),
  30744. weight: math.unit("18.5", "lbs"),
  30745. name: "Spewpa",
  30746. image: {
  30747. source: "./media/pokemon/Spewpa.svg"
  30748. },
  30749. rename: true
  30750. }
  30751. },
  30752. [
  30753. {
  30754. name: "Micro",
  30755. height: math.unit(1.2, "inches")
  30756. },
  30757. {
  30758. name: "Normal",
  30759. height: math.unit(12, "inches"),
  30760. default: true
  30761. },
  30762. {
  30763. name: "Macro",
  30764. height: math.unit(1200.0, "inches")
  30765. },
  30766. {
  30767. name: "Megamacro",
  30768. height: math.unit(60000.0, "inches")
  30769. },
  30770. {
  30771. name: "Gigamacro",
  30772. height: math.unit(120000000.0, "inches")
  30773. }
  30774. ]
  30775. )
  30776. };
  30777. pokemonMakers["Spheal"] = () => {
  30778. return makeCharacter(
  30779. "Spheal",
  30780. "Pokemon",
  30781. {
  30782. "Spheal": {
  30783. height: math.unit("31", "inches"),
  30784. weight: math.unit("87.1", "lbs"),
  30785. name: "Spheal",
  30786. image: {
  30787. source: "./media/pokemon/Spheal.svg"
  30788. },
  30789. rename: true
  30790. }
  30791. },
  30792. [
  30793. {
  30794. name: "Micro",
  30795. height: math.unit(3.1, "inches")
  30796. },
  30797. {
  30798. name: "Normal",
  30799. height: math.unit(31, "inches"),
  30800. default: true
  30801. },
  30802. {
  30803. name: "Macro",
  30804. height: math.unit(3100.0, "inches")
  30805. },
  30806. {
  30807. name: "Megamacro",
  30808. height: math.unit(155000.0, "inches")
  30809. },
  30810. {
  30811. name: "Gigamacro",
  30812. height: math.unit(310000000.0, "inches")
  30813. }
  30814. ]
  30815. )
  30816. };
  30817. pokemonMakers["Spinarak"] = () => {
  30818. return makeCharacter(
  30819. "Spinarak",
  30820. "Pokemon",
  30821. {
  30822. "Spinarak": {
  30823. height: math.unit("20", "inches"),
  30824. weight: math.unit("18.7", "lbs"),
  30825. name: "Spinarak",
  30826. image: {
  30827. source: "./media/pokemon/Spinarak.svg"
  30828. },
  30829. rename: true
  30830. }
  30831. },
  30832. [
  30833. {
  30834. name: "Micro",
  30835. height: math.unit(2.0, "inches")
  30836. },
  30837. {
  30838. name: "Normal",
  30839. height: math.unit(20, "inches"),
  30840. default: true
  30841. },
  30842. {
  30843. name: "Macro",
  30844. height: math.unit(2000.0, "inches")
  30845. },
  30846. {
  30847. name: "Megamacro",
  30848. height: math.unit(100000.0, "inches")
  30849. },
  30850. {
  30851. name: "Gigamacro",
  30852. height: math.unit(200000000.0, "inches")
  30853. }
  30854. ]
  30855. )
  30856. };
  30857. pokemonMakers["Spinda"] = () => {
  30858. return makeCharacter(
  30859. "Spinda",
  30860. "Pokemon",
  30861. {
  30862. "Spinda": {
  30863. height: math.unit("43", "inches"),
  30864. weight: math.unit("11.0", "lbs"),
  30865. name: "Spinda",
  30866. image: {
  30867. source: "./media/pokemon/Spinda.svg"
  30868. },
  30869. rename: true
  30870. }
  30871. },
  30872. [
  30873. {
  30874. name: "Micro",
  30875. height: math.unit(4.3, "inches")
  30876. },
  30877. {
  30878. name: "Normal",
  30879. height: math.unit(43, "inches"),
  30880. default: true
  30881. },
  30882. {
  30883. name: "Macro",
  30884. height: math.unit(4300.0, "inches")
  30885. },
  30886. {
  30887. name: "Megamacro",
  30888. height: math.unit(215000.0, "inches")
  30889. },
  30890. {
  30891. name: "Gigamacro",
  30892. height: math.unit(430000000.0, "inches")
  30893. }
  30894. ]
  30895. )
  30896. };
  30897. pokemonMakers["Spiritomb"] = () => {
  30898. return makeCharacter(
  30899. "Spiritomb",
  30900. "Pokemon",
  30901. {
  30902. "Spiritomb": {
  30903. height: math.unit("39", "inches"),
  30904. weight: math.unit("238.1", "lbs"),
  30905. name: "Spiritomb",
  30906. image: {
  30907. source: "./media/pokemon/Spiritomb.svg"
  30908. },
  30909. rename: true
  30910. }
  30911. },
  30912. [
  30913. {
  30914. name: "Micro",
  30915. height: math.unit(3.9, "inches")
  30916. },
  30917. {
  30918. name: "Normal",
  30919. height: math.unit(39, "inches"),
  30920. default: true
  30921. },
  30922. {
  30923. name: "Macro",
  30924. height: math.unit(3900.0, "inches")
  30925. },
  30926. {
  30927. name: "Megamacro",
  30928. height: math.unit(195000.0, "inches")
  30929. },
  30930. {
  30931. name: "Gigamacro",
  30932. height: math.unit(390000000.0, "inches")
  30933. }
  30934. ]
  30935. )
  30936. };
  30937. pokemonMakers["Spoink"] = () => {
  30938. return makeCharacter(
  30939. "Spoink",
  30940. "Pokemon",
  30941. {
  30942. "Spoink": {
  30943. height: math.unit("28", "inches"),
  30944. weight: math.unit("67.5", "lbs"),
  30945. name: "Spoink",
  30946. image: {
  30947. source: "./media/pokemon/Spoink.svg"
  30948. },
  30949. rename: true
  30950. }
  30951. },
  30952. [
  30953. {
  30954. name: "Micro",
  30955. height: math.unit(2.8, "inches")
  30956. },
  30957. {
  30958. name: "Normal",
  30959. height: math.unit(28, "inches"),
  30960. default: true
  30961. },
  30962. {
  30963. name: "Macro",
  30964. height: math.unit(2800.0, "inches")
  30965. },
  30966. {
  30967. name: "Megamacro",
  30968. height: math.unit(140000.0, "inches")
  30969. },
  30970. {
  30971. name: "Gigamacro",
  30972. height: math.unit(280000000.0, "inches")
  30973. }
  30974. ]
  30975. )
  30976. };
  30977. pokemonMakers["Spritzee"] = () => {
  30978. return makeCharacter(
  30979. "Spritzee",
  30980. "Pokemon",
  30981. {
  30982. "Spritzee": {
  30983. height: math.unit("8", "inches"),
  30984. weight: math.unit("1.1", "lbs"),
  30985. name: "Spritzee",
  30986. image: {
  30987. source: "./media/pokemon/Spritzee.svg"
  30988. },
  30989. rename: true
  30990. }
  30991. },
  30992. [
  30993. {
  30994. name: "Micro",
  30995. height: math.unit(0.8, "inches")
  30996. },
  30997. {
  30998. name: "Normal",
  30999. height: math.unit(8, "inches"),
  31000. default: true
  31001. },
  31002. {
  31003. name: "Macro",
  31004. height: math.unit(800.0, "inches")
  31005. },
  31006. {
  31007. name: "Megamacro",
  31008. height: math.unit(40000.0, "inches")
  31009. },
  31010. {
  31011. name: "Gigamacro",
  31012. height: math.unit(80000000.0, "inches")
  31013. }
  31014. ]
  31015. )
  31016. };
  31017. pokemonMakers["Squirtle"] = () => {
  31018. return makeCharacter(
  31019. "Squirtle",
  31020. "Pokemon",
  31021. {
  31022. "Squirtle": {
  31023. height: math.unit("20", "inches"),
  31024. weight: math.unit("19.8", "lbs"),
  31025. name: "Squirtle",
  31026. image: {
  31027. source: "./media/pokemon/Squirtle.svg"
  31028. },
  31029. rename: true
  31030. }
  31031. },
  31032. [
  31033. {
  31034. name: "Micro",
  31035. height: math.unit(2.0, "inches")
  31036. },
  31037. {
  31038. name: "Normal",
  31039. height: math.unit(20, "inches"),
  31040. default: true
  31041. },
  31042. {
  31043. name: "Macro",
  31044. height: math.unit(2000.0, "inches")
  31045. },
  31046. {
  31047. name: "Megamacro",
  31048. height: math.unit(100000.0, "inches")
  31049. },
  31050. {
  31051. name: "Gigamacro",
  31052. height: math.unit(200000000.0, "inches")
  31053. }
  31054. ]
  31055. )
  31056. };
  31057. pokemonMakers["Stakataka"] = () => {
  31058. return makeCharacter(
  31059. "Stakataka",
  31060. "Pokemon",
  31061. {
  31062. "Stakataka": {
  31063. height: math.unit("217", "inches"),
  31064. weight: math.unit("1807.8", "lbs"),
  31065. name: "Stakataka",
  31066. image: {
  31067. source: "./media/pokemon/Stakataka.svg"
  31068. },
  31069. rename: true
  31070. }
  31071. },
  31072. [
  31073. {
  31074. name: "Micro",
  31075. height: math.unit(21.7, "inches")
  31076. },
  31077. {
  31078. name: "Normal",
  31079. height: math.unit(217, "inches"),
  31080. default: true
  31081. },
  31082. {
  31083. name: "Macro",
  31084. height: math.unit(21700.0, "inches")
  31085. },
  31086. {
  31087. name: "Megamacro",
  31088. height: math.unit(1085000.0, "inches")
  31089. },
  31090. {
  31091. name: "Gigamacro",
  31092. height: math.unit(2170000000.0, "inches")
  31093. }
  31094. ]
  31095. )
  31096. };
  31097. pokemonMakers["Stantler"] = () => {
  31098. return makeCharacter(
  31099. "Stantler",
  31100. "Pokemon",
  31101. {
  31102. "Stantler": {
  31103. height: math.unit("55", "inches"),
  31104. weight: math.unit("157.0", "lbs"),
  31105. name: "Stantler",
  31106. image: {
  31107. source: "./media/pokemon/Stantler.svg"
  31108. },
  31109. rename: true
  31110. }
  31111. },
  31112. [
  31113. {
  31114. name: "Micro",
  31115. height: math.unit(5.5, "inches")
  31116. },
  31117. {
  31118. name: "Normal",
  31119. height: math.unit(55, "inches"),
  31120. default: true
  31121. },
  31122. {
  31123. name: "Macro",
  31124. height: math.unit(5500.0, "inches")
  31125. },
  31126. {
  31127. name: "Megamacro",
  31128. height: math.unit(275000.0, "inches")
  31129. },
  31130. {
  31131. name: "Gigamacro",
  31132. height: math.unit(550000000.0, "inches")
  31133. }
  31134. ]
  31135. )
  31136. };
  31137. pokemonMakers["Staraptor"] = () => {
  31138. return makeCharacter(
  31139. "Staraptor",
  31140. "Pokemon",
  31141. {
  31142. "Staraptor": {
  31143. height: math.unit("47", "inches"),
  31144. weight: math.unit("54.9", "lbs"),
  31145. name: "Staraptor",
  31146. image: {
  31147. source: "./media/pokemon/Staraptor.svg"
  31148. },
  31149. rename: true
  31150. }
  31151. },
  31152. [
  31153. {
  31154. name: "Micro",
  31155. height: math.unit(4.7, "inches")
  31156. },
  31157. {
  31158. name: "Normal",
  31159. height: math.unit(47, "inches"),
  31160. default: true
  31161. },
  31162. {
  31163. name: "Macro",
  31164. height: math.unit(4700.0, "inches")
  31165. },
  31166. {
  31167. name: "Megamacro",
  31168. height: math.unit(235000.0, "inches")
  31169. },
  31170. {
  31171. name: "Gigamacro",
  31172. height: math.unit(470000000.0, "inches")
  31173. }
  31174. ]
  31175. )
  31176. };
  31177. pokemonMakers["Staravia"] = () => {
  31178. return makeCharacter(
  31179. "Staravia",
  31180. "Pokemon",
  31181. {
  31182. "Staravia": {
  31183. height: math.unit("24", "inches"),
  31184. weight: math.unit("34.2", "lbs"),
  31185. name: "Staravia",
  31186. image: {
  31187. source: "./media/pokemon/Staravia.svg"
  31188. },
  31189. rename: true
  31190. }
  31191. },
  31192. [
  31193. {
  31194. name: "Micro",
  31195. height: math.unit(2.4, "inches")
  31196. },
  31197. {
  31198. name: "Normal",
  31199. height: math.unit(24, "inches"),
  31200. default: true
  31201. },
  31202. {
  31203. name: "Macro",
  31204. height: math.unit(2400.0, "inches")
  31205. },
  31206. {
  31207. name: "Megamacro",
  31208. height: math.unit(120000.0, "inches")
  31209. },
  31210. {
  31211. name: "Gigamacro",
  31212. height: math.unit(240000000.0, "inches")
  31213. }
  31214. ]
  31215. )
  31216. };
  31217. pokemonMakers["Starly"] = () => {
  31218. return makeCharacter(
  31219. "Starly",
  31220. "Pokemon",
  31221. {
  31222. "Starly": {
  31223. height: math.unit("12", "inches"),
  31224. weight: math.unit("4.4", "lbs"),
  31225. name: "Starly",
  31226. image: {
  31227. source: "./media/pokemon/Starly.svg"
  31228. },
  31229. rename: true
  31230. }
  31231. },
  31232. [
  31233. {
  31234. name: "Micro",
  31235. height: math.unit(1.2, "inches")
  31236. },
  31237. {
  31238. name: "Normal",
  31239. height: math.unit(12, "inches"),
  31240. default: true
  31241. },
  31242. {
  31243. name: "Macro",
  31244. height: math.unit(1200.0, "inches")
  31245. },
  31246. {
  31247. name: "Megamacro",
  31248. height: math.unit(60000.0, "inches")
  31249. },
  31250. {
  31251. name: "Gigamacro",
  31252. height: math.unit(120000000.0, "inches")
  31253. }
  31254. ]
  31255. )
  31256. };
  31257. pokemonMakers["Starmie"] = () => {
  31258. return makeCharacter(
  31259. "Starmie",
  31260. "Pokemon",
  31261. {
  31262. "Starmie": {
  31263. height: math.unit("43", "inches"),
  31264. weight: math.unit("176.4", "lbs"),
  31265. name: "Starmie",
  31266. image: {
  31267. source: "./media/pokemon/Starmie.svg"
  31268. },
  31269. rename: true
  31270. }
  31271. },
  31272. [
  31273. {
  31274. name: "Micro",
  31275. height: math.unit(4.3, "inches")
  31276. },
  31277. {
  31278. name: "Normal",
  31279. height: math.unit(43, "inches"),
  31280. default: true
  31281. },
  31282. {
  31283. name: "Macro",
  31284. height: math.unit(4300.0, "inches")
  31285. },
  31286. {
  31287. name: "Megamacro",
  31288. height: math.unit(215000.0, "inches")
  31289. },
  31290. {
  31291. name: "Gigamacro",
  31292. height: math.unit(430000000.0, "inches")
  31293. }
  31294. ]
  31295. )
  31296. };
  31297. pokemonMakers["Staryu"] = () => {
  31298. return makeCharacter(
  31299. "Staryu",
  31300. "Pokemon",
  31301. {
  31302. "Staryu": {
  31303. height: math.unit("31", "inches"),
  31304. weight: math.unit("76.1", "lbs"),
  31305. name: "Staryu",
  31306. image: {
  31307. source: "./media/pokemon/Staryu.svg"
  31308. },
  31309. rename: true
  31310. }
  31311. },
  31312. [
  31313. {
  31314. name: "Micro",
  31315. height: math.unit(3.1, "inches")
  31316. },
  31317. {
  31318. name: "Normal",
  31319. height: math.unit(31, "inches"),
  31320. default: true
  31321. },
  31322. {
  31323. name: "Macro",
  31324. height: math.unit(3100.0, "inches")
  31325. },
  31326. {
  31327. name: "Megamacro",
  31328. height: math.unit(155000.0, "inches")
  31329. },
  31330. {
  31331. name: "Gigamacro",
  31332. height: math.unit(310000000.0, "inches")
  31333. }
  31334. ]
  31335. )
  31336. };
  31337. pokemonMakers["Steenee"] = () => {
  31338. return makeCharacter(
  31339. "Steenee",
  31340. "Pokemon",
  31341. {
  31342. "Steenee": {
  31343. height: math.unit("28", "inches"),
  31344. weight: math.unit("18.1", "lbs"),
  31345. name: "Steenee",
  31346. image: {
  31347. source: "./media/pokemon/Steenee.svg"
  31348. },
  31349. rename: true
  31350. }
  31351. },
  31352. [
  31353. {
  31354. name: "Micro",
  31355. height: math.unit(2.8, "inches")
  31356. },
  31357. {
  31358. name: "Normal",
  31359. height: math.unit(28, "inches"),
  31360. default: true
  31361. },
  31362. {
  31363. name: "Macro",
  31364. height: math.unit(2800.0, "inches")
  31365. },
  31366. {
  31367. name: "Megamacro",
  31368. height: math.unit(140000.0, "inches")
  31369. },
  31370. {
  31371. name: "Gigamacro",
  31372. height: math.unit(280000000.0, "inches")
  31373. }
  31374. ]
  31375. )
  31376. };
  31377. pokemonMakers["Stonjourner"] = () => {
  31378. return makeCharacter(
  31379. "Stonjourner",
  31380. "Pokemon",
  31381. {
  31382. "Stonjourner": {
  31383. height: math.unit("98", "inches"),
  31384. weight: math.unit("1146.4", "lbs"),
  31385. name: "Stonjourner",
  31386. image: {
  31387. source: "./media/pokemon/Stonjourner.svg"
  31388. },
  31389. rename: true
  31390. }
  31391. },
  31392. [
  31393. {
  31394. name: "Micro",
  31395. height: math.unit(9.8, "inches")
  31396. },
  31397. {
  31398. name: "Normal",
  31399. height: math.unit(98, "inches"),
  31400. default: true
  31401. },
  31402. {
  31403. name: "Macro",
  31404. height: math.unit(9800.0, "inches")
  31405. },
  31406. {
  31407. name: "Megamacro",
  31408. height: math.unit(490000.0, "inches")
  31409. },
  31410. {
  31411. name: "Gigamacro",
  31412. height: math.unit(980000000.0, "inches")
  31413. }
  31414. ]
  31415. )
  31416. };
  31417. pokemonMakers["Stoutland"] = () => {
  31418. return makeCharacter(
  31419. "Stoutland",
  31420. "Pokemon",
  31421. {
  31422. "Stoutland": {
  31423. height: math.unit("47", "inches"),
  31424. weight: math.unit("134.5", "lbs"),
  31425. name: "Stoutland",
  31426. image: {
  31427. source: "./media/pokemon/Stoutland.svg"
  31428. },
  31429. rename: true
  31430. }
  31431. },
  31432. [
  31433. {
  31434. name: "Micro",
  31435. height: math.unit(4.7, "inches")
  31436. },
  31437. {
  31438. name: "Normal",
  31439. height: math.unit(47, "inches"),
  31440. default: true
  31441. },
  31442. {
  31443. name: "Macro",
  31444. height: math.unit(4700.0, "inches")
  31445. },
  31446. {
  31447. name: "Megamacro",
  31448. height: math.unit(235000.0, "inches")
  31449. },
  31450. {
  31451. name: "Gigamacro",
  31452. height: math.unit(470000000.0, "inches")
  31453. }
  31454. ]
  31455. )
  31456. };
  31457. pokemonMakers["Stufful"] = () => {
  31458. return makeCharacter(
  31459. "Stufful",
  31460. "Pokemon",
  31461. {
  31462. "Stufful": {
  31463. height: math.unit("20", "inches"),
  31464. weight: math.unit("15.0", "lbs"),
  31465. name: "Stufful",
  31466. image: {
  31467. source: "./media/pokemon/Stufful.svg"
  31468. },
  31469. rename: true
  31470. }
  31471. },
  31472. [
  31473. {
  31474. name: "Micro",
  31475. height: math.unit(2.0, "inches")
  31476. },
  31477. {
  31478. name: "Normal",
  31479. height: math.unit(20, "inches"),
  31480. default: true
  31481. },
  31482. {
  31483. name: "Macro",
  31484. height: math.unit(2000.0, "inches")
  31485. },
  31486. {
  31487. name: "Megamacro",
  31488. height: math.unit(100000.0, "inches")
  31489. },
  31490. {
  31491. name: "Gigamacro",
  31492. height: math.unit(200000000.0, "inches")
  31493. }
  31494. ]
  31495. )
  31496. };
  31497. pokemonMakers["Stunfisk"] = () => {
  31498. return makeCharacter(
  31499. "Stunfisk",
  31500. "Pokemon",
  31501. {
  31502. "Galarian Form": {
  31503. height: math.unit("28", "inches"),
  31504. weight: math.unit("45.2", "lbs"),
  31505. name: "Galarian Form",
  31506. image: {
  31507. source: "./media/pokemon/Stunfisk - Galarian Form.svg"
  31508. },
  31509. rename: true
  31510. },
  31511. "Stunfisk": {
  31512. height: math.unit("28", "inches"),
  31513. weight: math.unit("24.3", "lbs"),
  31514. name: "Stunfisk",
  31515. image: {
  31516. source: "./media/pokemon/Stunfisk.svg"
  31517. },
  31518. rename: true
  31519. }
  31520. },
  31521. [
  31522. {
  31523. name: "Micro",
  31524. height: math.unit(2.8, "inches")
  31525. },
  31526. {
  31527. name: "Normal",
  31528. height: math.unit(28, "inches"),
  31529. default: true
  31530. },
  31531. {
  31532. name: "Macro",
  31533. height: math.unit(2800.0, "inches")
  31534. },
  31535. {
  31536. name: "Megamacro",
  31537. height: math.unit(140000.0, "inches")
  31538. },
  31539. {
  31540. name: "Gigamacro",
  31541. height: math.unit(280000000.0, "inches")
  31542. }
  31543. ]
  31544. )
  31545. };
  31546. pokemonMakers["Stunky"] = () => {
  31547. return makeCharacter(
  31548. "Stunky",
  31549. "Pokemon",
  31550. {
  31551. "Stunky": {
  31552. height: math.unit("16", "inches"),
  31553. weight: math.unit("42.3", "lbs"),
  31554. name: "Stunky",
  31555. image: {
  31556. source: "./media/pokemon/Stunky.svg"
  31557. },
  31558. rename: true
  31559. }
  31560. },
  31561. [
  31562. {
  31563. name: "Micro",
  31564. height: math.unit(1.6, "inches")
  31565. },
  31566. {
  31567. name: "Normal",
  31568. height: math.unit(16, "inches"),
  31569. default: true
  31570. },
  31571. {
  31572. name: "Macro",
  31573. height: math.unit(1600.0, "inches")
  31574. },
  31575. {
  31576. name: "Megamacro",
  31577. height: math.unit(80000.0, "inches")
  31578. },
  31579. {
  31580. name: "Gigamacro",
  31581. height: math.unit(160000000.0, "inches")
  31582. }
  31583. ]
  31584. )
  31585. };
  31586. pokemonMakers["Sudowoodo"] = () => {
  31587. return makeCharacter(
  31588. "Sudowoodo",
  31589. "Pokemon",
  31590. {
  31591. "Sudowoodo": {
  31592. height: math.unit("47", "inches"),
  31593. weight: math.unit("83.8", "lbs"),
  31594. name: "Sudowoodo",
  31595. image: {
  31596. source: "./media/pokemon/Sudowoodo.svg"
  31597. },
  31598. rename: true
  31599. }
  31600. },
  31601. [
  31602. {
  31603. name: "Micro",
  31604. height: math.unit(4.7, "inches")
  31605. },
  31606. {
  31607. name: "Normal",
  31608. height: math.unit(47, "inches"),
  31609. default: true
  31610. },
  31611. {
  31612. name: "Macro",
  31613. height: math.unit(4700.0, "inches")
  31614. },
  31615. {
  31616. name: "Megamacro",
  31617. height: math.unit(235000.0, "inches")
  31618. },
  31619. {
  31620. name: "Gigamacro",
  31621. height: math.unit(470000000.0, "inches")
  31622. }
  31623. ]
  31624. )
  31625. };
  31626. pokemonMakers["Suicune"] = () => {
  31627. return makeCharacter(
  31628. "Suicune",
  31629. "Pokemon",
  31630. {
  31631. "Suicune": {
  31632. height: math.unit("79", "inches"),
  31633. weight: math.unit("412.3", "lbs"),
  31634. name: "Suicune",
  31635. image: {
  31636. source: "./media/pokemon/Suicune.svg"
  31637. },
  31638. rename: true
  31639. }
  31640. },
  31641. [
  31642. {
  31643. name: "Micro",
  31644. height: math.unit(7.9, "inches")
  31645. },
  31646. {
  31647. name: "Normal",
  31648. height: math.unit(79, "inches"),
  31649. default: true
  31650. },
  31651. {
  31652. name: "Macro",
  31653. height: math.unit(7900.0, "inches")
  31654. },
  31655. {
  31656. name: "Megamacro",
  31657. height: math.unit(395000.0, "inches")
  31658. },
  31659. {
  31660. name: "Gigamacro",
  31661. height: math.unit(790000000.0, "inches")
  31662. }
  31663. ]
  31664. )
  31665. };
  31666. pokemonMakers["Sunflora"] = () => {
  31667. return makeCharacter(
  31668. "Sunflora",
  31669. "Pokemon",
  31670. {
  31671. "Sunflora": {
  31672. height: math.unit("31", "inches"),
  31673. weight: math.unit("18.7", "lbs"),
  31674. name: "Sunflora",
  31675. image: {
  31676. source: "./media/pokemon/Sunflora.svg"
  31677. },
  31678. rename: true
  31679. }
  31680. },
  31681. [
  31682. {
  31683. name: "Micro",
  31684. height: math.unit(3.1, "inches")
  31685. },
  31686. {
  31687. name: "Normal",
  31688. height: math.unit(31, "inches"),
  31689. default: true
  31690. },
  31691. {
  31692. name: "Macro",
  31693. height: math.unit(3100.0, "inches")
  31694. },
  31695. {
  31696. name: "Megamacro",
  31697. height: math.unit(155000.0, "inches")
  31698. },
  31699. {
  31700. name: "Gigamacro",
  31701. height: math.unit(310000000.0, "inches")
  31702. }
  31703. ]
  31704. )
  31705. };
  31706. pokemonMakers["Sunkern"] = () => {
  31707. return makeCharacter(
  31708. "Sunkern",
  31709. "Pokemon",
  31710. {
  31711. "Sunkern": {
  31712. height: math.unit("12", "inches"),
  31713. weight: math.unit("4.0", "lbs"),
  31714. name: "Sunkern",
  31715. image: {
  31716. source: "./media/pokemon/Sunkern.svg"
  31717. },
  31718. rename: true
  31719. }
  31720. },
  31721. [
  31722. {
  31723. name: "Micro",
  31724. height: math.unit(1.2, "inches")
  31725. },
  31726. {
  31727. name: "Normal",
  31728. height: math.unit(12, "inches"),
  31729. default: true
  31730. },
  31731. {
  31732. name: "Macro",
  31733. height: math.unit(1200.0, "inches")
  31734. },
  31735. {
  31736. name: "Megamacro",
  31737. height: math.unit(60000.0, "inches")
  31738. },
  31739. {
  31740. name: "Gigamacro",
  31741. height: math.unit(120000000.0, "inches")
  31742. }
  31743. ]
  31744. )
  31745. };
  31746. pokemonMakers["Surskit"] = () => {
  31747. return makeCharacter(
  31748. "Surskit",
  31749. "Pokemon",
  31750. {
  31751. "Surskit": {
  31752. height: math.unit("20", "inches"),
  31753. weight: math.unit("3.7", "lbs"),
  31754. name: "Surskit",
  31755. image: {
  31756. source: "./media/pokemon/Surskit.svg"
  31757. },
  31758. rename: true
  31759. }
  31760. },
  31761. [
  31762. {
  31763. name: "Micro",
  31764. height: math.unit(2.0, "inches")
  31765. },
  31766. {
  31767. name: "Normal",
  31768. height: math.unit(20, "inches"),
  31769. default: true
  31770. },
  31771. {
  31772. name: "Macro",
  31773. height: math.unit(2000.0, "inches")
  31774. },
  31775. {
  31776. name: "Megamacro",
  31777. height: math.unit(100000.0, "inches")
  31778. },
  31779. {
  31780. name: "Gigamacro",
  31781. height: math.unit(200000000.0, "inches")
  31782. }
  31783. ]
  31784. )
  31785. };
  31786. pokemonMakers["Swablu"] = () => {
  31787. return makeCharacter(
  31788. "Swablu",
  31789. "Pokemon",
  31790. {
  31791. "Swablu": {
  31792. height: math.unit("16", "inches"),
  31793. weight: math.unit("2.6", "lbs"),
  31794. name: "Swablu",
  31795. image: {
  31796. source: "./media/pokemon/Swablu.svg"
  31797. },
  31798. rename: true
  31799. }
  31800. },
  31801. [
  31802. {
  31803. name: "Micro",
  31804. height: math.unit(1.6, "inches")
  31805. },
  31806. {
  31807. name: "Normal",
  31808. height: math.unit(16, "inches"),
  31809. default: true
  31810. },
  31811. {
  31812. name: "Macro",
  31813. height: math.unit(1600.0, "inches")
  31814. },
  31815. {
  31816. name: "Megamacro",
  31817. height: math.unit(80000.0, "inches")
  31818. },
  31819. {
  31820. name: "Gigamacro",
  31821. height: math.unit(160000000.0, "inches")
  31822. }
  31823. ]
  31824. )
  31825. };
  31826. pokemonMakers["Swadloon"] = () => {
  31827. return makeCharacter(
  31828. "Swadloon",
  31829. "Pokemon",
  31830. {
  31831. "Swadloon": {
  31832. height: math.unit("20", "inches"),
  31833. weight: math.unit("16.1", "lbs"),
  31834. name: "Swadloon",
  31835. image: {
  31836. source: "./media/pokemon/Swadloon.svg"
  31837. },
  31838. rename: true
  31839. }
  31840. },
  31841. [
  31842. {
  31843. name: "Micro",
  31844. height: math.unit(2.0, "inches")
  31845. },
  31846. {
  31847. name: "Normal",
  31848. height: math.unit(20, "inches"),
  31849. default: true
  31850. },
  31851. {
  31852. name: "Macro",
  31853. height: math.unit(2000.0, "inches")
  31854. },
  31855. {
  31856. name: "Megamacro",
  31857. height: math.unit(100000.0, "inches")
  31858. },
  31859. {
  31860. name: "Gigamacro",
  31861. height: math.unit(200000000.0, "inches")
  31862. }
  31863. ]
  31864. )
  31865. };
  31866. pokemonMakers["Swalot"] = () => {
  31867. return makeCharacter(
  31868. "Swalot",
  31869. "Pokemon",
  31870. {
  31871. "Swalot": {
  31872. height: math.unit("67", "inches"),
  31873. weight: math.unit("176.4", "lbs"),
  31874. name: "Swalot",
  31875. image: {
  31876. source: "./media/pokemon/Swalot.svg"
  31877. },
  31878. rename: true
  31879. }
  31880. },
  31881. [
  31882. {
  31883. name: "Micro",
  31884. height: math.unit(6.7, "inches")
  31885. },
  31886. {
  31887. name: "Normal",
  31888. height: math.unit(67, "inches"),
  31889. default: true
  31890. },
  31891. {
  31892. name: "Macro",
  31893. height: math.unit(6700.0, "inches")
  31894. },
  31895. {
  31896. name: "Megamacro",
  31897. height: math.unit(335000.0, "inches")
  31898. },
  31899. {
  31900. name: "Gigamacro",
  31901. height: math.unit(670000000.0, "inches")
  31902. }
  31903. ]
  31904. )
  31905. };
  31906. pokemonMakers["Swanna"] = () => {
  31907. return makeCharacter(
  31908. "Swanna",
  31909. "Pokemon",
  31910. {
  31911. "Swanna": {
  31912. height: math.unit("51", "inches"),
  31913. weight: math.unit("53.4", "lbs"),
  31914. name: "Swanna",
  31915. image: {
  31916. source: "./media/pokemon/Swanna.svg"
  31917. },
  31918. rename: true
  31919. }
  31920. },
  31921. [
  31922. {
  31923. name: "Micro",
  31924. height: math.unit(5.1, "inches")
  31925. },
  31926. {
  31927. name: "Normal",
  31928. height: math.unit(51, "inches"),
  31929. default: true
  31930. },
  31931. {
  31932. name: "Macro",
  31933. height: math.unit(5100.0, "inches")
  31934. },
  31935. {
  31936. name: "Megamacro",
  31937. height: math.unit(255000.0, "inches")
  31938. },
  31939. {
  31940. name: "Gigamacro",
  31941. height: math.unit(510000000.0, "inches")
  31942. }
  31943. ]
  31944. )
  31945. };
  31946. pokemonMakers["Swellow"] = () => {
  31947. return makeCharacter(
  31948. "Swellow",
  31949. "Pokemon",
  31950. {
  31951. "Swellow": {
  31952. height: math.unit("28", "inches"),
  31953. weight: math.unit("43.7", "lbs"),
  31954. name: "Swellow",
  31955. image: {
  31956. source: "./media/pokemon/Swellow.svg"
  31957. },
  31958. rename: true
  31959. }
  31960. },
  31961. [
  31962. {
  31963. name: "Micro",
  31964. height: math.unit(2.8, "inches")
  31965. },
  31966. {
  31967. name: "Normal",
  31968. height: math.unit(28, "inches"),
  31969. default: true
  31970. },
  31971. {
  31972. name: "Macro",
  31973. height: math.unit(2800.0, "inches")
  31974. },
  31975. {
  31976. name: "Megamacro",
  31977. height: math.unit(140000.0, "inches")
  31978. },
  31979. {
  31980. name: "Gigamacro",
  31981. height: math.unit(280000000.0, "inches")
  31982. }
  31983. ]
  31984. )
  31985. };
  31986. pokemonMakers["Swinub"] = () => {
  31987. return makeCharacter(
  31988. "Swinub",
  31989. "Pokemon",
  31990. {
  31991. "Swinub": {
  31992. height: math.unit("16", "inches"),
  31993. weight: math.unit("14.3", "lbs"),
  31994. name: "Swinub",
  31995. image: {
  31996. source: "./media/pokemon/Swinub.svg"
  31997. },
  31998. rename: true
  31999. }
  32000. },
  32001. [
  32002. {
  32003. name: "Micro",
  32004. height: math.unit(1.6, "inches")
  32005. },
  32006. {
  32007. name: "Normal",
  32008. height: math.unit(16, "inches"),
  32009. default: true
  32010. },
  32011. {
  32012. name: "Macro",
  32013. height: math.unit(1600.0, "inches")
  32014. },
  32015. {
  32016. name: "Megamacro",
  32017. height: math.unit(80000.0, "inches")
  32018. },
  32019. {
  32020. name: "Gigamacro",
  32021. height: math.unit(160000000.0, "inches")
  32022. }
  32023. ]
  32024. )
  32025. };
  32026. pokemonMakers["Swirlix"] = () => {
  32027. return makeCharacter(
  32028. "Swirlix",
  32029. "Pokemon",
  32030. {
  32031. "Swirlix": {
  32032. height: math.unit("16", "inches"),
  32033. weight: math.unit("7.7", "lbs"),
  32034. name: "Swirlix",
  32035. image: {
  32036. source: "./media/pokemon/Swirlix.svg"
  32037. },
  32038. rename: true
  32039. }
  32040. },
  32041. [
  32042. {
  32043. name: "Micro",
  32044. height: math.unit(1.6, "inches")
  32045. },
  32046. {
  32047. name: "Normal",
  32048. height: math.unit(16, "inches"),
  32049. default: true
  32050. },
  32051. {
  32052. name: "Macro",
  32053. height: math.unit(1600.0, "inches")
  32054. },
  32055. {
  32056. name: "Megamacro",
  32057. height: math.unit(80000.0, "inches")
  32058. },
  32059. {
  32060. name: "Gigamacro",
  32061. height: math.unit(160000000.0, "inches")
  32062. }
  32063. ]
  32064. )
  32065. };
  32066. pokemonMakers["Swoobat"] = () => {
  32067. return makeCharacter(
  32068. "Swoobat",
  32069. "Pokemon",
  32070. {
  32071. "Swoobat": {
  32072. height: math.unit("35", "inches"),
  32073. weight: math.unit("23.1", "lbs"),
  32074. name: "Swoobat",
  32075. image: {
  32076. source: "./media/pokemon/Swoobat.svg"
  32077. },
  32078. rename: true
  32079. }
  32080. },
  32081. [
  32082. {
  32083. name: "Micro",
  32084. height: math.unit(3.5, "inches")
  32085. },
  32086. {
  32087. name: "Normal",
  32088. height: math.unit(35, "inches"),
  32089. default: true
  32090. },
  32091. {
  32092. name: "Macro",
  32093. height: math.unit(3500.0, "inches")
  32094. },
  32095. {
  32096. name: "Megamacro",
  32097. height: math.unit(175000.0, "inches")
  32098. },
  32099. {
  32100. name: "Gigamacro",
  32101. height: math.unit(350000000.0, "inches")
  32102. }
  32103. ]
  32104. )
  32105. };
  32106. pokemonMakers["Sylveon"] = () => {
  32107. return makeCharacter(
  32108. "Sylveon",
  32109. "Pokemon",
  32110. {
  32111. "Sylveon": {
  32112. height: math.unit("39", "inches"),
  32113. weight: math.unit("51.8", "lbs"),
  32114. name: "Sylveon",
  32115. image: {
  32116. source: "./media/pokemon/Sylveon.svg"
  32117. },
  32118. rename: true
  32119. }
  32120. },
  32121. [
  32122. {
  32123. name: "Micro",
  32124. height: math.unit(3.9, "inches")
  32125. },
  32126. {
  32127. name: "Normal",
  32128. height: math.unit(39, "inches"),
  32129. default: true
  32130. },
  32131. {
  32132. name: "Macro",
  32133. height: math.unit(3900.0, "inches")
  32134. },
  32135. {
  32136. name: "Megamacro",
  32137. height: math.unit(195000.0, "inches")
  32138. },
  32139. {
  32140. name: "Gigamacro",
  32141. height: math.unit(390000000.0, "inches")
  32142. }
  32143. ]
  32144. )
  32145. };
  32146. pokemonMakers["Taillow"] = () => {
  32147. return makeCharacter(
  32148. "Taillow",
  32149. "Pokemon",
  32150. {
  32151. "Taillow": {
  32152. height: math.unit("12", "inches"),
  32153. weight: math.unit("5.1", "lbs"),
  32154. name: "Taillow",
  32155. image: {
  32156. source: "./media/pokemon/Taillow.svg"
  32157. },
  32158. rename: true
  32159. }
  32160. },
  32161. [
  32162. {
  32163. name: "Micro",
  32164. height: math.unit(1.2, "inches")
  32165. },
  32166. {
  32167. name: "Normal",
  32168. height: math.unit(12, "inches"),
  32169. default: true
  32170. },
  32171. {
  32172. name: "Macro",
  32173. height: math.unit(1200.0, "inches")
  32174. },
  32175. {
  32176. name: "Megamacro",
  32177. height: math.unit(60000.0, "inches")
  32178. },
  32179. {
  32180. name: "Gigamacro",
  32181. height: math.unit(120000000.0, "inches")
  32182. }
  32183. ]
  32184. )
  32185. };
  32186. pokemonMakers["Talonflame"] = () => {
  32187. return makeCharacter(
  32188. "Talonflame",
  32189. "Pokemon",
  32190. {
  32191. "Talonflame": {
  32192. height: math.unit("47", "inches"),
  32193. weight: math.unit("54.0", "lbs"),
  32194. name: "Talonflame",
  32195. image: {
  32196. source: "./media/pokemon/Talonflame.svg"
  32197. },
  32198. rename: true
  32199. }
  32200. },
  32201. [
  32202. {
  32203. name: "Micro",
  32204. height: math.unit(4.7, "inches")
  32205. },
  32206. {
  32207. name: "Normal",
  32208. height: math.unit(47, "inches"),
  32209. default: true
  32210. },
  32211. {
  32212. name: "Macro",
  32213. height: math.unit(4700.0, "inches")
  32214. },
  32215. {
  32216. name: "Megamacro",
  32217. height: math.unit(235000.0, "inches")
  32218. },
  32219. {
  32220. name: "Gigamacro",
  32221. height: math.unit(470000000.0, "inches")
  32222. }
  32223. ]
  32224. )
  32225. };
  32226. pokemonMakers["Tangela"] = () => {
  32227. return makeCharacter(
  32228. "Tangela",
  32229. "Pokemon",
  32230. {
  32231. "Tangela": {
  32232. height: math.unit("39", "inches"),
  32233. weight: math.unit("77.2", "lbs"),
  32234. name: "Tangela",
  32235. image: {
  32236. source: "./media/pokemon/Tangela.svg"
  32237. },
  32238. rename: true
  32239. }
  32240. },
  32241. [
  32242. {
  32243. name: "Micro",
  32244. height: math.unit(3.9, "inches")
  32245. },
  32246. {
  32247. name: "Normal",
  32248. height: math.unit(39, "inches"),
  32249. default: true
  32250. },
  32251. {
  32252. name: "Macro",
  32253. height: math.unit(3900.0, "inches")
  32254. },
  32255. {
  32256. name: "Megamacro",
  32257. height: math.unit(195000.0, "inches")
  32258. },
  32259. {
  32260. name: "Gigamacro",
  32261. height: math.unit(390000000.0, "inches")
  32262. }
  32263. ]
  32264. )
  32265. };
  32266. pokemonMakers["Tangrowth"] = () => {
  32267. return makeCharacter(
  32268. "Tangrowth",
  32269. "Pokemon",
  32270. {
  32271. "Tangrowth": {
  32272. height: math.unit("79", "inches"),
  32273. weight: math.unit("283.5", "lbs"),
  32274. name: "Tangrowth",
  32275. image: {
  32276. source: "./media/pokemon/Tangrowth.svg"
  32277. },
  32278. rename: true
  32279. }
  32280. },
  32281. [
  32282. {
  32283. name: "Micro",
  32284. height: math.unit(7.9, "inches")
  32285. },
  32286. {
  32287. name: "Normal",
  32288. height: math.unit(79, "inches"),
  32289. default: true
  32290. },
  32291. {
  32292. name: "Macro",
  32293. height: math.unit(7900.0, "inches")
  32294. },
  32295. {
  32296. name: "Megamacro",
  32297. height: math.unit(395000.0, "inches")
  32298. },
  32299. {
  32300. name: "Gigamacro",
  32301. height: math.unit(790000000.0, "inches")
  32302. }
  32303. ]
  32304. )
  32305. };
  32306. pokemonMakers["Tapu"] = () => {
  32307. return makeCharacter(
  32308. "Tapu",
  32309. "Pokemon",
  32310. {
  32311. "Tapu Bulu": {
  32312. height: math.unit("75", "inches"),
  32313. weight: math.unit("100.3", "lbs"),
  32314. name: "Tapu Bulu",
  32315. image: {
  32316. source: "./media/pokemon/Tapu Bulu.svg"
  32317. },
  32318. rename: true
  32319. },
  32320. "Tapu Fini": {
  32321. height: math.unit("51", "inches"),
  32322. weight: math.unit("46.7", "lbs"),
  32323. name: "Tapu Fini",
  32324. image: {
  32325. source: "./media/pokemon/Tapu Fini.svg"
  32326. },
  32327. rename: true
  32328. },
  32329. "Tapu Koko": {
  32330. height: math.unit("71", "inches"),
  32331. weight: math.unit("45.2", "lbs"),
  32332. name: "Tapu Koko",
  32333. image: {
  32334. source: "./media/pokemon/Tapu Koko.svg"
  32335. },
  32336. rename: true
  32337. },
  32338. "Tapu Lele": {
  32339. height: math.unit("47", "inches"),
  32340. weight: math.unit("41.0", "lbs"),
  32341. name: "Tapu Lele",
  32342. image: {
  32343. source: "./media/pokemon/Tapu Lele.svg"
  32344. },
  32345. rename: true
  32346. }
  32347. },
  32348. [
  32349. {
  32350. name: "Micro",
  32351. height: math.unit(7.5, "inches")
  32352. },
  32353. {
  32354. name: "Normal",
  32355. height: math.unit(75, "inches"),
  32356. default: true
  32357. },
  32358. {
  32359. name: "Macro",
  32360. height: math.unit(7500.0, "inches")
  32361. },
  32362. {
  32363. name: "Megamacro",
  32364. height: math.unit(375000.0, "inches")
  32365. },
  32366. {
  32367. name: "Gigamacro",
  32368. height: math.unit(750000000.0, "inches")
  32369. }
  32370. ]
  32371. )
  32372. };
  32373. pokemonMakers["Tauros"] = () => {
  32374. return makeCharacter(
  32375. "Tauros",
  32376. "Pokemon",
  32377. {
  32378. "Tauros": {
  32379. height: math.unit("55", "inches"),
  32380. weight: math.unit("194.9", "lbs"),
  32381. name: "Tauros",
  32382. image: {
  32383. source: "./media/pokemon/Tauros.svg"
  32384. },
  32385. rename: true
  32386. }
  32387. },
  32388. [
  32389. {
  32390. name: "Micro",
  32391. height: math.unit(5.5, "inches")
  32392. },
  32393. {
  32394. name: "Normal",
  32395. height: math.unit(55, "inches"),
  32396. default: true
  32397. },
  32398. {
  32399. name: "Macro",
  32400. height: math.unit(5500.0, "inches")
  32401. },
  32402. {
  32403. name: "Megamacro",
  32404. height: math.unit(275000.0, "inches")
  32405. },
  32406. {
  32407. name: "Gigamacro",
  32408. height: math.unit(550000000.0, "inches")
  32409. }
  32410. ]
  32411. )
  32412. };
  32413. pokemonMakers["Teddiursa"] = () => {
  32414. return makeCharacter(
  32415. "Teddiursa",
  32416. "Pokemon",
  32417. {
  32418. "Teddiursa": {
  32419. height: math.unit("24", "inches"),
  32420. weight: math.unit("19.4", "lbs"),
  32421. name: "Teddiursa",
  32422. image: {
  32423. source: "./media/pokemon/Teddiursa.svg"
  32424. },
  32425. rename: true
  32426. }
  32427. },
  32428. [
  32429. {
  32430. name: "Micro",
  32431. height: math.unit(2.4, "inches")
  32432. },
  32433. {
  32434. name: "Normal",
  32435. height: math.unit(24, "inches"),
  32436. default: true
  32437. },
  32438. {
  32439. name: "Macro",
  32440. height: math.unit(2400.0, "inches")
  32441. },
  32442. {
  32443. name: "Megamacro",
  32444. height: math.unit(120000.0, "inches")
  32445. },
  32446. {
  32447. name: "Gigamacro",
  32448. height: math.unit(240000000.0, "inches")
  32449. }
  32450. ]
  32451. )
  32452. };
  32453. pokemonMakers["Tentacool"] = () => {
  32454. return makeCharacter(
  32455. "Tentacool",
  32456. "Pokemon",
  32457. {
  32458. "Tentacool": {
  32459. height: math.unit("35", "inches"),
  32460. weight: math.unit("100.3", "lbs"),
  32461. name: "Tentacool",
  32462. image: {
  32463. source: "./media/pokemon/Tentacool.svg"
  32464. },
  32465. rename: true
  32466. }
  32467. },
  32468. [
  32469. {
  32470. name: "Micro",
  32471. height: math.unit(3.5, "inches")
  32472. },
  32473. {
  32474. name: "Normal",
  32475. height: math.unit(35, "inches"),
  32476. default: true
  32477. },
  32478. {
  32479. name: "Macro",
  32480. height: math.unit(3500.0, "inches")
  32481. },
  32482. {
  32483. name: "Megamacro",
  32484. height: math.unit(175000.0, "inches")
  32485. },
  32486. {
  32487. name: "Gigamacro",
  32488. height: math.unit(350000000.0, "inches")
  32489. }
  32490. ]
  32491. )
  32492. };
  32493. pokemonMakers["Tentacruel"] = () => {
  32494. return makeCharacter(
  32495. "Tentacruel",
  32496. "Pokemon",
  32497. {
  32498. "Tentacruel": {
  32499. height: math.unit("63", "inches"),
  32500. weight: math.unit("121.3", "lbs"),
  32501. name: "Tentacruel",
  32502. image: {
  32503. source: "./media/pokemon/Tentacruel.svg"
  32504. },
  32505. rename: true
  32506. }
  32507. },
  32508. [
  32509. {
  32510. name: "Micro",
  32511. height: math.unit(6.3, "inches")
  32512. },
  32513. {
  32514. name: "Normal",
  32515. height: math.unit(63, "inches"),
  32516. default: true
  32517. },
  32518. {
  32519. name: "Macro",
  32520. height: math.unit(6300.0, "inches")
  32521. },
  32522. {
  32523. name: "Megamacro",
  32524. height: math.unit(315000.0, "inches")
  32525. },
  32526. {
  32527. name: "Gigamacro",
  32528. height: math.unit(630000000.0, "inches")
  32529. }
  32530. ]
  32531. )
  32532. };
  32533. pokemonMakers["Tepig"] = () => {
  32534. return makeCharacter(
  32535. "Tepig",
  32536. "Pokemon",
  32537. {
  32538. "Tepig": {
  32539. height: math.unit("20", "inches"),
  32540. weight: math.unit("21.8", "lbs"),
  32541. name: "Tepig",
  32542. image: {
  32543. source: "./media/pokemon/Tepig.svg"
  32544. },
  32545. rename: true
  32546. }
  32547. },
  32548. [
  32549. {
  32550. name: "Micro",
  32551. height: math.unit(2.0, "inches")
  32552. },
  32553. {
  32554. name: "Normal",
  32555. height: math.unit(20, "inches"),
  32556. default: true
  32557. },
  32558. {
  32559. name: "Macro",
  32560. height: math.unit(2000.0, "inches")
  32561. },
  32562. {
  32563. name: "Megamacro",
  32564. height: math.unit(100000.0, "inches")
  32565. },
  32566. {
  32567. name: "Gigamacro",
  32568. height: math.unit(200000000.0, "inches")
  32569. }
  32570. ]
  32571. )
  32572. };
  32573. pokemonMakers["Terrakion"] = () => {
  32574. return makeCharacter(
  32575. "Terrakion",
  32576. "Pokemon",
  32577. {
  32578. "Terrakion": {
  32579. height: math.unit("75", "inches"),
  32580. weight: math.unit("573.2", "lbs"),
  32581. name: "Terrakion",
  32582. image: {
  32583. source: "./media/pokemon/Terrakion.svg"
  32584. },
  32585. rename: true
  32586. }
  32587. },
  32588. [
  32589. {
  32590. name: "Micro",
  32591. height: math.unit(7.5, "inches")
  32592. },
  32593. {
  32594. name: "Normal",
  32595. height: math.unit(75, "inches"),
  32596. default: true
  32597. },
  32598. {
  32599. name: "Macro",
  32600. height: math.unit(7500.0, "inches")
  32601. },
  32602. {
  32603. name: "Megamacro",
  32604. height: math.unit(375000.0, "inches")
  32605. },
  32606. {
  32607. name: "Gigamacro",
  32608. height: math.unit(750000000.0, "inches")
  32609. }
  32610. ]
  32611. )
  32612. };
  32613. pokemonMakers["Thievul"] = () => {
  32614. return makeCharacter(
  32615. "Thievul",
  32616. "Pokemon",
  32617. {
  32618. "Thievul": {
  32619. height: math.unit("47", "inches"),
  32620. weight: math.unit("43.9", "lbs"),
  32621. name: "Thievul",
  32622. image: {
  32623. source: "./media/pokemon/Thievul.svg"
  32624. },
  32625. rename: true
  32626. }
  32627. },
  32628. [
  32629. {
  32630. name: "Micro",
  32631. height: math.unit(4.7, "inches")
  32632. },
  32633. {
  32634. name: "Normal",
  32635. height: math.unit(47, "inches"),
  32636. default: true
  32637. },
  32638. {
  32639. name: "Macro",
  32640. height: math.unit(4700.0, "inches")
  32641. },
  32642. {
  32643. name: "Megamacro",
  32644. height: math.unit(235000.0, "inches")
  32645. },
  32646. {
  32647. name: "Gigamacro",
  32648. height: math.unit(470000000.0, "inches")
  32649. }
  32650. ]
  32651. )
  32652. };
  32653. pokemonMakers["Throh"] = () => {
  32654. return makeCharacter(
  32655. "Throh",
  32656. "Pokemon",
  32657. {
  32658. "Throh": {
  32659. height: math.unit("51", "inches"),
  32660. weight: math.unit("122.4", "lbs"),
  32661. name: "Throh",
  32662. image: {
  32663. source: "./media/pokemon/Throh.svg"
  32664. },
  32665. rename: true
  32666. }
  32667. },
  32668. [
  32669. {
  32670. name: "Micro",
  32671. height: math.unit(5.1, "inches")
  32672. },
  32673. {
  32674. name: "Normal",
  32675. height: math.unit(51, "inches"),
  32676. default: true
  32677. },
  32678. {
  32679. name: "Macro",
  32680. height: math.unit(5100.0, "inches")
  32681. },
  32682. {
  32683. name: "Megamacro",
  32684. height: math.unit(255000.0, "inches")
  32685. },
  32686. {
  32687. name: "Gigamacro",
  32688. height: math.unit(510000000.0, "inches")
  32689. }
  32690. ]
  32691. )
  32692. };
  32693. pokemonMakers["Thundurus"] = () => {
  32694. return makeCharacter(
  32695. "Thundurus",
  32696. "Pokemon",
  32697. {
  32698. "Incarnate Forme": {
  32699. height: math.unit("59", "inches"),
  32700. weight: math.unit("134.5", "lbs"),
  32701. name: "Incarnate Forme",
  32702. image: {
  32703. source: "./media/pokemon/Thundurus - Incarnate Forme.svg"
  32704. },
  32705. rename: true
  32706. },
  32707. "Therian Forme": {
  32708. height: math.unit("118", "inches"),
  32709. weight: math.unit("134.5", "lbs"),
  32710. name: "Therian Forme",
  32711. image: {
  32712. source: "./media/pokemon/Thundurus - Therian Forme.svg"
  32713. },
  32714. rename: true
  32715. }
  32716. },
  32717. [
  32718. {
  32719. name: "Micro",
  32720. height: math.unit(5.9, "inches")
  32721. },
  32722. {
  32723. name: "Normal",
  32724. height: math.unit(59, "inches"),
  32725. default: true
  32726. },
  32727. {
  32728. name: "Macro",
  32729. height: math.unit(5900.0, "inches")
  32730. },
  32731. {
  32732. name: "Megamacro",
  32733. height: math.unit(295000.0, "inches")
  32734. },
  32735. {
  32736. name: "Gigamacro",
  32737. height: math.unit(590000000.0, "inches")
  32738. }
  32739. ]
  32740. )
  32741. };
  32742. pokemonMakers["Thwackey"] = () => {
  32743. return makeCharacter(
  32744. "Thwackey",
  32745. "Pokemon",
  32746. {
  32747. "Thwackey": {
  32748. height: math.unit("28", "inches"),
  32749. weight: math.unit("30.9", "lbs"),
  32750. name: "Thwackey",
  32751. image: {
  32752. source: "./media/pokemon/Thwackey.svg"
  32753. },
  32754. rename: true
  32755. }
  32756. },
  32757. [
  32758. {
  32759. name: "Micro",
  32760. height: math.unit(2.8, "inches")
  32761. },
  32762. {
  32763. name: "Normal",
  32764. height: math.unit(28, "inches"),
  32765. default: true
  32766. },
  32767. {
  32768. name: "Macro",
  32769. height: math.unit(2800.0, "inches")
  32770. },
  32771. {
  32772. name: "Megamacro",
  32773. height: math.unit(140000.0, "inches")
  32774. },
  32775. {
  32776. name: "Gigamacro",
  32777. height: math.unit(280000000.0, "inches")
  32778. }
  32779. ]
  32780. )
  32781. };
  32782. pokemonMakers["Timburr"] = () => {
  32783. return makeCharacter(
  32784. "Timburr",
  32785. "Pokemon",
  32786. {
  32787. "Timburr": {
  32788. height: math.unit("24", "inches"),
  32789. weight: math.unit("27.6", "lbs"),
  32790. name: "Timburr",
  32791. image: {
  32792. source: "./media/pokemon/Timburr.svg"
  32793. },
  32794. rename: true
  32795. }
  32796. },
  32797. [
  32798. {
  32799. name: "Micro",
  32800. height: math.unit(2.4, "inches")
  32801. },
  32802. {
  32803. name: "Normal",
  32804. height: math.unit(24, "inches"),
  32805. default: true
  32806. },
  32807. {
  32808. name: "Macro",
  32809. height: math.unit(2400.0, "inches")
  32810. },
  32811. {
  32812. name: "Megamacro",
  32813. height: math.unit(120000.0, "inches")
  32814. },
  32815. {
  32816. name: "Gigamacro",
  32817. height: math.unit(240000000.0, "inches")
  32818. }
  32819. ]
  32820. )
  32821. };
  32822. pokemonMakers["Tirtouga"] = () => {
  32823. return makeCharacter(
  32824. "Tirtouga",
  32825. "Pokemon",
  32826. {
  32827. "Tirtouga": {
  32828. height: math.unit("28", "inches"),
  32829. weight: math.unit("36.4", "lbs"),
  32830. name: "Tirtouga",
  32831. image: {
  32832. source: "./media/pokemon/Tirtouga.svg"
  32833. },
  32834. rename: true
  32835. }
  32836. },
  32837. [
  32838. {
  32839. name: "Micro",
  32840. height: math.unit(2.8, "inches")
  32841. },
  32842. {
  32843. name: "Normal",
  32844. height: math.unit(28, "inches"),
  32845. default: true
  32846. },
  32847. {
  32848. name: "Macro",
  32849. height: math.unit(2800.0, "inches")
  32850. },
  32851. {
  32852. name: "Megamacro",
  32853. height: math.unit(140000.0, "inches")
  32854. },
  32855. {
  32856. name: "Gigamacro",
  32857. height: math.unit(280000000.0, "inches")
  32858. }
  32859. ]
  32860. )
  32861. };
  32862. pokemonMakers["Togedemaru"] = () => {
  32863. return makeCharacter(
  32864. "Togedemaru",
  32865. "Pokemon",
  32866. {
  32867. "Togedemaru": {
  32868. height: math.unit("12", "inches"),
  32869. weight: math.unit("7.3", "lbs"),
  32870. name: "Togedemaru",
  32871. image: {
  32872. source: "./media/pokemon/Togedemaru.svg"
  32873. },
  32874. rename: true
  32875. }
  32876. },
  32877. [
  32878. {
  32879. name: "Micro",
  32880. height: math.unit(1.2, "inches")
  32881. },
  32882. {
  32883. name: "Normal",
  32884. height: math.unit(12, "inches"),
  32885. default: true
  32886. },
  32887. {
  32888. name: "Macro",
  32889. height: math.unit(1200.0, "inches")
  32890. },
  32891. {
  32892. name: "Megamacro",
  32893. height: math.unit(60000.0, "inches")
  32894. },
  32895. {
  32896. name: "Gigamacro",
  32897. height: math.unit(120000000.0, "inches")
  32898. }
  32899. ]
  32900. )
  32901. };
  32902. pokemonMakers["Togekiss"] = () => {
  32903. return makeCharacter(
  32904. "Togekiss",
  32905. "Pokemon",
  32906. {
  32907. "Togekiss": {
  32908. height: math.unit("59", "inches"),
  32909. weight: math.unit("83.8", "lbs"),
  32910. name: "Togekiss",
  32911. image: {
  32912. source: "./media/pokemon/Togekiss.svg"
  32913. },
  32914. rename: true
  32915. }
  32916. },
  32917. [
  32918. {
  32919. name: "Micro",
  32920. height: math.unit(5.9, "inches")
  32921. },
  32922. {
  32923. name: "Normal",
  32924. height: math.unit(59, "inches"),
  32925. default: true
  32926. },
  32927. {
  32928. name: "Macro",
  32929. height: math.unit(5900.0, "inches")
  32930. },
  32931. {
  32932. name: "Megamacro",
  32933. height: math.unit(295000.0, "inches")
  32934. },
  32935. {
  32936. name: "Gigamacro",
  32937. height: math.unit(590000000.0, "inches")
  32938. }
  32939. ]
  32940. )
  32941. };
  32942. pokemonMakers["Togepi"] = () => {
  32943. return makeCharacter(
  32944. "Togepi",
  32945. "Pokemon",
  32946. {
  32947. "Togepi": {
  32948. height: math.unit("12", "inches"),
  32949. weight: math.unit("3.3", "lbs"),
  32950. name: "Togepi",
  32951. image: {
  32952. source: "./media/pokemon/Togepi.svg"
  32953. },
  32954. rename: true
  32955. }
  32956. },
  32957. [
  32958. {
  32959. name: "Micro",
  32960. height: math.unit(1.2, "inches")
  32961. },
  32962. {
  32963. name: "Normal",
  32964. height: math.unit(12, "inches"),
  32965. default: true
  32966. },
  32967. {
  32968. name: "Macro",
  32969. height: math.unit(1200.0, "inches")
  32970. },
  32971. {
  32972. name: "Megamacro",
  32973. height: math.unit(60000.0, "inches")
  32974. },
  32975. {
  32976. name: "Gigamacro",
  32977. height: math.unit(120000000.0, "inches")
  32978. }
  32979. ]
  32980. )
  32981. };
  32982. pokemonMakers["Togetic"] = () => {
  32983. return makeCharacter(
  32984. "Togetic",
  32985. "Pokemon",
  32986. {
  32987. "Togetic": {
  32988. height: math.unit("24", "inches"),
  32989. weight: math.unit("7.1", "lbs"),
  32990. name: "Togetic",
  32991. image: {
  32992. source: "./media/pokemon/Togetic.svg"
  32993. },
  32994. rename: true
  32995. }
  32996. },
  32997. [
  32998. {
  32999. name: "Micro",
  33000. height: math.unit(2.4, "inches")
  33001. },
  33002. {
  33003. name: "Normal",
  33004. height: math.unit(24, "inches"),
  33005. default: true
  33006. },
  33007. {
  33008. name: "Macro",
  33009. height: math.unit(2400.0, "inches")
  33010. },
  33011. {
  33012. name: "Megamacro",
  33013. height: math.unit(120000.0, "inches")
  33014. },
  33015. {
  33016. name: "Gigamacro",
  33017. height: math.unit(240000000.0, "inches")
  33018. }
  33019. ]
  33020. )
  33021. };
  33022. pokemonMakers["Torchic"] = () => {
  33023. return makeCharacter(
  33024. "Torchic",
  33025. "Pokemon",
  33026. {
  33027. "Torchic": {
  33028. height: math.unit("16", "inches"),
  33029. weight: math.unit("5.5", "lbs"),
  33030. name: "Torchic",
  33031. image: {
  33032. source: "./media/pokemon/Torchic.svg"
  33033. },
  33034. rename: true
  33035. }
  33036. },
  33037. [
  33038. {
  33039. name: "Micro",
  33040. height: math.unit(1.6, "inches")
  33041. },
  33042. {
  33043. name: "Normal",
  33044. height: math.unit(16, "inches"),
  33045. default: true
  33046. },
  33047. {
  33048. name: "Macro",
  33049. height: math.unit(1600.0, "inches")
  33050. },
  33051. {
  33052. name: "Megamacro",
  33053. height: math.unit(80000.0, "inches")
  33054. },
  33055. {
  33056. name: "Gigamacro",
  33057. height: math.unit(160000000.0, "inches")
  33058. }
  33059. ]
  33060. )
  33061. };
  33062. pokemonMakers["Torkoal"] = () => {
  33063. return makeCharacter(
  33064. "Torkoal",
  33065. "Pokemon",
  33066. {
  33067. "Torkoal": {
  33068. height: math.unit("20", "inches"),
  33069. weight: math.unit("177.2", "lbs"),
  33070. name: "Torkoal",
  33071. image: {
  33072. source: "./media/pokemon/Torkoal.svg"
  33073. },
  33074. rename: true
  33075. }
  33076. },
  33077. [
  33078. {
  33079. name: "Micro",
  33080. height: math.unit(2.0, "inches")
  33081. },
  33082. {
  33083. name: "Normal",
  33084. height: math.unit(20, "inches"),
  33085. default: true
  33086. },
  33087. {
  33088. name: "Macro",
  33089. height: math.unit(2000.0, "inches")
  33090. },
  33091. {
  33092. name: "Megamacro",
  33093. height: math.unit(100000.0, "inches")
  33094. },
  33095. {
  33096. name: "Gigamacro",
  33097. height: math.unit(200000000.0, "inches")
  33098. }
  33099. ]
  33100. )
  33101. };
  33102. pokemonMakers["Tornadus"] = () => {
  33103. return makeCharacter(
  33104. "Tornadus",
  33105. "Pokemon",
  33106. {
  33107. "Incarnate Forme": {
  33108. height: math.unit("59", "inches"),
  33109. weight: math.unit("138.9", "lbs"),
  33110. name: "Incarnate Forme",
  33111. image: {
  33112. source: "./media/pokemon/Tornadus - Incarnate Forme.svg"
  33113. },
  33114. rename: true
  33115. },
  33116. "Therian Forme": {
  33117. height: math.unit("55", "inches"),
  33118. weight: math.unit("138.9", "lbs"),
  33119. name: "Therian Forme",
  33120. image: {
  33121. source: "./media/pokemon/Tornadus - Therian Forme.svg"
  33122. },
  33123. rename: true
  33124. }
  33125. },
  33126. [
  33127. {
  33128. name: "Micro",
  33129. height: math.unit(5.9, "inches")
  33130. },
  33131. {
  33132. name: "Normal",
  33133. height: math.unit(59, "inches"),
  33134. default: true
  33135. },
  33136. {
  33137. name: "Macro",
  33138. height: math.unit(5900.0, "inches")
  33139. },
  33140. {
  33141. name: "Megamacro",
  33142. height: math.unit(295000.0, "inches")
  33143. },
  33144. {
  33145. name: "Gigamacro",
  33146. height: math.unit(590000000.0, "inches")
  33147. }
  33148. ]
  33149. )
  33150. };
  33151. pokemonMakers["Torracat"] = () => {
  33152. return makeCharacter(
  33153. "Torracat",
  33154. "Pokemon",
  33155. {
  33156. "Torracat": {
  33157. height: math.unit("28", "inches"),
  33158. weight: math.unit("55.1", "lbs"),
  33159. name: "Torracat",
  33160. image: {
  33161. source: "./media/pokemon/Torracat.svg"
  33162. },
  33163. rename: true
  33164. }
  33165. },
  33166. [
  33167. {
  33168. name: "Micro",
  33169. height: math.unit(2.8, "inches")
  33170. },
  33171. {
  33172. name: "Normal",
  33173. height: math.unit(28, "inches"),
  33174. default: true
  33175. },
  33176. {
  33177. name: "Macro",
  33178. height: math.unit(2800.0, "inches")
  33179. },
  33180. {
  33181. name: "Megamacro",
  33182. height: math.unit(140000.0, "inches")
  33183. },
  33184. {
  33185. name: "Gigamacro",
  33186. height: math.unit(280000000.0, "inches")
  33187. }
  33188. ]
  33189. )
  33190. };
  33191. pokemonMakers["Torterra"] = () => {
  33192. return makeCharacter(
  33193. "Torterra",
  33194. "Pokemon",
  33195. {
  33196. "Torterra": {
  33197. height: math.unit("87", "inches"),
  33198. weight: math.unit("683.4", "lbs"),
  33199. name: "Torterra",
  33200. image: {
  33201. source: "./media/pokemon/Torterra.svg"
  33202. },
  33203. rename: true
  33204. }
  33205. },
  33206. [
  33207. {
  33208. name: "Micro",
  33209. height: math.unit(8.7, "inches")
  33210. },
  33211. {
  33212. name: "Normal",
  33213. height: math.unit(87, "inches"),
  33214. default: true
  33215. },
  33216. {
  33217. name: "Macro",
  33218. height: math.unit(8700.0, "inches")
  33219. },
  33220. {
  33221. name: "Megamacro",
  33222. height: math.unit(435000.0, "inches")
  33223. },
  33224. {
  33225. name: "Gigamacro",
  33226. height: math.unit(870000000.0, "inches")
  33227. }
  33228. ]
  33229. )
  33230. };
  33231. pokemonMakers["Totodile"] = () => {
  33232. return makeCharacter(
  33233. "Totodile",
  33234. "Pokemon",
  33235. {
  33236. "Totodile": {
  33237. height: math.unit("24", "inches"),
  33238. weight: math.unit("20.9", "lbs"),
  33239. name: "Totodile",
  33240. image: {
  33241. source: "./media/pokemon/Totodile.svg"
  33242. },
  33243. rename: true
  33244. }
  33245. },
  33246. [
  33247. {
  33248. name: "Micro",
  33249. height: math.unit(2.4, "inches")
  33250. },
  33251. {
  33252. name: "Normal",
  33253. height: math.unit(24, "inches"),
  33254. default: true
  33255. },
  33256. {
  33257. name: "Macro",
  33258. height: math.unit(2400.0, "inches")
  33259. },
  33260. {
  33261. name: "Megamacro",
  33262. height: math.unit(120000.0, "inches")
  33263. },
  33264. {
  33265. name: "Gigamacro",
  33266. height: math.unit(240000000.0, "inches")
  33267. }
  33268. ]
  33269. )
  33270. };
  33271. pokemonMakers["Toucannon"] = () => {
  33272. return makeCharacter(
  33273. "Toucannon",
  33274. "Pokemon",
  33275. {
  33276. "Toucannon": {
  33277. height: math.unit("43", "inches"),
  33278. weight: math.unit("57.3", "lbs"),
  33279. name: "Toucannon",
  33280. image: {
  33281. source: "./media/pokemon/Toucannon.svg"
  33282. },
  33283. rename: true
  33284. }
  33285. },
  33286. [
  33287. {
  33288. name: "Micro",
  33289. height: math.unit(4.3, "inches")
  33290. },
  33291. {
  33292. name: "Normal",
  33293. height: math.unit(43, "inches"),
  33294. default: true
  33295. },
  33296. {
  33297. name: "Macro",
  33298. height: math.unit(4300.0, "inches")
  33299. },
  33300. {
  33301. name: "Megamacro",
  33302. height: math.unit(215000.0, "inches")
  33303. },
  33304. {
  33305. name: "Gigamacro",
  33306. height: math.unit(430000000.0, "inches")
  33307. }
  33308. ]
  33309. )
  33310. };
  33311. pokemonMakers["Toxapex"] = () => {
  33312. return makeCharacter(
  33313. "Toxapex",
  33314. "Pokemon",
  33315. {
  33316. "Toxapex": {
  33317. height: math.unit("28", "inches"),
  33318. weight: math.unit("32.0", "lbs"),
  33319. name: "Toxapex",
  33320. image: {
  33321. source: "./media/pokemon/Toxapex.svg"
  33322. },
  33323. rename: true
  33324. }
  33325. },
  33326. [
  33327. {
  33328. name: "Micro",
  33329. height: math.unit(2.8, "inches")
  33330. },
  33331. {
  33332. name: "Normal",
  33333. height: math.unit(28, "inches"),
  33334. default: true
  33335. },
  33336. {
  33337. name: "Macro",
  33338. height: math.unit(2800.0, "inches")
  33339. },
  33340. {
  33341. name: "Megamacro",
  33342. height: math.unit(140000.0, "inches")
  33343. },
  33344. {
  33345. name: "Gigamacro",
  33346. height: math.unit(280000000.0, "inches")
  33347. }
  33348. ]
  33349. )
  33350. };
  33351. pokemonMakers["Toxel"] = () => {
  33352. return makeCharacter(
  33353. "Toxel",
  33354. "Pokemon",
  33355. {
  33356. "Toxel": {
  33357. height: math.unit("16", "inches"),
  33358. weight: math.unit("24.3", "lbs"),
  33359. name: "Toxel",
  33360. image: {
  33361. source: "./media/pokemon/Toxel.svg"
  33362. },
  33363. rename: true
  33364. }
  33365. },
  33366. [
  33367. {
  33368. name: "Micro",
  33369. height: math.unit(1.6, "inches")
  33370. },
  33371. {
  33372. name: "Normal",
  33373. height: math.unit(16, "inches"),
  33374. default: true
  33375. },
  33376. {
  33377. name: "Macro",
  33378. height: math.unit(1600.0, "inches")
  33379. },
  33380. {
  33381. name: "Megamacro",
  33382. height: math.unit(80000.0, "inches")
  33383. },
  33384. {
  33385. name: "Gigamacro",
  33386. height: math.unit(160000000.0, "inches")
  33387. }
  33388. ]
  33389. )
  33390. };
  33391. pokemonMakers["Toxicroak"] = () => {
  33392. return makeCharacter(
  33393. "Toxicroak",
  33394. "Pokemon",
  33395. {
  33396. "Toxicroak": {
  33397. height: math.unit("51", "inches"),
  33398. weight: math.unit("97.9", "lbs"),
  33399. name: "Toxicroak",
  33400. image: {
  33401. source: "./media/pokemon/Toxicroak.svg"
  33402. },
  33403. rename: true
  33404. }
  33405. },
  33406. [
  33407. {
  33408. name: "Micro",
  33409. height: math.unit(5.1, "inches")
  33410. },
  33411. {
  33412. name: "Normal",
  33413. height: math.unit(51, "inches"),
  33414. default: true
  33415. },
  33416. {
  33417. name: "Macro",
  33418. height: math.unit(5100.0, "inches")
  33419. },
  33420. {
  33421. name: "Megamacro",
  33422. height: math.unit(255000.0, "inches")
  33423. },
  33424. {
  33425. name: "Gigamacro",
  33426. height: math.unit(510000000.0, "inches")
  33427. }
  33428. ]
  33429. )
  33430. };
  33431. pokemonMakers["Tranquill"] = () => {
  33432. return makeCharacter(
  33433. "Tranquill",
  33434. "Pokemon",
  33435. {
  33436. "Tranquill": {
  33437. height: math.unit("24", "inches"),
  33438. weight: math.unit("33.1", "lbs"),
  33439. name: "Tranquill",
  33440. image: {
  33441. source: "./media/pokemon/Tranquill.svg"
  33442. },
  33443. rename: true
  33444. }
  33445. },
  33446. [
  33447. {
  33448. name: "Micro",
  33449. height: math.unit(2.4, "inches")
  33450. },
  33451. {
  33452. name: "Normal",
  33453. height: math.unit(24, "inches"),
  33454. default: true
  33455. },
  33456. {
  33457. name: "Macro",
  33458. height: math.unit(2400.0, "inches")
  33459. },
  33460. {
  33461. name: "Megamacro",
  33462. height: math.unit(120000.0, "inches")
  33463. },
  33464. {
  33465. name: "Gigamacro",
  33466. height: math.unit(240000000.0, "inches")
  33467. }
  33468. ]
  33469. )
  33470. };
  33471. pokemonMakers["Trapinch"] = () => {
  33472. return makeCharacter(
  33473. "Trapinch",
  33474. "Pokemon",
  33475. {
  33476. "Trapinch": {
  33477. height: math.unit("28", "inches"),
  33478. weight: math.unit("33.1", "lbs"),
  33479. name: "Trapinch",
  33480. image: {
  33481. source: "./media/pokemon/Trapinch.svg"
  33482. },
  33483. rename: true
  33484. }
  33485. },
  33486. [
  33487. {
  33488. name: "Micro",
  33489. height: math.unit(2.8, "inches")
  33490. },
  33491. {
  33492. name: "Normal",
  33493. height: math.unit(28, "inches"),
  33494. default: true
  33495. },
  33496. {
  33497. name: "Macro",
  33498. height: math.unit(2800.0, "inches")
  33499. },
  33500. {
  33501. name: "Megamacro",
  33502. height: math.unit(140000.0, "inches")
  33503. },
  33504. {
  33505. name: "Gigamacro",
  33506. height: math.unit(280000000.0, "inches")
  33507. }
  33508. ]
  33509. )
  33510. };
  33511. pokemonMakers["Treecko"] = () => {
  33512. return makeCharacter(
  33513. "Treecko",
  33514. "Pokemon",
  33515. {
  33516. "Treecko": {
  33517. height: math.unit("20", "inches"),
  33518. weight: math.unit("11.0", "lbs"),
  33519. name: "Treecko",
  33520. image: {
  33521. source: "./media/pokemon/Treecko.svg"
  33522. },
  33523. rename: true
  33524. }
  33525. },
  33526. [
  33527. {
  33528. name: "Micro",
  33529. height: math.unit(2.0, "inches")
  33530. },
  33531. {
  33532. name: "Normal",
  33533. height: math.unit(20, "inches"),
  33534. default: true
  33535. },
  33536. {
  33537. name: "Macro",
  33538. height: math.unit(2000.0, "inches")
  33539. },
  33540. {
  33541. name: "Megamacro",
  33542. height: math.unit(100000.0, "inches")
  33543. },
  33544. {
  33545. name: "Gigamacro",
  33546. height: math.unit(200000000.0, "inches")
  33547. }
  33548. ]
  33549. )
  33550. };
  33551. pokemonMakers["Trevenant"] = () => {
  33552. return makeCharacter(
  33553. "Trevenant",
  33554. "Pokemon",
  33555. {
  33556. "Trevenant": {
  33557. height: math.unit("59", "inches"),
  33558. weight: math.unit("156.5", "lbs"),
  33559. name: "Trevenant",
  33560. image: {
  33561. source: "./media/pokemon/Trevenant.svg"
  33562. },
  33563. rename: true
  33564. }
  33565. },
  33566. [
  33567. {
  33568. name: "Micro",
  33569. height: math.unit(5.9, "inches")
  33570. },
  33571. {
  33572. name: "Normal",
  33573. height: math.unit(59, "inches"),
  33574. default: true
  33575. },
  33576. {
  33577. name: "Macro",
  33578. height: math.unit(5900.0, "inches")
  33579. },
  33580. {
  33581. name: "Megamacro",
  33582. height: math.unit(295000.0, "inches")
  33583. },
  33584. {
  33585. name: "Gigamacro",
  33586. height: math.unit(590000000.0, "inches")
  33587. }
  33588. ]
  33589. )
  33590. };
  33591. pokemonMakers["Tropius"] = () => {
  33592. return makeCharacter(
  33593. "Tropius",
  33594. "Pokemon",
  33595. {
  33596. "Tropius": {
  33597. height: math.unit("79", "inches"),
  33598. weight: math.unit("220.5", "lbs"),
  33599. name: "Tropius",
  33600. image: {
  33601. source: "./media/pokemon/Tropius.svg"
  33602. },
  33603. rename: true
  33604. }
  33605. },
  33606. [
  33607. {
  33608. name: "Micro",
  33609. height: math.unit(7.9, "inches")
  33610. },
  33611. {
  33612. name: "Normal",
  33613. height: math.unit(79, "inches"),
  33614. default: true
  33615. },
  33616. {
  33617. name: "Macro",
  33618. height: math.unit(7900.0, "inches")
  33619. },
  33620. {
  33621. name: "Megamacro",
  33622. height: math.unit(395000.0, "inches")
  33623. },
  33624. {
  33625. name: "Gigamacro",
  33626. height: math.unit(790000000.0, "inches")
  33627. }
  33628. ]
  33629. )
  33630. };
  33631. pokemonMakers["Trubbish"] = () => {
  33632. return makeCharacter(
  33633. "Trubbish",
  33634. "Pokemon",
  33635. {
  33636. "Trubbish": {
  33637. height: math.unit("24", "inches"),
  33638. weight: math.unit("68.3", "lbs"),
  33639. name: "Trubbish",
  33640. image: {
  33641. source: "./media/pokemon/Trubbish.svg"
  33642. },
  33643. rename: true
  33644. }
  33645. },
  33646. [
  33647. {
  33648. name: "Micro",
  33649. height: math.unit(2.4, "inches")
  33650. },
  33651. {
  33652. name: "Normal",
  33653. height: math.unit(24, "inches"),
  33654. default: true
  33655. },
  33656. {
  33657. name: "Macro",
  33658. height: math.unit(2400.0, "inches")
  33659. },
  33660. {
  33661. name: "Megamacro",
  33662. height: math.unit(120000.0, "inches")
  33663. },
  33664. {
  33665. name: "Gigamacro",
  33666. height: math.unit(240000000.0, "inches")
  33667. }
  33668. ]
  33669. )
  33670. };
  33671. pokemonMakers["Trumbeak"] = () => {
  33672. return makeCharacter(
  33673. "Trumbeak",
  33674. "Pokemon",
  33675. {
  33676. "Trumbeak": {
  33677. height: math.unit("24", "inches"),
  33678. weight: math.unit("32.6", "lbs"),
  33679. name: "Trumbeak",
  33680. image: {
  33681. source: "./media/pokemon/Trumbeak.svg"
  33682. },
  33683. rename: true
  33684. }
  33685. },
  33686. [
  33687. {
  33688. name: "Micro",
  33689. height: math.unit(2.4, "inches")
  33690. },
  33691. {
  33692. name: "Normal",
  33693. height: math.unit(24, "inches"),
  33694. default: true
  33695. },
  33696. {
  33697. name: "Macro",
  33698. height: math.unit(2400.0, "inches")
  33699. },
  33700. {
  33701. name: "Megamacro",
  33702. height: math.unit(120000.0, "inches")
  33703. },
  33704. {
  33705. name: "Gigamacro",
  33706. height: math.unit(240000000.0, "inches")
  33707. }
  33708. ]
  33709. )
  33710. };
  33711. pokemonMakers["Tsareena"] = () => {
  33712. return makeCharacter(
  33713. "Tsareena",
  33714. "Pokemon",
  33715. {
  33716. "Tsareena": {
  33717. height: math.unit("47", "inches"),
  33718. weight: math.unit("47.2", "lbs"),
  33719. name: "Tsareena",
  33720. image: {
  33721. source: "./media/pokemon/Tsareena.svg"
  33722. },
  33723. rename: true
  33724. }
  33725. },
  33726. [
  33727. {
  33728. name: "Micro",
  33729. height: math.unit(4.7, "inches")
  33730. },
  33731. {
  33732. name: "Normal",
  33733. height: math.unit(47, "inches"),
  33734. default: true
  33735. },
  33736. {
  33737. name: "Macro",
  33738. height: math.unit(4700.0, "inches")
  33739. },
  33740. {
  33741. name: "Megamacro",
  33742. height: math.unit(235000.0, "inches")
  33743. },
  33744. {
  33745. name: "Gigamacro",
  33746. height: math.unit(470000000.0, "inches")
  33747. }
  33748. ]
  33749. )
  33750. };
  33751. pokemonMakers["Turtonator"] = () => {
  33752. return makeCharacter(
  33753. "Turtonator",
  33754. "Pokemon",
  33755. {
  33756. "Turtonator": {
  33757. height: math.unit("79", "inches"),
  33758. weight: math.unit("467.4", "lbs"),
  33759. name: "Turtonator",
  33760. image: {
  33761. source: "./media/pokemon/Turtonator.svg"
  33762. },
  33763. rename: true
  33764. }
  33765. },
  33766. [
  33767. {
  33768. name: "Micro",
  33769. height: math.unit(7.9, "inches")
  33770. },
  33771. {
  33772. name: "Normal",
  33773. height: math.unit(79, "inches"),
  33774. default: true
  33775. },
  33776. {
  33777. name: "Macro",
  33778. height: math.unit(7900.0, "inches")
  33779. },
  33780. {
  33781. name: "Megamacro",
  33782. height: math.unit(395000.0, "inches")
  33783. },
  33784. {
  33785. name: "Gigamacro",
  33786. height: math.unit(790000000.0, "inches")
  33787. }
  33788. ]
  33789. )
  33790. };
  33791. pokemonMakers["Turtwig"] = () => {
  33792. return makeCharacter(
  33793. "Turtwig",
  33794. "Pokemon",
  33795. {
  33796. "Turtwig": {
  33797. height: math.unit("16", "inches"),
  33798. weight: math.unit("22.5", "lbs"),
  33799. name: "Turtwig",
  33800. image: {
  33801. source: "./media/pokemon/Turtwig.svg"
  33802. },
  33803. rename: true
  33804. }
  33805. },
  33806. [
  33807. {
  33808. name: "Micro",
  33809. height: math.unit(1.6, "inches")
  33810. },
  33811. {
  33812. name: "Normal",
  33813. height: math.unit(16, "inches"),
  33814. default: true
  33815. },
  33816. {
  33817. name: "Macro",
  33818. height: math.unit(1600.0, "inches")
  33819. },
  33820. {
  33821. name: "Megamacro",
  33822. height: math.unit(80000.0, "inches")
  33823. },
  33824. {
  33825. name: "Gigamacro",
  33826. height: math.unit(160000000.0, "inches")
  33827. }
  33828. ]
  33829. )
  33830. };
  33831. pokemonMakers["Tympole"] = () => {
  33832. return makeCharacter(
  33833. "Tympole",
  33834. "Pokemon",
  33835. {
  33836. "Tympole": {
  33837. height: math.unit("20", "inches"),
  33838. weight: math.unit("9.9", "lbs"),
  33839. name: "Tympole",
  33840. image: {
  33841. source: "./media/pokemon/Tympole.svg"
  33842. },
  33843. rename: true
  33844. }
  33845. },
  33846. [
  33847. {
  33848. name: "Micro",
  33849. height: math.unit(2.0, "inches")
  33850. },
  33851. {
  33852. name: "Normal",
  33853. height: math.unit(20, "inches"),
  33854. default: true
  33855. },
  33856. {
  33857. name: "Macro",
  33858. height: math.unit(2000.0, "inches")
  33859. },
  33860. {
  33861. name: "Megamacro",
  33862. height: math.unit(100000.0, "inches")
  33863. },
  33864. {
  33865. name: "Gigamacro",
  33866. height: math.unit(200000000.0, "inches")
  33867. }
  33868. ]
  33869. )
  33870. };
  33871. pokemonMakers["Tynamo"] = () => {
  33872. return makeCharacter(
  33873. "Tynamo",
  33874. "Pokemon",
  33875. {
  33876. "Tynamo": {
  33877. height: math.unit("8", "inches"),
  33878. weight: math.unit("0.7", "lbs"),
  33879. name: "Tynamo",
  33880. image: {
  33881. source: "./media/pokemon/Tynamo.svg"
  33882. },
  33883. rename: true
  33884. }
  33885. },
  33886. [
  33887. {
  33888. name: "Micro",
  33889. height: math.unit(0.8, "inches")
  33890. },
  33891. {
  33892. name: "Normal",
  33893. height: math.unit(8, "inches"),
  33894. default: true
  33895. },
  33896. {
  33897. name: "Macro",
  33898. height: math.unit(800.0, "inches")
  33899. },
  33900. {
  33901. name: "Megamacro",
  33902. height: math.unit(40000.0, "inches")
  33903. },
  33904. {
  33905. name: "Gigamacro",
  33906. height: math.unit(80000000.0, "inches")
  33907. }
  33908. ]
  33909. )
  33910. };
  33911. pokemonMakers["Typhlosion"] = () => {
  33912. return makeCharacter(
  33913. "Typhlosion",
  33914. "Pokemon",
  33915. {
  33916. "Typhlosion": {
  33917. height: math.unit("67", "inches"),
  33918. weight: math.unit("175.3", "lbs"),
  33919. name: "Typhlosion",
  33920. image: {
  33921. source: "./media/pokemon/Typhlosion.svg"
  33922. },
  33923. rename: true
  33924. }
  33925. },
  33926. [
  33927. {
  33928. name: "Micro",
  33929. height: math.unit(6.7, "inches")
  33930. },
  33931. {
  33932. name: "Normal",
  33933. height: math.unit(67, "inches"),
  33934. default: true
  33935. },
  33936. {
  33937. name: "Macro",
  33938. height: math.unit(6700.0, "inches")
  33939. },
  33940. {
  33941. name: "Megamacro",
  33942. height: math.unit(335000.0, "inches")
  33943. },
  33944. {
  33945. name: "Gigamacro",
  33946. height: math.unit(670000000.0, "inches")
  33947. }
  33948. ]
  33949. )
  33950. };
  33951. pokemonMakers["Tyrantrum"] = () => {
  33952. return makeCharacter(
  33953. "Tyrantrum",
  33954. "Pokemon",
  33955. {
  33956. "Tyrantrum": {
  33957. height: math.unit("98", "inches"),
  33958. weight: math.unit("595.2", "lbs"),
  33959. name: "Tyrantrum",
  33960. image: {
  33961. source: "./media/pokemon/Tyrantrum.svg"
  33962. },
  33963. rename: true
  33964. }
  33965. },
  33966. [
  33967. {
  33968. name: "Micro",
  33969. height: math.unit(9.8, "inches")
  33970. },
  33971. {
  33972. name: "Normal",
  33973. height: math.unit(98, "inches"),
  33974. default: true
  33975. },
  33976. {
  33977. name: "Macro",
  33978. height: math.unit(9800.0, "inches")
  33979. },
  33980. {
  33981. name: "Megamacro",
  33982. height: math.unit(490000.0, "inches")
  33983. },
  33984. {
  33985. name: "Gigamacro",
  33986. height: math.unit(980000000.0, "inches")
  33987. }
  33988. ]
  33989. )
  33990. };
  33991. pokemonMakers["Tyrogue"] = () => {
  33992. return makeCharacter(
  33993. "Tyrogue",
  33994. "Pokemon",
  33995. {
  33996. "Tyrogue": {
  33997. height: math.unit("28", "inches"),
  33998. weight: math.unit("46.3", "lbs"),
  33999. name: "Tyrogue",
  34000. image: {
  34001. source: "./media/pokemon/Tyrogue.svg"
  34002. },
  34003. rename: true
  34004. }
  34005. },
  34006. [
  34007. {
  34008. name: "Micro",
  34009. height: math.unit(2.8, "inches")
  34010. },
  34011. {
  34012. name: "Normal",
  34013. height: math.unit(28, "inches"),
  34014. default: true
  34015. },
  34016. {
  34017. name: "Macro",
  34018. height: math.unit(2800.0, "inches")
  34019. },
  34020. {
  34021. name: "Megamacro",
  34022. height: math.unit(140000.0, "inches")
  34023. },
  34024. {
  34025. name: "Gigamacro",
  34026. height: math.unit(280000000.0, "inches")
  34027. }
  34028. ]
  34029. )
  34030. };
  34031. pokemonMakers["Tyrunt"] = () => {
  34032. return makeCharacter(
  34033. "Tyrunt",
  34034. "Pokemon",
  34035. {
  34036. "Tyrunt": {
  34037. height: math.unit("31", "inches"),
  34038. weight: math.unit("57.3", "lbs"),
  34039. name: "Tyrunt",
  34040. image: {
  34041. source: "./media/pokemon/Tyrunt.svg"
  34042. },
  34043. rename: true
  34044. }
  34045. },
  34046. [
  34047. {
  34048. name: "Micro",
  34049. height: math.unit(3.1, "inches")
  34050. },
  34051. {
  34052. name: "Normal",
  34053. height: math.unit(31, "inches"),
  34054. default: true
  34055. },
  34056. {
  34057. name: "Macro",
  34058. height: math.unit(3100.0, "inches")
  34059. },
  34060. {
  34061. name: "Megamacro",
  34062. height: math.unit(155000.0, "inches")
  34063. },
  34064. {
  34065. name: "Gigamacro",
  34066. height: math.unit(310000000.0, "inches")
  34067. }
  34068. ]
  34069. )
  34070. };
  34071. pokemonMakers["Umbreon"] = () => {
  34072. return makeCharacter(
  34073. "Umbreon",
  34074. "Pokemon",
  34075. {
  34076. "Umbreon": {
  34077. height: math.unit("39", "inches"),
  34078. weight: math.unit("59.5", "lbs"),
  34079. name: "Umbreon",
  34080. image: {
  34081. source: "./media/pokemon/Umbreon.svg"
  34082. },
  34083. rename: true
  34084. }
  34085. },
  34086. [
  34087. {
  34088. name: "Micro",
  34089. height: math.unit(3.9, "inches")
  34090. },
  34091. {
  34092. name: "Normal",
  34093. height: math.unit(39, "inches"),
  34094. default: true
  34095. },
  34096. {
  34097. name: "Macro",
  34098. height: math.unit(3900.0, "inches")
  34099. },
  34100. {
  34101. name: "Megamacro",
  34102. height: math.unit(195000.0, "inches")
  34103. },
  34104. {
  34105. name: "Gigamacro",
  34106. height: math.unit(390000000.0, "inches")
  34107. }
  34108. ]
  34109. )
  34110. };
  34111. pokemonMakers["Unfezant"] = () => {
  34112. return makeCharacter(
  34113. "Unfezant",
  34114. "Pokemon",
  34115. {
  34116. "Unfezant": {
  34117. height: math.unit("47", "inches"),
  34118. weight: math.unit("63.9", "lbs"),
  34119. name: "Unfezant",
  34120. image: {
  34121. source: "./media/pokemon/Unfezant.svg"
  34122. },
  34123. rename: true
  34124. }
  34125. },
  34126. [
  34127. {
  34128. name: "Micro",
  34129. height: math.unit(4.7, "inches")
  34130. },
  34131. {
  34132. name: "Normal",
  34133. height: math.unit(47, "inches"),
  34134. default: true
  34135. },
  34136. {
  34137. name: "Macro",
  34138. height: math.unit(4700.0, "inches")
  34139. },
  34140. {
  34141. name: "Megamacro",
  34142. height: math.unit(235000.0, "inches")
  34143. },
  34144. {
  34145. name: "Gigamacro",
  34146. height: math.unit(470000000.0, "inches")
  34147. }
  34148. ]
  34149. )
  34150. };
  34151. pokemonMakers["Unown"] = () => {
  34152. return makeCharacter(
  34153. "Unown",
  34154. "Pokemon",
  34155. {
  34156. "Unown": {
  34157. height: math.unit("20", "inches"),
  34158. weight: math.unit("11.0", "lbs"),
  34159. name: "Unown",
  34160. image: {
  34161. source: "./media/pokemon/Unown.svg"
  34162. },
  34163. rename: true
  34164. }
  34165. },
  34166. [
  34167. {
  34168. name: "Micro",
  34169. height: math.unit(2.0, "inches")
  34170. },
  34171. {
  34172. name: "Normal",
  34173. height: math.unit(20, "inches"),
  34174. default: true
  34175. },
  34176. {
  34177. name: "Macro",
  34178. height: math.unit(2000.0, "inches")
  34179. },
  34180. {
  34181. name: "Megamacro",
  34182. height: math.unit(100000.0, "inches")
  34183. },
  34184. {
  34185. name: "Gigamacro",
  34186. height: math.unit(200000000.0, "inches")
  34187. }
  34188. ]
  34189. )
  34190. };
  34191. pokemonMakers["Ursaring"] = () => {
  34192. return makeCharacter(
  34193. "Ursaring",
  34194. "Pokemon",
  34195. {
  34196. "Ursaring": {
  34197. height: math.unit("71", "inches"),
  34198. weight: math.unit("277.3", "lbs"),
  34199. name: "Ursaring",
  34200. image: {
  34201. source: "./media/pokemon/Ursaring.svg"
  34202. },
  34203. rename: true
  34204. }
  34205. },
  34206. [
  34207. {
  34208. name: "Micro",
  34209. height: math.unit(7.1, "inches")
  34210. },
  34211. {
  34212. name: "Normal",
  34213. height: math.unit(71, "inches"),
  34214. default: true
  34215. },
  34216. {
  34217. name: "Macro",
  34218. height: math.unit(7100.0, "inches")
  34219. },
  34220. {
  34221. name: "Megamacro",
  34222. height: math.unit(355000.0, "inches")
  34223. },
  34224. {
  34225. name: "Gigamacro",
  34226. height: math.unit(710000000.0, "inches")
  34227. }
  34228. ]
  34229. )
  34230. };
  34231. pokemonMakers["Uxie"] = () => {
  34232. return makeCharacter(
  34233. "Uxie",
  34234. "Pokemon",
  34235. {
  34236. "Uxie": {
  34237. height: math.unit("12", "inches"),
  34238. weight: math.unit("0.7", "lbs"),
  34239. name: "Uxie",
  34240. image: {
  34241. source: "./media/pokemon/Uxie.svg"
  34242. },
  34243. rename: true
  34244. }
  34245. },
  34246. [
  34247. {
  34248. name: "Micro",
  34249. height: math.unit(1.2, "inches")
  34250. },
  34251. {
  34252. name: "Normal",
  34253. height: math.unit(12, "inches"),
  34254. default: true
  34255. },
  34256. {
  34257. name: "Macro",
  34258. height: math.unit(1200.0, "inches")
  34259. },
  34260. {
  34261. name: "Megamacro",
  34262. height: math.unit(60000.0, "inches")
  34263. },
  34264. {
  34265. name: "Gigamacro",
  34266. height: math.unit(120000000.0, "inches")
  34267. }
  34268. ]
  34269. )
  34270. };
  34271. pokemonMakers["Vanillish"] = () => {
  34272. return makeCharacter(
  34273. "Vanillish",
  34274. "Pokemon",
  34275. {
  34276. "Vanillish": {
  34277. height: math.unit("43", "inches"),
  34278. weight: math.unit("90.4", "lbs"),
  34279. name: "Vanillish",
  34280. image: {
  34281. source: "./media/pokemon/Vanillish.svg"
  34282. },
  34283. rename: true
  34284. }
  34285. },
  34286. [
  34287. {
  34288. name: "Micro",
  34289. height: math.unit(4.3, "inches")
  34290. },
  34291. {
  34292. name: "Normal",
  34293. height: math.unit(43, "inches"),
  34294. default: true
  34295. },
  34296. {
  34297. name: "Macro",
  34298. height: math.unit(4300.0, "inches")
  34299. },
  34300. {
  34301. name: "Megamacro",
  34302. height: math.unit(215000.0, "inches")
  34303. },
  34304. {
  34305. name: "Gigamacro",
  34306. height: math.unit(430000000.0, "inches")
  34307. }
  34308. ]
  34309. )
  34310. };
  34311. pokemonMakers["Vanillite"] = () => {
  34312. return makeCharacter(
  34313. "Vanillite",
  34314. "Pokemon",
  34315. {
  34316. "Vanillite": {
  34317. height: math.unit("16", "inches"),
  34318. weight: math.unit("12.6", "lbs"),
  34319. name: "Vanillite",
  34320. image: {
  34321. source: "./media/pokemon/Vanillite.svg"
  34322. },
  34323. rename: true
  34324. }
  34325. },
  34326. [
  34327. {
  34328. name: "Micro",
  34329. height: math.unit(1.6, "inches")
  34330. },
  34331. {
  34332. name: "Normal",
  34333. height: math.unit(16, "inches"),
  34334. default: true
  34335. },
  34336. {
  34337. name: "Macro",
  34338. height: math.unit(1600.0, "inches")
  34339. },
  34340. {
  34341. name: "Megamacro",
  34342. height: math.unit(80000.0, "inches")
  34343. },
  34344. {
  34345. name: "Gigamacro",
  34346. height: math.unit(160000000.0, "inches")
  34347. }
  34348. ]
  34349. )
  34350. };
  34351. pokemonMakers["Vanilluxe"] = () => {
  34352. return makeCharacter(
  34353. "Vanilluxe",
  34354. "Pokemon",
  34355. {
  34356. "Vanilluxe": {
  34357. height: math.unit("51", "inches"),
  34358. weight: math.unit("126.8", "lbs"),
  34359. name: "Vanilluxe",
  34360. image: {
  34361. source: "./media/pokemon/Vanilluxe.svg"
  34362. },
  34363. rename: true
  34364. }
  34365. },
  34366. [
  34367. {
  34368. name: "Micro",
  34369. height: math.unit(5.1, "inches")
  34370. },
  34371. {
  34372. name: "Normal",
  34373. height: math.unit(51, "inches"),
  34374. default: true
  34375. },
  34376. {
  34377. name: "Macro",
  34378. height: math.unit(5100.0, "inches")
  34379. },
  34380. {
  34381. name: "Megamacro",
  34382. height: math.unit(255000.0, "inches")
  34383. },
  34384. {
  34385. name: "Gigamacro",
  34386. height: math.unit(510000000.0, "inches")
  34387. }
  34388. ]
  34389. )
  34390. };
  34391. pokemonMakers["Vaporeon"] = () => {
  34392. return makeCharacter(
  34393. "Vaporeon",
  34394. "Pokemon",
  34395. {
  34396. "Vaporeon": {
  34397. height: math.unit("39", "inches"),
  34398. weight: math.unit("63.9", "lbs"),
  34399. name: "Vaporeon",
  34400. image: {
  34401. source: "./media/pokemon/Vaporeon.svg"
  34402. },
  34403. rename: true
  34404. }
  34405. },
  34406. [
  34407. {
  34408. name: "Micro",
  34409. height: math.unit(3.9, "inches")
  34410. },
  34411. {
  34412. name: "Normal",
  34413. height: math.unit(39, "inches"),
  34414. default: true
  34415. },
  34416. {
  34417. name: "Macro",
  34418. height: math.unit(3900.0, "inches")
  34419. },
  34420. {
  34421. name: "Megamacro",
  34422. height: math.unit(195000.0, "inches")
  34423. },
  34424. {
  34425. name: "Gigamacro",
  34426. height: math.unit(390000000.0, "inches")
  34427. }
  34428. ]
  34429. )
  34430. };
  34431. pokemonMakers["Venipede"] = () => {
  34432. return makeCharacter(
  34433. "Venipede",
  34434. "Pokemon",
  34435. {
  34436. "Venipede": {
  34437. height: math.unit("16", "inches"),
  34438. weight: math.unit("11.7", "lbs"),
  34439. name: "Venipede",
  34440. image: {
  34441. source: "./media/pokemon/Venipede.svg"
  34442. },
  34443. rename: true
  34444. }
  34445. },
  34446. [
  34447. {
  34448. name: "Micro",
  34449. height: math.unit(1.6, "inches")
  34450. },
  34451. {
  34452. name: "Normal",
  34453. height: math.unit(16, "inches"),
  34454. default: true
  34455. },
  34456. {
  34457. name: "Macro",
  34458. height: math.unit(1600.0, "inches")
  34459. },
  34460. {
  34461. name: "Megamacro",
  34462. height: math.unit(80000.0, "inches")
  34463. },
  34464. {
  34465. name: "Gigamacro",
  34466. height: math.unit(160000000.0, "inches")
  34467. }
  34468. ]
  34469. )
  34470. };
  34471. pokemonMakers["Venomoth"] = () => {
  34472. return makeCharacter(
  34473. "Venomoth",
  34474. "Pokemon",
  34475. {
  34476. "Venomoth": {
  34477. height: math.unit("59", "inches"),
  34478. weight: math.unit("27.6", "lbs"),
  34479. name: "Venomoth",
  34480. image: {
  34481. source: "./media/pokemon/Venomoth.svg"
  34482. },
  34483. rename: true
  34484. }
  34485. },
  34486. [
  34487. {
  34488. name: "Micro",
  34489. height: math.unit(5.9, "inches")
  34490. },
  34491. {
  34492. name: "Normal",
  34493. height: math.unit(59, "inches"),
  34494. default: true
  34495. },
  34496. {
  34497. name: "Macro",
  34498. height: math.unit(5900.0, "inches")
  34499. },
  34500. {
  34501. name: "Megamacro",
  34502. height: math.unit(295000.0, "inches")
  34503. },
  34504. {
  34505. name: "Gigamacro",
  34506. height: math.unit(590000000.0, "inches")
  34507. }
  34508. ]
  34509. )
  34510. };
  34511. pokemonMakers["Venonat"] = () => {
  34512. return makeCharacter(
  34513. "Venonat",
  34514. "Pokemon",
  34515. {
  34516. "Venonat": {
  34517. height: math.unit("39", "inches"),
  34518. weight: math.unit("66.1", "lbs"),
  34519. name: "Venonat",
  34520. image: {
  34521. source: "./media/pokemon/Venonat.svg"
  34522. },
  34523. rename: true
  34524. }
  34525. },
  34526. [
  34527. {
  34528. name: "Micro",
  34529. height: math.unit(3.9, "inches")
  34530. },
  34531. {
  34532. name: "Normal",
  34533. height: math.unit(39, "inches"),
  34534. default: true
  34535. },
  34536. {
  34537. name: "Macro",
  34538. height: math.unit(3900.0, "inches")
  34539. },
  34540. {
  34541. name: "Megamacro",
  34542. height: math.unit(195000.0, "inches")
  34543. },
  34544. {
  34545. name: "Gigamacro",
  34546. height: math.unit(390000000.0, "inches")
  34547. }
  34548. ]
  34549. )
  34550. };
  34551. pokemonMakers["Vespiquen"] = () => {
  34552. return makeCharacter(
  34553. "Vespiquen",
  34554. "Pokemon",
  34555. {
  34556. "Vespiquen": {
  34557. height: math.unit("47", "inches"),
  34558. weight: math.unit("84.9", "lbs"),
  34559. name: "Vespiquen",
  34560. image: {
  34561. source: "./media/pokemon/Vespiquen.svg"
  34562. },
  34563. rename: true
  34564. }
  34565. },
  34566. [
  34567. {
  34568. name: "Micro",
  34569. height: math.unit(4.7, "inches")
  34570. },
  34571. {
  34572. name: "Normal",
  34573. height: math.unit(47, "inches"),
  34574. default: true
  34575. },
  34576. {
  34577. name: "Macro",
  34578. height: math.unit(4700.0, "inches")
  34579. },
  34580. {
  34581. name: "Megamacro",
  34582. height: math.unit(235000.0, "inches")
  34583. },
  34584. {
  34585. name: "Gigamacro",
  34586. height: math.unit(470000000.0, "inches")
  34587. }
  34588. ]
  34589. )
  34590. };
  34591. pokemonMakers["Vibrava"] = () => {
  34592. return makeCharacter(
  34593. "Vibrava",
  34594. "Pokemon",
  34595. {
  34596. "Vibrava": {
  34597. height: math.unit("43", "inches"),
  34598. weight: math.unit("33.7", "lbs"),
  34599. name: "Vibrava",
  34600. image: {
  34601. source: "./media/pokemon/Vibrava.svg"
  34602. },
  34603. rename: true
  34604. }
  34605. },
  34606. [
  34607. {
  34608. name: "Micro",
  34609. height: math.unit(4.3, "inches")
  34610. },
  34611. {
  34612. name: "Normal",
  34613. height: math.unit(43, "inches"),
  34614. default: true
  34615. },
  34616. {
  34617. name: "Macro",
  34618. height: math.unit(4300.0, "inches")
  34619. },
  34620. {
  34621. name: "Megamacro",
  34622. height: math.unit(215000.0, "inches")
  34623. },
  34624. {
  34625. name: "Gigamacro",
  34626. height: math.unit(430000000.0, "inches")
  34627. }
  34628. ]
  34629. )
  34630. };
  34631. pokemonMakers["Victini"] = () => {
  34632. return makeCharacter(
  34633. "Victini",
  34634. "Pokemon",
  34635. {
  34636. "Victini": {
  34637. height: math.unit("16", "inches"),
  34638. weight: math.unit("8.8", "lbs"),
  34639. name: "Victini",
  34640. image: {
  34641. source: "./media/pokemon/Victini.svg"
  34642. },
  34643. rename: true
  34644. }
  34645. },
  34646. [
  34647. {
  34648. name: "Micro",
  34649. height: math.unit(1.6, "inches")
  34650. },
  34651. {
  34652. name: "Normal",
  34653. height: math.unit(16, "inches"),
  34654. default: true
  34655. },
  34656. {
  34657. name: "Macro",
  34658. height: math.unit(1600.0, "inches")
  34659. },
  34660. {
  34661. name: "Megamacro",
  34662. height: math.unit(80000.0, "inches")
  34663. },
  34664. {
  34665. name: "Gigamacro",
  34666. height: math.unit(160000000.0, "inches")
  34667. }
  34668. ]
  34669. )
  34670. };
  34671. pokemonMakers["Victreebel"] = () => {
  34672. return makeCharacter(
  34673. "Victreebel",
  34674. "Pokemon",
  34675. {
  34676. "Victreebel": {
  34677. height: math.unit("67", "inches"),
  34678. weight: math.unit("34.2", "lbs"),
  34679. name: "Victreebel",
  34680. image: {
  34681. source: "./media/pokemon/Victreebel.svg"
  34682. },
  34683. rename: true
  34684. }
  34685. },
  34686. [
  34687. {
  34688. name: "Micro",
  34689. height: math.unit(6.7, "inches")
  34690. },
  34691. {
  34692. name: "Normal",
  34693. height: math.unit(67, "inches"),
  34694. default: true
  34695. },
  34696. {
  34697. name: "Macro",
  34698. height: math.unit(6700.0, "inches")
  34699. },
  34700. {
  34701. name: "Megamacro",
  34702. height: math.unit(335000.0, "inches")
  34703. },
  34704. {
  34705. name: "Gigamacro",
  34706. height: math.unit(670000000.0, "inches")
  34707. }
  34708. ]
  34709. )
  34710. };
  34711. pokemonMakers["Vigoroth"] = () => {
  34712. return makeCharacter(
  34713. "Vigoroth",
  34714. "Pokemon",
  34715. {
  34716. "Vigoroth": {
  34717. height: math.unit("55", "inches"),
  34718. weight: math.unit("102.5", "lbs"),
  34719. name: "Vigoroth",
  34720. image: {
  34721. source: "./media/pokemon/Vigoroth.svg"
  34722. },
  34723. rename: true
  34724. }
  34725. },
  34726. [
  34727. {
  34728. name: "Micro",
  34729. height: math.unit(5.5, "inches")
  34730. },
  34731. {
  34732. name: "Normal",
  34733. height: math.unit(55, "inches"),
  34734. default: true
  34735. },
  34736. {
  34737. name: "Macro",
  34738. height: math.unit(5500.0, "inches")
  34739. },
  34740. {
  34741. name: "Megamacro",
  34742. height: math.unit(275000.0, "inches")
  34743. },
  34744. {
  34745. name: "Gigamacro",
  34746. height: math.unit(550000000.0, "inches")
  34747. }
  34748. ]
  34749. )
  34750. };
  34751. pokemonMakers["Vikavolt"] = () => {
  34752. return makeCharacter(
  34753. "Vikavolt",
  34754. "Pokemon",
  34755. {
  34756. "Vikavolt": {
  34757. height: math.unit("59", "inches"),
  34758. weight: math.unit("99.2", "lbs"),
  34759. name: "Vikavolt",
  34760. image: {
  34761. source: "./media/pokemon/Vikavolt.svg"
  34762. },
  34763. rename: true
  34764. }
  34765. },
  34766. [
  34767. {
  34768. name: "Micro",
  34769. height: math.unit(5.9, "inches")
  34770. },
  34771. {
  34772. name: "Normal",
  34773. height: math.unit(59, "inches"),
  34774. default: true
  34775. },
  34776. {
  34777. name: "Macro",
  34778. height: math.unit(5900.0, "inches")
  34779. },
  34780. {
  34781. name: "Megamacro",
  34782. height: math.unit(295000.0, "inches")
  34783. },
  34784. {
  34785. name: "Gigamacro",
  34786. height: math.unit(590000000.0, "inches")
  34787. }
  34788. ]
  34789. )
  34790. };
  34791. pokemonMakers["Vileplume"] = () => {
  34792. return makeCharacter(
  34793. "Vileplume",
  34794. "Pokemon",
  34795. {
  34796. "Vileplume": {
  34797. height: math.unit("47", "inches"),
  34798. weight: math.unit("41.0", "lbs"),
  34799. name: "Vileplume",
  34800. image: {
  34801. source: "./media/pokemon/Vileplume.svg"
  34802. },
  34803. rename: true
  34804. }
  34805. },
  34806. [
  34807. {
  34808. name: "Micro",
  34809. height: math.unit(4.7, "inches")
  34810. },
  34811. {
  34812. name: "Normal",
  34813. height: math.unit(47, "inches"),
  34814. default: true
  34815. },
  34816. {
  34817. name: "Macro",
  34818. height: math.unit(4700.0, "inches")
  34819. },
  34820. {
  34821. name: "Megamacro",
  34822. height: math.unit(235000.0, "inches")
  34823. },
  34824. {
  34825. name: "Gigamacro",
  34826. height: math.unit(470000000.0, "inches")
  34827. }
  34828. ]
  34829. )
  34830. };
  34831. pokemonMakers["Virizion"] = () => {
  34832. return makeCharacter(
  34833. "Virizion",
  34834. "Pokemon",
  34835. {
  34836. "Virizion": {
  34837. height: math.unit("79", "inches"),
  34838. weight: math.unit("440.9", "lbs"),
  34839. name: "Virizion",
  34840. image: {
  34841. source: "./media/pokemon/Virizion.svg"
  34842. },
  34843. rename: true
  34844. }
  34845. },
  34846. [
  34847. {
  34848. name: "Micro",
  34849. height: math.unit(7.9, "inches")
  34850. },
  34851. {
  34852. name: "Normal",
  34853. height: math.unit(79, "inches"),
  34854. default: true
  34855. },
  34856. {
  34857. name: "Macro",
  34858. height: math.unit(7900.0, "inches")
  34859. },
  34860. {
  34861. name: "Megamacro",
  34862. height: math.unit(395000.0, "inches")
  34863. },
  34864. {
  34865. name: "Gigamacro",
  34866. height: math.unit(790000000.0, "inches")
  34867. }
  34868. ]
  34869. )
  34870. };
  34871. pokemonMakers["Vivillon"] = () => {
  34872. return makeCharacter(
  34873. "Vivillon",
  34874. "Pokemon",
  34875. {
  34876. "Vivillon": {
  34877. height: math.unit("47", "inches"),
  34878. weight: math.unit("37.5", "lbs"),
  34879. name: "Vivillon",
  34880. image: {
  34881. source: "./media/pokemon/Vivillon.svg"
  34882. },
  34883. rename: true
  34884. }
  34885. },
  34886. [
  34887. {
  34888. name: "Micro",
  34889. height: math.unit(4.7, "inches")
  34890. },
  34891. {
  34892. name: "Normal",
  34893. height: math.unit(47, "inches"),
  34894. default: true
  34895. },
  34896. {
  34897. name: "Macro",
  34898. height: math.unit(4700.0, "inches")
  34899. },
  34900. {
  34901. name: "Megamacro",
  34902. height: math.unit(235000.0, "inches")
  34903. },
  34904. {
  34905. name: "Gigamacro",
  34906. height: math.unit(470000000.0, "inches")
  34907. }
  34908. ]
  34909. )
  34910. };
  34911. pokemonMakers["Volbeat"] = () => {
  34912. return makeCharacter(
  34913. "Volbeat",
  34914. "Pokemon",
  34915. {
  34916. "Volbeat": {
  34917. height: math.unit("28", "inches"),
  34918. weight: math.unit("39.0", "lbs"),
  34919. name: "Volbeat",
  34920. image: {
  34921. source: "./media/pokemon/Volbeat.svg"
  34922. },
  34923. rename: true
  34924. }
  34925. },
  34926. [
  34927. {
  34928. name: "Micro",
  34929. height: math.unit(2.8, "inches")
  34930. },
  34931. {
  34932. name: "Normal",
  34933. height: math.unit(28, "inches"),
  34934. default: true
  34935. },
  34936. {
  34937. name: "Macro",
  34938. height: math.unit(2800.0, "inches")
  34939. },
  34940. {
  34941. name: "Megamacro",
  34942. height: math.unit(140000.0, "inches")
  34943. },
  34944. {
  34945. name: "Gigamacro",
  34946. height: math.unit(280000000.0, "inches")
  34947. }
  34948. ]
  34949. )
  34950. };
  34951. pokemonMakers["Volcanion"] = () => {
  34952. return makeCharacter(
  34953. "Volcanion",
  34954. "Pokemon",
  34955. {
  34956. "Volcanion": {
  34957. height: math.unit("67", "inches"),
  34958. weight: math.unit("429.9", "lbs"),
  34959. name: "Volcanion",
  34960. image: {
  34961. source: "./media/pokemon/Volcanion.svg"
  34962. },
  34963. rename: true
  34964. }
  34965. },
  34966. [
  34967. {
  34968. name: "Micro",
  34969. height: math.unit(6.7, "inches")
  34970. },
  34971. {
  34972. name: "Normal",
  34973. height: math.unit(67, "inches"),
  34974. default: true
  34975. },
  34976. {
  34977. name: "Macro",
  34978. height: math.unit(6700.0, "inches")
  34979. },
  34980. {
  34981. name: "Megamacro",
  34982. height: math.unit(335000.0, "inches")
  34983. },
  34984. {
  34985. name: "Gigamacro",
  34986. height: math.unit(670000000.0, "inches")
  34987. }
  34988. ]
  34989. )
  34990. };
  34991. pokemonMakers["Volcarona"] = () => {
  34992. return makeCharacter(
  34993. "Volcarona",
  34994. "Pokemon",
  34995. {
  34996. "Volcarona": {
  34997. height: math.unit("63", "inches"),
  34998. weight: math.unit("101.4", "lbs"),
  34999. name: "Volcarona",
  35000. image: {
  35001. source: "./media/pokemon/Volcarona.svg"
  35002. },
  35003. rename: true
  35004. }
  35005. },
  35006. [
  35007. {
  35008. name: "Micro",
  35009. height: math.unit(6.3, "inches")
  35010. },
  35011. {
  35012. name: "Normal",
  35013. height: math.unit(63, "inches"),
  35014. default: true
  35015. },
  35016. {
  35017. name: "Macro",
  35018. height: math.unit(6300.0, "inches")
  35019. },
  35020. {
  35021. name: "Megamacro",
  35022. height: math.unit(315000.0, "inches")
  35023. },
  35024. {
  35025. name: "Gigamacro",
  35026. height: math.unit(630000000.0, "inches")
  35027. }
  35028. ]
  35029. )
  35030. };
  35031. pokemonMakers["Voltorb"] = () => {
  35032. return makeCharacter(
  35033. "Voltorb",
  35034. "Pokemon",
  35035. {
  35036. "Voltorb": {
  35037. height: math.unit("20", "inches"),
  35038. weight: math.unit("22.9", "lbs"),
  35039. name: "Voltorb",
  35040. image: {
  35041. source: "./media/pokemon/Voltorb.svg"
  35042. },
  35043. rename: true
  35044. }
  35045. },
  35046. [
  35047. {
  35048. name: "Micro",
  35049. height: math.unit(2.0, "inches")
  35050. },
  35051. {
  35052. name: "Normal",
  35053. height: math.unit(20, "inches"),
  35054. default: true
  35055. },
  35056. {
  35057. name: "Macro",
  35058. height: math.unit(2000.0, "inches")
  35059. },
  35060. {
  35061. name: "Megamacro",
  35062. height: math.unit(100000.0, "inches")
  35063. },
  35064. {
  35065. name: "Gigamacro",
  35066. height: math.unit(200000000.0, "inches")
  35067. }
  35068. ]
  35069. )
  35070. };
  35071. pokemonMakers["Vullaby"] = () => {
  35072. return makeCharacter(
  35073. "Vullaby",
  35074. "Pokemon",
  35075. {
  35076. "Vullaby": {
  35077. height: math.unit("20", "inches"),
  35078. weight: math.unit("19.8", "lbs"),
  35079. name: "Vullaby",
  35080. image: {
  35081. source: "./media/pokemon/Vullaby.svg"
  35082. },
  35083. rename: true
  35084. }
  35085. },
  35086. [
  35087. {
  35088. name: "Micro",
  35089. height: math.unit(2.0, "inches")
  35090. },
  35091. {
  35092. name: "Normal",
  35093. height: math.unit(20, "inches"),
  35094. default: true
  35095. },
  35096. {
  35097. name: "Macro",
  35098. height: math.unit(2000.0, "inches")
  35099. },
  35100. {
  35101. name: "Megamacro",
  35102. height: math.unit(100000.0, "inches")
  35103. },
  35104. {
  35105. name: "Gigamacro",
  35106. height: math.unit(200000000.0, "inches")
  35107. }
  35108. ]
  35109. )
  35110. };
  35111. pokemonMakers["Vulpix"] = () => {
  35112. return makeCharacter(
  35113. "Vulpix",
  35114. "Pokemon",
  35115. {
  35116. "Alola Form": {
  35117. height: math.unit("24", "inches"),
  35118. weight: math.unit("21.8", "lbs"),
  35119. name: "Alola Form",
  35120. image: {
  35121. source: "./media/pokemon/Vulpix - Alola Form.svg"
  35122. },
  35123. rename: true
  35124. },
  35125. "Vulpix": {
  35126. height: math.unit("24", "inches"),
  35127. weight: math.unit("21.8", "lbs"),
  35128. name: "Vulpix",
  35129. image: {
  35130. source: "./media/pokemon/Vulpix.svg"
  35131. },
  35132. rename: true
  35133. }
  35134. },
  35135. [
  35136. {
  35137. name: "Micro",
  35138. height: math.unit(2.4, "inches")
  35139. },
  35140. {
  35141. name: "Normal",
  35142. height: math.unit(24, "inches"),
  35143. default: true
  35144. },
  35145. {
  35146. name: "Macro",
  35147. height: math.unit(2400.0, "inches")
  35148. },
  35149. {
  35150. name: "Megamacro",
  35151. height: math.unit(120000.0, "inches")
  35152. },
  35153. {
  35154. name: "Gigamacro",
  35155. height: math.unit(240000000.0, "inches")
  35156. }
  35157. ]
  35158. )
  35159. };
  35160. pokemonMakers["Wailmer"] = () => {
  35161. return makeCharacter(
  35162. "Wailmer",
  35163. "Pokemon",
  35164. {
  35165. "Wailmer": {
  35166. height: math.unit("79", "inches"),
  35167. weight: math.unit("286.6", "lbs"),
  35168. name: "Wailmer",
  35169. image: {
  35170. source: "./media/pokemon/Wailmer.svg"
  35171. },
  35172. rename: true
  35173. }
  35174. },
  35175. [
  35176. {
  35177. name: "Micro",
  35178. height: math.unit(7.9, "inches")
  35179. },
  35180. {
  35181. name: "Normal",
  35182. height: math.unit(79, "inches"),
  35183. default: true
  35184. },
  35185. {
  35186. name: "Macro",
  35187. height: math.unit(7900.0, "inches")
  35188. },
  35189. {
  35190. name: "Megamacro",
  35191. height: math.unit(395000.0, "inches")
  35192. },
  35193. {
  35194. name: "Gigamacro",
  35195. height: math.unit(790000000.0, "inches")
  35196. }
  35197. ]
  35198. )
  35199. };
  35200. pokemonMakers["Wailord"] = () => {
  35201. return makeCharacter(
  35202. "Wailord",
  35203. "Pokemon",
  35204. {
  35205. "Wailord": {
  35206. height: math.unit("571", "inches"),
  35207. weight: math.unit("877.4", "lbs"),
  35208. name: "Wailord",
  35209. image: {
  35210. source: "./media/pokemon/Wailord.svg"
  35211. },
  35212. rename: true
  35213. }
  35214. },
  35215. [
  35216. {
  35217. name: "Micro",
  35218. height: math.unit(57.1, "inches")
  35219. },
  35220. {
  35221. name: "Normal",
  35222. height: math.unit(571, "inches"),
  35223. default: true
  35224. },
  35225. {
  35226. name: "Macro",
  35227. height: math.unit(57100.0, "inches")
  35228. },
  35229. {
  35230. name: "Megamacro",
  35231. height: math.unit(2855000.0, "inches")
  35232. },
  35233. {
  35234. name: "Gigamacro",
  35235. height: math.unit(5710000000.0, "inches")
  35236. }
  35237. ]
  35238. )
  35239. };
  35240. pokemonMakers["Walrein"] = () => {
  35241. return makeCharacter(
  35242. "Walrein",
  35243. "Pokemon",
  35244. {
  35245. "Walrein": {
  35246. height: math.unit("55", "inches"),
  35247. weight: math.unit("332.0", "lbs"),
  35248. name: "Walrein",
  35249. image: {
  35250. source: "./media/pokemon/Walrein.svg"
  35251. },
  35252. rename: true
  35253. }
  35254. },
  35255. [
  35256. {
  35257. name: "Micro",
  35258. height: math.unit(5.5, "inches")
  35259. },
  35260. {
  35261. name: "Normal",
  35262. height: math.unit(55, "inches"),
  35263. default: true
  35264. },
  35265. {
  35266. name: "Macro",
  35267. height: math.unit(5500.0, "inches")
  35268. },
  35269. {
  35270. name: "Megamacro",
  35271. height: math.unit(275000.0, "inches")
  35272. },
  35273. {
  35274. name: "Gigamacro",
  35275. height: math.unit(550000000.0, "inches")
  35276. }
  35277. ]
  35278. )
  35279. };
  35280. pokemonMakers["Wartortle"] = () => {
  35281. return makeCharacter(
  35282. "Wartortle",
  35283. "Pokemon",
  35284. {
  35285. "Wartortle": {
  35286. height: math.unit("39", "inches"),
  35287. weight: math.unit("49.6", "lbs"),
  35288. name: "Wartortle",
  35289. image: {
  35290. source: "./media/pokemon/Wartortle.svg"
  35291. },
  35292. rename: true
  35293. }
  35294. },
  35295. [
  35296. {
  35297. name: "Micro",
  35298. height: math.unit(3.9, "inches")
  35299. },
  35300. {
  35301. name: "Normal",
  35302. height: math.unit(39, "inches"),
  35303. default: true
  35304. },
  35305. {
  35306. name: "Macro",
  35307. height: math.unit(3900.0, "inches")
  35308. },
  35309. {
  35310. name: "Megamacro",
  35311. height: math.unit(195000.0, "inches")
  35312. },
  35313. {
  35314. name: "Gigamacro",
  35315. height: math.unit(390000000.0, "inches")
  35316. }
  35317. ]
  35318. )
  35319. };
  35320. pokemonMakers["Watchog"] = () => {
  35321. return makeCharacter(
  35322. "Watchog",
  35323. "Pokemon",
  35324. {
  35325. "Watchog": {
  35326. height: math.unit("43", "inches"),
  35327. weight: math.unit("59.5", "lbs"),
  35328. name: "Watchog",
  35329. image: {
  35330. source: "./media/pokemon/Watchog.svg"
  35331. },
  35332. rename: true
  35333. }
  35334. },
  35335. [
  35336. {
  35337. name: "Micro",
  35338. height: math.unit(4.3, "inches")
  35339. },
  35340. {
  35341. name: "Normal",
  35342. height: math.unit(43, "inches"),
  35343. default: true
  35344. },
  35345. {
  35346. name: "Macro",
  35347. height: math.unit(4300.0, "inches")
  35348. },
  35349. {
  35350. name: "Megamacro",
  35351. height: math.unit(215000.0, "inches")
  35352. },
  35353. {
  35354. name: "Gigamacro",
  35355. height: math.unit(430000000.0, "inches")
  35356. }
  35357. ]
  35358. )
  35359. };
  35360. pokemonMakers["Weavile"] = () => {
  35361. return makeCharacter(
  35362. "Weavile",
  35363. "Pokemon",
  35364. {
  35365. "Weavile": {
  35366. height: math.unit("43", "inches"),
  35367. weight: math.unit("75.0", "lbs"),
  35368. name: "Weavile",
  35369. image: {
  35370. source: "./media/pokemon/Weavile.svg"
  35371. },
  35372. rename: true
  35373. }
  35374. },
  35375. [
  35376. {
  35377. name: "Micro",
  35378. height: math.unit(4.3, "inches")
  35379. },
  35380. {
  35381. name: "Normal",
  35382. height: math.unit(43, "inches"),
  35383. default: true
  35384. },
  35385. {
  35386. name: "Macro",
  35387. height: math.unit(4300.0, "inches")
  35388. },
  35389. {
  35390. name: "Megamacro",
  35391. height: math.unit(215000.0, "inches")
  35392. },
  35393. {
  35394. name: "Gigamacro",
  35395. height: math.unit(430000000.0, "inches")
  35396. }
  35397. ]
  35398. )
  35399. };
  35400. pokemonMakers["Weedle"] = () => {
  35401. return makeCharacter(
  35402. "Weedle",
  35403. "Pokemon",
  35404. {
  35405. "Weedle": {
  35406. height: math.unit("12", "inches"),
  35407. weight: math.unit("7.1", "lbs"),
  35408. name: "Weedle",
  35409. image: {
  35410. source: "./media/pokemon/Weedle.svg"
  35411. },
  35412. rename: true
  35413. }
  35414. },
  35415. [
  35416. {
  35417. name: "Micro",
  35418. height: math.unit(1.2, "inches")
  35419. },
  35420. {
  35421. name: "Normal",
  35422. height: math.unit(12, "inches"),
  35423. default: true
  35424. },
  35425. {
  35426. name: "Macro",
  35427. height: math.unit(1200.0, "inches")
  35428. },
  35429. {
  35430. name: "Megamacro",
  35431. height: math.unit(60000.0, "inches")
  35432. },
  35433. {
  35434. name: "Gigamacro",
  35435. height: math.unit(120000000.0, "inches")
  35436. }
  35437. ]
  35438. )
  35439. };
  35440. pokemonMakers["Weepinbell"] = () => {
  35441. return makeCharacter(
  35442. "Weepinbell",
  35443. "Pokemon",
  35444. {
  35445. "Weepinbell": {
  35446. height: math.unit("39", "inches"),
  35447. weight: math.unit("14.1", "lbs"),
  35448. name: "Weepinbell",
  35449. image: {
  35450. source: "./media/pokemon/Weepinbell.svg"
  35451. },
  35452. rename: true
  35453. }
  35454. },
  35455. [
  35456. {
  35457. name: "Micro",
  35458. height: math.unit(3.9, "inches")
  35459. },
  35460. {
  35461. name: "Normal",
  35462. height: math.unit(39, "inches"),
  35463. default: true
  35464. },
  35465. {
  35466. name: "Macro",
  35467. height: math.unit(3900.0, "inches")
  35468. },
  35469. {
  35470. name: "Megamacro",
  35471. height: math.unit(195000.0, "inches")
  35472. },
  35473. {
  35474. name: "Gigamacro",
  35475. height: math.unit(390000000.0, "inches")
  35476. }
  35477. ]
  35478. )
  35479. };
  35480. pokemonMakers["Weezing"] = () => {
  35481. return makeCharacter(
  35482. "Weezing",
  35483. "Pokemon",
  35484. {
  35485. "Galarian Form": {
  35486. height: math.unit("118", "inches"),
  35487. weight: math.unit("35.3", "lbs"),
  35488. name: "Galarian Form",
  35489. image: {
  35490. source: "./media/pokemon/Weezing - Galarian Form.svg"
  35491. },
  35492. rename: true
  35493. },
  35494. "Weezing": {
  35495. height: math.unit("47", "inches"),
  35496. weight: math.unit("20.9", "lbs"),
  35497. name: "Weezing",
  35498. image: {
  35499. source: "./media/pokemon/Weezing.svg"
  35500. },
  35501. rename: true
  35502. }
  35503. },
  35504. [
  35505. {
  35506. name: "Micro",
  35507. height: math.unit(11.8, "inches")
  35508. },
  35509. {
  35510. name: "Normal",
  35511. height: math.unit(118, "inches"),
  35512. default: true
  35513. },
  35514. {
  35515. name: "Macro",
  35516. height: math.unit(11800.0, "inches")
  35517. },
  35518. {
  35519. name: "Megamacro",
  35520. height: math.unit(590000.0, "inches")
  35521. },
  35522. {
  35523. name: "Gigamacro",
  35524. height: math.unit(1180000000.0, "inches")
  35525. }
  35526. ]
  35527. )
  35528. };
  35529. pokemonMakers["Whimsicott"] = () => {
  35530. return makeCharacter(
  35531. "Whimsicott",
  35532. "Pokemon",
  35533. {
  35534. "Whimsicott": {
  35535. height: math.unit("28", "inches"),
  35536. weight: math.unit("14.6", "lbs"),
  35537. name: "Whimsicott",
  35538. image: {
  35539. source: "./media/pokemon/Whimsicott.svg"
  35540. },
  35541. rename: true
  35542. }
  35543. },
  35544. [
  35545. {
  35546. name: "Micro",
  35547. height: math.unit(2.8, "inches")
  35548. },
  35549. {
  35550. name: "Normal",
  35551. height: math.unit(28, "inches"),
  35552. default: true
  35553. },
  35554. {
  35555. name: "Macro",
  35556. height: math.unit(2800.0, "inches")
  35557. },
  35558. {
  35559. name: "Megamacro",
  35560. height: math.unit(140000.0, "inches")
  35561. },
  35562. {
  35563. name: "Gigamacro",
  35564. height: math.unit(280000000.0, "inches")
  35565. }
  35566. ]
  35567. )
  35568. };
  35569. pokemonMakers["Whirlipede"] = () => {
  35570. return makeCharacter(
  35571. "Whirlipede",
  35572. "Pokemon",
  35573. {
  35574. "Whirlipede": {
  35575. height: math.unit("47", "inches"),
  35576. weight: math.unit("129.0", "lbs"),
  35577. name: "Whirlipede",
  35578. image: {
  35579. source: "./media/pokemon/Whirlipede.svg"
  35580. },
  35581. rename: true
  35582. }
  35583. },
  35584. [
  35585. {
  35586. name: "Micro",
  35587. height: math.unit(4.7, "inches")
  35588. },
  35589. {
  35590. name: "Normal",
  35591. height: math.unit(47, "inches"),
  35592. default: true
  35593. },
  35594. {
  35595. name: "Macro",
  35596. height: math.unit(4700.0, "inches")
  35597. },
  35598. {
  35599. name: "Megamacro",
  35600. height: math.unit(235000.0, "inches")
  35601. },
  35602. {
  35603. name: "Gigamacro",
  35604. height: math.unit(470000000.0, "inches")
  35605. }
  35606. ]
  35607. )
  35608. };
  35609. pokemonMakers["Whiscash"] = () => {
  35610. return makeCharacter(
  35611. "Whiscash",
  35612. "Pokemon",
  35613. {
  35614. "Whiscash": {
  35615. height: math.unit("35", "inches"),
  35616. weight: math.unit("52.0", "lbs"),
  35617. name: "Whiscash",
  35618. image: {
  35619. source: "./media/pokemon/Whiscash.svg"
  35620. },
  35621. rename: true
  35622. }
  35623. },
  35624. [
  35625. {
  35626. name: "Micro",
  35627. height: math.unit(3.5, "inches")
  35628. },
  35629. {
  35630. name: "Normal",
  35631. height: math.unit(35, "inches"),
  35632. default: true
  35633. },
  35634. {
  35635. name: "Macro",
  35636. height: math.unit(3500.0, "inches")
  35637. },
  35638. {
  35639. name: "Megamacro",
  35640. height: math.unit(175000.0, "inches")
  35641. },
  35642. {
  35643. name: "Gigamacro",
  35644. height: math.unit(350000000.0, "inches")
  35645. }
  35646. ]
  35647. )
  35648. };
  35649. pokemonMakers["Whismur"] = () => {
  35650. return makeCharacter(
  35651. "Whismur",
  35652. "Pokemon",
  35653. {
  35654. "Whismur": {
  35655. height: math.unit("24", "inches"),
  35656. weight: math.unit("35.9", "lbs"),
  35657. name: "Whismur",
  35658. image: {
  35659. source: "./media/pokemon/Whismur.svg"
  35660. },
  35661. rename: true
  35662. }
  35663. },
  35664. [
  35665. {
  35666. name: "Micro",
  35667. height: math.unit(2.4, "inches")
  35668. },
  35669. {
  35670. name: "Normal",
  35671. height: math.unit(24, "inches"),
  35672. default: true
  35673. },
  35674. {
  35675. name: "Macro",
  35676. height: math.unit(2400.0, "inches")
  35677. },
  35678. {
  35679. name: "Megamacro",
  35680. height: math.unit(120000.0, "inches")
  35681. },
  35682. {
  35683. name: "Gigamacro",
  35684. height: math.unit(240000000.0, "inches")
  35685. }
  35686. ]
  35687. )
  35688. };
  35689. pokemonMakers["Wigglytuff"] = () => {
  35690. return makeCharacter(
  35691. "Wigglytuff",
  35692. "Pokemon",
  35693. {
  35694. "Wigglytuff": {
  35695. height: math.unit("39", "inches"),
  35696. weight: math.unit("26.5", "lbs"),
  35697. name: "Wigglytuff",
  35698. image: {
  35699. source: "./media/pokemon/Wigglytuff.svg"
  35700. },
  35701. rename: true
  35702. }
  35703. },
  35704. [
  35705. {
  35706. name: "Micro",
  35707. height: math.unit(3.9, "inches")
  35708. },
  35709. {
  35710. name: "Normal",
  35711. height: math.unit(39, "inches"),
  35712. default: true
  35713. },
  35714. {
  35715. name: "Macro",
  35716. height: math.unit(3900.0, "inches")
  35717. },
  35718. {
  35719. name: "Megamacro",
  35720. height: math.unit(195000.0, "inches")
  35721. },
  35722. {
  35723. name: "Gigamacro",
  35724. height: math.unit(390000000.0, "inches")
  35725. }
  35726. ]
  35727. )
  35728. };
  35729. pokemonMakers["Wimpod"] = () => {
  35730. return makeCharacter(
  35731. "Wimpod",
  35732. "Pokemon",
  35733. {
  35734. "Wimpod": {
  35735. height: math.unit("20", "inches"),
  35736. weight: math.unit("26.5", "lbs"),
  35737. name: "Wimpod",
  35738. image: {
  35739. source: "./media/pokemon/Wimpod.svg"
  35740. },
  35741. rename: true
  35742. }
  35743. },
  35744. [
  35745. {
  35746. name: "Micro",
  35747. height: math.unit(2.0, "inches")
  35748. },
  35749. {
  35750. name: "Normal",
  35751. height: math.unit(20, "inches"),
  35752. default: true
  35753. },
  35754. {
  35755. name: "Macro",
  35756. height: math.unit(2000.0, "inches")
  35757. },
  35758. {
  35759. name: "Megamacro",
  35760. height: math.unit(100000.0, "inches")
  35761. },
  35762. {
  35763. name: "Gigamacro",
  35764. height: math.unit(200000000.0, "inches")
  35765. }
  35766. ]
  35767. )
  35768. };
  35769. pokemonMakers["Wingull"] = () => {
  35770. return makeCharacter(
  35771. "Wingull",
  35772. "Pokemon",
  35773. {
  35774. "Wingull": {
  35775. height: math.unit("24", "inches"),
  35776. weight: math.unit("20.9", "lbs"),
  35777. name: "Wingull",
  35778. image: {
  35779. source: "./media/pokemon/Wingull.svg"
  35780. },
  35781. rename: true
  35782. }
  35783. },
  35784. [
  35785. {
  35786. name: "Micro",
  35787. height: math.unit(2.4, "inches")
  35788. },
  35789. {
  35790. name: "Normal",
  35791. height: math.unit(24, "inches"),
  35792. default: true
  35793. },
  35794. {
  35795. name: "Macro",
  35796. height: math.unit(2400.0, "inches")
  35797. },
  35798. {
  35799. name: "Megamacro",
  35800. height: math.unit(120000.0, "inches")
  35801. },
  35802. {
  35803. name: "Gigamacro",
  35804. height: math.unit(240000000.0, "inches")
  35805. }
  35806. ]
  35807. )
  35808. };
  35809. pokemonMakers["Wishiwashi"] = () => {
  35810. return makeCharacter(
  35811. "Wishiwashi",
  35812. "Pokemon",
  35813. {
  35814. "School Form": {
  35815. height: math.unit("323", "inches"),
  35816. weight: math.unit("173.3", "lbs"),
  35817. name: "School Form",
  35818. image: {
  35819. source: "./media/pokemon/Wishiwashi - School Form.svg"
  35820. },
  35821. rename: true
  35822. },
  35823. "Solo Form": {
  35824. height: math.unit("8", "inches"),
  35825. weight: math.unit("0.7", "lbs"),
  35826. name: "Solo Form",
  35827. image: {
  35828. source: "./media/pokemon/Wishiwashi - Solo Form.svg"
  35829. },
  35830. rename: true
  35831. }
  35832. },
  35833. [
  35834. {
  35835. name: "Micro",
  35836. height: math.unit(32.3, "inches")
  35837. },
  35838. {
  35839. name: "Normal",
  35840. height: math.unit(323, "inches"),
  35841. default: true
  35842. },
  35843. {
  35844. name: "Macro",
  35845. height: math.unit(32300.0, "inches")
  35846. },
  35847. {
  35848. name: "Megamacro",
  35849. height: math.unit(1615000.0, "inches")
  35850. },
  35851. {
  35852. name: "Gigamacro",
  35853. height: math.unit(3230000000.0, "inches")
  35854. }
  35855. ]
  35856. )
  35857. };
  35858. pokemonMakers["Wobbuffet"] = () => {
  35859. return makeCharacter(
  35860. "Wobbuffet",
  35861. "Pokemon",
  35862. {
  35863. "Wobbuffet": {
  35864. height: math.unit("51", "inches"),
  35865. weight: math.unit("62.8", "lbs"),
  35866. name: "Wobbuffet",
  35867. image: {
  35868. source: "./media/pokemon/Wobbuffet.svg"
  35869. },
  35870. rename: true
  35871. }
  35872. },
  35873. [
  35874. {
  35875. name: "Micro",
  35876. height: math.unit(5.1, "inches")
  35877. },
  35878. {
  35879. name: "Normal",
  35880. height: math.unit(51, "inches"),
  35881. default: true
  35882. },
  35883. {
  35884. name: "Macro",
  35885. height: math.unit(5100.0, "inches")
  35886. },
  35887. {
  35888. name: "Megamacro",
  35889. height: math.unit(255000.0, "inches")
  35890. },
  35891. {
  35892. name: "Gigamacro",
  35893. height: math.unit(510000000.0, "inches")
  35894. }
  35895. ]
  35896. )
  35897. };
  35898. pokemonMakers["Woobat"] = () => {
  35899. return makeCharacter(
  35900. "Woobat",
  35901. "Pokemon",
  35902. {
  35903. "Woobat": {
  35904. height: math.unit("16", "inches"),
  35905. weight: math.unit("4.6", "lbs"),
  35906. name: "Woobat",
  35907. image: {
  35908. source: "./media/pokemon/Woobat.svg"
  35909. },
  35910. rename: true
  35911. }
  35912. },
  35913. [
  35914. {
  35915. name: "Micro",
  35916. height: math.unit(1.6, "inches")
  35917. },
  35918. {
  35919. name: "Normal",
  35920. height: math.unit(16, "inches"),
  35921. default: true
  35922. },
  35923. {
  35924. name: "Macro",
  35925. height: math.unit(1600.0, "inches")
  35926. },
  35927. {
  35928. name: "Megamacro",
  35929. height: math.unit(80000.0, "inches")
  35930. },
  35931. {
  35932. name: "Gigamacro",
  35933. height: math.unit(160000000.0, "inches")
  35934. }
  35935. ]
  35936. )
  35937. };
  35938. pokemonMakers["Wooloo"] = () => {
  35939. return makeCharacter(
  35940. "Wooloo",
  35941. "Pokemon",
  35942. {
  35943. "Wooloo": {
  35944. height: math.unit("24", "inches"),
  35945. weight: math.unit("13.2", "lbs"),
  35946. name: "Wooloo",
  35947. image: {
  35948. source: "./media/pokemon/Wooloo.svg"
  35949. },
  35950. rename: true
  35951. }
  35952. },
  35953. [
  35954. {
  35955. name: "Micro",
  35956. height: math.unit(2.4, "inches")
  35957. },
  35958. {
  35959. name: "Normal",
  35960. height: math.unit(24, "inches"),
  35961. default: true
  35962. },
  35963. {
  35964. name: "Macro",
  35965. height: math.unit(2400.0, "inches")
  35966. },
  35967. {
  35968. name: "Megamacro",
  35969. height: math.unit(120000.0, "inches")
  35970. },
  35971. {
  35972. name: "Gigamacro",
  35973. height: math.unit(240000000.0, "inches")
  35974. }
  35975. ]
  35976. )
  35977. };
  35978. pokemonMakers["Wooper"] = () => {
  35979. return makeCharacter(
  35980. "Wooper",
  35981. "Pokemon",
  35982. {
  35983. "Wooper": {
  35984. height: math.unit("16", "inches"),
  35985. weight: math.unit("18.7", "lbs"),
  35986. name: "Wooper",
  35987. image: {
  35988. source: "./media/pokemon/Wooper.svg"
  35989. },
  35990. rename: true
  35991. }
  35992. },
  35993. [
  35994. {
  35995. name: "Micro",
  35996. height: math.unit(1.6, "inches")
  35997. },
  35998. {
  35999. name: "Normal",
  36000. height: math.unit(16, "inches"),
  36001. default: true
  36002. },
  36003. {
  36004. name: "Macro",
  36005. height: math.unit(1600.0, "inches")
  36006. },
  36007. {
  36008. name: "Megamacro",
  36009. height: math.unit(80000.0, "inches")
  36010. },
  36011. {
  36012. name: "Gigamacro",
  36013. height: math.unit(160000000.0, "inches")
  36014. }
  36015. ]
  36016. )
  36017. };
  36018. pokemonMakers["Wormadam"] = () => {
  36019. return makeCharacter(
  36020. "Wormadam",
  36021. "Pokemon",
  36022. {
  36023. "Plant Cloak": {
  36024. height: math.unit("20", "inches"),
  36025. weight: math.unit("14.3", "lbs"),
  36026. name: "Plant Cloak",
  36027. image: {
  36028. source: "./media/pokemon/Wormadam - Plant Cloak.svg"
  36029. },
  36030. rename: true
  36031. },
  36032. "Sandy Cloak": {
  36033. height: math.unit("20", "inches"),
  36034. weight: math.unit("14.3", "lbs"),
  36035. name: "Sandy Cloak",
  36036. image: {
  36037. source: "./media/pokemon/Wormadam - Sandy Cloak.svg"
  36038. },
  36039. rename: true
  36040. },
  36041. "Trash Cloak": {
  36042. height: math.unit("20", "inches"),
  36043. weight: math.unit("14.3", "lbs"),
  36044. name: "Trash Cloak",
  36045. image: {
  36046. source: "./media/pokemon/Wormadam - Trash Cloak.svg"
  36047. },
  36048. rename: true
  36049. }
  36050. },
  36051. [
  36052. {
  36053. name: "Micro",
  36054. height: math.unit(2.0, "inches")
  36055. },
  36056. {
  36057. name: "Normal",
  36058. height: math.unit(20, "inches"),
  36059. default: true
  36060. },
  36061. {
  36062. name: "Macro",
  36063. height: math.unit(2000.0, "inches")
  36064. },
  36065. {
  36066. name: "Megamacro",
  36067. height: math.unit(100000.0, "inches")
  36068. },
  36069. {
  36070. name: "Gigamacro",
  36071. height: math.unit(200000000.0, "inches")
  36072. }
  36073. ]
  36074. )
  36075. };
  36076. pokemonMakers["Wurmple"] = () => {
  36077. return makeCharacter(
  36078. "Wurmple",
  36079. "Pokemon",
  36080. {
  36081. "Wurmple": {
  36082. height: math.unit("12", "inches"),
  36083. weight: math.unit("7.9", "lbs"),
  36084. name: "Wurmple",
  36085. image: {
  36086. source: "./media/pokemon/Wurmple.svg"
  36087. },
  36088. rename: true
  36089. }
  36090. },
  36091. [
  36092. {
  36093. name: "Micro",
  36094. height: math.unit(1.2, "inches")
  36095. },
  36096. {
  36097. name: "Normal",
  36098. height: math.unit(12, "inches"),
  36099. default: true
  36100. },
  36101. {
  36102. name: "Macro",
  36103. height: math.unit(1200.0, "inches")
  36104. },
  36105. {
  36106. name: "Megamacro",
  36107. height: math.unit(60000.0, "inches")
  36108. },
  36109. {
  36110. name: "Gigamacro",
  36111. height: math.unit(120000000.0, "inches")
  36112. }
  36113. ]
  36114. )
  36115. };
  36116. pokemonMakers["Wynaut"] = () => {
  36117. return makeCharacter(
  36118. "Wynaut",
  36119. "Pokemon",
  36120. {
  36121. "Wynaut": {
  36122. height: math.unit("24", "inches"),
  36123. weight: math.unit("30.9", "lbs"),
  36124. name: "Wynaut",
  36125. image: {
  36126. source: "./media/pokemon/Wynaut.svg"
  36127. },
  36128. rename: true
  36129. }
  36130. },
  36131. [
  36132. {
  36133. name: "Micro",
  36134. height: math.unit(2.4, "inches")
  36135. },
  36136. {
  36137. name: "Normal",
  36138. height: math.unit(24, "inches"),
  36139. default: true
  36140. },
  36141. {
  36142. name: "Macro",
  36143. height: math.unit(2400.0, "inches")
  36144. },
  36145. {
  36146. name: "Megamacro",
  36147. height: math.unit(120000.0, "inches")
  36148. },
  36149. {
  36150. name: "Gigamacro",
  36151. height: math.unit(240000000.0, "inches")
  36152. }
  36153. ]
  36154. )
  36155. };
  36156. pokemonMakers["Xatu"] = () => {
  36157. return makeCharacter(
  36158. "Xatu",
  36159. "Pokemon",
  36160. {
  36161. "Xatu": {
  36162. height: math.unit("59", "inches"),
  36163. weight: math.unit("33.1", "lbs"),
  36164. name: "Xatu",
  36165. image: {
  36166. source: "./media/pokemon/Xatu.svg"
  36167. },
  36168. rename: true
  36169. }
  36170. },
  36171. [
  36172. {
  36173. name: "Micro",
  36174. height: math.unit(5.9, "inches")
  36175. },
  36176. {
  36177. name: "Normal",
  36178. height: math.unit(59, "inches"),
  36179. default: true
  36180. },
  36181. {
  36182. name: "Macro",
  36183. height: math.unit(5900.0, "inches")
  36184. },
  36185. {
  36186. name: "Megamacro",
  36187. height: math.unit(295000.0, "inches")
  36188. },
  36189. {
  36190. name: "Gigamacro",
  36191. height: math.unit(590000000.0, "inches")
  36192. }
  36193. ]
  36194. )
  36195. };
  36196. pokemonMakers["Xerneas"] = () => {
  36197. return makeCharacter(
  36198. "Xerneas",
  36199. "Pokemon",
  36200. {
  36201. "Xerneas": {
  36202. height: math.unit("118", "inches"),
  36203. weight: math.unit("474.0", "lbs"),
  36204. name: "Xerneas",
  36205. image: {
  36206. source: "./media/pokemon/Xerneas.svg"
  36207. },
  36208. rename: true
  36209. }
  36210. },
  36211. [
  36212. {
  36213. name: "Micro",
  36214. height: math.unit(11.8, "inches")
  36215. },
  36216. {
  36217. name: "Normal",
  36218. height: math.unit(118, "inches"),
  36219. default: true
  36220. },
  36221. {
  36222. name: "Macro",
  36223. height: math.unit(11800.0, "inches")
  36224. },
  36225. {
  36226. name: "Megamacro",
  36227. height: math.unit(590000.0, "inches")
  36228. },
  36229. {
  36230. name: "Gigamacro",
  36231. height: math.unit(1180000000.0, "inches")
  36232. }
  36233. ]
  36234. )
  36235. };
  36236. pokemonMakers["Xurkitree"] = () => {
  36237. return makeCharacter(
  36238. "Xurkitree",
  36239. "Pokemon",
  36240. {
  36241. "Xurkitree": {
  36242. height: math.unit("150", "inches"),
  36243. weight: math.unit("220.5", "lbs"),
  36244. name: "Xurkitree",
  36245. image: {
  36246. source: "./media/pokemon/Xurkitree.svg"
  36247. },
  36248. rename: true
  36249. }
  36250. },
  36251. [
  36252. {
  36253. name: "Micro",
  36254. height: math.unit(15.0, "inches")
  36255. },
  36256. {
  36257. name: "Normal",
  36258. height: math.unit(150, "inches"),
  36259. default: true
  36260. },
  36261. {
  36262. name: "Macro",
  36263. height: math.unit(15000.0, "inches")
  36264. },
  36265. {
  36266. name: "Megamacro",
  36267. height: math.unit(750000.0, "inches")
  36268. },
  36269. {
  36270. name: "Gigamacro",
  36271. height: math.unit(1500000000.0, "inches")
  36272. }
  36273. ]
  36274. )
  36275. };
  36276. pokemonMakers["Yamask"] = () => {
  36277. return makeCharacter(
  36278. "Yamask",
  36279. "Pokemon",
  36280. {
  36281. "Galarian Form": {
  36282. height: math.unit("20", "inches"),
  36283. weight: math.unit("3.3", "lbs"),
  36284. name: "Galarian Form",
  36285. image: {
  36286. source: "./media/pokemon/Yamask - Galarian Form.svg"
  36287. },
  36288. rename: true
  36289. },
  36290. "Yamask": {
  36291. height: math.unit("20", "inches"),
  36292. weight: math.unit("3.3", "lbs"),
  36293. name: "Yamask",
  36294. image: {
  36295. source: "./media/pokemon/Yamask.svg"
  36296. },
  36297. rename: true
  36298. }
  36299. },
  36300. [
  36301. {
  36302. name: "Micro",
  36303. height: math.unit(2.0, "inches")
  36304. },
  36305. {
  36306. name: "Normal",
  36307. height: math.unit(20, "inches"),
  36308. default: true
  36309. },
  36310. {
  36311. name: "Macro",
  36312. height: math.unit(2000.0, "inches")
  36313. },
  36314. {
  36315. name: "Megamacro",
  36316. height: math.unit(100000.0, "inches")
  36317. },
  36318. {
  36319. name: "Gigamacro",
  36320. height: math.unit(200000000.0, "inches")
  36321. }
  36322. ]
  36323. )
  36324. };
  36325. pokemonMakers["Yamper"] = () => {
  36326. return makeCharacter(
  36327. "Yamper",
  36328. "Pokemon",
  36329. {
  36330. "Yamper": {
  36331. height: math.unit("12", "inches"),
  36332. weight: math.unit("29.8", "lbs"),
  36333. name: "Yamper",
  36334. image: {
  36335. source: "./media/pokemon/Yamper.svg"
  36336. },
  36337. rename: true
  36338. }
  36339. },
  36340. [
  36341. {
  36342. name: "Micro",
  36343. height: math.unit(1.2, "inches")
  36344. },
  36345. {
  36346. name: "Normal",
  36347. height: math.unit(12, "inches"),
  36348. default: true
  36349. },
  36350. {
  36351. name: "Macro",
  36352. height: math.unit(1200.0, "inches")
  36353. },
  36354. {
  36355. name: "Megamacro",
  36356. height: math.unit(60000.0, "inches")
  36357. },
  36358. {
  36359. name: "Gigamacro",
  36360. height: math.unit(120000000.0, "inches")
  36361. }
  36362. ]
  36363. )
  36364. };
  36365. pokemonMakers["Yanma"] = () => {
  36366. return makeCharacter(
  36367. "Yanma",
  36368. "Pokemon",
  36369. {
  36370. "Yanma": {
  36371. height: math.unit("47", "inches"),
  36372. weight: math.unit("83.8", "lbs"),
  36373. name: "Yanma",
  36374. image: {
  36375. source: "./media/pokemon/Yanma.svg"
  36376. },
  36377. rename: true
  36378. }
  36379. },
  36380. [
  36381. {
  36382. name: "Micro",
  36383. height: math.unit(4.7, "inches")
  36384. },
  36385. {
  36386. name: "Normal",
  36387. height: math.unit(47, "inches"),
  36388. default: true
  36389. },
  36390. {
  36391. name: "Macro",
  36392. height: math.unit(4700.0, "inches")
  36393. },
  36394. {
  36395. name: "Megamacro",
  36396. height: math.unit(235000.0, "inches")
  36397. },
  36398. {
  36399. name: "Gigamacro",
  36400. height: math.unit(470000000.0, "inches")
  36401. }
  36402. ]
  36403. )
  36404. };
  36405. pokemonMakers["Yanmega"] = () => {
  36406. return makeCharacter(
  36407. "Yanmega",
  36408. "Pokemon",
  36409. {
  36410. "Yanmega": {
  36411. height: math.unit("75", "inches"),
  36412. weight: math.unit("113.5", "lbs"),
  36413. name: "Yanmega",
  36414. image: {
  36415. source: "./media/pokemon/Yanmega.svg"
  36416. },
  36417. rename: true
  36418. }
  36419. },
  36420. [
  36421. {
  36422. name: "Micro",
  36423. height: math.unit(7.5, "inches")
  36424. },
  36425. {
  36426. name: "Normal",
  36427. height: math.unit(75, "inches"),
  36428. default: true
  36429. },
  36430. {
  36431. name: "Macro",
  36432. height: math.unit(7500.0, "inches")
  36433. },
  36434. {
  36435. name: "Megamacro",
  36436. height: math.unit(375000.0, "inches")
  36437. },
  36438. {
  36439. name: "Gigamacro",
  36440. height: math.unit(750000000.0, "inches")
  36441. }
  36442. ]
  36443. )
  36444. };
  36445. pokemonMakers["Yungoos"] = () => {
  36446. return makeCharacter(
  36447. "Yungoos",
  36448. "Pokemon",
  36449. {
  36450. "Yungoos": {
  36451. height: math.unit("16", "inches"),
  36452. weight: math.unit("13.2", "lbs"),
  36453. name: "Yungoos",
  36454. image: {
  36455. source: "./media/pokemon/Yungoos.svg"
  36456. },
  36457. rename: true
  36458. }
  36459. },
  36460. [
  36461. {
  36462. name: "Micro",
  36463. height: math.unit(1.6, "inches")
  36464. },
  36465. {
  36466. name: "Normal",
  36467. height: math.unit(16, "inches"),
  36468. default: true
  36469. },
  36470. {
  36471. name: "Macro",
  36472. height: math.unit(1600.0, "inches")
  36473. },
  36474. {
  36475. name: "Megamacro",
  36476. height: math.unit(80000.0, "inches")
  36477. },
  36478. {
  36479. name: "Gigamacro",
  36480. height: math.unit(160000000.0, "inches")
  36481. }
  36482. ]
  36483. )
  36484. };
  36485. pokemonMakers["Yveltal"] = () => {
  36486. return makeCharacter(
  36487. "Yveltal",
  36488. "Pokemon",
  36489. {
  36490. "Yveltal": {
  36491. height: math.unit("228", "inches"),
  36492. weight: math.unit("447.5", "lbs"),
  36493. name: "Yveltal",
  36494. image: {
  36495. source: "./media/pokemon/Yveltal.svg"
  36496. },
  36497. rename: true
  36498. }
  36499. },
  36500. [
  36501. {
  36502. name: "Micro",
  36503. height: math.unit(22.8, "inches")
  36504. },
  36505. {
  36506. name: "Normal",
  36507. height: math.unit(228, "inches"),
  36508. default: true
  36509. },
  36510. {
  36511. name: "Macro",
  36512. height: math.unit(22800.0, "inches")
  36513. },
  36514. {
  36515. name: "Megamacro",
  36516. height: math.unit(1140000.0, "inches")
  36517. },
  36518. {
  36519. name: "Gigamacro",
  36520. height: math.unit(2280000000.0, "inches")
  36521. }
  36522. ]
  36523. )
  36524. };
  36525. pokemonMakers["Zacian"] = () => {
  36526. return makeCharacter(
  36527. "Zacian",
  36528. "Pokemon",
  36529. {
  36530. "Crowned Sword": {
  36531. height: math.unit("110", "inches"),
  36532. weight: math.unit("782.6", "lbs"),
  36533. name: "Crowned Sword",
  36534. image: {
  36535. source: "./media/pokemon/Zacian - Crowned Sword.svg"
  36536. },
  36537. rename: true
  36538. },
  36539. "Hero of Many Battles": {
  36540. height: math.unit("110", "inches"),
  36541. weight: math.unit("242.5", "lbs"),
  36542. name: "Hero of Many Battles",
  36543. image: {
  36544. source: "./media/pokemon/Zacian - Hero of Many Battles.svg"
  36545. },
  36546. rename: true
  36547. }
  36548. },
  36549. [
  36550. {
  36551. name: "Micro",
  36552. height: math.unit(11.0, "inches")
  36553. },
  36554. {
  36555. name: "Normal",
  36556. height: math.unit(110, "inches"),
  36557. default: true
  36558. },
  36559. {
  36560. name: "Macro",
  36561. height: math.unit(11000.0, "inches")
  36562. },
  36563. {
  36564. name: "Megamacro",
  36565. height: math.unit(550000.0, "inches")
  36566. },
  36567. {
  36568. name: "Gigamacro",
  36569. height: math.unit(1100000000.0, "inches")
  36570. }
  36571. ]
  36572. )
  36573. };
  36574. pokemonMakers["Zamazenta"] = () => {
  36575. return makeCharacter(
  36576. "Zamazenta",
  36577. "Pokemon",
  36578. {
  36579. "Crowned Shield": {
  36580. height: math.unit("114", "inches"),
  36581. weight: math.unit("1730.6", "lbs"),
  36582. name: "Crowned Shield",
  36583. image: {
  36584. source: "./media/pokemon/Zamazenta - Crowned Shield.svg"
  36585. },
  36586. rename: true
  36587. },
  36588. "Hero of Many Battles": {
  36589. height: math.unit("114", "inches"),
  36590. weight: math.unit("463.0", "lbs"),
  36591. name: "Hero of Many Battles",
  36592. image: {
  36593. source: "./media/pokemon/Zamazenta - Hero of Many Battles.svg"
  36594. },
  36595. rename: true
  36596. }
  36597. },
  36598. [
  36599. {
  36600. name: "Micro",
  36601. height: math.unit(11.4, "inches")
  36602. },
  36603. {
  36604. name: "Normal",
  36605. height: math.unit(114, "inches"),
  36606. default: true
  36607. },
  36608. {
  36609. name: "Macro",
  36610. height: math.unit(11400.0, "inches")
  36611. },
  36612. {
  36613. name: "Megamacro",
  36614. height: math.unit(570000.0, "inches")
  36615. },
  36616. {
  36617. name: "Gigamacro",
  36618. height: math.unit(1140000000.0, "inches")
  36619. }
  36620. ]
  36621. )
  36622. };
  36623. pokemonMakers["Zangoose"] = () => {
  36624. return makeCharacter(
  36625. "Zangoose",
  36626. "Pokemon",
  36627. {
  36628. "Zangoose": {
  36629. height: math.unit("51", "inches"),
  36630. weight: math.unit("88.8", "lbs"),
  36631. name: "Zangoose",
  36632. image: {
  36633. source: "./media/pokemon/Zangoose.svg"
  36634. },
  36635. rename: true
  36636. }
  36637. },
  36638. [
  36639. {
  36640. name: "Micro",
  36641. height: math.unit(5.1, "inches")
  36642. },
  36643. {
  36644. name: "Normal",
  36645. height: math.unit(51, "inches"),
  36646. default: true
  36647. },
  36648. {
  36649. name: "Macro",
  36650. height: math.unit(5100.0, "inches")
  36651. },
  36652. {
  36653. name: "Megamacro",
  36654. height: math.unit(255000.0, "inches")
  36655. },
  36656. {
  36657. name: "Gigamacro",
  36658. height: math.unit(510000000.0, "inches")
  36659. }
  36660. ]
  36661. )
  36662. };
  36663. pokemonMakers["Zapdos"] = () => {
  36664. return makeCharacter(
  36665. "Zapdos",
  36666. "Pokemon",
  36667. {
  36668. "Zapdos": {
  36669. height: math.unit("63", "inches"),
  36670. weight: math.unit("116.0", "lbs"),
  36671. name: "Zapdos",
  36672. image: {
  36673. source: "./media/pokemon/Zapdos.svg"
  36674. },
  36675. rename: true
  36676. }
  36677. },
  36678. [
  36679. {
  36680. name: "Micro",
  36681. height: math.unit(6.3, "inches")
  36682. },
  36683. {
  36684. name: "Normal",
  36685. height: math.unit(63, "inches"),
  36686. default: true
  36687. },
  36688. {
  36689. name: "Macro",
  36690. height: math.unit(6300.0, "inches")
  36691. },
  36692. {
  36693. name: "Megamacro",
  36694. height: math.unit(315000.0, "inches")
  36695. },
  36696. {
  36697. name: "Gigamacro",
  36698. height: math.unit(630000000.0, "inches")
  36699. }
  36700. ]
  36701. )
  36702. };
  36703. pokemonMakers["Zebstrika"] = () => {
  36704. return makeCharacter(
  36705. "Zebstrika",
  36706. "Pokemon",
  36707. {
  36708. "Zebstrika": {
  36709. height: math.unit("63", "inches"),
  36710. weight: math.unit("175.3", "lbs"),
  36711. name: "Zebstrika",
  36712. image: {
  36713. source: "./media/pokemon/Zebstrika.svg"
  36714. },
  36715. rename: true
  36716. }
  36717. },
  36718. [
  36719. {
  36720. name: "Micro",
  36721. height: math.unit(6.3, "inches")
  36722. },
  36723. {
  36724. name: "Normal",
  36725. height: math.unit(63, "inches"),
  36726. default: true
  36727. },
  36728. {
  36729. name: "Macro",
  36730. height: math.unit(6300.0, "inches")
  36731. },
  36732. {
  36733. name: "Megamacro",
  36734. height: math.unit(315000.0, "inches")
  36735. },
  36736. {
  36737. name: "Gigamacro",
  36738. height: math.unit(630000000.0, "inches")
  36739. }
  36740. ]
  36741. )
  36742. };
  36743. pokemonMakers["Zekrom"] = () => {
  36744. return makeCharacter(
  36745. "Zekrom",
  36746. "Pokemon",
  36747. {
  36748. "Zekrom": {
  36749. height: math.unit("114", "inches"),
  36750. weight: math.unit("760.6", "lbs"),
  36751. name: "Zekrom",
  36752. image: {
  36753. source: "./media/pokemon/Zekrom.svg"
  36754. },
  36755. rename: true
  36756. }
  36757. },
  36758. [
  36759. {
  36760. name: "Micro",
  36761. height: math.unit(11.4, "inches")
  36762. },
  36763. {
  36764. name: "Normal",
  36765. height: math.unit(114, "inches"),
  36766. default: true
  36767. },
  36768. {
  36769. name: "Macro",
  36770. height: math.unit(11400.0, "inches")
  36771. },
  36772. {
  36773. name: "Megamacro",
  36774. height: math.unit(570000.0, "inches")
  36775. },
  36776. {
  36777. name: "Gigamacro",
  36778. height: math.unit(1140000000.0, "inches")
  36779. }
  36780. ]
  36781. )
  36782. };
  36783. pokemonMakers["Zeraora"] = () => {
  36784. return makeCharacter(
  36785. "Zeraora",
  36786. "Pokemon",
  36787. {
  36788. "Zeraora": {
  36789. height: math.unit("59", "inches"),
  36790. weight: math.unit("98.1", "lbs"),
  36791. name: "Zeraora",
  36792. image: {
  36793. source: "./media/pokemon/Zeraora.svg"
  36794. },
  36795. rename: true
  36796. }
  36797. },
  36798. [
  36799. {
  36800. name: "Micro",
  36801. height: math.unit(5.9, "inches")
  36802. },
  36803. {
  36804. name: "Normal",
  36805. height: math.unit(59, "inches"),
  36806. default: true
  36807. },
  36808. {
  36809. name: "Macro",
  36810. height: math.unit(5900.0, "inches")
  36811. },
  36812. {
  36813. name: "Megamacro",
  36814. height: math.unit(295000.0, "inches")
  36815. },
  36816. {
  36817. name: "Gigamacro",
  36818. height: math.unit(590000000.0, "inches")
  36819. }
  36820. ]
  36821. )
  36822. };
  36823. pokemonMakers["Zigzagoon"] = () => {
  36824. return makeCharacter(
  36825. "Zigzagoon",
  36826. "Pokemon",
  36827. {
  36828. "Galarian Form": {
  36829. height: math.unit("16", "inches"),
  36830. weight: math.unit("38.6", "lbs"),
  36831. name: "Galarian Form",
  36832. image: {
  36833. source: "./media/pokemon/Zigzagoon - Galarian Form.svg"
  36834. },
  36835. rename: true
  36836. },
  36837. "Zigzagoon": {
  36838. height: math.unit("16", "inches"),
  36839. weight: math.unit("38.6", "lbs"),
  36840. name: "Zigzagoon",
  36841. image: {
  36842. source: "./media/pokemon/Zigzagoon.svg"
  36843. },
  36844. rename: true
  36845. }
  36846. },
  36847. [
  36848. {
  36849. name: "Micro",
  36850. height: math.unit(1.6, "inches")
  36851. },
  36852. {
  36853. name: "Normal",
  36854. height: math.unit(16, "inches"),
  36855. default: true
  36856. },
  36857. {
  36858. name: "Macro",
  36859. height: math.unit(1600.0, "inches")
  36860. },
  36861. {
  36862. name: "Megamacro",
  36863. height: math.unit(80000.0, "inches")
  36864. },
  36865. {
  36866. name: "Gigamacro",
  36867. height: math.unit(160000000.0, "inches")
  36868. }
  36869. ]
  36870. )
  36871. };
  36872. pokemonMakers["Zoroark"] = () => {
  36873. return makeCharacter(
  36874. "Zoroark",
  36875. "Pokemon",
  36876. {
  36877. "Zoroark": {
  36878. height: math.unit("63", "inches"),
  36879. weight: math.unit("178.8", "lbs"),
  36880. name: "Zoroark",
  36881. image: {
  36882. source: "./media/pokemon/Zoroark.svg"
  36883. },
  36884. rename: true
  36885. }
  36886. },
  36887. [
  36888. {
  36889. name: "Micro",
  36890. height: math.unit(6.3, "inches")
  36891. },
  36892. {
  36893. name: "Normal",
  36894. height: math.unit(63, "inches"),
  36895. default: true
  36896. },
  36897. {
  36898. name: "Macro",
  36899. height: math.unit(6300.0, "inches")
  36900. },
  36901. {
  36902. name: "Megamacro",
  36903. height: math.unit(315000.0, "inches")
  36904. },
  36905. {
  36906. name: "Gigamacro",
  36907. height: math.unit(630000000.0, "inches")
  36908. }
  36909. ]
  36910. )
  36911. };
  36912. pokemonMakers["Zorua"] = () => {
  36913. return makeCharacter(
  36914. "Zorua",
  36915. "Pokemon",
  36916. {
  36917. "Zorua": {
  36918. height: math.unit("28", "inches"),
  36919. weight: math.unit("27.6", "lbs"),
  36920. name: "Zorua",
  36921. image: {
  36922. source: "./media/pokemon/Zorua.svg"
  36923. },
  36924. rename: true
  36925. }
  36926. },
  36927. [
  36928. {
  36929. name: "Micro",
  36930. height: math.unit(2.8, "inches")
  36931. },
  36932. {
  36933. name: "Normal",
  36934. height: math.unit(28, "inches"),
  36935. default: true
  36936. },
  36937. {
  36938. name: "Macro",
  36939. height: math.unit(2800.0, "inches")
  36940. },
  36941. {
  36942. name: "Megamacro",
  36943. height: math.unit(140000.0, "inches")
  36944. },
  36945. {
  36946. name: "Gigamacro",
  36947. height: math.unit(280000000.0, "inches")
  36948. }
  36949. ]
  36950. )
  36951. };
  36952. pokemonMakers["Zubat"] = () => {
  36953. return makeCharacter(
  36954. "Zubat",
  36955. "Pokemon",
  36956. {
  36957. "Zubat": {
  36958. height: math.unit("31", "inches"),
  36959. weight: math.unit("16.5", "lbs"),
  36960. name: "Zubat",
  36961. image: {
  36962. source: "./media/pokemon/Zubat.svg"
  36963. },
  36964. rename: true
  36965. }
  36966. },
  36967. [
  36968. {
  36969. name: "Micro",
  36970. height: math.unit(3.1, "inches")
  36971. },
  36972. {
  36973. name: "Normal",
  36974. height: math.unit(31, "inches"),
  36975. default: true
  36976. },
  36977. {
  36978. name: "Macro",
  36979. height: math.unit(3100.0, "inches")
  36980. },
  36981. {
  36982. name: "Megamacro",
  36983. height: math.unit(155000.0, "inches")
  36984. },
  36985. {
  36986. name: "Gigamacro",
  36987. height: math.unit(310000000.0, "inches")
  36988. }
  36989. ]
  36990. )
  36991. };
  36992. pokemonMakers["Zweilous"] = () => {
  36993. return makeCharacter(
  36994. "Zweilous",
  36995. "Pokemon",
  36996. {
  36997. "Zweilous": {
  36998. height: math.unit("55", "inches"),
  36999. weight: math.unit("110.2", "lbs"),
  37000. name: "Zweilous",
  37001. image: {
  37002. source: "./media/pokemon/Zweilous.svg"
  37003. },
  37004. rename: true
  37005. }
  37006. },
  37007. [
  37008. {
  37009. name: "Micro",
  37010. height: math.unit(5.5, "inches")
  37011. },
  37012. {
  37013. name: "Normal",
  37014. height: math.unit(55, "inches"),
  37015. default: true
  37016. },
  37017. {
  37018. name: "Macro",
  37019. height: math.unit(5500.0, "inches")
  37020. },
  37021. {
  37022. name: "Megamacro",
  37023. height: math.unit(275000.0, "inches")
  37024. },
  37025. {
  37026. name: "Gigamacro",
  37027. height: math.unit(550000000.0, "inches")
  37028. }
  37029. ]
  37030. )
  37031. };
  37032. pokemonMakers["Zygarde"] = () => {
  37033. return makeCharacter(
  37034. "Zygarde",
  37035. "Pokemon",
  37036. {
  37037. "10% Forme": {
  37038. height: math.unit("47", "inches"),
  37039. weight: math.unit("73.9", "lbs"),
  37040. name: "10% Forme",
  37041. image: {
  37042. source: "./media/pokemon/Zygarde - 10% Forme.svg"
  37043. },
  37044. rename: true
  37045. },
  37046. "50% Forme": {
  37047. height: math.unit("197", "inches"),
  37048. weight: math.unit("672.4", "lbs"),
  37049. name: "50% Forme",
  37050. image: {
  37051. source: "./media/pokemon/Zygarde - 50% Forme.svg"
  37052. },
  37053. rename: true
  37054. },
  37055. "Complete Forme": {
  37056. height: math.unit("177", "inches"),
  37057. weight: math.unit("1344.8", "lbs"),
  37058. name: "Complete Forme",
  37059. image: {
  37060. source: "./media/pokemon/Zygarde - Complete Forme.svg"
  37061. },
  37062. rename: true
  37063. }
  37064. },
  37065. [
  37066. {
  37067. name: "Micro",
  37068. height: math.unit(4.7, "inches")
  37069. },
  37070. {
  37071. name: "Normal",
  37072. height: math.unit(47, "inches"),
  37073. default: true
  37074. },
  37075. {
  37076. name: "Macro",
  37077. height: math.unit(4700.0, "inches")
  37078. },
  37079. {
  37080. name: "Megamacro",
  37081. height: math.unit(235000.0, "inches")
  37082. },
  37083. {
  37084. name: "Gigamacro",
  37085. height: math.unit(470000000.0, "inches")
  37086. }
  37087. ]
  37088. )
  37089. };
  37090. function makePokemon() {
  37091. const results = [];
  37092. Object.entries(pokemonMakers).forEach(([key, value]) => {
  37093. results.push({
  37094. name: key,
  37095. constructor: value
  37096. });
  37097. });
  37098. return results.sort((a, b) => {
  37099. return a.name.localeCompare(b.name);
  37100. });
  37101. }